OSDN Git Service

accel/tcg: Inline tb_flush_jmp_cache
authorRichard Henderson <richard.henderson@linaro.org>
Thu, 29 Sep 2022 17:51:21 +0000 (10:51 -0700)
committerRichard Henderson <richard.henderson@linaro.org>
Tue, 4 Oct 2022 19:13:12 +0000 (12:13 -0700)
commit1d41a79b3c7573c941723455149cfadfe7c2ab37
tree6eec27ed1eb95a4841e286156fdf2e7f48e533cc
parent93b996161b54860ded173f54ed96257717bb9728
accel/tcg: Inline tb_flush_jmp_cache

This function has two users, who use it incompatibly.
In tlb_flush_page_by_mmuidx_async_0, when flushing a
single page, we need to flush exactly two pages.
In tlb_flush_range_by_mmuidx_async_0, when flushing a
range of pages, we need to flush N+1 pages.

This avoids double-flushing of jmp cache pages in a range.

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
accel/tcg/cputlb.c