aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-02-23 14:44:14 -1000
committerRichard Henderson <richard.henderson@linaro.org>2023-02-28 10:32:31 -1000
commitd507e6c565c8c44488eaf04ff4da3ba2183c6be5 (patch)
tree4826e005b3c9df7c917628d33c61d3c991a8edc3 /include
parent1770b2f2d3d6fe8f1e2d61692692264cac44340d (diff)
downloadqemu-d507e6c565c8c44488eaf04ff4da3ba2183c6be5.zip
qemu-d507e6c565c8c44488eaf04ff4da3ba2183c6be5.tar.gz
qemu-d507e6c565c8c44488eaf04ff4da3ba2183c6be5.tar.bz2
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 'include')
-rw-r--r--include/exec/exec-all.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h
index 165b050..b631832 100644
--- a/include/exec/exec-all.h
+++ b/include/exec/exec-all.h
@@ -475,7 +475,7 @@ int probe_access_flags(CPUArchState *env, target_ulong addr, int size,
* and must be consumed or copied immediately, before any further
* access or changes to TLB @mmu_idx.
*/
-int probe_access_full(CPUArchState *env, target_ulong addr,
+int probe_access_full(CPUArchState *env, target_ulong addr, int size,
MMUAccessType access_type, int mmu_idx,
bool nonfault, void **phost,
CPUTLBEntryFull **pfull, uintptr_t retaddr);