diff options
author | Matthew Wilcox <mawilcox@microsoft.com> | 2017-02-13 22:03:55 +0100 |
---|---|---|
committer | Matthew Wilcox <mawilcox@microsoft.com> | 2017-02-14 03:44:10 +0100 |
commit | 7e73eb0b2df5e8d7bd00a3c5980ab86619699963 (patch) | |
tree | 1e99281360d8f07189e71f4032ddddb52f2c8fb6 /lib/Makefile | |
parent | radix-tree: Fix __rcu annotations (diff) | |
download | linux-7e73eb0b2df5e8d7bd00a3c5980ab86619699963.tar.xz linux-7e73eb0b2df5e8d7bd00a3c5980ab86619699963.zip |
idr: Add missing __rcu annotations
Where we use the radix tree iteration macros, we need to annotate 'slot'
with __rcu. Make sure we don't forget any new places in the future with
the same CFLAGS check used for radix-tree.c.
Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 2fc096985b21..43a80ec3bd10 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -25,6 +25,7 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \ earlycpio.o seq_buf.o nmi_backtrace.o nodemask.o win_minmax.o CFLAGS_radix-tree.o += -DCONFIG_SPARSE_RCU_POINTER +CFLAGS_idr.o += -DCONFIG_SPARSE_RCU_POINTER lib-$(CONFIG_MMU) += ioremap.o lib-$(CONFIG_SMP) += cpumask.o |