All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Paul E. McKenney" <paulmck@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev
Subject: [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'?
Date: Fri, 11 Sep 2026 20:41:51 +0800	[thread overview]
Message-ID: <202609112046.0850pdpM-lkp@intel.com> (raw)

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

                 reply	other threads:[~2026-09-11 12:45 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202609112046.0850pdpM-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=paulmck@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.