2 * Copyright (C) 2009 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
3 * Copyright (C) 2009 Johannes Berg <johannes@sipsolutions.net>
5 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation;
9 * version 2.1 of the License (not later!)
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this program; if not, see <http://www.gnu.org/licenses>
19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 #include "event-parse.h"
26 #include "trace-seq.h"
28 static int timer_expire_handler(struct trace_seq
*s
,
29 struct tep_record
*record
,
30 struct tep_event_format
*event
, void *context
)
32 trace_seq_printf(s
, "hrtimer=");
34 if (tep_print_num_field(s
, "0x%llx", event
, "timer",
36 tep_print_num_field(s
, "0x%llx", event
, "hrtimer",
39 trace_seq_printf(s
, " now=");
41 tep_print_num_field(s
, "%llu", event
, "now", record
, 1);
43 tep_print_func_field(s
, " function=%s", event
, "function",
48 static int timer_start_handler(struct trace_seq
*s
,
49 struct tep_record
*record
,
50 struct tep_event_format
*event
, void *context
)
52 trace_seq_printf(s
, "hrtimer=");
54 if (tep_print_num_field(s
, "0x%llx", event
, "timer",
56 tep_print_num_field(s
, "0x%llx", event
, "hrtimer",
59 tep_print_func_field(s
, " function=%s", event
, "function",
62 trace_seq_printf(s
, " expires=");
63 tep_print_num_field(s
, "%llu", event
, "expires", record
, 1);
65 trace_seq_printf(s
, " softexpires=");
66 tep_print_num_field(s
, "%llu", event
, "softexpires", record
, 1);
70 int TEP_PLUGIN_LOADER(struct tep_handle
*pevent
)
72 tep_register_event_handler(pevent
, -1,
73 "timer", "hrtimer_expire_entry",
74 timer_expire_handler
, NULL
);
76 tep_register_event_handler(pevent
, -1, "timer", "hrtimer_start",
77 timer_start_handler
, NULL
);
81 void TEP_PLUGIN_UNLOADER(struct tep_handle
*pevent
)
83 tep_unregister_event_handler(pevent
, -1,
84 "timer", "hrtimer_expire_entry",
85 timer_expire_handler
, NULL
);
87 tep_unregister_event_handler(pevent
, -1, "timer", "hrtimer_start",
88 timer_start_handler
, NULL
);