[Qemu-devel] [PULL 00/11] VFIO updates 2018-02-06

Alex Williamson posted 11 patches 6 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180206184101.14644.84734.stgit@gimli.home
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test docker-quick@centos6 passed
Test ppc passed
Test s390x passed
hw/core/qdev-properties.c    |  11 +++
hw/ppc/spapr_iommu.c         |  18 ++++
hw/vfio/common.c             |  28 ++++++-
hw/vfio/pci-quirks.c         |   9 +-
hw/vfio/pci.c                | 195 +++++++++++++++++++++++++++++++++++++------
hw/vfio/pci.h                |   7 +-
hw/vfio/platform.c           |   2 +
hw/vfio/trace-events         |   3 +
include/exec/memory.h        |  22 +++++
include/hw/qdev-properties.h |   4 +
memory.c                     |  13 +++
qapi/common.json             |  26 ++++++
target/ppc/kvm.c             |   7 +-
target/ppc/kvm_ppc.h         |   6 ++
14 files changed, 320 insertions(+), 31 deletions(-)
[Qemu-devel] [PULL 00/11] VFIO updates 2018-02-06
Posted by Alex Williamson 6 years, 2 months ago
The following changes since commit 20e0d439a6ded635ec89f6135c08cd5541c68962:

  Merge remote-tracking branch 'remotes/rth/tags/pull-hppa-20180204' into staging (2018-02-06 14:21:41 +0000)

are available in the Git repository at:

  git://github.com/awilliam/qemu-vfio.git tags/vfio-update-20180206.0

for you to fetch changes up to db32d0f43839627f54a1a7f8eee17baa770f52d2:

  vfio/pci: Add option to disable GeForce quirks (2018-02-06 11:08:27 -0700)

----------------------------------------------------------------
VFIO updates 2018-02-06

 - SPAPR in-kernel TCE accleration (Alexey Kardashevskiy)

 - MSI-X relocation (Alex Williamson)

 - Add missing platform mutex init (Eric Auger)

 - Redundant variable cleanup (Alexey Kardashevskiy)

 - Option to disable GeForce quirks (Alex Williamson)

----------------------------------------------------------------
Alex Williamson (6):
      vfio/pci: Fixup VFIOMSIXInfo comment
      vfio/pci: Add base BAR MemoryRegion
      vfio/pci: Emulate BARs
      qapi: Create DEFINE_PROP_OFF_AUTO_PCIBAR
      vfio/pci: Allow relocating MSI-X MMIO
      vfio/pci: Add option to disable GeForce quirks

Alexey Kardashevskiy (4):
      memory/iommu: Add get_attr()
      vfio/spapr: Use iommu memory region's get_attr()
      spapr/iommu: Enable in-kernel TCE acceleration via VFIO KVM device
      vfio/common: Remove redundant copy of local variable

Eric Auger (1):
      hw/vfio/platform: Init the interrupt mutex

 hw/core/qdev-properties.c    |  11 +++
 hw/ppc/spapr_iommu.c         |  18 ++++
 hw/vfio/common.c             |  28 ++++++-
 hw/vfio/pci-quirks.c         |   9 +-
 hw/vfio/pci.c                | 195 +++++++++++++++++++++++++++++++++++++------
 hw/vfio/pci.h                |   7 +-
 hw/vfio/platform.c           |   2 +
 hw/vfio/trace-events         |   3 +
 include/exec/memory.h        |  22 +++++
 include/hw/qdev-properties.h |   4 +
 memory.c                     |  13 +++
 qapi/common.json             |  26 ++++++
 target/ppc/kvm.c             |   7 +-
 target/ppc/kvm_ppc.h         |   6 ++
 14 files changed, 320 insertions(+), 31 deletions(-)

Re: [Qemu-devel] [PULL 00/11] VFIO updates 2018-02-06
Posted by Peter Maydell 6 years, 2 months ago
On 6 February 2018 at 18:42, Alex Williamson <alex.williamson@redhat.com> wrote:
> The following changes since commit 20e0d439a6ded635ec89f6135c08cd5541c68962:
>
>   Merge remote-tracking branch 'remotes/rth/tags/pull-hppa-20180204' into staging (2018-02-06 14:21:41 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/awilliam/qemu-vfio.git tags/vfio-update-20180206.0
>
> for you to fetch changes up to db32d0f43839627f54a1a7f8eee17baa770f52d2:
>
>   vfio/pci: Add option to disable GeForce quirks (2018-02-06 11:08:27 -0700)
>
> ----------------------------------------------------------------
> VFIO updates 2018-02-06
>
>  - SPAPR in-kernel TCE accleration (Alexey Kardashevskiy)
>
>  - MSI-X relocation (Alex Williamson)
>
>  - Add missing platform mutex init (Eric Auger)
>
>  - Redundant variable cleanup (Alexey Kardashevskiy)
>
>  - Option to disable GeForce quirks (Alex Williamson)

Applied, thanks.

-- PMM