All of lore.kernel.org
 help / color / mirror / Atom feed
* [paulmckrcu:dev.2026.09.09a 42/56] kernel/rcu/tree_stall.h:332:29: error: implicit declaration of function 'rt_mutex_owner'; did you mean 'rt_mutex_init'?
@ 2026-09-11 12:41 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2026-09-11 12:41 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: oe-kbuild-all

tree:   https://github.com/paulmckrcu/linux dev.2026.09.09a
head:   d61d9b5dd56c6cf72b70bb5fb52b213ead9f7765
commit: e33488c41be623f7c7ef5b8763e20c45f1364d1c [42/56] rcu: Add running and boosted indications to RCU task stall dump
config: s390-randconfig-r133-20260911 (https://download.01.org/0day-ci/archive/20260911/202609112046.0850pdpM-lkp@intel.com/config)
compiler: s390-linux-gcc (GCC) 11.5.0
sparse: v0.6.5-rc1
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260911/202609112046.0850pdpM-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202609112046.0850pdpM-lkp@intel.com/

All error/warnings (new ones prefixed by >>):

   In file included from kernel/rcu/tree.c:5112:
   kernel/rcu/tree_stall.h: In function 'check_slow_task':
>> kernel/rcu/tree_stall.h:332:29: error: implicit declaration of function 'rt_mutex_owner'; did you mean 'rt_mutex_init'? [-Werror=implicit-function-declaration]
     332 |                         if (rt_mutex_owner(&rnp->boost_mtx.rtmutex) == t)
         |                             ^~~~~~~~~~~~~~
         |                             rt_mutex_init
>> kernel/rcu/tree_stall.h:332:69: warning: comparison between pointer and integer
     332 |                         if (rt_mutex_owner(&rnp->boost_mtx.rtmutex) == t)
         |                                                                     ^~
   In file included from kernel/rcu/tree_plugin.h:14,
                    from kernel/rcu/tree.c:5115:
   kernel/rcu/../locking/rtmutex_common.h: At top level:
>> kernel/rcu/../locking/rtmutex_common.h:231:35: error: conflicting types for 'rt_mutex_owner'; have 'struct task_struct *(struct rt_mutex_base *)'
     231 | static inline struct task_struct *rt_mutex_owner(struct rt_mutex_base *lock)
         |                                   ^~~~~~~~~~~~~~
   In file included from kernel/rcu/tree.c:5112:
   kernel/rcu/tree_stall.h:332:29: note: previous implicit declaration of 'rt_mutex_owner' with type 'int()'
     332 |                         if (rt_mutex_owner(&rnp->boost_mtx.rtmutex) == t)
         |                             ^~~~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +332 kernel/rcu/tree_stall.h

   311	
   312	/*
   313	 * Report out the state of a not-running task that is stalling the
   314	 * current RCU grace period.
   315	 */
   316	static int check_slow_task(struct task_struct *t, void *arg)
   317	{
   318		struct rcu_node *rnp;
   319		struct rcu_stall_chk_rdr *rscrp = arg;
   320	
   321		if (task_curr(t))
   322			return -EBUSY; // It is running, so decline to inspect it.
   323		rscrp->nesting = t->rcu_read_lock_nesting;
   324		rscrp->rs = t->rcu_read_unlock_special;
   325		rscrp->on_blkd_list = !list_empty(&t->rcu_node_entry);
   326		rscrp->rcu_rdr_running = task_curr(t);
   327		rscrp->rcu_rdr_boosted = 0;
   328		if (rscrp->on_blkd_list) {
   329			rnp = READ_ONCE(t->rcu_blocked_node);
   330			raw_spin_lock_rcu_node(rnp); /* irqs already disabled. */
   331			if (rnp == READ_ONCE(t->rcu_blocked_node)) {
 > 332				if (rt_mutex_owner(&rnp->boost_mtx.rtmutex) == t)
   333					rscrp->rcu_rdr_boosted = 1;
   334			} else {
   335				rscrp->rcu_rdr_boosted = 2;
   336			}
   337			raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
   338		}
   339		return 0;
   340	}
   341	

--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2026-09-11 12:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-11 12:41 [paulmckrcu:dev.2026.09.09a 42/56] kernel/rcu/tree_stall.h:332:29: error: implicit declaration of function 'rt_mutex_owner'; did you mean 'rt_mutex_init'? kernel test robot

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.