summaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorJuri Lelli <juri.lelli@arm.com>2015-11-09 12:06:24 +0000
committerAmit Pundir <amit.pundir@linaro.org>2016-09-14 14:58:22 +0530
commitf4886c38ff4052b20b0bb22210308c8d07a048a9 (patch)
tree2acd28cffa39c583f3dc89d8e81ad4f65ca3a92f /include/trace
parent45668ef621bd3c3635865d92807b6578582246e7 (diff)
DEBUG: sched: add tracepoint for cpu/freq scale invariance
Signed-off-by: Juri Lelli <juri.lelli@arm.com>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/sched.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/trace/events/sched.h b/include/trace/events/sched.h
index d34eba74af27..67e465f8b159 100644
--- a/include/trace/events/sched.h
+++ b/include/trace/events/sched.h
@@ -611,6 +611,30 @@ TRACE_EVENT(sched_wake_idle_without_ipi,
TP_printk("cpu=%d", __entry->cpu)
);
+
+TRACE_EVENT(sched_contrib_scale_f,
+
+ TP_PROTO(int cpu, unsigned long freq_scale_factor,
+ unsigned long cpu_scale_factor),
+
+ TP_ARGS(cpu, freq_scale_factor, cpu_scale_factor),
+
+ TP_STRUCT__entry(
+ __field(int, cpu)
+ __field(unsigned long, freq_scale_factor)
+ __field(unsigned long, cpu_scale_factor)
+ ),
+
+ TP_fast_assign(
+ __entry->cpu = cpu;
+ __entry->freq_scale_factor = freq_scale_factor;
+ __entry->cpu_scale_factor = cpu_scale_factor;
+ ),
+
+ TP_printk("cpu=%d freq_scale_factor=%lu cpu_scale_factor=%lu",
+ __entry->cpu, __entry->freq_scale_factor,
+ __entry->cpu_scale_factor)
+);
#endif /* _TRACE_SCHED_H */
/* This part must be outside protection */