The QMP version was added in qemu commit ab49ab5c488237f3656689 which
is included in v1.1.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
src/qemu/qemu_monitor_json.c | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/src/qemu/qemu_monitor_json.c b/src/qemu/qemu_monitor_json.c
index 6dcded9369..530a5b9de2 100644
--- a/src/qemu/qemu_monitor_json.c
+++ b/src/qemu/qemu_monitor_json.c
@@ -4396,14 +4396,8 @@ int qemuMonitorJSONInjectNMI(qemuMonitorPtr mon)
if (qemuMonitorJSONCommand(mon, cmd, &reply) < 0)
goto cleanup;
- if (qemuMonitorJSONHasError(reply, "CommandNotFound")) {
- VIR_DEBUG("inject-nmi command not found, trying HMP");
- if (qemuMonitorTextInjectNMI(mon) < 0)
- goto cleanup;
- } else {
- if (qemuMonitorJSONCheckError(cmd, reply) < 0)
- goto cleanup;
- }
+ if (qemuMonitorJSONCheckError(cmd, reply) < 0)
+ goto cleanup;
ret = 0;
cleanup:
--
2.16.2