From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50801) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMQxA-0006GA-6l for qemu-devel@nongnu.org; Fri, 13 Feb 2015 19:51:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YMQx6-0005Nb-Jw for qemu-devel@nongnu.org; Fri, 13 Feb 2015 19:51:24 -0500 Received: from mail-lb0-f172.google.com ([209.85.217.172]:63664) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMQx6-0005NU-DA for qemu-devel@nongnu.org; Fri, 13 Feb 2015 19:51:20 -0500 Received: by mail-lb0-f172.google.com with SMTP id p9so17741064lbv.3 for ; Fri, 13 Feb 2015 16:51:19 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <1423844701-21041-1-git-send-email-stefanha@redhat.com> References: <1423844701-21041-1-git-send-email-stefanha@redhat.com> From: Peter Maydell Date: Sat, 14 Feb 2015 00:50:58 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PULL 00/65] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: QEMU Developers On 13 February 2015 at 16:23, Stefan Hajnoczi wrote: > The following changes since commit 449008f86418583a1f0fb946cf91ee7b4797317d: > > Merge remote-tracking branch 'remotes/awilliam/tags/vfio-update-20150210.0' into staging (2015-02-11 05:14:41 +0000) > > are available in the git repository at: > > git://github.com/stefanha/qemu.git tags/block-pull-request > > for you to fetch changes up to b5aaadc00652ba94028e7c21d0c58148ebf81ff9: > > block: Keep bdrv_check*_request()'s return value (2015-02-13 14:33:56 +0000) > > ---------------------------------------------------------------- > > ---------------------------------------------------------------- Build warnings/failures, I'm afraid. These are from the OSX build, but you can also see them on Linux clang builds and on 32-bit Linux builds. CC tests/libqos/malloc.o /Users/pm215/src/qemu/tests/libqos/malloc.c:35:3: warning: redefinition of typedef 'QGuestAllocator' is a C11 feature [-Wtypedef-redefinition] } QGuestAllocator; ^ /Users/pm215/src/qemu/tests/libqos/malloc.h:27:32: note: previous definition is here typedef struct QGuestAllocator QGuestAllocator; ^ 1 warning generated. CC tests/libqos/ahci.o /Users/pm215/src/qemu/tests/libqos/ahci.c:256:40: warning: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat] g_test_message("CLB: 0x%08lx", ahci->port[i].clb); ~~~~~ ^~~~~~~~~~~~~~~~~ %08llx /Users/pm215/src/qemu/tests/libqos/ahci.c:264:39: warning: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat] g_test_message("FB: 0x%08lx", ahci->port[i].fb); ~~~~~ ^~~~~~~~~~~~~~~~ %08llx /Users/pm215/src/qemu/tests/libqos/ahci.c:598:3: warning: redefinition of typedef 'AHCICommand' is a C11 feature [-Wtypedef-redefinition] } AHCICommand; ^ /Users/pm215/src/qemu/tests/libqos/ahci.h:422:28: note: previous definition is here typedef struct AHCICommand AHCICommand; ^ 3 warnings generated. thanks -- PMM