From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56291) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TMIqh-0002Nm-R1 for qemu-devel@nongnu.org; Thu, 11 Oct 2012 09:30:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TMIqg-0001KQ-Je for qemu-devel@nongnu.org; Thu, 11 Oct 2012 09:30:51 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16656) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TMIqg-0001Jt-Bi for qemu-devel@nongnu.org; Thu, 11 Oct 2012 09:30:50 -0400 Date: Thu, 11 Oct 2012 15:31:55 +0200 From: "Michael S. Tsirkin" Message-ID: <20121011133155.GA8983@redhat.com> References: <1349962023-560-1-git-send-email-avi@redhat.com> <1349962023-560-8-git-send-email-avi@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1349962023-560-8-git-send-email-avi@redhat.com> Subject: Re: [Qemu-devel] [RFC v1 7/7] vhost: abort if an emulated iommu is used List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Avi Kivity Cc: qemu-devel@nongnu.org, liu ping fan , Blue Swirl , Alex Williamson , Anthony Liguori , Paolo Bonzini On Thu, Oct 11, 2012 at 03:27:03PM +0200, Avi Kivity wrote: > vhost doesn't support guest iommus yet, indicate it to the user > by gently depositing a core on their disk. > > Signed-off-by: Avi Kivity Actually there is no problem. virtio bypasses an IOMMU, so vhost works fine by writing into guest memory directly. So I don't think we need this patch. > --- > hw/vhost.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/hw/vhost.c b/hw/vhost.c > index 0b4ac3f..cd5d9f5 100644 > --- a/hw/vhost.c > +++ b/hw/vhost.c > @@ -451,6 +451,8 @@ static void vhost_region_add(MemoryListener *listener, > struct vhost_dev *dev = container_of(listener, struct vhost_dev, > memory_listener); > > + assert(!memory_region_is_iommu(section.mr)); > + > if (!vhost_section(section)) { > return; > } > -- > 1.7.12