aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/rcupdate.h
diff options
context:
space:
mode:
authorRik van Riel <riel@redhat.com>2014-04-27 02:15:35 -0400
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>2014-05-19 13:52:04 -0400
commit61f38db3e3c0e4c3be0858750e2cabeadaecac0c (patch)
tree5ded19f41e8ceb49a55b2942fb0a5774a95126d1 /include/linux/rcupdate.h
parente534165bbf6a04d001748c573c7d6a7bae3713a5 (diff)
rcu: Provide API to suppress stall warnings while sysrc runs
Some sysrq handlers can run for a long time, because they dump a lot of data onto a serial console. Having RCU stall warnings pop up in the middle of them only makes the problem worse. This commit provides rcu_sysrq_start() and rcu_sysrq_end() APIs to temporarily suppress RCU CPU stall warnings while a sysrq request is handled. Signed-off-by: Rik van Riel <riel@redhat.com> [ paulmck: Fix TINY_RCU build error. ] Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'include/linux/rcupdate.h')
-rw-r--r--include/linux/rcupdate.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h
index 9ccd644c1234..5a75d19aa661 100644
--- a/include/linux/rcupdate.h
+++ b/include/linux/rcupdate.h
@@ -248,6 +248,18 @@ void rcu_idle_exit(void);
248void rcu_irq_enter(void); 248void rcu_irq_enter(void);
249void rcu_irq_exit(void); 249void rcu_irq_exit(void);
250 250
251#ifdef CONFIG_RCU_STALL_COMMON
252void rcu_sysrq_start(void);
253void rcu_sysrq_end(void);
254#else /* #ifdef CONFIG_RCU_STALL_COMMON */
255static inline void rcu_sysrq_start(void)
256{
257}
258static inline void rcu_sysrq_end(void)
259{
260}
261#endif /* #else #ifdef CONFIG_RCU_STALL_COMMON */
262
251#ifdef CONFIG_RCU_USER_QS 263#ifdef CONFIG_RCU_USER_QS
252void rcu_user_enter(void); 264void rcu_user_enter(void);
253void rcu_user_exit(void); 265void rcu_user_exit(void);