From: Aaron Lindsay <aa...@os.amperecomputing.com> The address calculation for IO regions introduced by
commit 787148bf928a54b5cc86f5b434f9399e9737679c Author: Aaron Lindsay <aa...@os.amperecomputing.com> plugins: Expose physical addresses instead of device offsets is not always accurate. Use the more correct MemoryRegionSection.offset_within_address_space. Signed-off-by: Aaron Lindsay <aa...@os.amperecomputing.com> Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com> Message-Id: <20210720195735.3934473-1-aa...@os.amperecomputing.com> Signed-off-by: Alex Bennée <alex.ben...@linaro.org> --- plugins/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/api.c b/plugins/api.c index 78b563c5c5..2d521e6ba8 100644 --- a/plugins/api.c +++ b/plugins/api.c @@ -319,7 +319,7 @@ uint64_t qemu_plugin_hwaddr_phys_addr(const struct qemu_plugin_hwaddr *haddr) return block->offset + offset + block->mr->addr; } else { MemoryRegionSection *mrs = haddr->v.io.section; - return haddr->v.io.offset + mrs->mr->addr; + return mrs->offset_within_address_space + haddr->v.io.offset; } } #endif -- 2.32.0.264.g75ae10bc75