From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: cota@braap.org, alex.bennee@linaro.org
Subject: [PATCH v2 6/7] include/qemu: Split out plugin-event.h
Date: Fri, 10 Mar 2023 11:52:51 -0800 [thread overview]
Message-ID: <20230310195252.210956-7-richard.henderson@linaro.org> (raw)
In-Reply-To: <20230310195252.210956-1-richard.henderson@linaro.org>
The usage in hw/core/cpu.h only requires QEMU_PLUGIN_EV_MAX.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
include/hw/core/cpu.h | 2 +-
include/qemu/plugin-event.h | 26 ++++++++++++++++++++++++++
include/qemu/plugin.h | 17 +----------------
3 files changed, 28 insertions(+), 17 deletions(-)
create mode 100644 include/qemu/plugin-event.h
diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h
index 75689bff02..821e937020 100644
--- a/include/hw/core/cpu.h
+++ b/include/hw/core/cpu.h
@@ -30,7 +30,7 @@
#include "qemu/rcu_queue.h"
#include "qemu/queue.h"
#include "qemu/thread.h"
-#include "qemu/plugin.h"
+#include "qemu/plugin-event.h"
#include "qom/object.h"
typedef int (*WriteCoreDumpFunction)(const void *buf, size_t size,
diff --git a/include/qemu/plugin-event.h b/include/qemu/plugin-event.h
new file mode 100644
index 0000000000..7056d8427b
--- /dev/null
+++ b/include/qemu/plugin-event.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (C) 2017, Emilio G. Cota <cota@braap.org>
+ *
+ * License: GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ */
+#ifndef QEMU_PLUGIN_EVENT_H
+#define QEMU_PLUGIN_EVENT_H
+
+/*
+ * Events that plugins can subscribe to.
+ */
+enum qemu_plugin_event {
+ QEMU_PLUGIN_EV_VCPU_INIT,
+ QEMU_PLUGIN_EV_VCPU_EXIT,
+ QEMU_PLUGIN_EV_VCPU_TB_TRANS,
+ QEMU_PLUGIN_EV_VCPU_IDLE,
+ QEMU_PLUGIN_EV_VCPU_RESUME,
+ QEMU_PLUGIN_EV_VCPU_SYSCALL,
+ QEMU_PLUGIN_EV_VCPU_SYSCALL_RET,
+ QEMU_PLUGIN_EV_FLUSH,
+ QEMU_PLUGIN_EV_ATEXIT,
+ QEMU_PLUGIN_EV_MAX, /* total number of plugin events we support */
+};
+
+#endif /* QEMU_PLUGIN_EVENT_H */
diff --git a/include/qemu/plugin.h b/include/qemu/plugin.h
index e0ebedef84..6bf4bce188 100644
--- a/include/qemu/plugin.h
+++ b/include/qemu/plugin.h
@@ -12,24 +12,9 @@
#include "qemu/error-report.h"
#include "qemu/queue.h"
#include "qemu/option.h"
+#include "qemu/plugin-event.h"
#include "exec/memopidx.h"
-/*
- * Events that plugins can subscribe to.
- */
-enum qemu_plugin_event {
- QEMU_PLUGIN_EV_VCPU_INIT,
- QEMU_PLUGIN_EV_VCPU_EXIT,
- QEMU_PLUGIN_EV_VCPU_TB_TRANS,
- QEMU_PLUGIN_EV_VCPU_IDLE,
- QEMU_PLUGIN_EV_VCPU_RESUME,
- QEMU_PLUGIN_EV_VCPU_SYSCALL,
- QEMU_PLUGIN_EV_VCPU_SYSCALL_RET,
- QEMU_PLUGIN_EV_FLUSH,
- QEMU_PLUGIN_EV_ATEXIT,
- QEMU_PLUGIN_EV_MAX, /* total number of plugin events we support */
-};
-
/*
* Option parsing/processing.
* Note that we can load an arbitrary number of plugins.
--
2.34.1
next prev parent reply other threads:[~2023-03-10 19:54 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-10 19:52 [PATCH v2 0/7] plugin: fix clearing of plugin_mem_cbs on TB exit Richard Henderson
2023-03-10 19:52 ` [PATCH v2 1/7] tcg: Clear " Richard Henderson
2023-03-10 19:52 ` [PATCH v2 2/7] tcg: Drop plugin_gen_disable_mem_helpers from tcg_gen_exit_tb Richard Henderson
2023-03-10 19:52 ` [PATCH v2 3/7] include/qemu/plugin: Remove QEMU_PLUGIN_ASSERT Richard Henderson
2023-03-10 19:52 ` [PATCH v2 4/7] *: Add missing includes of qemu/error-report.h Richard Henderson
2023-03-10 22:03 ` Philippe Mathieu-Daudé
2023-03-10 19:52 ` [PATCH v2 5/7] *: Add missing includes of qemu/plugin.h Richard Henderson
2023-03-10 22:03 ` Philippe Mathieu-Daudé
2023-03-10 19:52 ` Richard Henderson [this message]
2023-03-10 22:04 ` [PATCH v2 6/7] include/qemu: Split out plugin-event.h Philippe Mathieu-Daudé
2023-03-10 19:52 ` [PATCH v2 7/7] include/qemu/plugin: Inline qemu_plugin_disable_mem_helpers Richard Henderson
2023-03-10 22:04 ` Philippe Mathieu-Daudé
2023-03-13 10:47 ` [PATCH v2 0/7] plugin: fix clearing of plugin_mem_cbs on TB exit Alex Bennée
2023-03-19 14:06 ` Emilio Cota
2023-03-20 17:31 ` Alex Bennée
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230310195252.210956-7-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=cota@braap.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).