drm/nouveau: fix nouveau_mem object leak
It's a regression from "drm/nouveau: create temp vmas for both src and dst of bo moves". Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
9617757fb3
commit
0de53a546b
1 changed files with 1 additions and 1 deletions
|
|
@ -846,8 +846,8 @@ nouveau_gart_manager_del(struct ttm_mem_type_manager *man,
|
||||||
struct ttm_mem_reg *mem)
|
struct ttm_mem_reg *mem)
|
||||||
{
|
{
|
||||||
nouveau_mem_node_cleanup(mem->mm_node);
|
nouveau_mem_node_cleanup(mem->mm_node);
|
||||||
mem->mm_node = NULL;
|
|
||||||
kfree(mem->mm_node);
|
kfree(mem->mm_node);
|
||||||
|
mem->mm_node = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue