diff options
author | Robert Schöne <robert.schoene@tu-dresden.de> | 2010-06-14 13:37:20 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-06-18 11:35:10 +0200 |
commit | c882e0feb937af4e5b991cbd1c81536f37053e86 (patch) | |
tree | 9484ed7de5de761441b3e5128efadf4674dbbd1a /arch/x86/kernel/process_64.c | |
parent | 646b1db4956ba8bf748b835b5eba211133d91c2e (diff) | |
download | linux-stable-c882e0feb937af4e5b991cbd1c81536f37053e86.tar.gz linux-stable-c882e0feb937af4e5b991cbd1c81536f37053e86.tar.bz2 linux-stable-c882e0feb937af4e5b991cbd1c81536f37053e86.zip |
x86, perf: Add power_end event to process_*.c cpu_idle routine
Systems using the idle thread from process_32.c and process_64.c
do not generate power_end events which could be traced using
perf. This patch adds the event generation for such systems.
Signed-off-by: Robert Schoene <robert.schoene@tu-dresden.de>
Acked-by: Arjan van de Ven <arjan@linux.intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <1276515440.5441.45.camel@localhost>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/process_64.c')
-rw-r--r-- | arch/x86/kernel/process_64.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c index 3c2422a99f1f..3d9ea531ddd1 100644 --- a/arch/x86/kernel/process_64.c +++ b/arch/x86/kernel/process_64.c @@ -51,6 +51,8 @@ #include <asm/syscalls.h> #include <asm/debugreg.h> +#include <trace/events/power.h> + asmlinkage extern void ret_from_fork(void); DEFINE_PER_CPU(unsigned long, old_rsp); @@ -138,6 +140,9 @@ void cpu_idle(void) stop_critical_timings(); pm_idle(); start_critical_timings(); + + trace_power_end(smp_processor_id()); + /* In many cases the interrupt that ended idle has already called exit_idle. But some idle loops can be woken up without interrupt. */ |