All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
	Anthony Liguori <aliguori@amazon.com>
Subject: Re: [Qemu-devel] [PULL 00/13] pci, pc fixes, features
Date: Wed, 3 Sep 2014 14:26:19 +0300	[thread overview]
Message-ID: <20140903112619.GA12092@redhat.com> (raw)
In-Reply-To: <1409670380-22943-1-git-send-email-mst@redhat.com>

On Tue, Sep 02, 2014 at 06:07:01PM +0300, Michael S. Tsirkin wrote:
> 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

A problem was reported with this one.
I fixed it up, will send v2 pull.

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

  parent reply	other threads:[~2014-09-03 11:23 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 ` Michael S. Tsirkin [this message]
2014-09-04 11:11   ` [Qemu-devel] [PULL 00/13] pci, pc fixes, features Peter Maydell
2014-09-04 12:33     ` Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140903112619.GA12092@redhat.com \
    --to=mst@redhat.com \
    --cc=aliguori@amazon.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.