diff options
author | tuukka.tikkanen@linaro.org <tuukka.tikkanen@linaro.org> | 2014-02-24 08:29:37 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-03-07 12:55:17 +0100 |
commit | 4b2f0b033a294e6c19d57c5d0a66c000f6299559 (patch) | |
tree | 94f9b73ad4d9acbbdd073c6becd6881857599b0b /drivers/cpuidle | |
parent | 96e95182e95fd4e0069ff4d6ee1888fe9031d154 (diff) | |
download | linux-stable-4b2f0b033a294e6c19d57c5d0a66c000f6299559.tar.gz linux-stable-4b2f0b033a294e6c19d57c5d0a66c000f6299559.tar.bz2 linux-stable-4b2f0b033a294e6c19d57c5d0a66c000f6299559.zip |
cpuidle: poll state can measure residency
For some platforms, a poll state is inserted in the cpuidle driver states.
The flags for the state do not indicate that timekeeping is not affected.
As the state does not do anything apart from calling cpu_relax(), the
times returned by ktime_get should remain valid. Add the missing flag.
Signed-off-by: Tuukka Tikkanen <tuukka.tikkanen@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpuidle')
-rw-r--r-- | drivers/cpuidle/driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpuidle/driver.c b/drivers/cpuidle/driver.c index 06dbe7c86199..136d6a283e0a 100644 --- a/drivers/cpuidle/driver.c +++ b/drivers/cpuidle/driver.c @@ -209,7 +209,7 @@ static void poll_idle_init(struct cpuidle_driver *drv) state->exit_latency = 0; state->target_residency = 0; state->power_usage = -1; - state->flags = 0; + state->flags = CPUIDLE_FLAG_TIME_VALID; state->enter = poll_idle; state->disabled = false; } |