diff options
| -rw-r--r-- | Documentation/RCU/00-INDEX | 2 | ||||
| -rw-r--r-- | Documentation/RCU/trace.txt | 413 | ||||
| -rw-r--r-- | arch/powerpc/platforms/pseries/rtasd.c | 4 | ||||
| -rw-r--r-- | include/linux/hardirq.h | 14 | ||||
| -rw-r--r-- | include/linux/rcupdate.h | 10 | ||||
| -rw-r--r-- | include/linux/rcutree.h | 329 | ||||
| -rw-r--r-- | init/Kconfig | 18 | ||||
| -rw-r--r-- | kernel/Kconfig.preempt | 62 | ||||
| -rw-r--r-- | kernel/Makefile | 6 | ||||
| -rw-r--r-- | kernel/rcupreempt.c | 10 | ||||
| -rw-r--r-- | kernel/rcupreempt_trace.c | 10 | ||||
| -rw-r--r-- | kernel/rcutree.c | 1535 | ||||
| -rw-r--r-- | kernel/rcutree_trace.c | 271 | ||||
| -rw-r--r-- | kernel/softirq.c | 5 | ||||
| -rw-r--r-- | lib/Kconfig.debug | 13 |
15 files changed, 2671 insertions, 31 deletions
diff --git a/Documentation/RCU/00-INDEX b/Documentation/RCU/00-INDEX index 461481dfb7c..7dc0695a8f9 100644 --- a/Documentation/RCU/00-INDEX +++ b/Documentation/RCU/00-INDEX | |||
| @@ -16,6 +16,8 @@ RTFP.txt | |||
| 16 | - List of RCU papers (bibliography) going back to 1980. | 16 | - List of RCU papers (bibliography) going back to 1980. |
| 17 | torture.txt | 17 | torture.txt |
| 18 | - RCU Torture Test Operation (CONFIG_RCU_TORTURE_TEST) | 18 | - RCU Torture Test Operation (CONFIG_RCU_TORTURE_TEST) |
| 19 | trace.txt | ||
| 20 | - CONFIG_RCU_TRACE debugfs files and formats | ||
| 19 | UP.txt | 21 | UP.txt |
| 20 | - RCU on Uniprocessor Systems | 22 | - RCU on Uniprocessor Systems |
| 21 | whatisRCU.txt | 23 | whatisRCU.txt |
diff --git a/Documentation/RCU/trace.txt b/Documentation/RCU/trace.txt new file mode 100644 index 00000000000..068848240a8 --- /dev/null +++ b/Documentation/RCU/trace.txt | |||
| @@ -0,0 +1,413 @@ | |||
| 1 | CONFIG_RCU_TRACE debugfs Files and Formats | ||
| 2 | |||
| 3 | |||
| 4 | The rcupreempt and rcutree implementations of RCU provide debugfs trace | ||
| 5 | output that summarizes counters and state. This information is useful for | ||
| 6 | debugging RCU itself, and can sometimes also help to debug abuses of RCU. | ||
| 7 | Note that the rcuclassic implementation of RCU does not provide debugfs | ||
| 8 | trace output. | ||
| 9 | |||
| 10 | The following sections describe the debugfs files and formats for | ||
| 11 | preemptable RCU (rcupreempt) and hierarchical RCU (rcutree). | ||
| 12 | |||
| 13 | |||
| 14 | Preemptable RCU debugfs Files and Formats | ||
| 15 | |||
| 16 | This implementation of RCU provides three debugfs files under the | ||
| 17 | top-level directory RCU: rcu/rcuctrs (which displays the per-CPU | ||
| 18 | counters used by preemptable RCU) rcu/rcugp (which displays grace-period | ||
| 19 | counters), and rcu/rcustats (which internal counters for debugging RCU). | ||
| 20 | |||
| 21 | The output of "cat rcu/rcuctrs" looks as follows: | ||
| 22 | |||
| 23 | CPU last cur F M | ||
| 24 | 0 5 -5 0 0 | ||
| 25 | 1 -1 0 0 0 | ||
| 26 | 2 0 1 0 0 | ||
| 27 | 3 0 1 0 0 | ||
| 28 | 4 0 1 0 0 | ||
| 29 | 5 0 1 0 0 | ||
| 30 | 6 0 2 0 0 | ||
| 31 | 7 0 -1 0 0 | ||
| 32 | 8 0 1 0 0 | ||
| 33 | ggp = 26226, state = waitzero | ||
| 34 | |||
| 35 | The per-CPU fields are as follows: | ||
| 36 | |||
| 37 | o "CPU" gives the CPU number. Offline CPUs are not displayed. | ||
| 38 | |||
| 39 | o "last" gives the value of the counter that is being decremented | ||
| 40 | for the current grace period phase. In the example above, | ||
| 41 | the counters sum to 4, indicating that there are still four | ||
| 42 | RCU read-side critical sections still running that started | ||
| 43 | before the last counter flip. | ||
| 44 | |||
| 45 | o "cur" gives the value of the counter that is currently being | ||
| 46 | both incremented (by rcu_read_lock()) and decremented (by | ||
| 47 | rcu_read_unlock()). In the example above, the counters sum to | ||
| 48 | 1, indicating that there is only one RCU read-side critical section | ||
| 49 | still running that started after the last counter flip. | ||
| 50 | |||
| 51 | o "F" indicates whether RCU is waiting for this CPU to acknowledge | ||
| 52 | a counter flip. In the above example, RCU is not waiting on any, | ||
| 53 | which is consistent with the state being "waitzero" rather than | ||
| 54 | "waitack". | ||
| 55 | |||
| 56 | o "M" indicates whether RCU is waiting for this CPU to execute a | ||
| 57 | memory barrier. In the above example, RCU is not waiting on any, | ||
| 58 | which is consistent with the state being "waitzero" rather than | ||
| 59 | "waitmb". | ||
| 60 | |||
| 61 | o "ggp" is the global grace-period counter. | ||
| 62 | |||
| 63 | o "state" is the RCU state, which can be one of the following: | ||
| 64 | |||
| 65 | o "idle": there is no grace period in progress. | ||
| 66 | |||
| 67 | o "waitack": RCU just incremented the global grace-period | ||
| 68 | counter, which has the effect of reversing the roles of | ||
| 69 | the "last" and "cur" counters above, and is waiting for | ||
| 70 | all the CPUs to acknowledge the flip. Once the flip has | ||
| 71 | been acknowledged, CPUs will no longer be incrementing | ||
| 72 | what are now the "last" counters, so that their sum will | ||
| 73 | decrease monotonically down to zero. | ||
| 74 | |||
| 75 | o "waitzero": RCU is waiting for the sum of the "last" counters | ||
| 76 | to decrease to zero. | ||
| 77 | |||
| 78 | o "waitmb": RCU is waiting for each CPU to execute a memory | ||
| 79 | barrier, which ensures that instructions from a given CPU's | ||
| 80 | last RCU read-side critical section cannot be reordered | ||
| 81 | with instructions following the memory-barrier instruction. | ||
| 82 | |||
| 83 | The output of "cat rcu/rcugp" looks as follows: | ||
| 84 | |||
| 85 | oldggp=48870 newggp=48873 | ||
| 86 | |||
| 87 | Note that reading from this file provokes a synchronize_rcu(). The | ||
| 88 | "oldggp" value is that of "ggp" from rcu/rcuctrs above, taken before | ||
| 89 | executing the synchronize_rcu(), and the "newggp" value is also the | ||
| 90 | "ggp" value, but taken after the synchronize_rcu() command returns. | ||
| 91 | |||
| 92 | |||
| 93 | The output of "cat rcu/rcugp" looks as follows: | ||
| 94 | |||
| 95 | na=1337955 nl=40 wa=1337915 wl=44 da=1337871 dl=0 dr=1337871 di=1337871 | ||
| 96 | 1=50989 e1=6138 i1=49722 ie1=82 g1=49640 a1=315203 ae1=265563 a2=49640 | ||
| 97 | z1=1401244 ze1=1351605 z2=49639 m1=5661253 me1=5611614 m2=49639 | ||
| 98 | |||
| 99 | These are counters tracking internal preemptable-RCU events, however, | ||
| 100 | some of them may be useful for debugging algorithms using RCU. In | ||
| 101 | particular, the "nl", "wl", and "dl" values track the number of RCU | ||
| 102 | callbacks in various states. The fields are as follows: | ||
| 103 | |||
| 104 | o "na" is the total number of RCU callbacks that have been enqueued | ||
| 105 | since boot. | ||
| 106 | |||
| 107 | o "nl" is the number of RCU callbacks waiting for the previous | ||
| 108 | grace period to end so that they can start waiting on the next | ||
| 109 | grace period. | ||
| 110 | |||
| 111 | o "wa" is the total number of RCU callbacks that have started waiting | ||
| 112 | for a grace period since boot. "na" should be roughly equal to | ||
| 113 | "nl" plus "wa". | ||
| 114 | |||
| 115 | o "wl" is the number of RCU callbacks currently waiting for their | ||
| 116 | grace period to end. | ||
| 117 | |||
| 118 | o "da" is the total number of RCU callbacks whose grace periods | ||
| 119 | have completed since boot. "wa" should be roughly equal to | ||
| 120 | "wl" plus "da". | ||
| 121 | |||
| 122 | o "dr" is the total number of RCU callbacks that have been removed | ||
| 123 | from the list of callbacks ready to invoke. "dr" should be roughly | ||
| 124 | equal to "da". | ||
| 125 | |||
| 126 | o "di" is the total number of RCU callbacks that have been invoked | ||
| 127 | since boot. "di" should be roughly equal to "da", though some | ||
| 128 | early versions of preemptable RCU had a bug so that only the | ||
| 129 | last CPU's count of invocations was displayed, rather than the | ||
| 130 | sum of all CPU's counts. | ||
| 131 | |||
| 132 | o "1" is the number of calls to rcu_try_flip(). This should be | ||
| 133 | roughly equal to the sum of "e1", "i1", "a1", "z1", and "m1" | ||
| 134 | described below. In other words, the number of times that | ||
| 135 | the state machine is visited should be equal to the sum of the | ||
| 136 | number of times that each state is visited plus the number of | ||
| 137 | times that the state-machine lock acquisition failed. | ||
| 138 | |||
| 139 | o "e1" is the number of times that rcu_try_flip() was unable to | ||
| 140 | acquire the fliplock. | ||
| 141 | |||
| 142 | o "i1" is the number of calls to rcu_try_flip_idle(). | ||
| 143 | |||
| 144 | o "ie1" is the number of times rcu_try_flip_idle() exited early | ||
| 145 | due to the calling CPU having no work for RCU. | ||
| 146 | |||
| 147 | o "g1" is the number of times that rcu_try_flip_idle() decided | ||
| 148 | to start a new grace period. "i1" should be roughly equal to | ||
| 149 | "ie1" plus "g1". | ||
| 150 | |||
| 151 | o "a1" is the number of calls to rcu_try_flip_waitack(). | ||
| 152 | |||
| 153 | o "ae1" is the number of times that rcu_try_flip_waitack() found | ||
| 154 | that at least one CPU had not yet acknowledge the new grace period | ||
| 155 | (AKA "counter flip"). | ||
| 156 | |||
| 157 | o "a2" is the number of time rcu_try_flip_waitack() found that | ||
| 158 | all CPUs had acknowledged. "a1" should be roughly equal to | ||
| 159 | "ae1" plus "a2". (This particular output was collected on | ||
| 160 | a 128-CPU machine, hence the smaller-than-usual fraction of | ||
| 161 | calls to rcu_try_flip_waitack() finding all CPUs having already | ||
| 162 | acknowledged.) | ||
| 163 | |||
| 164 | o "z1" is the number of calls to rcu_try_flip_waitzero(). | ||
| 165 | |||
| 166 | o "ze1" is the number of times that rcu_try_flip_waitzero() found | ||
| 167 | that not all of the old RCU read-side critical sections had | ||
| 168 | completed. | ||
| 169 | |||
| 170 | o "z2" is the number of times that rcu_try_flip_waitzero() finds | ||
| 171 | the sum of the counters equal to zero, in other words, that | ||
| 172 | all of the old RCU read-side critical sections had completed. | ||
| 173 | The value of "z1" should be roughly equal to "ze1" plus | ||
| 174 | "z2". | ||
| 175 | |||
| 176 | o "m1" is the number of calls to rcu_try_flip_waitmb(). | ||
| 177 | |||
| 178 | o "me1" is the number of times that rcu_try_flip_waitmb() finds | ||
| 179 | that at least one CPU has not yet executed a memory barrier. | ||
| 180 | |||
| 181 | o "m2" is the number of times that rcu_try_flip_waitmb() finds that | ||
| 182 | all CPUs have executed a memory barrier. | ||
| 183 | |||
| 184 | |||
| 185 | Hierarchical RCU debugfs Files and Formats | ||
| 186 | |||
| 187 | This implementation of RCU provides three debugfs files under the | ||
| 188 | top-level directory RCU: rcu/rcudata (which displays fields in struct | ||
| 189 | rcu_data), rcu/rcugp (which displays grace-period counters), and | ||
| 190 | rcu/rcuhier (which displays the struct rcu_node hierarchy). | ||
| 191 | |||
| 192 | The output of "cat rcu/rcudata" looks as follows: | ||
| 193 | |||
| 194 | rcu: | ||
| 195 | 0 c=4011 g=4012 pq=1 pqc=4011 qp=0 rpfq=1 rp=3c2a dt=23301/73 dn=2 df=1882 of=0 ri=2126 ql=2 b=10 | ||
| 196 | 1 c=4011 g=4012 pq=1 pqc=4011 qp=0 rpfq=3 rp=39a6 dt=78073/1 dn=2 df=1402 of=0 ri=1875 ql=46 b=10 | ||
| 197 | 2 c=4010 g=4010 pq=1 pqc=4010 qp=0 rpfq=-5 rp=1d12 dt=16646/0 dn=2 df=3140 of=0 ri=2080 ql=0 b=10 | ||
| 198 | 3 c=4012 g=4013 pq=1 pqc=4012 qp=1 rpfq=3 rp=2b50 dt=21159/1 dn=2 df=2230 of=0 ri=1923 ql=72 b=10 | ||
| 199 | 4 c=4012 g=4013 pq=1 pqc=4012 qp=1 rpfq=3 rp=1644 dt=5783/1 dn=2 df=3348 of=0 ri=2805 ql=7 b=10 | ||
| 200 | 5 c=4012 g=4013 pq=0 pqc=4011 qp=1 rpfq=3 rp=1aac dt=5879/1 dn=2 df=3140 of=0 ri=2066 ql=10 b=10 | ||
| 201 | 6 c=4012 g=4013 pq=1 pqc=4012 qp=1 rpfq=3 rp=ed8 dt=5847/1 dn=2 df=3797 of=0 ri=1266 ql=10 b=10 | ||
| 202 | 7 c=4012 g=4013 pq=1 pqc=4012 qp=1 rpfq=3 rp=1fa2 dt=6199/1 dn=2 df=2795 of=0 ri=2162 ql=28 b=10 | ||
| 203 | rcu_bh: | ||
| 204 | 0 c=-268 g=-268 pq=1 pqc=-268 qp=0 rpfq=-145 rp=21d6 dt=23301/73 dn=2 df=0 of=0 ri=0 ql=0 b=10 | ||
| 205 | 1 c=-268 g=-268 pq=1 pqc=-268 qp=1 rpfq=-170 rp=20ce dt=78073/1 dn=2 df=26 of=0 ri=5 ql=0 b=10 | ||
| 206 | 2 c=-268 g=-268 pq=1 pqc=-268 qp=1 rpfq=-83 rp=fbd dt=16646/0 dn=2 df=28 of=0 ri=4 ql=0 b=10 | ||
| 207 | 3 c=-268 g=-268 pq=1 pqc=-268 qp=0 rpfq=-105 rp=178c dt=21159/1 dn=2 df=28 of=0 ri=2 ql=0 b=10 | ||
| 208 | 4 c=-268 g=-268 pq=1 pqc=-268 qp=1 rpfq=-30 rp=b54 dt=5783/1 dn=2 df=32 of=0 ri=0 ql=0 b=10 | ||
| 209 | 5 c=-268 g=-268 pq=1 pqc=-268 qp=1 rpfq=-29 rp=df5 dt=5879/1 dn=2 df=30 of=0 ri=3 ql=0 b=10 | ||
| 210 | 6 c=-268 g=-268 pq=1 pqc=-268 qp=1 rpfq=-28 rp=788 dt=5847/1 dn=2 df=32 of=0 ri=0 ql=0 b=10 | ||
| 211 | 7 c=-268 g=-268 pq=1 pqc=-268 qp=1 rpfq=-53 rp=1098 dt=6199/1 dn=2 df=30 of=0 ri=3 ql=0 b=10 | ||
| 212 | |||
| 213 | The first section lists the rcu_data structures for rcu, the second for | ||
| 214 | rcu_bh. Each section has one line per CPU, or eight for this 8-CPU system. | ||
| 215 | The fields are as follows: | ||
| 216 | |||
| 217 | o The number at the beginning of each line is the CPU number. | ||
| 218 | CPUs numbers followed by an exclamation mark are offline, | ||
| 219 | but have been online at least once since boot. There will be | ||
| 220 | no output for CPUs that have never been online, which can be | ||
| 221 | a good thing in the surprisingly common case where NR_CPUS is | ||
| 222 | substantially larger than the number of actual CPUs. | ||
| 223 | |||
| 224 | o "c" is the count of grace periods that this CPU believes have | ||
| 225 | completed. CPUs in dynticks idle mode may lag quite a ways | ||
| 226 | behind, for example, CPU 4 under "rcu" above, which has slept | ||
| 227 | through the past 25 RCU grace periods. It is not unusual to | ||
| 228 | see CPUs lagging by thousands of grace periods. | ||
| 229 | |||
| 230 | o "g" is the count of grace periods that this CPU believes have | ||
| 231 | started. Again, CPUs in dynticks idle mode may lag behind. | ||
| 232 | If the "c" and "g" values are equal, this CPU has already | ||
| 233 | reported a quiescent state for the last RCU grace period that | ||
| 234 | it is aware of, otherwise, the CPU believes that it owes RCU a | ||
| 235 | quiescent state. | ||
| 236 | |||
| 237 | o "pq" indicates that this CPU has passed through a quiescent state | ||
| 238 | for the current grace period. It is possible for "pq" to be | ||
| 239 | "1" and "c" different than "g", which indicates that although | ||
| 240 | the CPU has passed through a quiescent state, either (1) this | ||
| 241 | CPU has not yet reported that fact, (2) some other CPU has not | ||
| 242 | yet reported for this grace period, or (3) both. | ||
| 243 | |||
| 244 | o "pqc" indicates which grace period the last-observed quiescent | ||
| 245 | state for this CPU corresponds to. This is important for handling | ||
| 246 | the race between CPU 0 reporting an extended dynticks-idle | ||
| 247 | quiescent state for CPU 1 and CPU 1 suddenly waking up and | ||
| 248 | reporting its own quiescent state. If CPU 1 was the last CPU | ||
| 249 | for the current grace period, then the CPU that loses this race | ||
| 250 | will attempt to incorrectly mark CPU 1 as having checked in for | ||
| 251 | the next grace period! | ||
| 252 | |||
| 253 | o "qp" indicates that RCU still expects a quiescent state from | ||
| 254 | this CPU. | ||
| 255 | |||
| 256 | o "rpfq" is the number of rcu_pending() calls on this CPU required | ||
| 257 | to induce this CPU to invoke force_quiescent_state(). | ||
| 258 | |||
| 259 | o "rp" is low-order four hex digits of the count of how many times | ||
| 260 | rcu_pending() has been invoked on this CPU. | ||
| 261 | |||
| 262 | o "dt" is the current value of the dyntick counter that is incremented | ||
| 263 | when entering or leaving dynticks idle state, either by the | ||
| 264 | scheduler or by irq. The number after the "/" is the interrupt | ||
| 265 | nesting depth when in dyntick-idle state, or one greater than | ||
| 266 | the interrupt-nesting depth otherwise. | ||
| 267 | |||
| 268 | This field is displayed only for CONFIG_NO_HZ kernels. | ||
| 269 | |||
| 270 | o "dn" is the current value of the dyntick counter that is incremented | ||
| 271 | when entering or leaving dynticks idle state via NMI. If both | ||
| 272 | the "dt" and "dn" values are even, then this CPU is in dynticks | ||
| 273 | idle mode and may be ignored by RCU. If either of these two | ||
| 274 | counters is odd, then RCU must be alert to the possibility of | ||
| 275 | an RCU read-side critical section running on this CPU. | ||
| 276 | |||
| 277 | This field is displayed only for CONFIG_NO_HZ kernels. | ||
| 278 | |||
| 279 | o "df" is the number of times that some other CPU has forced a | ||
| 280 | quiescent state on behalf of this CPU due to this CPU being in | ||
| 281 | dynticks-idle state. | ||
| 282 | |||
| 283 | This field is displayed only for CONFIG_NO_HZ kernels. | ||
| 284 | |||
| 285 | o "of" is the number of times that some other CPU has forced a | ||
| 286 | quiescent state on behalf of this CPU due to this CPU being | ||
| 287 | offline. In a perfect world, this might neve happen, but it | ||
| 288 | turns out that offlining and onlining a CPU can take several grace | ||
| 289 | periods, and so there is likely to be an extended period of time | ||
| 290 | when RCU believes that the CPU is online when it really is not. | ||
| 291 | Please note that erring in the other direction (RCU believing a | ||
| 292 | CPU is offline when it is really alive and kicking) is a fatal | ||
| 293 | error, so it makes sense to err conservatively. | ||
| 294 | |||
| 295 | o "ri" is the number of times that RCU has seen fit to send a | ||
| 296 | reschedule IPI to this CPU in order to get it to report a | ||
| 297 | quiescent state. | ||
| 298 | |||
| 299 | o "ql" is the number of RCU callbacks currently residing on | ||
| 300 | this CPU. This is the total number of callbacks, regardless | ||
| 301 | of what state they are in (new, waiting for grace period to | ||
| 302 | start, waiting for grace period to end, ready to invoke). | ||
| 303 | |||
| 304 | o "b" is the batch limit for this CPU. If more than this number | ||
| 305 | of RCU callbacks is ready to invoke, then the remainder will | ||
| 306 | be deferred. | ||
| 307 | |||
| 308 | |||
| 309 | The output of "cat rcu/rcugp" looks as follows: | ||
| 310 | |||
| 311 | rcu: completed=33062 gpnum=33063 | ||
| 312 | rcu_bh: completed=464 gpnum=464 | ||
| 313 | |||
| 314 | Again, this output is for both "rcu" and "rcu_bh". The fields are | ||
| 315 | taken from the rcu_state structure, and are as follows: | ||
| 316 | |||
| 317 | o "completed" is the number of grace periods that have completed. | ||
| 318 | It is comparable to the "c" field from rcu/rcudata in that a | ||
| 319 | CPU whose "c" field matches the value of "completed" is aware | ||
| 320 | that the corresponding RCU grace period has completed. | ||
| 321 | |||
| 322 | o "gpnum" is the number of grace periods that have started. It is | ||
| 323 | comparable to the "g" field from rcu/rcudata in that a CPU | ||
| 324 | whose "g" field matches the value of "gpnum" is aware that the | ||
| 325 | corresponding RCU grace period has started. | ||
| 326 | |||
| 327 | If these two fields are equal (as they are for "rcu_bh" above), | ||
| 328 | then there is no grace period in progress, in other words, RCU | ||
| 329 | is idle. On the other hand, if the two fields differ (as they | ||
| 330 | do for "rcu" above), then an RCU grace period is in progress. | ||
| 331 | |||
| 332 | |||
| 333 | The output of "cat rcu/rcuhier" looks as follows, with very long lines: | ||
| 334 | |||
| 335 | c=6902 g=6903 s=2 jfq=3 j=72c7 nfqs=13142/nfqsng=0(13142) fqlh=6 | ||
| 336 | 1/1 0:127 ^0 | ||
| 337 | 3/3 0:35 ^0 0/0 36:71 ^1 0/0 72:107 ^2 0/0 108:127 ^3 | ||
| 338 | 3/3f 0:5 ^0 2/3 6:11 ^1 0/0 12:17 ^2 0/0 18:23 ^3 0/0 24:29 ^4 0/0 30:35 ^5 0/0 36:41 ^0 0/0 42:47 ^1 0/0 48:53 ^2 0/0 54:59 ^3 0/0 60:65 ^4 0/0 66:71 ^5 0/0 72:77 ^0 0/0 78:83 ^1 0/0 84:89 ^2 0/0 90:95 ^3 0/0 96:101 ^4 0/0 102:107 ^5 0/0 108:113 ^0 0/0 114:119 ^1 0/0 120:125 ^2 0/0 126:127 ^3 | ||
| 339 | rcu_bh: | ||
| 340 | c=-226 g=-226 s=1 jfq=-5701 j=72c7 nfqs=88/nfqsng=0(88) fqlh=0 | ||
| 341 | 0/1 0:127 ^0 | ||
| 342 | 0/3 0:35 ^0 0/0 36:71 ^1 0/0 72:107 ^2 0/0 108:127 ^3 | ||
| 343 | 0/3f 0:5 ^0 0/3 6:11 ^1 0/0 12:17 ^2 0/0 18:23 ^3 0/0 24:29 ^4 0/0 30:35 ^5 0/0 36:41 ^0 0/0 42:47 ^1 0/0 48:53 ^2 0/0 54:59 ^3 0/0 60:65 ^4 0/0 66:71 ^5 0/0 72:77 ^0 0/0 78:83 ^1 0/0 84:89 ^2 0/0 90:95 ^3 0/0 96:101 ^4 0/0 102:107 ^5 0/0 108:113 ^0 0/0 114:119 ^1 0/0 120:125 ^2 0/0 126:127 ^3 | ||
| 344 | |||
| 345 | This is once again split into "rcu" and "rcu_bh" portions. The fields are | ||
| 346 | as follows: | ||
| 347 | |||
| 348 | o "c" is exactly the same as "completed" under rcu/rcugp. | ||
| 349 | |||
| 350 | o "g" is exactly the same as "gpnum" under rcu/rcugp. | ||
| 351 | |||
| 352 | o "s" is the "signaled" state that drives force_quiescent_state()'s | ||
| 353 | state machine. | ||
| 354 | |||
| 355 | o "jfq" is the number of jiffies remaining for this grace period | ||
| 356 | before force_quiescent_state() is invoked to help push things | ||
| 357 | along. Note that CPUs in dyntick-idle mode thoughout the grace | ||
| 358 | period will not report on their own, but rather must be check by | ||
| 359 | some other CPU via force_quiescent_state(). | ||
| 360 | |||
| 361 | o "j" is the low-order four hex digits of the jiffies counter. | ||
| 362 | Yes, Paul did run into a number of problems that turned out to | ||
| 363 | be due to the jiffies counter no longer counting. Why do you ask? | ||
| 364 | |||
| 365 | o "nfqs" is the number of calls to force_quiescent_state() since | ||
| 366 | boot. | ||
| 367 | |||
| 368 | o "nfqsng" is the number of useless calls to force_quiescent_state(), | ||
| 369 | where there wasn't actually a grace period active. This can | ||
| 370 | happen due to races. The number in parentheses is the difference | ||
| 371 | between "nfqs" and "nfqsng", or the number of times that | ||
| 372 | force_quiescent_state() actually did some real work. | ||
| 373 | |||
| 374 | o "fqlh" is the number of calls to force_quiescent_state() that | ||
| 375 | exited immediately (without even being counted in nfqs above) | ||
| 376 | due to contention on ->fqslock. | ||
| 377 | |||
| 378 | o Each element of the form "1/1 0:127 ^0" represents one struct | ||
| 379 | rcu_node. Each line represents one level of the hierarchy, from | ||
| 380 | root to leaves. It is best to think of the rcu_data structures | ||
| 381 | as forming yet another level after the leaves. Note that there | ||
| 382 | might be either one, two, or three levels of rcu_node structures, | ||
| 383 | depending on the relationship between CONFIG_RCU_FANOUT and | ||
| 384 | CONFIG_NR_CPUS. | ||
| 385 | |||
| 386 | o The numbers separated by the "/" are the qsmask followed | ||
| 387 | by the qsmaskinit. The qsmask will have one bit | ||
| 388 | set for each entity in the next lower level that | ||
| 389 | has not yet checked in for the current grace period. | ||
| 390 | The qsmaskinit will have one bit for each entity that is | ||
| 391 | currently expected to check in during each grace period. | ||
| 392 | The value of qsmaskinit is assigned to that of qsmask | ||
| 393 | at the beginning of each grace period. | ||
| 394 | |||
| 395 | For example, for "rcu", the qsmask of the first entry | ||
| 396 | of the lowest level is 0x14, meaning that we are still | ||
| 397 | waiting for CPUs 2 and 4 to check in for the current | ||
| 398 | grace period. | ||
| 399 | |||
| 400 | o The numbers separated by the ":" are the range of CPUs | ||
| 401 | served by this struct rcu_node. This can be helpful | ||
| 402 | in working out how the hierarchy is wired together. | ||
| 403 | |||
| 404 | For example, the first entry at the lowest level shows | ||
| 405 | "0:5", indicating that it covers CPUs 0 through 5. | ||
| 406 | |||
| 407 | o The number after the "^" indicates the bit in the | ||
| 408 | next higher level rcu_node structure that this | ||
| 409 | rcu_node structure corresponds to. | ||
| 410 | |||
| 411 | For example, the first entry at the lowest level shows | ||
| 412 | "^0", indicating that it corresponds to bit zero in | ||
| 413 | the first entry at the middle level. | ||
diff --git a/arch/powerpc/platforms/pseries/rtasd.c b/arch/powerpc/platforms/pseries/rtasd.c index f4e55be2eea..afad9f5ac0a 100644 --- a/arch/powerpc/platforms/pseries/rtasd.c +++ b/arch/powerpc/platforms/pseries/rtasd.c | |||
| @@ -208,6 +208,7 @@ void pSeries_log_error(char *buf, unsigned int err_type, int fatal) | |||
| 208 | break; | 208 | break; |
| 209 | case ERR_TYPE_KERNEL_PANIC: | 209 | case ERR_TYPE_KERNEL_PANIC: |
| 210 | default: | 210 | default: |
| 211 | WARN_ON_ONCE(!irqs_disabled()); /* @@@ DEBUG @@@ */ | ||
| 211 | spin_unlock_irqrestore(&rtasd_log_lock, s); | 212 | spin_unlock_irqrestore(&rtasd_log_lock, s); |
| 212 | return; | 213 | return; |
| 213 | } | 214 | } |
| @@ -227,6 +228,7 @@ void pSeries_log_error(char *buf, unsigned int err_type, int fatal) | |||
| 227 | /* Check to see if we need to or have stopped logging */ | 228 | /* Check to see if we need to or have stopped logging */ |
| 228 | if (fatal || !logging_enabled) { | 229 | if (fatal || !logging_enabled) { |
| 229 | logging_enabled = 0; | 230 | logging_enabled = 0; |
| 231 | WARN_ON_ONCE(!irqs_disabled()); /* @@@ DEBUG @@@ */ | ||
| 230 | spin_unlock_irqrestore(&rtasd_log_lock, s); | 232 | spin_unlock_irqrestore(&rtasd_log_lock, s); |
| 231 | return; | 233 | return; |
| 232 | } | 234 | } |
| @@ -249,11 +251,13 @@ void pSeries_log_error(char *buf, unsigned int err_type, int fatal) | |||
| 249 | else | 251 | else |
| 250 | rtas_log_start += 1; | 252 | rtas_log_start += 1; |
| 251 | 253 | ||
| 254 | WARN_ON_ONCE(!irqs_disabled()); /* @@@ DEBUG @@@ */ | ||
| 252 | spin_unlock_irqrestore(&rtasd_log_lock, s); | 255 | spin_unlock_irqrestore(&rtasd_log_lock, s); |
| 253 | wake_up_interruptible(&rtas_log_wait); | 256 | wake_up_interruptible(&rtas_log_wait); |
| 254 | break; | 257 | break; |
| 255 | case ERR_TYPE_KERNEL_PANIC: | 258 | case ERR_TYPE_KERNEL_PANIC: |
| 256 | default: | 259 | default: |
| 260 | WARN_ON_ONCE(!irqs_disabled()); /* @@@ DEBUG @@@ */ | ||
| 257 | spin_unlock_irqrestore(&rtasd_log_lock, s); | 261 | spin_unlock_irqrestore(&rtasd_log_lock, s); |
| 258 | return; | 262 | return; |
| 259 | } | 263 | } |
diff --git a/include/linux/hardirq.h b/include/linux/hardirq.h index 181006cc94a..9b70b923169 100644 --- a/include/linux/hardirq.h +++ b/include/linux/hardirq.h | |||
| @@ -118,13 +118,17 @@ static inline void account_system_vtime(struct task_struct *tsk) | |||
| 118 | } | 118 | } |
| 119 | #endif | 119 | #endif |
| 120 | 120 | ||
| 121 | #if defined(CONFIG_PREEMPT_RCU) && defined(CONFIG_NO_HZ) | 121 | #if defined(CONFIG_NO_HZ) && !defined(CONFIG_CLASSIC_RCU) |
| 122 | extern void rcu_irq_enter(void); | 122 | extern void rcu_irq_enter(void); |
| 123 | extern void rcu_irq_exit(void); | 123 | extern void rcu_irq_exit(void); |
| 124 | extern void rcu_nmi_enter(void); | ||
| 125 | extern void rcu_nmi_exit(void); | ||
| 124 | #else | 126 | #else |
| 125 | # define rcu_irq_enter() do { } while (0) | 127 | # define rcu_irq_enter() do { } while (0) |
| 126 | # define rcu_irq_exit() do { } while (0) | 128 | # define rcu_irq_exit() do { } while (0) |
| 127 | #endif /* CONFIG_PREEMPT_RCU */ | 129 | # define rcu_nmi_enter() do { } while (0) |
| 130 | # define rcu_nmi_exit() do { } while (0) | ||
| 131 | #endif /* #if defined(CONFIG_NO_HZ) && !defined(CONFIG_CLASSIC_RCU) */ | ||
| 128 | 132 | ||
| 129 | /* | 133 | /* |
| 130 | * It is safe to do non-atomic ops on ->hardirq_context, | 134 | * It is safe to do non-atomic ops on ->hardirq_context, |
| @@ -134,7 +138,6 @@ extern void rcu_irq_exit(void); | |||
| 134 | */ | 138 | */ |
| 135 | #define __irq_enter() \ | 139 | #define __irq_enter() \ |
| 136 | do { \ | 140 | do { \ |
| 137 | rcu_irq_enter(); \ | ||
| 138 | account_system_vtime(current); \ | 141 | account_system_vtime(current); \ |
| 139 | add_preempt_count(HARDIRQ_OFFSET); \ | 142 | add_preempt_count(HARDIRQ_OFFSET); \ |
| 140 | trace_hardirq_enter(); \ | 143 | trace_hardirq_enter(); \ |
| @@ -153,7 +156,6 @@ extern void irq_enter(void); | |||
| 153 | trace_hardirq_exit(); \ | 156 | trace_hardirq_exit(); \ |
| 154 | account_system_vtime(current); \ | 157 | account_system_vtime(current); \ |
| 155 | sub_preempt_count(HARDIRQ_OFFSET); \ | 158 | sub_preempt_count(HARDIRQ_OFFSET); \ |
| 156 | rcu_irq_exit(); \ | ||
| 157 | } while (0) | 159 | } while (0) |
| 158 | 160 | ||
| 159 | /* | 161 | /* |
| @@ -161,7 +163,7 @@ extern void irq_enter(void); | |||
| 161 | */ | 163 | */ |
| 162 | extern void irq_exit(void); | 164 | extern void irq_exit(void); |
| 163 | 165 | ||
| 164 | #define nmi_enter() do { lockdep_off(); __irq_enter(); } while (0) | 166 | #define nmi_enter() do { lockdep_off(); rcu_nmi_enter(); __irq_enter(); } while (0) |
| 165 | #define nmi_exit() do { __irq_exit(); lockdep_on(); } while (0) | 167 | #define nmi_exit() do { __irq_exit(); rcu_nmi_exit(); lockdep_on(); } while (0) |
| 166 | 168 | ||
| 167 | #endif /* LINUX_HARDIRQ_H */ | 169 | #endif /* LINUX_HARDIRQ_H */ |
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index 86f1f5e43e3..bfd289aff57 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h | |||
| @@ -52,11 +52,15 @@ struct rcu_head { | |||
| 52 | void (*func)(struct rcu_head *head); | 52 | void (*func)(struct rcu_head *head); |
| 53 | }; | 53 | }; |
| 54 | 54 | ||
| 55 | #ifdef CONFIG_CLASSIC_RCU | 55 | #if defined(CONFIG_CLASSIC_RCU) |
| 56 | #include <linux/rcuclassic.h> | 56 | #include <linux/rcuclassic.h> |
| 57 | #else /* #ifdef CONFIG_CLASSIC_RCU */ | 57 | #elif defined(CONFIG_TREE_RCU) |
| 58 | #include <linux/rcutree.h> | ||
| 59 | #elif defined(CONFIG_PREEMPT_RCU) | ||
| 58 | #include <linux/rcupreempt.h> | 60 | #include <linux/rcupreempt.h> |
| 59 | #endif /* #else #ifdef CONFIG_CLASSIC_RCU */ | 61 | #else |
| 62 | #error "Unknown RCU implementation specified to kernel configuration" | ||
| 63 | #endif /* #else #if defined(CONFIG_CLASSIC_RCU) */ | ||
| 60 | 64 | ||
| 61 | #define RCU_HEAD_INIT { .next = NULL, .func = NULL } | 65 | #define RCU_HEAD_INIT { .next = NULL, .func = NULL } |
| 62 | #define RCU_HEAD(head) struct rcu_head head = RCU_HEAD_INIT | 66 | #define RCU_HEAD(head) struct rcu_head head = RCU_HEAD_INIT |
diff --git a/include/linux/rcutree.h b/include/linux/rcutree.h new file mode 100644 index 00000000000..d4368b7975c --- /dev/null +++ b/include/linux/rcutree.h | |||
| @@ -0,0 +1,329 @@ | |||
| 1 | /* | ||
| 2 | * Read-Copy Update mechanism for mutual exclusion (tree-based version) | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
| 17 | * | ||
| 18 | * Copyright IBM Corporation, 2008 | ||
| 19 | * | ||
| 20 | * Author: Dipankar Sarma <dipankar@in.ibm.com> | ||
| 21 | * Paul E. McKenney <paulmck@linux.vnet.ibm.com> Hierarchical algorithm | ||
| 22 | * | ||
| 23 | * Based on the original work by Paul McKenney <paulmck@us.ibm.com> | ||
| 24 | * and inputs from Rusty Russell, Andrea Arcangeli and Andi Kleen. | ||
| 25 | * | ||
| 26 | * For detailed explanation of Read-Copy Update mechanism see - | ||
| 27 | * Documentation/RCU | ||
| 28 | */ | ||
| 29 | |||
| 30 | #ifndef __LINUX_RCUTREE_H | ||
| 31 | #define __LINUX_RCUTREE_H | ||
| 32 | |||
| 33 | #include <linux/cache.h> | ||
| 34 | #include <linux/spinlock.h> | ||
| 35 | #include <linux/threads.h> | ||
| 36 | #include <linux/percpu.h> | ||
| 37 | #include <linux/cpumask.h> | ||
| 38 | #include <linux/seqlock.h> | ||
| 39 | |||
| 40 | /* | ||
| 41 | * Define shape of hierarchy based on NR_CPUS and CONFIG_RCU_FANOUT. | ||
| 42 | * In theory, it should be possible to add more levels straightforwardly. | ||
| 43 | * In practice, this has not been tested, so there is probably some | ||
| 44 | * bug somewhere. | ||
| 45 | */ | ||
| 46 | #define MAX_RCU_LVLS 3 | ||
| 47 | #define RCU_FANOUT (CONFIG_RCU_FANOUT) | ||
| 48 | #define RCU_FANOUT_SQ (RCU_FANOUT * RCU_FANOUT) | ||
| 49 | #define RCU_FANOUT_CUBE (RCU_FANOUT_SQ * RCU_FANOUT) | ||
| 50 | |||
| 51 | #if NR_CPUS <= RCU_FANOUT | ||
| 52 | # define NUM_RCU_LVLS 1 | ||
| 53 | # define NUM_RCU_LVL_0 1 | ||
| 54 | # define NUM_RCU_LVL_1 (NR_CPUS) | ||
| 55 | # define NUM_RCU_LVL_2 0 | ||
| 56 | # define NUM_RCU_LVL_3 0 | ||
| 57 | #elif NR_CPUS <= RCU_FANOUT_SQ | ||
| 58 | # define NUM_RCU_LVLS 2 | ||
| 59 | # define NUM_RCU_LVL_0 1 | ||
| 60 | # define NUM_RCU_LVL_1 (((NR_CPUS) + RCU_FANOUT - 1) / RCU_FANOUT) | ||
| 61 | # define NUM_RCU_LVL_2 (NR_CPUS) | ||
| 62 | # define NUM_RCU_LVL_3 0 | ||
| 63 | #elif NR_CPUS <= RCU_FANOUT_CUBE | ||
| 64 | # define NUM_RCU_LVLS 3 | ||
| 65 | # define NUM_RCU_LVL_0 1 | ||
| 66 | # define NUM_RCU_LVL_1 (((NR_CPUS) + RCU_FANOUT_SQ - 1) / RCU_FANOUT_SQ) | ||
| 67 | # define NUM_RCU_LVL_2 (((NR_CPUS) + (RCU_FANOUT) - 1) / (RCU_FANOUT)) | ||
| 68 | # define NUM_RCU_LVL_3 NR_CPUS | ||
| 69 | #else | ||
| 70 | # error "CONFIG_RCU_FANOUT insufficient for NR_CPUS" | ||
| 71 | #endif /* #if (NR_CPUS) <= RCU_FANOUT */ | ||
| 72 | |||
| 73 | #define RCU_SUM (NUM_RCU_LVL_0 + NUM_RCU_LVL_1 + NUM_RCU_LVL_2 + NUM_RCU_LVL_3) | ||
| 74 | #define NUM_RCU_NODES (RCU_SUM - NR_CPUS) | ||
| 75 | |||
| 76 | /* | ||
| 77 | * Dynticks per-CPU state. | ||
| 78 | */ | ||
| 79 | struct rcu_dynticks { | ||
| 80 | int dynticks_nesting; /* Track nesting level, sort of. */ | ||
| 81 | int dynticks; /* Even value for dynticks-idle, else odd. */ | ||
| 82 | int dynticks_nmi; /* Even value for either dynticks-idle or */ | ||
| 83 | /* not in nmi handler, else odd. So this */ | ||
| 84 | /* remains even for nmi from irq handler. */ | ||
| 85 | }; | ||
| 86 | |||
| 87 | /* | ||
| 88 | * Definition for node within the RCU grace-period-detection hierarchy. | ||
| 89 | */ | ||
| 90 | struct rcu_node { | ||
| 91 | spinlock_t lock; | ||
| 92 | unsigned long qsmask; /* CPUs or groups that need to switch in */ | ||
| 93 | /* order for current grace period to proceed.*/ | ||
| 94 | unsigned long qsmaskinit; | ||
| 95 | /* Per-GP initialization for qsmask. */ | ||
| 96 | unsigned long grpmask; /* Mask to apply to parent qsmask. */ | ||
| 97 | int grplo; /* lowest-numbered CPU or group here. */ | ||
| 98 | int grphi; /* highest-numbered CPU or group here. */ | ||
| 99 | u8 grpnum; /* CPU/group number for next level up. */ | ||
| 100 | u8 level; /* root is at level 0. */ | ||
| 101 | struct rcu_node *parent; | ||
| 102 | } ____cacheline_internodealigned_in_smp; | ||
| 103 | |||
| 104 | /* Index values for nxttail array in struct rcu_data. */ | ||
| 105 | #define RCU_DONE_TAIL 0 /* Also RCU_WAIT head. */ | ||
| 106 | #define RCU_WAIT_TAIL 1 /* Also RCU_NEXT_READY head. */ | ||
| 107 | #define RCU_NEXT_READY_TAIL 2 /* Also RCU_NEXT head. */ | ||
| 108 | #define RCU_NEXT_TAIL 3 | ||
| 109 | #define RCU_NEXT_SIZE 4 | ||
| 110 | |||
| 111 | /* Per-CPU data for read-copy update. */ | ||
| 112 | struct rcu_data { | ||
| 113 | /* 1) quiescent-state and grace-period handling : */ | ||
| 114 | long completed; /* Track rsp->completed gp number */ | ||
| 115 | /* in order to detect GP end. */ | ||
| 116 | long gpnum; /* Highest gp number that this CPU */ | ||
| 117 | /* is aware of having started. */ | ||
| 118 | long passed_quiesc_completed; | ||
| 119 | /* Value of completed at time of qs. */ | ||
| 120 | bool passed_quiesc; /* User-mode/idle loop etc. */ | ||
| 121 | bool qs_pending; /* Core waits for quiesc state. */ | ||
| 122 | bool beenonline; /* CPU online at least once. */ | ||
| 123 | struct rcu_node *mynode; /* This CPU's leaf of hierarchy */ | ||
| 124 | unsigned long grpmask; /* Mask to apply to leaf qsmask. */ | ||
| 125 | |||
| 126 | /* 2) batch handling */ | ||
| 127 | /* | ||
| 128 | * If nxtlist is not NULL, it is partitioned as follows. | ||
| 129 | * Any of the partitions might be empty, in which case the | ||
| 130 | * pointer to that partition will be equal to the pointer for | ||
| 131 | * the following partition. When the list is empty, all of | ||
| 132 | * the nxttail elements point to nxtlist, which is NULL. | ||
| 133 | * | ||
| 134 | * [*nxttail[RCU_NEXT_READY_TAIL], NULL = *nxttail[RCU_NEXT_TAIL]): | ||
| 135 | * Entries that might have arrived after current GP ended | ||
| 136 | * [*nxttail[RCU_WAIT_TAIL], *nxttail[RCU_NEXT_READY_TAIL]): | ||
| 137 | * Entries known to have arrived before current GP ended | ||
| 138 | * [*nxttail[RCU_DONE_TAIL], *nxttail[RCU_WAIT_TAIL]): | ||
| 139 | * Entries that batch # <= ->completed - 1: waiting for current GP | ||
| 140 | * [nxtlist, *nxttail[RCU_DONE_TAIL]): | ||
| 141 | * Entries that batch # <= ->completed | ||
| 142 | * The grace period for these entries has completed, and | ||
| 143 | * the other grace-period-completed entries may be moved | ||
| 144 | * here temporarily in rcu_process_callbacks(). | ||
| 145 | */ | ||
| 146 | struct rcu_head *nxtlist; | ||
| 147 | struct rcu_head **nxttail[RCU_NEXT_SIZE]; | ||
| 148 | long qlen; /* # of queued callbacks */ | ||
| 149 | long blimit; /* Upper limit on a processed batch */ | ||
| 150 | |||
| 151 | #ifdef CONFIG_NO_HZ | ||
| 152 | /* 3) dynticks interface. */ | ||
| 153 | struct rcu_dynticks *dynticks; /* Shared per-CPU dynticks state. */ | ||
| 154 | int dynticks_snap; /* Per-GP tracking for dynticks. */ | ||
| 155 | int dynticks_nmi_snap; /* Per-GP tracking for dynticks_nmi. */ | ||
| 156 | #endif /* #ifdef CONFIG_NO_HZ */ | ||
| 157 | |||
| 158 | /* 4) reasons this CPU needed to be kicked by force_quiescent_state */ | ||
| 159 | #ifdef CONFIG_NO_HZ | ||
| 160 | unsigned long dynticks_fqs; /* Kicked due to dynticks idle. */ | ||
| 161 | #endif /* #ifdef CONFIG_NO_HZ */ | ||
| 162 | unsigned long offline_fqs; /* Kicked due to being offline. */ | ||
| 163 | unsigned long resched_ipi; /* Sent a resched IPI. */ | ||
| 164 | |||
| 165 | /* 5) state to allow this CPU to force_quiescent_state on others */ | ||
| 166 | long n_rcu_pending; /* rcu_pending() calls since boot. */ | ||
| 167 | long n_rcu_pending_force_qs; /* when to force quiescent states. */ | ||
| 168 | |||
| 169 | int cpu; | ||
| 170 | }; | ||
| 171 | |||
| 172 | /* Values for signaled field in struct rcu_state. */ | ||
| 173 | #define RCU_GP_INIT 0 /* Grace period being initialized. */ | ||
| 174 | #define RCU_SAVE_DYNTICK 1 /* Need to scan dyntick state. */ | ||
| 175 | #define RCU_FORCE_QS 2 /* Need to force quiescent state. */ | ||
| 176 | #ifdef CONFIG_NO_HZ | ||
| 177 | #define RCU_SIGNAL_INIT RCU_SAVE_DYNTICK | ||
| 178 | #else /* #ifdef CONFIG_NO_HZ */ | ||
| 179 | #define RCU_SIGNAL_INIT RCU_FORCE_QS | ||
| 180 | #endif /* #else #ifdef CONFIG_NO_HZ */ | ||
| 181 | |||
| 182 | #define RCU_JIFFIES_TILL_FORCE_QS 3 /* for rsp->jiffies_force_qs */ | ||
| 183 | #ifdef CONFIG_RCU_CPU_STALL_DETECTOR | ||
| 184 | #define RCU_SECONDS_TILL_STALL_CHECK (10 * HZ) /* for rsp->jiffies_stall */ | ||
| 185 | #define RCU_SECONDS_TILL_STALL_RECHECK (30 * HZ) /* for rsp->jiffies_stall */ | ||
| 186 | #define RCU_STALL_RAT_DELAY 2 /* Allow other CPUs time */ | ||
| 187 | /* to take at least one */ | ||
| 188 | /* scheduling clock irq */ | ||
| 189 | /* before ratting on them. */ | ||
| 190 | |||
| 191 | #endif /* #ifdef CONFIG_RCU_CPU_STALL_DETECTOR */ | ||
| 192 | |||
| 193 | /* | ||
| 194 | * RCU global state, including node hierarchy. This hierarchy is | ||
| 195 | * represented in "heap" form in a dense array. The root (first level) | ||
| 196 | * of the hierarchy is in ->node[0] (referenced by ->level[0]), the second | ||
| 197 | * level in ->node[1] through ->node[m] (->node[1] referenced by ->level[1]), | ||
| 198 | * and the third level in ->node[m+1] and following (->node[m+1] referenced | ||
| 199 | * by ->level[2]). The number of levels is determined by the number of | ||
| 200 | * CPUs and by CONFIG_RCU_FANOUT. Small systems will have a "hierarchy" | ||
| 201 | * consisting of a single rcu_node. | ||
| 202 | */ | ||
| 203 | struct rcu_state { | ||
| 204 | struct rcu_node node[NUM_RCU_NODES]; /* Hierarchy. */ | ||
| 205 | struct rcu_node *level[NUM_RCU_LVLS]; /* Hierarchy levels. */ | ||
| 206 | u32 levelcnt[MAX_RCU_LVLS + 1]; /* # nodes in each level. */ | ||
| 207 | u8 levelspread[NUM_RCU_LVLS]; /* kids/node in each level. */ | ||
| 208 | struct rcu_data *rda[NR_CPUS]; /* array of rdp pointers. */ | ||
| 209 | |||
| 210 | /* The following fields are guarded by the root rcu_node's lock. */ | ||
| 211 | |||
| 212 | u8 signaled ____cacheline_internodealigned_in_smp; | ||
| 213 | /* Force QS state. */ | ||
| 214 | long gpnum; /* Current gp number. */ | ||
| 215 | long completed; /* # of last completed gp. */ | ||
| 216 | spinlock_t onofflock; /* exclude on/offline and */ | ||
| 217 | /* starting new GP. */ | ||
| 218 | spinlock_t fqslock; /* Only one task forcing */ | ||
| 219 | /* quiescent states. */ | ||
| 220 | unsigned long jiffies_force_qs; /* Time at which to invoke */ | ||
| 221 | /* force_quiescent_state(). */ | ||
| 222 | unsigned long n_force_qs; /* Number of calls to */ | ||
| 223 | /* force_quiescent_state(). */ | ||
| 224 | unsigned long n_force_qs_lh; /* ~Number of calls leaving */ | ||
| 225 | /* due to lock unavailable. */ | ||
| 226 | unsigned long n_force_qs_ngp; /* Number of calls leaving */ | ||
| 227 | /* due to no GP active. */ | ||
| 228 | #ifdef CONFIG_RCU_CPU_STALL_DETECTOR | ||
| 229 | unsigned long gp_start; /* Time at which GP started, */ | ||
| 230 | /* but in jiffies. */ | ||
| 231 | unsigned long jiffies_stall; /* Time at which to check */ | ||
| 232 | /* for CPU stalls. */ | ||
| 233 | #endif /* #ifdef CONFIG_RCU_CPU_STALL_DETECTOR */ | ||
| 234 | #ifdef CONFIG_NO_HZ | ||
| 235 | long dynticks_completed; /* Value of completed @ snap. */ | ||
| 236 | #endif /* #ifdef CONFIG_NO_HZ */ | ||
| 237 | }; | ||
| 238 | |||
| 239 | extern struct rcu_state rcu_state; | ||
| 240 | DECLARE_PER_CPU(struct rcu_data, rcu_data); | ||
| 241 | |||
| 242 | extern struct rcu_state rcu_bh_state; | ||
| 243 | DECLARE_PER_CPU(struct rcu_data, rcu_bh_data); | ||
| 244 | |||
| 245 | /* | ||
| 246 | * Increment the quiescent state counter. | ||
| 247 | * The counter is a bit degenerated: We do not need to know | ||
| 248 | * how many quiescent states passed, just if there was at least | ||
| 249 | * one since the start of the grace period. Thus just a flag. | ||
| 250 | */ | ||
| 251 | static inline void rcu_qsctr_inc(int cpu) | ||
| 252 | { | ||
| 253 | struct rcu_data *rdp = &per_cpu(rcu_data, cpu); | ||
| 254 | rdp->passed_quiesc = 1; | ||
| 255 | rdp->passed_quiesc_completed = rdp->completed; | ||
| 256 | } | ||
| 257 | static inline void rcu_bh_qsctr_inc(int cpu) | ||
| 258 | { | ||
| 259 | struct rcu_data *rdp = &per_cpu(rcu_bh_data, cpu); | ||
| 260 | rdp->passed_quiesc = 1; | ||
| 261 | rdp->passed_quiesc_completed = rdp->completed; | ||
| 262 | } | ||
| 263 | |||
| 264 | extern int rcu_pending(int cpu); | ||
| 265 | extern int rcu_needs_cpu(int cpu); | ||
| 266 | |||
| 267 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | ||
| 268 | extern struct lockdep_map rcu_lock_map; | ||
| 269 | # define rcu_read_acquire() \ | ||
| 270 | lock_acquire(&rcu_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_) | ||
| 271 | # define rcu_read_release() lock_release(&rcu_lock_map, 1, _THIS_IP_) | ||
| 272 | #else | ||
| 273 | # define rcu_read_acquire() do { } while (0) | ||
| 274 | # define rcu_read_release() do { } while (0) | ||
| 275 | #endif | ||
| 276 | |||
| 277 | static inline void __rcu_read_lock(void) | ||
| 278 | { | ||
| 279 | preempt_disable(); | ||
| 280 | __acquire(RCU); | ||
| 281 | rcu_read_acquire(); | ||
| 282 | } | ||
| 283 | static inline void __rcu_read_unlock(void) | ||
| 284 | { | ||
| 285 | rcu_read_release(); | ||
| 286 | __release(RCU); | ||
| 287 | preempt_enable(); | ||
| 288 | } | ||
| 289 | static inline void __rcu_read_lock_bh(void) | ||
| 290 | { | ||
| 291 | local_bh_disable(); | ||
| 292 | __acquire(RCU_BH); | ||
| 293 | rcu_read_acquire(); | ||
| 294 | } | ||
| 295 | static inline void __rcu_read_unlock_bh(void) | ||
| 296 | { | ||
| 297 | rcu_read_release(); | ||
| 298 | __release(RCU_BH); | ||
| 299 | local_bh_enable(); | ||
| 300 | } | ||
| 301 | |||
| 302 | #define __synchronize_sched() synchronize_rcu() | ||
| 303 | |||
| 304 | #define call_rcu_sched(head, func) call_rcu(head, func) | ||
| 305 | |||
| 306 | static inline void rcu_init_sched(void) | ||
| 307 | { | ||
| 308 | } | ||
| 309 | |||
| 310 | extern void __rcu_init(void); | ||
| 311 | extern void rcu_check_callbacks(int cpu, int user); | ||
| 312 | extern void rcu_restart_cpu(int cpu); | ||
| 313 | |||
| 314 | extern long rcu_batches_completed(void); | ||
| 315 | extern long rcu_batches_completed_bh(void); | ||
| 316 | |||
| 317 | #ifdef CONFIG_NO_HZ | ||
| 318 | void rcu_enter_nohz(void); | ||
| 319 | void rcu_exit_nohz(void); | ||
| 320 | #else /* CONFIG_NO_HZ */ | ||
| 321 | static inline void rcu_enter_nohz(void) | ||
| 322 | { | ||
| 323 | } | ||
| 324 | static inline void rcu_exit_nohz(void) | ||
| 325 | { | ||
| 326 | } | ||
| 327 | #endif /* CONFIG_NO_HZ */ | ||
| 328 | |||
| 329 | #endif /* __LINUX_RCUTREE_H */ | ||
diff --git a/init/Kconfig b/init/Kconfig index f763762d544..9dd7958a71f 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
| @@ -928,10 +928,16 @@ source "block/Kconfig" | |||
| 928 | config PREEMPT_NOTIFIERS | 928 | config PREEMPT_NOTIFIERS |
| 929 | bool | 929 | bool |
| 930 | 930 | ||
| 931 | config CLASSIC_RCU | 931 | config TREE_RCU_TRACE |
| 932 | def_bool !PREEMPT_RCU | 932 | def_bool RCU_TRACE && TREE_RCU |
| 933 | select DEBUG_FS | ||
| 933 | help | 934 | help |
| 934 | This option selects the classic RCU implementation that is | 935 | This option provides tracing for the TREE_RCU implementation, |
| 935 | designed for best read-side performance on non-realtime | 936 | permitting Makefile to trivially select kernel/rcutree_trace.c. |
| 936 | systems. Classic RCU is the default. Note that the | 937 | |
| 937 | PREEMPT_RCU symbol is used to select/deselect this option. | 938 | config PREEMPT_RCU_TRACE |
| 939 | def_bool RCU_TRACE && PREEMPT_RCU | ||
| 940 | select DEBUG_FS | ||
| 941 | help | ||
| 942 | This option provides tracing for the PREEMPT_RCU implementation, | ||
| 943 | permitting Makefile to trivially select kernel/rcupreempt_trace.c. | ||
diff --git a/kernel/Kconfig.preempt b/kernel/Kconfig.preempt index 9fdba03dc1f..463f29743ea 100644 --- a/kernel/Kconfig.preempt +++ b/kernel/Kconfig.preempt | |||
| @@ -52,10 +52,29 @@ config PREEMPT | |||
| 52 | 52 | ||
| 53 | endchoice | 53 | endchoice |
| 54 | 54 | ||
| 55 | choice | ||
| 56 | prompt "RCU Implementation" | ||
| 57 | default CLASSIC_RCU | ||
| 58 | |||
| 59 | config CLASSIC_RCU | ||
| 60 | bool "Classic RCU" | ||
| 61 | help | ||
| 62 | This option selects the classic RCU implementation that is | ||
| 63 | designed for best read-side performance on non-realtime | ||
| 64 | systems. | ||
| 65 | |||
| 66 | Select this option if you are unsure. | ||
| 67 | |||
| 68 | config TREE_RCU | ||
| 69 | bool "Tree-based hierarchical RCU" | ||
| 70 | help | ||
| 71 | This option selects the RCU implementation that is | ||
| 72 | designed for very large SMP system with hundreds or | ||
| 73 | thousands of CPUs. | ||
| 74 | |||
| 55 | config PREEMPT_RCU | 75 | config PREEMPT_RCU |
| 56 | bool "Preemptible RCU" | 76 | bool "Preemptible RCU" |
| 57 | depends on PREEMPT | 77 | depends on PREEMPT |
| 58 | default n | ||
| 59 | help | 78 | help |
| 60 | This option reduces the latency of the kernel by making certain | 79 | This option reduces the latency of the kernel by making certain |
| 61 | RCU sections preemptible. Normally RCU code is non-preemptible, if | 80 | RCU sections preemptible. Normally RCU code is non-preemptible, if |
| @@ -64,16 +83,47 @@ config PREEMPT_RCU | |||
| 64 | now-naive assumptions about each RCU read-side critical section | 83 | now-naive assumptions about each RCU read-side critical section |
| 65 | remaining on a given CPU through its execution. | 84 | remaining on a given CPU through its execution. |
| 66 | 85 | ||
| 67 | Say N if you are unsure. | 86 | endchoice |
| 68 | 87 | ||
| 69 | config RCU_TRACE | 88 | config RCU_TRACE |
| 70 | bool "Enable tracing for RCU - currently stats in debugfs" | 89 | bool "Enable tracing for RCU" |
| 71 | depends on PREEMPT_RCU | 90 | depends on TREE_RCU || PREEMPT_RCU |
| 72 | select DEBUG_FS | ||
| 73 | default y | ||
| 74 | help | 91 | help |
| 75 | This option provides tracing in RCU which presents stats | 92 | This option provides tracing in RCU which presents stats |
| 76 | in debugfs for debugging RCU implementation. | 93 | in debugfs for debugging RCU implementation. |
| 77 | 94 | ||
| 78 | Say Y here if you want to enable RCU tracing | 95 | Say Y here if you want to enable RCU tracing |
| 79 | Say N if you are unsure. | 96 | Say N if you are unsure. |
| 97 | |||
| 98 | config RCU_FANOUT | ||
| 99 | int "Tree-based hierarchical RCU fanout value" | ||
| 100 | range 2 64 if 64BIT | ||
| 101 | range 2 32 if !64BIT | ||
| 102 | depends on TREE_RCU | ||
| 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 cube | ||
| 109 | root of NR_CPUS, which allows NR_CPUS up to 32,768 for 32-bit | ||
| 110 | systems and up to 262,144 for 64-bit systems. | ||
| 111 | |||
| 112 | Select a specific number if testing RCU itself. | ||
| 113 | Take the default if unsure. | ||
| 114 | |||
| 115 | config RCU_FANOUT_EXACT | ||
| 116 | bool "Disable tree-based hierarchical RCU auto-balancing" | ||
| 117 | depends on TREE_RCU | ||
| 118 | default n | ||
| 119 | help | ||
| 120 | This option forces use of the exact RCU_FANOUT value specified, | ||
| 121 | regardless of imbalances in the hierarchy. This is useful for | ||
| 122 | testing RCU itself, and might one day be useful on systems with | ||
| 123 | strong NUMA behavior. | ||
| 124 | |||
| 125 | Without RCU_FANOUT_EXACT, the code will balance the hierarchy. | ||
| 126 | |||
| 127 | Say n if unsure. | ||
| 128 | |||
| 129 | |||
diff --git a/kernel/Makefile b/kernel/Makefile index 19fad003b19..b4fdbbff5ec 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
| @@ -74,10 +74,10 @@ obj-$(CONFIG_GENERIC_HARDIRQS) += irq/ | |||
| 74 | obj-$(CONFIG_SECCOMP) += seccomp.o | 74 | obj-$(CONFIG_SECCOMP) += seccomp.o |
| 75 | obj-$(CONFIG_RCU_TORTURE_TEST) += rcutorture.o | 75 | obj-$(CONFIG_RCU_TORTURE_TEST) += rcutorture.o |
| 76 | obj-$(CONFIG_CLASSIC_RCU) += rcuclassic.o | 76 | obj-$(CONFIG_CLASSIC_RCU) += rcuclassic.o |
| 77 | obj-$(CONFIG_TREE_RCU) += rcutree.o | ||
| 77 | obj-$(CONFIG_PREEMPT_RCU) += rcupreempt.o | 78 | obj-$(CONFIG_PREEMPT_RCU) += rcupreempt.o |
| 78 | ifeq ($(CONFIG_PREEMPT_RCU),y) | 79 | obj-$(CONFIG_TREE_RCU_TRACE) += rcutree_trace.o |
| 79 | obj-$(CONFIG_RCU_TRACE) += rcupreempt_trace.o | 80 | obj-$(CONFIG_PREEMPT_RCU_TRACE) += rcupreempt_trace.o |
| 80 | endif | ||
| 81 | obj-$(CONFIG_RELAY) += relay.o | 81 | obj-$(CONFIG_RELAY) += relay.o |
| 82 | obj-$(CONFIG_SYSCTL) += utsname_sysctl.o | 82 | obj-$(CONFIG_SYSCTL) += utsname_sysctl.o |
| 83 | obj-$(CONFIG_TASK_DELAY_ACCT) += delayacct.o | 83 | obj-$(CONFIG_TASK_DELAY_ACCT) += delayacct.o |
diff --git a/kernel/rcupreempt.c b/kernel/rcupreempt.c index 59236e8b9da..04982659875 100644 --- a/kernel/rcupreempt.c +++ b/kernel/rcupreempt.c | |||
| @@ -551,6 +551,16 @@ void rcu_irq_exit(void) | |||
| 551 | } | 551 | } |
| 552 | } | 552 | } |
| 553 | 553 | ||
| 554 | void rcu_nmi_enter(void) | ||
| 555 | { | ||
| 556 | rcu_irq_enter(); | ||
| 557 | } | ||
| 558 | |||
| 559 | void rcu_nmi_exit(void) | ||
| 560 | { | ||
| 561 | rcu_irq_exit(); | ||
| 562 | } | ||
| 563 | |||
| 554 | static void dyntick_save_progress_counter(int cpu) | 564 | static void dyntick_save_progress_counter(int cpu) |
| 555 | { | 565 | { |
| 556 | struct rcu_dyntick_sched *rdssp = &per_cpu(rcu_dyntick_sched, cpu); | 566 | struct rcu_dyntick_sched *rdssp = &per_cpu(rcu_dyntick_sched, cpu); |
diff --git a/kernel/rcupreempt_trace.c b/kernel/rcupreempt_trace.c index 35c2d3360ec..7c2665cac17 100644 --- a/kernel/rcupreempt_trace.c +++ b/kernel/rcupreempt_trace.c | |||
| @@ -149,12 +149,12 @@ static void rcupreempt_trace_sum(struct rcupreempt_trace *sp) | |||
| 149 | sp->done_length += cp->done_length; | 149 | sp->done_length += cp->done_length; |
| 150 | sp->done_add += cp->done_add; | 150 | sp->done_add += cp->done_add; |
| 151 | sp->done_remove += cp->done_remove; | 151 | sp->done_remove += cp->done_remove; |
| 152 | atomic_set(&sp->done_invoked, atomic_read(&cp->done_invoked)); | 152 | atomic_add(atomic_read(&cp->done_invoked), &sp->done_invoked); |
| 153 | sp->rcu_check_callbacks += cp->rcu_check_callbacks; | 153 | sp->rcu_check_callbacks += cp->rcu_check_callbacks; |
| 154 | atomic_set(&sp->rcu_try_flip_1, | 154 | atomic_add(atomic_read(&cp->rcu_try_flip_1), |
| 155 | atomic_read(&cp->rcu_try_flip_1)); | 155 | &sp->rcu_try_flip_1); |
| 156 | atomic_set(&sp->rcu_try_flip_e1, | 156 | atomic_add(atomic_read(&cp->rcu_try_flip_e1), |
| 157 | atomic_read(&cp->rcu_try_flip_e1)); | 157 | &sp->rcu_try_flip_e1); |
| 158 | sp->rcu_try_flip_i1 += cp->rcu_try_flip_i1; | 158 | sp->rcu_try_flip_i1 += cp->rcu_try_flip_i1; |
| 159 | sp->rcu_try_flip_ie1 += cp->rcu_try_flip_ie1; | 159 | sp->rcu_try_flip_ie1 += cp->rcu_try_flip_ie1; |
| 160 | sp->rcu_try_flip_g1 += cp->rcu_try_flip_g1; | 160 | sp->rcu_try_flip_g1 += cp->rcu_try_flip_g1; |
diff --git a/kernel/rcutree.c b/kernel/rcutree.c new file mode 100644 index 00000000000..a342b032112 --- /dev/null +++ b/kernel/rcutree.c | |||
| @@ -0,0 +1,1535 @@ | |||
| 1 | /* | ||
| 2 | * Read-Copy Update mechanism for mutual exclusion | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
| 17 | * | ||
| 18 | * Copyright IBM Corporation, 2008 | ||
| 19 | * | ||
| 20 | * Authors: Dipankar Sarma <dipankar@in.ibm.com> | ||
| 21 | * Manfred Spraul <manfred@colorfullife.com> | ||
| 22 | * Paul E. McKenney <paulmck@linux.vnet.ibm.com> Hierarchical version | ||
| 23 | * | ||
| 24 | * Based on the original work by Paul McKenney <paulmck@us.ibm.com> | ||
| 25 | * and inputs from Rusty Russell, Andrea Arcangeli and Andi Kleen. | ||
| 26 | * | ||
| 27 | * For detailed explanation of Read-Copy Update mechanism see - | ||
| 28 | * Documentation/RCU | ||
| 29 | */ | ||
| 30 | #include <linux/types.h> | ||
| 31 | #include <linux/kernel.h> | ||
| 32 | #include <linux/init.h> | ||
| 33 | #include <linux/spinlock.h> | ||
| 34 | #include <linux/smp.h> | ||
| 35 | #include <linux/rcupdate.h> | ||
| 36 | #include <linux/interrupt.h> | ||
| 37 | #include <linux/sched.h> | ||
| 38 | #include <asm/atomic.h> | ||
| 39 | #include <linux/bitops.h> | ||
| 40 | #include <linux/module.h> | ||
| 41 | #include <linux/completion.h> | ||
| 42 | #include <linux/moduleparam.h> | ||
| 43 | #include <linux/percpu.h> | ||
| 44 | #include <linux/notifier.h> | ||
| 45 | #include <linux/cpu.h> | ||
| 46 | #include <linux/mutex.h> | ||
| 47 | #include <linux/time.h> | ||
| 48 | |||
| 49 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | ||
| 50 | static struct lock_class_key rcu_lock_key; | ||
| 51 | struct lockdep_map rcu_lock_map = | ||
| 52 | STATIC_LOCKDEP_MAP_INIT("rcu_read_lock", &rcu_lock_key); | ||
| 53 | EXPORT_SYMBOL_GPL(rcu_lock_map); | ||
| 54 | #endif | ||
| 55 | |||
| 56 | /* Data structures. */ | ||
| 57 | |||
| 58 | #define RCU_STATE_INITIALIZER(name) { \ | ||
| 59 | .level = { &name.node[0] }, \ | ||
| 60 | .levelcnt = { \ | ||
| 61 | NUM_RCU_LVL_0, /* root of hierarchy. */ \ | ||
| 62 | NUM_RCU_LVL_1, \ | ||
| 63 | NUM_RCU_LVL_2, \ | ||
| 64 | NUM_RCU_LVL_3, /* == MAX_RCU_LVLS */ \ | ||
| 65 | }, \ | ||
| 66 | .signaled = RCU_SIGNAL_INIT, \ | ||
| 67 | .gpnum = -300, \ | ||
| 68 | .completed = -300, \ | ||
| 69 | .onofflock = __SPIN_LOCK_UNLOCKED(&name.onofflock), \ | ||
| 70 | .fqslock = __SPIN_LOCK_UNLOCKED(&name.fqslock), \ | ||
| 71 | .n_force_qs = 0, \ | ||
| 72 | .n_force_qs_ngp = 0, \ | ||
| 73 | } | ||
| 74 | |||
| 75 | struct rcu_state rcu_state = RCU_STATE_INITIALIZER(rcu_state); | ||
| 76 | DEFINE_PER_CPU(struct rcu_data, rcu_data); | ||
| 77 | |||
| 78 | struct rcu_state rcu_bh_state = RCU_STATE_INITIALIZER(rcu_bh_state); | ||
| 79 | DEFINE_PER_CPU(struct rcu_data, rcu_bh_data); | ||
| 80 | |||
| 81 | #ifdef CONFIG_NO_HZ | ||
| 82 | DEFINE_PER_CPU(struct rcu_dynticks, rcu_dynticks); | ||
| 83 | #endif /* #ifdef CONFIG_NO_HZ */ | ||
| 84 | |||
| 85 | static int blimit = 10; /* Maximum callbacks per softirq. */ | ||
| 86 | static int qhimark = 10000; /* If this many pending, ignore blimit. */ | ||
| 87 | static int qlowmark = 100; /* Once only this many pending, use blimit. */ | ||
| 88 | |||
| 89 | static void force_quiescent_state(struct rcu_state *rsp, int relaxed); | ||
| 90 | |||
| 91 | /* | ||
| 92 | * Return the number of RCU batches processed thus far for debug & stats. | ||
| 93 | */ | ||
| 94 | long rcu_batches_completed(void) | ||
| 95 | { | ||
| 96 | return rcu_state.completed; | ||
| 97 | } | ||
| 98 | EXPORT_SYMBOL_GPL(rcu_batches_completed); | ||
| 99 | |||
| 100 | /* | ||
| 101 | * Return the number of RCU BH batches processed thus far for debug & stats. | ||
| 102 | */ | ||
| 103 | long rcu_batches_completed_bh(void) | ||
| 104 | { | ||
| 105 | return rcu_bh_state.completed; | ||
| 106 | } | ||
| 107 | EXPORT_SYMBOL_GPL(rcu_batches_completed_bh); | ||
| 108 | |||
| 109 | /* | ||
| 110 | * Does the CPU have callbacks ready to be invoked? | ||
| 111 | */ | ||
| 112 | static int | ||
| 113 | cpu_has_callbacks_ready_to_invoke(struct rcu_data *rdp) | ||
| 114 | { | ||
| 115 | return &rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL]; | ||
| 116 | } | ||
| 117 | |||
| 118 | /* | ||
| 119 | * Does the current CPU require a yet-as-unscheduled grace period? | ||
| 120 | */ | ||
| 121 | static int | ||
| 122 | cpu_needs_another_gp(struct rcu_state *rsp, struct rcu_data *rdp) | ||
| 123 | { | ||
| 124 | /* ACCESS_ONCE() because we are accessing outside of lock. */ | ||
| 125 | return *rdp->nxttail[RCU_DONE_TAIL] && | ||
| 126 | ACCESS_ONCE(rsp->completed) == ACCESS_ONCE(rsp->gpnum); | ||
| 127 | } | ||
| 128 | |||
| 129 | /* | ||
| 130 | * Return the root node of the specified rcu_state structure. | ||
| 131 | */ | ||
| 132 | static struct rcu_node *rcu_get_root(struct rcu_state *rsp) | ||
| 133 | { | ||
| 134 | return &rsp->node[0]; | ||
| 135 | } | ||
| 136 | |||
| 137 | #ifdef CONFIG_SMP | ||
| 138 | |||
| 139 | /* | ||
| 140 | * If the specified CPU is offline, tell the caller that it is in | ||
| 141 | * a quiescent state. Otherwise, whack it with a reschedule IPI. | ||
| 142 | * Grace periods can end up waiting on an offline CPU when that | ||
| 143 | * CPU is in the process of coming online -- it will be added to the | ||
| 144 | * rcu_node bitmasks before it actually makes it online. The same thing | ||
| 145 | * can happen while a CPU is in the process of coming online. Because this | ||
| 146 | * race is quite rare, we check for it after detecting that the grace | ||
| 147 | * period has been delayed rather than checking each and every CPU | ||
| 148 | * each and every time we start a new grace period. | ||
| 149 | */ | ||
| 150 | static int rcu_implicit_offline_qs(struct rcu_data *rdp) | ||
| 151 | { | ||
| 152 | /* | ||
| 153 | * If the CPU is offline, it is in a quiescent state. We can | ||
| 154 | * trust its state not to change because interrupts are disabled. | ||
| 155 | */ | ||
| 156 | if (cpu_is_offline(rdp->cpu)) { | ||
| 157 | rdp->offline_fqs++; | ||
| 158 | return 1; | ||
| 159 | } | ||
| 160 | |||
| 161 | /* The CPU is online, so send it a reschedule IPI. */ | ||
| 162 | if (rdp->cpu != smp_processor_id()) | ||
| 163 | smp_send_reschedule(rdp->cpu); | ||
| 164 | else | ||
| 165 | set_need_resched(); | ||
| 166 | rdp->resched_ipi++; | ||
| 167 | return 0; | ||
| 168 | } | ||
| 169 | |||
| 170 | #endif /* #ifdef CONFIG_SMP */ | ||
| 171 | |||
| 172 | #ifdef CONFIG_NO_HZ | ||
| 173 | static DEFINE_RATELIMIT_STATE(rcu_rs, 10 * HZ, 5); | ||
| 174 | |||
| 175 | /** | ||
| 176 | * rcu_enter_nohz - inform RCU that current CPU is entering nohz | ||
| 177 | * | ||
| 178 | * Enter nohz mode, in other words, -leave- the mode in which RCU | ||
| 179 | * read-side critical sections can occur. (Though RCU read-side | ||
| 180 | * critical sections can occur in irq handlers in nohz mode, a possibility | ||
| 181 | * handled by rcu_irq_enter() and rcu_irq_exit()). | ||
| 182 | */ | ||
| 183 | void rcu_enter_nohz(void) | ||
| 184 | { | ||
| 185 | unsigned long flags; | ||
| 186 | struct rcu_dynticks *rdtp; | ||
| 187 | |||
| 188 | smp_mb(); /* CPUs seeing ++ must see prior RCU read-side crit sects */ | ||
| 189 | local_irq_save(flags); | ||
| 190 | rdtp = &__get_cpu_var(rcu_dynticks); | ||
| 191 | rdtp->dynticks++; | ||
| 192 | rdtp->dynticks_nesting--; | ||
| 193 | WARN_ON_RATELIMIT(rdtp->dynticks & 0x1, &rcu_rs); | ||
| 194 | local_irq_restore(flags); | ||
| 195 | } | ||
| 196 | |||
| 197 | /* | ||
| 198 | * rcu_exit_nohz - inform RCU that current CPU is leaving nohz | ||
| 199 | * | ||
| 200 | * Exit nohz mode, in other words, -enter- the mode in which RCU | ||
| 201 | * read-side critical sections normally occur. | ||
| 202 | */ | ||
| 203 | void rcu_exit_nohz(void) | ||
| 204 | { | ||
| 205 | unsigned long flags; | ||
| 206 | struct rcu_dynticks *rdtp; | ||
| 207 | |||
| 208 | local_irq_save(flags); | ||
| 209 | rdtp = &__get_cpu_var(rcu_dynticks); | ||
| 210 | rdtp->dynticks++; | ||
| 211 | rdtp->dynticks_nesting++; | ||
| 212 | WARN_ON_RATELIMIT(!(rdtp->dynticks & 0x1), &rcu_rs); | ||
| 213 | local_irq_restore(flags); | ||
| 214 | smp_mb(); /* CPUs seeing ++ must see later RCU read-side crit sects */ | ||
| 215 | } | ||
| 216 | |||
| 217 | /** | ||
| 218 | * rcu_nmi_enter - inform RCU of entry to NMI context | ||
| 219 | * | ||
| 220 | * If the CPU was idle with dynamic ticks active, and there is no | ||
| 221 | * irq handler running, this updates rdtp->dynticks_nmi to let the | ||
| 222 | * RCU grace-period handling know that the CPU is active. | ||
| 223 | */ | ||
| 224 | void rcu_nmi_enter(void) | ||
| 225 | { | ||
| 226 | struct rcu_dynticks *rdtp = &__get_cpu_var(rcu_dynticks); | ||
| 227 | |||
| 228 | if (rdtp->dynticks & 0x1) | ||
| 229 | return; | ||
| 230 | rdtp->dynticks_nmi++; | ||
| 231 | WARN_ON_RATELIMIT(!(rdtp->dynticks_nmi & 0x1), &rcu_rs); | ||
| 232 | smp_mb(); /* CPUs seeing ++ must see later RCU read-side crit sects */ | ||
| 233 | } | ||
| 234 | |||
| 235 | /** | ||
| 236 | * rcu_nmi_exit - inform RCU of exit from NMI context | ||
| 237 | * | ||
| 238 | * If the CPU was idle with dynamic ticks active, and there is no | ||
| 239 | * irq handler running, this updates rdtp->dynticks_nmi to let the | ||
| 240 | * RCU grace-period handling know that the CPU is no longer active. | ||
| 241 | */ | ||
| 242 | void rcu_nmi_exit(void) | ||
| 243 | { | ||
| 244 | struct rcu_dynticks *rdtp = &__get_cpu_var(rcu_dynticks); | ||
| 245 | |||
| 246 | if (rdtp->dynticks & 0x1) | ||
| 247 | return; | ||
| 248 | smp_mb(); /* CPUs seeing ++ must see prior RCU read-side crit sects */ | ||
| 249 | rdtp->dynticks_nmi++; | ||
| 250 | WARN_ON_RATELIMIT(rdtp->dynticks_nmi & 0x1, &rcu_rs); | ||
| 251 | } | ||
| 252 | |||
| 253 | /** | ||
| 254 | * rcu_irq_enter - inform RCU of entry to hard irq context | ||
| 255 | * | ||
| 256 | * If the CPU was idle with dynamic ticks active, this updates the | ||
| 257 | * rdtp->dynticks to let the RCU handling know that the CPU is active. | ||
| 258 | */ | ||
| 259 | void rcu_irq_enter(void) | ||
| 260 | { | ||
| 261 | struct rcu_dynticks *rdtp = &__get_cpu_var(rcu_dynticks); | ||
| 262 | |||
| 263 | if (rdtp->dynticks_nesting++) | ||
| 264 | return; | ||
| 265 | rdtp->dynticks++; | ||
| 266 | WARN_ON_RATELIMIT(!(rdtp->dynticks & 0x1), &rcu_rs); | ||
| 267 | smp_mb(); /* CPUs seeing ++ must see later RCU read-side crit sects */ | ||
| 268 | } | ||
| 269 | |||
| 270 | /** | ||
| 271 | * rcu_irq_exit - inform RCU of exit from hard irq context | ||
| 272 | * | ||
| 273 | * If the CPU was idle with dynamic ticks active, update the rdp->dynticks | ||
| 274 | * to put let the RCU handling be aware that the CPU is going back to idle | ||
| 275 | * with no ticks. | ||
| 276 | */ | ||
| 277 | void rcu_irq_exit(void) | ||
| 278 | { | ||
| 279 | struct rcu_dynticks *rdtp = &__get_cpu_var(rcu_dynticks); | ||
| 280 | |||
| 281 | if (--rdtp->dynticks_nesting) | ||
| 282 | return; | ||
| 283 | smp_mb(); /* CPUs seeing ++ must see prior RCU read-side crit sects */ | ||
| 284 | rdtp->dynticks++; | ||
| 285 | WARN_ON_RATELIMIT(rdtp->dynticks & 0x1, &rcu_rs); | ||
| 286 | |||
| 287 | /* If the interrupt queued a callback, get out of dyntick mode. */ | ||
| 288 | if (__get_cpu_var(rcu_data).nxtlist || | ||
| 289 | __get_cpu_var(rcu_bh_data).nxtlist) | ||
| 290 | set_need_resched(); | ||
| 291 | } | ||
| 292 | |||
| 293 | /* | ||
| 294 | * Record the specified "completed" value, which is later used to validate | ||
| 295 | * dynticks counter manipulations. Specify "rsp->completed - 1" to | ||
| 296 | * unconditionally invalidate any future dynticks manipulations (which is | ||
| 297 | * useful at the beginning of a grace period). | ||
| 298 | */ | ||
| 299 | static void dyntick_record_completed(struct rcu_state *rsp, long comp) | ||
| 300 | { | ||
| 301 | rsp->dynticks_completed = comp; | ||
| 302 | } | ||
| 303 | |||
| 304 | #ifdef CONFIG_SMP | ||
| 305 | |||
| 306 | /* | ||
| 307 | * Recall the previously recorded value of the completion for dynticks. | ||
| 308 | */ | ||
| 309 | static long dyntick_recall_completed(struct rcu_state *rsp) | ||
| 310 | { | ||
| 311 | return rsp->dynticks_completed; | ||
| 312 | } | ||
| 313 | |||
| 314 | /* | ||
| 315 | * Snapshot the specified CPU's dynticks counter so that we can later | ||
| 316 | * credit them with an implicit quiescent state. Return 1 if this CPU | ||
| 317 | * is already in a quiescent state courtesy of dynticks idle mode. | ||
| 318 | */ | ||
| 319 | static int dyntick_save_progress_counter(struct rcu_data *rdp) | ||
| 320 | { | ||
| 321 | int ret; | ||
| 322 | int snap; | ||
| 323 | int snap_nmi; | ||
| 324 | |||
| 325 | snap = rdp->dynticks->dynticks; | ||
| 326 | snap_nmi = rdp->dynticks->dynticks_nmi; | ||
| 327 | smp_mb(); /* Order sampling of snap with end of grace period. */ | ||
| 328 | rdp->dynticks_snap = snap; | ||
| 329 | rdp->dynticks_nmi_snap = snap_nmi; | ||
| 330 | ret = ((snap & 0x1) == 0) && ((snap_nmi & 0x1) == 0); | ||
| 331 | if (ret) | ||
| 332 | rdp->dynticks_fqs++; | ||
| 333 | return ret; | ||
| 334 | } | ||
| 335 | |||
| 336 | /* | ||
| 337 | * Return true if the specified CPU has passed through a quiescent | ||
| 338 | * state by virtue of being in or having passed through an dynticks | ||
| 339 | * idle state since the last call to dyntick_save_progress_counter() | ||
| 340 | * for this same CPU. | ||
| 341 | */ | ||
| 342 | static int rcu_implicit_dynticks_qs(struct rcu_data *rdp) | ||
| 343 | { | ||
| 344 | long curr; | ||
| 345 | long curr_nmi; | ||
| 346 | long snap; | ||
| 347 | long snap_nmi; | ||
| 348 | |||
| 349 | curr = rdp->dynticks->dynticks; | ||
| 350 | snap = rdp->dynticks_snap; | ||
| 351 | curr_nmi = rdp->dynticks->dynticks_nmi; | ||
| 352 | snap_nmi = rdp->dynticks_nmi_snap; | ||
| 353 | smp_mb(); /* force ordering with cpu entering/leaving dynticks. */ | ||
| 354 | |||
| 355 | /* | ||
| 356 | * If the CPU passed through or entered a dynticks idle phase with | ||
| 357 | * no active irq/NMI handlers, then we can safely pretend that the CPU | ||
| 358 | * already acknowledged the request to pass through a quiescent | ||
| 359 | * state. Either way, that CPU cannot possibly be in an RCU | ||
| 360 | * read-side critical section that started before the beginning | ||
| 361 | * of the current RCU grace period. | ||
| 362 | */ | ||
| 363 | if ((curr != snap || (curr & 0x1) == 0) && | ||
| 364 | (curr_nmi != snap_nmi || (curr_nmi & 0x1) == 0)) { | ||
| 365 | rdp->dynticks_fqs++; | ||
| 366 | return 1; | ||
| 367 | } | ||
| 368 | |||
| 369 | /* Go check for the CPU being offline. */ | ||
| 370 | return rcu_implicit_offline_qs(rdp); | ||
| 371 | } | ||
| 372 | |||
| 373 | #endif /* #ifdef CONFIG_SMP */ | ||
| 374 | |||
| 375 | #else /* #ifdef CONFIG_NO_HZ */ | ||
| 376 | |||
| 377 | static void dyntick_record_completed(struct rcu_state *rsp, long comp) | ||
| 378 | { | ||
| 379 | } | ||
| 380 | |||
| 381 | #ifdef CONFIG_SMP | ||
| 382 | |||
| 383 | /* | ||
| 384 | * If there are no dynticks, then the only way that a CPU can passively | ||
| 385 | * be in a quiescent state is to be offline. Unlike dynticks idle, which | ||
| 386 | * is a point in time during the prior (already finished) grace period, | ||
| 387 | * an offline CPU is always in a quiescent state, and thus can be | ||
| 388 | * unconditionally applied. So just return the current value of completed. | ||
| 389 | */ | ||
| 390 | static long dyntick_recall_completed(struct rcu_state *rsp) | ||
| 391 | { | ||
| 392 | return rsp->completed; | ||
| 393 | } | ||
| 394 | |||
| 395 | static int dyntick_save_progress_counter(struct rcu_data *rdp) | ||
| 396 | { | ||
| 397 | return 0; | ||
| 398 | } | ||
| 399 | |||
| 400 | static int rcu_implicit_dynticks_qs(struct rcu_data *rdp) | ||
| 401 | { | ||
| 402 | return rcu_implicit_offline_qs(rdp); | ||
| 403 | } | ||
| 404 | |||
| 405 | #endif /* #ifdef CONFIG_SMP */ | ||
| 406 | |||
| 407 | #endif /* #else #ifdef CONFIG_NO_HZ */ | ||
| 408 | |||
| 409 | #ifdef CONFIG_RCU_CPU_STALL_DETECTOR | ||
| 410 | |||
| 411 | static void record_gp_stall_check_time(struct rcu_state *rsp) | ||
| 412 | { | ||
| 413 | rsp->gp_start = jiffies; | ||
| 414 | rsp->jiffies_stall = jiffies + RCU_SECONDS_TILL_STALL_CHECK; | ||
| 415 | } | ||
| 416 | |||
| 417 | static void print_other_cpu_stall(struct rcu_state *rsp) | ||
| 418 | { | ||
| 419 | int cpu; | ||
| 420 | long delta; | ||
| 421 | unsigned long flags; | ||
| 422 | struct rcu_node *rnp = rcu_get_root(rsp); | ||
| 423 | struct rcu_node *rnp_cur = rsp->level[NUM_RCU_LVLS - 1]; | ||
| 424 | struct rcu_node *rnp_end = &rsp->node[NUM_RCU_NODES]; | ||
| 425 | |||
| 426 | /* Only let one CPU complain about others per time interval. */ | ||
| 427 | |||
| 428 | spin_lock_irqsave(&rnp->lock, flags); | ||
| 429 | delta = jiffies - rsp->jiffies_stall; | ||
| 430 | if (delta < RCU_STALL_RAT_DELAY || rsp->gpnum == rsp->completed) { | ||
| 431 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 432 | return; | ||
| 433 | } | ||
| 434 | rsp->jiffies_stall = jiffies + RCU_SECONDS_TILL_STALL_RECHECK; | ||
| 435 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 436 | |||
| 437 | /* OK, time to rat on our buddy... */ | ||
| 438 | |||
| 439 | printk(KERN_ERR "INFO: RCU detected CPU stalls:"); | ||
| 440 | for (; rnp_cur < rnp_end; rnp_cur++) { | ||
| 441 | if (rnp_cur->qsmask == 0) | ||
| 442 | continue; | ||
| 443 | for (cpu = 0; cpu <= rnp_cur->grphi - rnp_cur->grplo; cpu++) | ||
| 444 | if (rnp_cur->qsmask & (1UL << cpu)) | ||
| 445 | printk(" %d", rnp_cur->grplo + cpu); | ||
| 446 | } | ||
| 447 | printk(" (detected by %d, t=%ld jiffies)\n", | ||
| 448 | smp_processor_id(), (long)(jiffies - rsp->gp_start)); | ||
| 449 | force_quiescent_state(rsp, 0); /* Kick them all. */ | ||
| 450 | } | ||
| 451 | |||
| 452 | static void print_cpu_stall(struct rcu_state *rsp) | ||
| 453 | { | ||
| 454 | unsigned long flags; | ||
| 455 | struct rcu_node *rnp = rcu_get_root(rsp); | ||
| 456 | |||
| 457 | printk(KERN_ERR "INFO: RCU detected CPU %d stall (t=%lu jiffies)\n", | ||
| 458 | smp_processor_id(), jiffies - rsp->gp_start); | ||
| 459 | dump_stack(); | ||
| 460 | spin_lock_irqsave(&rnp->lock, flags); | ||
| 461 | if ((long)(jiffies - rsp->jiffies_stall) >= 0) | ||
| 462 | rsp->jiffies_stall = | ||
| 463 | jiffies + RCU_SECONDS_TILL_STALL_RECHECK; | ||
| 464 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 465 | set_need_resched(); /* kick ourselves to get things going. */ | ||
| 466 | } | ||
| 467 | |||
| 468 | static void check_cpu_stall(struct rcu_state *rsp, struct rcu_data *rdp) | ||
| 469 | { | ||
| 470 | long delta; | ||
| 471 | struct rcu_node *rnp; | ||
| 472 | |||
| 473 | delta = jiffies - rsp->jiffies_stall; | ||
| 474 | rnp = rdp->mynode; | ||
| 475 | if ((rnp->qsmask & rdp->grpmask) && delta >= 0) { | ||
| 476 | |||
| 477 | /* We haven't checked in, so go dump stack. */ | ||
| 478 | print_cpu_stall(rsp); | ||
| 479 | |||
| 480 | } else if (rsp->gpnum != rsp->completed && | ||
| 481 | delta >= RCU_STALL_RAT_DELAY) { | ||
| 482 | |||
| 483 | /* They had two time units to dump stack, so complain. */ | ||
| 484 | print_other_cpu_stall(rsp); | ||
| 485 | } | ||
| 486 | } | ||
| 487 | |||
| 488 | #else /* #ifdef CONFIG_RCU_CPU_STALL_DETECTOR */ | ||
| 489 | |||
| 490 | static void record_gp_stall_check_time(struct rcu_state *rsp) | ||
| 491 | { | ||
| 492 | } | ||
| 493 | |||
| 494 | static void check_cpu_stall(struct rcu_state *rsp, struct rcu_data *rdp) | ||
| 495 | { | ||
| 496 | } | ||
| 497 | |||
| 498 | #endif /* #else #ifdef CONFIG_RCU_CPU_STALL_DETECTOR */ | ||
| 499 | |||
| 500 | /* | ||
| 501 | * Update CPU-local rcu_data state to record the newly noticed grace period. | ||
| 502 | * This is used both when we started the grace period and when we notice | ||
| 503 | * that someone else started the grace period. | ||
| 504 | */ | ||
| 505 | static void note_new_gpnum(struct rcu_state *rsp, struct rcu_data *rdp) | ||
| 506 | { | ||
| 507 | rdp->qs_pending = 1; | ||
| 508 | rdp->passed_quiesc = 0; | ||
| 509 | rdp->gpnum = rsp->gpnum; | ||
| 510 | rdp->n_rcu_pending_force_qs = rdp->n_rcu_pending + | ||
| 511 | RCU_JIFFIES_TILL_FORCE_QS; | ||
| 512 | } | ||
| 513 | |||
| 514 | /* | ||
| 515 | * Did someone else start a new RCU grace period start since we last | ||
| 516 | * checked? Update local state appropriately if so. Must be called | ||
| 517 | * on the CPU corresponding to rdp. | ||
| 518 | */ | ||
| 519 | static int | ||
| 520 | check_for_new_grace_period(struct rcu_state *rsp, struct rcu_data *rdp) | ||
| 521 | { | ||
| 522 | unsigned long flags; | ||
| 523 | int ret = 0; | ||
| 524 | |||
| 525 | local_irq_save(flags); | ||
| 526 | if (rdp->gpnum != rsp->gpnum) { | ||
| 527 | note_new_gpnum(rsp, rdp); | ||
| 528 | ret = 1; | ||
| 529 | } | ||
| 530 | local_irq_restore(flags); | ||
| 531 | return ret; | ||
| 532 | } | ||
| 533 | |||
| 534 | /* | ||
| 535 | * Start a new RCU grace period if warranted, re-initializing the hierarchy | ||
| 536 | * in preparation for detecting the next grace period. The caller must hold | ||
| 537 | * the root node's ->lock, which is released before return. Hard irqs must | ||
| 538 | * be disabled. | ||
| 539 | */ | ||
| 540 | static void | ||
| 541 | rcu_start_gp(struct rcu_state *rsp, unsigned long flags) | ||
| 542 | __releases(rcu_get_root(rsp)->lock) | ||
| 543 | { | ||
| 544 | struct rcu_data *rdp = rsp->rda[smp_processor_id()]; | ||
| 545 | struct rcu_node *rnp = rcu_get_root(rsp); | ||
| 546 | struct rcu_node *rnp_cur; | ||
| 547 | struct rcu_node *rnp_end; | ||
| 548 | |||
| 549 | if (!cpu_needs_another_gp(rsp, rdp)) { | ||
| 550 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 551 | return; | ||
| 552 | } | ||
| 553 | |||
| 554 | /* Advance to a new grace period and initialize state. */ | ||
| 555 | rsp->gpnum++; | ||
| 556 | rsp->signaled = RCU_GP_INIT; /* Hold off force_quiescent_state. */ | ||
| 557 | rsp->jiffies_force_qs = jiffies + RCU_JIFFIES_TILL_FORCE_QS; | ||
| 558 | rdp->n_rcu_pending_force_qs = rdp->n_rcu_pending + | ||
| 559 | RCU_JIFFIES_TILL_FORCE_QS; | ||
| 560 | record_gp_stall_check_time(rsp); | ||
| 561 | dyntick_record_completed(rsp, rsp->completed - 1); | ||
| 562 | note_new_gpnum(rsp, rdp); | ||
| 563 | |||
| 564 | /* | ||
| 565 | * Because we are first, we know that all our callbacks will | ||
| 566 | * be covered by this upcoming grace period, even the ones | ||
| 567 | * that were registered arbitrarily recently. | ||
| 568 | */ | ||
| 569 | rdp->nxttail[RCU_NEXT_READY_TAIL] = rdp->nxttail[RCU_NEXT_TAIL]; | ||
| 570 | rdp->nxttail[RCU_WAIT_TAIL] = rdp->nxttail[RCU_NEXT_TAIL]; | ||
| 571 | |||
| 572 | /* Special-case the common single-level case. */ | ||
| 573 | if (NUM_RCU_NODES == 1) { | ||
| 574 | rnp->qsmask = rnp->qsmaskinit; | ||
| 575 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 576 | return; | ||
| 577 | } | ||
| 578 | |||
| 579 | spin_unlock(&rnp->lock); /* leave irqs disabled. */ | ||
| 580 | |||
| 581 | |||
| 582 | /* Exclude any concurrent CPU-hotplug operations. */ | ||
| 583 | spin_lock(&rsp->onofflock); /* irqs already disabled. */ | ||
| 584 | |||
| 585 | /* | ||
| 586 | * Set the quiescent-state-needed bits in all the non-leaf RCU | ||
| 587 | * nodes for all currently online CPUs. This operation relies | ||
| 588 | * on the layout of the hierarchy within the rsp->node[] array. | ||
| 589 | * Note that other CPUs will access only the leaves of the | ||
| 590 | * hierarchy, which still indicate that no grace period is in | ||
| 591 | * progress. In addition, we have excluded CPU-hotplug operations. | ||
| 592 | * | ||
| 593 | * We therefore do not need to hold any locks. Any required | ||
| 594 | * memory barriers will be supplied by the locks guarding the | ||
| 595 | * leaf rcu_nodes in the hierarchy. | ||
| 596 | */ | ||
| 597 | |||
| 598 | rnp_end = rsp->level[NUM_RCU_LVLS - 1]; | ||
| 599 | for (rnp_cur = &rsp->node[0]; rnp_cur < rnp_end; rnp_cur++) | ||
| 600 | rnp_cur->qsmask = rnp_cur->qsmaskinit; | ||
| 601 | |||
| 602 | /* | ||
| 603 | * Now set up the leaf nodes. Here we must be careful. First, | ||
| 604 | * we need to hold the lock in order to exclude other CPUs, which | ||
| 605 | * might be contending for the leaf nodes' locks. Second, as | ||
| 606 | * soon as we initialize a given leaf node, its CPUs might run | ||
| 607 | * up the rest of the hierarchy. We must therefore acquire locks | ||
| 608 | * for each node that we touch during this stage. (But we still | ||
| 609 | * are excluding CPU-hotplug operations.) | ||
| 610 | * | ||
| 611 | * Note that the grace period cannot complete until we finish | ||
| 612 | * the initialization process, as there will be at least one | ||
| 613 | * qsmask bit set in the root node until that time, namely the | ||
| 614 | * one corresponding to this CPU. | ||
| 615 | */ | ||
| 616 | rnp_end = &rsp->node[NUM_RCU_NODES]; | ||
| 617 | rnp_cur = rsp->level[NUM_RCU_LVLS - 1]; | ||
| 618 | for (; rnp_cur < rnp_end; rnp_cur++) { | ||
| 619 | spin_lock(&rnp_cur->lock); /* irqs already disabled. */ | ||
| 620 | rnp_cur->qsmask = rnp_cur->qsmaskinit; | ||
| 621 | spin_unlock(&rnp_cur->lock); /* irqs already disabled. */ | ||
| 622 | } | ||
| 623 | |||
| 624 | rsp->signaled = RCU_SIGNAL_INIT; /* force_quiescent_state now OK. */ | ||
| 625 | spin_unlock_irqrestore(&rsp->onofflock, flags); | ||
| 626 | } | ||
| 627 | |||
| 628 | /* | ||
| 629 | * Advance this CPU's callbacks, but only if the current grace period | ||
| 630 | * has ended. This may be called only from the CPU to whom the rdp | ||
| 631 | * belongs. | ||
| 632 | */ | ||
| 633 | static void | ||
| 634 | rcu_process_gp_end(struct rcu_state *rsp, struct rcu_data *rdp) | ||
| 635 | { | ||
| 636 | long completed_snap; | ||
| 637 | unsigned long flags; | ||
| 638 | |||
| 639 | local_irq_save(flags); | ||
| 640 | completed_snap = ACCESS_ONCE(rsp->completed); /* outside of lock. */ | ||
| 641 | |||
| 642 | /* Did another grace period end? */ | ||
| 643 | if (rdp->completed != completed_snap) { | ||
| 644 | |||
| 645 | /* Advance callbacks. No harm if list empty. */ | ||
| 646 | rdp->nxttail[RCU_DONE_TAIL] = rdp->nxttail[RCU_WAIT_TAIL]; | ||
| 647 | rdp->nxttail[RCU_WAIT_TAIL] = rdp->nxttail[RCU_NEXT_READY_TAIL]; | ||
| 648 | rdp->nxttail[RCU_NEXT_READY_TAIL] = rdp->nxttail[RCU_NEXT_TAIL]; | ||
| 649 | |||
| 650 | /* Remember that we saw this grace-period completion. */ | ||
| 651 | rdp->completed = completed_snap; | ||
| 652 | } | ||
| 653 | local_irq_restore(flags); | ||
| 654 | } | ||
| 655 | |||
| 656 | /* | ||
| 657 | * Similar to cpu_quiet(), for which it is a helper function. Allows | ||
| 658 | * a group of CPUs to be quieted at one go, though all the CPUs in the | ||
| 659 | * group must be represented by the same leaf rcu_node structure. | ||
| 660 | * That structure's lock must be held upon entry, and it is released | ||
| 661 | * before return. | ||
| 662 | */ | ||
| 663 | static void | ||
| 664 | cpu_quiet_msk(unsigned long mask, struct rcu_state *rsp, struct rcu_node *rnp, | ||
| 665 | unsigned long flags) | ||
| 666 | __releases(rnp->lock) | ||
| 667 | { | ||
| 668 | /* Walk up the rcu_node hierarchy. */ | ||
| 669 | for (;;) { | ||
| 670 | if (!(rnp->qsmask & mask)) { | ||
| 671 | |||
| 672 | /* Our bit has already been cleared, so done. */ | ||
| 673 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 674 | return; | ||
| 675 | } | ||
| 676 | rnp->qsmask &= ~mask; | ||
| 677 | if (rnp->qsmask != 0) { | ||
| 678 | |||
| 679 | /* Other bits still set at this level, so done. */ | ||
| 680 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 681 | return; | ||
| 682 | } | ||
| 683 | mask = rnp->grpmask; | ||
| 684 | if (rnp->parent == NULL) { | ||
| 685 | |||
| 686 | /* No more levels. Exit loop holding root lock. */ | ||
| 687 | |||
| 688 | break; | ||
| 689 | } | ||
| 690 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 691 | rnp = rnp->parent; | ||
| 692 | spin_lock_irqsave(&rnp->lock, flags); | ||
| 693 | } | ||
| 694 | |||
| 695 | /* | ||
| 696 | * Get here if we are the last CPU to pass through a quiescent | ||
| 697 | * state for this grace period. Clean up and let rcu_start_gp() | ||
| 698 | * start up the next grace period if one is needed. Note that | ||
| 699 | * we still hold rnp->lock, as required by rcu_start_gp(), which | ||
| 700 | * will release it. | ||
| 701 | */ | ||
| 702 | rsp->completed = rsp->gpnum; | ||
| 703 | rcu_process_gp_end(rsp, rsp->rda[smp_processor_id()]); | ||
| 704 | rcu_start_gp(rsp, flags); /* releases rnp->lock. */ | ||
| 705 | } | ||
| 706 | |||
| 707 | /* | ||
| 708 | * Record a quiescent state for the specified CPU, which must either be | ||
| 709 | * the current CPU or an offline CPU. The lastcomp argument is used to | ||
| 710 | * make sure we are still in the grace period of interest. We don't want | ||
| 711 | * to end the current grace period based on quiescent states detected in | ||
| 712 | * an earlier grace period! | ||
| 713 | */ | ||
| 714 | static void | ||
| 715 | cpu_quiet(int cpu, struct rcu_state *rsp, struct rcu_data *rdp, long lastcomp) | ||
| 716 | { | ||
| 717 | unsigned long flags; | ||
| 718 | unsigned long mask; | ||
| 719 | struct rcu_node *rnp; | ||
| 720 | |||
| 721 | rnp = rdp->mynode; | ||
| 722 | spin_lock_irqsave(&rnp->lock, flags); | ||
| 723 | if (lastcomp != ACCESS_ONCE(rsp->completed)) { | ||
| 724 | |||
| 725 | /* | ||
| 726 | * Someone beat us to it for this grace period, so leave. | ||
| 727 | * The race with GP start is resolved by the fact that we | ||
| 728 | * hold the leaf rcu_node lock, so that the per-CPU bits | ||
| 729 | * cannot yet be initialized -- so we would simply find our | ||
| 730 | * CPU's bit already cleared in cpu_quiet_msk() if this race | ||
| 731 | * occurred. | ||
| 732 | */ | ||
| 733 | rdp->passed_quiesc = 0; /* try again later! */ | ||
| 734 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 735 | return; | ||
| 736 | } | ||
| 737 | mask = rdp->grpmask; | ||
| 738 | if ((rnp->qsmask & mask) == 0) { | ||
| 739 | spin_unlock_irqrestore(&rnp->lock, flags); | ||
| 740 | } else { | ||
| 741 | rdp->qs_pending = 0; | ||
| 742 | |||
| 743 | /* | ||
| 744 | * This GP can't end until cpu checks in, so all of our | ||
| 745 | * callbacks can be processed during the next GP. | ||
| 746 | */ | ||
| 747 | rdp = rsp->rda[smp_processor_id()]; | ||
| 748 | rdp->nxttail[RCU_NEXT_READY_TAIL] = rdp->nxttail[RCU_NEXT_TAIL]; | ||
| 749 | |||
| 750 | cpu_quiet_msk(mask, rsp, rnp, flags); /* releases rnp->lock */ | ||
| 751 | } | ||
| 752 | } | ||
| 753 | |||
| 754 | /* | ||
| 755 | * Check to see if there is a new grace period of which this CPU | ||
| 756 | * is not yet aware, and if so, set up local rcu_data state for it. | ||
| 757 | * Otherwise, see if this CPU has just passed through its first | ||
| 758 | * quiescent state for this grace period, and record that fact if so. | ||
| 759 | */ | ||
| 760 | static void | ||
| 761 | rcu_check_quiescent_state(struct rcu_state *rsp, struct rcu_data *rdp) | ||
| 762 | { | ||
| 763 | /* If there is now a new grace period, record and return. */ | ||
| 764 | if (check_for_new_grace_period(rsp, rdp)) | ||
| 765 | return; | ||
| 766 | |||
| 767 | /* | ||
| 768 | * Does this CPU still need to do its part for current grace period? | ||
| 769 | * If no, return and let the other CPUs do their part as well. | ||
| 770 | */ | ||
| 771 | if (!rdp->qs_pending) | ||
| 772 | return; | ||
| 773 | |||
| 774 | /* | ||
| 775 | * Was there a quiescent state since the beginning of the grace | ||
| 776 | * period? If no, then exit and wait for the next call. | ||
| 777 | */ | ||
| 778 | if (!rdp->passed_quiesc) | ||
| 779 | return; | ||
| 780 | |||
| 781 | /* Tell RCU we are done (but cpu_quiet() will be the judge of that). */ | ||
| 782 | cpu_quiet(rdp->cpu, rsp, rdp, rdp->passed_quiesc_completed); | ||
| 783 | } | ||
| 784 | |||
| 785 | #ifdef CONFIG_HOTPLUG_CPU | ||
| 786 | |||
| 787 | /* | ||
| 788 | * Remove the outgoing CPU from the bitmasks in the rcu_node hierarchy | ||
| 789 | * and move all callbacks from the outgoing CPU to the current one. | ||
| 790 | */ | ||
| 791 | static void __rcu_offline_cpu(int cpu, struct rcu_state *rsp) | ||
| 792 | { | ||
| 793 | int i; | ||
| 794 | unsigned long flags; | ||
| 795 | long lastcomp; | ||
| 796 | unsigned long mask; | ||
| 797 | struct rcu_data *rdp = rsp->rda[cpu]; | ||
| 798 | struct rcu_data *rdp_me; | ||
| 799 | struct rcu_node *rnp; | ||
| 800 | |||
| 801 | /* Exclude any attempts to start a new grace period. */ | ||
| 802 | spin_lock_irqsave(&rsp->onofflock, flags); | ||
| 803 | |||
| 804 | /* Remove the outgoing CPU from the masks in the rcu_node hierarchy. */ | ||
| 805 | rnp = rdp->mynode; | ||
| 806 | mask = rdp->grpmask; /* rnp->grplo is constant. */ | ||
| 807 | do { | ||
| 808 | spin_lock(&rnp->lock); /* irqs already disabled. */ | ||
| 809 | rnp->qsmaskinit &= ~mask; | ||
| 810 | if (rnp->qsmaskinit != 0) { | ||
| 811 | spin_unlock(&rnp->lock); /* irqs already disabled. */ | ||
| 812 | break; | ||
| 813 | } | ||
| 814 | mask = rnp->grpmask; | ||
| 815 | spin_unlock(&rnp->lock); /* irqs already disabled. */ | ||
| 816 | rnp = rnp->parent; | ||
| 817 | } while (rnp != NULL); | ||
| 818 | lastcomp = rsp->completed; | ||
| 819 | |||
| 820 | spin_unlock(&rsp->onofflock); /* irqs remain disabled. */ | ||
| 821 | |||
| 822 | /* Being offline is a quiescent state, so go record it. */ | ||
| 823 | cpu_quiet(cpu, rsp, rdp, lastcomp); | ||
| 824 | |||
| 825 | /* | ||
| 826 | * Move callbacks from the outgoing CPU to the running CPU. | ||
| 827 | * Note that the outgoing CPU is now quiscent, so it is now | ||
| 828 | * (uncharacteristically) safe to access it rcu_data structure. | ||
| 829 | * Note also that we must carefully retain the order of the | ||
| 830 | * outgoing CPU's callbacks in order for rcu_barrier() to work | ||
| 831 | * correctly. Finally, note that we start all the callbacks | ||
| 832 | * afresh, even those that have passed through a grace period | ||
| 833 | * and are therefore ready to invoke. The theory is that hotplug | ||
| 834 | * events are rare, and that if they are frequent enough to | ||
| 835 | * indefinitely delay callbacks, you have far worse things to | ||
| 836 | * be worrying about. | ||
| 837 | */ | ||
| 838 | rdp_me = rsp->rda[smp_processor_id()]; | ||
| 839 | if (rdp->nxtlist != NULL) { | ||
| 840 | *rdp_me->nxttail[RCU_NEXT_TAIL] = rdp->nxtlist; | ||
| 841 | rdp_me->nxttail[RCU_NEXT_TAIL] = rdp->nxttail[RCU_NEXT_TAIL]; | ||
| 842 | rdp->nxtlist = NULL; | ||
| 843 | for (i = 0; i < RCU_NEXT_SIZE; i++) | ||
| 844 | rdp->nxttail[i] = &rdp->nxtlist; | ||
| 845 | rdp_me->qlen += rdp->qlen; | ||
| 846 | rdp->qlen = 0; | ||
| 847 | } | ||
| 848 | local_irq_restore(flags); | ||
| 849 | } | ||
| 850 | |||
| 851 | /* | ||
| 852 | * Remove the specified CPU from the RCU hierarchy and move any pending | ||
| 853 | * callbacks that it might have to the current CPU. This code assumes | ||
| 854 | * that at least one CPU in the system will remain running at all times. | ||
| 855 | * Any attempt to offline -all- CPUs is likely to strand RCU callbacks. | ||
| 856 | */ | ||
| 857 | static void rcu_offline_cpu(int cpu) | ||
| 858 | { | ||
| 859 | __rcu_offline_cpu(cpu, &rcu_state); | ||
| 860 | __rcu_offline_cpu(cpu, &rcu_bh_state); | ||
| 861 | } | ||
| 862 | |||
| 863 | #else /* #ifdef CONFIG_HOTPLUG_CPU */ | ||
| 864 | |||
| 865 | static void rcu_offline_cpu(int cpu) | ||
| 866 | { | ||
| 867 | } | ||
| 868 | |||
| 869 | #endif /* #else #ifdef CONFIG_HOTPLUG_CPU */ | ||
| 870 | |||
| 871 | /* | ||
| 872 | * Invoke any RCU callbacks that have made it to the end of their grace | ||
| 873 | * period. Thottle as specified by rdp->blimit. | ||
| 874 | */ | ||
| 875 | static void rcu_do_batch(struct rcu_data *rdp) | ||
| 876 | { | ||
| 877 | unsigned long flags; | ||
| 878 | struct rcu_head *next, *list, **tail; | ||
| 879 | int count; | ||
| 880 | |||
| 881 | /* If no callbacks are ready, just return.*/ | ||
| 882 | if (!cpu_has_callbacks_ready_to_invoke(rdp)) | ||
| 883 | return; | ||
| 884 | |||
| 885 | /* | ||
| 886 | * Extract the list of ready callbacks, disabling to prevent | ||
| 887 | * races with call_rcu() from interrupt handlers. | ||
| 888 | */ | ||
| 889 | local_irq_save(flags); | ||
| 890 | list = rdp->nxtlist; | ||
| 891 | rdp->nxtlist = *rdp->nxttail[RCU_DONE_TAIL]; | ||
| 892 | *rdp->nxttail[RCU_DONE_TAIL] = NULL; | ||
| 893 | tail = rdp->nxttail[RCU_DONE_TAIL]; | ||
| 894 | for (count = RCU_NEXT_SIZE - 1; count >= 0; count--) | ||
| 895 | if (rdp->nxttail[count] == rdp->nxttail[RCU_DONE_TAIL]) | ||
| 896 | rdp->nxttail[count] = &rdp->nxtlist; | ||
| 897 | local_irq_restore(flags); | ||
| 898 | |||
| 899 | /* Invoke callbacks. */ | ||
| 900 | count = 0; | ||
| 901 | while (list) { | ||
| 902 | next = list->next; | ||
| 903 | prefetch(next); | ||
| 904 | list->func(list); | ||
| 905 | list = next; | ||
| 906 | if (++count >= rdp->blimit) | ||
| 907 | break; | ||
| 908 | } | ||
| 909 | |||
| 910 | local_irq_save(flags); | ||
| 911 | |||
| 912 | /* Update count, and requeue any remaining callbacks. */ | ||
| 913 | rdp->qlen -= count; | ||
| 914 | if (list != NULL) { | ||
| 915 | *tail = rdp->nxtlist; | ||
| 916 | rdp->nxtlist = list; | ||
| 917 | for (count = 0; count < RCU_NEXT_SIZE; count++) | ||
| 918 | if (&rdp->nxtlist == rdp->nxttail[count]) | ||
| 919 | rdp->nxttail[count] = tail; | ||
| 920 | else | ||
| 921 | break; | ||
| 922 | } | ||
| 923 | |||
| 924 | /* Reinstate batch limit if we have worked down the excess. */ | ||
| 925 | if (rdp->blimit == LONG_MAX && rdp->qlen <= qlowmark) | ||
| 926 | rdp->blimit = blimit; | ||
| 927 | |||
| 928 | local_irq_restore(flags); | ||
| 929 | |||
| 930 | /* Re-raise the RCU softirq if there are callbacks remaining. */ | ||
| 931 | if (cpu_has_callbacks_ready_to_invoke(rdp)) | ||
| 932 | raise_softirq(RCU_SOFTIRQ); | ||
| 933 | } | ||
| 934 | |||
| 935 | /* | ||
| 936 | * Check to see if this CPU is in a non-context-switch quiescent state | ||
| 937 | * (user mode or idle loop for rcu, non-softirq execution for rcu_bh). | ||
| 938 | * Also schedule the RCU softirq handler. | ||
| 939 | * | ||
| 940 | * This function must be called with hardirqs disabled. It is normally | ||
| 941 | * invoked from the scheduling-clock interrupt. If rcu_pending returns | ||
| 942 | * false, there is no point in invoking rcu_check_callbacks(). | ||
| 943 | */ | ||
| 944 | void rcu_check_callbacks(int cpu, int user) | ||
| 945 | { | ||
| 946 | if (user || | ||
| 947 | (idle_cpu(cpu) && !in_softirq() && | ||
| 948 | hardirq_count() <= (1 << HARDIRQ_SHIFT))) { | ||
| 949 | |||
| 950 | /* | ||
| 951 | * Get here if this CPU took its interrupt from user | ||
| 952 | * mode or from the idle loop, and if this is not a | ||
| 953 | * nested interrupt. In this case, the CPU is in | ||
| 954 | * a quiescent state, so count it. | ||
| 955 | * | ||
| 956 | * No memory barrier is required here because both | ||
| 957 | * rcu_qsctr_inc() and rcu_bh_qsctr_inc() reference | ||
| 958 | * only CPU-local variables that other CPUs neither | ||
| 959 | * access nor modify, at least not while the corresponding | ||
| 960 | * CPU is online. | ||
| 961 | */ | ||
| 962 | |||
| 963 | rcu_qsctr_inc(cpu); | ||
| 964 | rcu_bh_qsctr_inc(cpu); | ||
| 965 | |||
| 966 | } else if (!in_softirq()) { | ||
| 967 | |||
| 968 | /* | ||
| 969 | * Get here if this CPU did not take its interrupt from | ||
| 970 | * softirq, in other words, if it is not interrupting | ||
| 971 | * a rcu_bh read-side critical section. This is an _bh | ||
| 972 | * critical section, so count it. | ||
| 973 | */ | ||
| 974 | |||
| 975 | rcu_bh_qsctr_inc(cpu); | ||
| 976 | } | ||
| 977 | raise_softirq(RCU_SOFTIRQ); | ||
| 978 | } | ||
| 979 | |||
| 980 | #ifdef CONFIG_SMP | ||
| 981 | |||
| 982 | /* | ||
| 983 | * Scan the leaf rcu_node structures, processing dyntick state for any that | ||
| 984 | * have not yet encountered a quiescent state, using the function specified. | ||
| 985 | * Returns 1 if the current grace period ends while scanning (possibly | ||
| 986 | * because we made it end). | ||
| 987 | */ | ||
| 988 | static int rcu_process_dyntick(struct rcu_state *rsp, long lastcomp, | ||
| 989 | int (*f)(struct rcu_data *)) | ||
| 990 | { | ||
| 991 | unsigned long bit; | ||
| 992 | int cpu; | ||
| 993 | unsigned long flags; | ||
| 994 | unsigned long mask; | ||
| 995 | struct rcu_node *rnp_cur = rsp->level[NUM_RCU_LVLS - 1]; | ||
| 996 | struct rcu_node *rnp_end = &rsp->node[NUM_RCU_NODES]; | ||
| 997 | |||
| 998 | for (; rnp_cur < rnp_end; rnp_cur++) { | ||
| 999 | mask = 0; | ||
| 1000 | spin_lock_irqsave(&rnp_cur->lock, flags); | ||
| 1001 | if (rsp->completed != lastcomp) { | ||
| 1002 | spin_unlock_irqrestore(&rnp_cur->lock, flags); | ||
| 1003 | return 1; | ||
| 1004 | } | ||
| 1005 | if (rnp_cur->qsmask == 0) { | ||
| 1006 | spin_unlock_irqrestore(&rnp_cur->lock, flags); | ||
| 1007 | continue; | ||
| 1008 | } | ||
| 1009 | cpu = rnp_cur->grplo; | ||
| 1010 | bit = 1; | ||
| 1011 | for (; cpu <= rnp_cur->grphi; cpu++, bit <<= 1) { | ||
| 1012 | if ((rnp_cur->qsmask & bit) != 0 && f(rsp->rda[cpu])) | ||
| 1013 | mask |= bit; | ||
| 1014 | } | ||
| 1015 | if (mask != 0 && rsp->completed == lastcomp) { | ||
| 1016 | |||
| 1017 | /* cpu_quiet_msk() releases rnp_cur->lock. */ | ||
| 1018 | cpu_quiet_msk(mask, rsp, rnp_cur, flags); | ||
| 1019 | continue; | ||
| 1020 | } | ||
| 1021 | spin_unlock_irqrestore(&rnp_cur->lock, flags); | ||
| 1022 | } | ||
| 1023 | return 0; | ||
| 1024 | } | ||
| 1025 | |||
| 1026 | /* | ||
| 1027 | * Force quiescent states on reluctant CPUs, and also detect which | ||
| 1028 | * CPUs are in dyntick-idle mode. | ||
| 1029 | */ | ||
| 1030 | static void force_quiescent_state(struct rcu_state *rsp, int relaxed) | ||
| 1031 | { | ||
| 1032 | unsigned long flags; | ||
| 1033 | long lastcomp; | ||
| 1034 | struct rcu_data *rdp = rsp->rda[smp_processor_id()]; | ||
| 1035 | struct rcu_node *rnp = rcu_get_root(rsp); | ||
| 1036 | u8 signaled; | ||
| 1037 | |||
| 1038 | if (ACCESS_ONCE(rsp->completed) == ACCESS_ONCE(rsp->gpnum)) | ||
| 1039 | return; /* No grace period in progress, nothing to force. */ | ||
| 1040 | if (!spin_trylock_irqsave(&rsp->fqslock, flags)) { | ||
| 1041 | rsp->n_force_qs_lh++; /* Inexact, can lose counts. Tough! */ | ||
| 1042 | return; /* Someone else is already on the job. */ | ||
| 1043 | } | ||
| 1044 | if (relaxed && | ||
| 1045 | (long)(rsp->jiffies_force_qs - jiffies) >= 0 && | ||
| 1046 | (rdp->n_rcu_pending_force_qs - rdp->n_rcu_pending) >= 0) | ||
| 1047 | goto unlock_ret; /* no emergency and done recently. */ | ||
| 1048 | rsp->n_force_qs++; | ||
| 1049 | spin_lock(&rnp->lock); | ||
| 1050 | lastcomp = rsp->completed; | ||
| 1051 | signaled = rsp->signaled; | ||
| 1052 | rsp->jiffies_force_qs = jiffies + RCU_JIFFIES_TILL_FORCE_QS; | ||
| 1053 | rdp->n_rcu_pending_force_qs = rdp->n_rcu_pending + | ||
| 1054 | RCU_JIFFIES_TILL_FORCE_QS; | ||
| 1055 | if (lastcomp == rsp->gpnum) { | ||
| 1056 | rsp->n_force_qs_ngp++; | ||
| 1057 | spin_unlock(&rnp->lock); | ||
| 1058 | goto unlock_ret; /* no GP in progress, time updated. */ | ||
| 1059 | } | ||
| 1060 | spin_unlock(&rnp->lock); | ||
| 1061 | switch (signaled) { | ||
| 1062 | case RCU_GP_INIT: | ||
| 1063 | |||
| 1064 | break; /* grace period still initializing, ignore. */ | ||
| 1065 | |||
| 1066 | case RCU_SAVE_DYNTICK: | ||
| 1067 | |||
| 1068 | if (RCU_SIGNAL_INIT != RCU_SAVE_DYNTICK) | ||
| 1069 | break; /* So gcc recognizes the dead code. */ | ||
| 1070 | |||
| 1071 | /* Record dyntick-idle state. */ | ||
| 1072 | if (rcu_process_dyntick(rsp, lastcomp, | ||
| 1073 | dyntick_save_progress_counter)) | ||
| 1074 | goto unlock_ret; | ||
| 1075 | |||
| 1076 | /* Update state, record completion counter. */ | ||
| 1077 | spin_lock(&rnp->lock); | ||
| 1078 | if (lastcomp == rsp->completed) { | ||
| 1079 | rsp->signaled = RCU_FORCE_QS; | ||
| 1080 | dyntick_record_completed(rsp, lastcomp); | ||
| 1081 | } | ||
| 1082 | spin_unlock(&rnp->lock); | ||
| 1083 | break; | ||
| 1084 | |||
| 1085 | case RCU_FORCE_QS: | ||
| 1086 | |||
| 1087 | /* Check dyntick-idle state, send IPI to laggarts. */ | ||
| 1088 | if (rcu_process_dyntick(rsp, dyntick_recall_completed(rsp), | ||
| 1089 | rcu_implicit_dynticks_qs)) | ||
| 1090 | goto unlock_ret; | ||
| 1091 | |||
| 1092 | /* Leave state in case more forcing is required. */ | ||
| 1093 | |||
| 1094 | break; | ||
| 1095 | } | ||
| 1096 | unlock_ret: | ||
| 1097 | spin_unlock_irqrestore(&rsp->fqslock, flags); | ||
| 1098 | } | ||
| 1099 | |||
| 1100 | #else /* #ifdef CONFIG_SMP */ | ||
| 1101 | |||
| 1102 | static void force_quiescent_state(struct rcu_state *rsp, int relaxed) | ||
| 1103 | { | ||
| 1104 | set_need_resched(); | ||
| 1105 | } | ||
| 1106 | |||
| 1107 | #endif /* #else #ifdef CONFIG_SMP */ | ||
| 1108 | |||
| 1109 | /* | ||
| 1110 | * This does the RCU processing work from softirq context for the | ||
| 1111 | * specified rcu_state and rcu_data structures. This may be called | ||
| 1112 | * only from the CPU to whom the rdp belongs. | ||
| 1113 | */ | ||
| 1114 | static void | ||
| 1115 | __rcu_process_callbacks(struct rcu_state *rsp, struct rcu_data *rdp) | ||
| 1116 | { | ||
| 1117 | unsigned long flags; | ||
| 1118 | |||
| 1119 | /* | ||
| 1120 | * If an RCU GP has gone long enough, go check for dyntick | ||
| 1121 | * idle CPUs and, if needed, send resched IPIs. | ||
| 1122 | */ | ||
| 1123 | if ((long)(ACCESS_ONCE(rsp->jiffies_force_qs) - jiffies) < 0 || | ||
| 1124 | (rdp->n_rcu_pending_force_qs - rdp->n_rcu_pending) < 0) | ||
| 1125 | force_quiescent_state(rsp, 1); | ||
| 1126 | |||
| 1127 | /* | ||
| 1128 | * Advance callbacks in response to end of earlier grace | ||
| 1129 | * period that some other CPU ended. | ||
| 1130 | */ | ||
| 1131 | rcu_process_gp_end(rsp, rdp); | ||
| 1132 | |||
| 1133 | /* Update RCU state based on any recent quiescent states. */ | ||
| 1134 | rcu_check_quiescent_state(rsp, rdp); | ||
| 1135 | |||
| 1136 | /* Does this CPU require a not-yet-started grace period? */ | ||
| 1137 | if (cpu_needs_another_gp(rsp, rdp)) { | ||
| 1138 | spin_lock_irqsave(&rcu_get_root(rsp)->lock, flags); | ||
| 1139 | rcu_start_gp(rsp, flags); /* releases above lock */ | ||
| 1140 | } | ||
| 1141 | |||
| 1142 | /* If there are callbacks ready, invoke them. */ | ||
| 1143 | rcu_do_batch(rdp); | ||
| 1144 | } | ||
| 1145 | |||
| 1146 | /* | ||
| 1147 | * Do softirq processing for the current CPU. | ||
| 1148 | */ | ||
| 1149 | static void rcu_process_callbacks(struct softirq_action *unused) | ||
| 1150 | { | ||
| 1151 | /* | ||
| 1152 | * Memory references from any prior RCU read-side critical sections | ||
| 1153 | * executed by the interrupted code must be seen before any RCU | ||
| 1154 | * grace-period manipulations below. | ||
| 1155 | */ | ||
| 1156 | smp_mb(); /* See above block comment. */ | ||
| 1157 | |||
| 1158 | __rcu_process_callbacks(&rcu_state, &__get_cpu_var(rcu_data)); | ||
| 1159 | __rcu_process_callbacks(&rcu_bh_state, &__get_cpu_var(rcu_bh_data)); | ||
| 1160 | |||
| 1161 | /* | ||
| 1162 | * Memory references from any later RCU read-side critical sections | ||
| 1163 | * executed by the interrupted code must be seen after any RCU | ||
| 1164 | * grace-period manipulations above. | ||
| 1165 | */ | ||
| 1166 | smp_mb(); /* See above block comment. */ | ||
| 1167 | } | ||
| 1168 | |||
| 1169 | static void | ||
| 1170 | __call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu), | ||
| 1171 | struct rcu_state *rsp) | ||
| 1172 | { | ||
| 1173 | unsigned long flags; | ||
| 1174 | struct rcu_data *rdp; | ||
| 1175 | |||
| 1176 | head->func = func; | ||
| 1177 | head->next = NULL; | ||
| 1178 | |||
| 1179 | smp_mb(); /* Ensure RCU update seen before callback registry. */ | ||
| 1180 | |||
| 1181 | /* | ||
| 1182 | * Opportunistically note grace-period endings and beginnings. | ||
| 1183 | * Note that we might see a beginning right after we see an | ||
| 1184 | * end, but never vice versa, since this CPU has to pass through | ||
| 1185 | * a quiescent state betweentimes. | ||
| 1186 | */ | ||
| 1187 | local_irq_save(flags); | ||
| 1188 | rdp = rsp->rda[smp_processor_id()]; | ||
| 1189 | rcu_process_gp_end(rsp, rdp); | ||
| 1190 | check_for_new_grace_period(rsp, rdp); | ||
| 1191 | |||
| 1192 | /* Add the callback to our list. */ | ||
| 1193 | *rdp->nxttail[RCU_NEXT_TAIL] = head; | ||
| 1194 | rdp->nxttail[RCU_NEXT_TAIL] = &head->next; | ||
| 1195 | |||
| 1196 | /* Start a new grace period if one not already started. */ | ||
| 1197 | if (ACCESS_ONCE(rsp->completed) == ACCESS_ONCE(rsp->gpnum)) { | ||
| 1198 | unsigned long nestflag; | ||
| 1199 | struct rcu_node *rnp_root = rcu_get_root(rsp); | ||
| 1200 | |||
| 1201 | spin_lock_irqsave(&rnp_root->lock, nestflag); | ||
| 1202 | rcu_start_gp(rsp, nestflag); /* releases rnp_root->lock. */ | ||
| 1203 | } | ||
| 1204 | |||
| 1205 | /* Force the grace period if too many callbacks or too long waiting. */ | ||
| 1206 | if (unlikely(++rdp->qlen > qhimark)) { | ||
| 1207 | rdp->blimit = LONG_MAX; | ||
| 1208 | force_quiescent_state(rsp, 0); | ||
| 1209 | } else if ((long)(ACCESS_ONCE(rsp->jiffies_force_qs) - jiffies) < 0 || | ||
| 1210 | (rdp->n_rcu_pending_force_qs - rdp->n_rcu_pending) < 0) | ||
| 1211 | force_quiescent_state(rsp, 1); | ||
| 1212 | local_irq_restore(flags); | ||
| 1213 | } | ||
| 1214 | |||
| 1215 | /* | ||
| 1216 | * Queue an RCU callback for invocation after a grace period. | ||
| 1217 | */ | ||
| 1218 | void call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu)) | ||
| 1219 | { | ||
| 1220 | __call_rcu(head, func, &rcu_state); | ||
| 1221 | } | ||
| 1222 | EXPORT_SYMBOL_GPL(call_rcu); | ||
| 1223 | |||
| 1224 | /* | ||
| 1225 | * Queue an RCU for invocation after a quicker grace period. | ||
| 1226 | */ | ||
| 1227 | void call_rcu_bh(struct rcu_head *head, void (*func)(struct rcu_head *rcu)) | ||
| 1228 | { | ||
| 1229 | __call_rcu(head, func, &rcu_bh_state); | ||
| 1230 | } | ||
| 1231 | EXPORT_SYMBOL_GPL(call_rcu_bh); | ||
| 1232 | |||
| 1233 | /* | ||
| 1234 | * Check to see if there is any immediate RCU-related work to be done | ||
| 1235 | * by the current CPU, for the specified type of RCU, returning 1 if so. | ||
| 1236 | * The checks are in order of increasing expense: checks that can be | ||
| 1237 | * carried out against CPU-local state are performed first. However, | ||
| 1238 | * we must check for CPU stalls first, else we might not get a chance. | ||
| 1239 | */ | ||
| 1240 | static int __rcu_pending(struct rcu_state *rsp, struct rcu_data *rdp) | ||
| 1241 | { | ||
| 1242 | rdp->n_rcu_pending++; | ||
| 1243 | |||
| 1244 | /* Check for CPU stalls, if enabled. */ | ||
| 1245 | check_cpu_stall(rsp, rdp); | ||
| 1246 | |||
| 1247 | /* Is the RCU core waiting for a quiescent state from this CPU? */ | ||
| 1248 | if (rdp->qs_pending) | ||
| 1249 | return 1; | ||
| 1250 | |||
| 1251 | /* Does this CPU have callbacks ready to invoke? */ | ||
| 1252 | if (cpu_has_callbacks_ready_to_invoke(rdp)) | ||
| 1253 | return 1; | ||
| 1254 | |||
| 1255 | /* Has RCU gone idle with this CPU needing another grace period? */ | ||
| 1256 | if (cpu_needs_another_gp(rsp, rdp)) | ||
| 1257 | return 1; | ||
| 1258 | |||
| 1259 | /* Has another RCU grace period completed? */ | ||
| 1260 | if (ACCESS_ONCE(rsp->completed) != rdp->completed) /* outside of lock */ | ||
| 1261 | return 1; | ||
| 1262 | |||
| 1263 | /* Has a new RCU grace period started? */ | ||
| 1264 | if (ACCESS_ONCE(rsp->gpnum) != rdp->gpnum) /* outside of lock */ | ||
| 1265 | return 1; | ||
| 1266 | |||
| 1267 | /* Has an RCU GP gone long enough to send resched IPIs &c? */ | ||
| 1268 | if (ACCESS_ONCE(rsp->completed) != ACCESS_ONCE(rsp->gpnum) && | ||
| 1269 | ((long)(ACCESS_ONCE(rsp->jiffies_force_qs) - jiffies) < 0 || | ||
| 1270 | (rdp->n_rcu_pending_force_qs - rdp->n_rcu_pending) < 0)) | ||
| 1271 | return 1; | ||
| 1272 | |||
| 1273 | /* nothing to do */ | ||
| 1274 | return 0; | ||
| 1275 | } | ||
| 1276 | |||
| 1277 | /* | ||
| 1278 | * Check to see if there is any immediate RCU-related work to be done | ||
| 1279 | * by the current CPU, returning 1 if so. This function is part of the | ||
| 1280 | * RCU implementation; it is -not- an exported member of the RCU API. | ||
| 1281 | */ | ||
| 1282 | int rcu_pending(int cpu) | ||
| 1283 | { | ||
| 1284 | return __rcu_pending(&rcu_state, &per_cpu(rcu_data, cpu)) || | ||
| 1285 | __rcu_pending(&rcu_bh_state, &per_cpu(rcu_bh_data, cpu)); | ||
| 1286 | } | ||
| 1287 | |||
| 1288 | /* | ||
| 1289 | * Check to see if any future RCU-related work will need to be done | ||
| 1290 | * by the current CPU, even if none need be done immediately, returning | ||
| 1291 | * 1 if so. This function is part of the RCU implementation; it is -not- | ||
| 1292 | * an exported member of the RCU API. | ||
| 1293 | */ | ||
| 1294 | int rcu_needs_cpu(int cpu) | ||
| 1295 | { | ||
| 1296 | /* RCU callbacks either ready or pending? */ | ||
| 1297 | return per_cpu(rcu_data, cpu).nxtlist || | ||
| 1298 | per_cpu(rcu_bh_data, cpu).nxtlist; | ||
| 1299 | } | ||
| 1300 | |||
| 1301 | /* | ||
| 1302 | * Initialize a CPU's per-CPU RCU data. We take this "scorched earth" | ||
| 1303 | * approach so that we don't have to worry about how long the CPU has | ||
| 1304 | * been gone, or whether it ever was online previously. We do trust the | ||
| 1305 | * ->mynode field, as it is constant for a given struct rcu_data and | ||
| 1306 | * initialized during early boot. | ||
| 1307 | * | ||
| 1308 | * Note that only one online or offline event can be happening at a given | ||
| 1309 | * time. Note also that we can accept some slop in the rsp->completed | ||
| 1310 | * access due to the fact that this CPU cannot possibly have any RCU | ||
| 1311 | * callbacks in flight yet. | ||
| 1312 | */ | ||
| 1313 | static void | ||
| 1314 | rcu_init_percpu_data(int cpu, struct rcu_state *rsp) | ||
| 1315 | { | ||
| 1316 | unsigned long flags; | ||
| 1317 | int i; | ||
| 1318 | long lastcomp; | ||
| 1319 | unsigned long mask; | ||
| 1320 | struct rcu_data *rdp = rsp->rda[cpu]; | ||
| 1321 | struct rcu_node *rnp = rcu_get_root(rsp); | ||
| 1322 | |||
| 1323 | /* Set up local state, ensuring consistent view of global state. */ | ||
| 1324 | spin_lock_irqsave(&rnp->lock, flags); | ||
| 1325 | lastcomp = rsp->completed; | ||
| 1326 | rdp->completed = lastcomp; | ||
| 1327 | rdp->gpnum = lastcomp; | ||
| 1328 | rdp->passed_quiesc = 0; /* We could be racing with new GP, */ | ||
| 1329 | rdp->qs_pending = 1; /* so set up to respond to current GP. */ | ||
| 1330 | rdp->beenonline = 1; /* We have now been online. */ | ||
| 1331 | rdp->passed_quiesc_completed = lastcomp - 1; | ||
| 1332 | rdp->grpmask = 1UL << (cpu - rdp->mynode->grplo); | ||
| 1333 | rdp->nxtlist = NULL; | ||
| 1334 | for (i = 0; i < RCU_NEXT_SIZE; i++) | ||
| 1335 | rdp->nxttail[i] = &rdp->nxtlist; | ||
| 1336 | rdp->qlen = 0; | ||
| 1337 | rdp->blimit = blimit; | ||
| 1338 | #ifdef CONFIG_NO_HZ | ||
| 1339 | rdp->dynticks = &per_cpu(rcu_dynticks, cpu); | ||
| 1340 | #endif /* #ifdef CONFIG_NO_HZ */ | ||
| 1341 | rdp->cpu = cpu; | ||
| 1342 | spin_unlock(&rnp->lock); /* irqs remain disabled. */ | ||
| 1343 | |||
| 1344 | /* | ||
| 1345 | * A new grace period might start here. If so, we won't be part | ||
| 1346 | * of it, but that is OK, as we are currently in a quiescent state. | ||
| 1347 | */ | ||
| 1348 | |||
| 1349 | /* Exclude any attempts to start a new GP on large systems. */ | ||
| 1350 | spin_lock(&rsp->onofflock); /* irqs already disabled. */ | ||
| 1351 | |||
| 1352 | /* Add CPU to rcu_node bitmasks. */ | ||
| 1353 | rnp = rdp->mynode; | ||
| 1354 | mask = rdp->grpmask; | ||
| 1355 | do { | ||
| 1356 | /* Exclude any attempts to start a new GP on small systems. */ | ||
| 1357 | spin_lock(&rnp->lock); /* irqs already disabled. */ | ||
| 1358 | rnp->qsmaskinit |= mask; | ||
| 1359 | mask = rnp->grpmask; | ||
| 1360 | spin_unlock(&rnp->lock); /* irqs already disabled. */ | ||
| 1361 | rnp = rnp->parent; | ||
| 1362 | } while (rnp != NULL && !(rnp->qsmaskinit & mask)); | ||
| 1363 | |||
| 1364 | spin_unlock(&rsp->onofflock); /* irqs remain disabled. */ | ||
| 1365 | |||
| 1366 | /* | ||
| 1367 | * A new grace period might start here. If so, we will be part of | ||
| 1368 | * it, and its gpnum will be greater than ours, so we will | ||
| 1369 | * participate. It is also possible for the gpnum to have been | ||
| 1370 | * incremented before this function was called, and the bitmasks | ||
| 1371 | * to not be filled out until now, in which case we will also | ||
| 1372 | * participate due to our gpnum being behind. | ||
| 1373 | */ | ||
| 1374 | |||
| 1375 | /* Since it is coming online, the CPU is in a quiescent state. */ | ||
| 1376 | cpu_quiet(cpu, rsp, rdp, lastcomp); | ||
| 1377 | local_irq_restore(flags); | ||
| 1378 | } | ||
| 1379 | |||
| 1380 | static void __cpuinit rcu_online_cpu(int cpu) | ||
| 1381 | { | ||
| 1382 | #ifdef CONFIG_NO_HZ | ||
| 1383 | struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu); | ||
| 1384 | |||
| 1385 | rdtp->dynticks_nesting = 1; | ||
| 1386 | rdtp->dynticks |= 1; /* need consecutive #s even for hotplug. */ | ||
| 1387 | rdtp->dynticks_nmi = (rdtp->dynticks_nmi + 1) & ~0x1; | ||
| 1388 | #endif /* #ifdef CONFIG_NO_HZ */ | ||
| 1389 | rcu_init_percpu_data(cpu, &rcu_state); | ||
| 1390 | rcu_init_percpu_data(cpu, &rcu_bh_state); | ||
| 1391 | open_softirq(RCU_SOFTIRQ, rcu_process_callbacks); | ||
| 1392 | } | ||
| 1393 | |||
| 1394 | /* | ||
| 1395 | * Handle CPU online/offline notifcation events. | ||
| 1396 | */ | ||
| 1397 | static int __cpuinit rcu_cpu_notify(struct notifier_block *self, | ||
| 1398 | unsigned long action, void *hcpu) | ||
| 1399 | { | ||
| 1400 | long cpu = (long)hcpu; | ||
| 1401 | |||
| 1402 | switch (action) { | ||
| 1403 | case CPU_UP_PREPARE: | ||
| 1404 | case CPU_UP_PREPARE_FROZEN: | ||
| 1405 | rcu_online_cpu(cpu); | ||
| 1406 | break; | ||
| 1407 | case CPU_DEAD: | ||
| 1408 | case CPU_DEAD_FROZEN: | ||
| 1409 | case CPU_UP_CANCELED: | ||
| 1410 | case CPU_UP_CANCELED_FROZEN: | ||
| 1411 | rcu_offline_cpu(cpu); | ||
| 1412 | break; | ||
| 1413 | default: | ||
| 1414 | break; | ||
| 1415 | } | ||
| 1416 | return NOTIFY_OK; | ||
| 1417 | } | ||
| 1418 | |||
| 1419 | /* | ||
| 1420 | * Compute the per-level fanout, either using the exact fanout specified | ||
| 1421 | * or balancing the tree, depending on CONFIG_RCU_FANOUT_EXACT. | ||
| 1422 | */ | ||
| 1423 | #ifdef CONFIG_RCU_FANOUT_EXACT | ||
| 1424 | static void __init rcu_init_levelspread(struct rcu_state *rsp) | ||
| 1425 | { | ||
| 1426 | int i; | ||
| 1427 | |||
| 1428 | for (i = NUM_RCU_LVLS - 1; i >= 0; i--) | ||
| 1429 | rsp->levelspread[i] = CONFIG_RCU_FANOUT; | ||
| 1430 | } | ||
| 1431 | #else /* #ifdef CONFIG_RCU_FANOUT_EXACT */ | ||
| 1432 | static void __init rcu_init_levelspread(struct rcu_state *rsp) | ||
| 1433 | { | ||
| 1434 | int ccur; | ||
| 1435 | int cprv; | ||
| 1436 | int i; | ||
| 1437 | |||
| 1438 | cprv = NR_CPUS; | ||
| 1439 | for (i = NUM_RCU_LVLS - 1; i >= 0; i--) { | ||
| 1440 | ccur = rsp->levelcnt[i]; | ||
| 1441 | rsp->levelspread[i] = (cprv + ccur - 1) / ccur; | ||
| 1442 | cprv = ccur; | ||
| 1443 | } | ||
| 1444 | } | ||
| 1445 | #endif /* #else #ifdef CONFIG_RCU_FANOUT_EXACT */ | ||
| 1446 | |||
| 1447 | /* | ||
| 1448 | * Helper function for rcu_init() that initializes one rcu_state structure. | ||
| 1449 | */ | ||
| 1450 | static void __init rcu_init_one(struct rcu_state *rsp) | ||
| 1451 | { | ||
| 1452 | int cpustride = 1; | ||
| 1453 | int i; | ||
| 1454 | int j; | ||
| 1455 | struct rcu_node *rnp; | ||
| 1456 | |||
| 1457 | /* Initialize the level-tracking arrays. */ | ||
| 1458 | |||
| 1459 | for (i = 1; i < NUM_RCU_LVLS; i++) | ||
| 1460 | rsp->level[i] = rsp->level[i - 1] + rsp->levelcnt[i - 1]; | ||
| 1461 | rcu_init_levelspread(rsp); | ||
| 1462 | |||
| 1463 | /* Initialize the elements themselves, starting from the leaves. */ | ||
| 1464 | |||
| 1465 | for (i = NUM_RCU_LVLS - 1; i >= 0; i--) { | ||
| 1466 | cpustride *= rsp->levelspread[i]; | ||
| 1467 | rnp = rsp->level[i]; | ||
| 1468 | for (j = 0; j < rsp->levelcnt[i]; j++, rnp++) { | ||
| 1469 | spin_lock_init(&rnp->lock); | ||
| 1470 | rnp->qsmask = 0; | ||
| 1471 | rnp->qsmaskinit = 0; | ||
| 1472 | rnp->grplo = j * cpustride; | ||
| 1473 | rnp->grphi = (j + 1) * cpustride - 1; | ||
| 1474 | if (rnp->grphi >= NR_CPUS) | ||
| 1475 | rnp->grphi = NR_CPUS - 1; | ||
| 1476 | if (i == 0) { | ||
| 1477 | rnp->grpnum = 0; | ||
| 1478 | rnp->grpmask = 0; | ||
| 1479 | rnp->parent = NULL; | ||
| 1480 | } else { | ||
| 1481 | rnp->grpnum = j % rsp->levelspread[i - 1]; | ||
| 1482 | rnp->grpmask = 1UL << rnp->grpnum; | ||
| 1483 | rnp->parent = rsp->level[i - 1] + | ||
| 1484 | j / rsp->levelspread[i - 1]; | ||
| 1485 | } | ||
| 1486 | rnp->level = i; | ||
| 1487 | } | ||
| 1488 | } | ||
| 1489 | } | ||
| 1490 | |||
| 1491 | /* | ||
| 1492 | * Helper macro for __rcu_init(). To be used nowhere else! | ||
| 1493 | * Assigns leaf node pointers into each CPU's rcu_data structure. | ||
| 1494 | */ | ||
| 1495 | #define RCU_DATA_PTR_INIT(rsp, rcu_data) \ | ||
| 1496 | do { \ | ||
| 1497 | rnp = (rsp)->level[NUM_RCU_LVLS - 1]; \ | ||
| 1498 | j = 0; \ | ||
| 1499 | for_each_possible_cpu(i) { \ | ||
| 1500 | if (i > rnp[j].grphi) \ | ||
| 1501 | j++; \ | ||
| 1502 | per_cpu(rcu_data, i).mynode = &rnp[j]; \ | ||
| 1503 | (rsp)->rda[i] = &per_cpu(rcu_data, i); \ | ||
| 1504 | } \ | ||
| 1505 | } while (0) | ||
| 1506 | |||
| 1507 | static struct notifier_block __cpuinitdata rcu_nb = { | ||
| 1508 | .notifier_call = rcu_cpu_notify, | ||
| 1509 | }; | ||
| 1510 | |||
| 1511 | void __init __rcu_init(void) | ||
| 1512 | { | ||
| 1513 | int i; /* All used by RCU_DATA_PTR_INIT(). */ | ||
| 1514 | int j; | ||
| 1515 | struct rcu_node *rnp; | ||
| 1516 | |||
| 1517 | printk(KERN_WARNING "Experimental hierarchical RCU implementation.\n"); | ||
| 1518 | #ifdef CONFIG_RCU_CPU_STALL_DETECTOR | ||
| 1519 | printk(KERN_INFO "RCU-based detection of stalled CPUs is enabled.\n"); | ||
| 1520 | #endif /* #ifdef CONFIG_RCU_CPU_STALL_DETECTOR */ | ||
| 1521 | rcu_init_one(&rcu_state); | ||
| 1522 | RCU_DATA_PTR_INIT(&rcu_state, rcu_data); | ||
| 1523 | rcu_init_one(&rcu_bh_state); | ||
| 1524 | RCU_DATA_PTR_INIT(&rcu_bh_state, rcu_bh_data); | ||
| 1525 | |||
| 1526 | for_each_online_cpu(i) | ||
| 1527 | rcu_cpu_notify(&rcu_nb, CPU_UP_PREPARE, (void *)(long)i); | ||
| 1528 | /* Register notifier for non-boot CPUs */ | ||
| 1529 | register_cpu_notifier(&rcu_nb); | ||
| 1530 | printk(KERN_WARNING "Experimental hierarchical RCU init done.\n"); | ||
| 1531 | } | ||
| 1532 | |||
| 1533 | module_param(blimit, int, 0); | ||
| 1534 | module_param(qhimark, int, 0); | ||
| 1535 | module_param(qlowmark, int, 0); | ||
diff --git a/kernel/rcutree_trace.c b/kernel/rcutree_trace.c new file mode 100644 index 00000000000..d6db3e83782 --- /dev/null +++ b/kernel/rcutree_trace.c | |||
| @@ -0,0 +1,271 @@ | |||
| 1 | /* | ||
| 2 | * Read-Copy Update tracing for classic implementation | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
| 17 | * | ||
| 18 | * Copyright IBM Corporation, 2008 | ||
| 19 | * | ||
| 20 | * Papers: http://www.rdrop.com/users/paulmck/RCU | ||
| 21 | * | ||
| 22 | * For detailed explanation of Read-Copy Update mechanism see - | ||
| 23 | * Documentation/RCU | ||
| 24 | * | ||
| 25 | */ | ||
| 26 | #include <linux/types.h> | ||
| 27 | #include <linux/kernel.h> | ||
| 28 | #include <linux/init.h> | ||
| 29 | #include <linux/spinlock.h> | ||
| 30 | #include <linux/smp.h> | ||
| 31 | #include <linux/rcupdate.h> | ||
| 32 | #include <linux/interrupt.h> | ||
| 33 | #include <linux/sched.h> | ||
| 34 | #include <asm/atomic.h> | ||
| 35 | #include <linux/bitops.h> | ||
| 36 | #include <linux/module.h> | ||
| 37 | #include <linux/completion.h> | ||
| 38 | #include <linux/moduleparam.h> | ||
| 39 | #include <linux/percpu.h> | ||
| 40 | #include <linux/notifier.h> | ||
| 41 | #include <linux/cpu.h> | ||
| 42 | #include <linux/mutex.h> | ||
| 43 | #include <linux/debugfs.h> | ||
| 44 | #include <linux/seq_file.h> | ||
| 45 | |||
| 46 | static void print_one_rcu_data(struct seq_file *m, struct rcu_data *rdp) | ||
| 47 | { | ||
| 48 | if (!rdp->beenonline) | ||
| 49 | return; | ||
| 50 | seq_printf(m, "%3d%cc=%ld g=%ld pq=%d pqc=%ld qp=%d rpfq=%ld rp=%x", | ||
| 51 | rdp->cpu, | ||
| 52 | cpu_is_offline(rdp->cpu) ? '!' : ' ', | ||
| 53 | rdp->completed, rdp->gpnum, | ||
| 54 | rdp->passed_quiesc, rdp->passed_quiesc_completed, | ||
| 55 | rdp->qs_pending, | ||
| 56 | rdp->n_rcu_pending_force_qs - rdp->n_rcu_pending, | ||
| 57 | (int)(rdp->n_rcu_pending & 0xffff)); | ||
| 58 | #ifdef CONFIG_NO_HZ | ||
| 59 | seq_printf(m, " dt=%d/%d dn=%d df=%lu", | ||
| 60 | rdp->dynticks->dynticks, | ||
| 61 | rdp->dynticks->dynticks_nesting, | ||
| 62 | rdp->dynticks->dynticks_nmi, | ||
| 63 | rdp->dynticks_fqs); | ||
| 64 | #endif /* #ifdef CONFIG_NO_HZ */ | ||
| 65 | seq_printf(m, " of=%lu ri=%lu", rdp->offline_fqs, rdp->resched_ipi); | ||
| 66 | seq_printf(m, " ql=%ld b=%ld\n", rdp->qlen, rdp->blimit); | ||
| 67 | } | ||
| 68 | |||
| 69 | #define PRINT_RCU_DATA(name, func, m) \ | ||
| 70 | do { \ | ||
| 71 | int _p_r_d_i; \ | ||
| 72 | \ | ||
| 73 | for_each_possible_cpu(_p_r_d_i) \ | ||
| 74 | func(m, &per_cpu(name, _p_r_d_i)); \ | ||
| 75 | } while (0) | ||
| 76 | |||
| 77 | static int show_rcudata(struct seq_file *m, void *unused) | ||
| 78 | { | ||
| 79 | seq_puts(m, "rcu:\n"); | ||
| 80 | PRINT_RCU_DATA(rcu_data, print_one_rcu_data, m); | ||
| 81 | seq_puts(m, "rcu_bh:\n"); | ||
| 82 | PRINT_RCU_DATA(rcu_bh_data, print_one_rcu_data, m); | ||
| 83 | return 0; | ||
| 84 | } | ||
| 85 | |||
| 86 | static int rcudata_open(struct inode *inode, struct file *file) | ||
| 87 | { | ||
| 88 | return single_open(file, show_rcudata, NULL); | ||
| 89 | } | ||
| 90 | |||
| 91 | static struct file_operations rcudata_fops = { | ||
| 92 | .owner = THIS_MODULE, | ||
| 93 | .open = rcudata_open, | ||
| 94 | .read = seq_read, | ||
| 95 | .llseek = seq_lseek, | ||
| 96 | .release = single_release, | ||
| 97 | }; | ||
| 98 | |||
| 99 | static void print_one_rcu_data_csv(struct seq_file *m, struct rcu_data *rdp) | ||
| 100 | { | ||
| 101 | if (!rdp->beenonline) | ||
| 102 | return; | ||
| 103 | seq_printf(m, "%d,%s,%ld,%ld,%d,%ld,%d,%ld,%ld", | ||
| 104 | rdp->cpu, | ||
| 105 | cpu_is_offline(rdp->cpu) ? "\"Y\"" : "\"N\"", | ||
| 106 | rdp->completed, rdp->gpnum, | ||
| 107 | rdp->passed_quiesc, rdp->passed_quiesc_completed, | ||
| 108 | rdp->qs_pending, | ||
| 109 | rdp->n_rcu_pending_force_qs - rdp->n_rcu_pending, | ||
| 110 | rdp->n_rcu_pending); | ||
| 111 | #ifdef CONFIG_NO_HZ | ||
| 112 | seq_printf(m, ",%d,%d,%d,%lu", | ||
| 113 | rdp->dynticks->dynticks, | ||
| 114 | rdp->dynticks->dynticks_nesting, | ||
| 115 | rdp->dynticks->dynticks_nmi, | ||
| 116 | rdp->dynticks_fqs); | ||
| 117 | #endif /* #ifdef CONFIG_NO_HZ */ | ||
| 118 | seq_printf(m, ",%lu,%lu", rdp->offline_fqs, rdp->resched_ipi); | ||
| 119 | seq_printf(m, ",%ld,%ld\n", rdp->qlen, rdp->blimit); | ||
| 120 | } | ||
| 121 | |||
| 122 | static int show_rcudata_csv(struct seq_file *m, void *unused) | ||
| 123 | { | ||
| 124 | seq_puts(m, "\"CPU\",\"Online?\",\"c\",\"g\",\"pq\",\"pqc\",\"pq\",\"rpfq\",\"rp\","); | ||
| 125 | #ifdef CONFIG_NO_HZ | ||
| 126 | seq_puts(m, "\"dt\",\"dt nesting\",\"dn\",\"df\","); | ||
| 127 | #endif /* #ifdef CONFIG_NO_HZ */ | ||
| 128 | seq_puts(m, "\"of\",\"ri\",\"ql\",\"b\"\n"); | ||
| 129 | seq_puts(m, "\"rcu:\"\n"); | ||
| 130 | PRINT_RCU_DATA(rcu_data, print_one_rcu_data_csv, m); | ||
| 131 | seq_puts(m, "\"rcu_bh:\"\n"); | ||
| 132 | PRINT_RCU_DATA(rcu_bh_data, print_one_rcu_data_csv, m); | ||
| 133 | return 0; | ||
| 134 | } | ||
| 135 | |||
| 136 | static int rcudata_csv_open(struct inode *inode, struct file *file) | ||
| 137 | { | ||
| 138 | return single_open(file, show_rcudata_csv, NULL); | ||
| 139 | } | ||
| 140 | |||
| 141 | static struct file_operations rcudata_csv_fops = { | ||
| 142 | .owner = THIS_MODULE, | ||
| 143 | .open = rcudata_csv_open, | ||
| 144 | .read = seq_read, | ||
| 145 | .llseek = seq_lseek, | ||
| 146 | .release = single_release, | ||
| 147 | }; | ||
| 148 | |||
| 149 | static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp) | ||
| 150 | { | ||
| 151 | int level = 0; | ||
| 152 | struct rcu_node *rnp; | ||
| 153 | |||
| 154 | seq_printf(m, "c=%ld g=%ld s=%d jfq=%ld j=%x " | ||
| 155 | "nfqs=%lu/nfqsng=%lu(%lu) fqlh=%lu\n", | ||
| 156 | rsp->completed, rsp->gpnum, rsp->signaled, | ||
| 157 | (long)(rsp->jiffies_force_qs - jiffies), | ||
| 158 | (int)(jiffies & 0xffff), | ||
| 159 | rsp->n_force_qs, rsp->n_force_qs_ngp, | ||
| 160 | rsp->n_force_qs - rsp->n_force_qs_ngp, | ||
| 161 | rsp->n_force_qs_lh); | ||
| 162 | for (rnp = &rsp->node[0]; rnp - &rsp->node[0] < NUM_RCU_NODES; rnp++) { | ||
| 163 | if (rnp->level != level) { | ||
| 164 | seq_puts(m, "\n"); | ||
| 165 | level = rnp->level; | ||
| 166 | } | ||
| 167 | seq_printf(m, "%lx/%lx %d:%d ^%d ", | ||
| 168 | rnp->qsmask, rnp->qsmaskinit, | ||
| 169 | rnp->grplo, rnp->grphi, rnp->grpnum); | ||
| 170 | } | ||
| 171 | seq_puts(m, "\n"); | ||
| 172 | } | ||
| 173 | |||
| 174 | static int show_rcuhier(struct seq_file *m, void *unused) | ||
| 175 | { | ||
| 176 | seq_puts(m, "rcu:\n"); | ||
| 177 | print_one_rcu_state(m, &rcu_state); | ||
| 178 | seq_puts(m, "rcu_bh:\n"); | ||
| 179 | print_one_rcu_state(m, &rcu_bh_state); | ||
| 180 | return 0; | ||
| 181 | } | ||
| 182 | |||
| 183 | static int rcuhier_open(struct inode *inode, struct file *file) | ||
| 184 | { | ||
| 185 | return single_open(file, show_rcuhier, NULL); | ||
| 186 | } | ||
| 187 | |||
| 188 | static struct file_operations rcuhier_fops = { | ||
| 189 | .owner = THIS_MODULE, | ||
| 190 | .open = rcuhier_open, | ||
| 191 | .read = seq_read, | ||
| 192 | .llseek = seq_lseek, | ||
| 193 | .release = single_release, | ||
| 194 | }; | ||
| 195 | |||
| 196 | static int show_rcugp(struct seq_file *m, void *unused) | ||
| 197 | { | ||
| 198 | seq_printf(m, "rcu: completed=%ld gpnum=%ld\n", | ||
| 199 | rcu_state.completed, rcu_state.gpnum); | ||
| 200 | seq_printf(m, "rcu_bh: completed=%ld gpnum=%ld\n", | ||
| 201 | rcu_bh_state.completed, rcu_bh_state.gpnum); | ||
| 202 | return 0; | ||
| 203 | } | ||
| 204 | |||
| 205 | static int rcugp_open(struct inode *inode, struct file *file) | ||
| 206 | { | ||
| 207 | return single_open(file, show_rcugp, NULL); | ||
| 208 | } | ||
| 209 | |||
| 210 | static struct file_operations rcugp_fops = { | ||
| 211 | .owner = THIS_MODULE, | ||
| 212 | .open = rcugp_open, | ||
| 213 | .read = seq_read, | ||
| 214 | .llseek = seq_lseek, | ||
| 215 | .release = single_release, | ||
| 216 | }; | ||
| 217 | |||
| 218 | static struct dentry *rcudir, *datadir, *datadir_csv, *hierdir, *gpdir; | ||
| 219 | static int __init rcuclassic_trace_init(void) | ||
| 220 | { | ||
| 221 | rcudir = debugfs_create_dir("rcu", NULL); | ||
| 222 | if (!rcudir) | ||
| 223 | goto out; | ||
| 224 | |||
| 225 | datadir = debugfs_create_file("rcudata", 0444, rcudir, | ||
| 226 | NULL, &rcudata_fops); | ||
| 227 | if (!datadir) | ||
| 228 | goto free_out; | ||
| 229 | |||
| 230 | datadir_csv = debugfs_create_file("rcudata.csv", 0444, rcudir, | ||
| 231 | NULL, &rcudata_csv_fops); | ||
| 232 | if (!datadir_csv) | ||
| 233 | goto free_out; | ||
| 234 | |||
| 235 | gpdir = debugfs_create_file("rcugp", 0444, rcudir, NULL, &rcugp_fops); | ||
| 236 | if (!gpdir) | ||
| 237 | goto free_out; | ||
| 238 | |||
| 239 | hierdir = debugfs_create_file("rcuhier", 0444, rcudir, | ||
| 240 | NULL, &rcuhier_fops); | ||
| 241 | if (!hierdir) | ||
| 242 | goto free_out; | ||
| 243 | return 0; | ||
| 244 | free_out: | ||
| 245 | if (datadir) | ||
| 246 | debugfs_remove(datadir); | ||
| 247 | if (datadir_csv) | ||
| 248 | debugfs_remove(datadir_csv); | ||
| 249 | if (gpdir) | ||
| 250 | debugfs_remove(gpdir); | ||
| 251 | debugfs_remove(rcudir); | ||
| 252 | out: | ||
| 253 | return 1; | ||
| 254 | } | ||
| 255 | |||
| 256 | static void __exit rcuclassic_trace_cleanup(void) | ||
| 257 | { | ||
| 258 | debugfs_remove(datadir); | ||
| 259 | debugfs_remove(datadir_csv); | ||
| 260 | debugfs_remove(gpdir); | ||
| 261 | debugfs_remove(hierdir); | ||
| 262 | debugfs_remove(rcudir); | ||
| 263 | } | ||
| 264 | |||
| 265 | |||
| 266 | module_init(rcuclassic_trace_init); | ||
| 267 | module_exit(rcuclassic_trace_cleanup); | ||
| 268 | |||
| 269 | MODULE_AUTHOR("Paul E. McKenney"); | ||
| 270 | MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation"); | ||
| 271 | MODULE_LICENSE("GPL"); | ||
diff --git a/kernel/softirq.c b/kernel/softirq.c index e7c69a720d6..80d323e6f61 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c | |||
| @@ -269,6 +269,7 @@ void irq_enter(void) | |||
| 269 | { | 269 | { |
| 270 | int cpu = smp_processor_id(); | 270 | int cpu = smp_processor_id(); |
| 271 | 271 | ||
| 272 | rcu_irq_enter(); | ||
| 272 | if (idle_cpu(cpu) && !in_interrupt()) { | 273 | if (idle_cpu(cpu) && !in_interrupt()) { |
| 273 | __irq_enter(); | 274 | __irq_enter(); |
| 274 | tick_check_idle(cpu); | 275 | tick_check_idle(cpu); |
| @@ -295,9 +296,9 @@ void irq_exit(void) | |||
| 295 | 296 | ||
| 296 | #ifdef CONFIG_NO_HZ | 297 | #ifdef CONFIG_NO_HZ |
| 297 | /* Make sure that timer wheel updates are propagated */ | 298 | /* Make sure that timer wheel updates are propagated */ |
| 298 | if (!in_interrupt() && idle_cpu(smp_processor_id()) && !need_resched()) | ||
| 299 | tick_nohz_stop_sched_tick(0); | ||
| 300 | rcu_irq_exit(); | 299 | rcu_irq_exit(); |
| 300 | if (idle_cpu(smp_processor_id()) && !in_interrupt() && !need_resched()) | ||
| 301 | tick_nohz_stop_sched_tick(0); | ||
| 301 | #endif | 302 | #endif |
| 302 | preempt_enable_no_resched(); | 303 | preempt_enable_no_resched(); |
| 303 | } | 304 | } |
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index b0f239e443b..465d822f3f5 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
| @@ -619,6 +619,19 @@ config RCU_CPU_STALL_DETECTOR | |||
| 619 | 619 | ||
| 620 | Say N if you are unsure. | 620 | Say N if you are unsure. |
| 621 | 621 | ||
| 622 | config RCU_CPU_STALL_DETECTOR | ||
| 623 | bool "Check for stalled CPUs delaying RCU grace periods" | ||
| 624 | depends on CLASSIC_RCU || TREE_RCU | ||
| 625 | default n | ||
| 626 | help | ||
| 627 | This option causes RCU to printk information on which | ||
| 628 | CPUs are delaying the current grace period, but only when | ||
| 629 | the grace period extends for excessive time periods. | ||
| 630 | |||
| 631 | Say Y if you want RCU to perform such checks. | ||
| 632 | |||
| 633 | Say N if you are unsure. | ||
| 634 | |||
| 622 | config KPROBES_SANITY_TEST | 635 | config KPROBES_SANITY_TEST |
| 623 | bool "Kprobes sanity tests" | 636 | bool "Kprobes sanity tests" |
| 624 | depends on DEBUG_KERNEL | 637 | depends on DEBUG_KERNEL |
