From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54412) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XP8ee-0003Rv-9Q for qemu-devel@nongnu.org; Wed, 03 Sep 2014 07:23:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XP8eX-00066p-HW for qemu-devel@nongnu.org; Wed, 03 Sep 2014 07:23:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14334) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XP8eX-00066j-AB for qemu-devel@nongnu.org; Wed, 03 Sep 2014 07:23:05 -0400 Date: Wed, 3 Sep 2014 14:26:19 +0300 From: "Michael S. Tsirkin" Message-ID: <20140903112619.GA12092@redhat.com> References: <1409670380-22943-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1409670380-22943-1-git-send-email-mst@redhat.com> Subject: Re: [Qemu-devel] [PULL 00/13] pci, pc fixes, features List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Anthony Liguori 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 > > ---------------------------------------------------------------- > 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 >