summary refs log tree commit diff stats
path: root/plugins/plugin.h
diff options
context:
space:
mode:
authorPierrick Bouvier <pierrick.bouvier@linaro.org>2024-02-27 14:43:21 +0000
committerAlex Bennée <alex.bennee@linaro.org>2024-02-28 09:11:34 +0000
commit926e146eff8d7b89754e8b681f80e962d220f077 (patch)
tree14648d323c3bbb6cfd6d31ba700a89b81f6f7009 /plugins/plugin.h
parenteb37086fb0282a9a4f01ecbb618761d4853efc8c (diff)
downloadfocaccia-qemu-926e146eff8d7b89754e8b681f80e962d220f077.tar.gz
focaccia-qemu-926e146eff8d7b89754e8b681f80e962d220f077.zip
plugins: remove previous n_vcpus functions from API
This information is already accessible using qemu_info_t during plugin
install.

We will introduce another function (qemu_plugin_num_vcpus) which
represent how many cpus were enabled, by tracking new cpu indexes.

It's a breaking change, so we bump API version.

Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20240213094009.150349-2-pierrick.bouvier@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240227144335.1196131-16-alex.bennee@linaro.org>
Diffstat (limited to 'plugins/plugin.h')
-rw-r--r--plugins/plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/plugin.h b/plugins/plugin.h
index 5eb2fdbc85..90f3f324ab 100644
--- a/plugins/plugin.h
+++ b/plugins/plugin.h
@@ -15,7 +15,7 @@
 #include <gmodule.h>
 #include "qemu/qht.h"
 
-#define QEMU_PLUGIN_MIN_VERSION 0
+#define QEMU_PLUGIN_MIN_VERSION 2
 
 /* global state */
 struct qemu_plugin_state {