Skip to content

Commit

Permalink
radix tree test suite: Add config option for map shift
Browse files Browse the repository at this point in the history
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 <[email protected]>
[[email protected]: .gitignore, quieten grep, remove on clean]
Signed-off-by: Matthew Wilcox <[email protected]>
  • Loading branch information
rehassachdeva authored and Matthew Wilcox committed Feb 14, 2017
1 parent 7e73eb0 commit c6ce3e2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
1 change: 1 addition & 0 deletions tools/testing/radix-tree/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
generated/map-shift.h
idr.c
idr-test
main
Expand Down
18 changes: 13 additions & 5 deletions tools/testing/radix-tree/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ CORE_OFILES := radix-tree.o idr.o linux.o test.o find_bit.o
OFILES = main.o $(CORE_OFILES) regression1.o regression2.o regression3.o \
tag_check.o multiorder.o idr-test.o iteration_check.o benchmark.o

ifdef BENCHMARK
CFLAGS += -DBENCHMARK=1
ifndef SHIFT
SHIFT=3
endif

targets: $(TARGETS)
targets: mapshift $(TARGETS)

main: $(OFILES)
$(CC) $(CFLAGS) $(LDFLAGS) $^ -o main
Expand All @@ -22,11 +22,11 @@ multiorder: multiorder.o $(CORE_OFILES)
$(CC) $(CFLAGS) $(LDFLAGS) $^ -o multiorder

clean:
$(RM) $(TARGETS) *.o radix-tree.c idr.c
$(RM) $(TARGETS) *.o radix-tree.c idr.c generated/map-shift.h

vpath %.c ../../lib

$(OFILES): *.h */*.h \
$(OFILES): *.h */*.h generated/map-shift.h \
../../include/linux/*.h \
../../include/asm/*.h \
../../../include/linux/radix-tree.h \
Expand All @@ -37,3 +37,11 @@ radix-tree.c: ../../../lib/radix-tree.c

idr.c: ../../../lib/idr.c
sed -e 's/^static //' -e 's/__always_inline //' -e 's/inline //' < $< > $@

.PHONY: mapshift

mapshift:
@if ! grep -qw $(SHIFT) generated/map-shift.h; then \
echo "#define RADIX_TREE_MAP_SHIFT $(SHIFT)" > \
generated/map-shift.h; \
fi
6 changes: 0 additions & 6 deletions tools/testing/radix-tree/linux/kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@
#include <linux/log2.h>
#include "../../../include/linux/kconfig.h"

#ifdef BENCHMARK
#define RADIX_TREE_MAP_SHIFT 6
#else
#define RADIX_TREE_MAP_SHIFT 3
#endif

#define printk printf
#define pr_debug printk
#define pr_cont printk
Expand Down
2 changes: 2 additions & 0 deletions tools/testing/radix-tree/linux/radix-tree.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#ifndef _TEST_RADIX_TREE_H
#define _TEST_RADIX_TREE_H

#include "generated/map-shift.h"
#include "../../../../include/linux/radix-tree.h"

extern int kmalloc_verbose;
Expand Down

0 comments on commit c6ce3e2

Please sign in to comment.