aboutsummaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>2011-03-16 19:04:31 -0400
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>2011-03-16 19:04:31 -0400
commit793f1685b603c418002254a6511cb7199b20959f (patch)
tree7c8e098b26d86f3146d8c9b2dad396d71b365991 /include/trace
parent7fb71a2b37692c601febe6558b15885ace379b20 (diff)
lttng-instrumentation/lttng-instrumentation-tasklets
LTTng instrumentation tasklets tasklet entry and exit events. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: 'Ingo Molnar' <mingo@elte.hu> CC: Frederic Weisbecker <fweisbec@gmail.com> CC: Jason Baron <jbaron@redhat.com> CC: 'Peter Zijlstra' <peterz@infradead.org> CC: Thomas Gleixner <tglx@linutronix.de> CC: Russell King <rmk+lkml@arm.linux.org.uk> CC: Masami Hiramatsu <mhiramat@redhat.com> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Hideo AOKI' <haoki@redhat.com> CC: Takashi Nishiie <t-nishiie@np.css.fujitsu.com> CC: 'Steven Rostedt' <rostedt@goodmis.org> CC: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/irq.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/trace/irq.h b/include/trace/irq.h
index d71ed340326..21881c7ded3 100644
--- a/include/trace/irq.h
+++ b/include/trace/irq.h
@@ -14,4 +14,17 @@ DECLARE_TRACE(irq_exit,
TP_PROTO(irqreturn_t retval),
TP_ARGS(retval));
+DECLARE_TRACE(irq_tasklet_low_entry,
+ TP_PROTO(struct tasklet_struct *t),
+ TP_ARGS(t));
+DECLARE_TRACE(irq_tasklet_low_exit,
+ TP_PROTO(struct tasklet_struct *t),
+ TP_ARGS(t));
+DECLARE_TRACE(irq_tasklet_high_entry,
+ TP_PROTO(struct tasklet_struct *t),
+ TP_ARGS(t));
+DECLARE_TRACE(irq_tasklet_high_exit,
+ TP_PROTO(struct tasklet_struct *t),
+ TP_ARGS(t));
+
#endif