|
@@ -1586,11 +1586,13 @@ static void rcu_prepare_kthreads(int cpu)
|
|
|
* Because we not have RCU_FAST_NO_HZ, just check whether this CPU needs
|
|
|
* any flavor of RCU.
|
|
|
*/
|
|
|
+#ifndef CONFIG_RCU_NOCB_CPU_ALL
|
|
|
int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies)
|
|
|
{
|
|
|
*delta_jiffies = ULONG_MAX;
|
|
|
return rcu_cpu_has_callbacks(cpu, NULL);
|
|
|
}
|
|
|
+#endif /* #ifndef CONFIG_RCU_NOCB_CPU_ALL */
|
|
|
|
|
|
/*
|
|
|
* Because we do not have RCU_FAST_NO_HZ, don't bother cleaning up
|
|
@@ -1696,6 +1698,7 @@ static bool rcu_try_advance_all_cbs(void)
|
|
|
*
|
|
|
* The caller must have disabled interrupts.
|
|
|
*/
|
|
|
+#ifndef CONFIG_RCU_NOCB_CPU_ALL
|
|
|
int rcu_needs_cpu(int cpu, unsigned long *dj)
|
|
|
{
|
|
|
struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu);
|
|
@@ -1726,6 +1729,7 @@ int rcu_needs_cpu(int cpu, unsigned long *dj)
|
|
|
}
|
|
|
return 0;
|
|
|
}
|
|
|
+#endif /* #ifndef CONFIG_RCU_NOCB_CPU_ALL */
|
|
|
|
|
|
/*
|
|
|
* Prepare a CPU for idle from an RCU perspective. The first major task
|