Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 2 | # |
| 3 | # RCU-related configuration options |
| 4 | # |
| 5 | |
| 6 | menu "RCU Subsystem" |
| 7 | |
| 8 | config TREE_RCU |
| 9 | bool |
Lai Jiangshan | b3e627d | 2019-10-15 02:55:57 +0000 | [diff] [blame] | 10 | default y if SMP |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 11 | help |
| 12 | This option selects the RCU implementation that is |
| 13 | designed for very large SMP system with hundreds or |
| 14 | thousands of CPUs. It also scales down nicely to |
| 15 | smaller systems. |
| 16 | |
| 17 | config PREEMPT_RCU |
| 18 | bool |
Thomas Gleixner | 01b1d88 | 2019-07-26 23:19:38 +0200 | [diff] [blame] | 19 | default y if PREEMPTION |
Lai Jiangshan | b3e627d | 2019-10-15 02:55:57 +0000 | [diff] [blame] | 20 | select TREE_RCU |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 21 | help |
| 22 | This option selects the RCU implementation that is |
| 23 | designed for very large SMP systems with hundreds or |
| 24 | thousands of CPUs, but for which real-time response |
| 25 | is also required. It also scales down nicely to |
| 26 | smaller systems. |
| 27 | |
| 28 | Select this option if you are unsure. |
| 29 | |
| 30 | config TINY_RCU |
| 31 | bool |
Thomas Gleixner | 01b1d88 | 2019-07-26 23:19:38 +0200 | [diff] [blame] | 32 | default y if !PREEMPTION && !SMP |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 33 | help |
| 34 | This option selects the RCU implementation that is |
| 35 | designed for UP systems from which real-time response |
| 36 | is not required. This option greatly reduces the |
| 37 | memory footprint of RCU. |
| 38 | |
| 39 | config RCU_EXPERT |
| 40 | bool "Make expert-level adjustments to RCU configuration" |
| 41 | default n |
| 42 | help |
| 43 | This option needs to be enabled if you wish to make |
| 44 | expert-level adjustments to RCU configuration. By default, |
| 45 | no such adjustments can be made, which has the often-beneficial |
| 46 | side-effect of preventing "make oldconfig" from asking you all |
| 47 | sorts of detailed questions about how you would like numerous |
| 48 | obscure RCU options to be set up. |
| 49 | |
| 50 | Say Y if you need to make expert-level adjustments to RCU. |
| 51 | |
| 52 | Say N if you are unsure. |
| 53 | |
| 54 | config SRCU |
| 55 | bool |
| 56 | help |
| 57 | This option selects the sleepable version of RCU. This version |
| 58 | permits arbitrary sleeping or blocking within RCU read-side critical |
| 59 | sections. |
| 60 | |
| 61 | config TINY_SRCU |
| 62 | bool |
| 63 | default y if SRCU && TINY_RCU |
| 64 | help |
| 65 | This option selects the single-CPU non-preemptible version of SRCU. |
| 66 | |
| 67 | config TREE_SRCU |
| 68 | bool |
| 69 | default y if SRCU && !TINY_RCU |
| 70 | help |
| 71 | This option selects the full-fledged version of SRCU. |
| 72 | |
Paul E. McKenney | 5873b8a | 2020-03-03 11:49:21 -0800 | [diff] [blame^] | 73 | config TASKS_RCU_GENERIC |
| 74 | def_bool TASKS_RCU |
| 75 | select SRCU |
| 76 | help |
| 77 | This option enables generic infrastructure code supporting |
| 78 | task-based RCU implementations. Not for manual selection. |
| 79 | |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 80 | config TASKS_RCU |
Thomas Gleixner | 01b1d88 | 2019-07-26 23:19:38 +0200 | [diff] [blame] | 81 | def_bool PREEMPTION |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 82 | help |
| 83 | This option enables a task-based RCU implementation that uses |
| 84 | only voluntary context switch (not preemption!), idle, and |
Paul E. McKenney | 5873b8a | 2020-03-03 11:49:21 -0800 | [diff] [blame^] | 85 | user-mode execution as quiescent states. Not for manual selection. |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 86 | |
| 87 | config RCU_STALL_COMMON |
Lai Jiangshan | b3e627d | 2019-10-15 02:55:57 +0000 | [diff] [blame] | 88 | def_bool TREE_RCU |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 89 | help |
| 90 | This option enables RCU CPU stall code that is common between |
| 91 | the TINY and TREE variants of RCU. The purpose is to allow |
| 92 | the tiny variants to disable RCU CPU stall warnings, while |
| 93 | making these warnings mandatory for the tree variants. |
| 94 | |
| 95 | config RCU_NEED_SEGCBLIST |
Lai Jiangshan | b3e627d | 2019-10-15 02:55:57 +0000 | [diff] [blame] | 96 | def_bool ( TREE_RCU || TREE_SRCU ) |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 97 | |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 98 | config RCU_FANOUT |
| 99 | int "Tree-based hierarchical RCU fanout value" |
| 100 | range 2 64 if 64BIT |
| 101 | range 2 32 if !64BIT |
Lai Jiangshan | b3e627d | 2019-10-15 02:55:57 +0000 | [diff] [blame] | 102 | depends on TREE_RCU && RCU_EXPERT |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 103 | default 64 if 64BIT |
| 104 | default 32 if !64BIT |
| 105 | help |
| 106 | This option controls the fanout of hierarchical implementations |
| 107 | of RCU, allowing RCU to work efficiently on machines with |
| 108 | large numbers of CPUs. This value must be at least the fourth |
| 109 | root of NR_CPUS, which allows NR_CPUS to be insanely large. |
| 110 | The default value of RCU_FANOUT should be used for production |
| 111 | systems, but if you are stress-testing the RCU implementation |
| 112 | itself, small RCU_FANOUT values allow you to test large-system |
| 113 | code paths on small(er) systems. |
| 114 | |
| 115 | Select a specific number if testing RCU itself. |
| 116 | Take the default if unsure. |
| 117 | |
| 118 | config RCU_FANOUT_LEAF |
| 119 | int "Tree-based hierarchical RCU leaf-level fanout value" |
| 120 | range 2 64 if 64BIT |
| 121 | range 2 32 if !64BIT |
Lai Jiangshan | b3e627d | 2019-10-15 02:55:57 +0000 | [diff] [blame] | 122 | depends on TREE_RCU && RCU_EXPERT |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 123 | default 16 |
| 124 | help |
| 125 | This option controls the leaf-level fanout of hierarchical |
| 126 | implementations of RCU, and allows trading off cache misses |
| 127 | against lock contention. Systems that synchronize their |
| 128 | scheduling-clock interrupts for energy-efficiency reasons will |
| 129 | want the default because the smaller leaf-level fanout keeps |
| 130 | lock contention levels acceptably low. Very large systems |
| 131 | (hundreds or thousands of CPUs) will instead want to set this |
| 132 | value to the maximum value possible in order to reduce the |
| 133 | number of cache misses incurred during RCU's grace-period |
| 134 | initialization. These systems tend to run CPU-bound, and thus |
| 135 | are not helped by synchronized interrupts, and thus tend to |
| 136 | skew them, which reduces lock contention enough that large |
| 137 | leaf-level fanouts work well. That said, setting leaf-level |
| 138 | fanout to a large number will likely cause problematic |
| 139 | lock contention on the leaf-level rcu_node structures unless |
| 140 | you boot with the skew_tick kernel parameter. |
| 141 | |
| 142 | Select a specific number if testing RCU itself. |
| 143 | |
| 144 | Select the maximum permissible value for large systems, but |
| 145 | please understand that you may also need to set the skew_tick |
| 146 | kernel boot parameter to avoid contention on the rcu_node |
| 147 | structure's locks. |
| 148 | |
| 149 | Take the default if unsure. |
| 150 | |
| 151 | config RCU_FAST_NO_HZ |
| 152 | bool "Accelerate last non-dyntick-idle CPU's grace periods" |
| 153 | depends on NO_HZ_COMMON && SMP && RCU_EXPERT |
| 154 | default n |
| 155 | help |
| 156 | This option permits CPUs to enter dynticks-idle state even if |
| 157 | they have RCU callbacks queued, and prevents RCU from waking |
| 158 | these CPUs up more than roughly once every four jiffies (by |
| 159 | default, you can adjust this using the rcutree.rcu_idle_gp_delay |
| 160 | parameter), thus improving energy efficiency. On the other |
| 161 | hand, this option increases the duration of RCU grace periods, |
| 162 | for example, slowing down synchronize_rcu(). |
| 163 | |
| 164 | Say Y if energy efficiency is critically important, and you |
| 165 | don't care about increased grace-period durations. |
| 166 | |
| 167 | Say N if you are unsure. |
| 168 | |
| 169 | config RCU_BOOST |
| 170 | bool "Enable RCU priority boosting" |
| 171 | depends on RT_MUTEXES && PREEMPT_RCU && RCU_EXPERT |
| 172 | default n |
| 173 | help |
| 174 | This option boosts the priority of preempted RCU readers that |
| 175 | block the current preemptible RCU grace period for too long. |
| 176 | This option also prevents heavy loads from blocking RCU |
Paul E. McKenney | 8c1cf2d | 2018-07-07 18:12:26 -0700 | [diff] [blame] | 177 | callback invocation. |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 178 | |
| 179 | Say Y here if you are working with real-time apps or heavy loads |
| 180 | Say N here if you are unsure. |
| 181 | |
| 182 | config RCU_BOOST_DELAY |
| 183 | int "Milliseconds to delay boosting after RCU grace-period start" |
| 184 | range 0 3000 |
| 185 | depends on RCU_BOOST |
| 186 | default 500 |
| 187 | help |
| 188 | This option specifies the time to wait after the beginning of |
| 189 | a given grace period before priority-boosting preempted RCU |
| 190 | readers blocking that grace period. Note that any RCU reader |
| 191 | blocking an expedited RCU grace period is boosted immediately. |
| 192 | |
| 193 | Accept the default if unsure. |
| 194 | |
| 195 | config RCU_NOCB_CPU |
| 196 | bool "Offload RCU callback processing from boot-selected CPUs" |
Lai Jiangshan | b3e627d | 2019-10-15 02:55:57 +0000 | [diff] [blame] | 197 | depends on TREE_RCU |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 198 | depends on RCU_EXPERT || NO_HZ_FULL |
| 199 | default n |
| 200 | help |
| 201 | Use this option to reduce OS jitter for aggressive HPC or |
| 202 | real-time workloads. It can also be used to offload RCU |
| 203 | callback invocation to energy-efficient CPUs in battery-powered |
| 204 | asymmetric multiprocessors. |
| 205 | |
Paul E. McKenney | 8c1cf2d | 2018-07-07 18:12:26 -0700 | [diff] [blame] | 206 | This option offloads callback invocation from the set of CPUs |
| 207 | specified at boot time by the rcu_nocbs parameter. For each |
| 208 | such CPU, a kthread ("rcuox/N") will be created to invoke |
| 209 | callbacks, where the "N" is the CPU being offloaded, and where |
Sebastian Andrzej Siewior | 90326f0 | 2019-10-15 21:18:14 +0200 | [diff] [blame] | 210 | the "p" for RCU-preempt (PREEMPTION kernels) and "s" for RCU-sched |
| 211 | (!PREEMPTION kernels). Nothing prevents this kthread from running |
Paul E. McKenney | 8c1cf2d | 2018-07-07 18:12:26 -0700 | [diff] [blame] | 212 | on the specified CPUs, but (1) the kthreads may be preempted |
| 213 | between each callback, and (2) affinity or cgroups can be used |
| 214 | to force the kthreads to run on whatever set of CPUs is desired. |
Paul E. McKenney | 0af92d4 | 2017-05-17 08:43:40 -0700 | [diff] [blame] | 215 | |
| 216 | Say Y here if you want to help to debug reduced OS jitter. |
| 217 | Say N here if you are unsure. |
| 218 | |
| 219 | endmenu # "RCU Subsystem" |