diff options
| -rw-r--r-- | drivers/cpuidle/cpuidle.c | 26 | ||||
| -rw-r--r-- | include/linux/cpuidle.h | 5 | ||||
| -rw-r--r-- | kernel/sched/idle.c | 20 |
3 files changed, 13 insertions, 38 deletions
diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c index 8236746e46bb..f38359f64cc6 100644 --- a/drivers/cpuidle/cpuidle.c +++ b/drivers/cpuidle/cpuidle.c | |||
| @@ -65,26 +65,6 @@ int cpuidle_play_dead(void) | |||
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | /** | 67 | /** |
| 68 | * cpuidle_enabled - check if the cpuidle framework is ready | ||
| 69 | * @dev: cpuidle device for this cpu | ||
| 70 | * @drv: cpuidle driver for this cpu | ||
| 71 | * | ||
| 72 | * Return 0 on success, otherwise: | ||
| 73 | * -NODEV : the cpuidle framework is not available | ||
| 74 | * -EBUSY : the cpuidle framework is not initialized | ||
| 75 | */ | ||
| 76 | int cpuidle_enabled(struct cpuidle_driver *drv, struct cpuidle_device *dev) | ||
| 77 | { | ||
| 78 | if (off || !initialized) | ||
| 79 | return -ENODEV; | ||
| 80 | |||
| 81 | if (!drv || !dev || !dev->enabled) | ||
| 82 | return -EBUSY; | ||
| 83 | |||
| 84 | return 0; | ||
| 85 | } | ||
| 86 | |||
| 87 | /** | ||
| 88 | * cpuidle_enter_state - enter the state and update stats | 68 | * cpuidle_enter_state - enter the state and update stats |
| 89 | * @dev: cpuidle device for this cpu | 69 | * @dev: cpuidle device for this cpu |
| 90 | * @drv: cpuidle driver for this cpu | 70 | * @drv: cpuidle driver for this cpu |
| @@ -138,6 +118,12 @@ int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv, | |||
| 138 | */ | 118 | */ |
| 139 | int cpuidle_select(struct cpuidle_driver *drv, struct cpuidle_device *dev) | 119 | int cpuidle_select(struct cpuidle_driver *drv, struct cpuidle_device *dev) |
| 140 | { | 120 | { |
| 121 | if (off || !initialized) | ||
| 122 | return -ENODEV; | ||
| 123 | |||
| 124 | if (!drv || !dev || !dev->enabled) | ||
| 125 | return -EBUSY; | ||
| 126 | |||
| 141 | return cpuidle_curr_governor->select(drv, dev); | 127 | return cpuidle_curr_governor->select(drv, dev); |
| 142 | } | 128 | } |
| 143 | 129 | ||
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index b0238cba440b..a8d5bd391a26 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
| @@ -120,8 +120,6 @@ struct cpuidle_driver { | |||
| 120 | #ifdef CONFIG_CPU_IDLE | 120 | #ifdef CONFIG_CPU_IDLE |
| 121 | extern void disable_cpuidle(void); | 121 | extern void disable_cpuidle(void); |
| 122 | 122 | ||
| 123 | extern int cpuidle_enabled(struct cpuidle_driver *drv, | ||
| 124 | struct cpuidle_device *dev); | ||
| 125 | extern int cpuidle_select(struct cpuidle_driver *drv, | 123 | extern int cpuidle_select(struct cpuidle_driver *drv, |
| 126 | struct cpuidle_device *dev); | 124 | struct cpuidle_device *dev); |
| 127 | extern int cpuidle_enter(struct cpuidle_driver *drv, | 125 | extern int cpuidle_enter(struct cpuidle_driver *drv, |
| @@ -149,9 +147,6 @@ extern int cpuidle_play_dead(void); | |||
| 149 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); | 147 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); |
| 150 | #else | 148 | #else |
| 151 | static inline void disable_cpuidle(void) { } | 149 | static inline void disable_cpuidle(void) { } |
| 152 | static inline int cpuidle_enabled(struct cpuidle_driver *drv, | ||
| 153 | struct cpuidle_device *dev) | ||
| 154 | {return -ENODEV; } | ||
| 155 | static inline int cpuidle_select(struct cpuidle_driver *drv, | 150 | static inline int cpuidle_select(struct cpuidle_driver *drv, |
| 156 | struct cpuidle_device *dev) | 151 | struct cpuidle_device *dev) |
| 157 | {return -ENODEV; } | 152 | {return -ENODEV; } |
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(); |
