Re: [PATCH v2 1/6] tracing: add __print_flags_u64()

2016-12-01 Thread Ross Zwisler
On Thu, Dec 01, 2016 at 09:12:54AM -0500, Steven Rostedt wrote: > On Wed, 30 Nov 2016 16:45:28 -0700 > Ross Zwisler wrote: > > diff --git a/kernel/trace/trace_output.c b/kernel/trace/trace_output.c > > index 3fc2042..ed4398f 100644 > > --- a/kernel/trace/trace_output.c > > +++ b/kernel/trace/trace

Re: [PATCH v2 1/6] tracing: add __print_flags_u64()

2016-12-01 Thread Steven Rostedt
On Wed, 30 Nov 2016 16:45:28 -0700 Ross Zwisler wrote: > Add __print_flags_u64() and the helper trace_print_flags_seq_u64() in the > same spirit as __print_symbolic_u64() and trace_print_symbols_seq_u64(). > These functions allow us to print symbols associated with flags that are 64 > bits wide e

[PATCH v2 1/6] tracing: add __print_flags_u64()

2016-11-30 Thread Ross Zwisler
Add __print_flags_u64() and the helper trace_print_flags_seq_u64() in the same spirit as __print_symbolic_u64() and trace_print_symbols_seq_u64(). These functions allow us to print symbols associated with flags that are 64 bits wide even on 32 bit machines. These will be used by the DAX code so th