All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/13] pci, pc fixes, features
@ 2014-09-02 15:07 Michael S. Tsirkin
  2014-09-02 15:07 ` [Qemu-devel] [PULL 01/13] iommu: add is_write as a parameter to the translate function of MemoryRegionIOMMUOps Michael S. Tsirkin
                   ` (13 more replies)
  0 siblings, 14 replies; 19+ messages in thread
From: Michael S. Tsirkin @ 2014-09-02 15:07 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Anthony Liguori

The following changes since commit 187de915e8d06aaf82be206aebc551c82bf0670c:

  pcie: fix trailing whitespace (2014-08-25 00:16:07 +0200)

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 aad4dce934649b3a398396fc2a76f215bb194ea4:

  vhost_net: start/stop guest notifiers properly (2014-09-02 17:33:37 +0300)

----------------------------------------------------------------
pci, pc fixes, features

A bunch of bugfixes - these will make sense for 2.1.1

Initial Intel IOMMU support.

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

----------------------------------------------------------------
Gonglei (1):
      ioh3420: remove unused ioh3420_init() declaration

Jason Wang (1):
      vhost_net: start/stop guest notifiers properly

Knut Omang (1):
      pci: avoid losing config updates to MSI/MSIX cap regs

Le Tan (8):
      iommu: add is_write as a parameter to the translate function of MemoryRegionIOMMUOps
      intel-iommu: introduce Intel IOMMU (VT-d) emulation
      intel-iommu: add DMAR table to ACPI tables
      intel-iommu: add Intel IOMMU emulation to q35 and add a machine option "iommu" as a switch
      intel-iommu: fix coding style issues around in q35.c and machine.c
      intel-iommu: add supports for queued invalidation interface
      intel-iommu: add context-cache to cache context-entry
      intel-iommu: add IOTLB using hash table

Michael S. Tsirkin (2):
      vhost_net: cleanup start/stop condition
      virtio-net: don't run bh on vm stopped

 hw/i386/acpi-defs.h            |   40 +
 hw/i386/intel_iommu_internal.h |  389 ++++++++
 hw/pci-bridge/ioh3420.h        |    4 -
 include/exec/memory.h          |    2 +-
 include/hw/boards.h            |    1 +
 include/hw/i386/intel_iommu.h  |  120 +++
 include/hw/pci-host/q35.h      |    2 +
 exec.c                         |    2 +-
 hw/alpha/typhoon.c             |    3 +-
 hw/core/machine.c              |   27 +-
 hw/i386/acpi-build.c           |   39 +
 hw/i386/intel_iommu.c          | 1963 ++++++++++++++++++++++++++++++++++++++++
 hw/net/vhost_net.c             |   39 +-
 hw/net/virtio-net.c            |   14 +-
 hw/pci-host/apb.c              |    3 +-
 hw/pci-host/q35.c              |   58 +-
 hw/pci/pci.c                   |    7 +-
 hw/ppc/spapr_iommu.c           |    3 +-
 hw/virtio/vhost.c              |    2 -
 vl.c                           |    4 +
 hw/i386/Makefile.objs          |    1 +
 qemu-options.hx                |    5 +-
 22 files changed, 2683 insertions(+), 45 deletions(-)
 create mode 100644 hw/i386/intel_iommu_internal.h
 create mode 100644 include/hw/i386/intel_iommu.h
 create mode 100644 hw/i386/intel_iommu.c

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

end of thread, other threads:[~2014-09-04 12:33 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-02 15:07 [Qemu-devel] [PULL 00/13] pci, pc fixes, features Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 01/13] iommu: add is_write as a parameter to the translate function of MemoryRegionIOMMUOps Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 02/13] intel-iommu: introduce Intel IOMMU (VT-d) emulation Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 03/13] intel-iommu: add DMAR table to ACPI tables Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 04/13] intel-iommu: add Intel IOMMU emulation to q35 and add a machine option "iommu" as a switch Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 05/13] intel-iommu: fix coding style issues around in q35.c and machine.c Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 06/13] intel-iommu: add supports for queued invalidation interface Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 07/13] intel-iommu: add context-cache to cache context-entry Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 08/13] intel-iommu: add IOTLB using hash table Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 09/13] vhost_net: cleanup start/stop condition Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 10/13] ioh3420: remove unused ioh3420_init() declaration Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 11/13] virtio-net: don't run bh on vm stopped Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 12/13] pci: avoid losing config updates to MSI/MSIX cap regs Michael S. Tsirkin
2014-09-02 15:07 ` [Qemu-devel] [PULL 13/13] vhost_net: start/stop guest notifiers properly Michael S. Tsirkin
2014-09-02 15:47   ` William Dauchy
2014-09-02 16:01     ` Michael S. Tsirkin
2014-09-03 11:26 ` [Qemu-devel] [PULL 00/13] pci, pc fixes, features Michael S. Tsirkin
2014-09-04 11:11   ` Peter Maydell
2014-09-04 12:33     ` 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.