From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxime Coquelin Subject: Re: [PATCH 2/2] net/vhost: fix parameters string Date: Tue, 30 Oct 2018 10:10:55 +0100 Message-ID: References: <20181025094659.25492-1-tiwei.bie@intel.com> <20181025094659.25492-3-tiwei.bie@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: stable@dpdk.org To: Tiwei Bie , zhihong.wang@intel.com, dev@dpdk.org Return-path: In-Reply-To: <20181025094659.25492-3-tiwei.bie@intel.com> Content-Language: en-US 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 10/25/18 11:46 AM, Tiwei Bie wrote: > Add the missing params to the param string. > > Fixes: 39cac2adcad0 ("net/vhost: add client option") > Fixes: 4ce97c6f6b4f ("net/vhost: add an option to enable dequeue zero copy") > Fixes: 447e0d379756 ("net/vhost: add parameter to enable IOMMU feature") > Fixes: 6d6e95cec455 ("net/vhost: add parameter to enable postcopy") > Cc: stable@dpdk.org > > Signed-off-by: Tiwei Bie > --- > drivers/net/vhost/rte_eth_vhost.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/vhost/rte_eth_vhost.c b/drivers/net/vhost/rte_eth_vhost.c > index 55e51c89a..07a9c2598 100644 > --- a/drivers/net/vhost/rte_eth_vhost.c > +++ b/drivers/net/vhost/rte_eth_vhost.c > @@ -1470,7 +1470,11 @@ RTE_PMD_REGISTER_VDEV(net_vhost, pmd_vhost_drv); > RTE_PMD_REGISTER_ALIAS(net_vhost, eth_vhost); > RTE_PMD_REGISTER_PARAM_STRING(net_vhost, > "iface= " > - "queues="); > + "queues= " > + "client=<0|1> " > + "dequeue-zero-copy=<0|1> " > + "iommu-support=<0|1> " > + "postcopy-support=<0|1>"); > > RTE_INIT(vhost_init_log) > { > Reviewed-by: Maxime Coquelin Thanks, Maxime