Part of the gradual TRACE_EVENT() semicolon removal. Enables creation of array of events, thus saving space for trace event probes. Signed-off-by: Mathieu Desnoyers CC: Steven Rostedt CC: Frederic Weisbecker CC: Ingo Molnar CC: Thomas Gleixner --- include/trace/events/irq.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) Index: linux-2.6-lttng/include/trace/events/irq.h =================================================================== --- linux-2.6-lttng.orig/include/trace/events/irq.h +++ linux-2.6-lttng/include/trace/events/irq.h @@ -51,7 +51,7 @@ TRACE_EVENT(irq_handler_entry, ), TP_printk("irq=%d name=%s", __entry->irq, __get_str(name)) -); +) /** * irq_handler_exit - called immediately after the irq action handler returns @@ -82,7 +82,7 @@ TRACE_EVENT(irq_handler_exit, TP_printk("irq=%d ret=%s", __entry->irq, __entry->ret ? "handled" : "unhandled") -); +) DECLARE_EVENT_CLASS(softirq, @@ -100,7 +100,7 @@ DECLARE_EVENT_CLASS(softirq, TP_printk("vec=%u [action=%s]", __entry->vec, show_softirq_name(__entry->vec)) -); +) /** * softirq_entry - called immediately before the softirq handler @@ -114,7 +114,7 @@ DEFINE_EVENT(softirq, softirq_entry, TP_PROTO(unsigned int vec_nr), TP_ARGS(vec_nr) -); +) /** * softirq_exit - called immediately after the softirq handler returns @@ -128,7 +128,7 @@ DEFINE_EVENT(softirq, softirq_exit, TP_PROTO(unsigned int vec_nr), TP_ARGS(vec_nr) -); +) /** * softirq_raise - called immediately when a softirq is raised @@ -142,7 +142,7 @@ DEFINE_EVENT(softirq, softirq_raise, TP_PROTO(unsigned int vec_nr), TP_ARGS(vec_nr) -); +) #endif /* _TRACE_IRQ_H */ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/