All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/21] pc, acpi, pci, virtio: fixes, cleanups, features, tests
@ 2017-07-03 19:44 Michael S. Tsirkin
  2017-07-03 19:44 ` [Qemu-devel] [PULL 01/21] virtio-net: enable configurable tx queue size Michael S. Tsirkin
                   ` (21 more replies)
  0 siblings, 22 replies; 44+ messages in thread
From: Michael S. Tsirkin @ 2017-07-03 19:44 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

The following changes since commit fd479c60f5766f7fb247ad146b9e3c33d03d2055:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20170603' into staging (2017-07-03 09:54: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 d2f9ca94165b10c51d6d6cae5fe1cadf1ca42076:

  i386/acpi: update expected acpi files (2017-07-03 22:42:36 +0300)

----------------------------------------------------------------
pc, acpi, pci, virtio: fixes, cleanups, features, tests

Some fixes and cleanups. New tests.
Configurable tx queue size for virtio-net.

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

----------------------------------------------------------------
Aleksandr Bezzubikov (1):
      hw/acpi: remove dead acpi code

Ben Warren (1):
      tests: Add unit tests for the VM Generation ID feature

Ladi Prosek (1):
      intel_iommu: relax iq tail check on VTD_GCMD_QIE enable

Mao Zhongyi (9):
      pci: Clean up error checking in pci_add_capability()
      pci: Add comment for pci_add_capability2()
      pci: Fix the wrong assertion.
      pci: Make errp the last parameter of pci_add_capability()
      pci: Replace pci_add_capability2() with pci_add_capability()
      pci: Convert to realize
      pci: Convert shpc_init() to Error
      i386/kvm/pci-assign: Fix return type of verify_irqchip_kernel()
      i386/kvm/pci-assign: Use errp directly rather than local_err

Mark Cave-Ayland (2):
      fw_cfg: don't map the fw_cfg IO ports in fw_cfg_io_realize()
      fw_cfg: move setting of FW_CFG_VERSION_DMA bit to fw_cfg_init1()

Maxime Coquelin (2):
      vhost: ensure vhost_ops are set before calling iotlb callback
      vhost-user: unregister slave req handler at cleanup time

Michael S. Tsirkin (2):
      virtio-net: fix tx queue size for !vhost-user
      i386/acpi: update expected acpi files

Peter Xu (1):
      intel_iommu: fix migration breakage on mr switch

Thomas Huth (1):
      hw/pci-bridge/dec: Classify the DEC PCI bridge as bridge device

Wei Wang (1):
      virtio-net: enable configurable tx queue size

 include/hw/pci/pci.h                 |   2 -
 include/hw/pci/pci_bridge.h          |   3 +-
 include/hw/pci/pcie.h                |   3 +-
 include/hw/pci/shpc.h                |   3 +-
 include/hw/pci/slotid_cap.h          |   3 +-
 include/hw/virtio/virtio-net.h       |   1 +
 hw/i386/acpi-build.c                 |  10 --
 hw/i386/amd_iommu.c                  |  24 +++--
 hw/i386/intel_iommu.c                |  48 ++++++---
 hw/i386/kvm/pci-assign.c             |  54 ++++------
 hw/ide/ich.c                         |   2 +-
 hw/net/e1000e.c                      |  30 +++---
 hw/net/eepro100.c                    |  18 +++-
 hw/net/virtio-net.c                  |  44 +++++++-
 hw/nvram/fw_cfg.c                    |  32 +++---
 hw/pci-bridge/dec.c                  |   2 +
 hw/pci-bridge/i82801b11.c            |  12 +--
 hw/pci-bridge/pci_bridge_dev.c       |  14 ++-
 hw/pci-bridge/pcie_root_port.c       |  18 ++--
 hw/pci-bridge/xio3130_downstream.c   |  20 ++--
 hw/pci-bridge/xio3130_upstream.c     |  20 ++--
 hw/pci/msi.c                         |   2 +-
 hw/pci/msix.c                        |   2 +-
 hw/pci/pci.c                         |  24 +----
 hw/pci/pci_bridge.c                  |   8 +-
 hw/pci/pcie.c                        |  28 +++--
 hw/pci/shpc.c                        |  10 +-
 hw/pci/slotid_cap.c                  |  12 ++-
 hw/usb/hcd-xhci.c                    |   2 +-
 hw/vfio/pci.c                        |  15 +--
 hw/virtio/vhost-backend.c            |  10 +-
 hw/virtio/vhost-user.c               |   1 +
 hw/virtio/virtio-pci.c               |  12 ++-
 tests/vmgenid-test.c                 | 203 +++++++++++++++++++++++++++++++++++
 hw/i386/trace-events                 |   2 +-
 tests/Makefile.include               |   2 +
 tests/acpi-test-data/q35/DSDT        | Bin 7824 -> 7782 bytes
 tests/acpi-test-data/q35/DSDT.bridge | Bin 7841 -> 7799 bytes
 tests/acpi-test-data/q35/DSDT.cphp   | Bin 8287 -> 8245 bytes
 tests/acpi-test-data/q35/DSDT.ipmibt | Bin 7899 -> 7857 bytes
 tests/acpi-test-data/q35/DSDT.memhp  | Bin 9189 -> 9147 bytes
 41 files changed, 492 insertions(+), 204 deletions(-)
 create mode 100644 tests/vmgenid-test.c

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

end of thread, other threads:[~2017-08-25 17:49 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-03 19:44 [Qemu-devel] [PULL 00/21] pc, acpi, pci, virtio: fixes, cleanups, features, tests Michael S. Tsirkin
2017-07-03 19:44 ` [Qemu-devel] [PULL 01/21] virtio-net: enable configurable tx queue size Michael S. Tsirkin
2017-07-04  1:44   ` Wei Wang
2017-07-13  8:01     ` Michal Privoznik
2017-07-03 19:44 ` [Qemu-devel] [PULL 02/21] hw/pci-bridge/dec: Classify the DEC PCI bridge as bridge device Michael S. Tsirkin
2017-07-03 19:44 ` [Qemu-devel] [PULL 03/21] intel_iommu: relax iq tail check on VTD_GCMD_QIE enable Michael S. Tsirkin
2017-07-03 19:44 ` [Qemu-devel] [PULL 04/21] pci: Clean up error checking in pci_add_capability() Michael S. Tsirkin
2017-07-03 19:44 ` [Qemu-devel] [PULL 05/21] pci: Add comment for pci_add_capability2() Michael S. Tsirkin
2017-07-03 19:44 ` [Qemu-devel] [PULL 06/21] pci: Fix the wrong assertion Michael S. Tsirkin
2017-07-03 19:44 ` [Qemu-devel] [PULL 07/21] pci: Make errp the last parameter of pci_add_capability() Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 08/21] pci: Replace pci_add_capability2() with pci_add_capability() Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 09/21] pci: Convert to realize Michael S. Tsirkin
2017-08-25 15:17   ` Eduardo Habkost
2017-08-25 16:57     ` Michael S. Tsirkin
2017-08-25 17:49       ` Eduardo Habkost
2017-07-03 19:45 ` [Qemu-devel] [PULL 10/21] pci: Convert shpc_init() to Error Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 11/21] i386/kvm/pci-assign: Fix return type of verify_irqchip_kernel() Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 12/21] i386/kvm/pci-assign: Use errp directly rather than local_err Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 13/21] fw_cfg: don't map the fw_cfg IO ports in fw_cfg_io_realize() Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 14/21] fw_cfg: move setting of FW_CFG_VERSION_DMA bit to fw_cfg_init1() Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 15/21] hw/acpi: remove dead acpi code Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 16/21] intel_iommu: fix migration breakage on mr switch Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 17/21] vhost: ensure vhost_ops are set before calling iotlb callback Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 18/21] vhost-user: unregister slave req handler at cleanup time Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 19/21] tests: Add unit tests for the VM Generation ID feature Michael S. Tsirkin
2017-07-11 13:32   ` Peter Maydell
2017-07-11 15:07     ` Ben Warren
2017-07-11 15:22       ` Peter Maydell
2017-07-11 16:49         ` Peter Maydell
2017-07-11 19:10           ` Michael S. Tsirkin
2017-07-11 20:42             ` Peter Maydell
2017-07-11 22:13               ` Laszlo Ersek
2017-07-11 23:43                 ` Ben Warren
2017-07-12  0:42                   ` Michael S. Tsirkin
2017-07-13 10:47                   ` Peter Maydell
2017-07-13 11:31                     ` Laszlo Ersek
2017-07-13 11:51                       ` Marc-André Lureau
2017-07-13 13:34                         ` Ben Warren
2017-07-13 16:38                           ` Michael S. Tsirkin
2017-07-14 13:11                             ` Peter Maydell
2017-07-14 15:14                               ` Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 20/21] virtio-net: fix tx queue size for !vhost-user Michael S. Tsirkin
2017-07-03 19:45 ` [Qemu-devel] [PULL 21/21] i386/acpi: update expected acpi files Michael S. Tsirkin
2017-07-04 12:05 ` [Qemu-devel] [PULL 00/21] pc, acpi, pci, virtio: fixes, cleanups, features, tests 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.