From: Paul E. McKenney Date: Mon, 4 Feb 2013 20:14:24 +0000 (-0800) Subject: rcu: Avoid invoking RCU core on offline CPUs X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b0f740360efec6e6471547c0548f250bc045a233;p=linux-beck.git rcu: Avoid invoking RCU core on offline CPUs Offline CPUs transition through the scheduler to the idle loop one last time before being shut down. This can result in RCU raising softirq on this CPU, which is at best useless given that the CPU's callbacks will be offloaded at CPU_DEAD time. This commit therefore avoids raising softirq on offline CPUs. Signed-off-by: Paul E. McKenney --- diff --git a/kernel/rcutree.c b/kernel/rcutree.c index 157539a975df..b2fc234ba1b9 100644 --- a/kernel/rcutree.c +++ b/kernel/rcutree.c @@ -2169,7 +2169,8 @@ static void invoke_rcu_callbacks(struct rcu_state *rsp, struct rcu_data *rdp) static void invoke_rcu_core(void) { - raise_softirq(RCU_SOFTIRQ); + if (cpu_online(smp_processor_id())) + raise_softirq(RCU_SOFTIRQ); } /*