summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/i915_buddy.c
diff options
context:
space:
mode:
authorMatthew Auld <matthew.auld@intel.com>2019-08-16 12:53:57 +0200
committerChris Wilson <chris@chris-wilson.co.uk>2019-08-16 17:28:41 +0200
commit3ba09632ce8bd42d1e4b57a6a423dcab937e211b (patch)
tree382516d0c036e82fe98e294ace4f4ae38162e957 /drivers/gpu/drm/i915/i915_buddy.c
parentdrm/i915/buddy: tidy up i915_buddy_fini (diff)
downloadlinux-3ba09632ce8bd42d1e4b57a6a423dcab937e211b.tar.xz
linux-3ba09632ce8bd42d1e4b57a6a423dcab937e211b.zip
drm/i915/buddy: use kmemleak_update_trace
Since nodes are cached in a free-list, and potentially marked as free without actually being destroyed, thus allowing them to be opportunistically re-allocated, we should apply kmemleak_update_trace every time a node is given a new owner and marked as allocated, to aid in debugging. Suggested-by: Chris Wilson <chris@chris-wilson.co.uk> 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/20190816105357.14340-2-matthew.auld@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/i915_buddy.c')
-rw-r--r--drivers/gpu/drm/i915/i915_buddy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_buddy.c b/drivers/gpu/drm/i915/i915_buddy.c
index 5995247fdf76..fe1871d7c126 100644
--- a/drivers/gpu/drm/i915/i915_buddy.c
+++ b/drivers/gpu/drm/i915/i915_buddy.c
@@ -3,6 +3,7 @@
* Copyright © 2019 Intel Corporation
*/
+#include <linux/kmemleak.h>
#include <linux/slab.h>
#include "i915_buddy.h"
@@ -304,6 +305,7 @@ i915_buddy_alloc(struct i915_buddy_mm *mm, unsigned int order)
}
mark_allocated(block);
+ kmemleak_update_trace(block);
return block;
out_free: