On Tue, Oct 24, 2023 at 10:47:58AM +0800, kernel test robot wrote: > Hi Oliver, > > kernel test robot noticed the following build errors: > > [auto build test ERROR on 6465e260f48790807eef06b583b38ca9789b6072] > > url: https://github.com/intel-lab-lkp/linux/commits/Oliver-Upton/KVM-arm64-Make-PMEVTYPER-n-_EL0-NSH-RES0-if-EL2-isn-t-advertised/20231020-025836 > base: 6465e260f48790807eef06b583b38ca9789b6072 > patch link: https://lore.kernel.org/r/20231019185618.3442949-2-oliver.upton%40linux.dev > patch subject: [PATCH v3 1/2] KVM: arm64: Make PMEVTYPER<n>_EL0.NSH RES0 if EL2 isn't advertised > config: arm64-randconfig-004-20231023 (https://download.01.org/0day-ci/archive/20231024/202310241025.FmLnpSTG-lkp@xxxxxxxxx/config) > compiler: aarch64-linux-gcc (GCC) 13.2.0 > reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231024/202310241025.FmLnpSTG-lkp@xxxxxxxxx/reproduce) > > If you fix the issue in a separate patch/commit (i.e. not just a new version of > the same patch/commit), kindly add following tags > | Reported-by: kernel test robot <lkp@xxxxxxxxx> > | Closes: https://lore.kernel.org/oe-kbuild-all/202310241025.FmLnpSTG-lkp@xxxxxxxxx/ > > All errors (new ones prefixed by >>): > > arch/arm64/kvm/sys_regs.c: In function 'reset_pmevtyper': > >> arch/arm64/kvm/sys_regs.c:754:41: error: too many arguments to function 'kvm_pmu_evtyper_mask' Ah, the prototype for !CONFIG_HW_PERF_EVENTS is wrong. I'll squash this in: diff --git a/include/kvm/arm_pmu.h b/include/kvm/arm_pmu.h index e0bcf447a2ab..fd0aa8105a5b 100644 --- a/include/kvm/arm_pmu.h +++ b/include/kvm/arm_pmu.h @@ -173,7 +173,7 @@ static inline u8 kvm_arm_pmu_get_pmuver_limit(void) { return 0; } -static inline u64 kvm_pmu_evtyper_mask(void) +static inline u64 kvm_pmu_evtyper_mask(struct kvm *kvm) { return 0; } -- Thanks, Oliver