File tree Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
/* SPDX-License-Identifier: GPL-2.0+ */
2
+ #ifndef __MAPLE_SHARED_H__
3
+ #define __MAPLE_SHARED_H__
2
4
3
5
#define CONFIG_DEBUG_MAPLE_TREE
4
6
#define CONFIG_MAPLE_SEARCH
7
9
#include <stdlib.h>
8
10
#include <time.h>
9
11
#include "linux/init.h"
12
+
13
+ #endif /* __MAPLE_SHARED_H__ */
Original file line number Diff line number Diff line change 1
1
/* SPDX-License-Identifier: GPL-2.0 */
2
+ #ifndef __SHARED_H__
3
+ #define __SHARED_H__
2
4
3
5
#include <linux/types.h>
4
6
#include <linux/bug.h>
31
33
#ifndef dump_stack
32
34
#define dump_stack () assert(0)
33
35
#endif
36
+
37
+ #endif /* __SHARED_H__ */
Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ SHARED_DEPS = Makefile ../shared/shared.mk ../shared/*.h generated/map-shift.h \
15
15
../../../include/linux/maple_tree.h \
16
16
../../../include/linux/radix-tree.h \
17
17
../../../lib/radix-tree.h \
18
- ../../../include/linux/idr.h
18
+ ../../../include/linux/idr.h \
19
+ ../../../lib/maple_tree.c \
20
+ ../../../lib/test_maple_tree.c
19
21
20
22
ifndef SHIFT
21
23
SHIFT=3
Original file line number Diff line number Diff line change 1
1
/* SPDX-License-Identifier: GPL-2.0+ */
2
+ #ifndef __XARRAY_SHARED_H__
3
+ #define __XARRAY_SHARED_H__
2
4
3
5
#define XA_DEBUG
4
6
#include "shared.h"
7
+
8
+ #endif /* __XARRAY_SHARED_H__ */
You can’t perform that action at this time.
0 commit comments