https://bugzilla.kernel.org/show_bug.cgi?id=79591
--- Comment #4 from Stefan Ringel mail@stefanringel.de --- static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo) { if (bo->bdev->driver->move_notify) bo->bdev->driver->move_notify(bo, NULL);
if (bo->ttm) { ttm_tt_unbind(bo->ttm); ttm_tt_destroy(bo->ttm); bo->ttm = NULL; } ttm_bo_mem_put(bo, &bo->mem);
ww_mutex_unlock (&bo->resv->lock); }
The last line ? must it also change like this: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/drive...