From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43537) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTpFv-0001ow-J5 for qemu-devel@nongnu.org; Thu, 11 Feb 2016 06:17:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aTpFu-0007P6-Ly for qemu-devel@nongnu.org; Thu, 11 Feb 2016 06:17:51 -0500 Received: from mail-vk0-x229.google.com ([2607:f8b0:400c:c05::229]:34964) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTpFu-0007Oy-Fm for qemu-devel@nongnu.org; Thu, 11 Feb 2016 06:17:50 -0500 Received: by mail-vk0-x229.google.com with SMTP id e6so33837101vkh.2 for ; Thu, 11 Feb 2016 03:17:50 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <1455043385-24250-1-git-send-email-peter.maydell@linaro.org> References: <1455043385-24250-1-git-send-email-peter.maydell@linaro.org> From: Peter Maydell Date: Thu, 11 Feb 2016 11:17:30 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PULL 00/15] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers On 9 February 2016 at 18:42, Peter Maydell wrote= : > Various things in this pull, but the one I care most about is that > it includes the "enable EL3 for 64-bit CPUs" patches. > > thanks > -- PMM > > > The following changes since commit 84c0781103dcbe9b5e5433ba16fbeb55d69d6c= b7: > > Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2016-02-09= ' into staging (2016-02-09 16:09:15 +0000) > > are available in the git repository at: > > > git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-= 20160209 > > for you to fetch changes up to dfe1da1c1271dff825676435ff444490da92cf4f: > > bcm2835_property: implement "get board revision" query (2016-02-09 18:2= 7:27 +0000) > > ---------------------------------------------------------------- > target-arm queue: > * fix some missing traps for EL3 support > * enable EL3 on Cortex-A53 and Cortex-A57 > * fix syndrome IL bit for Thumb coprocessor, VFP and Neon traps > * fix mishandling of architectural watchpoints > * avoid buffer overflow in sd.c > * fix max-cpus check in virt board > * implement 'get board revision' query for BCM2835 Ran into the "one of our compilers doesn't like typedef redefinitions" issu= e: /home/petmay01/linaro/qemu-for-merges/include/qom/cpu.h:221: error: redefinition of typedef =E2=80=98CPUWatchpoint=E2=80=99 /home/petmay01/linaro/qemu-for-merges/include/qom/cpu.h:67: error: previous declaration of =E2=80=98CPUWatchpoint=E2=80=99 was here Will do the trivial fix and resend: diff --git a/include/qom/cpu.h b/include/qom/cpu.h index 984bc8d..ff54600 100644 --- a/include/qom/cpu.h +++ b/include/qom/cpu.h @@ -211,14 +211,14 @@ typedef struct CPUBreakpoint { QTAILQ_ENTRY(CPUBreakpoint) entry; } CPUBreakpoint; -typedef struct CPUWatchpoint { +struct CPUWatchpoint { vaddr vaddr; vaddr len; vaddr hitaddr; MemTxAttrs hitattrs; int flags; /* BP_* */ QTAILQ_ENTRY(CPUWatchpoint) entry; -} CPUWatchpoint; +}; struct KVMState; struct kvm_run; thanks -- PMM