aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/trace/trace_sysprof.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/trace/trace_sysprof.c')
-rw-r--r--kernel/trace/trace_sysprof.c6
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
142static void stop_stack_timers(void) 142static 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