* mm/ksm.c:2439:13: warning: stack frame size (2576) exceeds limit (2048) in 'ksm_do_scan'
@ 2023-05-11 14:14 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2023-05-11 14:14 UTC (permalink / raw)
To: Stefan Roesch
Cc: llvm, oe-kbuild-all, linux-kernel, Andrew Morton,
Linux Memory Management List, Steven Rostedt (Google)
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 80e62bc8487b049696e67ad133c503bf7f6806f7
commit: 739100c88f49a67c6487bb2d826b0b5a2ddc80e2 mm: add tracepoints to ksm
date: 6 weeks ago
config: mips-randconfig-r023-20230511 (https://download.01.org/0day-ci/archive/20230511/202305112201.5lqIyEo4-lkp@intel.com/config)
compiler: clang version 17.0.0 (https://github.com/llvm/llvm-project b0fb98227c90adf2536c9ad644a74d5e92961111)
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
# install mips cross compiling tool for clang build
# apt-get install binutils-mips64-linux-gnuabi64
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=739100c88f49a67c6487bb2d826b0b5a2ddc80e2
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout 739100c88f49a67c6487bb2d826b0b5a2ddc80e2
# 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=mips olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=mips SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202305112201.5lqIyEo4-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> mm/ksm.c:2439:13: warning: stack frame size (2576) exceeds limit (2048) in 'ksm_do_scan' [-Wframe-larger-than]
static void ksm_do_scan(unsigned int scan_npages)
^
2492/2576 (96.74%) spills, 84/2576 (3.26%) variables
1 warning generated.
vim +/ksm_do_scan +2439 mm/ksm.c
31dbd01f314364 Izik Eidus 2009-09-21 2434
31dbd01f314364 Izik Eidus 2009-09-21 2435 /**
31dbd01f314364 Izik Eidus 2009-09-21 2436 * ksm_do_scan - the ksm scanner main worker function.
b7701a5f2ee8e6 Mike Rapoport 2018-02-06 2437 * @scan_npages: number of pages we want to scan before we return.
31dbd01f314364 Izik Eidus 2009-09-21 2438 */
31dbd01f314364 Izik Eidus 2009-09-21 @2439 static void ksm_do_scan(unsigned int scan_npages)
31dbd01f314364 Izik Eidus 2009-09-21 2440 {
21fbd59136e077 Qi Zheng 2022-08-31 2441 struct ksm_rmap_item *rmap_item;
3f649ab728cda8 Kees Cook 2020-06-03 2442 struct page *page;
31dbd01f314364 Izik Eidus 2009-09-21 2443
878aee7d6b5504 Andrea Arcangeli 2011-01-13 2444 while (scan_npages-- && likely(!freezing(current))) {
31dbd01f314364 Izik Eidus 2009-09-21 2445 cond_resched();
31dbd01f314364 Izik Eidus 2009-09-21 2446 rmap_item = scan_get_next_rmap_item(&page);
31dbd01f314364 Izik Eidus 2009-09-21 2447 if (!rmap_item)
31dbd01f314364 Izik Eidus 2009-09-21 2448 return;
31dbd01f314364 Izik Eidus 2009-09-21 2449 cmp_and_merge_page(page, rmap_item);
31dbd01f314364 Izik Eidus 2009-09-21 2450 put_page(page);
31dbd01f314364 Izik Eidus 2009-09-21 2451 }
31dbd01f314364 Izik Eidus 2009-09-21 2452 }
31dbd01f314364 Izik Eidus 2009-09-21 2453
:::::: The code at line 2439 was first introduced by commit
:::::: 31dbd01f314364b70c2e026a5793a29a4da8a9dc ksm: Kernel SamePage Merging
:::::: TO: Izik Eidus <ieidus@redhat.com>
:::::: CC: Linus Torvalds <torvalds@linux-foundation.org>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-05-11 14:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-11 14:14 mm/ksm.c:2439:13: warning: stack frame size (2576) exceeds limit (2048) in 'ksm_do_scan' kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox