2022-01-31 22:58:05

by Jiapeng Chong

[permalink] [raw]
Subject: [PATCH] srcu: make srcu_size_state_name static

This symbol is not used outside of srcutree.c, so marks it static.

Fixes the following sparse warning:

kernel/rcu/srcutree.c:1426:12: warning: symbol 'srcu_size_state_name'
was not declared. Should it be static?

Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Jiapeng Chong <[email protected]>
---
kernel/rcu/srcutree.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/rcu/srcutree.c b/kernel/rcu/srcutree.c
index 4201815744d8..31dbd41332f6 100644
--- a/kernel/rcu/srcutree.c
+++ b/kernel/rcu/srcutree.c
@@ -1423,7 +1423,7 @@ void srcutorture_get_gp_data(enum rcutorture_type test_type,
}
EXPORT_SYMBOL_GPL(srcutorture_get_gp_data);

-const char * const srcu_size_state_name[] =
+static const char * const srcu_size_state_name[] =
{
"SRCU_SIZE_SMALL",
"SRCU_SIZE_ALLOC",
--
2.20.1.7.g153144c


2022-02-02 11:40:39

by Paul E. McKenney

[permalink] [raw]
Subject: Re: [PATCH] srcu: make srcu_size_state_name static

On Sat, Jan 29, 2022 at 11:45:02AM +0800, Jiapeng Chong wrote:
> This symbol is not used outside of srcutree.c, so marks it static.
>
> Fixes the following sparse warning:
>
> kernel/rcu/srcutree.c:1426:12: warning: symbol 'srcu_size_state_name'
> was not declared. Should it be static?
>
> Reported-by: Abaci Robot <[email protected]>
> Signed-off-by: Jiapeng Chong <[email protected]>

And I did queue and push this, good catch, thank you!

Thanx, Paul

> ---
> kernel/rcu/srcutree.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/rcu/srcutree.c b/kernel/rcu/srcutree.c
> index 4201815744d8..31dbd41332f6 100644
> --- a/kernel/rcu/srcutree.c
> +++ b/kernel/rcu/srcutree.c
> @@ -1423,7 +1423,7 @@ void srcutorture_get_gp_data(enum rcutorture_type test_type,
> }
> EXPORT_SYMBOL_GPL(srcutorture_get_gp_data);
>
> -const char * const srcu_size_state_name[] =
> +static const char * const srcu_size_state_name[] =
> {
> "SRCU_SIZE_SMALL",
> "SRCU_SIZE_ALLOC",
> --
> 2.20.1.7.g153144c
>