diff options
author | Jason Baron <jbaron@redhat.com> | 2009-02-11 13:57:25 -0500 |
---|---|---|
committer | Steven Rostedt <srostedt@redhat.com> | 2009-02-13 09:06:18 -0500 |
commit | b5f9fd0f8a05c9bafb91a9a85b9110938d8e585b (patch) | |
tree | 14e84d393f5dd1235fc6e256564d80e965daf3a7 /arch/x86 | |
parent | 45141d4667d208421ca787a3301542b6a5e0b112 (diff) |
tracing: convert c/p state power tracer to use tracepoints
Convert the c/p state "power" tracer to use tracepoints. Avoids a
function call when the tracer is disabled.
Signed-off-by: Jason Baron <jbaron@redhat.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c | 2 | ||||
-rw-r--r-- | arch/x86/kernel/process.c | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c index 7ed925edf4d2..c5d737cdb365 100644 --- a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c +++ b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c | |||
@@ -70,6 +70,8 @@ struct acpi_cpufreq_data { | |||
70 | 70 | ||
71 | static DEFINE_PER_CPU(struct acpi_cpufreq_data *, drv_data); | 71 | static DEFINE_PER_CPU(struct acpi_cpufreq_data *, drv_data); |
72 | 72 | ||
73 | DEFINE_TRACE(power_mark); | ||
74 | |||
73 | /* acpi_perf_data is a pointer to percpu data. */ | 75 | /* acpi_perf_data is a pointer to percpu data. */ |
74 | static struct acpi_processor_performance *acpi_perf_data; | 76 | static struct acpi_processor_performance *acpi_perf_data; |
75 | 77 | ||
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c index 026819ffcb0c..e0d0fd7ab514 100644 --- a/arch/x86/kernel/process.c +++ b/arch/x86/kernel/process.c | |||
@@ -19,6 +19,9 @@ EXPORT_SYMBOL(idle_nomwait); | |||
19 | 19 | ||
20 | struct kmem_cache *task_xstate_cachep; | 20 | struct kmem_cache *task_xstate_cachep; |
21 | 21 | ||
22 | DEFINE_TRACE(power_start); | ||
23 | DEFINE_TRACE(power_end); | ||
24 | |||
22 | int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src) | 25 | int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src) |
23 | { | 26 | { |
24 | *dst = *src; | 27 | *dst = *src; |