From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [PATCH v2 19/19] vhost: enable IOMMU support Date: Fri, 29 Sep 2017 20:36:51 +0800 Message-ID: <20170929123651.GQ2251@yliu-home> References: <20170924161921.30010-1-maxime.coquelin@redhat.com> <20170924161921.30010-20-maxime.coquelin@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, remy.horton@intel.com, tiwei.bie@intel.com, mst@redhat.com, jfreiman@redhat.com, vkaplans@redhat.com, jasowang@redhat.com To: Maxime Coquelin Return-path: Received: from mail-pg0-f49.google.com (mail-pg0-f49.google.com [74.125.83.49]) by dpdk.org (Postfix) with ESMTP id 12C88397D for ; Fri, 29 Sep 2017 14:37:01 +0200 (CEST) Received: by mail-pg0-f49.google.com with SMTP id v23so724954pgc.5 for ; Fri, 29 Sep 2017 05:37:01 -0700 (PDT) Content-Disposition: inline In-Reply-To: <20170924161921.30010-20-maxime.coquelin@redhat.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Sun, Sep 24, 2017 at 06:19:21PM +0200, Maxime Coquelin wrote: > Signed-off-by: Maxime Coquelin > --- > lib/librte_vhost/vhost.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/lib/librte_vhost/vhost.h b/lib/librte_vhost/vhost.h > index fb48f3012..598c65b56 100644 > --- a/lib/librte_vhost/vhost.h > +++ b/lib/librte_vhost/vhost.h > @@ -211,7 +211,8 @@ struct vhost_msg { > (1ULL << VIRTIO_NET_F_GUEST_TSO4) | \ > (1ULL << VIRTIO_NET_F_GUEST_TSO6) | \ > (1ULL << VIRTIO_RING_F_INDIRECT_DESC) | \ > - (1ULL << VIRTIO_NET_F_MTU)) > + (1ULL << VIRTIO_NET_F_MTU) | \ > + (1ULL << VIRTIO_F_IOMMU_PLATFORM)) > Hi Maxime, You need update the release note. --yliu