mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 12:43:55 +08:00
drm/vmwgfx: Fix user space handle equal to zero
User-space handles equal to zero are interpreted as uninitialized or
illegal by some drm systems (most notably kms). This means that a
dumb buffer or surface with a zero user-space handle can never be
used as a kms frame-buffer.
Cc: <stable@vger.kernel.org>
Fixes: c7eae62666
("drm/vmwgfx: Make the object handles idr-generated")
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Deepak Rawat <drawat@vmware.com>
This commit is contained in:
parent
63cb444418
commit
8407f8a1d9
@ -174,7 +174,7 @@ int ttm_base_object_init(struct ttm_object_file *tfile,
|
||||
kref_init(&base->refcount);
|
||||
idr_preload(GFP_KERNEL);
|
||||
spin_lock(&tdev->object_lock);
|
||||
ret = idr_alloc(&tdev->idr, base, 0, 0, GFP_NOWAIT);
|
||||
ret = idr_alloc(&tdev->idr, base, 1, 0, GFP_NOWAIT);
|
||||
spin_unlock(&tdev->object_lock);
|
||||
idr_preload_end();
|
||||
if (ret < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user