From: Rami Rosen Date: Fri, 24 Aug 2018 07:43:02 +0000 (+0300) Subject: doc: fix wrong usage of bind command X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=b733c60f68f12e064359b27e630305c541a3fbdf;p=dpdk.git doc: fix wrong usage of bind command 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. Fixes: a971c509a523 ("doc: update vhost sample guide") Cc: stable@dpdk.org Signed-off-by: Rami Rosen Acked-by: Zhiyong Yang Reviewed-by: Maxime Coquelin --- diff --git a/doc/guides/sample_app_ug/vhost.rst b/doc/guides/sample_app_ug/vhost.rst index fd42cb3f77..df4d6f9a0b 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.