Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mm: move slabinfo.c to tools/vm

We have tools/vm/ folder for vm tools, so move slabinfo.c from tools/slub/
to tools/vm/

Signed-off-by: Dave Young <dyoung@redhat.com>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Acked-by: Christoph Lameter <cl@linux.com>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Dave Young and committed by
Linus Torvalds
63e31553 c6dd897f

+2 -2
tools/slub/slabinfo.c tools/vm/slabinfo.c
+2 -2
tools/vm/Makefile
··· 3 3 CC = $(CROSS_COMPILE)gcc 4 4 CFLAGS = -Wall -Wextra 5 5 6 - all: page-types 6 + all: page-types slabinfo 7 7 %: %.c 8 8 $(CC) $(CFLAGS) -o $@ $^ 9 9 10 10 clean: 11 - $(RM) page-types 11 + $(RM) page-types slabinfo