diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2011-06-08 12:16:24 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-06-08 12:16:24 -0500 |
| commit | 924f766af9be3ff036a419fc85ed740aa01f8eac (patch) | |
| tree | 8e645fa4dc1be00eb06df8cab7a0501a64cffe55 /qmp-commands.hx | |
| parent | 93e0597ef9fa266756c30e61fafe4b70fc7ce6a6 (diff) | |
| parent | 37628f11c6b190ebb3082938868aadb23942ee3a (diff) | |
| download | focaccia-qemu-924f766af9be3ff036a419fc85ed740aa01f8eac.tar.gz focaccia-qemu-924f766af9be3ff036a419fc85ed740aa01f8eac.zip | |
Merge remote-tracking branch 'qmp/for-anthony' into staging
Diffstat (limited to 'qmp-commands.hx')
| -rw-r--r-- | qmp-commands.hx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx index a9f109a391..92c5c3a318 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -430,6 +430,33 @@ Example: EQMP { + .name = "inject-nmi", + .args_type = "", + .params = "", + .help = "", + .user_print = monitor_user_noop, + .mhandler.cmd_new = do_inject_nmi, + }, + +SQMP +inject-nmi +---------- + +Inject an NMI on guest's CPUs. + +Arguments: None. + +Example: + +-> { "execute": "inject-nmi" } +<- { "return": {} } + +Note: inject-nmi is only supported for x86 guest currently, it will + returns "Unsupported" error for non-x86 guest. + +EQMP + + { .name = "migrate", .args_type = "detach:-d,blk:-b,inc:-i,uri:s", .params = "[-d] [-b] [-i] uri", |