From patchwork Thu Oct 1 15:50:41 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 34744 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D3208B7BC2 for ; Fri, 2 Oct 2009 02:15:50 +1000 (EST) Received: from localhost ([127.0.0.1]:60884 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MtOJo-0007rm-1A for incoming@patchwork.ozlabs.org; Thu, 01 Oct 2009 12:15:48 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MtNwR-0007j9-5t for qemu-devel@nongnu.org; Thu, 01 Oct 2009 11:51:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MtNwM-0007c7-MX for qemu-devel@nongnu.org; Thu, 01 Oct 2009 11:51:38 -0400 Received: from [199.232.76.173] (port=54694 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MtNwM-0007bb-GZ for qemu-devel@nongnu.org; Thu, 01 Oct 2009 11:51:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:22197) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MtNwL-0003es-Vc for qemu-devel@nongnu.org; Thu, 01 Oct 2009 11:51:34 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n91FpXD7026362; Thu, 1 Oct 2009 11:51:33 -0400 Received: from localhost (vpn-12-143.rdu.redhat.com [10.11.12.143]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n91FpV97002825; Thu, 1 Oct 2009 11:51:32 -0400 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Thu, 1 Oct 2009 12:50:41 -0300 Message-Id: <1254412245-10452-11-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1254412245-10452-1-git-send-email-lcapitulino@redhat.com> References: <1254412245-10452-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: aliguori@us.ibm.com, avi@redhat.com Subject: [Qemu-devel] [PATCH 10/14] monitor: Convert do_system_powerdown() to QObject X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Luiz Capitulino --- monitor.c | 6 +++++- qemu-monitor.hx | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/monitor.c b/monitor.c index f2f0c74..87fd91c 100644 --- a/monitor.c +++ b/monitor.c @@ -1338,7 +1338,11 @@ static void do_system_reset(Monitor *mon, const QDict *qdict, qemu_system_reset_request(); } -static void do_system_powerdown(Monitor *mon, const QDict *qdict) +/** + * do_system_powerdown(): Issue a machine powerdown + */ +static void do_system_powerdown(Monitor *mon, const QDict *qdict, + QObject **ret_data, MonitorError *error) { qemu_system_powerdown_request(); } diff --git a/qemu-monitor.hx b/qemu-monitor.hx index 4f8e678..e848b1d 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -523,8 +523,8 @@ ETEXI .name = "system_powerdown", .args_type = "", .handler = do_system_powerdown, - .user_print = NULL, - .user_error = NULL, + .user_print = monitor_user_noop, + .user_error = monitor_error_noop, .params = "", .help = "send system power down event" },