On Mon, 7 Mar 2022 at 17:06, Peter Maydell <peter.mayd...@linaro.org> wrote: > > On Mon, 7 Mar 2022 at 10:01, Michael S. Tsirkin <m...@redhat.com> wrote: > > > > The following changes since commit 6629bf78aac7e53f83fd0bcbdbe322e2302dfd1f: > > > > Merge remote-tracking branch > > 'remotes/pmaydell/tags/pull-target-arm-20220302' into staging (2022-03-03 > > 14:46:48 +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 41d137fc631bd9315ff84727d780757d25054c58: > > > > hw/acpi/microvm: turn on 8042 bit in FADT boot architecture flags if > > present (2022-03-06 16:06:16 -0500) > > > > ---------------------------------------------------------------- > > virtio,pc,pci: features, cleanups, fixes > > > > vhost-user enabled on non-linux systems > > beginning of nvme sriov support > > bigger tx queue for vdpa > > virtio iommu bypass > > An FADT flag to detect legacy keyboards. > > > > Fixes, cleanups all over the place > > > > Signed-off-by: Michael S. Tsirkin <m...@redhat.com> > > Fails to build on the build-system-centos job: > > libqemu-ppc64-softmmu.fa.p/hw_virtio_virtio.c.o: In function > `qmp_decode_features': > /builds/qemu-project/qemu/build/../hw/virtio/virtio.c:4155: undefined > reference to `gpu_map' > /builds/qemu-project/qemu/build/../hw/virtio/virtio.c:4155: undefined > reference to `gpu_map' > collect2: error: ld returned 1 exit status > > https://gitlab.com/qemu-project/qemu/-/jobs/2172339948
Also fails on cross-win64-system: https://gitlab.com/qemu-project/qemu/-/jobs/2172339938 ../hw/virtio/virtio.c: In function 'qmp_x_query_virtio_vhost_queue_status': ../hw/virtio/virtio.c:4358:30: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] 4358 | status->desc = (uint64_t)(unsigned long)hdev->vqs[queue].desc; | ^ ../hw/virtio/virtio.c:4359:31: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] 4359 | status->avail = (uint64_t)(unsigned long)hdev->vqs[queue].avail; | ^ ../hw/virtio/virtio.c:4360:30: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] 4360 | status->used = (uint64_t)(unsigned long)hdev->vqs[queue].used; | ^ cc1: all warnings being treated as errors -- PMM > > thanks > -- PMM -- 12345678901234567890123456789012345678901234567890123456789012345678901234567890 1 2 3 4 5 6 7 8