diff options
author | Richard Henderson | 2022-10-05 18:27:52 +0200 |
---|---|---|
committer | Richard Henderson | 2022-10-26 03:11:28 +0200 |
commit | 24ace1ac3cf4d64bc76b543224c1c0379fa34b51 (patch) | |
tree | 335ad6d59f6effe803c75068b18c30709557bb81 /accel | |
parent | accel/tcg: Unify declarations of tb_invalidate_phys_range (diff) | |
download | qemu-24ace1ac3cf4d64bc76b543224c1c0379fa34b51.tar.gz qemu-24ace1ac3cf4d64bc76b543224c1c0379fa34b51.tar.xz qemu-24ace1ac3cf4d64bc76b543224c1c0379fa34b51.zip |
accel/tcg: Use tb_invalidate_phys_page in page_set_flags
We do not require detection of overlapping TBs here,
so use the more appropriate function.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel')
-rw-r--r-- | accel/tcg/translate-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/translate-all.c b/accel/tcg/translate-all.c index aa8d213514..8d5233fa9e 100644 --- a/accel/tcg/translate-all.c +++ b/accel/tcg/translate-all.c @@ -1382,7 +1382,7 @@ void page_set_flags(target_ulong start, target_ulong end, int flags) if (!(p->flags & PAGE_WRITE) && (flags & PAGE_WRITE) && p->first_tb) { - tb_invalidate_phys_page_unwind(addr, 0); + tb_invalidate_phys_page(addr); } if (reset_target_data) { g_free(p->target_data); |