From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxime Coquelin Subject: Re: [PATCH] doc: fix wrong usage of bind command Date: Mon, 10 Sep 2018 15:11:05 +0200 Message-ID: References: <20180824074302.18606-1-ramirose@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: john.mcnamara@intel.com To: Rami Rosen , dev@dpdk.org Return-path: Received: from mx1.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by dpdk.org (Postfix) with ESMTP id 1F44311A4 for ; Mon, 10 Sep 2018 15:11:09 +0200 (CEST) In-Reply-To: <20180824074302.18606-1-ramirose@gmail.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 08/24/2018 09:43 AM, Rami Rosen wrote: > This patch fixes wrong usage of bind command in vhost.rst. > Using "dpdk-devbind.py -b=uio_pci_generic 0000:00:04.0" gives > an error of "unbind failed". It should be "-b uio_pci_generic" so > it will work correctly. > > Signed-off-by: Rami Rosen > --- > doc/guides/sample_app_ug/vhost.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/guides/sample_app_ug/vhost.rst b/doc/guides/sample_app_ug/vhost.rst > index fd42cb3f7..df4d6f9a0 100644 > --- a/doc/guides/sample_app_ug/vhost.rst > +++ b/doc/guides/sample_app_ug/vhost.rst > @@ -78,7 +78,7 @@ could be done by: > .. code-block:: console > > modprobe uio_pci_generic > - $RTE_SDK/usertools/dpdk-devbind.py -b=uio_pci_generic 0000:00:04.0 > + $RTE_SDK/usertools/dpdk-devbind.py -b uio_pci_generic 0000:00:04.0 > > Then start testpmd for packet forwarding testing. > > Reviewed-by: Maxime Coquelin And applied to dpdk-next-virtio/master Thanks, Maxime