mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-01 07:10:15 +01:00
drm: fix oops since user objects..
This commit is contained in:
parent
998d120a47
commit
a2e8e294d8
1 changed files with 2 additions and 1 deletions
|
|
@ -2213,7 +2213,6 @@ int drm_bo_driver_finish(struct drm_device * dev)
|
|||
if (list_empty(&bm->unfenced)) {
|
||||
DRM_DEBUG("Unfenced list was clean\n");
|
||||
}
|
||||
out:
|
||||
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,15))
|
||||
unlock_page(bm->dummy_read_page);
|
||||
|
|
@ -2221,6 +2220,8 @@ int drm_bo_driver_finish(struct drm_device * dev)
|
|||
ClearPageReserved(bm->dummy_read_page);
|
||||
#endif
|
||||
__free_page(bm->dummy_read_page);
|
||||
|
||||
out:
|
||||
mutex_unlock(&dev->struct_mutex);
|
||||
return ret;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue