From patchwork Tue Sep 13 13:02:07 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Marc-Andr=C3=A9_Lureau?= X-Patchwork-Id: 669348 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3sYQGQ0j7Zz9sf6 for ; Tue, 13 Sep 2016 23:18:06 +1000 (AEST) Received: from localhost ([::1]:48752 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjnb9-0000Dz-KL for incoming@patchwork.ozlabs.org; Tue, 13 Sep 2016 09:18:03 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48521) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjnNf-0005Wx-0X for qemu-devel@nongnu.org; Tue, 13 Sep 2016 09:04:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bjnNZ-0004rb-Uv for qemu-devel@nongnu.org; Tue, 13 Sep 2016 09:04:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52826) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjnNZ-0004rR-Pj for qemu-devel@nongnu.org; Tue, 13 Sep 2016 09:04:01 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 414409D0F5 for ; Tue, 13 Sep 2016 13:04:01 +0000 (UTC) Received: from localhost (ovpn-116-68.phx2.redhat.com [10.3.116.68]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u8DD3xo1030359; Tue, 13 Sep 2016 09:04:00 -0400 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= To: qemu-devel@nongnu.org Date: Tue, 13 Sep 2016 17:02:07 +0400 Message-Id: <20160913130209.695-29-marcandre.lureau@redhat.com> In-Reply-To: <20160913130209.695-1-marcandre.lureau@redhat.com> References: <20160913130209.695-1-marcandre.lureau@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Tue, 13 Sep 2016 13:04:01 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 28/30] qmp-commands: move 'system_powerdown' doc to schema X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , armbru@redhat.com Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Signed-off-by: Marc-André Lureau --- docs/qmp-commands.txt | 12 ------------ qapi-schema.json | 5 +++++ 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index 9bd5afa..5b562df 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -135,18 +135,6 @@ Example: -> { "execute": "system_wakeup" } <- { "return": {} } -system_powerdown ----------------- - -Send system power down event. - -Arguments: None. - -Example: - --> { "execute": "system_powerdown" } -<- { "return": {} } - device_add ---------- diff --git a/qapi-schema.json b/qapi-schema.json index cb90e9e..13a1417 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -2089,6 +2089,11 @@ # returning does not indicate that a guest has accepted the request or # that it has shut down. Many guests will respond to this command by # prompting the user in some way. +# Example: +# +# -> { "execute": "system_powerdown" } +# <- { "return": {} } +# ## { 'command': 'system_powerdown' }