aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2020-10-12 14:15:32 +0200
committerMarkus Armbruster <armbru@redhat.com>2020-10-21 05:00:44 +0200
commitdf7a1f48539580b47d6becf90c6489b4d7ebaa63 (patch)
tree5c5b3364783637d8a2d68ebd02887171e745646d
parent4c41341af76cfc85b5a6c0f87de4838672ab9f89 (diff)
downloadqemu-df7a1f48539580b47d6becf90c6489b4d7ebaa63.zip
qemu-df7a1f48539580b47d6becf90c6489b4d7ebaa63.tar.gz
qemu-df7a1f48539580b47d6becf90c6489b4d7ebaa63.tar.bz2
qapi: Restrict 'inject-nmi' command to machine code
Restricting 'inject-nmi' to machine.json pulls slightly less QAPI-generated code into user-mode and tools. Acked-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20201012121536.3381997-2-philmd@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r--qapi/machine.json20
-rw-r--r--qapi/misc.json20
-rw-r--r--softmmu/cpus.c1
3 files changed, 21 insertions, 20 deletions
diff --git a/qapi/machine.json b/qapi/machine.json
index 756dacb..073b1c9 100644
--- a/qapi/machine.json
+++ b/qapi/machine.json
@@ -485,6 +485,26 @@
'data': ['discard', 'delay', 'slew' ] }
##
+# @inject-nmi:
+#
+# Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
+# The command fails when the guest doesn't support injecting.
+#
+# Returns: If successful, nothing
+#
+# Since: 0.14.0
+#
+# Note: prior to 2.1, this command was only supported for x86 and s390 VMs
+#
+# Example:
+#
+# -> { "execute": "inject-nmi" }
+# <- { "return": {} }
+#
+##
+{ 'command': 'inject-nmi' }
+
+##
# @NumaOptionsType:
#
# @node: NUMA nodes configuration
diff --git a/qapi/misc.json b/qapi/misc.json
index 7d1e2e9..3fe9cc2 100644
--- a/qapi/misc.json
+++ b/qapi/misc.json
@@ -342,26 +342,6 @@
{ 'command': 'system_wakeup' }
##
-# @inject-nmi:
-#
-# Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
-# The command fails when the guest doesn't support injecting.
-#
-# Returns: If successful, nothing
-#
-# Since: 0.14.0
-#
-# Note: prior to 2.1, this command was only supported for x86 and s390 VMs
-#
-# Example:
-#
-# -> { "execute": "inject-nmi" }
-# <- { "return": {} }
-#
-##
-{ 'command': 'inject-nmi' }
-
-##
# @human-monitor-command:
#
# Execute a command on the human monitor and return the output.
diff --git a/softmmu/cpus.c b/softmmu/cpus.c
index 47ccedd..e46ac68 100644
--- a/softmmu/cpus.c
+++ b/softmmu/cpus.c
@@ -26,6 +26,7 @@
#include "qemu-common.h"
#include "monitor/monitor.h"
#include "qapi/error.h"
+#include "qapi/qapi-commands-machine.h"
#include "qapi/qapi-commands-misc.h"
#include "qapi/qapi-events-run-state.h"
#include "qapi/qmp/qerror.h"