]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
riscv: hwprobe: Avoid uninitialized read in hwprobe_get_cpus()
authorMark Harris <mark.hsj@gmail.com>
Tue, 14 Jul 2026 00:30:56 +0000 (17:30 -0700)
committerPaul Walmsley <pjw@kernel.org>
Wed, 15 Jul 2026 17:12:40 +0000 (11:12 -0600)
commit5caae1deee89a6582c761d5dcd4b924b744426cc
treebd57a304bc1594f2e37a10b2c3bac1748874039d
parente4bf6eb4c7b61db1cf24487e14e6ae8755e61e3d
riscv: hwprobe: Avoid uninitialized read in hwprobe_get_cpus()

When cpusetsize < cpumask_size(), hwprobe_get_cpus() did not fully
initialize its copy of the cpu mask, which could cause non-deterministic
results from the riscv_hwprobe syscall on a system with more than 8 CPUs
when the supplied cpu mask is empty.  Address this by fully initializing
the cpu mask.

Fixes: e178bf146e4b ("RISC-V: hwprobe: Introduce which-cpus flag")
Signed-off-by: Mark Harris <mark.hsj@gmail.com>
Reviewed-by: Nam Cao <namcao@linutronix.de>
Reviewed-by: Michael Ellerman <mpe@kernel.org>
Link: https://patch.msgid.link/20260714003056.73707-1-mark.hsj@gmail.com
Signed-off-by: Paul Walmsley <pjw@kernel.org>
arch/riscv/kernel/sys_hwprobe.c