projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6703e6
)
tests/plugin: correctly honour io_count
author
Alex Bennée
<alex.bennee@linaro.org>
Fri, 5 Jun 2020 15:49:18 +0000
(16:49 +0100)
committer
Alex Bennée
<alex.bennee@linaro.org>
Mon, 8 Jun 2020 15:59:31 +0000
(16:59 +0100)
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>
tests/plugin/mem.c
patch
|
blob
|
history
diff --git
a/tests/plugin/mem.c
b/tests/plugin/mem.c
index 878abf09d19b256ed9c63a540d52ffbe6c6ba5af..4725bd851d8213ad2e185fc5035cffe1139f36d0 100644
(file)
--- 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);
}