summaryrefslogtreecommitdiffstats
path: root/softmmu
diff options
context:
space:
mode:
authorPeter Maydell2021-03-18 18:48:21 +0100
committerPeter Maydell2021-03-23 12:47:31 +0100
commitb3566001d4d4c3f4626442584556bd18b0e7243b (patch)
treedaa4810a96774a07d2358149ab3bc8a6b8e88afc /softmmu
parentmemory: Document flatview_for_each_range() (diff)
downloadqemu-b3566001d4d4c3f4626442584556bd18b0e7243b.tar.gz
qemu-b3566001d4d4c3f4626442584556bd18b0e7243b.tar.xz
qemu-b3566001d4d4c3f4626442584556bd18b0e7243b.zip
memory: Add offset_in_region to flatview_cb arguments
The function flatview_for_each_range() calls a callback for each range in a FlatView. Currently the callback gets the start and length of the range and the MemoryRegion involved, but not the offset within the MemoryRegion. Add this to the callback's arguments; we're going to want it for a new use in the next commit. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20210318174823.18066-4-peter.maydell@linaro.org
Diffstat (limited to 'softmmu')
-rw-r--r--softmmu/memory.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/softmmu/memory.c b/softmmu/memory.c
index c4730ec47a..d4493ef9e4 100644
--- a/softmmu/memory.c
+++ b/softmmu/memory.c
@@ -671,8 +671,10 @@ void flatview_for_each_range(FlatView *fv, flatview_cb cb , void *opaque)
assert(cb);
FOR_EACH_FLAT_RANGE(fr, fv) {
- if (cb(fr->addr.start, fr->addr.size, fr->mr, opaque))
+ if (cb(fr->addr.start, fr->addr.size, fr->mr,
+ fr->offset_in_region, opaque)) {
break;
+ }
}
}