From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40278) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cAVtx-0000rj-NS for qemu-devel@nongnu.org; Sat, 26 Nov 2016 00:51:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cAVtu-0000mR-KK for qemu-devel@nongnu.org; Sat, 26 Nov 2016 00:51:53 -0500 Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:56749) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cAVtu-0000m5-A2 for qemu-devel@nongnu.org; Sat, 26 Nov 2016 00:51:50 -0500 Received: from pps.filterd (m0098394.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.17/8.16.0.17) with SMTP id uAQ5nFT3119219 for ; Sat, 26 Nov 2016 00:51:49 -0500 Received: from e18.ny.us.ibm.com (e18.ny.us.ibm.com [129.33.205.208]) by mx0a-001b2d01.pphosted.com with ESMTP id 26xv84ktp2-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Sat, 26 Nov 2016 00:51:49 -0500 Received: from localhost by e18.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Sat, 26 Nov 2016 00:51:48 -0500 References: <20161126054650.4486-1-haoqf@linux.vnet.ibm.com> From: Hao QingFeng Date: Sat, 26 Nov 2016 13:51:41 +0800 MIME-Version: 1.0 In-Reply-To: <20161126054650.4486-1-haoqf@linux.vnet.ibm.com> Content-Type: text/plain; charset=gbk; format=flowed Message-Id: <2957a37f-28df-1731-a038-1a34b0cf6891@linux.vnet.ibm.com> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 0/1] qemu: fix the bug reported by qemu-iotests case 055 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, qemu-block@nongnu.org Cc: borntraeger@de.ibm.com, cornelia.huck@de.ibm.com, liujbjl@linux.vnet.ibm.com, kwolf@redhat.com, qemu-stable@nongnu.org Sorry, missed Cc qemu-stable in this patch. =D4=DA 2016-11-26 13:46, QingFeng Hao =D0=B4=B5=C0: > Hi all, > v2 includes changes due to review comments by Kevin Wolf(thanks to Kevi= n). > > v2: > * Add endian conversion for lba field in vmdk_write_extent. > Based on master's commit: > 00227fefd205: Update version for v2.8.0-rc1 release > > v1: > * Add patch to fix the bug reported by qemu-iotests case 055. > Jing Liu and I found the cause was in vmdk and the fix is in the > followed patch. > Based on master's commit: > 00227fefd205: Update version for v2.8.0-rc1 release > > Upstream master's qemu-iotests case 055 reports the following error: > +qemu-img: Error while reading offset 0 of tests/qemu-iotests/scratc= h/blockdev-target.img: Invalid argument > +qemu-img: Error while reading offset 0 of tests/qemu-iotests/scratc= h/blockdev-target.img: Invalid argument > +qemu-img: Error while reading offset 0 of tests/qemu-iotests/scratc= h/blockdev-target.img: Invalid argument > +qemu-img: Error while reading offset 0 of tests/qemu-iotests/scratc= h/blockdev-target.img: Invalid argument > > Thanks! > > QingFeng Hao (1): > block/vmdk: Fix the endian problem of buf_len and lba > > block/vmdk.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > --=20 QingFeng Hao(Robin)