From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1X0atx-0004kg-NH for mharc-qemu-trivial@gnu.org; Fri, 27 Jun 2014 14:29:33 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53910) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X0atq-0004cn-0p for qemu-trivial@nongnu.org; Fri, 27 Jun 2014 14:29:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X0ath-0001Hx-B6 for qemu-trivial@nongnu.org; Fri, 27 Jun 2014 14:29:25 -0400 Received: from mx1.redhat.com ([209.132.183.28]:61137) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X0ath-0001Hr-39; Fri, 27 Jun 2014 14:29:17 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5RISnFO018909 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 27 Jun 2014 14:29:14 -0400 Received: from noname.redhat.com (ovpn-116-40.ams2.redhat.com [10.36.116.40]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id s5RHLwSD006163; Fri, 27 Jun 2014 13:21:59 -0400 Date: Fri, 27 Jun 2014 19:21:57 +0200 From: Kevin Wolf To: Chen Gang Message-ID: <20140627172157.GL5223@noname.redhat.com> References: <53A84797.9040304@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <53A84797.9040304@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: famz@redhat.com, qemu-trivial@nongnu.org, Michael Tokarev , qemu-devel@nongnu.org, mreitz@redhat.com, stefanha@redhat.com, eblake@redhat.com Subject: Re: [Qemu-trivial] [PATCH trivial v2] block.c: Add return value for bdrv_append_temp_snapshot() to avoid incorrect failure processing issue X-BeenThere: qemu-trivial@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jun 2014 18:29:32 -0000 Am 23.06.2014 um 17:28 hat Chen Gang geschrieben: > When failure occurs, 'ret' need be set, or may return 0 to indicate success. > And error_propagate() also need be called only one time within a function. > > It is abnormal to prevent bdrv_append_temp_snapshot() return value but still > set errp when error occurs -- although it contents return value internally. > > So let bdrv_append_temp_snapshot() internal return value outside, and let > all things normal, then fix the issue too. > > > Signed-off-by: Chen Gang Thanks, applied to the block branch. Kevin