From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52590) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wz7FY-0004V4-Ke for qemu-devel@nongnu.org; Mon, 23 Jun 2014 12:37:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wz7FR-0004Aq-5n for qemu-devel@nongnu.org; Mon, 23 Jun 2014 12:37:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:63781) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wz7FQ-0004AX-V7 for qemu-devel@nongnu.org; Mon, 23 Jun 2014 12:37:37 -0400 From: Luiz Capitulino Date: Mon, 23 Jun 2014 12:36:16 -0400 Message-Id: <1403541403-16468-17-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1403541403-16468-1-git-send-email-lcapitulino@redhat.com> References: <1403541403-16468-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PULL 16/43] qapi event: convert POWERDOWN List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org Cc: qemu-devel@nongnu.org, anthony@codemonkey.ws From: Wenchao Xia There is no existing comments for POWERDOWN in doc/qmp/qmp-events.txt, so no change on it like other conversion patch. Signed-off-by: Wenchao Xia Signed-off-by: Paolo Bonzini Reviewed-by: Eric Blake Signed-off-by: Luiz Capitulino --- qapi-event.json | 10 ++++++++++ vl.c | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/qapi-event.json b/qapi-event.json index 7a6e6bf..ca08289 100644 --- a/qapi-event.json +++ b/qapi-event.json @@ -10,3 +10,13 @@ # Since: 0.12.0 ## { 'event': 'SHUTDOWN' } + +## +# @POWERDOWN +# +# Emitted when the virtual machine is powered down through the power control +# system, such as via ACPI. +# +# Since: 0.12.0 +## +{ 'event': 'POWERDOWN' } diff --git a/vl.c b/vl.c index 1d82b12..abb56d3 100644 --- a/vl.c +++ b/vl.c @@ -1932,7 +1932,7 @@ void qemu_system_shutdown_request(void) static void qemu_system_powerdown(void) { - monitor_protocol_event(QEVENT_POWERDOWN, NULL); + qapi_event_send_powerdown(&error_abort); notifier_list_notify(&powerdown_notifiers, NULL); } -- 1.9.3