From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rami Rosen Subject: [PATCH] doc: fix a typo in sample apps guide (kni) Date: Fri, 29 Dec 2017 14:08:13 +0200 Message-ID: <1514549293-19968-1-git-send-email-rami.rosen@intel.com> Cc: Rami Rosen To: dev@dpdk.org Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 58AD4160 for ; Fri, 29 Dec 2017 13:09:59 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 shuold be "--config" instead, and this patch fixes it accordingly. Signed-off-by: Rami Rosen --- doc/guides/sample_app_ug/kernel_nic_interface.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/sample_app_ug/kernel_nic_interface.rst b/doc/guides/sample_app_ug/kernel_nic_interface.rst index e1ac415..67f2140 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 -------------- -- 1.9.1