diff options
Diffstat (limited to 'arch/cris/kernel/process.c')
-rw-r--r-- | arch/cris/kernel/process.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/cris/kernel/process.c b/arch/cris/kernel/process.c index 66fd01728790..7f65be6f7f17 100644 --- a/arch/cris/kernel/process.c +++ b/arch/cris/kernel/process.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/elfcore.h> | 25 | #include <linux/elfcore.h> |
26 | #include <linux/mqueue.h> | 26 | #include <linux/mqueue.h> |
27 | #include <linux/reboot.h> | 27 | #include <linux/reboot.h> |
28 | #include <linux/rcupdate.h> | ||
28 | 29 | ||
29 | //#define DEBUG | 30 | //#define DEBUG |
30 | 31 | ||
@@ -74,6 +75,7 @@ void cpu_idle (void) | |||
74 | { | 75 | { |
75 | /* endless idle loop with no priority at all */ | 76 | /* endless idle loop with no priority at all */ |
76 | while (1) { | 77 | while (1) { |
78 | rcu_idle_enter(); | ||
77 | while (!need_resched()) { | 79 | while (!need_resched()) { |
78 | void (*idle)(void); | 80 | void (*idle)(void); |
79 | /* | 81 | /* |
@@ -86,6 +88,7 @@ void cpu_idle (void) | |||
86 | idle = default_idle; | 88 | idle = default_idle; |
87 | idle(); | 89 | idle(); |
88 | } | 90 | } |
91 | rcu_idle_exit(); | ||
89 | schedule_preempt_disabled(); | 92 | schedule_preempt_disabled(); |
90 | } | 93 | } |
91 | } | 94 | } |