[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 9/9] plugins: Update plugin version and add notes
From: |
Rowan Hart |
Subject: |
[PATCH v7 9/9] plugins: Update plugin version and add notes |
Date: |
Mon, 2 Jun 2025 12:57:06 -0700 |
From: novafacing <rowanbhart@gmail.com>
This patch updates the plugin version to gate new APIs and adds notes
describing what has been added.
Signed-off-by: Rowan Hart <rowanbhart@gmail.com>
---
include/qemu/qemu-plugin.h | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/include/qemu/qemu-plugin.h b/include/qemu/qemu-plugin.h
index 2cb5de9f64..170a79e667 100644
--- a/include/qemu/qemu-plugin.h
+++ b/include/qemu/qemu-plugin.h
@@ -65,11 +65,18 @@ typedef uint64_t qemu_plugin_id_t;
*
* version 4:
* - added qemu_plugin_read_memory_vaddr
+ *
+ * version 5:
+ * - added qemu_plugin_write_memory_vaddr
+ * - added qemu_plugin_read_memory_hwaddr
+ * - added qemu_plugin_write_memory_hwaddr
+ * - added qemu_plugin_write_register
+ * - added qemu_plugin_translate_vaddr
*/
extern QEMU_PLUGIN_EXPORT int qemu_plugin_version;
-#define QEMU_PLUGIN_VERSION 4
+#define QEMU_PLUGIN_VERSION 5
/**
* struct qemu_info_t - system information for plugins
--
2.49.0
- [PATCH v7 1/9] gdbstub: Expose gdb_write_register function to consumers of gdbstub, (continued)
- [PATCH v7 1/9] gdbstub: Expose gdb_write_register function to consumers of gdbstub, Rowan Hart, 2025/06/02
- [PATCH v7 2/9] plugins: Add register write API, Rowan Hart, 2025/06/02
- [PATCH v7 5/9] plugins: Add memory hardware address read/write API, Rowan Hart, 2025/06/02
- [PATCH v7 4/9] plugins: Add memory virtual address write API, Rowan Hart, 2025/06/02
- [PATCH v7 3/9] plugins: Add enforcement of QEMU_PLUGIN_CB flags in register R/W callbacks, Rowan Hart, 2025/06/02
- [PATCH v7 7/9] plugins: Add hypercalls plugin and test, Rowan Hart, 2025/06/02
- [PATCH v7 6/9] plugins: Add patcher plugin and test, Rowan Hart, 2025/06/02
- [PATCH v7 8/9] plugins: Remove use of qemu_plugin_read_register where it is not permitted, Rowan Hart, 2025/06/02
- [PATCH v7 9/9] plugins: Update plugin version and add notes,
Rowan Hart <=