diff options
author | Paul E. McKenney <paulmck@kernel.org> | 2022-03-17 17:30:10 +0100 |
---|---|---|
committer | Paul E. McKenney <paulmck@kernel.org> | 2022-04-12 02:08:07 +0200 |
commit | 46e861be589881e0905b9ade3d8439883858721c (patch) | |
tree | fb6dab5492d583f4581edc0a42ed73407153a804 /kernel/rcu/Kconfig | |
parent | Linux 5.18-rc1 (diff) | |
download | linux-46e861be589881e0905b9ade3d8439883858721c.tar.xz linux-46e861be589881e0905b9ade3d8439883858721c.zip |
rcu: Make TASKS_RUDE_RCU select IRQ_WORK
The TASKS_RUDE_RCU does not select IRQ_WORK, which can result in build
failures for kernels that do not otherwise select IRQ_WORK. This commit
therefore causes the TASKS_RUDE_RCU Kconfig option to select IRQ_WORK.
Reported-by: Hyeonggon Yoo <42.hyeyoo@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to 'kernel/rcu/Kconfig')
-rw-r--r-- | kernel/rcu/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/rcu/Kconfig b/kernel/rcu/Kconfig index bf8e341e75b4..f559870fbf8b 100644 --- a/kernel/rcu/Kconfig +++ b/kernel/rcu/Kconfig @@ -86,6 +86,7 @@ config TASKS_RCU config TASKS_RUDE_RCU def_bool 0 + select IRQ_WORK help This option enables a task-based RCU implementation that uses only context switch (including preemption) and user-mode |