Re: [PATCH 11/18] tracing: Add symbol type to function based events

2018-02-08 Thread Steven Rostedt
On Thu, 8 Feb 2018 20:03:41 +0900 Namhyung Kim wrote: > > @@ -76,6 +76,7 @@ typedef u64 x64; > > typedef u32 x32; > > typedef u16 x16; > > typedef u8 x8; > > +typedef void * symbol; > > > > #define TYPE_TUPLE(type) \ > > { #type, sizeof(type),

Re: [PATCH 11/18] tracing: Add symbol type to function based events

2018-02-08 Thread Steven Rostedt
On Thu, 8 Feb 2018 20:03:41 +0900 Namhyung Kim wrote: > > @@ -76,6 +76,7 @@ typedef u64 x64; > > typedef u32 x32; > > typedef u16 x16; > > typedef u8 x8; > > +typedef void * symbol; > > > > #define TYPE_TUPLE(type) \ > > { #type, sizeof(type), is_signed_type(type) } >

Re: [PATCH 11/18] tracing: Add symbol type to function based events

2018-02-08 Thread Namhyung Kim
On Fri, Feb 02, 2018 at 06:05:09PM -0500, Steven Rostedt wrote: > From: "Steven Rostedt (VMware)" > > Add a special type "symbol" that will use %pS to display the field of a > function based event. > > Signed-off-by: Steven Rostedt (VMware) > --- >

Re: [PATCH 11/18] tracing: Add symbol type to function based events

2018-02-08 Thread Namhyung Kim
On Fri, Feb 02, 2018 at 06:05:09PM -0500, Steven Rostedt wrote: > From: "Steven Rostedt (VMware)" > > Add a special type "symbol" that will use %pS to display the field of a > function based event. > > Signed-off-by: Steven Rostedt (VMware) > --- >

[PATCH 11/18] tracing: Add symbol type to function based events

2018-02-02 Thread Steven Rostedt
From: "Steven Rostedt (VMware)" Add a special type "symbol" that will use %pS to display the field of a function based event. Signed-off-by: Steven Rostedt (VMware) --- Documentation/trace/function-based-events.rst | 26 +-

[PATCH 11/18] tracing: Add symbol type to function based events

2018-02-02 Thread Steven Rostedt
From: "Steven Rostedt (VMware)" Add a special type "symbol" that will use %pS to display the field of a function based event. Signed-off-by: Steven Rostedt (VMware) --- Documentation/trace/function-based-events.rst | 26 +- kernel/trace/trace_event_ftrace.c