From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49189) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zn0hS-0001uh-Kg for qemu-devel@nongnu.org; Fri, 16 Oct 2015 04:49:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zn0hP-0006Ns-AO for qemu-devel@nongnu.org; Fri, 16 Oct 2015 04:49:18 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36179) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zn0hP-0006Nn-4r for qemu-devel@nongnu.org; Fri, 16 Oct 2015 04:49:15 -0400 Date: Fri, 16 Oct 2015 11:49:11 +0300 From: "Michael S. Tsirkin" Message-ID: <1444985258-6605-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 0/7] vhost, pc features, fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell The following changes since commit b37686f7e84b22cfaf7fd01ac5133f2617cc30= 27: Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-reques= t' into staging (2015-10-09 12:18:14 +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 7f31381190755a1aa22c5cd486723b674ab83369: vhost: fail backend intialization early (2015-10-16 11:44:15 +0300) ---------------------------------------------------------------- vhost, pc features, fixes New features: VT-d support for devices behind a bridge Signed-off-by: Michael S. Tsirkin ---------------------------------------------------------------- Igor Mammedov (3): vhost: add vhost_has_free_slot() interface pc-dimm: add vhost slots limit check before commiting to hotplug vhost: fail backend intialization early Knut Omang (1): intel_iommu: Add support for translation for devices behind bridges Marc-Andr=E9 Lureau (1): tests: re-enable vhost-user-test Michael S. Tsirkin (2): exec: factor out duplicate mmap code net: don't set native endianness configure | 1 + include/hw/i386/intel_iommu.h | 16 ++++++- include/hw/virtio/vhost-backend.h | 2 + include/hw/virtio/vhost.h | 2 + include/qemu/mmap-alloc.h | 10 +++++ exec.c | 47 +++++---------------- hw/i386/intel_iommu.c | 89 ++++++++++++++++++++++++++++++++-= ------ hw/mem/pc-dimm.c | 7 +++ hw/pci-host/q35.c | 25 ++--------- hw/virtio/vhost-backend.c | 19 +++++++++ hw/virtio/vhost-user.c | 6 +++ hw/virtio/vhost.c | 27 ++++++++++++ net/net.c | 8 ++++ stubs/vhost.c | 6 +++ util/mmap-alloc.c | 71 +++++++++++++++++++++++++++++++ util/oslib-posix.c | 28 ++---------- stubs/Makefile.objs | 1 + tests/Makefile | 4 +- util/Makefile.objs | 1 + 19 files changed, 266 insertions(+), 104 deletions(-) create mode 100644 include/qemu/mmap-alloc.h create mode 100644 stubs/vhost.c create mode 100644 util/mmap-alloc.c