diff options
Diffstat (limited to 'arch/c6x/kernel/process.c')
-rw-r--r-- | arch/c6x/kernel/process.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/c6x/kernel/process.c b/arch/c6x/kernel/process.c index aa65c879323b..7ca8c41b03cd 100644 --- a/arch/c6x/kernel/process.c +++ b/arch/c6x/kernel/process.c | |||
@@ -71,7 +71,8 @@ void cpu_idle(void) | |||
71 | { | 71 | { |
72 | /* endless idle loop with no priority at all */ | 72 | /* endless idle loop with no priority at all */ |
73 | while (1) { | 73 | while (1) { |
74 | tick_nohz_stop_sched_tick(1); | 74 | tick_nohz_idle_enter(); |
75 | rcu_idle_enter(); | ||
75 | while (1) { | 76 | while (1) { |
76 | local_irq_disable(); | 77 | local_irq_disable(); |
77 | if (need_resched()) { | 78 | if (need_resched()) { |
@@ -80,7 +81,8 @@ void cpu_idle(void) | |||
80 | } | 81 | } |
81 | c6x_idle(); /* enables local irqs */ | 82 | c6x_idle(); /* enables local irqs */ |
82 | } | 83 | } |
83 | tick_nohz_restart_sched_tick(); | 84 | rcu_idle_exit(); |
85 | tick_nohz_idle_exit(); | ||
84 | 86 | ||
85 | preempt_enable_no_resched(); | 87 | preempt_enable_no_resched(); |
86 | schedule(); | 88 | schedule(); |