Ver código fonte

drm: copy the right data back to userspace for getreserved contexts ioctl

This fixes the information copied back to userspace by the get reserved
contexts ioctl.

From: Egbert Eich <eich@suse.de>
Signed-off-by: Dave Airlie <airlied@linux.ie>
Dave Airlie 20 anos atrás
pai
commit
c73681e77b
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      drivers/char/drm/drm_context.c

+ 1 - 1
drivers/char/drm/drm_context.c

@@ -369,7 +369,7 @@ int drm_resctx( struct inode *inode, struct file *filp,
 		for ( i = 0 ; i < DRM_RESERVED_CONTEXTS ; i++ ) {
 			ctx.handle = i;
 			if ( copy_to_user( &res.contexts[i],
-					   &i, sizeof(i) ) )
+					   &ctx, sizeof(ctx) ) )
 				return -EFAULT;
 		}
 	}