diff --git a/arch/alpha/kernel/process.c b/arch/alpha/kernel/process.c index db56f31dbf707ca4f9a7deb708b8bf9c3de48cb6..83638aa096d562d803a8ffb3632dbb971db6da3d 100644 --- a/arch/alpha/kernel/process.c +++ b/arch/alpha/kernel/process.c @@ -28,6 +28,7 @@ #include #include #include +#include #include #include @@ -54,9 +55,11 @@ cpu_idle(void) /* FIXME -- EV6 and LCA45 know how to power down the CPU. */ + rcu_idle_enter(); while (!need_resched()) cpu_relax(); + rcu_idle_exit(); schedule_preempt_disabled(); } }