diff options
author | Alex Bennée | 2020-06-05 17:49:18 +0200 |
---|---|---|
committer | Alex Bennée | 2020-06-08 17:59:31 +0200 |
commit | 4e62bfa9ee54d071c656d12057b7d293ca22d423 (patch) | |
tree | 88e966e66f571652aa3bdfaf2835ccad7c617765 /tests/plugin/mem.c | |
parent | scripts/clean-includes: Mark 'qemu/qemu-plugin.h' as special header (diff) | |
download | qemu-4e62bfa9ee54d071c656d12057b7d293ca22d423.tar.gz qemu-4e62bfa9ee54d071c656d12057b7d293ca22d423.tar.xz qemu-4e62bfa9ee54d071c656d12057b7d293ca22d423.zip |
tests/plugin: correctly honour io_count
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20200605154929.26910-4-alex.bennee@linaro.org>
Diffstat (limited to 'tests/plugin/mem.c')
-rw-r--r-- | tests/plugin/mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugin/mem.c b/tests/plugin/mem.c index 878abf09d1..4725bd851d 100644 --- a/tests/plugin/mem.c +++ b/tests/plugin/mem.c @@ -28,7 +28,7 @@ static void plugin_exit(qemu_plugin_id_t id, void *p) g_string_printf(out, "mem accesses: %" PRIu64 "\n", mem_count); if (do_haddr) { - g_string_append_printf(out, "io accesses: %" PRIu64 "\n", mem_count); + g_string_append_printf(out, "io accesses: %" PRIu64 "\n", io_count); } qemu_plugin_outs(out->str); } |