linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [arm-integrator:kernel-in-vmalloc-v5.17-rc1 4/8] arch/arm/mm/init.c:307:13: warning: no previous prototype for 'mem_init_print_arm_info'
@ 2022-03-11 12:50 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2022-03-11 12:50 UTC (permalink / raw)
  To: Linus Walleij; +Cc: kbuild-all, linux-kernel

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator.git kernel-in-vmalloc-v5.17-rc1
head:   66e9038ef48dc66c07b12443b73e2d1f3f12cbab
commit: 18e0d99ee35450767fc8222f1727febdd2a4deac [4/8] ARM: Print virtual memory info again
config: arm-randconfig-r025-20220310 (https://download.01.org/0day-ci/archive/20220311/202203112022.UTwSPbtn-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 11.2.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/linusw/linux-integrator.git/commit/?id=18e0d99ee35450767fc8222f1727febdd2a4deac
        git remote add arm-integrator https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator.git
        git fetch --no-tags arm-integrator kernel-in-vmalloc-v5.17-rc1
        git checkout 18e0d99ee35450767fc8222f1727febdd2a4deac
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=arm SHELL=/bin/bash arch/arm/mm/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

   arch/arm/mm/init.c:97:13: warning: no previous prototype for 'setup_dma_zone' [-Wmissing-prototypes]
      97 | void __init setup_dma_zone(const struct machine_desc *mdesc)
         |             ^~~~~~~~~~~~~~
>> arch/arm/mm/init.c:307:13: warning: no previous prototype for 'mem_init_print_arm_info' [-Wmissing-prototypes]
     307 | void __init mem_init_print_arm_info(void)
         |             ^~~~~~~~~~~~~~~~~~~~~~~


vim +/mem_init_print_arm_info +307 arch/arm/mm/init.c

   306	
 > 307	void __init mem_init_print_arm_info(void)
   308	{
   309	#define MLM(b, t) b, t, ((t) - (b)) >> 20
   310		pr_notice("Virtual kernel memory layout:\n"
   311			  "    fixmap  : 0x%08lx - 0x%08lx   (%4ld MB)\n"
   312			  "    vmalloc : 0x%08lx - 0x%08lx   (%4ld MB)\n"
   313			  "    lowmem  : 0x%08lx - 0x%08lx   (%4ld MB)\n"
   314	#ifdef CONFIG_MODULES
   315			  "    modules : 0x%08lx - 0x%08lx   (%4ld MB)\n",
   316	#endif
   317			  "     kernel : 0x%08lx - 0x%08lx   (%4ld MB)\n",
   318			  MLM(FIXADDR_START, FIXADDR_END),
   319			  MLM(VMALLOC_START, VMALLOC_END),
   320			  MLM(PAGE_OFFSET, (unsigned long)high_memory),
   321	#ifdef CONFIG_MODULES
   322			  MLM(MODULES_VADDR, MODULES_END),
   323	#endif
   324			  /* From beginning of .text to end of .bss */
   325			  MLM((unsigned long)_text, (unsigned long)__bss_stop));
   326	#undef MLM
   327	}
   328	

---
0-DAY CI Kernel Test Service
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-03-11 12:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-11 12:50 [arm-integrator:kernel-in-vmalloc-v5.17-rc1 4/8] arch/arm/mm/init.c:307:13: warning: no previous prototype for 'mem_init_print_arm_info' 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;
as well as URLs for NNTP newsgroup(s).