mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-26 12:30:23 +09:00
UPSTREAM: cpuidle: Add cpu_idle_miss trace event
Add a trace event for cpuidle to track missed (too deep or too shallow)
wakeups.
After each wakeup, CPUIdle already computes whether the entered state was
optimal, above or below the desired one and updates the relevant
counters. This patch makes it possible to trace those events in addition
to just reading the counters.
The patterns of types and percentages of misses across different
workloads appear to be very consistent. This makes the trace event very
useful for comparing the relative correctness of different CPUIdle
governors for different types of workloads, or for finding the
optimal governor for a given device.
Bug: 296059163
Signed-off-by: Kajetan Puchalski <kajetan.puchalski@arm.com>
Reviewed-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
(cherry picked from commit 6ab4b19900)
Signed-off-by: Qais Yousef <qyousef@google.com>
Change-Id: Ie78da87767904688b458654ac9a304bdba2981fc
This commit is contained in:
committed by
Todd Kjos
parent
3abb2ec8d2
commit
98a63aed61
@@ -8,6 +8,7 @@
|
||||
* This code is licenced under the GPL.
|
||||
*/
|
||||
|
||||
#include "linux/percpu-defs.h"
|
||||
#include <linux/clockchips.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/mutex.h>
|
||||
@@ -291,6 +292,7 @@ int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
|
||||
|
||||
/* Shallower states are enabled, so update. */
|
||||
dev->states_usage[entered_state].above++;
|
||||
trace_cpu_idle_miss(dev->cpu, entered_state, false);
|
||||
break;
|
||||
}
|
||||
} else if (diff > delay) {
|
||||
@@ -302,8 +304,10 @@ int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
|
||||
* Update if a deeper state would have been a
|
||||
* better match for the observed idle duration.
|
||||
*/
|
||||
if (diff - delay >= drv->states[i].target_residency_ns)
|
||||
if (diff - delay >= drv->states[i].target_residency_ns) {
|
||||
dev->states_usage[entered_state].below++;
|
||||
trace_cpu_idle_miss(dev->cpu, entered_state, true);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -40,6 +40,28 @@ DEFINE_EVENT(cpu, cpu_idle,
|
||||
TP_ARGS(state, cpu_id)
|
||||
);
|
||||
|
||||
TRACE_EVENT(cpu_idle_miss,
|
||||
|
||||
TP_PROTO(unsigned int cpu_id, unsigned int state, bool below),
|
||||
|
||||
TP_ARGS(cpu_id, state, below),
|
||||
|
||||
TP_STRUCT__entry(
|
||||
__field(u32, cpu_id)
|
||||
__field(u32, state)
|
||||
__field(bool, below)
|
||||
),
|
||||
|
||||
TP_fast_assign(
|
||||
__entry->cpu_id = cpu_id;
|
||||
__entry->state = state;
|
||||
__entry->below = below;
|
||||
),
|
||||
|
||||
TP_printk("cpu_id=%lu state=%lu type=%s", (unsigned long)__entry->cpu_id,
|
||||
(unsigned long)__entry->state, (__entry->below)?"below":"above")
|
||||
);
|
||||
|
||||
TRACE_EVENT(powernv_throttle,
|
||||
|
||||
TP_PROTO(int chip_id, const char *reason, int pmax),
|
||||
|
||||
Reference in New Issue
Block a user