From b733c60f68f12e064359b27e630305c541a3fbdf Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Fri, 24 Aug 2018 10:43:02 +0300 Subject: [PATCH] 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 --- 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 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. -- 2.20.1