From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46181) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RY0Ls-0008BY-Vu for qemu-devel@nongnu.org; Tue, 06 Dec 2011 14:06:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RY0Lo-0004dE-NM for qemu-devel@nongnu.org; Tue, 06 Dec 2011 14:06:52 -0500 Received: from mx1.redhat.com ([209.132.183.28]:20853) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RY0Lo-0004dA-FR for qemu-devel@nongnu.org; Tue, 06 Dec 2011 14:06:48 -0500 From: Luiz Capitulino Date: Tue, 6 Dec 2011 15:54:17 -0200 Message-Id: <1323194072-20046-8-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1323194072-20046-1-git-send-email-lcapitulino@redhat.com> References: <1323194072-20046-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 07/22] qapi: Complete system_powerdown conversion List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com Cc: qemu-devel@nongnu.org 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 --- monitor.c | 10 ---------- qmp-commands.hx | 5 +---- 2 files changed, 1 insertions(+), 14 deletions(-) diff --git a/monitor.c b/monitor.c index 1be222e..344b196 100644 --- 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, diff --git a/qmp-commands.hx b/qmp-commands.hx index 94da2a8..4fcb92c 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -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 -- 1.7.8.110.g4cb5d1.dirty