diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2017-04-28 13:53:04 -0700 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2017-06-08 08:25:38 -0700 |
commit | 07f6e64bf2ab98cad0d9c595659209858e7bff83 (patch) | |
tree | 96657582f82b2de9c2367754892713e06c445155 /init/Kconfig | |
parent | ea9b0c8a26a2cadfe49382d679eee88d3c4de79c (diff) | |
download | linux-07f6e64bf2ab98cad0d9c595659209858e7bff83.tar.gz linux-07f6e64bf2ab98cad0d9c595659209858e7bff83.tar.bz2 linux-07f6e64bf2ab98cad0d9c595659209858e7bff83.zip |
srcu: Make SRCU be once again optional
Commit d160a727c40e ("srcu: Make SRCU be built by default") in response
to build errors, which were caused by code that included srcu.h
despite !SRCU. However, srcutiny.o is almost 2K of code, which is not
insignificant for those attempting to run the Linux kernel on IoT devices.
This commit therefore makes SRCU be once again optional, and adjusts
srcu.h to allow error-free inclusion in !SRCU kernel builds.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Nicolas Pitre <nico@linaro.org>
Diffstat (limited to 'init/Kconfig')
-rw-r--r-- | init/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/init/Kconfig b/init/Kconfig index 1d3475fc9496..d928a3724af9 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -521,7 +521,6 @@ config RCU_EXPERT config SRCU bool - default y help This option selects the sleepable version of RCU. This version permits arbitrary sleeping or blocking within RCU read-side critical |