From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aT6Bz-0000Oc-Ah for qemu-devel@nongnu.org; Tue, 09 Feb 2016 06:10:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aT6Bu-0004Sr-Gm for qemu-devel@nongnu.org; Tue, 09 Feb 2016 06:10:47 -0500 Received: from mx1.redhat.com ([209.132.183.28]:37076) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aT6Bu-0004Sn-4z for qemu-devel@nongnu.org; Tue, 09 Feb 2016 06:10:42 -0500 References: <1454950999-64128-1-git-send-email-pbonzini@redhat.com> From: Paolo Bonzini Message-ID: <56B9C92E.8070808@redhat.com> Date: Tue, 9 Feb 2016 12:10:38 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PULL 00/28] Misc changes for 2016-02-08 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: QEMU Developers On 09/02/2016 10:21, Peter Maydell wrote: > On 8 February 2016 at 17:02, Paolo Bonzini wrote: >> The following changes since commit e4a096b1cd4350eeca5dcdc391ab333d208= 3d7fd: >> >> ui/cocoa.m: Include qemu/osdep.h (2016-02-08 13:14:40 +0000) >> >> are available in the git repository at: >> >> git://github.com/bonzini/qemu.git tags/for-upstream >> >> for you to fetch changes up to c3fb8ac5f6d315cf7aecdd1601c27d134c7cdbf= 5: >> >> ipmi_bmc_sim: Add break to correct watchdog NMI check (2016-02-08 17= :36:49 +0100) >> >> ---------------------------------------------------------------- >> * switch to C11 atomics (Alex) >> * Coverity fixes for IPMI (Corey) >> * at long last, fail on wrong .pc files if -m32 is in use (Daniel) >> * qemu-char regression fix (Daniel) >> * SAS1068 device (Paolo) >> * target-i386 cleanups (Richard) >> * qemu-nbd docs improvements (Sitsofe) >> * thread-safe memory hotplug (Stefan) >> >=20 > Hi; I'm afraid there are some compile issues here: >=20 > On 64-bit ARM and 64-bit PPC: >=20 > /home/pm215/qemu/hw/scsi/mptconfig.c: In function =E2=80=98vfill.isra.1= =E2=80=99: > /home/pm215/qemu/hw/scsi/mptconfig.c:86:41: error: =E2=80=98val.str=E2=80= =99 may be > used uninitialized in this function [-Werror=3Dmaybe-uninitialized] > stl_le_p(data + ofs, val.ll); > ^ Compiler issue, but easily shut up. > And a runtime error from the clang undefined behaviour > sanitizer: >=20 > /home/petmay01/linaro/qemu-for-merges/exec.c:1546:48: runtime error: > member access within null pointer of type 'DirtyMemoryBlocks' >=20 > which seems to fire for every test in the check-qtest-$ARCH > tests. This is almost genuine, :) it's a zero-size memcpy. clang 1, GCC 1. Can't complain too loudly this time. Paolo