[PULL 00/35] pc,pci,virtio: fixes, cleanups

Michael S. Tsirkin posted 35 patches 2 years, 7 months ago
Failed in applying to current master (apply log)
There is a newer version of this series
configs/devices/mips-softmmu/common.mak |   5 +-
include/hw/acpi/acpi.h                  |   2 +
include/hw/acpi/generic_event_device.h  |   2 -
include/hw/i386/pc.h                    |   4 -
include/hw/pci-host/i440fx.h            |   1 -
include/hw/virtio/vhost-backend.h       |   6 --
include/hw/virtio/vhost-vdpa.h          |   1 +
include/hw/virtio/vhost.h               |   6 +-
include/hw/virtio/virtio-bus.h          |   4 +-
include/net/vhost_net.h                 |   1 +
hw/acpi/acpi-cpu-hotplug-stub.c         |  50 +++++++++++
hw/acpi/acpi-mem-hotplug-stub.c         |  35 ++++++++
hw/acpi/acpi-nvdimm-stub.c              |   8 ++
hw/acpi/acpi-pci-hotplug-stub.c         |  47 ++++++++++
hw/acpi/ich9.c                          |   2 +-
hw/acpi/pcihp.c                         |   6 +-
hw/acpi/piix4.c                         |   4 +-
hw/i386/acpi-build.c                    |  24 +++--
hw/i386/pc.c                            |  13 +--
hw/i386/pc_q35.c                        |   2 +-
hw/isa/lpc_ich9.c                       |  13 +++
hw/net/vhost_net.c                      |   5 +-
hw/pci-host/i440fx.c                    |   8 --
hw/virtio/vhost-backend.c               |  30 +------
hw/virtio/vhost-user.c                  | 151 ++++++++++++++++++++++----------
hw/virtio/vhost-vdpa.c                  |  39 ++++++---
hw/virtio/vhost.c                       |  31 ++++++-
hw/virtio/virtio-balloon.c              |  41 ++++-----
hw/virtio/virtio-bus.c                  |  14 +++
hw/virtio/virtio-pci.c                  |  14 +++
hw/virtio/virtio.c                      |   7 +-
net/tap.c                               |   1 +
net/vhost-user.c                        |   1 +
net/vhost-vdpa.c                        |  35 +++-----
stubs/pci-host-piix.c                   |   7 --
tests/vhost-user-bridge.c               |   7 +-
MAINTAINERS                             |   1 +
hw/acpi/Kconfig                         |  10 +++
hw/acpi/meson.build                     |  14 ++-
stubs/meson.build                       |   1 -
40 files changed, 440 insertions(+), 213 deletions(-)
create mode 100644 hw/acpi/acpi-cpu-hotplug-stub.c
create mode 100644 hw/acpi/acpi-mem-hotplug-stub.c
create mode 100644 hw/acpi/acpi-nvdimm-stub.c
create mode 100644 hw/acpi/acpi-pci-hotplug-stub.c
delete mode 100644 stubs/pci-host-piix.c
[PULL 00/35] pc,pci,virtio: fixes, cleanups
Posted by Michael S. Tsirkin 2 years, 7 months ago
The following changes since commit 8880cc4362fde4ecdac0b2092318893118206fcf:

  Merge remote-tracking branch 'remotes/cschoenebeck/tags/pull-9p-20210902' into staging (2021-09-03 08:27:38 +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 499c8b4de96eecc554a03e452226f79f169a233b:

  vhost-vdpa: remove the unncessary queue_index assignment (2021-09-04 17:34:05 -0400)

----------------------------------------------------------------
pc,pci,virtio: fixes, cleanups

Fixes, cleanups all over the place.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Alyssa Ross (1):
      vhost-user: add missing space in error message

Ani Sinha (5):
      hw/acpi: define PIIX4 acpi pci hotplug property strings at a single place
      hw/acpi: refactor acpi hp modules so that targets can just use what they need
      hw/pci: remove all references to find_i440fx function
      hw/acpi: use existing references to pci device struct within functions
      MAINTAINERS: Added myself as a reviewer for acpi/smbios subsystem

David Hildenbrand (2):
      virtio-balloon: don't start free page hinting if postcopy is possible
      virtio-balloon: free page hinting cleanups

Denis Plotnikov (1):
      vhost: make SET_VRING_ADDR, SET_FEATURES send replies

Eduardo Habkost (2):
      acpi: Delete broken ACPI_GED_X86 macro
      Use PCI_HOST_BRIDGE macro

Eugenio Pérez (1):
      vhost-vdpa: Do not send empty IOTLB update batches

Gerd Hoffmann (1):
      q35: catch invalid cpu hotplug configuration

Jason Wang (14):
      virtio-bus: introduce iommu_enabled()
      virtio-pci: implement iommu_enabled()
      vhost: correctly detect the enabling IOMMU
      vhost-vdpa: remove unused variable "acked_features"
      vhost-vdpa: correctly return err in vhost_vdpa_set_backend_cap()
      vhost_net: remove the meaningless assignment in vhost_net_start_one()
      vhost: use unsigned int for nvqs
      vhost_net: do not assume nvqs is always 2
      vhost-vdpa: remove the unnecessary check in vhost_vdpa_add()
      vhost-vdpa: don't cleanup twice in vhost_vdpa_add()
      vhost-vdpa: fix leaking of vhost_net in vhost_vdpa_add()
      vhost-vdpa: tweak the error label in vhost_vdpa_add()
      vhost-vdpa: fix the wrong assertion in vhost_vdpa_init()
      vhost-vdpa: remove the unncessary queue_index assignment

Jingqi Liu (1):
      hw/i386/acpi-build: Get NUMA information from struct NumaState

Peter Maydell (2):
      tests/vhost-user-bridge.c: Sanity check socket path length
      tests/vhost-user-bridge.c: Fix typo in help message

Philippe Mathieu-Daudé (2):
      hw/virtio: Document virtio_queue_packed_empty_rcu is called within RCU
      hw/virtio: Remove NULL check in virtio_free_region_cache()

Tiberiu Georgescu (1):
      hw/virtio: move vhost_set_backend_type() to vhost.c

Yajun Wu (1):
      hw/virtio: Fix leak of host-notifier memory-region

Yuwei Zhang (1):
      hw/virtio: Add flatview update in vhost_user_cleanup()

 configs/devices/mips-softmmu/common.mak |   5 +-
 include/hw/acpi/acpi.h                  |   2 +
 include/hw/acpi/generic_event_device.h  |   2 -
 include/hw/i386/pc.h                    |   4 -
 include/hw/pci-host/i440fx.h            |   1 -
 include/hw/virtio/vhost-backend.h       |   6 --
 include/hw/virtio/vhost-vdpa.h          |   1 +
 include/hw/virtio/vhost.h               |   6 +-
 include/hw/virtio/virtio-bus.h          |   4 +-
 include/net/vhost_net.h                 |   1 +
 hw/acpi/acpi-cpu-hotplug-stub.c         |  50 +++++++++++
 hw/acpi/acpi-mem-hotplug-stub.c         |  35 ++++++++
 hw/acpi/acpi-nvdimm-stub.c              |   8 ++
 hw/acpi/acpi-pci-hotplug-stub.c         |  47 ++++++++++
 hw/acpi/ich9.c                          |   2 +-
 hw/acpi/pcihp.c                         |   6 +-
 hw/acpi/piix4.c                         |   4 +-
 hw/i386/acpi-build.c                    |  24 +++--
 hw/i386/pc.c                            |  13 +--
 hw/i386/pc_q35.c                        |   2 +-
 hw/isa/lpc_ich9.c                       |  13 +++
 hw/net/vhost_net.c                      |   5 +-
 hw/pci-host/i440fx.c                    |   8 --
 hw/virtio/vhost-backend.c               |  30 +------
 hw/virtio/vhost-user.c                  | 151 ++++++++++++++++++++++----------
 hw/virtio/vhost-vdpa.c                  |  39 ++++++---
 hw/virtio/vhost.c                       |  31 ++++++-
 hw/virtio/virtio-balloon.c              |  41 ++++-----
 hw/virtio/virtio-bus.c                  |  14 +++
 hw/virtio/virtio-pci.c                  |  14 +++
 hw/virtio/virtio.c                      |   7 +-
 net/tap.c                               |   1 +
 net/vhost-user.c                        |   1 +
 net/vhost-vdpa.c                        |  35 +++-----
 stubs/pci-host-piix.c                   |   7 --
 tests/vhost-user-bridge.c               |   7 +-
 MAINTAINERS                             |   1 +
 hw/acpi/Kconfig                         |  10 +++
 hw/acpi/meson.build                     |  14 ++-
 stubs/meson.build                       |   1 -
 40 files changed, 440 insertions(+), 213 deletions(-)
 create mode 100644 hw/acpi/acpi-cpu-hotplug-stub.c
 create mode 100644 hw/acpi/acpi-mem-hotplug-stub.c
 create mode 100644 hw/acpi/acpi-nvdimm-stub.c
 create mode 100644 hw/acpi/acpi-pci-hotplug-stub.c
 delete mode 100644 stubs/pci-host-piix.c


Re: [PULL 00/35] pc,pci,virtio: fixes, cleanups
Posted by Peter Maydell 2 years, 7 months ago
On Sat, 4 Sept 2021 at 22:36, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> The following changes since commit 8880cc4362fde4ecdac0b2092318893118206fcf:
>
>   Merge remote-tracking branch 'remotes/cschoenebeck/tags/pull-9p-20210902' into staging (2021-09-03 08:27:38 +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 499c8b4de96eecc554a03e452226f79f169a233b:
>
>   vhost-vdpa: remove the unncessary queue_index assignment (2021-09-04 17:34:05 -0400)
>
> ----------------------------------------------------------------
> pc,pci,virtio: fixes, cleanups
>
> Fixes, cleanups all over the place.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.2
for any user-visible changes.

-- PMM