Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1284416
| From | Josh Triplett <josh@joshtriplett.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH tip/core/rcu 5/8] rcutorture: Print symbolic name for rcu_torture_writer_state |
| Date | 2015-12-05 02:10 +0100 |
| Message-ID | <qC9wl-1TA-1@gated-at.bofh.it> (permalink) |
| References | <qC8TD-1qz-3@gated-at.bofh.it> <qC8TE-1qz-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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@linux.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@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH tip/core/rcu 5/8] rcutorture: Print symbolic name for rcu_torture_writer_state "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2015-12-05 01:30 +0100
Re: [PATCH tip/core/rcu 5/8] rcutorture: Print symbolic name for rcu_torture_writer_state Josh Triplett <josh@joshtriplett.org> - 2015-12-05 02:10 +0100
Re: [PATCH tip/core/rcu 5/8] rcutorture: Print symbolic name for rcu_torture_writer_state "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2015-12-06 02:50 +0100
csiph-web