kmemtrace: Core implementation.
commit1357eafaffa1bbd4de59d422b77e55b0effb41f0
authorEduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Thu, 10 Jul 2008 17:08:06 +0000 (10 20:08 +0300)
committerEduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Sun, 10 Aug 2008 15:33:48 +0000 (10 18:33 +0300)
tree5042a130b2e8a57fe2ad6c7844d96ad51fd08728
parentf187e1318dcf48309bf2d7d3715c7958932ebf18
kmemtrace: Core implementation.

kmemtrace provides tracing for slab allocator functions, such as kmalloc,
kfree, kmem_cache_alloc, kmem_cache_free etc.. Collected data is then fed
to the userspace application in order to analyse allocation hotspots,
internal fragmentation and so on, making it possible to see how well an
allocator performs, as well as debug and profile kernel code.

Signed-off-by: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Documentation/kernel-parameters.txt
MAINTAINERS
include/linux/kmemtrace.h [new file with mode: 0644]
init/main.c
lib/Kconfig.debug
mm/Makefile
mm/kmemtrace.c [new file with mode: 0644]