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:   Tue, 25 Oct 2022 11:08:06 +0800
From:   kernel test robot <lkp@...el.com>
To:     Sean Christopherson <seanjc@...gle.com>
Cc:     llvm@...ts.linux.dev, kbuild-all@...ts.01.org,
        linux-kernel@...r.kernel.org
Subject: [sean-jc:x86/rework_kvm_init 40/40] arch/riscv/kvm/main.c:23:5:
 warning: no previous prototype for function 'kvm_arch_hardware_enable'

tree:   https://github.com/sean-jc/linux x86/rework_kvm_init
head:   0049bce70befc80acb77c7faff86e677e08b78b6
commit: 0049bce70befc80acb77c7faff86e677e08b78b6 [40/40] KVM: Allow architectures to opt out of generic hardware enabling
config: riscv-randconfig-r024-20221023
compiler: clang version 16.0.0 (https://github.com/llvm/llvm-project 791a7ae1ba3efd6bca96338e10ffde557ba83920)
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 riscv cross compiling tool for clang build
        # apt-get install binutils-riscv64-linux-gnu
        # https://github.com/sean-jc/linux/commit/0049bce70befc80acb77c7faff86e677e08b78b6
        git remote add sean-jc https://github.com/sean-jc/linux
        git fetch --no-tags sean-jc x86/rework_kvm_init
        git checkout 0049bce70befc80acb77c7faff86e677e08b78b6
        # 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=riscv SHELL=/bin/bash arch/riscv/kvm/

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

All warnings (new ones prefixed by >>):

>> arch/riscv/kvm/main.c:23:5: warning: no previous prototype for function 'kvm_arch_hardware_enable' [-Wmissing-prototypes]
   int kvm_arch_hardware_enable(void)
       ^
   arch/riscv/kvm/main.c:23:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int kvm_arch_hardware_enable(void)
   ^
   static 
>> arch/riscv/kvm/main.c:49:6: warning: no previous prototype for function 'kvm_arch_hardware_disable' [-Wmissing-prototypes]
   void kvm_arch_hardware_disable(void)
        ^
   arch/riscv/kvm/main.c:49:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   void kvm_arch_hardware_disable(void)
   ^
   static 
   2 warnings generated.


vim +/kvm_arch_hardware_enable +23 arch/riscv/kvm/main.c

99cdc6c18c2d81 Anup Patel   2021-09-27  22  
99cdc6c18c2d81 Anup Patel   2021-09-27 @23  int kvm_arch_hardware_enable(void)
99cdc6c18c2d81 Anup Patel   2021-09-27  24  {
99cdc6c18c2d81 Anup Patel   2021-09-27  25  	unsigned long hideleg, hedeleg;
99cdc6c18c2d81 Anup Patel   2021-09-27  26  
99cdc6c18c2d81 Anup Patel   2021-09-27  27  	hedeleg = 0;
99cdc6c18c2d81 Anup Patel   2021-09-27  28  	hedeleg |= (1UL << EXC_INST_MISALIGNED);
99cdc6c18c2d81 Anup Patel   2021-09-27  29  	hedeleg |= (1UL << EXC_BREAKPOINT);
99cdc6c18c2d81 Anup Patel   2021-09-27  30  	hedeleg |= (1UL << EXC_SYSCALL);
99cdc6c18c2d81 Anup Patel   2021-09-27  31  	hedeleg |= (1UL << EXC_INST_PAGE_FAULT);
99cdc6c18c2d81 Anup Patel   2021-09-27  32  	hedeleg |= (1UL << EXC_LOAD_PAGE_FAULT);
99cdc6c18c2d81 Anup Patel   2021-09-27  33  	hedeleg |= (1UL << EXC_STORE_PAGE_FAULT);
99cdc6c18c2d81 Anup Patel   2021-09-27  34  	csr_write(CSR_HEDELEG, hedeleg);
99cdc6c18c2d81 Anup Patel   2021-09-27  35  
99cdc6c18c2d81 Anup Patel   2021-09-27  36  	hideleg = 0;
99cdc6c18c2d81 Anup Patel   2021-09-27  37  	hideleg |= (1UL << IRQ_VS_SOFT);
99cdc6c18c2d81 Anup Patel   2021-09-27  38  	hideleg |= (1UL << IRQ_VS_TIMER);
99cdc6c18c2d81 Anup Patel   2021-09-27  39  	hideleg |= (1UL << IRQ_VS_EXT);
99cdc6c18c2d81 Anup Patel   2021-09-27  40  	csr_write(CSR_HIDELEG, hideleg);
99cdc6c18c2d81 Anup Patel   2021-09-27  41  
99cdc6c18c2d81 Anup Patel   2021-09-27  42  	csr_write(CSR_HCOUNTEREN, -1UL);
99cdc6c18c2d81 Anup Patel   2021-09-27  43  
99cdc6c18c2d81 Anup Patel   2021-09-27  44  	csr_write(CSR_HVIP, 0);
99cdc6c18c2d81 Anup Patel   2021-09-27  45  
99cdc6c18c2d81 Anup Patel   2021-09-27  46  	return 0;
99cdc6c18c2d81 Anup Patel   2021-09-27  47  }
99cdc6c18c2d81 Anup Patel   2021-09-27  48  
99cdc6c18c2d81 Anup Patel   2021-09-27 @49  void kvm_arch_hardware_disable(void)
99cdc6c18c2d81 Anup Patel   2021-09-27  50  {
33e5b5746cc233 Vincent Chen 2021-12-27  51  	/*
33e5b5746cc233 Vincent Chen 2021-12-27  52  	 * After clearing the hideleg CSR, the host kernel will receive
33e5b5746cc233 Vincent Chen 2021-12-27  53  	 * spurious interrupts if hvip CSR has pending interrupts and the
33e5b5746cc233 Vincent Chen 2021-12-27  54  	 * corresponding enable bits in vsie CSR are asserted. To avoid it,
33e5b5746cc233 Vincent Chen 2021-12-27  55  	 * hvip CSR and vsie CSR must be cleared before clearing hideleg CSR.
33e5b5746cc233 Vincent Chen 2021-12-27  56  	 */
33e5b5746cc233 Vincent Chen 2021-12-27  57  	csr_write(CSR_VSIE, 0);
33e5b5746cc233 Vincent Chen 2021-12-27  58  	csr_write(CSR_HVIP, 0);
99cdc6c18c2d81 Anup Patel   2021-09-27  59  	csr_write(CSR_HEDELEG, 0);
99cdc6c18c2d81 Anup Patel   2021-09-27  60  	csr_write(CSR_HIDELEG, 0);
99cdc6c18c2d81 Anup Patel   2021-09-27  61  }
99cdc6c18c2d81 Anup Patel   2021-09-27  62  

:::::: The code at line 23 was first introduced by commit
:::::: 99cdc6c18c2d815e940e81b9b477d469bdd41788 RISC-V: Add initial skeletal KVM support

:::::: TO: Anup Patel <anup.patel@....com>
:::::: CC: Anup Patel <anup@...infault.org>

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp

View attachment "config" of type "text/plain" (150208 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ