Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5b753275 authored by Christian König's avatar Christian König Committed by Alex Deucher
Browse files

drm/radeon: fix error handling in radeon_vm_bo_set_addr

parent ec8a362f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -472,6 +472,10 @@ int radeon_vm_bo_set_addr(struct radeon_device *rdev,
	if (bo_va->soffset) {
		/* add a clone of the bo_va to clear the old address */
		tmp = kzalloc(sizeof(struct radeon_bo_va), GFP_KERNEL);
		if (!tmp) {
			mutex_unlock(&vm->mutex);
			return -ENOMEM;
		}
		tmp->soffset = bo_va->soffset;
		tmp->eoffset = bo_va->eoffset;
		tmp->vm = vm;