aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rcupreempt.c
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>2009-08-22 16:56:51 -0400
committerIngo Molnar <mingo@elte.hu>2009-08-23 04:32:39 -0400
commita157229cabd6dd8cfa82525fc9bf730c94cc9ac2 (patch)
tree886013efc2f25dab915640acf46151fac7ae57b4 /kernel/rcupreempt.c
parent22f00b69f6a7e1e18e821979a23e8307c2de9888 (diff)
rcu: Simplify rcu_pending()/rcu_check_callbacks() API
All calls from outside RCU are of the form: if (rcu_pending(cpu)) rcu_check_callbacks(cpu, user); This is silly, instead we put a call to rcu_pending() in rcu_check_callbacks(), and then make the outside calls be to rcu_check_callbacks(). This cuts down on the code a bit and also gives the compiler a better chance of optimizing. Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Cc: laijs@cn.fujitsu.com Cc: dipankar@in.ibm.com Cc: akpm@linux-foundation.org Cc: mathieu.desnoyers@polymtl.ca Cc: josht@linux.vnet.ibm.com Cc: dvhltc@us.ibm.com Cc: niv@us.ibm.com Cc: peterz@infradead.org Cc: rostedt@goodmis.org LKML-Reference: <125097461311-git-send-email-> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/rcupreempt.c')
-rw-r--r--kernel/rcupreempt.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/kernel/rcupreempt.c b/kernel/rcupreempt.c
index 7d777c9f394c..0053ce56e326 100644
--- a/kernel/rcupreempt.c
+++ b/kernel/rcupreempt.c
@@ -159,6 +159,8 @@ static DEFINE_PER_CPU_SHARED_ALIGNED(struct rcu_dyntick_sched, rcu_dyntick_sched
159 .dynticks = 1, 159 .dynticks = 1,
160}; 160};
161 161
162static int rcu_pending(int cpu);
163
162void rcu_sched_qs(int cpu) 164void rcu_sched_qs(int cpu)
163{ 165{
164 struct rcu_dyntick_sched *rdssp = &per_cpu(rcu_dyntick_sched, cpu); 166 struct rcu_dyntick_sched *rdssp = &per_cpu(rcu_dyntick_sched, cpu);
@@ -961,7 +963,10 @@ static void rcu_check_mb(int cpu)
961void rcu_check_callbacks(int cpu, int user) 963void rcu_check_callbacks(int cpu, int user)
962{ 964{
963 unsigned long flags; 965 unsigned long flags;
964 struct rcu_data *rdp = RCU_DATA_CPU(cpu); 966 struct rcu_data *rdp;
967
968 if (!rcu_pending(cpu))
969 return; /* if nothing for RCU to do. */
965 970
966 /* 971 /*
967 * If this CPU took its interrupt from user mode or from the 972 * If this CPU took its interrupt from user mode or from the
@@ -976,6 +981,7 @@ void rcu_check_callbacks(int cpu, int user)
976 * CPUs to happen after any such write. 981 * CPUs to happen after any such write.
977 */ 982 */
978 983
984 rdp = RCU_DATA_CPU(cpu);
979 if (user || 985 if (user ||
980 (idle_cpu(cpu) && !in_softirq() && 986 (idle_cpu(cpu) && !in_softirq() &&
981 hardirq_count() <= (1 << HARDIRQ_SHIFT))) { 987 hardirq_count() <= (1 << HARDIRQ_SHIFT))) {
@@ -1382,7 +1388,7 @@ int rcu_needs_cpu(int cpu)
1382 rdp->waitschedlist != NULL); 1388 rdp->waitschedlist != NULL);
1383} 1389}
1384 1390
1385int rcu_pending(int cpu) 1391static int rcu_pending(int cpu)
1386{ 1392{
1387 struct rcu_data *rdp = RCU_DATA_CPU(cpu); 1393 struct rcu_data *rdp = RCU_DATA_CPU(cpu);
1388 1394