[PULL 00/16] pc,pci,virtio: bugfixes, improvements

Michael S. Tsirkin posted 16 patches 2 years, 11 months ago
Failed in applying to current master (apply log)
There is a newer version of this series
include/hw/firmware/smbios.h    |  14 ++++-
include/hw/mem/pc-dimm.h        |   5 --
include/hw/virtio/vhost-vdpa.h  |   2 -
include/hw/virtio/virtio-mmio.h |   5 ++
include/hw/virtio/virtio.h      |   2 +-
contrib/vhost-user-input/main.c |   8 ++-
hw/acpi/aml-build.c             |  15 +++--
hw/arm/virt.c                   |   7 ++-
hw/block/dataplane/virtio-blk.c |  36 +++++++++++-
hw/block/virtio-blk.c           |   2 +-
hw/i386/acpi-build.c            |   8 ++-
hw/i386/amd_iommu.c             |  10 ++--
hw/i386/fw_cfg.c                |   4 +-
hw/input/virtio-input-host.c    |   5 +-
hw/mem/pc-dimm.c                |  33 +++++------
hw/net/virtio-net.c             |   2 +-
hw/scsi/virtio-scsi-dataplane.c |  56 ++++++++++++------
hw/smbios/smbios.c              | 124 +++++++++++++++++++++++++++++++++++++++-
hw/virtio/vhost-vdpa.c          |   4 +-
hw/virtio/virtio-mmio.c         |  11 +++-
hw/virtio/virtio.c              |   2 +-
qemu-options.hx                 |  30 +++++++++-
scripts/checkpatch.pl           |   1 +
23 files changed, 311 insertions(+), 75 deletions(-)
[PULL 00/16] pc,pci,virtio: bugfixes, improvements
Posted by Michael S. Tsirkin 2 years, 11 months ago
The following changes since commit 609d7596524ab204ccd71ef42c9eee4c7c338ea4:

  Update version for v6.0.0 release (2021-04-29 18:05:29 +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 f7a6df5f5bf3acc219352a1b25573ae2082d7e42:

  Fix build with 64 bits time_t (2021-05-14 10:26:18 -0400)

----------------------------------------------------------------
pc,pci,virtio: bugfixes, improvements

Fixes all over the place. Faster boot for virtio. ioeventfd support for
mmio.

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

----------------------------------------------------------------
Fabrice Fontaine (1):
      Fix build with 64 bits time_t

Greg Kurz (5):
      virtio-blk: Fix rollback path in virtio_blk_data_plane_start()
      virtio-blk: Configure all host notifiers in a single MR transaction
      virtio-scsi: Set host notifiers and callbacks separately
      virtio-scsi: Configure all host notifiers in a single MR transaction
      checkpatch: Fix use of uninitialized value

Igor Mammedov (1):
      x86: acpi: use offset instead of pointer when using build_header()

Jean-Philippe Brucker (1):
      amd_iommu: Fix pte_override_page_mask()

Maciej S. Szmigiero (1):
      pc-dimm: remove unnecessary get_vmstate_memory_region() method

Pavel Dovgalyuk (1):
      hw/virtio: enable ioeventfd configuring for mmio

Philippe Mathieu-Daudé (3):
      hw/virtio: Pass virtio_feature_get_config_size() a const argument
      virtio-blk: Constify VirtIOFeature feature_sizes[]
      virtio-net: Constify VirtIOFeature feature_sizes[]

Roman Kapl (1):
      amd_iommu: fix wrong MMIO operations

Vincent Bernat (1):
      hw/smbios: support for type 41 (onboard devices extended information)

Zenghui Yu (1):
      vhost-vdpa: Make vhost_vdpa_get_device_id() static

 include/hw/firmware/smbios.h    |  14 ++++-
 include/hw/mem/pc-dimm.h        |   5 --
 include/hw/virtio/vhost-vdpa.h  |   2 -
 include/hw/virtio/virtio-mmio.h |   5 ++
 include/hw/virtio/virtio.h      |   2 +-
 contrib/vhost-user-input/main.c |   8 ++-
 hw/acpi/aml-build.c             |  15 +++--
 hw/arm/virt.c                   |   7 ++-
 hw/block/dataplane/virtio-blk.c |  36 +++++++++++-
 hw/block/virtio-blk.c           |   2 +-
 hw/i386/acpi-build.c            |   8 ++-
 hw/i386/amd_iommu.c             |  10 ++--
 hw/i386/fw_cfg.c                |   4 +-
 hw/input/virtio-input-host.c    |   5 +-
 hw/mem/pc-dimm.c                |  33 +++++------
 hw/net/virtio-net.c             |   2 +-
 hw/scsi/virtio-scsi-dataplane.c |  56 ++++++++++++------
 hw/smbios/smbios.c              | 124 +++++++++++++++++++++++++++++++++++++++-
 hw/virtio/vhost-vdpa.c          |   4 +-
 hw/virtio/virtio-mmio.c         |  11 +++-
 hw/virtio/virtio.c              |   2 +-
 qemu-options.hx                 |  30 +++++++++-
 scripts/checkpatch.pl           |   1 +
 23 files changed, 311 insertions(+), 75 deletions(-)


Re: [PULL 00/16] pc,pci,virtio: bugfixes, improvements
Posted by Peter Maydell 2 years, 11 months ago
On Fri, 14 May 2021 at 17:04, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> The following changes since commit 609d7596524ab204ccd71ef42c9eee4c7c338ea4:
>
>   Update version for v6.0.0 release (2021-04-29 18:05:29 +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 f7a6df5f5bf3acc219352a1b25573ae2082d7e42:
>
>   Fix build with 64 bits time_t (2021-05-14 10:26:18 -0400)
>
> ----------------------------------------------------------------
> pc,pci,virtio: bugfixes, improvements
>
> Fixes all over the place. Faster boot for virtio. ioeventfd support for
> mmio.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>
> ----------------------------------------------------------------


Applied, thanks.

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

-- PMM