From patchwork Fri Oct 14 17:26:39 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 119866 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 26230B6F97 for ; Sat, 15 Oct 2011 04:27:09 +1100 (EST) Received: from localhost ([::1]:51496 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RElXD-0002nM-R4 for incoming@patchwork.ozlabs.org; Fri, 14 Oct 2011 13:27:03 -0400 Received: from eggs.gnu.org ([140.186.70.92]:39418) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RElX1-0002h9-Jf for qemu-devel@nongnu.org; Fri, 14 Oct 2011 13:26:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RElX0-0001g9-ND for qemu-devel@nongnu.org; Fri, 14 Oct 2011 13:26:51 -0400 Received: from mx1.redhat.com ([209.132.183.28]:17460) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RElX0-0001g1-G7 for qemu-devel@nongnu.org; Fri, 14 Oct 2011 13:26:50 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p9EHQnad004808 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 14 Oct 2011 13:26:49 -0400 Received: from localhost (ovpn-113-165.phx2.redhat.com [10.3.113.165]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p9EHQm5L018359; Fri, 14 Oct 2011 13:26:49 -0400 From: Luiz Capitulino To: aliguori@us.ibm.com Date: Fri, 14 Oct 2011 14:26:39 -0300 Message-Id: <1318613203-25892-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1318613203-25892-1-git-send-email-lcapitulino@redhat.com> References: <1318613203-25892-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 209.132.183.28 Cc: qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 1/5] QMP: Fix blockdev-snapshot-sync doc example X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Fix wrong command name. Reported-by: Eric Blake Signed-off-by: Luiz Capitulino --- qmp-commands.hx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qmp-commands.hx b/qmp-commands.hx index ea96191..9edb3b9 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -710,10 +710,10 @@ Arguments: Example: --> { "execute": "blockdev-snapshot", "arguments": { "device": "ide-hd0", - "snapshot-file": - "/some/place/my-image", - "format": "qcow2" } } +-> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0", + "snapshot-file": + "/some/place/my-image", + "format": "qcow2" } } <- { "return": {} } EQMP