mirror of https://gitee.com/openkylin/linux.git
drm/nouveau: fix a nouveau_bo dereference after it's been destroyed
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
de1f46a4b9
commit
90af89b93c
|
@ -160,11 +160,11 @@ nouveau_bo_new(struct drm_device *dev, struct nouveau_channel *chan,
|
||||||
ret = ttm_bo_init(&dev_priv->ttm.bdev, &nvbo->bo, size,
|
ret = ttm_bo_init(&dev_priv->ttm.bdev, &nvbo->bo, size,
|
||||||
ttm_bo_type_device, &nvbo->placement, align, 0,
|
ttm_bo_type_device, &nvbo->placement, align, 0,
|
||||||
false, NULL, size, nouveau_bo_del_ttm);
|
false, NULL, size, nouveau_bo_del_ttm);
|
||||||
nvbo->channel = NULL;
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
/* ttm will call nouveau_bo_del_ttm if it fails.. */
|
/* ttm will call nouveau_bo_del_ttm if it fails.. */
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
nvbo->channel = NULL;
|
||||||
|
|
||||||
spin_lock(&dev_priv->ttm.bo_list_lock);
|
spin_lock(&dev_priv->ttm.bo_list_lock);
|
||||||
list_add_tail(&nvbo->head, &dev_priv->ttm.bo_list);
|
list_add_tail(&nvbo->head, &dev_priv->ttm.bo_list);
|
||||||
|
|
Loading…
Reference in New Issue