]> git.karo-electronics.de Git - karo-tx-linux.git/commit
rcu: New rcu_user_enter_irq() and rcu_user_exit_irq() APIs
authorFrederic Weisbecker <fweisbec@gmail.com>
Mon, 4 Jun 2012 23:42:35 +0000 (16:42 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Tue, 31 Jul 2012 17:32:39 +0000 (10:32 -0700)
commitbfdc803112992d2ddea0b6e5fd122db22802a01f
tree31d95189ebd8bc6cd3a78c66f1fad93ad06e7c27
parenta49084058c7999492ec5bb01e9dbd0958fb5fa06
rcu: New rcu_user_enter_irq() and rcu_user_exit_irq() APIs

In some cases, it is necessary to enter or exit userspace-RCU-idle mode
from an interrupt handler, for example, if some other CPU sends this
CPU a resched IPI.  In this case, the current CPU would enter the IPI
handler in userspace-RCU-idle mode, but would need to exit the IPI handler
after having exited that mode.

To allow this to work, this commit adds two new APIs to TREE_RCU:

- rcu_user_enter_irq(). This must be called from an interrupt between
rcu_irq_enter() and rcu_irq_exit().  After the irq calls rcu_irq_exit(),
the irq handler will return into an RCU extended quiescent state.
In theory, this interrupt is never a nested interrupt, but in practice
it might interrupt softirq, which looks to RCU like a nested interrupt.

- rcu_user_exit_irq(). This must be called from a non-nesting
interrupt, interrupting an RCU extended quiescent state, also
between rcu_irq_enter() and rcu_irq_exit(). After the irq calls
rcu_irq_exit(), the irq handler will return in an RCU non-quiescent
state.

[ Combined with "Allow calls to rcu_exit_user_irq from nesting irqs." ]

Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
include/linux/rcupdate.h
kernel/rcutree.c