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: Anton Blanchard CC: Paul Mackerras CC: Christoph Hellwig CC: Jeremy Kerr CC: Benjamin Herrenschmidt --- arch/powerpc/include/asm/trace.h | 12 ++++++------ arch/powerpc/platforms/cell/spufs/sputrace.h | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) Index: linux-2.6-lttng/arch/powerpc/include/asm/trace.h =================================================================== --- linux-2.6-lttng.orig/arch/powerpc/include/asm/trace.h +++ linux-2.6-lttng/arch/powerpc/include/asm/trace.h @@ -23,7 +23,7 @@ TRACE_EVENT(irq_entry, ), TP_printk("pt_regs=%p", __entry->regs) -); +) TRACE_EVENT(irq_exit, @@ -40,7 +40,7 @@ TRACE_EVENT(irq_exit, ), TP_printk("pt_regs=%p", __entry->regs) -); +) TRACE_EVENT(timer_interrupt_entry, @@ -57,7 +57,7 @@ TRACE_EVENT(timer_interrupt_entry, ), TP_printk("pt_regs=%p", __entry->regs) -); +) TRACE_EVENT(timer_interrupt_exit, @@ -74,7 +74,7 @@ TRACE_EVENT(timer_interrupt_exit, ), TP_printk("pt_regs=%p", __entry->regs) -); +) #ifdef CONFIG_PPC_PSERIES extern void hcall_tracepoint_regfunc(void); @@ -97,7 +97,7 @@ TRACE_EVENT_FN(hcall_entry, TP_printk("opcode=%lu", __entry->opcode), hcall_tracepoint_regfunc, hcall_tracepoint_unregfunc -); +) TRACE_EVENT_FN(hcall_exit, @@ -119,7 +119,7 @@ TRACE_EVENT_FN(hcall_exit, TP_printk("opcode=%lu retval=%lu", __entry->opcode, __entry->retval), hcall_tracepoint_regfunc, hcall_tracepoint_unregfunc -); +) #endif #endif /* _TRACE_POWERPC_H */ Index: linux-2.6-lttng/arch/powerpc/platforms/cell/spufs/sputrace.h =================================================================== --- linux-2.6-lttng.orig/arch/powerpc/platforms/cell/spufs/sputrace.h +++ linux-2.6-lttng/arch/powerpc/platforms/cell/spufs/sputrace.h @@ -24,7 +24,7 @@ TRACE_EVENT(spufs_context, TP_printk("%s (ctxthread = %d, spu = %d)", __entry->name, __entry->owner_tid, __entry->number) -); +) #define spu_context_trace(name, ctx, spu) \ trace_spufs_context(ctx, spu, __stringify(name)) -- 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/