lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Wed, 19 Jan 2022 01:29:51 +0800
From:   kernel test robot <lkp@...el.com>
To:     Wei Fu <wefu@...hat.com>
Cc:     kbuild-all@...ts.01.org, linux-kernel@...r.kernel.org,
        Guo Ren <guoren@...ux.alibaba.com>,
        Liu Shaohua <liush@...winnertech.com>,
        Heiko Stuebner <heiko@...ech.de>
Subject: [csky-linux:riscv_compat_v2_sv48_v3_mmind_pbmt 42/44]
 arch/riscv/kernel/setup.c:328:8: warning: format '%lx' expects argument of
 type 'long unsigned int', but argument 3 has type 'u64' {aka 'long long
 unsigned int'}

tree:   https://github.com/c-sky/csky-linux riscv_compat_v2_sv48_v3_mmind_pbmt
head:   b28a50c03a72c48d3895320bdd0757e0a8acb881
commit: 330ce3d4a3edd32464ac6deb817c211526c40781 [42/44] riscv: add RISC-V Svpbmt extension supports
config: riscv-nommu_k210_defconfig (https://download.01.org/0day-ci/archive/20220119/202201190119.sK9iIWyR-lkp@intel.com/config)
compiler: riscv64-linux-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://github.com/c-sky/csky-linux/commit/330ce3d4a3edd32464ac6deb817c211526c40781
        git remote add csky-linux https://github.com/c-sky/csky-linux
        git fetch --no-tags csky-linux riscv_compat_v2_sv48_v3_mmind_pbmt
        git checkout 330ce3d4a3edd32464ac6deb817c211526c40781
        # 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=riscv SHELL=/bin/bash arch/riscv/kernel/

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

All warnings (new ones prefixed by >>):

   arch/riscv/kernel/setup.c: In function 'free_initmem':
   arch/riscv/kernel/setup.c:326:9: error: implicit declaration of function 'ALT_THEAD_PMA' [-Werror=implicit-function-declaration]
     326 |         ALT_THEAD_PMA(prot_val);
         |         ^~~~~~~~~~~~~
   In file included from include/asm-generic/bug.h:22,
                    from arch/riscv/include/asm/bug.h:83,
                    from include/linux/bug.h:5,
                    from include/linux/mmdebug.h:5,
                    from include/linux/mm.h:9,
                    from arch/riscv/kernel/setup.c:12:
>> arch/riscv/kernel/setup.c:328:8: warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'u64' {aka 'long long unsigned int'} [-Wformat=]
     328 | printk("%s: _PAGE_IO: 0x%lx\n", __func__, _PAGE_IO);
         |        ^~~~~~~~~~~~~~~~~~~~~~~
   include/linux/printk.h:422:25: note: in definition of macro 'printk_index_wrap'
     422 |                 _p_func(_fmt, ##__VA_ARGS__);                           \
         |                         ^~~~
   arch/riscv/kernel/setup.c:328:1: note: in expansion of macro 'printk'
     328 | printk("%s: _PAGE_IO: 0x%lx\n", __func__, _PAGE_IO);
         | ^~~~~~
   arch/riscv/kernel/setup.c:328:27: note: format string is defined here
     328 | printk("%s: _PAGE_IO: 0x%lx\n", __func__, _PAGE_IO);
         |                         ~~^
         |                           |
         |                           long unsigned int
         |                         %llx
   In file included from include/asm-generic/bug.h:22,
                    from arch/riscv/include/asm/bug.h:83,
                    from include/linux/bug.h:5,
                    from include/linux/mmdebug.h:5,
                    from include/linux/mm.h:9,
                    from arch/riscv/kernel/setup.c:12:
   arch/riscv/kernel/setup.c:329:8: warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'u64' {aka 'long long unsigned int'} [-Wformat=]
     329 | printk("%s: _PAGE_NOCACHE: 0x%lx\n", __func__, _PAGE_NOCACHE);
         |        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/printk.h:422:25: note: in definition of macro 'printk_index_wrap'
     422 |                 _p_func(_fmt, ##__VA_ARGS__);                           \
         |                         ^~~~
   arch/riscv/kernel/setup.c:329:1: note: in expansion of macro 'printk'
     329 | printk("%s: _PAGE_NOCACHE: 0x%lx\n", __func__, _PAGE_NOCACHE);
         | ^~~~~~
   arch/riscv/kernel/setup.c:329:32: note: format string is defined here
     329 | printk("%s: _PAGE_NOCACHE: 0x%lx\n", __func__, _PAGE_NOCACHE);
         |                              ~~^
         |                                |
         |                                long unsigned int
         |                              %llx
   cc1: some warnings being treated as errors


vim +328 arch/riscv/kernel/setup.c

19a00869028f4a Atish Patra    2020-11-04  320  
19a00869028f4a Atish Patra    2020-11-04  321  void free_initmem(void)
19a00869028f4a Atish Patra    2020-11-04  322  {
a8a0c8f014166b Heiko Stuebner 2021-12-17  323  	unsigned long prot_val = pgprot_val(PAGE_KERNEL);
a8a0c8f014166b Heiko Stuebner 2021-12-17  324  
a8a0c8f014166b Heiko Stuebner 2021-12-17  325  printk("%s: _PAGE_KERNEL-orig: 0x%lx\n", __func__, prot_val);
a8a0c8f014166b Heiko Stuebner 2021-12-17  326  	ALT_THEAD_PMA(prot_val);
a8a0c8f014166b Heiko Stuebner 2021-12-17  327  printk("%s: _PAGE_KERNEL: 0x%lx\n", __func__, prot_val);
a8a0c8f014166b Heiko Stuebner 2021-12-17 @328  printk("%s: _PAGE_IO: 0x%lx\n", __func__, _PAGE_IO);

:::::: The code at line 328 was first introduced by commit
:::::: a8a0c8f014166b1e95e223240632fd0baac50ea7 hack in a debug output in freeinitmem

:::::: TO: Heiko Stuebner <heiko@...ech.de>
:::::: CC: Guo Ren <guoren@...ux.alibaba.com>

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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ