diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-06-21 12:27:27 +0200 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-06-26 17:33:00 +0200 |
commit | a0eaae08c7c6a59c185cf646b02f4167b2ac6ec0 (patch) | |
tree | 06257b623f9014b19f62525cea3a5f4aa168412d /tcg | |
parent | 187ba6945345cedf2f343fcc33e5616186aebe9d (diff) | |
download | qemu-a0eaae08c7c6a59c185cf646b02f4167b2ac6ec0.zip qemu-a0eaae08c7c6a59c185cf646b02f4167b2ac6ec0.tar.gz qemu-a0eaae08c7c6a59c185cf646b02f4167b2ac6ec0.tar.bz2 |
accel/tcg: Renumber TLB_DISCARD_WRITE
Move to fill a hole in the set of bits.
Reduce the total number of tlb bits by 1.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg-op-ldst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg-op-ldst.c b/tcg/tcg-op-ldst.c index a4f51bf..0fcc161 100644 --- a/tcg/tcg-op-ldst.c +++ b/tcg/tcg-op-ldst.c @@ -39,7 +39,7 @@ static void check_max_alignment(unsigned a_bits) * The requested alignment cannot overlap the TLB flags. * FIXME: Must keep the count up-to-date with "exec/cpu-all.h". */ - tcg_debug_assert(a_bits + 6 <= tcg_ctx->page_bits); + tcg_debug_assert(a_bits + 5 <= tcg_ctx->page_bits); #endif } |