From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49739) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtFTh-0000JH-Kf for qemu-devel@nongnu.org; Thu, 10 Jan 2013 05:35:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TtFTg-0004D2-N1 for qemu-devel@nongnu.org; Thu, 10 Jan 2013 05:35:17 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48830) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtFTg-0004Cy-FN for qemu-devel@nongnu.org; Thu, 10 Jan 2013 05:35:16 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r0AAZEGg030966 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 10 Jan 2013 05:35:15 -0500 Message-ID: <1357814109.10162.2.camel@localhost> From: Pavel Hrdina Date: Thu, 10 Jan 2013 11:35:09 +0100 In-Reply-To: <50EDF18E.7080004@redhat.com> References: <65434081d79cb01d31c29e58ba90366d995fdf77.1357741229.git.phrdina@redhat.com> <50EDF18E.7080004@redhat.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 12/13] savevm: update return value from qemu_savevm_state List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake Cc: qemu-devel@nongnu.org, lcapitulino@redhat.com On Wed, 2013-01-09 at 15:39 -0700, Eric Blake wrote: > On 01/09/2013 08:18 AM, Pavel Hrdina wrote: > > Signed-off-by: Pavel Hrdina > > --- > > savevm.c | 7 ++++--- > > 1 file changed, 4 insertions(+), 3 deletions(-) > > > > > @@ -2189,6 +2189,7 @@ void qmp_vm_snapshot_save(bool has_name, const char *name, Error **errp) > > error_setg(errp, "Failed to open '%s' file.", bdrv_get_device_name(bs)); > > goto the_end; > > } > > + > > ret = qemu_savevm_state(f, &local_err); > > Spurious whitespace change? > I'll fix that, thanks.