From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37230) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UWM2z-0008K5-9u for qemu-devel@nongnu.org; Sun, 28 Apr 2013 03:29:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UWM2w-0004Rl-Hj for qemu-devel@nongnu.org; Sun, 28 Apr 2013 03:29:21 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49386) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UWM2w-0004Pe-AO for qemu-devel@nongnu.org; Sun, 28 Apr 2013 03:29:18 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3S7TG66009016 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 28 Apr 2013 03:29:17 -0400 Date: Sun, 28 Apr 2013 15:29:14 +0800 From: Fam Zheng Message-ID: <20130428072914.GA27702@localhost.localdomain> References: <56a0e0347fde5396fb6b2a260de5b1a867a588d6.1366726446.git.jcody@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <56a0e0347fde5396fb6b2a260de5b1a867a588d6.1366726446.git.jcody@redhat.com> Subject: Re: [Qemu-devel] [PATCH v2 3/5] block: initial VHDX driver support framework - supports open and probe List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jeff Cody Cc: kwolf@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com > +static void cpu_to_leguids(ms_guid *guid) > +{ > + cpu_to_le32s(&guid->data1); > + cpu_to_le16s(&guid->data2); > + cpu_to_le16s(&guid->data3); > +} This one seems used in 5/5 only, so this patch fails compiling (defined but not used with -Werror=unused-function). Maybe move to 5/5? -- Fam