plugins: bump version

Next commits will be breaking changes, so bump min version and version
accordingly.

Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Link: https://lore.kernel.org/qemu-devel/20260615193526.2883349-2-pierrick.bouvier@oss.qualcomm.com
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
This commit is contained in:
Pierrick Bouvier
2026-06-15 12:35:00 -07:00
parent b0df6e2f2c
commit e5dcb06798
2 changed files with 6 additions and 2 deletions

View File

@@ -80,11 +80,15 @@ typedef uint64_t qemu_plugin_id_t;
* - added disconinuity callback API (for interrupts, exceptions, host calls)
* - added syscall filter callback API, which allows skipping syscalls and
* setting custom syscall return values
*
* version 7:
* - add userdata to all plugin callbacks, allowing maintenance of state
* externally, and easing interfacing with other languages.
*/
extern QEMU_PLUGIN_EXPORT int qemu_plugin_version;
#define QEMU_PLUGIN_VERSION 6
#define QEMU_PLUGIN_VERSION 7
/**
* struct qemu_info_t - system information for plugins

View File

@@ -16,7 +16,7 @@
#include "qemu/queue.h"
#include "qemu/qht.h"
#define QEMU_PLUGIN_MIN_VERSION 2
#define QEMU_PLUGIN_MIN_VERSION 7
/* global state */
struct qemu_plugin_state {