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>
This commit is contained in:
Родитель
24d1094227
Коммит
c73681e77b
|
@ -369,7 +369,7 @@ int drm_resctx( struct inode *inode, struct file *filp,
|
||||||
for ( i = 0 ; i < DRM_RESERVED_CONTEXTS ; i++ ) {
|
for ( i = 0 ; i < DRM_RESERVED_CONTEXTS ; i++ ) {
|
||||||
ctx.handle = i;
|
ctx.handle = i;
|
||||||
if ( copy_to_user( &res.contexts[i],
|
if ( copy_to_user( &res.contexts[i],
|
||||||
&i, sizeof(i) ) )
|
&ctx, sizeof(ctx) ) )
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче