drm: copy the right data back to userspace for getreserved contexts ioctl
authorDave Airlie <airlied@starflyer.(none)>
Fri, 5 Aug 2005 12:02:48 +0000 (22:02 +1000)
committerDave Airlie <airlied@linux.ie>
Fri, 5 Aug 2005 12:02:48 +0000 (22:02 +1000)
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>
drivers/char/drm/drm_context.c

index a7cfabd..5af46c9 100644 (file)
@@ -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;
                }
        }