From mboxrd@z Thu Jan 1 00:00:00 1970 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) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Dec 2017 04:09:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,475,1508828400"; d="scan'208";a="19758975" Received: from imail001.iil.intel.com ([10.184.207.12]) by orsmga001.jf.intel.com with ESMTP; 29 Dec 2017 04:09:57 -0800 Received: from rr.iil.intel.com (rr.iil.intel.com [143.185.141.70]) by imail001.iil.intel.com with ESMTP id vBTC9vk9001055; Fri, 29 Dec 2017 14:09:57 +0200 From: Rami Rosen To: dev@dpdk.org Cc: Rami Rosen Date: Fri, 29 Dec 2017 14:08:13 +0200 Message-Id: <1514549293-19968-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH] doc: fix a typo in sample apps guide (kni) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Dec 2017 12:09:59 -0000 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