arch/arm64/kernel/proton-pack.c:953 this_cpu_set_vectors() warn: unsigned 'slot' is never less than zero.
From: kernel test robot
Date: Sat Mar 26 2022 - 03:10:08 EST
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 52d543b5497cf31d6baeb0bcfe5a5474c3238578
commit: 558c303c9734af5a813739cd284879227f7297d2 arm64: Mitigate spectre style branch history side channels
date: 4 weeks ago
config: arm64-randconfig-m031-20220325 (https://download.01.org/0day-ci/archive/20220326/202203261509.y4KJfZNv-lkp@xxxxxxxxx/config)
compiler: aarch64-linux-gcc (GCC) 11.2.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@xxxxxxxxx>
smatch warnings:
arch/arm64/kernel/proton-pack.c:953 this_cpu_set_vectors() warn: unsigned 'slot' is never less than zero.
vim +/slot +953 arch/arm64/kernel/proton-pack.c
948
949 static void this_cpu_set_vectors(enum arm64_bp_harden_el1_vectors slot)
950 {
951 const char *v = arm64_get_bp_hardening_vector(slot);
952
> 953 if (slot < 0)
954 return;
955
956 __this_cpu_write(this_cpu_vector, v);
957
958 /*
959 * When KPTI is in use, the vectors are switched when exiting to
960 * user-space.
961 */
962 if (arm64_kernel_unmapped_at_el0())
963 return;
964
965 write_sysreg(v, vbar_el1);
966 isb();
967 }
968
--
0-DAY CI Kernel Test Service
https://01.org/lkp