diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-02-23 14:44:14 -1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-02-28 10:32:31 -1000 |
| commit | d507e6c565c8c44488eaf04ff4da3ba2183c6be5 (patch) | |
| tree | 4826e005b3c9df7c917628d33c61d3c991a8edc3 /target/arm/ptw.c | |
| parent | 1770b2f2d3d6fe8f1e2d61692692264cac44340d (diff) | |
| download | focaccia-qemu-d507e6c565c8c44488eaf04ff4da3ba2183c6be5.tar.gz focaccia-qemu-d507e6c565c8c44488eaf04ff4da3ba2183c6be5.zip | |
accel/tcg: Add 'size' param to probe_access_full
Change to match the recent change to probe_access_flags. All existing callers updated to supply 0, so no change in behaviour. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/arm/ptw.c')
| -rw-r--r-- | target/arm/ptw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/ptw.c b/target/arm/ptw.c index cf3f2fd703..8541ef56d6 100644 --- a/target/arm/ptw.c +++ b/target/arm/ptw.c @@ -259,7 +259,7 @@ static bool S1_ptw_translate(CPUARMState *env, S1Translate *ptw, int flags; env->tlb_fi = fi; - flags = probe_access_full(env, addr, MMU_DATA_LOAD, + flags = probe_access_full(env, addr, 0, MMU_DATA_LOAD, arm_to_core_mmu_idx(s2_mmu_idx), true, &ptw->out_host, &full, 0); env->tlb_fi = NULL; |