summaryrefslogtreecommitdiffstats
path: root/include/trace/irq_event_types.h
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2009-03-09 15:47:18 -0400
committerSteven Rostedt <srostedt@redhat.com>2009-03-10 00:35:04 -0400
commit2939b0469d04ba9ac791aca9a81625d7eb50662b (patch)
tree573f10c39f34c670fdc6832415642738c5afb3f9 /include/trace/irq_event_types.h
parent156b5f172a64103bcb13b6d26288388b9019caa3 (diff)
downloadop-kernel-dev-2939b0469d04ba9ac791aca9a81625d7eb50662b.zip
op-kernel-dev-2939b0469d04ba9ac791aca9a81625d7eb50662b.tar.gz
tracing: replace TP<var> with TP_<var>
Impact: clean up The macros TPPROTO, TPARGS, TPFMT, TPRAWFMT, and TPCMD all look a bit ugly. This patch adds an underscore to their names. Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'include/trace/irq_event_types.h')
-rw-r--r--include/trace/irq_event_types.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/trace/irq_event_types.h b/include/trace/irq_event_types.h
index 65850bc..0147d9e 100644
--- a/include/trace/irq_event_types.h
+++ b/include/trace/irq_event_types.h
@@ -9,25 +9,25 @@
#define TRACE_SYSTEM irq
TRACE_EVENT_FORMAT(irq_handler_entry,
- TPPROTO(int irq, struct irqaction *action),
- TPARGS(irq, action),
- TPFMT("irq=%d handler=%s", irq, action->name),
+ TP_PROTO(int irq, struct irqaction *action),
+ TP_ARGS(irq, action),
+ TP_FMT("irq=%d handler=%s", irq, action->name),
TRACE_STRUCT(
TRACE_FIELD(int, irq, irq)
),
- TPRAWFMT("irq %d")
+ TP_RAW_FMT("irq %d")
);
TRACE_EVENT_FORMAT(irq_handler_exit,
- TPPROTO(int irq, struct irqaction *action, int ret),
- TPARGS(irq, action, ret),
- TPFMT("irq=%d handler=%s return=%s",
+ TP_PROTO(int irq, struct irqaction *action, int ret),
+ TP_ARGS(irq, action, ret),
+ TP_FMT("irq=%d handler=%s return=%s",
irq, action->name, ret ? "handled" : "unhandled"),
TRACE_STRUCT(
TRACE_FIELD(int, irq, irq)
TRACE_FIELD(int, ret, ret)
),
- TPRAWFMT("irq %d ret %d")
+ TP_RAW_FMT("irq %d ret %d")
);
#undef TRACE_SYSTEM
OpenPOWER on IntegriCloud