mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-03 07:41:40 +00:00
drm/ttm: fix ttm_bo_add_ttm(user) failure path
ttm_tt_destroy kfrees passed object, so we need to nullify a reference to it. Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: stable@kernel.org Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
ba95c45a78
commit
7c4c3960df
@ -353,8 +353,10 @@ static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
|
|||||||
|
|
||||||
ret = ttm_tt_set_user(bo->ttm, current,
|
ret = ttm_tt_set_user(bo->ttm, current,
|
||||||
bo->buffer_start, bo->num_pages);
|
bo->buffer_start, bo->num_pages);
|
||||||
if (unlikely(ret != 0))
|
if (unlikely(ret != 0)) {
|
||||||
ttm_tt_destroy(bo->ttm);
|
ttm_tt_destroy(bo->ttm);
|
||||||
|
bo->ttm = NULL;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
printk(KERN_ERR TTM_PFX "Illegal buffer object type\n");
|
printk(KERN_ERR TTM_PFX "Illegal buffer object type\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user