drm/i915/buddy: avoid double list_add
authorMatthew Auld <matthew.auld@intel.com>
Thu, 5 Mar 2020 20:47:10 +0000 (20:47 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Fri, 6 Mar 2020 14:33:08 +0000 (14:33 +0000)
Be careful not to mark an already free node as free again.

Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20200305204711.217783-1-matthew.auld@intel.com
drivers/gpu/drm/i915/i915_buddy.c

index 66883af..20babbd 100644 (file)
@@ -312,7 +312,8 @@ i915_buddy_alloc(struct i915_buddy_mm *mm, unsigned int order)
        return block;
 
 out_free:
-       __i915_buddy_free(mm, block);
+       if (i != order)
+               __i915_buddy_free(mm, block);
        return ERR_PTR(err);
 }