Commit 1617971c6616c87185cbc78fa1a86dfc70dd16b6

Authored by Doug Smythies
Committed by Rafael J. Wysocki
1 parent f17b5f06cb

cpuidle: poll_state: Fix default time limit

The default time is declared in units of microsecnds,
but is used as nanoseconds, resulting in significant
accounting errors for idle state 0 time when all idle
states deeper than 0 are disabled.

Under these unusual conditions, we don't really care
about the poll time limit anyhow.

Fixes: 800fb34a99ce ("cpuidle: poll_state: Disregard disable idle states")
Signed-off-by: Doug Smythies <dsmythies@telus.net>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/cpuidle/poll_state.c
... ... @@ -21,7 +21,7 @@
21 21 local_irq_enable();
22 22 if (!current_set_polling_and_test()) {
23 23 unsigned int loop_count = 0;
24   - u64 limit = TICK_USEC;
  24 + u64 limit = TICK_NSEC;
25 25 int i;
26 26  
27 27 for (i = 1; i < drv->state_count; i++) {