summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin
diff options
context:
space:
mode:
authorNaohiko Shimizu <naohiko.shimizu@gmail.com>2026-01-04 22:59:37 +0900
committerPaul Walmsley <pjw@kernel.org>2026-01-14 17:43:07 -0700
commit75870639bf5d1c447ddba4d738ff72771a69f2a1 (patch)
tree24fb652566302368c006b4fbec9f5e58b2e1409c /tools/perf/scripts/python/bin
parenteaa9bb1d39d59e7c17b06cec12622b7c586ab629 (diff)
downloadkernel-75870639bf5d1c447ddba4d738ff72771a69f2a1.tar.gz
riscv: kvm: Fix vstimecmp update hazard on RV32
On RV32, updating the 64-bit stimecmp (or vstimecmp) CSR requires two separate 32-bit writes. A race condition exists if the timer triggers during these two writes. The RISC-V Privileged Specification (e.g., Section 3.2.1 for mtimecmp) recommends a specific 3-step sequence to avoid spurious interrupts when updating 64-bit comparison registers on 32-bit systems: 1. Set the low-order bits (stimecmp) to all ones (ULONG_MAX). 2. Set the high-order bits (stimecmph) to the desired value. 3. Set the low-order bits (stimecmp) to the desired value. Current implementation writes the LSB first without ensuring a future value, which may lead to a transient state where the 64-bit comparison is incorrectly evaluated as "expired" by the hardware. This results in spurious timer interrupts. This patch adopts the spec-recommended 3-step sequence to ensure the intermediate 64-bit state is never smaller than the current time. Fixes: 8f5cb44b1bae ("RISC-V: KVM: Support sstc extension") Signed-off-by: Naohiko Shimizu <naohiko.shimizu@gmail.com> Reviewed-by: Anup Patel <anup@brainfault.org> Link: https://patch.msgid.link/20260104135938.524-3-naohiko.shimizu@gmail.com Signed-off-by: Paul Walmsley <pjw@kernel.org>
Diffstat (limited to 'tools/perf/scripts/python/bin')
0 files changed, 0 insertions, 0 deletions
/distro/kernel/commit/tools/testing/selftests/pidfd?h=linux-6.6.y&id=09d1de1a8e7b9fbf08e96e0aecf41f870e4433ee'>tests: port pidfd_wait to kselftest harnessChristian Brauner 2020-08-05Merge tag 'linux-kselftest-5.9-rc1' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds 2020-07-08tests: add CLONE_NEWTIME setns testsChristian Brauner 2020-07-07selftests: pidfd: skip test if unshare fails with EPERMPaolo Bonzini 2020-07-07selftests: pidfd: do not use ksft_exit_skip after ksft_set_planPaolo Bonzini 2020-07-06selftests: Remove unneeded selftest API headersKees Cook 2020-06-17tests: test for setns() EINVAL regressionChristian Brauner