]> git.proxmox.com Git - mirror_qemu.git/commitdiff
qapi: Complete system_powerdown conversion
authorLuiz Capitulino <lcapitulino@redhat.com>
Mon, 28 Nov 2011 00:40:03 +0000 (22:40 -0200)
committerLuiz Capitulino <lcapitulino@redhat.com>
Tue, 6 Dec 2011 13:40:00 +0000 (11:40 -0200)
Commit 5bc465e4b1b6f4582a400c0a7033a1c841744278 converted only
the HMP part of the system_powerdown command to the QAPI, this
commit completes it by converting the QMP part too.

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
monitor.c
qmp-commands.hx

index 1be222ee18aae09f73b2b232fc10dde96a713344..344b196451d3de69f3e26ed0d3b0942d9db67f33 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -1796,16 +1796,6 @@ static void do_boot_set(Monitor *mon, const QDict *qdict)
     }
 }
 
-/**
- * do_system_powerdown(): Issue a machine powerdown
- */
-static int do_system_powerdown(Monitor *mon, const QDict *qdict,
-                               QObject **ret_data)
-{
-    qemu_system_powerdown_request();
-    return 0;
-}
-
 #if defined(TARGET_I386)
 static void print_pte(Monitor *mon, target_phys_addr_t addr,
                       target_phys_addr_t pte,
index 94da2a8ef2cd51103ec6b9cfa433ec296cda7fd7..4fcb92ccfa7bea7133f8e40143d539f565dbbd96 100644 (file)
@@ -244,10 +244,7 @@ EQMP
     {
         .name       = "system_powerdown",
         .args_type  = "",
-        .params     = "",
-        .help       = "send system power down event",
-        .user_print = monitor_user_noop,
-        .mhandler.cmd_new = do_system_powerdown,
+        .mhandler.cmd_new = qmp_marshal_input_system_powerdown,
     },
 
 SQMP