From: Peter Maydell <peter.maydell@linaro.org>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PULL v2 00/18] virtio, vhost, pci: fixes, features
Date: Fri, 27 Jan 2017 15:19:49 +0000 [thread overview]
Message-ID: <CAFEAcA8avJj04_w_GSriA5MsMKGAwLOar1-e1MgVroe+OyUGqA@mail.gmail.com> (raw)
In-Reply-To: <1485447262-27014-1-git-send-email-mst@redhat.com>
On 26 January 2017 at 16:15, Michael S. Tsirkin <mst@redhat.com> wrote:
> The following changes since commit ae5045ae5b2bbd8ce1335d1b05f9ecacca83a6cf:
>
> Merge remote-tracking branch 'remotes/rth/tags/pull-nios-20170124' into staging (2017-01-25 13:30:23 +0000)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
>
> for you to fetch changes up to 1954d8b17bbccad723c193edba961d49b7ac4a43:
>
> hw/pci: disable pci-bridge's shpc by default (2017-01-26 18:13:33 +0200)
>
> ----------------------------------------------------------------
> virtio, vhost, pci: fixes, features
>
> generic pci root port support
> disable shpc by default
> safer version of ARRAY_SIZE and QEMU_BUILD_BUG_ON
> fixes and cleanups all over the place
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>
Failure to build, x86:
/home/petmay01/linaro/qemu-for-merges/hw/ppc/spapr.c: In function
‘spapr_phb_placement’:
/home/petmay01/linaro/qemu-for-merges/hw/ppc/spapr.c:2643:20: error:
bit-field ‘<anonymous>’ width n
ot an integer constant
QEMU_BUILD_BUG_ON((max_phbs * SPAPR_PCI_IO_WIN_SIZE) >
SPAPR_PCI_MEM32_WIN_SIZE);
^
/home/petmay01/linaro/qemu-for-merges/hw/ppc/spapr.c:2644:20: error:
bit-field ‘<anonymous>’ width not an integer constant
QEMU_BUILD_BUG_ON((max_phbs * SPAPR_PCI_MEM32_WIN_SIZE) >
SPAPR_PCI_MEM64_WIN_SIZE);
^
Failure to build, aarch64 and aarch32:
In file included from /home/petmay01/qemu/target/arm/cpu.h:23:0,
from /home/petmay01/qemu/trace/control-target.c:11:
/home/petmay01/qemu/target/arm/kvm-consts.h:35:1: error: expected ','
or ';' before 'typedef'
MISMATCH_CHECK(CP_REG_SIZE_MASK, KVM_REG_SIZE_MASK)
^
/home/petmay01/qemu/target/arm/kvm-consts.h:35:83: error: data
definition has no type or storage cla
ss [-Werror]
MISMATCH_CHECK(CP_REG_SIZE_MASK, KVM_REG_SIZE_MASK)
^
/home/petmay01/qemu/target/arm/kvm-consts.h:35:83: error: type
defaults to 'int' in declaration of '
qemu_build_bug_on__35' [-Werror=implicit-int]
(repeated for all the other uses of MISMATCH_CHECK in that header)
thanks
-- PMM
prev parent reply other threads:[~2017-01-27 15:20 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-26 16:15 [Qemu-devel] [PULL v2 00/18] virtio, vhost, pci: fixes, features Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 01/18] compiler: drop ; after BUILD_BUG_ON Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 02/18] qxl: switch to constants within BUILD_BUG_ON Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 03/18] compiler: rework BUG_ON using a struct Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 04/18] compiler: expression version of QEMU_BUILD_BUG_ON Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 05/18] ARRAY_SIZE: check that argument is an array Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 06/18] pci: mark ROMs read-only Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 07/18] intel_iommu: fix and simplify size calculation in process_device_iotlb_desc() Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 08/18] hw/pcie: Introduce a base class for PCI Express Root Ports Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 09/18] hw/ioh3420: derive from PCI Express Root Port base class Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 10/18] hw/pcie: Introduce Generic PCI Express Root Port Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 11/18] hw/i386: check if nvdimm is enabled before plugging Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 12/18] msix: Follow CODING_STYLE Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 13/18] hcd-xhci: check & correct param before using it Michael S. Tsirkin
2017-01-26 16:15 ` [Qemu-devel] [PULL v2 14/18] pci: Convert msix_init() to Error and fix callers Michael S. Tsirkin
2017-01-26 16:16 ` [Qemu-devel] [PULL v2 15/18] virtio: make virtio_should_notify static Michael S. Tsirkin
2017-01-26 16:16 ` [Qemu-devel] [PULL v2 16/18] vhost: skip ROM sections Michael S. Tsirkin
2017-01-26 16:16 ` [Qemu-devel] [PULL v2 17/18] vhost-user: delete chardev on cleanup Michael S. Tsirkin
2017-01-26 16:16 ` [Qemu-devel] [PULL v2 18/18] hw/pci: disable pci-bridge's shpc by default Michael S. Tsirkin
2017-01-27 15:19 ` Peter Maydell [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAFEAcA8avJj04_w_GSriA5MsMKGAwLOar1-e1MgVroe+OyUGqA@mail.gmail.com \
--to=peter.maydell@linaro.org \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).