lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 4 Dec 2015 17:02:21 -0800
From:	Josh Triplett <josh@...htriplett.org>
To:	"Paul E. McKenney" <paulmck@...ux.vnet.ibm.com>
Cc:	linux-kernel@...r.kernel.org, mingo@...nel.org,
	jiangshanlai@...il.com, dipankar@...ibm.com,
	akpm@...ux-foundation.org, mathieu.desnoyers@...icios.com,
	tglx@...utronix.de, peterz@...radead.org, rostedt@...dmis.org,
	dhowells@...hat.com, edumazet@...gle.com, dvhart@...ux.intel.com,
	fweisbec@...il.com, oleg@...hat.com, bobby.prani@...il.com
Subject: Re: [PATCH tip/core/rcu 5/8] rcutorture: Print symbolic name for
 rcu_torture_writer_state

On Fri, Dec 04, 2015 at 04:23:49PM -0800, Paul E. McKenney wrote:
> Currently, rcu_torture_writer_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 <paulmck@...ux.vnet.ibm.com>
> ---
>  kernel/rcu/rcutorture.c | 24 +++++++++++++++++++++++-
>  1 file changed, 23 insertions(+), 1 deletion(-)
> 
> diff --git a/kernel/rcu/rcutorture.c b/kernel/rcu/rcutorture.c
> index d89328e260df..adbb194e2b5d 100644
> --- a/kernel/rcu/rcutorture.c
> +++ b/kernel/rcu/rcutorture.c
> @@ -162,6 +162,27 @@ static int rcu_torture_writer_state;
>  #define RTWS_SYNC		7
>  #define RTWS_STUTTER		8
>  #define RTWS_STOPPING		9
> +static char * const rcu_torture_writer_state_names[] = {

Shouldn't this use "static const char * const"?  Also, see below.

> +	"RTWS_FIXED_DELAY",
> +	"RTWS_DELAY",
> +	"RTWS_REPLACE",
> +	"RTWS_DEF_FREE",
> +	"RTWS_EXP_SYNC",
> +	"RTWS_COND_GET",
> +	"RTWS_COND_SYNC",
> +	"RTWS_SYNC",
> +	"RTWS_STUTTER",
> +	"RTWS_STOPPING",
> +};
> +
> +char *rcu_torture_writer_state_getname(void)

This should return "const char *", I think.

> +{
> +	unsigned int i = READ_ONCE(rcu_torture_writer_state);
> +
> +	if (i >= ARRAY_SIZE(rcu_torture_writer_state_names))
> +		return "???";
> +	return rcu_torture_writer_state_names[i];
> +}
>  
>  #if defined(MODULE) || defined(CONFIG_RCU_TORTURE_TEST_RUNNABLE)
>  #define RCUTORTURE_RUNNABLE_INIT 1
> @@ -1307,7 +1328,8 @@ rcu_torture_stats_print(void)
>  
>  		rcutorture_get_gp_data(cur_ops->ttype,
>  				       &flags, &gpnum, &completed);
> -		pr_alert("??? Writer stall state %d g%lu c%lu f%#x\n",
> +		pr_alert("??? Writer stall state %s(%d) g%lu c%lu f%#x\n",
> +			 rcu_torture_writer_state_getname(),
>  			 rcu_torture_writer_state,
>  			 gpnum, completed, flags);
>  		show_rcu_gp_kthreads();
> -- 
> 2.5.2
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ