diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-04-24 09:01:30 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2024-05-05 11:21:32 +0300 |
commit | 1974871416700d64382b5456f7fe29f0fc2c741e (patch) | |
tree | 7cfc1c79ce39bbf21ad63a877098e689854397cb /plugins | |
parent | 30e8861a90a539ac23053de7645fc4b38e53130a (diff) |
plugins: Update stale comment
"plugin_mask" was renamed as "event_mask" in commit c006147122
("plugins: create CPUPluginState and migrate plugin_mask").
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20240427155714.53669-3-philmd@linaro.org>
(cherry picked from commit e096d370ad877f8573e20266f7e843084f9611d8)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/core.c b/plugins/core.c index 11ca20e626..09c98382f5 100644 --- a/plugins/core.c +++ b/plugins/core.c @@ -373,7 +373,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; |