From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37264) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aNebu-0002YI-BP for qemu-devel@nongnu.org; Mon, 25 Jan 2016 05:43:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aNebt-0004kh-Bm for qemu-devel@nongnu.org; Mon, 25 Jan 2016 05:43:02 -0500 Received: from mail-vk0-x22b.google.com ([2607:f8b0:400c:c05::22b]:33345) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aNebt-0004kR-7F for qemu-devel@nongnu.org; Mon, 25 Jan 2016 05:43:01 -0500 Received: by mail-vk0-x22b.google.com with SMTP id e64so72157896vkg.0 for ; Mon, 25 Jan 2016 02:43:00 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <1453684527-23564-1-git-send-email-david@gibson.dropbear.id.au> References: <1453684527-23564-1-git-send-email-david@gibson.dropbear.id.au> From: Peter Maydell Date: Mon, 25 Jan 2016 10:42:40 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PULL 00/28] ppc-for-2.6 queue 20160125 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: David Gibson Cc: Laurent Vivier , Thomas Huth , Mark Cave-Ayland , Alexander Graf , QEMU Developers , "qemu-ppc@nongnu.org" , "bharata@linux.vnet.ibm.com" , Greg Kurz On 25 January 2016 at 01:14, David Gibson wrote: > The following changes since commit 047e363b05679724d6b784c6ec6310697fe48ba0: > > Merge remote-tracking branch 'remotes/pmaydell/tags/pull-softfloat-20160122' into staging (2016-01-22 15:19:21 +0000) > > are available in the git repository at: > > git://github.com/dgibson/qemu.git tags/ppc-for-2.6-20160125 > > for you to fetch changes up to ce3b7990c1ddf70b29f00eb878bb693471f9bc36: > > uninorth.c: add support for UniNorth kMacRISCPCIAddressSelect (0x48) register (2016-01-25 10:35:50 +1100) > > ---------------------------------------------------------------- > ppc patch queue for 2016-01-25 > > Currently accumulated patches for target-ppc, pseries machine type and > related devices. > * Cleanup of error handling code in spapr > * A number of fixes for Macintosh devices for the benefit of MacOS 9 and X > * Remove some abuses of the RTAS memory access functions in spapr > * Fixes for the gdbstub (and monitor debug) for VMX and VSX extensions. > * Fix pseries machine hotplug memory under TCG Fails to build on 32-bit I'm afraid: /home/petmay01/qemu/hw/ppc/spapr.c: In function 'spapr_validate_node_memory': /home/petmay01/qemu/hw/ppc/spapr.c:1723:13: error: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'uint64_t' [-Werror=format] error_setg(errp, ^ Same thing from OSX clang, which gets the location of the error a bit more precise: /Users/pm215/src/qemu-for-merges/hw/ppc/spapr.c:1726:27: warning: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat] i, numa_info[i].node_mem, ^~~~~~~~~~~~~~~~~~~~~ /Users/pm215/src/qemu-for-merges/include/qapi/error.h:168:35: note: expanded from macro 'error_setg' (fmt), ## __VA_ARGS__) ^ thanks -- PMM