All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/13] pc,pci,virtio: bugfixes, improvements
@ 2021-07-07 15:02 Michael S. Tsirkin
  2021-07-07 15:02 ` [PULL 01/13] virtio: disable ioeventfd for record/replay Michael S. Tsirkin
                   ` (13 more replies)
  0 siblings, 14 replies; 18+ messages in thread
From: Michael S. Tsirkin @ 2021-07-07 15:02 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

The following changes since commit 9c2647f75004c4f7d64c9c0ec55f8c6f0739a8b1:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2021-07-02 11:46:32 +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 e3e01466bff42b5ea977340d8d7d90df482b0c97:

  MAINTAINERS: Add maintainer for vhost-user RNG implementation (2021-07-07 06:11:22 -0400)

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

vhost-user-rng support.
Fixes all over the place.

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

----------------------------------------------------------------
Andrew Melnychenko (3):
      virtio-pci: Added check for virtio device presence in mm callbacks.
      virtio-pci: Added check for virtio device in PCI config cbs.
      virtio-pci: Changed return values for "notify", "device" and "isr" read.

Gerd Hoffmann (1):
      acpi/ged: fix reset cause

Greg Kurz (1):
      virtio: Clarify MR transaction optimization

Igor Mammedov (3):
      tests: acpi: prepare for changing DSDT tables
      acpi: pc: revert back to v5.2 PCI slot enumeration
      tests: acpi: pc: update expected DSDT blobs

Laurent Vivier (1):
      migration: failover: reset partially_hotplugged

Mathieu Poirier (1):
      MAINTAINERS: Add maintainer for vhost-user RNG implementation

Pavel Dovgalyuk (1):
      virtio: disable ioeventfd for record/replay

Philippe Mathieu-Daudé (1):
      hw/pci-host/q35: Ignore write of reserved PCIEXBAR LENGTH field

Vincent Bernat (1):
      docs: add slot when adding new PCIe root port

 docs/pcie_pci_bridge.txt         |   6 +++---
 hw/acpi/generic_event_device.c   |   2 +-
 hw/block/dataplane/virtio-blk.c  |  16 ++++++++++++++++
 hw/i386/acpi-build.c             |   9 +++++++--
 hw/net/virtio-net.c              |   1 +
 hw/pci-host/q35.c                |   3 +++
 hw/s390x/virtio-ccw.c            |   6 ++++++
 hw/scsi/virtio-scsi-dataplane.c  |  16 ++++++++++++++++
 hw/virtio/virtio-mmio.c          |   6 ++++++
 hw/virtio/virtio-pci.c           |  33 +++++++++++++++++++++++++++++++--
 hw/virtio/virtio.c               |  16 ++++++++++++++++
 MAINTAINERS                      |   9 +++++++++
 tests/data/acpi/pc/DSDT          | Bin 6002 -> 6002 bytes
 tests/data/acpi/pc/DSDT.acpihmat | Bin 7327 -> 7327 bytes
 tests/data/acpi/pc/DSDT.bridge   | Bin 8668 -> 8668 bytes
 tests/data/acpi/pc/DSDT.cphp     | Bin 6466 -> 6466 bytes
 tests/data/acpi/pc/DSDT.dimmpxm  | Bin 7656 -> 7656 bytes
 tests/data/acpi/pc/DSDT.hpbridge | Bin 5969 -> 5969 bytes
 tests/data/acpi/pc/DSDT.ipmikcs  | Bin 6074 -> 6074 bytes
 tests/data/acpi/pc/DSDT.memhp    | Bin 7361 -> 7361 bytes
 tests/data/acpi/pc/DSDT.nohpet   | Bin 5860 -> 5860 bytes
 tests/data/acpi/pc/DSDT.numamem  | Bin 6008 -> 6008 bytes
 22 files changed, 115 insertions(+), 8 deletions(-)



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

end of thread, other threads:[~2021-07-09 15:02 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-07 15:02 [PULL 00/13] pc,pci,virtio: bugfixes, improvements Michael S. Tsirkin
2021-07-07 15:02 ` [PULL 01/13] virtio: disable ioeventfd for record/replay Michael S. Tsirkin
2021-07-07 15:02 ` [PULL 02/13] virtio: Clarify MR transaction optimization Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 03/13] hw/pci-host/q35: Ignore write of reserved PCIEXBAR LENGTH field Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 04/13] virtio-pci: Added check for virtio device presence in mm callbacks Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 05/13] virtio-pci: Added check for virtio device in PCI config cbs Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 06/13] virtio-pci: Changed return values for "notify", "device" and "isr" read Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 07/13] migration: failover: reset partially_hotplugged Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 08/13] tests: acpi: prepare for changing DSDT tables Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 09/13] acpi: pc: revert back to v5.2 PCI slot enumeration Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 10/13] tests: acpi: pc: update expected DSDT blobs Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 11/13] acpi/ged: fix reset cause Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 12/13] docs: add slot when adding new PCIe root port Michael S. Tsirkin
2021-07-07 15:03 ` [PULL 13/13] MAINTAINERS: Add maintainer for vhost-user RNG implementation Michael S. Tsirkin
2021-07-08 22:01   ` Mathieu Poirier
2021-07-09  6:58     ` Michael S. Tsirkin
2021-07-09  7:02       ` Michael S. Tsirkin
2021-07-09 14:59 ` [PULL 00/13] pc,pci,virtio: bugfixes, improvements 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.