public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: include/linux/rculist.h:524:9: sparse: sparse: incompatible types in comparison expression (different address spaces):
Date: Mon, 13 Nov 2023 00:40:45 +0800	[thread overview]
Message-ID: <202311130034.cLZT80OM-lkp@intel.com> (raw)

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   1b907d0507354b74a4f2c286380cd6059af79248
commit: 6b03d1304a32dc8450c7516000a0fe07bef7c446 proc: Ensure we see the exit of each process tid exactly once
date:   3 years, 7 months ago
config: x86_64-allnoconfig (https://download.01.org/0day-ci/archive/20231113/202311130034.cLZT80OM-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231113/202311130034.cLZT80OM-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/202311130034.cLZT80OM-lkp@intel.com/

sparse warnings: (new ones prefixed by >>)
   kernel/pid.c:377:9: sparse: sparse: incompatible types in comparison expression (different address spaces):
   kernel/pid.c:377:9: sparse:    struct pid [noderef] <asn:4> *
   kernel/pid.c:377:9: sparse:    struct pid *
   kernel/pid.c:378:9: sparse: sparse: incompatible types in comparison expression (different address spaces):
   kernel/pid.c:378:9: sparse:    struct pid [noderef] <asn:4> *
   kernel/pid.c:378:9: sparse:    struct pid *
   kernel/pid.c:440:23: sparse: sparse: incompatible types in comparison expression (different address spaces):
   kernel/pid.c:440:23: sparse:    struct pid [noderef] <asn:4> *
   kernel/pid.c:440:23: sparse:    struct pid *
   kernel/pid.c:499:32: sparse: sparse: incompatible types in comparison expression (different address spaces):
   kernel/pid.c:499:32: sparse:    struct pid [noderef] <asn:4> *
   kernel/pid.c:499:32: sparse:    struct pid *
   kernel/pid.c: note: in included file (through include/linux/pid.h, include/linux/sched.h, include/linux/mm.h):
>> include/linux/rculist.h:524:9: sparse: sparse: incompatible types in comparison expression (different address spaces):
   include/linux/rculist.h:524:9: sparse:    struct hlist_node [noderef] <asn:4> *
>> include/linux/rculist.h:524:9: sparse:    struct hlist_node *
   include/linux/rculist.h:525:9: sparse: sparse: incompatible types in comparison expression (different address spaces):
   include/linux/rculist.h:525:9: sparse:    struct hlist_node [noderef] <asn:4> *
   include/linux/rculist.h:525:9: sparse:    struct hlist_node *

vim +524 include/linux/rculist.h

82524746c27fa4 Franck Bui-Huu    2008-05-12  508  
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  509  /**
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  510   * hlists_swap_heads_rcu - swap the lists the hlist heads point to
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  511   * @left:  The hlist head on the left
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  512   * @right: The hlist head on the right
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  513   *
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  514   * The lists start out as [@left  ][node1 ... ] and
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  515                            [@right ][node2 ... ]
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  516   * The lists end up as    [@left  ][node2 ... ]
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  517   *                        [@right ][node1 ... ]
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  518   */
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  519  static inline void hlists_swap_heads_rcu(struct hlist_head *left, struct hlist_head *right)
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  520  {
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  521  	struct hlist_node *node1 = left->first;
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  522  	struct hlist_node *node2 = right->first;
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  523  
35fc0e3b0bd5be Eric W. Biederman 2020-04-24 @524  	rcu_assign_pointer(left->first, node2);
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  525  	rcu_assign_pointer(right->first, node1);
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  526  	WRITE_ONCE(node2->pprev, &left->first);
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  527  	WRITE_ONCE(node1->pprev, &right->first);
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  528  }
35fc0e3b0bd5be Eric W. Biederman 2020-04-24  529  

:::::: The code at line 524 was first introduced by commit
:::::: 35fc0e3b0bd5be3b059e53ae90c4536ee4922330 rculist: Add hlists_swap_heads_rcu

:::::: TO: Eric W. Biederman <ebiederm@xmission.com>
:::::: CC: Eric W. Biederman <ebiederm@xmission.com>

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

                 reply	other threads:[~2023-11-12 16:41 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=202311130034.cLZT80OM-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=ebiederm@xmission.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox