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_mmiotrace.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_mmiotrace.c')
-rw-r--r-- | kernel/trace/trace_mmiotrace.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/kernel/trace/trace_mmiotrace.c b/kernel/trace/trace_mmiotrace.c index f28484618ff0..fa9354e78b57 100644 --- a/kernel/trace/trace_mmiotrace.c +++ b/kernel/trace/trace_mmiotrace.c | |||
@@ -49,15 +49,10 @@ static void mmio_trace_reset(struct trace_array *tr) | |||
49 | mmio_trace_array = NULL; | 49 | mmio_trace_array = NULL; |
50 | } | 50 | } |
51 | 51 | ||
52 | static void mmio_trace_ctrl_update(struct trace_array *tr) | 52 | static void mmio_trace_start(struct trace_array *tr) |
53 | { | 53 | { |
54 | pr_debug("in %s\n", __func__); | 54 | pr_debug("in %s\n", __func__); |
55 | if (tr->ctrl) { | 55 | mmio_reset_data(tr); |
56 | mmio_reset_data(tr); | ||
57 | enable_mmiotrace(); | ||
58 | } else { | ||
59 | disable_mmiotrace(); | ||
60 | } | ||
61 | } | 56 | } |
62 | 57 | ||
63 | static int mmio_print_pcidev(struct trace_seq *s, const struct pci_dev *dev) | 58 | static int mmio_print_pcidev(struct trace_seq *s, const struct pci_dev *dev) |
@@ -298,10 +293,10 @@ static struct tracer mmio_tracer __read_mostly = | |||
298 | .name = "mmiotrace", | 293 | .name = "mmiotrace", |
299 | .init = mmio_trace_init, | 294 | .init = mmio_trace_init, |
300 | .reset = mmio_trace_reset, | 295 | .reset = mmio_trace_reset, |
296 | .start = mmio_trace_start, | ||
301 | .pipe_open = mmio_pipe_open, | 297 | .pipe_open = mmio_pipe_open, |
302 | .close = mmio_close, | 298 | .close = mmio_close, |
303 | .read = mmio_read, | 299 | .read = mmio_read, |
304 | .ctrl_update = mmio_trace_ctrl_update, | ||
305 | .print_line = mmio_print_line, | 300 | .print_line = mmio_print_line, |
306 | }; | 301 | }; |
307 | 302 | ||