All of lore.kernel.org
 help / color / mirror / Atom feed
* [linux-next:master 4055/10701] kernel/rcu/tree_stall.h:208:19: warning: variable 'rnp' set but not used
@ 2020-05-19 20:49 kbuild test robot
  2020-05-19 22:12 ` Paul E. McKenney
  0 siblings, 1 reply; 2+ messages in thread
From: kbuild test robot @ 2020-05-19 20:49 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 1966 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   fb57b1fabcb28f358901b2df90abd2b48abc1ca8
commit: 5bef8da66a9c45d3c371d74463894f1fc31dfdda [4055/10701] rcu: Add per-task state to RCU CPU stall warnings
config: nios2-randconfig-r021-20200519 (attached as .config)
compiler: nios2-linux-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        git checkout 5bef8da66a9c45d3c371d74463894f1fc31dfdda
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=nios2 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>

All warnings (new ones prefixed by >>, old ones prefixed by <<):

In file included from kernel/rcu/tree.c:4075:
kernel/rcu/tree_stall.h: In function 'check_slow_task':
>> kernel/rcu/tree_stall.h:208:19: warning: variable 'rnp' set but not used [-Wunused-but-set-variable]
208 |  struct rcu_node *rnp;
|                   ^~~

vim +/rnp +208 kernel/rcu/tree_stall.h

   201	
   202	/*
   203	 * Report out the state of a not-running task that is stalling the
   204	 * current RCU grace period.
   205	 */
   206	static bool check_slow_task(struct task_struct *t, void *arg)
   207	{
 > 208		struct rcu_node *rnp;
   209		struct rcu_stall_chk_rdr *rscrp = arg;
   210	
   211		if (task_curr(t))
   212			return false; // It is running, so decline to inspect it.
   213		rscrp->nesting = t->rcu_read_lock_nesting;
   214		rscrp->rs = t->rcu_read_unlock_special;
   215		rnp = t->rcu_blocked_node;
   216		rscrp->on_blkd_list = !list_empty(&t->rcu_node_entry);
   217		return true;
   218	}
   219	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 28662 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [linux-next:master 4055/10701] kernel/rcu/tree_stall.h:208:19: warning: variable 'rnp' set but not used
  2020-05-19 20:49 [linux-next:master 4055/10701] kernel/rcu/tree_stall.h:208:19: warning: variable 'rnp' set but not used kbuild test robot
@ 2020-05-19 22:12 ` Paul E. McKenney
  0 siblings, 0 replies; 2+ messages in thread
From: Paul E. McKenney @ 2020-05-19 22:12 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2196 bytes --]

On Wed, May 20, 2020 at 04:49:01AM +0800, kbuild test robot wrote:
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
> head:   fb57b1fabcb28f358901b2df90abd2b48abc1ca8
> commit: 5bef8da66a9c45d3c371d74463894f1fc31dfdda [4055/10701] rcu: Add per-task state to RCU CPU stall warnings
> config: nios2-randconfig-r021-20200519 (attached as .config)
> compiler: nios2-linux-gcc (GCC) 9.3.0
> reproduce:
>         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>         chmod +x ~/bin/make.cross
>         git checkout 5bef8da66a9c45d3c371d74463894f1fc31dfdda
>         # save the attached .config to linux build tree
>         COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=nios2 
> 
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kbuild test robot <lkp@intel.com>

Good catch, fixed with your Reported-by.

							Thanx, Paul

> All warnings (new ones prefixed by >>, old ones prefixed by <<):
> 
> In file included from kernel/rcu/tree.c:4075:
> kernel/rcu/tree_stall.h: In function 'check_slow_task':
> >> kernel/rcu/tree_stall.h:208:19: warning: variable 'rnp' set but not used [-Wunused-but-set-variable]
> 208 |  struct rcu_node *rnp;
> |                   ^~~
> 
> vim +/rnp +208 kernel/rcu/tree_stall.h
> 
>    201	
>    202	/*
>    203	 * Report out the state of a not-running task that is stalling the
>    204	 * current RCU grace period.
>    205	 */
>    206	static bool check_slow_task(struct task_struct *t, void *arg)
>    207	{
>  > 208		struct rcu_node *rnp;
>    209		struct rcu_stall_chk_rdr *rscrp = arg;
>    210	
>    211		if (task_curr(t))
>    212			return false; // It is running, so decline to inspect it.
>    213		rscrp->nesting = t->rcu_read_lock_nesting;
>    214		rscrp->rs = t->rcu_read_unlock_special;
>    215		rnp = t->rcu_blocked_node;
>    216		rscrp->on_blkd_list = !list_empty(&t->rcu_node_entry);
>    217		return true;
>    218	}
>    219	
> 
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-05-19 22:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-19 20:49 [linux-next:master 4055/10701] kernel/rcu/tree_stall.h:208:19: warning: variable 'rnp' set but not used kbuild test robot
2020-05-19 22:12 ` Paul E. McKenney

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.