]> git.karo-electronics.de Git - karo-tx-linux.git/commit
rcu: Remove _rcu_barrier() dependency on __stop_machine()
authorPaul E. McKenney <paul.mckenney@linaro.org>
Fri, 3 Aug 2012 00:43:50 +0000 (17:43 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Tue, 4 Sep 2012 23:53:34 +0000 (16:53 -0700)
commit0efb1a031e882a9376dddcbb68e81381fb055a3d
tree54ec82df2e05864264c60a3fce55bbddeef16db5
parent0d7614f09c1ebdbaa1599a5aba7593f147bf96ee
rcu: Remove _rcu_barrier() dependency on __stop_machine()

Currently, _rcu_barrier() relies on preempt_disable() to prevent
any CPU from going offline, which in turn depends on CPU hotplug's
use of __stop_machine().

This patch therefore makes _rcu_barrier() use get_online_cpus() to
block CPU-hotplug operations.  This has the added benefit of removing
the need for _rcu_barrier() to adopt callbacks:  Because CPU-hotplug
operations are excluded, there can be no callbacks to adopt.  This
commit simplifies the code accordingly.

Signed-off-by: Paul E. McKenney <paul.mckenney@linaro.org>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
kernel/rcutree.c
kernel/rcutree.h
kernel/rcutree_trace.c