From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43106) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V6Xsv-00084p-R3 for qemu-devel@nongnu.org; Mon, 05 Aug 2013 23:24:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V6Xsp-00018t-S4 for qemu-devel@nongnu.org; Mon, 05 Aug 2013 23:24:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16324) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V6Xsp-00018d-K7 for qemu-devel@nongnu.org; Mon, 05 Aug 2013 23:24:27 -0400 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 r763OPE8029094 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 5 Aug 2013 23:24:25 -0400 Date: Mon, 5 Aug 2013 23:24:23 -0400 From: Jeff Cody Message-ID: <20130806032423.GA11689@localhost.localdomain> References: <1375753243-19530-1-git-send-email-famz@redhat.com> <1375753243-19530-3-git-send-email-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1375753243-19530-3-git-send-email-famz@redhat.com> Subject: Re: [Qemu-devel] [PATCH v3 02/10] vmdk: Make VmdkGrainMarker QEMU_PACKED List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: kwolf@redhat.com, pmatouse@redhat.com, qemu-devel@nongnu.org, armbru@redhat.com, stefanha@redhat.com, asias@redhat.com, areis@redhat.com On Tue, Aug 06, 2013 at 09:40:35AM +0800, Fam Zheng wrote: > For consistency, make this on disk structure QEMU_PACKED. > > Signed-off-by: Fam Zheng > --- > block/vmdk.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > I don't think this makes it necessary for a respin, but if you do one anyway, I would suggest squashing this patch and patch 1 together. > diff --git a/block/vmdk.c b/block/vmdk.c > index 8ff43b9..7ebe36b 100644 > --- a/block/vmdk.c > +++ b/block/vmdk.c > @@ -131,7 +131,7 @@ typedef struct VmdkGrainMarker { > uint64_t lba; > uint32_t size; > uint8_t data[0]; > -} VmdkGrainMarker; > +} QEMU_PACKED VmdkGrainMarker; > > enum { > MARKER_END_OF_STREAM = 0, > -- > 1.8.3.4 >