From: Rami Rosen Date: Fri, 29 Dec 2017 12:08:13 +0000 (+0200) Subject: doc: fix typo in KNI sample app guide X-Git-Tag: spdx-start~745 X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=05100f3eefca1260d8d6765bb85fefed7d225962 doc: fix typo in KNI sample app guide This trivial patch fixes a typo in sample apps guide, in the kernel nic interface (kni) section. Using "-config", as it is now today in this doc, will not work and will emit an error; it should be "--config" instead, and this patch fixes it accordingly. Fixes: d0dff9ba445e ("doc: sample application user guide") Signed-off-by: Rami Rosen Acked-by: Ferruh Yigit --- diff --git a/doc/guides/sample_app_ug/kernel_nic_interface.rst b/doc/guides/sample_app_ug/kernel_nic_interface.rst index e1ac4153e8..67f21406f1 100644 --- a/doc/guides/sample_app_ug/kernel_nic_interface.rst +++ b/doc/guides/sample_app_ug/kernel_nic_interface.rst @@ -181,7 +181,7 @@ and one lcore of kernel thread for each port: .. code-block:: console - ./build/kni -l 4-7 -n 4 -- -P -p 0x3 -config="(0,4,6,8),(1,5,7,9)" + ./build/kni -l 4-7 -n 4 -- -P -p 0x3 --config="(0,4,6,8),(1,5,7,9)" KNI Operations --------------