diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2014-01-27 11:49:39 -0800 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2014-02-23 09:00:58 -0800 |
commit | 51b1130eb5823ddb90a9ad07d243031d8cb7ecf2 (patch) | |
tree | ab66b2dfa679027a90b122ee95c1a82c4ff5a1f7 /kernel/Makefile | |
parent | 806274c018e9858320a27b785df761f45c33a56c (diff) | |
download | linux-51b1130eb5823ddb90a9ad07d243031d8cb7ecf2.tar.gz linux-51b1130eb5823ddb90a9ad07d243031d8cb7ecf2.tar.bz2 linux-51b1130eb5823ddb90a9ad07d243031d8cb7ecf2.zip |
rcutorture: Abstract rcu_torture_random()
Because rcu_torture_random() will be used by the locking equivalent to
rcutorture, pull it out into its own module. This new module cannot
be separately configured, instead, use the Kconfig "select" statement
from the Kconfig options of tests depending on it.
Suggested-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index bc010ee272b6..5c0e7666811d 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -93,6 +93,7 @@ obj-$(CONFIG_PADATA) += padata.o obj-$(CONFIG_CRASH_DUMP) += crash_dump.o obj-$(CONFIG_JUMP_LABEL) += jump_label.o obj-$(CONFIG_CONTEXT_TRACKING) += context_tracking.o +obj-$(CONFIG_TORTURE_TEST) += torture.o $(obj)/configs.o: $(obj)/config_data.h |