From: kernel test robot <lkp@intel.com>
To: Yury Norov <yury.norov@gmail.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
linux-kernel@vger.kernel.org
Subject: [norov:bitmap-cocci 15/15] kernel/sched/topology.c:2002:45: error: too many arguments to function call, expected single argument 'srcp', have 2 arguments
Date: Sat, 7 May 2022 21:51:57 +0800 [thread overview]
Message-ID: <202205072127.9RxAaefa-lkp@intel.com> (raw)
tree: https://github.com/norov/linux bitmap-cocci
head: 3175a64928a804328d3f9a87af8bfda683539bee
commit: 3175a64928a804328d3f9a87af8bfda683539bee [15/15] sched/topology: replace cpumask_weight() with cpumask_weight_eq where appropriate
config: x86_64-randconfig-a016 (https://download.01.org/0day-ci/archive/20220507/202205072127.9RxAaefa-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project af4cf1c6b8ed0d8102fc5e69acdc2fcbbcdaa9a7)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/norov/linux/commit/3175a64928a804328d3f9a87af8bfda683539bee
git remote add norov https://github.com/norov/linux
git fetch --no-tags norov bitmap-cocci
git checkout 3175a64928a804328d3f9a87af8bfda683539bee
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
In file included from kernel/sched/build_utility.c:89:
>> kernel/sched/topology.c:2002:45: error: too many arguments to function call, expected single argument 'srcp', have 2 arguments
if (!cpumask_weight(cpumask_of_node(node), 1))
~~~~~~~~~~~~~~ ^
include/linux/cpumask.h:573:28: note: 'cpumask_weight' declared here
static inline unsigned int cpumask_weight(const struct cpumask *srcp)
^
1 error generated.
vim +/srcp +2002 kernel/sched/topology.c
1989
1990 /*
1991 * Call with hotplug lock held
1992 */
1993 void sched_update_numa(int cpu, bool online)
1994 {
1995 int node;
1996
1997 node = cpu_to_node(cpu);
1998 /*
1999 * Scheduler NUMA topology is updated when the first CPU of a
2000 * node is onlined or the last CPU of a node is offlined.
2001 */
> 2002 if (!cpumask_weight(cpumask_of_node(node), 1))
2003 return;
2004
2005 sched_reset_numa();
2006 sched_init_numa(online ? NUMA_NO_NODE : node);
2007 }
2008
--
0-DAY CI Kernel Test Service
https://01.org/lkp
reply other threads:[~2022-05-07 13:52 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=202205072127.9RxAaefa-lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=yury.norov@gmail.com \
/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