Skip to content

Commit

Permalink
PM / cpuidle: Make ladder governor use the "disabled" state flag
Browse files Browse the repository at this point in the history
For the mechanism introduced by commit cbc9ef0 (PM / Domains: Add
preliminary support for cpuidle, v2) to work with the ladder
governor, that governor should respect the "disabled" state flag
added by that commit.  Change the ladder governor accordingly.

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
  • Loading branch information
Rafael J. Wysocki committed Sep 3, 2012
1 parent 62d6ae8 commit 66804c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/cpuidle/governors/ladder.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ static int ladder_select_state(struct cpuidle_driver *drv,

/* consider promotion */
if (last_idx < drv->state_count - 1 &&
!drv->states[last_idx + 1].disabled &&
!dev->states_usage[last_idx + 1].disable &&
last_residency > last_state->threshold.promotion_time &&
drv->states[last_idx + 1].exit_latency <= latency_req) {
Expand All @@ -101,7 +102,8 @@ static int ladder_select_state(struct cpuidle_driver *drv,

/* consider demotion */
if (last_idx > CPUIDLE_DRIVER_STATE_START &&
(dev->states_usage[last_idx].disable ||
(drv->states[last_idx].disabled ||
dev->states_usage[last_idx].disable ||
drv->states[last_idx].exit_latency > latency_req)) {
int i;

Expand Down

0 comments on commit 66804c1

Please sign in to comment.