diff options
author | Thomas Renninger <trenn@suse.de> | 2011-01-03 11:50:44 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-01-04 02:16:54 -0500 |
commit | 25e41933b58777f2d020c3b0186b430ea004ec28 (patch) | |
tree | a4ea8bb52509139b52c35d540928c12b33098f40 /drivers/cpufreq | |
parent | 61a0d49c33c7fd57c14895e5b0760bd02b65ac1f (diff) |
perf: Clean up power events by introducing new, more generic ones
Add these new power trace events:
power:cpu_idle
power:cpu_frequency
power:machine_suspend
The old C-state/idle accounting events:
power:power_start
power:power_end
Have now a replacement (but we are still keeping the old
tracepoints for compatibility):
power:cpu_idle
and
power:power_frequency
is replaced with:
power:cpu_frequency
power:machine_suspend is newly introduced.
Jean Pihet has a patch integrated into the generic layer
(kernel/power/suspend.c) which will make use of it.
the type= field got removed from both, it was never
used and the type is differed by the event type itself.
perf timechart userspace tool gets adjusted in a separate patch.
Signed-off-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Acked-by: Arjan van de Ven <arjan@linux.intel.com>
Acked-by: Jean Pihet <jean.pihet@newoldbits.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: rjw@sisk.pl
LKML-Reference: <1294073445-14812-3-git-send-email-trenn@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
LKML-Reference: <1290072314-31155-2-git-send-email-trenn@suse.de>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index c63a43823744..1109f6848a43 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -355,6 +355,7 @@ void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state) | |||
355 | dprintk("FREQ: %lu - CPU: %lu", (unsigned long)freqs->new, | 355 | dprintk("FREQ: %lu - CPU: %lu", (unsigned long)freqs->new, |
356 | (unsigned long)freqs->cpu); | 356 | (unsigned long)freqs->cpu); |
357 | trace_power_frequency(POWER_PSTATE, freqs->new, freqs->cpu); | 357 | trace_power_frequency(POWER_PSTATE, freqs->new, freqs->cpu); |
358 | trace_cpu_frequency(freqs->new, freqs->cpu); | ||
358 | srcu_notifier_call_chain(&cpufreq_transition_notifier_list, | 359 | srcu_notifier_call_chain(&cpufreq_transition_notifier_list, |
359 | CPUFREQ_POSTCHANGE, freqs); | 360 | CPUFREQ_POSTCHANGE, freqs); |
360 | if (likely(policy) && likely(policy->cpu == freqs->cpu)) | 361 | if (likely(policy) && likely(policy->cpu == freqs->cpu)) |