diff options
author | Rehas Sachdeva <aquannie@gmail.com> | 2017-02-13 16:16:03 -0500 |
---|---|---|
committer | Matthew Wilcox <mawilcox@microsoft.com> | 2017-02-13 21:44:10 -0500 |
commit | c6ce3e2fe3dacda5e8afb0036c814ae9c3fee9b9 (patch) | |
tree | b38304ab4998f9e676ea142a170630ad7d813a24 /tools | |
parent | 7e73eb0b2df5e8d7bd00a3c5980ab86619699963 (diff) |
radix tree test suite: Add config option for map shift
Add config option "SHIFT=<value>" to Makefile for building test suite
with any value of RADIX_TREE_MAP_SHIFT between 3 and 7 inclusive.
Signed-off-by: Rehas Sachdeva <aquannie@gmail.com>
[mawilcox@microsoft.com: .gitignore, quieten grep, remove on clean]
Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/radix-tree/.gitignore | 1 | ||||
-rw-r--r-- | tools/testing/radix-tree/Makefile | 18 | ||||
-rw-r--r-- | tools/testing/radix-tree/linux/kernel.h | 6 | ||||
-rw-r--r-- | tools/testing/radix-tree/linux/radix-tree.h | 2 |
4 files changed, 16 insertions, 11 deletions
diff --git a/tools/testing/radix-tree/.gitignore b/tools/testing/radix-tree/.gitignore index 26dedaf57aab..d4706c0ffceb 100644 --- a/tools/testing/radix-tree/.gitignore +++ b/tools/testing/radix-tree/.gitignore | |||
@@ -1,3 +1,4 @@ | |||
1 | generated/map-shift.h | ||
1 | idr.c | 2 | idr.c |
2 | idr-test | 3 | idr-test |
3 | main | 4 | main |
diff --git a/tools/testing/radix-tree/Makefile b/tools/testing/radix-tree/Makefile index ecea846e7660..f11315bedefc 100644 --- a/tools/testing/radix-tree/Makefile +++ b/tools/testing/radix-tree/Makefile | |||
@@ -6,11 +6,11 @@ CORE_OFILES := radix-tree.o idr.o linux.o test.o find_bit.o | |||
6 | OFILES = main.o $(CORE_OFILES) regression1.o regression2.o regression3.o \ | 6 | OFILES = main.o $(CORE_OFILES) regression1.o regression2.o regression3.o \ |
7 | tag_check.o multiorder.o idr-test.o iteration_check.o benchmark.o | 7 | tag_check.o multiorder.o idr-test.o iteration_check.o benchmark.o |
8 | 8 | ||
9 | ifdef BENCHMARK | 9 | ifndef SHIFT |
10 | CFLAGS += -DBENCHMARK=1 | 10 | SHIFT=3 |
11 | endif | 11 | endif |
12 | 12 | ||
13 | targets: $(TARGETS) | 13 | targets: mapshift $(TARGETS) |
14 | 14 | ||
15 | main: $(OFILES) | 15 | main: $(OFILES) |
16 | $(CC) $(CFLAGS) $(LDFLAGS) $^ -o main | 16 | $(CC) $(CFLAGS) $(LDFLAGS) $^ -o main |
@@ -22,11 +22,11 @@ multiorder: multiorder.o $(CORE_OFILES) | |||
22 | $(CC) $(CFLAGS) $(LDFLAGS) $^ -o multiorder | 22 | $(CC) $(CFLAGS) $(LDFLAGS) $^ -o multiorder |
23 | 23 | ||
24 | clean: | 24 | clean: |
25 | $(RM) $(TARGETS) *.o radix-tree.c idr.c | 25 | $(RM) $(TARGETS) *.o radix-tree.c idr.c generated/map-shift.h |
26 | 26 | ||
27 | vpath %.c ../../lib | 27 | vpath %.c ../../lib |
28 | 28 | ||
29 | $(OFILES): *.h */*.h \ | 29 | $(OFILES): *.h */*.h generated/map-shift.h \ |
30 | ../../include/linux/*.h \ | 30 | ../../include/linux/*.h \ |
31 | ../../include/asm/*.h \ | 31 | ../../include/asm/*.h \ |
32 | ../../../include/linux/radix-tree.h \ | 32 | ../../../include/linux/radix-tree.h \ |
@@ -37,3 +37,11 @@ radix-tree.c: ../../../lib/radix-tree.c | |||
37 | 37 | ||
38 | idr.c: ../../../lib/idr.c | 38 | idr.c: ../../../lib/idr.c |
39 | sed -e 's/^static //' -e 's/__always_inline //' -e 's/inline //' < $< > $@ | 39 | sed -e 's/^static //' -e 's/__always_inline //' -e 's/inline //' < $< > $@ |
40 | |||
41 | .PHONY: mapshift | ||
42 | |||
43 | mapshift: | ||
44 | @if ! grep -qw $(SHIFT) generated/map-shift.h; then \ | ||
45 | echo "#define RADIX_TREE_MAP_SHIFT $(SHIFT)" > \ | ||
46 | generated/map-shift.h; \ | ||
47 | fi | ||
diff --git a/tools/testing/radix-tree/linux/kernel.h b/tools/testing/radix-tree/linux/kernel.h index 677b8c0f60f9..b21a77fddcf7 100644 --- a/tools/testing/radix-tree/linux/kernel.h +++ b/tools/testing/radix-tree/linux/kernel.h | |||
@@ -12,12 +12,6 @@ | |||
12 | #include <linux/log2.h> | 12 | #include <linux/log2.h> |
13 | #include "../../../include/linux/kconfig.h" | 13 | #include "../../../include/linux/kconfig.h" |
14 | 14 | ||
15 | #ifdef BENCHMARK | ||
16 | #define RADIX_TREE_MAP_SHIFT 6 | ||
17 | #else | ||
18 | #define RADIX_TREE_MAP_SHIFT 3 | ||
19 | #endif | ||
20 | |||
21 | #define printk printf | 15 | #define printk printf |
22 | #define pr_debug printk | 16 | #define pr_debug printk |
23 | #define pr_cont printk | 17 | #define pr_cont printk |
diff --git a/tools/testing/radix-tree/linux/radix-tree.h b/tools/testing/radix-tree/linux/radix-tree.h index ddd135fa3af7..bf1bb231f9b5 100644 --- a/tools/testing/radix-tree/linux/radix-tree.h +++ b/tools/testing/radix-tree/linux/radix-tree.h | |||
@@ -1,5 +1,7 @@ | |||
1 | #ifndef _TEST_RADIX_TREE_H | 1 | #ifndef _TEST_RADIX_TREE_H |
2 | #define _TEST_RADIX_TREE_H | 2 | #define _TEST_RADIX_TREE_H |
3 | |||
4 | #include "generated/map-shift.h" | ||
3 | #include "../../../../include/linux/radix-tree.h" | 5 | #include "../../../../include/linux/radix-tree.h" |
4 | 6 | ||
5 | extern int kmalloc_verbose; | 7 | extern int kmalloc_verbose; |