diff options
| author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-04-30 18:13:47 -0400 |
|---|---|---|
| committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-04-30 18:13:47 -0400 |
| commit | 52c324f8a87b336496d0f5e9d8dff1aa32bb08cd (patch) | |
| tree | 5d359e67396365456f73496344e57bd2976d1c8c /kernel | |
| parent | d1db0eea852497762cab43b905b879dfcd3b8987 (diff) | |
cpuidle: Combine cpuidle_enabled() with cpuidle_select()
Since both cpuidle_enabled() and cpuidle_select() are only called by
cpuidle_idle_call(), it is not really useful to keep them separate
and combining them will help to avoid complicating cpuidle_idle_call()
even further if governors are changed to return error codes sometimes.
This code modification shouldn't lead to any functional changes.
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/sched/idle.c | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c index 8f4390a079c7..a8f12247ce7c 100644 --- a/kernel/sched/idle.c +++ b/kernel/sched/idle.c | |||
| @@ -101,19 +101,13 @@ static int cpuidle_idle_call(void) | |||
| 101 | rcu_idle_enter(); | 101 | rcu_idle_enter(); |
| 102 | 102 | ||
| 103 | /* | 103 | /* |
| 104 | * Check if the cpuidle framework is ready, otherwise fallback | 104 | * Ask the cpuidle framework to choose a convenient idle state. |
| 105 | * to the default arch specific idle method | 105 | * Fall back to the default arch specific idle method on errors. |
| 106 | */ | 106 | */ |
| 107 | ret = cpuidle_enabled(drv, dev); | 107 | next_state = cpuidle_select(drv, dev); |
| 108 | |||
| 109 | if (!ret) { | ||
| 110 | /* | ||
| 111 | * Ask the governor to choose an idle state it thinks | ||
| 112 | * it is convenient to go to. There is *always* a | ||
| 113 | * convenient idle state | ||
| 114 | */ | ||
| 115 | next_state = cpuidle_select(drv, dev); | ||
| 116 | 108 | ||
| 109 | ret = next_state; | ||
| 110 | if (ret >= 0) { | ||
| 117 | /* | 111 | /* |
| 118 | * The idle task must be scheduled, it is pointless to | 112 | * The idle task must be scheduled, it is pointless to |
| 119 | * go to idle, just update no idle residency and get | 113 | * go to idle, just update no idle residency and get |
| @@ -140,7 +134,7 @@ static int cpuidle_idle_call(void) | |||
| 140 | CLOCK_EVT_NOTIFY_BROADCAST_ENTER, | 134 | CLOCK_EVT_NOTIFY_BROADCAST_ENTER, |
| 141 | &dev->cpu); | 135 | &dev->cpu); |
| 142 | 136 | ||
| 143 | if (!ret) { | 137 | if (ret >= 0) { |
| 144 | trace_cpu_idle_rcuidle(next_state, dev->cpu); | 138 | trace_cpu_idle_rcuidle(next_state, dev->cpu); |
| 145 | 139 | ||
| 146 | /* | 140 | /* |
| @@ -175,7 +169,7 @@ static int cpuidle_idle_call(void) | |||
| 175 | * We can't use the cpuidle framework, let's use the default | 169 | * We can't use the cpuidle framework, let's use the default |
| 176 | * idle routine | 170 | * idle routine |
| 177 | */ | 171 | */ |
| 178 | if (ret) | 172 | if (ret < 0) |
| 179 | arch_cpu_idle(); | 173 | arch_cpu_idle(); |
| 180 | 174 | ||
| 181 | __current_set_polling(); | 175 | __current_set_polling(); |
