[<prev] [next>] [day] [month] [year] [list]
Message-ID: <202208241143.v714cX1Y-lkp@intel.com>
Date: Wed, 24 Aug 2022 11:07:31 +0800
From: kernel test robot <lkp@...el.com>
To: Christophe de Dinechin <dinechin@...hat.com>
Cc: kbuild-all@...ts.01.org, linux-kernel@...r.kernel.org,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Linux Memory Management List <linux-mm@...ck.org>
Subject: [linux-stable-rc:linux-5.4.y 3985/5188]
include/linux/nodemask.h:380:20: error: comparison of unsigned expression in
'>= 0' is always true
tree: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-5.4.y
head: 1cece69eaa889a27cf3e9f2051fcc57eda957271
commit: 73bdb2359dbc260364141c83dd1e1a5497f29d3d [3985/5188] nodemask.h: fix compilation error with GCC12
config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20220824/202208241143.v714cX1Y-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 12.1.0
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://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git/commit/?id=73bdb2359dbc260364141c83dd1e1a5497f29d3d
git remote add linux-stable-rc https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
git fetch --no-tags linux-stable-rc linux-5.4.y
git checkout 73bdb2359dbc260364141c83dd1e1a5497f29d3d
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=alpha SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@...el.com>
All errors (new ones prefixed by >>):
arch/alpha/mm/numa.c:162:1: error: no previous prototype for 'setup_memory' [-Werror=missing-prototypes]
162 | setup_memory(void *kernel_end)
| ^~~~~~~~~~~~
In file included from include/linux/mmzone.h:17,
from include/linux/gfp.h:6,
from include/linux/mm.h:10,
from arch/alpha/mm/numa.c:12:
arch/alpha/mm/numa.c: In function 'paging_init':
>> include/linux/nodemask.h:380:20: error: comparison of unsigned expression in '>= 0' is always true [-Werror=type-limits]
380 | (node >= 0) && (node) < MAX_NUMNODES; \
| ^~
include/linux/nodemask.h:433:9: note: in expansion of macro 'for_each_node_mask'
433 | for_each_node_mask((__node), node_states[__state])
| ^~~~~~~~~~~~~~~~~~
include/linux/nodemask.h:513:36: note: in expansion of macro 'for_each_node_state'
513 | #define for_each_online_node(node) for_each_node_state(node, N_ONLINE)
| ^~~~~~~~~~~~~~~~~~~
arch/alpha/mm/numa.c:218:9: note: in expansion of macro 'for_each_online_node'
218 | for_each_online_node(nid) {
| ^~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
vim +380 include/linux/nodemask.h
376
377 #if MAX_NUMNODES > 1
378 #define for_each_node_mask(node, mask) \
379 for ((node) = first_node(mask); \
> 380 (node >= 0) && (node) < MAX_NUMNODES; \
381 (node) = next_node((node), (mask)))
382 #else /* MAX_NUMNODES == 1 */
383 #define for_each_node_mask(node, mask) \
384 for ((node) = 0; (node) < 1 && !nodes_empty(mask); (node)++)
385 #endif /* MAX_NUMNODES */
386
--
0-DAY CI Kernel Test Service
https://01.org/lkp
Powered by blists - more mailing lists