UPSTREAM: mm/sl[uo]b: export __kmalloc_track(_node)_caller
slab does this already, and I want to use this in a memory allocation tracker in drm for stuff that's tied to the lifetime of a drm_device, not the underlying struct device. Kinda like devres, but for drm. Acked-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Cc: Christoph Lameter <cl@linux.com> Cc: Pekka Enberg <penberg@kernel.org> Cc: David Rientjes <rientjes@google.com> Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: linux-mm@kvack.org Link: https://patchwork.freedesktop.org/patch/msgid/20200323144950.3018436-2-daniel.vetter@ffwll.ch (cherry picked from commit fd7cb5753ef49964ea9db5121c3fc9a4ec21ed8e) Bug: 163141236 Signed-off-by: Alistair Delva <adelva@google.com> Change-Id: I10790befc779311a5f2ee441e4d073e51a5a7a62
This commit is contained in:
parent
a7982ced0c
commit
77bc008d89
@ -524,6 +524,7 @@ void *__kmalloc_track_caller(size_t size, gfp_t gfp, unsigned long caller)
|
|||||||
{
|
{
|
||||||
return __do_kmalloc_node(size, gfp, NUMA_NO_NODE, caller);
|
return __do_kmalloc_node(size, gfp, NUMA_NO_NODE, caller);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(__kmalloc_track_caller);
|
||||||
|
|
||||||
#ifdef CONFIG_NUMA
|
#ifdef CONFIG_NUMA
|
||||||
void *__kmalloc_node_track_caller(size_t size, gfp_t gfp,
|
void *__kmalloc_node_track_caller(size_t size, gfp_t gfp,
|
||||||
@ -531,6 +532,7 @@ void *__kmalloc_node_track_caller(size_t size, gfp_t gfp,
|
|||||||
{
|
{
|
||||||
return __do_kmalloc_node(size, gfp, node, caller);
|
return __do_kmalloc_node(size, gfp, node, caller);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(__kmalloc_node_track_caller);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void kfree(const void *block)
|
void kfree(const void *block)
|
||||||
|
@ -4384,6 +4384,7 @@ void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(__kmalloc_track_caller);
|
||||||
|
|
||||||
#ifdef CONFIG_NUMA
|
#ifdef CONFIG_NUMA
|
||||||
void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
|
void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
|
||||||
@ -4414,6 +4415,7 @@ void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(__kmalloc_node_track_caller);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_SYSFS
|
#ifdef CONFIG_SYSFS
|
||||||
|
Loading…
Reference in New Issue
Block a user