mbox

[PULL,v3,00/28] virtio, vhost, pc, pci: documentation, fixes and cleanups

Message ID 1479237527-11846-1-git-send-email-mst@redhat.com
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream

Message

Michael S. Tsirkin Nov. 15, 2016, 7:20 p.m. UTC
The following changes since commit 6bbcb76301a72dc80c8d29af13d40bb9a759c9c6:

  MAINTAINERS: Remove obsolete stable branches (2016-11-10 15:29:59 +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 453ac8835b002263a6b7b0843e7c90fa8b19c869:

  docs: add PCIe devices placement guidelines (2016-11-15 17:20:38 +0200)

----------------------------------------------------------------
virtio, vhost, pc, pci: documentation, fixes and cleanups

Lots of fixes all over the place.

Unfortunately, this does not yet fix a regression with vhost
introduced by the last pull, the issue is typically this error:
    kvm_mem_ioeventfd_add: error adding ioeventfd: File exists
followed by QEMU aborting.

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

----------------------------------------------------------------
Gonglei (1):
      virtio-crypto: tag as not hotpluggable and migration

Greg Kurz (3):
      vhost: adapt vhost_verify_ring_mappings() to virtio 1 ring layout
      vhost: drop legacy vring layout bits
      virtio: drop virtio_queue_get_ring_{size,addr}()

Jason Wang (1):
      intel_iommu: fixing source id during IOTLB hash key calculation

Ladi Prosek (2):
      virtio: rename virtqueue_discard to virtqueue_unpop
      virtio: make virtqueue_alloc_element static

Marcel Apfelbaum (1):
      docs: add PCIe devices placement guidelines

Michael S. Tsirkin (2):
      virtio: allow per-device-class legacy features
      virtio-net: mark VIRTIO_NET_F_GSO as legacy

Peter Xu (3):
      intel_iommu: fix several incorrect endianess and bit fields
      intel_iommu: fix incorrect assert
      acpi: fix DMAR device scope for IOAPIC

Rafael David Tinoco (1):
      vhost: migration blocker only if shared log is used

Xiao Guangrong (14):
      qdev: hotplug: drop HotplugHandler.post_plug callback
      nvdimm acpi: drop the lock of fit buffer
      pc: memhp: move nvdimm hotplug out of memory hotplug
      pc: memhp: stop handling nvdimm hotplug in pc_dimm_unplug
      nvdimm acpi: clean up nvdimm_build_acpi
      docs: improve the doc of Read FIT method
      nvdimm acpi: rename nvdimm_plugged_device_list
      nvdimm acpi: cleanup nvdimm_build_fit
      nvdimm acpi: rename nvdimm_acpi_hotplug
      nvdimm acpi: define DSM return codes
      nvdimm acpi: fix two comments
      nvdimm acpi: rename nvdimm_dsm_reserved_root
      nvdimm acpi: use aml_name_decl to define named object
      nvdimm acpi: introduce NVDIMM_DSM_MEMORY_SIZE

 hw/i386/intel_iommu_internal.h          |   2 +-
 include/hw/acpi/acpi-defs.h             |   5 +-
 include/hw/hotplug.h                    |  11 --
 include/hw/i386/intel_iommu.h           |   9 +-
 include/hw/mem/nvdimm.h                 |  20 +--
 include/hw/virtio/vhost.h               |   7 +-
 include/hw/virtio/virtio.h              |  12 +-
 hw/acpi/ich9.c                          |   8 +-
 hw/acpi/memory_hotplug.c                |  31 +---
 hw/acpi/nvdimm.c                        | 166 ++++++++---------
 hw/acpi/piix4.c                         |   7 +-
 hw/core/hotplug.c                       |  11 --
 hw/core/qdev.c                          |  20 +--
 hw/i386/acpi-build.c                    |   3 +-
 hw/i386/intel_iommu.c                   |   6 +-
 hw/i386/pc.c                            |  29 +--
 hw/net/virtio-net.c                     |   3 +-
 hw/s390x/virtio-ccw.c                   |   4 +-
 hw/virtio/vhost.c                       |  94 ++++++----
 hw/virtio/virtio-balloon.c              |   2 +-
 hw/virtio/virtio-crypto-pci.c           |   2 +-
 hw/virtio/virtio-crypto.c               |   1 +
 hw/virtio/virtio-pci.c                  |   4 +-
 hw/virtio/virtio.c                      |  23 +--
 default-configs/mips-softmmu-common.mak |   1 +
 docs/pcie.txt                           | 310 ++++++++++++++++++++++++++++++++
 docs/specs/acpi_mem_hotplug.txt         |   3 -
 docs/specs/acpi_nvdimm.txt              |  99 +++++-----
 28 files changed, 586 insertions(+), 307 deletions(-)
 create mode 100644 docs/pcie.txt

Comments

Stefan Hajnoczi Nov. 15, 2016, 7:51 p.m. UTC | #1
On Tue, Nov 15, 2016 at 09:20:47PM +0200, Michael S. Tsirkin wrote:
> The following changes since commit 6bbcb76301a72dc80c8d29af13d40bb9a759c9c6:
> 
>   MAINTAINERS: Remove obsolete stable branches (2016-11-10 15:29:59 +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 453ac8835b002263a6b7b0843e7c90fa8b19c869:
> 
>   docs: add PCIe devices placement guidelines (2016-11-15 17:20:38 +0200)
> 
> ----------------------------------------------------------------
> virtio, vhost, pc, pci: documentation, fixes and cleanups
> 
> Lots of fixes all over the place.
> 
> Unfortunately, this does not yet fix a regression with vhost
> introduced by the last pull, the issue is typically this error:
>     kvm_mem_ioeventfd_add: error adding ioeventfd: File exists
> followed by QEMU aborting.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
> ----------------------------------------------------------------
> Gonglei (1):
>       virtio-crypto: tag as not hotpluggable and migration
> 
> Greg Kurz (3):
>       vhost: adapt vhost_verify_ring_mappings() to virtio 1 ring layout
>       vhost: drop legacy vring layout bits
>       virtio: drop virtio_queue_get_ring_{size,addr}()
> 
> Jason Wang (1):
>       intel_iommu: fixing source id during IOTLB hash key calculation
> 
> Ladi Prosek (2):
>       virtio: rename virtqueue_discard to virtqueue_unpop
>       virtio: make virtqueue_alloc_element static
> 
> Marcel Apfelbaum (1):
>       docs: add PCIe devices placement guidelines
> 
> Michael S. Tsirkin (2):
>       virtio: allow per-device-class legacy features
>       virtio-net: mark VIRTIO_NET_F_GSO as legacy
> 
> Peter Xu (3):
>       intel_iommu: fix several incorrect endianess and bit fields
>       intel_iommu: fix incorrect assert
>       acpi: fix DMAR device scope for IOAPIC
> 
> Rafael David Tinoco (1):
>       vhost: migration blocker only if shared log is used
> 
> Xiao Guangrong (14):
>       qdev: hotplug: drop HotplugHandler.post_plug callback
>       nvdimm acpi: drop the lock of fit buffer
>       pc: memhp: move nvdimm hotplug out of memory hotplug
>       pc: memhp: stop handling nvdimm hotplug in pc_dimm_unplug
>       nvdimm acpi: clean up nvdimm_build_acpi
>       docs: improve the doc of Read FIT method
>       nvdimm acpi: rename nvdimm_plugged_device_list
>       nvdimm acpi: cleanup nvdimm_build_fit
>       nvdimm acpi: rename nvdimm_acpi_hotplug
>       nvdimm acpi: define DSM return codes
>       nvdimm acpi: fix two comments
>       nvdimm acpi: rename nvdimm_dsm_reserved_root
>       nvdimm acpi: use aml_name_decl to define named object
>       nvdimm acpi: introduce NVDIMM_DSM_MEMORY_SIZE
> 
>  hw/i386/intel_iommu_internal.h          |   2 +-
>  include/hw/acpi/acpi-defs.h             |   5 +-
>  include/hw/hotplug.h                    |  11 --
>  include/hw/i386/intel_iommu.h           |   9 +-
>  include/hw/mem/nvdimm.h                 |  20 +--
>  include/hw/virtio/vhost.h               |   7 +-
>  include/hw/virtio/virtio.h              |  12 +-
>  hw/acpi/ich9.c                          |   8 +-
>  hw/acpi/memory_hotplug.c                |  31 +---
>  hw/acpi/nvdimm.c                        | 166 ++++++++---------
>  hw/acpi/piix4.c                         |   7 +-
>  hw/core/hotplug.c                       |  11 --
>  hw/core/qdev.c                          |  20 +--
>  hw/i386/acpi-build.c                    |   3 +-
>  hw/i386/intel_iommu.c                   |   6 +-
>  hw/i386/pc.c                            |  29 +--
>  hw/net/virtio-net.c                     |   3 +-
>  hw/s390x/virtio-ccw.c                   |   4 +-
>  hw/virtio/vhost.c                       |  94 ++++++----
>  hw/virtio/virtio-balloon.c              |   2 +-
>  hw/virtio/virtio-crypto-pci.c           |   2 +-
>  hw/virtio/virtio-crypto.c               |   1 +
>  hw/virtio/virtio-pci.c                  |   4 +-
>  hw/virtio/virtio.c                      |  23 +--
>  default-configs/mips-softmmu-common.mak |   1 +
>  docs/pcie.txt                           | 310 ++++++++++++++++++++++++++++++++
>  docs/specs/acpi_mem_hotplug.txt         |   3 -
>  docs/specs/acpi_nvdimm.txt              |  99 +++++-----
>  28 files changed, 586 insertions(+), 307 deletions(-)
>  create mode 100644 docs/pcie.txt
> 
> 

Thanks, applied to my staging tree:
https://github.com/stefanha/qemu/commits/staging

Stefan