All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/35] pc,pci,virtio: fixes, cleanups
@ 2021-09-04 21:35 Michael S. Tsirkin
  2021-09-04 21:35 ` [PULL 01/35] vhost-vdpa: Do not send empty IOTLB update batches Michael S. Tsirkin
                   ` (35 more replies)
  0 siblings, 36 replies; 53+ messages in thread
From: Michael S. Tsirkin @ 2021-09-04 21:35 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

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



^ permalink raw reply	[flat|nested] 53+ messages in thread

end of thread, other threads:[~2022-07-25 17:58 UTC | newest]

Thread overview: 53+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-04 21:35 [PULL 00/35] pc,pci,virtio: fixes, cleanups Michael S. Tsirkin
2021-09-04 21:35 ` [PULL 01/35] vhost-vdpa: Do not send empty IOTLB update batches Michael S. Tsirkin
2021-09-04 21:35 ` [PULL 02/35] hw/virtio: Fix leak of host-notifier memory-region Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 03/35] vhost: make SET_VRING_ADDR, SET_FEATURES send replies Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 04/35] hw/acpi: define PIIX4 acpi pci hotplug property strings at a single place Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 05/35] q35: catch invalid cpu hotplug configuration Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 06/35] hw/acpi: refactor acpi hp modules so that targets can just use what they need Michael S. Tsirkin
2021-09-06  9:58   ` Philippe Mathieu-Daudé
2021-09-06 10:03     ` Ani Sinha
2021-09-06 10:24       ` Philippe Mathieu-Daudé
2021-09-06 10:49         ` Ani Sinha
2021-09-07  5:55           ` Ani Sinha
2021-09-07  6:13             ` Philippe Mathieu-Daudé
2021-09-07  6:34               ` Ani Sinha
2021-09-07  9:49                 ` Ani Sinha
2022-07-19 16:12   ` Peter Maydell
2022-07-19 16:21     ` Peter Maydell
2022-07-20 18:37     ` Ani Sinha
2022-07-20 21:34       ` Peter Maydell
2022-07-20 22:13         ` Ani Sinha
2022-07-21 10:51           ` BB
2022-07-21 12:35           ` Dr. David Alan Gilbert
2022-07-25 17:57             ` Ani Sinha
2021-09-04 21:36 ` [PULL 07/35] hw/virtio: move vhost_set_backend_type() to vhost.c Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 08/35] vhost-user: add missing space in error message Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 09/35] acpi: Delete broken ACPI_GED_X86 macro Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 10/35] Use PCI_HOST_BRIDGE macro Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 11/35] virtio-balloon: don't start free page hinting if postcopy is possible Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 12/35] virtio-balloon: free page hinting cleanups Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 13/35] virtio-bus: introduce iommu_enabled() Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 14/35] virtio-pci: implement iommu_enabled() Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 15/35] vhost: correctly detect the enabling IOMMU Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 16/35] hw/i386/acpi-build: Get NUMA information from struct NumaState Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 17/35] hw/pci: remove all references to find_i440fx function Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 18/35] hw/acpi: use existing references to pci device struct within functions Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 19/35] MAINTAINERS: Added myself as a reviewer for acpi/smbios subsystem Michael S. Tsirkin
2021-09-04 21:36 ` [PULL 20/35] hw/virtio: Document virtio_queue_packed_empty_rcu is called within RCU Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 21/35] hw/virtio: Remove NULL check in virtio_free_region_cache() Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 22/35] hw/virtio: Add flatview update in vhost_user_cleanup() Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 23/35] tests/vhost-user-bridge.c: Sanity check socket path length Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 24/35] tests/vhost-user-bridge.c: Fix typo in help message Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 25/35] vhost-vdpa: remove unused variable "acked_features" Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 26/35] vhost-vdpa: correctly return err in vhost_vdpa_set_backend_cap() Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 27/35] vhost_net: remove the meaningless assignment in vhost_net_start_one() Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 28/35] vhost: use unsigned int for nvqs Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 29/35] vhost_net: do not assume nvqs is always 2 Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 30/35] vhost-vdpa: remove the unnecessary check in vhost_vdpa_add() Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 31/35] vhost-vdpa: don't cleanup twice " Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 32/35] vhost-vdpa: fix leaking of vhost_net " Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 33/35] vhost-vdpa: tweak the error label " Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 34/35] vhost-vdpa: fix the wrong assertion in vhost_vdpa_init() Michael S. Tsirkin
2021-09-04 21:37 ` [PULL 35/35] vhost-vdpa: remove the unncessary queue_index assignment Michael S. Tsirkin
2021-09-06  9:41 ` [PULL 00/35] pc,pci,virtio: fixes, cleanups Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.