[PULL 00/12] pc,virtio: fixes

Michael S. Tsirkin posted 12 patches 1 year, 8 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220817200536.350795-1-mst@redhat.com
Maintainers: Stefan Hajnoczi <stefanha@redhat.com>, Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>, Ben Widawsky <ben.widawsky@intel.com>, Jonathan Cameron <jonathan.cameron@huawei.com>, Sergio Lopez <slp@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, Eduardo Habkost <eduardo@habkost.net>, "Michael S. Tsirkin" <mst@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Fam Zheng <fam@euphon.net>, Igor Mammedov <imammedo@redhat.com>, Ani Sinha <ani@anisinha.ca>
hw/block/dataplane/virtio-blk.c |  5 +++++
hw/cxl/cxl-device-utils.c       | 12 +++++++++---
hw/cxl/cxl-host.c               | 17 ++++++++---------
hw/cxl/cxl-mailbox-utils.c      |  4 ++--
hw/i386/microvm.c               |  2 +-
hw/i386/pc_piix.c               |  2 +-
hw/i386/pc_q35.c                |  2 +-
hw/scsi/virtio-scsi-dataplane.c | 11 ++++++++---
hw/virtio/vhost-user.c          |  4 ++--
hw/virtio/vhost.c               | 10 +++++++---
hw/virtio/virtio-pci.c          | 19 +++++++++++++++----
tests/qtest/bios-tables-test.c  |  4 +++-
12 files changed, 62 insertions(+), 30 deletions(-)
[PULL 00/12] pc,virtio: fixes
Posted by Michael S. Tsirkin 1 year, 8 months ago
The following changes since commit c7208a6e0d049f9e8af15df908168a79b1f99685:

  Update version for v7.1.0-rc3 release (2022-08-16 20:45:19 -0500)

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 9afb4177d66ac1eee858aba07fa2fc729b274eb4:

  virtio-pci: don't touch pci on virtio reset (2022-08-17 13:08:11 -0400)

----------------------------------------------------------------
pc,virtio: fixes

Several bugfixes, they all look very safe to me. Revert
seed support since we aren't any closer to a proper fix.

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

----------------------------------------------------------------
Alex Bennée (3):
      hw/virtio: gracefully handle unset vhost_dev vdev
      hw/virtio: handle un-configured shutdown in virtio-pci
      hw/virtio: fix vhost_user_read tracepoint

Gerd Hoffmann (1):
      x86: disable rng seeding via setup_data

Igor Mammedov (1):
      tests: acpi: silence applesmc warning about invalid key

Jonathan Cameron (5):
      hw/cxl: Fix memory leak in error paths
      hw/cxl: Fix wrong query of target ports
      hw/cxl: Add stub write function for RO MemoryRegionOps entries.
      hw/cxl: Fix Get LSA input payload size which should be 8 bytes.
      hw/cxl: Correctly handle variable sized mailbox input payloads.

Michael S. Tsirkin (1):
      virtio-pci: don't touch pci on virtio reset

Stefan Hajnoczi (1):
      virtio-scsi: fix race in virtio_scsi_dataplane_start()

 hw/block/dataplane/virtio-blk.c |  5 +++++
 hw/cxl/cxl-device-utils.c       | 12 +++++++++---
 hw/cxl/cxl-host.c               | 17 ++++++++---------
 hw/cxl/cxl-mailbox-utils.c      |  4 ++--
 hw/i386/microvm.c               |  2 +-
 hw/i386/pc_piix.c               |  2 +-
 hw/i386/pc_q35.c                |  2 +-
 hw/scsi/virtio-scsi-dataplane.c | 11 ++++++++---
 hw/virtio/vhost-user.c          |  4 ++--
 hw/virtio/vhost.c               | 10 +++++++---
 hw/virtio/virtio-pci.c          | 19 +++++++++++++++----
 tests/qtest/bios-tables-test.c  |  4 +++-
 12 files changed, 62 insertions(+), 30 deletions(-)


Re: [PULL 00/12] pc,virtio: fixes
Posted by Richard Henderson 1 year, 8 months ago
On 8/17/22 13:05, Michael S. Tsirkin wrote:
> The following changes since commit c7208a6e0d049f9e8af15df908168a79b1f99685:
> 
>    Update version for v7.1.0-rc3 release (2022-08-16 20:45:19 -0500)
> 
> 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 9afb4177d66ac1eee858aba07fa2fc729b274eb4:
> 
>    virtio-pci: don't touch pci on virtio reset (2022-08-17 13:08:11 -0400)
> 
> ----------------------------------------------------------------
> pc,virtio: fixes
> 
> Several bugfixes, they all look very safe to me. Revert
> seed support since we aren't any closer to a proper fix.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> Alex Bennée (3):
>        hw/virtio: gracefully handle unset vhost_dev vdev
>        hw/virtio: handle un-configured shutdown in virtio-pci
>        hw/virtio: fix vhost_user_read tracepoint
> 
> Gerd Hoffmann (1):
>        x86: disable rng seeding via setup_data
> 
> Igor Mammedov (1):
>        tests: acpi: silence applesmc warning about invalid key
> 
> Jonathan Cameron (5):
>        hw/cxl: Fix memory leak in error paths
>        hw/cxl: Fix wrong query of target ports
>        hw/cxl: Add stub write function for RO MemoryRegionOps entries.
>        hw/cxl: Fix Get LSA input payload size which should be 8 bytes.
>        hw/cxl: Correctly handle variable sized mailbox input payloads.
> 
> Michael S. Tsirkin (1):
>        virtio-pci: don't touch pci on virtio reset
> 
> Stefan Hajnoczi (1):
>        virtio-scsi: fix race in virtio_scsi_dataplane_start()
> 
>   hw/block/dataplane/virtio-blk.c |  5 +++++
>   hw/cxl/cxl-device-utils.c       | 12 +++++++++---
>   hw/cxl/cxl-host.c               | 17 ++++++++---------
>   hw/cxl/cxl-mailbox-utils.c      |  4 ++--
>   hw/i386/microvm.c               |  2 +-
>   hw/i386/pc_piix.c               |  2 +-
>   hw/i386/pc_q35.c                |  2 +-
>   hw/scsi/virtio-scsi-dataplane.c | 11 ++++++++---
>   hw/virtio/vhost-user.c          |  4 ++--
>   hw/virtio/vhost.c               | 10 +++++++---
>   hw/virtio/virtio-pci.c          | 19 +++++++++++++++----
>   tests/qtest/bios-tables-test.c  |  4 +++-
>   12 files changed, 62 insertions(+), 30 deletions(-)
> 
>