On Fri, Jul 03, 2020 at 05:03:31AM -0400, Michael S. Tsirkin wrote: > The following changes since commit fc1bff958998910ec8d25db86cd2f53ff125f7ab: > > hw/misc/pca9552: Add missing TypeInfo::class_size field (2020-06-29 > 21:16:10 +0100) > > 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 900ed7043750ae3cdf35c05da66e150a8821c3a0: > > vhost-vdpa: introduce vhost-vdpa net client (2020-07-03 04:59:13 -0400)
I fixed up cross-build on s390 and re-pushed the same tag: New hash fbe08d0f39dacc996f202059a425beb13be09866 Sorry about the noise. > ---------------------------------------------------------------- > virtio,acpi: features, fixes, cleanups. > > vdpa support > virtio-mem support > a handy script for disassembling acpi tables > misc fixes and cleanups > > Signed-off-by: Michael S. Tsirkin <m...@redhat.com> > > ---------------------------------------------------------------- > Andrew Jones (1): > tests/acpi: remove stale allowed tables > > Cindy Lu (11): > net: introduce qemu_get_peer > vhost_net: use the function qemu_get_peer > vhost: introduce new VhostOps vhost_dev_start > vhost: implement vhost_dev_start method > vhost: introduce new VhostOps vhost_vq_get_addr > vhost: implement vhost_vq_get_addr method > vhost: introduce new VhostOps vhost_force_iommu > vhost: implement vhost_force_iommu method > vhost_net: introduce set_config & get_config > vhost-vdpa: introduce vhost-vdpa backend > vhost-vdpa: introduce vhost-vdpa net client > > David Hildenbrand (22): > virtio-balloon: always indicate S_DONE when migration fails > pc: Support coldplugging of virtio-pmem-pci devices on all buses > exec: Introduce ram_block_discard_(disable|require)() > vfio: Convert to ram_block_discard_disable() > accel/kvm: Convert to ram_block_discard_disable() > s390x/pv: Convert to ram_block_discard_disable() > virtio-balloon: Rip out qemu_balloon_inhibit() > target/i386: sev: Use ram_block_discard_disable() > migration/rdma: Use ram_block_discard_disable() > migration/colo: Use ram_block_discard_disable() > virtio-mem: Paravirtualized memory hot(un)plug > virtio-pci: Proxy for virtio-mem > MAINTAINERS: Add myself as virtio-mem maintainer > hmp: Handle virtio-mem when printing memory device info > numa: Handle virtio-mem in NUMA stats > pc: Support for virtio-mem-pci > virtio-mem: Allow notifiers for size changes > virtio-pci: Send qapi events when the virtio-mem size changes > virtio-mem: Migration sanity checks > virtio-mem: Add trace events > virtio-mem: Exclude unplugged memory during migration > numa: Auto-enable NUMA when any memory devices are possible > > Jason Wang (3): > virtio-bus: introduce queue_enabled method > virtio-pci: implement queue_enabled method > vhost: check the existence of vhost_set_iotlb_callback > > Maxime Coquelin (1): > docs: vhost-user: add Virtio status protocol feature > > Michael S. Tsirkin (2): > tests: disassemble-aml.sh: generate AML in readable format > Revert "tests/migration: Reduce autoconverge initial bandwidth" > > Peter Xu (1): > MAINTAINERS: add VT-d entry > > configure | 21 + > qapi/misc.json | 64 +- > qapi/net.json | 28 +- > hw/virtio/virtio-mem-pci.h | 34 ++ > include/exec/memory.h | 41 ++ > include/hw/boards.h | 1 + > include/hw/pci/pci.h | 1 + > include/hw/vfio/vfio-common.h | 4 +- > include/hw/virtio/vhost-backend.h | 19 +- > include/hw/virtio/vhost-vdpa.h | 26 + > include/hw/virtio/vhost.h | 7 + > include/hw/virtio/virtio-bus.h | 4 + > include/hw/virtio/virtio-mem.h | 86 +++ > include/migration/colo.h | 2 +- > include/migration/misc.h | 2 + > include/net/net.h | 1 + > include/net/vhost-vdpa.h | 22 + > include/net/vhost_net.h | 5 + > include/sysemu/balloon.h | 2 - > net/clients.h | 2 + > tests/qtest/bios-tables-test-allowed-diff.h | 18 - > accel/kvm/kvm-all.c | 4 +- > balloon.c | 17 - > exec.c | 52 ++ > hw/arm/virt.c | 2 + > hw/core/numa.c | 17 +- > hw/i386/microvm.c | 1 + > hw/i386/pc.c | 66 ++- > hw/i386/pc_piix.c | 1 + > hw/i386/pc_q35.c | 1 + > hw/net/vhost_net-stub.c | 11 + > hw/net/vhost_net.c | 45 +- > hw/net/virtio-net.c | 19 + > hw/s390x/s390-virtio-ccw.c | 22 +- > hw/vfio/ap.c | 8 +- > hw/vfio/ccw.c | 11 +- > hw/vfio/common.c | 53 +- > hw/vfio/pci.c | 6 +- > hw/virtio/vhost-backend.c | 6 + > hw/virtio/vhost-vdpa.c | 475 +++++++++++++++ > hw/virtio/vhost.c | 52 +- > hw/virtio/virtio-balloon.c | 36 +- > hw/virtio/virtio-mem-pci.c | 157 +++++ > hw/virtio/virtio-mem.c | 873 > ++++++++++++++++++++++++++++ > hw/virtio/virtio-pci.c | 13 + > hw/virtio/virtio.c | 6 + > migration/migration.c | 15 +- > migration/postcopy-ram.c | 23 - > migration/rdma.c | 18 +- > migration/savevm.c | 11 +- > monitor/hmp-cmds.c | 16 + > monitor/monitor.c | 1 + > net/net.c | 10 + > net/vhost-vdpa.c | 228 ++++++++ > target/i386/sev.c | 7 + > tests/qtest/migration-test.c | 2 +- > MAINTAINERS | 18 + > docs/interop/index.rst | 1 + > docs/interop/vhost-user.rst | 24 + > docs/interop/vhost-vdpa.rst | 17 + > hw/i386/Kconfig | 1 + > hw/virtio/Kconfig | 11 + > hw/virtio/Makefile.objs | 3 + > hw/virtio/trace-events | 10 + > net/Makefile.objs | 2 +- > qemu-options.hx | 12 + > tests/data/acpi/disassemle-aml.sh | 52 ++ > tests/data/acpi/rebuild-expected-aml.sh | 1 + > 68 files changed, 2640 insertions(+), 187 deletions(-) > create mode 100644 hw/virtio/virtio-mem-pci.h > create mode 100644 include/hw/virtio/vhost-vdpa.h > create mode 100644 include/hw/virtio/virtio-mem.h > create mode 100644 include/net/vhost-vdpa.h > create mode 100644 hw/virtio/vhost-vdpa.c > create mode 100644 hw/virtio/virtio-mem-pci.c > create mode 100644 hw/virtio/virtio-mem.c > create mode 100644 net/vhost-vdpa.c > create mode 100644 docs/interop/vhost-vdpa.rst > create mode 100755 tests/data/acpi/disassemle-aml.sh >