diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-05-12 15:20:47 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-23 17:39:38 -0400 |
commit | a6dd24f8d00cbccb560b19a723e6fb9bdfb20799 (patch) | |
tree | 8170d270a55b3d5856eef54a16e76b24d5a62c38 /kernel/trace/trace_sysprof.c | |
parent | 56a08bdcff20f0022bd9160c1093e56f763499aa (diff) |
ftrace: sysprof-plugin, add self-tests
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/trace/trace_sysprof.c')
-rw-r--r-- | kernel/trace/trace_sysprof.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/trace/trace_sysprof.c b/kernel/trace/trace_sysprof.c index b1137c11ef8b..b78f12f77fca 100644 --- a/kernel/trace/trace_sysprof.c +++ b/kernel/trace/trace_sysprof.c | |||
@@ -126,7 +126,7 @@ static void start_stack_timers(void) | |||
126 | for_each_online_cpu(cpu) { | 126 | for_each_online_cpu(cpu) { |
127 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); | 127 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
128 | start_stack_timer(cpu); | 128 | start_stack_timer(cpu); |
129 | printk("started timer on cpu%d\n", cpu); | 129 | printk(KERN_INFO "started sysprof timer on cpu%d\n", cpu); |
130 | } | 130 | } |
131 | set_cpus_allowed_ptr(current, &saved_mask); | 131 | set_cpus_allowed_ptr(current, &saved_mask); |
132 | } | 132 | } |
@@ -136,7 +136,7 @@ static void stop_stack_timer(int cpu) | |||
136 | struct hrtimer *hrtimer = &per_cpu(stack_trace_hrtimer, cpu); | 136 | struct hrtimer *hrtimer = &per_cpu(stack_trace_hrtimer, cpu); |
137 | 137 | ||
138 | hrtimer_cancel(hrtimer); | 138 | hrtimer_cancel(hrtimer); |
139 | printk("cancelled timer on cpu%d\n", cpu); | 139 | printk(KERN_INFO "cancelled sysprof timer on cpu%d\n", cpu); |
140 | } | 140 | } |
141 | 141 | ||
142 | static void stop_stack_timers(void) | 142 | static void stop_stack_timers(void) |
@@ -200,7 +200,7 @@ static struct tracer stack_trace __read_mostly = | |||
200 | .reset = stack_trace_reset, | 200 | .reset = stack_trace_reset, |
201 | .ctrl_update = stack_trace_ctrl_update, | 201 | .ctrl_update = stack_trace_ctrl_update, |
202 | #ifdef CONFIG_FTRACE_SELFTEST | 202 | #ifdef CONFIG_FTRACE_SELFTEST |
203 | .selftest = trace_selftest_startup_stack, | 203 | .selftest = trace_selftest_startup_sysprof, |
204 | #endif | 204 | #endif |
205 | }; | 205 | }; |
206 | 206 | ||