aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLIU Zhiwei <zhiwei_liu@linux.alibaba.com>2023-07-29 11:16:18 +0800
committerAlistair Francis <alistair.francis@wdc.com>2023-09-11 11:45:54 +1000
commit4cc9f284d5971ecd8055d26ef74c23ef0be8b8f5 (patch)
tree838c7d6b53855165e5b64d274b58b05b5e5f8f16
parent03d7bbfd04c2a68f6339adede99ceae10800dc91 (diff)
downloadqemu-4cc9f284d5971ecd8055d26ef74c23ef0be8b8f5.zip
qemu-4cc9f284d5971ecd8055d26ef74c23ef0be8b8f5.tar.gz
qemu-4cc9f284d5971ecd8055d26ef74c23ef0be8b8f5.tar.bz2
target/riscv: Fix page_check_range use in fault-only-first
Commit bef6f008b98(accel/tcg: Return bool from page_check_range) converts integer return value to bool type. However, it wrongly converted the use of the API in riscv fault-only-first, where page_check_range < = 0, should be converted to !page_check_range. Signed-off-by: LIU Zhiwei <zhiwei_liu@linux.alibaba.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20230729031618.821-1-zhiwei_liu@linux.alibaba.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
-rw-r--r--target/riscv/vector_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/riscv/vector_helper.c b/target/riscv/vector_helper.c
index bc9e151..379f03d 100644
--- a/target/riscv/vector_helper.c
+++ b/target/riscv/vector_helper.c
@@ -584,7 +584,7 @@ vext_ldff(void *vd, void *v0, target_ulong base,
cpu_mmu_index(env, false));
if (host) {
#ifdef CONFIG_USER_ONLY
- if (page_check_range(addr, offset, PAGE_READ)) {
+ if (!page_check_range(addr, offset, PAGE_READ)) {
vl = i;
goto ProbeSuccess;
}