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 CC: Arjan van de Ven CC: Tejun Heo --- include/trace/events/workqueue.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) Index: linux-2.6-lttng/include/trace/events/workqueue.h =================================================================== --- linux-2.6-lttng.orig/include/trace/events/workqueue.h +++ linux-2.6-lttng/include/trace/events/workqueue.h @@ -22,7 +22,7 @@ DECLARE_EVENT_CLASS(workqueue_work, ), TP_printk("work struct %p", __entry->work) -); +) /** * workqueue_queue_work - called when a work gets queued @@ -60,7 +60,7 @@ TRACE_EVENT(workqueue_queue_work, TP_printk("work struct=%p function=%pf workqueue=%p req_cpu=%u cpu=%u", __entry->work, __entry->function, __entry->workqueue, __entry->req_cpu, __entry->cpu) -); +) /** * workqueue_activate_work - called when a work gets activated @@ -75,7 +75,7 @@ DEFINE_EVENT(workqueue_work, workqueue_a TP_PROTO(struct work_struct *work), TP_ARGS(work) -); +) /** * workqueue_execute_start - called immediately before the workqueue callback @@ -100,7 +100,7 @@ TRACE_EVENT(workqueue_execute_start, ), TP_printk("work struct %p: function %pf", __entry->work, __entry->function) -); +) /** * workqueue_execute_end - called immediately before the workqueue callback @@ -113,7 +113,7 @@ DEFINE_EVENT(workqueue_work, workqueue_e TP_PROTO(struct work_struct *work), TP_ARGS(work) -); +) #endif /* _TRACE_WORKQUEUE_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/