aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpuidle
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2019-11-12 10:51:16 +0100
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2019-11-13 22:31:17 +0100
commitb6495b7f004d01b9ecf9ed5fd31368241d3c5589 (patch)
tree5208fe669518fd05a4b761561e617902d4066e73 /drivers/cpuidle
parentcpuidle: Use nanoseconds as the unit of time (diff)
downloadlinux-dev-b6495b7f004d01b9ecf9ed5fd31368241d3c5589.tar.xz
linux-dev-b6495b7f004d01b9ecf9ed5fd31368241d3c5589.zip
cpuidle: teo: Exclude cpuidle overhead from computations
One purpose of the computations in teo_update() is to determine whether or not the (saved) time till the next timer event and the measured idle duration fall into the same "bin", so avoid using values that include the cpuidle overhead to obtain the latter. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpuidle')
-rw-r--r--drivers/cpuidle/governors/teo.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/cpuidle/governors/teo.c b/drivers/cpuidle/governors/teo.c
index ecbcfaefb0cd..b33418f5df70 100644
--- a/drivers/cpuidle/governors/teo.c
+++ b/drivers/cpuidle/governors/teo.c
@@ -130,7 +130,14 @@ static void teo_update(struct cpuidle_driver *drv, struct cpuidle_device *dev)
} else {
u64 lat_ns = drv->states[dev->last_state_idx].exit_latency_ns;
- measured_ns = cpu_data->time_span_ns;
+ /*
+ * The computations below are to determine whether or not the
+ * (saved) time till the next timer event and the measured idle
+ * duration fall into the same "bin", so use last_residency_ns
+ * for that instead of time_span_ns which includes the cpuidle
+ * overhead.
+ */
+ measured_ns = dev->last_residency_ns;
/*
* The delay between the wakeup and the first instruction
* executed by the CPU is not likely to be worst-case every