Re: [PATCH tip/core/rcu 6/8] rcutorture: Print symbolic name for ->gp_state

2015-12-05 Thread Josh Triplett
On Sat, Dec 05, 2015 at 05:54:36PM -0800, Paul E. McKenney wrote: > On Fri, Dec 04, 2015 at 05:04:21PM -0800, Josh Triplett wrote: > > On Fri, Dec 04, 2015 at 04:23:50PM -0800, Paul E. McKenney wrote: > > > Currently, ->gp_state is printed as an integer, which slows debugging. > > > This commit

Re: [PATCH tip/core/rcu 6/8] rcutorture: Print symbolic name for ->gp_state

2015-12-05 Thread Paul E. McKenney
On Fri, Dec 04, 2015 at 05:04:21PM -0800, Josh Triplett wrote: > On Fri, Dec 04, 2015 at 04:23:50PM -0800, Paul E. McKenney wrote: > > Currently, ->gp_state is printed as an integer, which slows debugging. > > This commit therefore prints a symbolic name in addition to the integer. > > > >

Re: [PATCH tip/core/rcu 6/8] rcutorture: Print symbolic name for ->gp_state

2015-12-05 Thread Paul E. McKenney
On Fri, Dec 04, 2015 at 05:04:21PM -0800, Josh Triplett wrote: > On Fri, Dec 04, 2015 at 04:23:50PM -0800, Paul E. McKenney wrote: > > Currently, ->gp_state is printed as an integer, which slows debugging. > > This commit therefore prints a symbolic name in addition to the integer. > > > >

Re: [PATCH tip/core/rcu 6/8] rcutorture: Print symbolic name for ->gp_state

2015-12-05 Thread Josh Triplett
On Sat, Dec 05, 2015 at 05:54:36PM -0800, Paul E. McKenney wrote: > On Fri, Dec 04, 2015 at 05:04:21PM -0800, Josh Triplett wrote: > > On Fri, Dec 04, 2015 at 04:23:50PM -0800, Paul E. McKenney wrote: > > > Currently, ->gp_state is printed as an integer, which slows debugging. > > > This commit

Re: [PATCH tip/core/rcu 6/8] rcutorture: Print symbolic name for ->gp_state

2015-12-04 Thread Josh Triplett
On Fri, Dec 04, 2015 at 04:23:50PM -0800, Paul E. McKenney wrote: > Currently, ->gp_state is printed as an integer, which slows debugging. > This commit therefore prints a symbolic name in addition to the integer. > > Signed-off-by: Paul E. McKenney > [ Updated to fix relational operator called

[PATCH tip/core/rcu 6/8] rcutorture: Print symbolic name for ->gp_state

2015-12-04 Thread Paul E. McKenney
Currently, ->gp_state is printed as an integer, which slows debugging. This commit therefore prints a symbolic name in addition to the integer. Signed-off-by: Paul E. McKenney [ Updated to fix relational operator called out by Dan Carpenter. ] --- kernel/rcu/tree.c | 15 +--

[PATCH tip/core/rcu 6/8] rcutorture: Print symbolic name for ->gp_state

2015-12-04 Thread Paul E. McKenney
Currently, ->gp_state is printed as an integer, which slows debugging. This commit therefore prints a symbolic name in addition to the integer. Signed-off-by: Paul E. McKenney [ Updated to fix relational operator called out by Dan Carpenter. ] --- kernel/rcu/tree.c |

Re: [PATCH tip/core/rcu 6/8] rcutorture: Print symbolic name for ->gp_state

2015-12-04 Thread Josh Triplett
On Fri, Dec 04, 2015 at 04:23:50PM -0800, Paul E. McKenney wrote: > Currently, ->gp_state is printed as an integer, which slows debugging. > This commit therefore prints a symbolic name in addition to the integer. > > Signed-off-by: Paul E. McKenney > [ Updated to fix