rcutree.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554
  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. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  49. static struct lock_class_key rcu_lock_key;
  50. struct lockdep_map rcu_lock_map =
  51. STATIC_LOCKDEP_MAP_INIT("rcu_read_lock", &rcu_lock_key);
  52. EXPORT_SYMBOL_GPL(rcu_lock_map);
  53. #endif
  54. /* Data structures. */
  55. #define RCU_STATE_INITIALIZER(name) { \
  56. .level = { &name.node[0] }, \
  57. .levelcnt = { \
  58. NUM_RCU_LVL_0, /* root of hierarchy. */ \
  59. NUM_RCU_LVL_1, \
  60. NUM_RCU_LVL_2, \
  61. NUM_RCU_LVL_3, /* == MAX_RCU_LVLS */ \
  62. }, \
  63. .signaled = RCU_SIGNAL_INIT, \
  64. .gpnum = -300, \
  65. .completed = -300, \
  66. .onofflock = __SPIN_LOCK_UNLOCKED(&name.onofflock), \
  67. .fqslock = __SPIN_LOCK_UNLOCKED(&name.fqslock), \
  68. .n_force_qs = 0, \
  69. .n_force_qs_ngp = 0, \
  70. }
  71. struct rcu_state rcu_state = RCU_STATE_INITIALIZER(rcu_state);
  72. DEFINE_PER_CPU(struct rcu_data, rcu_data);
  73. struct rcu_state rcu_bh_state = RCU_STATE_INITIALIZER(rcu_bh_state);
  74. DEFINE_PER_CPU(struct rcu_data, rcu_bh_data);
  75. /*
  76. * Increment the quiescent state counter.
  77. * The counter is a bit degenerated: We do not need to know
  78. * how many quiescent states passed, just if there was at least
  79. * one since the start of the grace period. Thus just a flag.
  80. */
  81. void rcu_qsctr_inc(int cpu)
  82. {
  83. struct rcu_data *rdp = &per_cpu(rcu_data, cpu);
  84. rdp->passed_quiesc = 1;
  85. rdp->passed_quiesc_completed = rdp->completed;
  86. }
  87. void rcu_bh_qsctr_inc(int cpu)
  88. {
  89. struct rcu_data *rdp = &per_cpu(rcu_bh_data, cpu);
  90. rdp->passed_quiesc = 1;
  91. rdp->passed_quiesc_completed = rdp->completed;
  92. }
  93. #ifdef CONFIG_NO_HZ
  94. DEFINE_PER_CPU(struct rcu_dynticks, rcu_dynticks) = {
  95. .dynticks_nesting = 1,
  96. .dynticks = 1,
  97. };
  98. #endif /* #ifdef CONFIG_NO_HZ */
  99. static int blimit = 10; /* Maximum callbacks per softirq. */
  100. static int qhimark = 10000; /* If this many pending, ignore blimit. */
  101. static int qlowmark = 100; /* Once only this many pending, use blimit. */
  102. static void force_quiescent_state(struct rcu_state *rsp, int relaxed);
  103. /*
  104. * Return the number of RCU batches processed thus far for debug & stats.
  105. */
  106. long rcu_batches_completed(void)
  107. {
  108. return rcu_state.completed;
  109. }
  110. EXPORT_SYMBOL_GPL(rcu_batches_completed);
  111. /*
  112. * Return the number of RCU BH batches processed thus far for debug & stats.
  113. */
  114. long rcu_batches_completed_bh(void)
  115. {
  116. return rcu_bh_state.completed;
  117. }
  118. EXPORT_SYMBOL_GPL(rcu_batches_completed_bh);
  119. /*
  120. * Does the CPU have callbacks ready to be invoked?
  121. */
  122. static int
  123. cpu_has_callbacks_ready_to_invoke(struct rcu_data *rdp)
  124. {
  125. return &rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL];
  126. }
  127. /*
  128. * Does the current CPU require a yet-as-unscheduled grace period?
  129. */
  130. static int
  131. cpu_needs_another_gp(struct rcu_state *rsp, struct rcu_data *rdp)
  132. {
  133. /* ACCESS_ONCE() because we are accessing outside of lock. */
  134. return *rdp->nxttail[RCU_DONE_TAIL] &&
  135. ACCESS_ONCE(rsp->completed) == ACCESS_ONCE(rsp->gpnum);
  136. }
  137. /*
  138. * Return the root node of the specified rcu_state structure.
  139. */
  140. static struct rcu_node *rcu_get_root(struct rcu_state *rsp)
  141. {
  142. return &rsp->node[0];
  143. }
  144. #ifdef CONFIG_SMP
  145. /*
  146. * If the specified CPU is offline, tell the caller that it is in
  147. * a quiescent state. Otherwise, whack it with a reschedule IPI.
  148. * Grace periods can end up waiting on an offline CPU when that
  149. * CPU is in the process of coming online -- it will be added to the
  150. * rcu_node bitmasks before it actually makes it online. The same thing
  151. * can happen while a CPU is in the process of coming online. Because this
  152. * race is quite rare, we check for it after detecting that the grace
  153. * period has been delayed rather than checking each and every CPU
  154. * each and every time we start a new grace period.
  155. */
  156. static int rcu_implicit_offline_qs(struct rcu_data *rdp)
  157. {
  158. /*
  159. * If the CPU is offline, it is in a quiescent state. We can
  160. * trust its state not to change because interrupts are disabled.
  161. */
  162. if (cpu_is_offline(rdp->cpu)) {
  163. rdp->offline_fqs++;
  164. return 1;
  165. }
  166. /* The CPU is online, so send it a reschedule IPI. */
  167. if (rdp->cpu != smp_processor_id())
  168. smp_send_reschedule(rdp->cpu);
  169. else
  170. set_need_resched();
  171. rdp->resched_ipi++;
  172. return 0;
  173. }
  174. #endif /* #ifdef CONFIG_SMP */
  175. #ifdef CONFIG_NO_HZ
  176. static DEFINE_RATELIMIT_STATE(rcu_rs, 10 * HZ, 5);
  177. /**
  178. * rcu_enter_nohz - inform RCU that current CPU is entering nohz
  179. *
  180. * Enter nohz mode, in other words, -leave- the mode in which RCU
  181. * read-side critical sections can occur. (Though RCU read-side
  182. * critical sections can occur in irq handlers in nohz mode, a possibility
  183. * handled by rcu_irq_enter() and rcu_irq_exit()).
  184. */
  185. void rcu_enter_nohz(void)
  186. {
  187. unsigned long flags;
  188. struct rcu_dynticks *rdtp;
  189. smp_mb(); /* CPUs seeing ++ must see prior RCU read-side crit sects */
  190. local_irq_save(flags);
  191. rdtp = &__get_cpu_var(rcu_dynticks);
  192. rdtp->dynticks++;
  193. rdtp->dynticks_nesting--;
  194. WARN_ON_RATELIMIT(rdtp->dynticks & 0x1, &rcu_rs);
  195. local_irq_restore(flags);
  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. local_irq_save(flags);
  208. rdtp = &__get_cpu_var(rcu_dynticks);
  209. rdtp->dynticks++;
  210. rdtp->dynticks_nesting++;
  211. WARN_ON_RATELIMIT(!(rdtp->dynticks & 0x1), &rcu_rs);
  212. local_irq_restore(flags);
  213. smp_mb(); /* CPUs seeing ++ must see later RCU read-side crit sects */
  214. }
  215. /**
  216. * rcu_nmi_enter - inform RCU of entry to NMI context
  217. *
  218. * If the CPU was idle with dynamic ticks active, and there is no
  219. * irq handler running, this updates rdtp->dynticks_nmi to let the
  220. * RCU grace-period handling know that the CPU is active.
  221. */
  222. void rcu_nmi_enter(void)
  223. {
  224. struct rcu_dynticks *rdtp = &__get_cpu_var(rcu_dynticks);
  225. if (rdtp->dynticks & 0x1)
  226. return;
  227. rdtp->dynticks_nmi++;
  228. WARN_ON_RATELIMIT(!(rdtp->dynticks_nmi & 0x1), &rcu_rs);
  229. smp_mb(); /* CPUs seeing ++ must see later RCU read-side crit sects */
  230. }
  231. /**
  232. * rcu_nmi_exit - inform RCU of exit from NMI context
  233. *
  234. * If the CPU was idle with dynamic ticks active, and there is no
  235. * irq handler running, this updates rdtp->dynticks_nmi to let the
  236. * RCU grace-period handling know that the CPU is no longer active.
  237. */
  238. void rcu_nmi_exit(void)
  239. {
  240. struct rcu_dynticks *rdtp = &__get_cpu_var(rcu_dynticks);
  241. if (rdtp->dynticks & 0x1)
  242. return;
  243. smp_mb(); /* CPUs seeing ++ must see prior RCU read-side crit sects */
  244. rdtp->dynticks_nmi++;
  245. WARN_ON_RATELIMIT(rdtp->dynticks_nmi & 0x1, &rcu_rs);
  246. }
  247. /**
  248. * rcu_irq_enter - inform RCU of entry to hard irq context
  249. *
  250. * If the CPU was idle with dynamic ticks active, this updates the
  251. * rdtp->dynticks to let the RCU handling know that the CPU is active.
  252. */
  253. void rcu_irq_enter(void)
  254. {
  255. struct rcu_dynticks *rdtp = &__get_cpu_var(rcu_dynticks);
  256. if (rdtp->dynticks_nesting++)
  257. return;
  258. rdtp->dynticks++;
  259. WARN_ON_RATELIMIT(!(rdtp->dynticks & 0x1), &rcu_rs);
  260. smp_mb(); /* CPUs seeing ++ must see later RCU read-side crit sects */
  261. }
  262. /**
  263. * rcu_irq_exit - inform RCU of exit from hard irq context
  264. *
  265. * If the CPU was idle with dynamic ticks active, update the rdp->dynticks
  266. * to put let the RCU handling be aware that the CPU is going back to idle
  267. * with no ticks.
  268. */
  269. void rcu_irq_exit(void)
  270. {
  271. struct rcu_dynticks *rdtp = &__get_cpu_var(rcu_dynticks);
  272. if (--rdtp->dynticks_nesting)
  273. return;
  274. smp_mb(); /* CPUs seeing ++ must see prior RCU read-side crit sects */
  275. rdtp->dynticks++;
  276. WARN_ON_RATELIMIT(rdtp->dynticks & 0x1, &rcu_rs);
  277. /* If the interrupt queued a callback, get out of dyntick mode. */
  278. if (__get_cpu_var(rcu_data).nxtlist ||
  279. __get_cpu_var(rcu_bh_data).nxtlist)
  280. set_need_resched();
  281. }
  282. /*
  283. * Record the specified "completed" value, which is later used to validate
  284. * dynticks counter manipulations. Specify "rsp->completed - 1" to
  285. * unconditionally invalidate any future dynticks manipulations (which is
  286. * useful at the beginning of a grace period).
  287. */
  288. static void dyntick_record_completed(struct rcu_state *rsp, long comp)
  289. {
  290. rsp->dynticks_completed = comp;
  291. }
  292. #ifdef CONFIG_SMP
  293. /*
  294. * Recall the previously recorded value of the completion for dynticks.
  295. */
  296. static long dyntick_recall_completed(struct rcu_state *rsp)
  297. {
  298. return rsp->dynticks_completed;
  299. }
  300. /*
  301. * Snapshot the specified CPU's dynticks counter so that we can later
  302. * credit them with an implicit quiescent state. Return 1 if this CPU
  303. * is already in a quiescent state courtesy of dynticks idle mode.
  304. */
  305. static int dyntick_save_progress_counter(struct rcu_data *rdp)
  306. {
  307. int ret;
  308. int snap;
  309. int snap_nmi;
  310. snap = rdp->dynticks->dynticks;
  311. snap_nmi = rdp->dynticks->dynticks_nmi;
  312. smp_mb(); /* Order sampling of snap with end of grace period. */
  313. rdp->dynticks_snap = snap;
  314. rdp->dynticks_nmi_snap = snap_nmi;
  315. ret = ((snap & 0x1) == 0) && ((snap_nmi & 0x1) == 0);
  316. if (ret)
  317. rdp->dynticks_fqs++;
  318. return ret;
  319. }
  320. /*
  321. * Return true if the specified CPU has passed through a quiescent
  322. * state by virtue of being in or having passed through an dynticks
  323. * idle state since the last call to dyntick_save_progress_counter()
  324. * for this same CPU.
  325. */
  326. static int rcu_implicit_dynticks_qs(struct rcu_data *rdp)
  327. {
  328. long curr;
  329. long curr_nmi;
  330. long snap;
  331. long snap_nmi;
  332. curr = rdp->dynticks->dynticks;
  333. snap = rdp->dynticks_snap;
  334. curr_nmi = rdp->dynticks->dynticks_nmi;
  335. snap_nmi = rdp->dynticks_nmi_snap;
  336. smp_mb(); /* force ordering with cpu entering/leaving dynticks. */
  337. /*
  338. * If the CPU passed through or entered a dynticks idle phase with
  339. * no active irq/NMI handlers, then we can safely pretend that the CPU
  340. * already acknowledged the request to pass through a quiescent
  341. * state. Either way, that CPU cannot possibly be in an RCU
  342. * read-side critical section that started before the beginning
  343. * of the current RCU grace period.
  344. */
  345. if ((curr != snap || (curr & 0x1) == 0) &&
  346. (curr_nmi != snap_nmi || (curr_nmi & 0x1) == 0)) {
  347. rdp->dynticks_fqs++;
  348. return 1;
  349. }
  350. /* Go check for the CPU being offline. */
  351. return rcu_implicit_offline_qs(rdp);
  352. }
  353. #endif /* #ifdef CONFIG_SMP */
  354. #else /* #ifdef CONFIG_NO_HZ */
  355. static void dyntick_record_completed(struct rcu_state *rsp, long comp)
  356. {
  357. }
  358. #ifdef CONFIG_SMP
  359. /*
  360. * If there are no dynticks, then the only way that a CPU can passively
  361. * be in a quiescent state is to be offline. Unlike dynticks idle, which
  362. * is a point in time during the prior (already finished) grace period,
  363. * an offline CPU is always in a quiescent state, and thus can be
  364. * unconditionally applied. So just return the current value of completed.
  365. */
  366. static long dyntick_recall_completed(struct rcu_state *rsp)
  367. {
  368. return rsp->completed;
  369. }
  370. static int dyntick_save_progress_counter(struct rcu_data *rdp)
  371. {
  372. return 0;
  373. }
  374. static int rcu_implicit_dynticks_qs(struct rcu_data *rdp)
  375. {
  376. return rcu_implicit_offline_qs(rdp);
  377. }
  378. #endif /* #ifdef CONFIG_SMP */
  379. #endif /* #else #ifdef CONFIG_NO_HZ */
  380. #ifdef CONFIG_RCU_CPU_STALL_DETECTOR
  381. static void record_gp_stall_check_time(struct rcu_state *rsp)
  382. {
  383. rsp->gp_start = jiffies;
  384. rsp->jiffies_stall = jiffies + RCU_SECONDS_TILL_STALL_CHECK;
  385. }
  386. static void print_other_cpu_stall(struct rcu_state *rsp)
  387. {
  388. int cpu;
  389. long delta;
  390. unsigned long flags;
  391. struct rcu_node *rnp = rcu_get_root(rsp);
  392. struct rcu_node *rnp_cur = rsp->level[NUM_RCU_LVLS - 1];
  393. struct rcu_node *rnp_end = &rsp->node[NUM_RCU_NODES];
  394. /* Only let one CPU complain about others per time interval. */
  395. spin_lock_irqsave(&rnp->lock, flags);
  396. delta = jiffies - rsp->jiffies_stall;
  397. if (delta < RCU_STALL_RAT_DELAY || rsp->gpnum == rsp->completed) {
  398. spin_unlock_irqrestore(&rnp->lock, flags);
  399. return;
  400. }
  401. rsp->jiffies_stall = jiffies + RCU_SECONDS_TILL_STALL_RECHECK;
  402. spin_unlock_irqrestore(&rnp->lock, flags);
  403. /* OK, time to rat on our buddy... */
  404. printk(KERN_ERR "INFO: RCU detected CPU stalls:");
  405. for (; rnp_cur < rnp_end; rnp_cur++) {
  406. if (rnp_cur->qsmask == 0)
  407. continue;
  408. for (cpu = 0; cpu <= rnp_cur->grphi - rnp_cur->grplo; cpu++)
  409. if (rnp_cur->qsmask & (1UL << cpu))
  410. printk(" %d", rnp_cur->grplo + cpu);
  411. }
  412. printk(" (detected by %d, t=%ld jiffies)\n",
  413. smp_processor_id(), (long)(jiffies - rsp->gp_start));
  414. force_quiescent_state(rsp, 0); /* Kick them all. */
  415. }
  416. static void print_cpu_stall(struct rcu_state *rsp)
  417. {
  418. unsigned long flags;
  419. struct rcu_node *rnp = rcu_get_root(rsp);
  420. printk(KERN_ERR "INFO: RCU detected CPU %d stall (t=%lu jiffies)\n",
  421. smp_processor_id(), jiffies - rsp->gp_start);
  422. dump_stack();
  423. spin_lock_irqsave(&rnp->lock, flags);
  424. if ((long)(jiffies - rsp->jiffies_stall) >= 0)
  425. rsp->jiffies_stall =
  426. jiffies + RCU_SECONDS_TILL_STALL_RECHECK;
  427. spin_unlock_irqrestore(&rnp->lock, flags);
  428. set_need_resched(); /* kick ourselves to get things going. */
  429. }
  430. static void check_cpu_stall(struct rcu_state *rsp, struct rcu_data *rdp)
  431. {
  432. long delta;
  433. struct rcu_node *rnp;
  434. delta = jiffies - rsp->jiffies_stall;
  435. rnp = rdp->mynode;
  436. if ((rnp->qsmask & rdp->grpmask) && delta >= 0) {
  437. /* We haven't checked in, so go dump stack. */
  438. print_cpu_stall(rsp);
  439. } else if (rsp->gpnum != rsp->completed &&
  440. delta >= RCU_STALL_RAT_DELAY) {
  441. /* They had two time units to dump stack, so complain. */
  442. print_other_cpu_stall(rsp);
  443. }
  444. }
  445. #else /* #ifdef CONFIG_RCU_CPU_STALL_DETECTOR */
  446. static void record_gp_stall_check_time(struct rcu_state *rsp)
  447. {
  448. }
  449. static void check_cpu_stall(struct rcu_state *rsp, struct rcu_data *rdp)
  450. {
  451. }
  452. #endif /* #else #ifdef CONFIG_RCU_CPU_STALL_DETECTOR */
  453. /*
  454. * Update CPU-local rcu_data state to record the newly noticed grace period.
  455. * This is used both when we started the grace period and when we notice
  456. * that someone else started the grace period.
  457. */
  458. static void note_new_gpnum(struct rcu_state *rsp, struct rcu_data *rdp)
  459. {
  460. rdp->qs_pending = 1;
  461. rdp->passed_quiesc = 0;
  462. rdp->gpnum = rsp->gpnum;
  463. }
  464. /*
  465. * Did someone else start a new RCU grace period start since we last
  466. * checked? Update local state appropriately if so. Must be called
  467. * on the CPU corresponding to rdp.
  468. */
  469. static int
  470. check_for_new_grace_period(struct rcu_state *rsp, struct rcu_data *rdp)
  471. {
  472. unsigned long flags;
  473. int ret = 0;
  474. local_irq_save(flags);
  475. if (rdp->gpnum != rsp->gpnum) {
  476. note_new_gpnum(rsp, rdp);
  477. ret = 1;
  478. }
  479. local_irq_restore(flags);
  480. return ret;
  481. }
  482. /*
  483. * Start a new RCU grace period if warranted, re-initializing the hierarchy
  484. * in preparation for detecting the next grace period. The caller must hold
  485. * the root node's ->lock, which is released before return. Hard irqs must
  486. * be disabled.
  487. */
  488. static void
  489. rcu_start_gp(struct rcu_state *rsp, unsigned long flags)
  490. __releases(rcu_get_root(rsp)->lock)
  491. {
  492. struct rcu_data *rdp = rsp->rda[smp_processor_id()];
  493. struct rcu_node *rnp = rcu_get_root(rsp);
  494. struct rcu_node *rnp_cur;
  495. struct rcu_node *rnp_end;
  496. if (!cpu_needs_another_gp(rsp, rdp)) {
  497. spin_unlock_irqrestore(&rnp->lock, flags);
  498. return;
  499. }
  500. /* Advance to a new grace period and initialize state. */
  501. rsp->gpnum++;
  502. rsp->signaled = RCU_GP_INIT; /* Hold off force_quiescent_state. */
  503. rsp->jiffies_force_qs = jiffies + RCU_JIFFIES_TILL_FORCE_QS;
  504. record_gp_stall_check_time(rsp);
  505. dyntick_record_completed(rsp, rsp->completed - 1);
  506. note_new_gpnum(rsp, rdp);
  507. /*
  508. * Because we are first, we know that all our callbacks will
  509. * be covered by this upcoming grace period, even the ones
  510. * that were registered arbitrarily recently.
  511. */
  512. rdp->nxttail[RCU_NEXT_READY_TAIL] = rdp->nxttail[RCU_NEXT_TAIL];
  513. rdp->nxttail[RCU_WAIT_TAIL] = rdp->nxttail[RCU_NEXT_TAIL];
  514. /* Special-case the common single-level case. */
  515. if (NUM_RCU_NODES == 1) {
  516. rnp->qsmask = rnp->qsmaskinit;
  517. rsp->signaled = RCU_SIGNAL_INIT; /* force_quiescent_state OK. */
  518. spin_unlock_irqrestore(&rnp->lock, flags);
  519. return;
  520. }
  521. spin_unlock(&rnp->lock); /* leave irqs disabled. */
  522. /* Exclude any concurrent CPU-hotplug operations. */
  523. spin_lock(&rsp->onofflock); /* irqs already disabled. */
  524. /*
  525. * Set the quiescent-state-needed bits in all the non-leaf RCU
  526. * nodes for all currently online CPUs. This operation relies
  527. * on the layout of the hierarchy within the rsp->node[] array.
  528. * Note that other CPUs will access only the leaves of the
  529. * hierarchy, which still indicate that no grace period is in
  530. * progress. In addition, we have excluded CPU-hotplug operations.
  531. *
  532. * We therefore do not need to hold any locks. Any required
  533. * memory barriers will be supplied by the locks guarding the
  534. * leaf rcu_nodes in the hierarchy.
  535. */
  536. rnp_end = rsp->level[NUM_RCU_LVLS - 1];
  537. for (rnp_cur = &rsp->node[0]; rnp_cur < rnp_end; rnp_cur++)
  538. rnp_cur->qsmask = rnp_cur->qsmaskinit;
  539. /*
  540. * Now set up the leaf nodes. Here we must be careful. First,
  541. * we need to hold the lock in order to exclude other CPUs, which
  542. * might be contending for the leaf nodes' locks. Second, as
  543. * soon as we initialize a given leaf node, its CPUs might run
  544. * up the rest of the hierarchy. We must therefore acquire locks
  545. * for each node that we touch during this stage. (But we still
  546. * are excluding CPU-hotplug operations.)
  547. *
  548. * Note that the grace period cannot complete until we finish
  549. * the initialization process, as there will be at least one
  550. * qsmask bit set in the root node until that time, namely the
  551. * one corresponding to this CPU.
  552. */
  553. rnp_end = &rsp->node[NUM_RCU_NODES];
  554. rnp_cur = rsp->level[NUM_RCU_LVLS - 1];
  555. for (; rnp_cur < rnp_end; rnp_cur++) {
  556. spin_lock(&rnp_cur->lock); /* irqs already disabled. */
  557. rnp_cur->qsmask = rnp_cur->qsmaskinit;
  558. spin_unlock(&rnp_cur->lock); /* irqs already disabled. */
  559. }
  560. rsp->signaled = RCU_SIGNAL_INIT; /* force_quiescent_state now OK. */
  561. spin_unlock_irqrestore(&rsp->onofflock, flags);
  562. }
  563. /*
  564. * Advance this CPU's callbacks, but only if the current grace period
  565. * has ended. This may be called only from the CPU to whom the rdp
  566. * belongs.
  567. */
  568. static void
  569. rcu_process_gp_end(struct rcu_state *rsp, struct rcu_data *rdp)
  570. {
  571. long completed_snap;
  572. unsigned long flags;
  573. local_irq_save(flags);
  574. completed_snap = ACCESS_ONCE(rsp->completed); /* outside of lock. */
  575. /* Did another grace period end? */
  576. if (rdp->completed != completed_snap) {
  577. /* Advance callbacks. No harm if list empty. */
  578. rdp->nxttail[RCU_DONE_TAIL] = rdp->nxttail[RCU_WAIT_TAIL];
  579. rdp->nxttail[RCU_WAIT_TAIL] = rdp->nxttail[RCU_NEXT_READY_TAIL];
  580. rdp->nxttail[RCU_NEXT_READY_TAIL] = rdp->nxttail[RCU_NEXT_TAIL];
  581. /* Remember that we saw this grace-period completion. */
  582. rdp->completed = completed_snap;
  583. }
  584. local_irq_restore(flags);
  585. }
  586. /*
  587. * Similar to cpu_quiet(), for which it is a helper function. Allows
  588. * a group of CPUs to be quieted at one go, though all the CPUs in the
  589. * group must be represented by the same leaf rcu_node structure.
  590. * That structure's lock must be held upon entry, and it is released
  591. * before return.
  592. */
  593. static void
  594. cpu_quiet_msk(unsigned long mask, struct rcu_state *rsp, struct rcu_node *rnp,
  595. unsigned long flags)
  596. __releases(rnp->lock)
  597. {
  598. /* Walk up the rcu_node hierarchy. */
  599. for (;;) {
  600. if (!(rnp->qsmask & mask)) {
  601. /* Our bit has already been cleared, so done. */
  602. spin_unlock_irqrestore(&rnp->lock, flags);
  603. return;
  604. }
  605. rnp->qsmask &= ~mask;
  606. if (rnp->qsmask != 0) {
  607. /* Other bits still set at this level, so done. */
  608. spin_unlock_irqrestore(&rnp->lock, flags);
  609. return;
  610. }
  611. mask = rnp->grpmask;
  612. if (rnp->parent == NULL) {
  613. /* No more levels. Exit loop holding root lock. */
  614. break;
  615. }
  616. spin_unlock_irqrestore(&rnp->lock, flags);
  617. rnp = rnp->parent;
  618. spin_lock_irqsave(&rnp->lock, flags);
  619. }
  620. /*
  621. * Get here if we are the last CPU to pass through a quiescent
  622. * state for this grace period. Clean up and let rcu_start_gp()
  623. * start up the next grace period if one is needed. Note that
  624. * we still hold rnp->lock, as required by rcu_start_gp(), which
  625. * will release it.
  626. */
  627. rsp->completed = rsp->gpnum;
  628. rcu_process_gp_end(rsp, rsp->rda[smp_processor_id()]);
  629. rcu_start_gp(rsp, flags); /* releases rnp->lock. */
  630. }
  631. /*
  632. * Record a quiescent state for the specified CPU, which must either be
  633. * the current CPU or an offline CPU. The lastcomp argument is used to
  634. * make sure we are still in the grace period of interest. We don't want
  635. * to end the current grace period based on quiescent states detected in
  636. * an earlier grace period!
  637. */
  638. static void
  639. cpu_quiet(int cpu, struct rcu_state *rsp, struct rcu_data *rdp, long lastcomp)
  640. {
  641. unsigned long flags;
  642. unsigned long mask;
  643. struct rcu_node *rnp;
  644. rnp = rdp->mynode;
  645. spin_lock_irqsave(&rnp->lock, flags);
  646. if (lastcomp != ACCESS_ONCE(rsp->completed)) {
  647. /*
  648. * Someone beat us to it for this grace period, so leave.
  649. * The race with GP start is resolved by the fact that we
  650. * hold the leaf rcu_node lock, so that the per-CPU bits
  651. * cannot yet be initialized -- so we would simply find our
  652. * CPU's bit already cleared in cpu_quiet_msk() if this race
  653. * occurred.
  654. */
  655. rdp->passed_quiesc = 0; /* try again later! */
  656. spin_unlock_irqrestore(&rnp->lock, flags);
  657. return;
  658. }
  659. mask = rdp->grpmask;
  660. if ((rnp->qsmask & mask) == 0) {
  661. spin_unlock_irqrestore(&rnp->lock, flags);
  662. } else {
  663. rdp->qs_pending = 0;
  664. /*
  665. * This GP can't end until cpu checks in, so all of our
  666. * callbacks can be processed during the next GP.
  667. */
  668. rdp = rsp->rda[smp_processor_id()];
  669. rdp->nxttail[RCU_NEXT_READY_TAIL] = rdp->nxttail[RCU_NEXT_TAIL];
  670. cpu_quiet_msk(mask, rsp, rnp, flags); /* releases rnp->lock */
  671. }
  672. }
  673. /*
  674. * Check to see if there is a new grace period of which this CPU
  675. * is not yet aware, and if so, set up local rcu_data state for it.
  676. * Otherwise, see if this CPU has just passed through its first
  677. * quiescent state for this grace period, and record that fact if so.
  678. */
  679. static void
  680. rcu_check_quiescent_state(struct rcu_state *rsp, struct rcu_data *rdp)
  681. {
  682. /* If there is now a new grace period, record and return. */
  683. if (check_for_new_grace_period(rsp, rdp))
  684. return;
  685. /*
  686. * Does this CPU still need to do its part for current grace period?
  687. * If no, return and let the other CPUs do their part as well.
  688. */
  689. if (!rdp->qs_pending)
  690. return;
  691. /*
  692. * Was there a quiescent state since the beginning of the grace
  693. * period? If no, then exit and wait for the next call.
  694. */
  695. if (!rdp->passed_quiesc)
  696. return;
  697. /* Tell RCU we are done (but cpu_quiet() will be the judge of that). */
  698. cpu_quiet(rdp->cpu, rsp, rdp, rdp->passed_quiesc_completed);
  699. }
  700. #ifdef CONFIG_HOTPLUG_CPU
  701. /*
  702. * Remove the outgoing CPU from the bitmasks in the rcu_node hierarchy
  703. * and move all callbacks from the outgoing CPU to the current one.
  704. */
  705. static void __rcu_offline_cpu(int cpu, struct rcu_state *rsp)
  706. {
  707. int i;
  708. unsigned long flags;
  709. long lastcomp;
  710. unsigned long mask;
  711. struct rcu_data *rdp = rsp->rda[cpu];
  712. struct rcu_data *rdp_me;
  713. struct rcu_node *rnp;
  714. /* Exclude any attempts to start a new grace period. */
  715. spin_lock_irqsave(&rsp->onofflock, flags);
  716. /* Remove the outgoing CPU from the masks in the rcu_node hierarchy. */
  717. rnp = rdp->mynode;
  718. mask = rdp->grpmask; /* rnp->grplo is constant. */
  719. do {
  720. spin_lock(&rnp->lock); /* irqs already disabled. */
  721. rnp->qsmaskinit &= ~mask;
  722. if (rnp->qsmaskinit != 0) {
  723. spin_unlock(&rnp->lock); /* irqs already disabled. */
  724. break;
  725. }
  726. mask = rnp->grpmask;
  727. spin_unlock(&rnp->lock); /* irqs already disabled. */
  728. rnp = rnp->parent;
  729. } while (rnp != NULL);
  730. lastcomp = rsp->completed;
  731. spin_unlock(&rsp->onofflock); /* irqs remain disabled. */
  732. /* Being offline is a quiescent state, so go record it. */
  733. cpu_quiet(cpu, rsp, rdp, lastcomp);
  734. /*
  735. * Move callbacks from the outgoing CPU to the running CPU.
  736. * Note that the outgoing CPU is now quiscent, so it is now
  737. * (uncharacteristically) safe to access it rcu_data structure.
  738. * Note also that we must carefully retain the order of the
  739. * outgoing CPU's callbacks in order for rcu_barrier() to work
  740. * correctly. Finally, note that we start all the callbacks
  741. * afresh, even those that have passed through a grace period
  742. * and are therefore ready to invoke. The theory is that hotplug
  743. * events are rare, and that if they are frequent enough to
  744. * indefinitely delay callbacks, you have far worse things to
  745. * be worrying about.
  746. */
  747. rdp_me = rsp->rda[smp_processor_id()];
  748. if (rdp->nxtlist != NULL) {
  749. *rdp_me->nxttail[RCU_NEXT_TAIL] = rdp->nxtlist;
  750. rdp_me->nxttail[RCU_NEXT_TAIL] = rdp->nxttail[RCU_NEXT_TAIL];
  751. rdp->nxtlist = NULL;
  752. for (i = 0; i < RCU_NEXT_SIZE; i++)
  753. rdp->nxttail[i] = &rdp->nxtlist;
  754. rdp_me->qlen += rdp->qlen;
  755. rdp->qlen = 0;
  756. }
  757. local_irq_restore(flags);
  758. }
  759. /*
  760. * Remove the specified CPU from the RCU hierarchy and move any pending
  761. * callbacks that it might have to the current CPU. This code assumes
  762. * that at least one CPU in the system will remain running at all times.
  763. * Any attempt to offline -all- CPUs is likely to strand RCU callbacks.
  764. */
  765. static void rcu_offline_cpu(int cpu)
  766. {
  767. __rcu_offline_cpu(cpu, &rcu_state);
  768. __rcu_offline_cpu(cpu, &rcu_bh_state);
  769. }
  770. #else /* #ifdef CONFIG_HOTPLUG_CPU */
  771. static void rcu_offline_cpu(int cpu)
  772. {
  773. }
  774. #endif /* #else #ifdef CONFIG_HOTPLUG_CPU */
  775. /*
  776. * Invoke any RCU callbacks that have made it to the end of their grace
  777. * period. Thottle as specified by rdp->blimit.
  778. */
  779. static void rcu_do_batch(struct rcu_data *rdp)
  780. {
  781. unsigned long flags;
  782. struct rcu_head *next, *list, **tail;
  783. int count;
  784. /* If no callbacks are ready, just return.*/
  785. if (!cpu_has_callbacks_ready_to_invoke(rdp))
  786. return;
  787. /*
  788. * Extract the list of ready callbacks, disabling to prevent
  789. * races with call_rcu() from interrupt handlers.
  790. */
  791. local_irq_save(flags);
  792. list = rdp->nxtlist;
  793. rdp->nxtlist = *rdp->nxttail[RCU_DONE_TAIL];
  794. *rdp->nxttail[RCU_DONE_TAIL] = NULL;
  795. tail = rdp->nxttail[RCU_DONE_TAIL];
  796. for (count = RCU_NEXT_SIZE - 1; count >= 0; count--)
  797. if (rdp->nxttail[count] == rdp->nxttail[RCU_DONE_TAIL])
  798. rdp->nxttail[count] = &rdp->nxtlist;
  799. local_irq_restore(flags);
  800. /* Invoke callbacks. */
  801. count = 0;
  802. while (list) {
  803. next = list->next;
  804. prefetch(next);
  805. list->func(list);
  806. list = next;
  807. if (++count >= rdp->blimit)
  808. break;
  809. }
  810. local_irq_save(flags);
  811. /* Update count, and requeue any remaining callbacks. */
  812. rdp->qlen -= count;
  813. if (list != NULL) {
  814. *tail = rdp->nxtlist;
  815. rdp->nxtlist = list;
  816. for (count = 0; count < RCU_NEXT_SIZE; count++)
  817. if (&rdp->nxtlist == rdp->nxttail[count])
  818. rdp->nxttail[count] = tail;
  819. else
  820. break;
  821. }
  822. /* Reinstate batch limit if we have worked down the excess. */
  823. if (rdp->blimit == LONG_MAX && rdp->qlen <= qlowmark)
  824. rdp->blimit = blimit;
  825. local_irq_restore(flags);
  826. /* Re-raise the RCU softirq if there are callbacks remaining. */
  827. if (cpu_has_callbacks_ready_to_invoke(rdp))
  828. raise_softirq(RCU_SOFTIRQ);
  829. }
  830. /*
  831. * Check to see if this CPU is in a non-context-switch quiescent state
  832. * (user mode or idle loop for rcu, non-softirq execution for rcu_bh).
  833. * Also schedule the RCU softirq handler.
  834. *
  835. * This function must be called with hardirqs disabled. It is normally
  836. * invoked from the scheduling-clock interrupt. If rcu_pending returns
  837. * false, there is no point in invoking rcu_check_callbacks().
  838. */
  839. void rcu_check_callbacks(int cpu, int user)
  840. {
  841. if (user ||
  842. (idle_cpu(cpu) && rcu_scheduler_active &&
  843. !in_softirq() && hardirq_count() <= (1 << HARDIRQ_SHIFT))) {
  844. /*
  845. * Get here if this CPU took its interrupt from user
  846. * mode or from the idle loop, and if this is not a
  847. * nested interrupt. In this case, the CPU is in
  848. * a quiescent state, so count it.
  849. *
  850. * No memory barrier is required here because both
  851. * rcu_qsctr_inc() and rcu_bh_qsctr_inc() reference
  852. * only CPU-local variables that other CPUs neither
  853. * access nor modify, at least not while the corresponding
  854. * CPU is online.
  855. */
  856. rcu_qsctr_inc(cpu);
  857. rcu_bh_qsctr_inc(cpu);
  858. } else if (!in_softirq()) {
  859. /*
  860. * Get here if this CPU did not take its interrupt from
  861. * softirq, in other words, if it is not interrupting
  862. * a rcu_bh read-side critical section. This is an _bh
  863. * critical section, so count it.
  864. */
  865. rcu_bh_qsctr_inc(cpu);
  866. }
  867. raise_softirq(RCU_SOFTIRQ);
  868. }
  869. #ifdef CONFIG_SMP
  870. /*
  871. * Scan the leaf rcu_node structures, processing dyntick state for any that
  872. * have not yet encountered a quiescent state, using the function specified.
  873. * Returns 1 if the current grace period ends while scanning (possibly
  874. * because we made it end).
  875. */
  876. static int rcu_process_dyntick(struct rcu_state *rsp, long lastcomp,
  877. int (*f)(struct rcu_data *))
  878. {
  879. unsigned long bit;
  880. int cpu;
  881. unsigned long flags;
  882. unsigned long mask;
  883. struct rcu_node *rnp_cur = rsp->level[NUM_RCU_LVLS - 1];
  884. struct rcu_node *rnp_end = &rsp->node[NUM_RCU_NODES];
  885. for (; rnp_cur < rnp_end; rnp_cur++) {
  886. mask = 0;
  887. spin_lock_irqsave(&rnp_cur->lock, flags);
  888. if (rsp->completed != lastcomp) {
  889. spin_unlock_irqrestore(&rnp_cur->lock, flags);
  890. return 1;
  891. }
  892. if (rnp_cur->qsmask == 0) {
  893. spin_unlock_irqrestore(&rnp_cur->lock, flags);
  894. continue;
  895. }
  896. cpu = rnp_cur->grplo;
  897. bit = 1;
  898. for (; cpu <= rnp_cur->grphi; cpu++, bit <<= 1) {
  899. if ((rnp_cur->qsmask & bit) != 0 && f(rsp->rda[cpu]))
  900. mask |= bit;
  901. }
  902. if (mask != 0 && rsp->completed == lastcomp) {
  903. /* cpu_quiet_msk() releases rnp_cur->lock. */
  904. cpu_quiet_msk(mask, rsp, rnp_cur, flags);
  905. continue;
  906. }
  907. spin_unlock_irqrestore(&rnp_cur->lock, flags);
  908. }
  909. return 0;
  910. }
  911. /*
  912. * Force quiescent states on reluctant CPUs, and also detect which
  913. * CPUs are in dyntick-idle mode.
  914. */
  915. static void force_quiescent_state(struct rcu_state *rsp, int relaxed)
  916. {
  917. unsigned long flags;
  918. long lastcomp;
  919. struct rcu_node *rnp = rcu_get_root(rsp);
  920. u8 signaled;
  921. if (ACCESS_ONCE(rsp->completed) == ACCESS_ONCE(rsp->gpnum))
  922. return; /* No grace period in progress, nothing to force. */
  923. if (!spin_trylock_irqsave(&rsp->fqslock, flags)) {
  924. rsp->n_force_qs_lh++; /* Inexact, can lose counts. Tough! */
  925. return; /* Someone else is already on the job. */
  926. }
  927. if (relaxed &&
  928. (long)(rsp->jiffies_force_qs - jiffies) >= 0)
  929. goto unlock_ret; /* no emergency and done recently. */
  930. rsp->n_force_qs++;
  931. spin_lock(&rnp->lock);
  932. lastcomp = rsp->completed;
  933. signaled = rsp->signaled;
  934. rsp->jiffies_force_qs = jiffies + RCU_JIFFIES_TILL_FORCE_QS;
  935. if (lastcomp == rsp->gpnum) {
  936. rsp->n_force_qs_ngp++;
  937. spin_unlock(&rnp->lock);
  938. goto unlock_ret; /* no GP in progress, time updated. */
  939. }
  940. spin_unlock(&rnp->lock);
  941. switch (signaled) {
  942. case RCU_GP_INIT:
  943. break; /* grace period still initializing, ignore. */
  944. case RCU_SAVE_DYNTICK:
  945. if (RCU_SIGNAL_INIT != RCU_SAVE_DYNTICK)
  946. break; /* So gcc recognizes the dead code. */
  947. /* Record dyntick-idle state. */
  948. if (rcu_process_dyntick(rsp, lastcomp,
  949. dyntick_save_progress_counter))
  950. goto unlock_ret;
  951. /* Update state, record completion counter. */
  952. spin_lock(&rnp->lock);
  953. if (lastcomp == rsp->completed) {
  954. rsp->signaled = RCU_FORCE_QS;
  955. dyntick_record_completed(rsp, lastcomp);
  956. }
  957. spin_unlock(&rnp->lock);
  958. break;
  959. case RCU_FORCE_QS:
  960. /* Check dyntick-idle state, send IPI to laggarts. */
  961. if (rcu_process_dyntick(rsp, dyntick_recall_completed(rsp),
  962. rcu_implicit_dynticks_qs))
  963. goto unlock_ret;
  964. /* Leave state in case more forcing is required. */
  965. break;
  966. }
  967. unlock_ret:
  968. spin_unlock_irqrestore(&rsp->fqslock, flags);
  969. }
  970. #else /* #ifdef CONFIG_SMP */
  971. static void force_quiescent_state(struct rcu_state *rsp, int relaxed)
  972. {
  973. set_need_resched();
  974. }
  975. #endif /* #else #ifdef CONFIG_SMP */
  976. /*
  977. * This does the RCU processing work from softirq context for the
  978. * specified rcu_state and rcu_data structures. This may be called
  979. * only from the CPU to whom the rdp belongs.
  980. */
  981. static void
  982. __rcu_process_callbacks(struct rcu_state *rsp, struct rcu_data *rdp)
  983. {
  984. unsigned long flags;
  985. /*
  986. * If an RCU GP has gone long enough, go check for dyntick
  987. * idle CPUs and, if needed, send resched IPIs.
  988. */
  989. if ((long)(ACCESS_ONCE(rsp->jiffies_force_qs) - jiffies) < 0)
  990. force_quiescent_state(rsp, 1);
  991. /*
  992. * Advance callbacks in response to end of earlier grace
  993. * period that some other CPU ended.
  994. */
  995. rcu_process_gp_end(rsp, rdp);
  996. /* Update RCU state based on any recent quiescent states. */
  997. rcu_check_quiescent_state(rsp, rdp);
  998. /* Does this CPU require a not-yet-started grace period? */
  999. if (cpu_needs_another_gp(rsp, rdp)) {
  1000. spin_lock_irqsave(&rcu_get_root(rsp)->lock, flags);
  1001. rcu_start_gp(rsp, flags); /* releases above lock */
  1002. }
  1003. /* If there are callbacks ready, invoke them. */
  1004. rcu_do_batch(rdp);
  1005. }
  1006. /*
  1007. * Do softirq processing for the current CPU.
  1008. */
  1009. static void rcu_process_callbacks(struct softirq_action *unused)
  1010. {
  1011. /*
  1012. * Memory references from any prior RCU read-side critical sections
  1013. * executed by the interrupted code must be seen before any RCU
  1014. * grace-period manipulations below.
  1015. */
  1016. smp_mb(); /* See above block comment. */
  1017. __rcu_process_callbacks(&rcu_state, &__get_cpu_var(rcu_data));
  1018. __rcu_process_callbacks(&rcu_bh_state, &__get_cpu_var(rcu_bh_data));
  1019. /*
  1020. * Memory references from any later RCU read-side critical sections
  1021. * executed by the interrupted code must be seen after any RCU
  1022. * grace-period manipulations above.
  1023. */
  1024. smp_mb(); /* See above block comment. */
  1025. }
  1026. static void
  1027. __call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu),
  1028. struct rcu_state *rsp)
  1029. {
  1030. unsigned long flags;
  1031. struct rcu_data *rdp;
  1032. head->func = func;
  1033. head->next = NULL;
  1034. smp_mb(); /* Ensure RCU update seen before callback registry. */
  1035. /*
  1036. * Opportunistically note grace-period endings and beginnings.
  1037. * Note that we might see a beginning right after we see an
  1038. * end, but never vice versa, since this CPU has to pass through
  1039. * a quiescent state betweentimes.
  1040. */
  1041. local_irq_save(flags);
  1042. rdp = rsp->rda[smp_processor_id()];
  1043. rcu_process_gp_end(rsp, rdp);
  1044. check_for_new_grace_period(rsp, rdp);
  1045. /* Add the callback to our list. */
  1046. *rdp->nxttail[RCU_NEXT_TAIL] = head;
  1047. rdp->nxttail[RCU_NEXT_TAIL] = &head->next;
  1048. /* Start a new grace period if one not already started. */
  1049. if (ACCESS_ONCE(rsp->completed) == ACCESS_ONCE(rsp->gpnum)) {
  1050. unsigned long nestflag;
  1051. struct rcu_node *rnp_root = rcu_get_root(rsp);
  1052. spin_lock_irqsave(&rnp_root->lock, nestflag);
  1053. rcu_start_gp(rsp, nestflag); /* releases rnp_root->lock. */
  1054. }
  1055. /* Force the grace period if too many callbacks or too long waiting. */
  1056. if (unlikely(++rdp->qlen > qhimark)) {
  1057. rdp->blimit = LONG_MAX;
  1058. force_quiescent_state(rsp, 0);
  1059. } else if ((long)(ACCESS_ONCE(rsp->jiffies_force_qs) - jiffies) < 0)
  1060. force_quiescent_state(rsp, 1);
  1061. local_irq_restore(flags);
  1062. }
  1063. /*
  1064. * Queue an RCU callback for invocation after a grace period.
  1065. */
  1066. void call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu))
  1067. {
  1068. __call_rcu(head, func, &rcu_state);
  1069. }
  1070. EXPORT_SYMBOL_GPL(call_rcu);
  1071. /*
  1072. * Queue an RCU for invocation after a quicker grace period.
  1073. */
  1074. void call_rcu_bh(struct rcu_head *head, void (*func)(struct rcu_head *rcu))
  1075. {
  1076. __call_rcu(head, func, &rcu_bh_state);
  1077. }
  1078. EXPORT_SYMBOL_GPL(call_rcu_bh);
  1079. /*
  1080. * Check to see if there is any immediate RCU-related work to be done
  1081. * by the current CPU, for the specified type of RCU, returning 1 if so.
  1082. * The checks are in order of increasing expense: checks that can be
  1083. * carried out against CPU-local state are performed first. However,
  1084. * we must check for CPU stalls first, else we might not get a chance.
  1085. */
  1086. static int __rcu_pending(struct rcu_state *rsp, struct rcu_data *rdp)
  1087. {
  1088. rdp->n_rcu_pending++;
  1089. /* Check for CPU stalls, if enabled. */
  1090. check_cpu_stall(rsp, rdp);
  1091. /* Is the RCU core waiting for a quiescent state from this CPU? */
  1092. if (rdp->qs_pending) {
  1093. rdp->n_rp_qs_pending++;
  1094. return 1;
  1095. }
  1096. /* Does this CPU have callbacks ready to invoke? */
  1097. if (cpu_has_callbacks_ready_to_invoke(rdp)) {
  1098. rdp->n_rp_cb_ready++;
  1099. return 1;
  1100. }
  1101. /* Has RCU gone idle with this CPU needing another grace period? */
  1102. if (cpu_needs_another_gp(rsp, rdp)) {
  1103. rdp->n_rp_cpu_needs_gp++;
  1104. return 1;
  1105. }
  1106. /* Has another RCU grace period completed? */
  1107. if (ACCESS_ONCE(rsp->completed) != rdp->completed) { /* outside lock */
  1108. rdp->n_rp_gp_completed++;
  1109. return 1;
  1110. }
  1111. /* Has a new RCU grace period started? */
  1112. if (ACCESS_ONCE(rsp->gpnum) != rdp->gpnum) { /* outside lock */
  1113. rdp->n_rp_gp_started++;
  1114. return 1;
  1115. }
  1116. /* Has an RCU GP gone long enough to send resched IPIs &c? */
  1117. if (ACCESS_ONCE(rsp->completed) != ACCESS_ONCE(rsp->gpnum) &&
  1118. ((long)(ACCESS_ONCE(rsp->jiffies_force_qs) - jiffies) < 0)) {
  1119. rdp->n_rp_need_fqs++;
  1120. return 1;
  1121. }
  1122. /* nothing to do */
  1123. rdp->n_rp_need_nothing++;
  1124. return 0;
  1125. }
  1126. /*
  1127. * Check to see if there is any immediate RCU-related work to be done
  1128. * by the current CPU, returning 1 if so. This function is part of the
  1129. * RCU implementation; it is -not- an exported member of the RCU API.
  1130. */
  1131. int rcu_pending(int cpu)
  1132. {
  1133. return __rcu_pending(&rcu_state, &per_cpu(rcu_data, cpu)) ||
  1134. __rcu_pending(&rcu_bh_state, &per_cpu(rcu_bh_data, cpu));
  1135. }
  1136. /*
  1137. * Check to see if any future RCU-related work will need to be done
  1138. * by the current CPU, even if none need be done immediately, returning
  1139. * 1 if so. This function is part of the RCU implementation; it is -not-
  1140. * an exported member of the RCU API.
  1141. */
  1142. int rcu_needs_cpu(int cpu)
  1143. {
  1144. /* RCU callbacks either ready or pending? */
  1145. return per_cpu(rcu_data, cpu).nxtlist ||
  1146. per_cpu(rcu_bh_data, cpu).nxtlist;
  1147. }
  1148. /*
  1149. * Initialize a CPU's per-CPU RCU data. We take this "scorched earth"
  1150. * approach so that we don't have to worry about how long the CPU has
  1151. * been gone, or whether it ever was online previously. We do trust the
  1152. * ->mynode field, as it is constant for a given struct rcu_data and
  1153. * initialized during early boot.
  1154. *
  1155. * Note that only one online or offline event can be happening at a given
  1156. * time. Note also that we can accept some slop in the rsp->completed
  1157. * access due to the fact that this CPU cannot possibly have any RCU
  1158. * callbacks in flight yet.
  1159. */
  1160. static void __cpuinit
  1161. rcu_init_percpu_data(int cpu, struct rcu_state *rsp)
  1162. {
  1163. unsigned long flags;
  1164. int i;
  1165. long lastcomp;
  1166. unsigned long mask;
  1167. struct rcu_data *rdp = rsp->rda[cpu];
  1168. struct rcu_node *rnp = rcu_get_root(rsp);
  1169. /* Set up local state, ensuring consistent view of global state. */
  1170. spin_lock_irqsave(&rnp->lock, flags);
  1171. lastcomp = rsp->completed;
  1172. rdp->completed = lastcomp;
  1173. rdp->gpnum = lastcomp;
  1174. rdp->passed_quiesc = 0; /* We could be racing with new GP, */
  1175. rdp->qs_pending = 1; /* so set up to respond to current GP. */
  1176. rdp->beenonline = 1; /* We have now been online. */
  1177. rdp->passed_quiesc_completed = lastcomp - 1;
  1178. rdp->grpmask = 1UL << (cpu - rdp->mynode->grplo);
  1179. rdp->nxtlist = NULL;
  1180. for (i = 0; i < RCU_NEXT_SIZE; i++)
  1181. rdp->nxttail[i] = &rdp->nxtlist;
  1182. rdp->qlen = 0;
  1183. rdp->blimit = blimit;
  1184. #ifdef CONFIG_NO_HZ
  1185. rdp->dynticks = &per_cpu(rcu_dynticks, cpu);
  1186. #endif /* #ifdef CONFIG_NO_HZ */
  1187. rdp->cpu = cpu;
  1188. spin_unlock(&rnp->lock); /* irqs remain disabled. */
  1189. /*
  1190. * A new grace period might start here. If so, we won't be part
  1191. * of it, but that is OK, as we are currently in a quiescent state.
  1192. */
  1193. /* Exclude any attempts to start a new GP on large systems. */
  1194. spin_lock(&rsp->onofflock); /* irqs already disabled. */
  1195. /* Add CPU to rcu_node bitmasks. */
  1196. rnp = rdp->mynode;
  1197. mask = rdp->grpmask;
  1198. do {
  1199. /* Exclude any attempts to start a new GP on small systems. */
  1200. spin_lock(&rnp->lock); /* irqs already disabled. */
  1201. rnp->qsmaskinit |= mask;
  1202. mask = rnp->grpmask;
  1203. spin_unlock(&rnp->lock); /* irqs already disabled. */
  1204. rnp = rnp->parent;
  1205. } while (rnp != NULL && !(rnp->qsmaskinit & mask));
  1206. spin_unlock(&rsp->onofflock); /* irqs remain disabled. */
  1207. /*
  1208. * A new grace period might start here. If so, we will be part of
  1209. * it, and its gpnum will be greater than ours, so we will
  1210. * participate. It is also possible for the gpnum to have been
  1211. * incremented before this function was called, and the bitmasks
  1212. * to not be filled out until now, in which case we will also
  1213. * participate due to our gpnum being behind.
  1214. */
  1215. /* Since it is coming online, the CPU is in a quiescent state. */
  1216. cpu_quiet(cpu, rsp, rdp, lastcomp);
  1217. local_irq_restore(flags);
  1218. }
  1219. static void __cpuinit rcu_online_cpu(int cpu)
  1220. {
  1221. rcu_init_percpu_data(cpu, &rcu_state);
  1222. rcu_init_percpu_data(cpu, &rcu_bh_state);
  1223. open_softirq(RCU_SOFTIRQ, rcu_process_callbacks);
  1224. }
  1225. /*
  1226. * Handle CPU online/offline notifcation events.
  1227. */
  1228. static int __cpuinit rcu_cpu_notify(struct notifier_block *self,
  1229. unsigned long action, void *hcpu)
  1230. {
  1231. long cpu = (long)hcpu;
  1232. switch (action) {
  1233. case CPU_UP_PREPARE:
  1234. case CPU_UP_PREPARE_FROZEN:
  1235. rcu_online_cpu(cpu);
  1236. break;
  1237. case CPU_DEAD:
  1238. case CPU_DEAD_FROZEN:
  1239. case CPU_UP_CANCELED:
  1240. case CPU_UP_CANCELED_FROZEN:
  1241. rcu_offline_cpu(cpu);
  1242. break;
  1243. default:
  1244. break;
  1245. }
  1246. return NOTIFY_OK;
  1247. }
  1248. /*
  1249. * Compute the per-level fanout, either using the exact fanout specified
  1250. * or balancing the tree, depending on CONFIG_RCU_FANOUT_EXACT.
  1251. */
  1252. #ifdef CONFIG_RCU_FANOUT_EXACT
  1253. static void __init rcu_init_levelspread(struct rcu_state *rsp)
  1254. {
  1255. int i;
  1256. for (i = NUM_RCU_LVLS - 1; i >= 0; i--)
  1257. rsp->levelspread[i] = CONFIG_RCU_FANOUT;
  1258. }
  1259. #else /* #ifdef CONFIG_RCU_FANOUT_EXACT */
  1260. static void __init rcu_init_levelspread(struct rcu_state *rsp)
  1261. {
  1262. int ccur;
  1263. int cprv;
  1264. int i;
  1265. cprv = NR_CPUS;
  1266. for (i = NUM_RCU_LVLS - 1; i >= 0; i--) {
  1267. ccur = rsp->levelcnt[i];
  1268. rsp->levelspread[i] = (cprv + ccur - 1) / ccur;
  1269. cprv = ccur;
  1270. }
  1271. }
  1272. #endif /* #else #ifdef CONFIG_RCU_FANOUT_EXACT */
  1273. /*
  1274. * Helper function for rcu_init() that initializes one rcu_state structure.
  1275. */
  1276. static void __init rcu_init_one(struct rcu_state *rsp)
  1277. {
  1278. int cpustride = 1;
  1279. int i;
  1280. int j;
  1281. struct rcu_node *rnp;
  1282. /* Initialize the level-tracking arrays. */
  1283. for (i = 1; i < NUM_RCU_LVLS; i++)
  1284. rsp->level[i] = rsp->level[i - 1] + rsp->levelcnt[i - 1];
  1285. rcu_init_levelspread(rsp);
  1286. /* Initialize the elements themselves, starting from the leaves. */
  1287. for (i = NUM_RCU_LVLS - 1; i >= 0; i--) {
  1288. cpustride *= rsp->levelspread[i];
  1289. rnp = rsp->level[i];
  1290. for (j = 0; j < rsp->levelcnt[i]; j++, rnp++) {
  1291. spin_lock_init(&rnp->lock);
  1292. rnp->qsmask = 0;
  1293. rnp->qsmaskinit = 0;
  1294. rnp->grplo = j * cpustride;
  1295. rnp->grphi = (j + 1) * cpustride - 1;
  1296. if (rnp->grphi >= NR_CPUS)
  1297. rnp->grphi = NR_CPUS - 1;
  1298. if (i == 0) {
  1299. rnp->grpnum = 0;
  1300. rnp->grpmask = 0;
  1301. rnp->parent = NULL;
  1302. } else {
  1303. rnp->grpnum = j % rsp->levelspread[i - 1];
  1304. rnp->grpmask = 1UL << rnp->grpnum;
  1305. rnp->parent = rsp->level[i - 1] +
  1306. j / rsp->levelspread[i - 1];
  1307. }
  1308. rnp->level = i;
  1309. }
  1310. }
  1311. }
  1312. /*
  1313. * Helper macro for __rcu_init(). To be used nowhere else!
  1314. * Assigns leaf node pointers into each CPU's rcu_data structure.
  1315. */
  1316. #define RCU_DATA_PTR_INIT(rsp, rcu_data) \
  1317. do { \
  1318. rnp = (rsp)->level[NUM_RCU_LVLS - 1]; \
  1319. j = 0; \
  1320. for_each_possible_cpu(i) { \
  1321. if (i > rnp[j].grphi) \
  1322. j++; \
  1323. per_cpu(rcu_data, i).mynode = &rnp[j]; \
  1324. (rsp)->rda[i] = &per_cpu(rcu_data, i); \
  1325. } \
  1326. } while (0)
  1327. static struct notifier_block __cpuinitdata rcu_nb = {
  1328. .notifier_call = rcu_cpu_notify,
  1329. };
  1330. void __init __rcu_init(void)
  1331. {
  1332. int i; /* All used by RCU_DATA_PTR_INIT(). */
  1333. int j;
  1334. struct rcu_node *rnp;
  1335. printk(KERN_WARNING "Experimental hierarchical RCU implementation.\n");
  1336. #ifdef CONFIG_RCU_CPU_STALL_DETECTOR
  1337. printk(KERN_INFO "RCU-based detection of stalled CPUs is enabled.\n");
  1338. #endif /* #ifdef CONFIG_RCU_CPU_STALL_DETECTOR */
  1339. rcu_init_one(&rcu_state);
  1340. RCU_DATA_PTR_INIT(&rcu_state, rcu_data);
  1341. rcu_init_one(&rcu_bh_state);
  1342. RCU_DATA_PTR_INIT(&rcu_bh_state, rcu_bh_data);
  1343. for_each_online_cpu(i)
  1344. rcu_cpu_notify(&rcu_nb, CPU_UP_PREPARE, (void *)(long)i);
  1345. /* Register notifier for non-boot CPUs */
  1346. register_cpu_notifier(&rcu_nb);
  1347. printk(KERN_WARNING "Experimental hierarchical RCU init done.\n");
  1348. }
  1349. module_param(blimit, int, 0);
  1350. module_param(qhimark, int, 0);
  1351. module_param(qlowmark, int, 0);