bool user)
{
trace_rcu_dyntick("Start", oldval, 0);
- if (!is_idle_task(current) && !user) {
+ if (!user && !is_idle_task(current)) {
struct task_struct *idle = idle_task(smp_processor_id());
trace_rcu_dyntick("Error on entry: not idle task", oldval, 0);
unsigned long flags;
local_irq_save(flags);
- rcu_eqs_enter(0);
+ rcu_eqs_enter(false);
local_irq_restore(flags);
}
EXPORT_SYMBOL_GPL(rcu_idle_enter);
rdtp = &__get_cpu_var(rcu_dynticks);
if (!rdtp->ignore_user_qs && !rdtp->in_user) {
rdtp->in_user = true;
- rcu_eqs_enter(1);
+ rcu_eqs_enter(true);
}
local_irq_restore(flags);
}
if (rdtp->dynticks_nesting)
trace_rcu_dyntick("--=", oldval, rdtp->dynticks_nesting);
else
- rcu_eqs_enter_common(rdtp, oldval, 1);
+ rcu_eqs_enter_common(rdtp, oldval, true);
local_irq_restore(flags);
}
WARN_ON_ONCE(!(atomic_read(&rdtp->dynticks) & 0x1));
rcu_cleanup_after_idle(smp_processor_id());
trace_rcu_dyntick("End", oldval, rdtp->dynticks_nesting);
- if (!is_idle_task(current) && !user) {
+ if (!user && !is_idle_task(current)) {
struct task_struct *idle = idle_task(smp_processor_id());
trace_rcu_dyntick("Error on exit: not idle task",
unsigned long flags;
local_irq_save(flags);
- rcu_eqs_exit(0);
+ rcu_eqs_exit(false);
local_irq_restore(flags);
}
EXPORT_SYMBOL_GPL(rcu_idle_exit);
rdtp = &__get_cpu_var(rcu_dynticks);
if (rdtp->in_user) {
rdtp->in_user = false;
- rcu_eqs_exit(1);
+ rcu_eqs_exit(true);
}
local_irq_restore(flags);
}
if (oldval)
trace_rcu_dyntick("++=", oldval, rdtp->dynticks_nesting);
else
- rcu_eqs_exit_common(rdtp, oldval, 1);
+ rcu_eqs_exit_common(rdtp, oldval, true);
local_irq_restore(flags);
}