Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 328670
b: refs/heads/master
c: 66804c1
h: refs/heads/master
v: v3
  • Loading branch information
Rafael J. Wysocki committed Sep 3, 2012
1 parent 7070a21 commit e3a373d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 62d6ae880e3e76098d5e345decd2dce443975889
refs/heads/master: 66804c13f7b79fb26cf4848ebac1e865b9aff65c
4 changes: 3 additions & 1 deletion trunk/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 e3a373d

Please sign in to comment.