From: kernel test robot <lkp@intel.com>
To: Yue Zou <zouyue3@huawei.com>,
sfr@canb.auug.org.au, akpm@linux-foundation.org,
mhiramat@kernel.org, rostedt@goodmis.org, ahalaney@redhat.com,
vbabka@suse.cz, Jason@zx2c4.com, mark-pk.tsai@mediatek.com,
linux-kernel@vger.kernel.org
Cc: kbuild-all@lists.01.org
Subject: Re: [PATCH -next] smp: Move stub from main.c into smp.h
Date: Sat, 28 May 2022 20:26:57 +0800 [thread overview]
Message-ID: <202205282032.H8Urbl9N-lkp@intel.com> (raw)
In-Reply-To: <20220528111122.1888581-1-zouyue3@huawei.com>
Hi Yue,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on next-20220527]
url: https://github.com/intel-lab-lkp/linux/commits/Yue-Zou/smp-Move-stub-from-main-c-into-smp-h/20220528-185146
base: d3fde8ff50ab265749704bd7fbcf70d35235421f
config: x86_64-randconfig-a013 (https://download.01.org/0day-ci/archive/20220528/202205282032.H8Urbl9N-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-1) 11.3.0
reproduce (this is a W=1 build):
# https://github.com/intel-lab-lkp/linux/commit/2efe286bd89edfa5448d29a5be89fd54df424c46
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Yue-Zou/smp-Move-stub-from-main-c-into-smp-h/20220528-185146
git checkout 2efe286bd89edfa5448d29a5be89fd54df424c46
# save the config file
mkdir build_dir && cp config build_dir/.config
make W=1 O=build_dir ARCH=x86_64 prepare
If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
In file included from include/linux/lockdep.h:14,
from include/linux/spinlock.h:62,
from include/linux/mmzone.h:8,
from include/linux/gfp.h:6,
from include/linux/slab.h:15,
from include/linux/crypto.h:20,
from arch/x86/kernel/asm-offsets.c:9:
>> include/linux/smp.h:186:27: warning: 'setup_max_cpus' defined but not used [-Wunused-const-variable=]
186 | static const unsigned int setup_max_cpus = NR_CPUS;
| ^~~~~~~~~~~~~~
--
fs/d_path.c:318:7: warning: no previous prototype for 'simple_dname' [-Wmissing-prototypes]
318 | char *simple_dname(struct dentry *dentry, char *buffer, int buflen)
| ^~~~~~~~~~~~
In file included from include/linux/lockdep.h:14,
from include/linux/spinlock.h:62,
from include/linux/wait.h:9,
from include/linux/wait_bit.h:8,
from include/linux/fs.h:6,
from include/uapi/linux/aio_abi.h:31,
from include/linux/syscalls.h:77,
from fs/d_path.c:2:
>> include/linux/smp.h:186:27: warning: 'setup_max_cpus' defined but not used [-Wunused-const-variable=]
186 | static const unsigned int setup_max_cpus = NR_CPUS;
| ^~~~~~~~~~~~~~
--
fs/io_uring.c: In function '__io_submit_flush_completions':
fs/io_uring.c:3152:40: warning: variable 'prev' set but not used [-Wunused-but-set-variable]
3152 | struct io_wq_work_node *node, *prev;
| ^~~~
In file included from include/linux/lockdep.h:14,
from include/linux/spinlock.h:62,
from include/linux/wait.h:9,
from include/linux/wait_bit.h:8,
from include/linux/fs.h:6,
from include/uapi/linux/aio_abi.h:31,
from include/linux/syscalls.h:77,
from fs/io_uring.c:45:
At top level:
>> include/linux/smp.h:186:27: warning: 'setup_max_cpus' defined but not used [-Wunused-const-variable=]
186 | static const unsigned int setup_max_cpus = NR_CPUS;
| ^~~~~~~~~~~~~~
--
In file included from include/linux/lockdep.h:14,
from include/linux/spinlock.h:62,
from include/linux/mmzone.h:8,
from include/linux/gfp.h:6,
from include/linux/slab.h:15,
from include/linux/crypto.h:20,
from arch/x86/kernel/asm-offsets.c:9:
>> include/linux/smp.h:186:27: warning: 'setup_max_cpus' defined but not used [-Wunused-const-variable=]
186 | static const unsigned int setup_max_cpus = NR_CPUS;
| ^~~~~~~~~~~~~~
vim +/setup_max_cpus +186 include/linux/smp.h
185
> 186 static const unsigned int setup_max_cpus = NR_CPUS;
187 static inline void setup_nr_cpu_ids(void) { }
188 static inline void smp_prepare_cpus(unsigned int maxcpus) { }
189
--
0-DAY CI Kernel Test Service
https://01.org/lkp
next prev parent reply other threads:[~2022-05-28 12:27 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-28 11:11 [PATCH -next] smp: Move stub from main.c into smp.h Yue Zou
2022-05-28 12:26 ` kernel test robot [this message]
2022-05-28 12:57 ` kernel test robot
2022-06-02 18:58 ` Thomas Gleixner
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=202205282032.H8Urbl9N-lkp@intel.com \
--to=lkp@intel.com \
--cc=Jason@zx2c4.com \
--cc=ahalaney@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark-pk.tsai@mediatek.com \
--cc=mhiramat@kernel.org \
--cc=rostedt@goodmis.org \
--cc=sfr@canb.auug.org.au \
--cc=vbabka@suse.cz \
--cc=zouyue3@huawei.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 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.