diff options
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/api.c | 2 | ||||
| -rw-r--r-- | plugins/core.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/api.c b/plugins/api.c index 3912c9cc8f..2144da1fe8 100644 --- a/plugins/api.c +++ b/plugins/api.c @@ -42,10 +42,10 @@ #include "tcg/tcg.h" #include "exec/exec-all.h" #include "exec/gdbstub.h" -#include "exec/ram_addr.h" #include "disas/disas.h" #include "plugin.h" #ifndef CONFIG_USER_ONLY +#include "exec/ram_addr.h" #include "qemu/plugin-memory.h" #include "hw/boards.h" #else diff --git a/plugins/core.c b/plugins/core.c index 0213513ec6..081323dafc 100644 --- a/plugins/core.c +++ b/plugins/core.c @@ -410,7 +410,7 @@ void qemu_plugin_tb_trans_cb(CPUState *cpu, struct qemu_plugin_tb *tb) struct qemu_plugin_cb *cb, *next; enum qemu_plugin_event ev = QEMU_PLUGIN_EV_VCPU_TB_TRANS; - /* no plugin_mask check here; caller should have checked */ + /* no plugin_state->event_mask check here; caller should have checked */ QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) { qemu_plugin_vcpu_tb_trans_cb_t func = cb->f.vcpu_tb_trans; |