diff options
author | Steven Rostedt <srostedt@redhat.com> | 2008-11-07 22:36:02 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-08 03:51:34 -0500 |
commit | bbf5b1a0cecb56de6236db8b01c5bfb7ab8ba8b2 (patch) | |
tree | ca72072808748d3ebfcf9a58a1255cd6ce63fee8 /kernel/trace/trace_sched_wakeup.c | |
parent | 49833fc232bd6a5076496994d855f601354501d7 (diff) |
ftrace: remove ctrl_update method
Impact: Remove the ctrl_update tracer method
With the new quick start/stop method of tracing, the ctrl_update
method is out of date.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/trace/trace_sched_wakeup.c')
-rw-r--r-- | kernel/trace/trace_sched_wakeup.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/kernel/trace/trace_sched_wakeup.c b/kernel/trace/trace_sched_wakeup.c index 240577bc8ba5..23e54d4e4d92 100644 --- a/kernel/trace/trace_sched_wakeup.c +++ b/kernel/trace/trace_sched_wakeup.c | |||
@@ -348,14 +348,6 @@ static void wakeup_tracer_reset(struct trace_array *tr) | |||
348 | } | 348 | } |
349 | } | 349 | } |
350 | 350 | ||
351 | static void wakeup_tracer_ctrl_update(struct trace_array *tr) | ||
352 | { | ||
353 | if (tr->ctrl) | ||
354 | start_wakeup_tracer(tr); | ||
355 | else | ||
356 | stop_wakeup_tracer(tr); | ||
357 | } | ||
358 | |||
359 | static void wakeup_tracer_start(struct trace_array *tr) | 351 | static void wakeup_tracer_start(struct trace_array *tr) |
360 | { | 352 | { |
361 | wakeup_reset(tr); | 353 | wakeup_reset(tr); |
@@ -393,7 +385,6 @@ static struct tracer wakeup_tracer __read_mostly = | |||
393 | .stop = wakeup_tracer_stop, | 385 | .stop = wakeup_tracer_stop, |
394 | .open = wakeup_tracer_open, | 386 | .open = wakeup_tracer_open, |
395 | .close = wakeup_tracer_close, | 387 | .close = wakeup_tracer_close, |
396 | .ctrl_update = wakeup_tracer_ctrl_update, | ||
397 | .print_max = 1, | 388 | .print_max = 1, |
398 | #ifdef CONFIG_FTRACE_SELFTEST | 389 | #ifdef CONFIG_FTRACE_SELFTEST |
399 | .selftest = trace_selftest_startup_wakeup, | 390 | .selftest = trace_selftest_startup_wakeup, |