From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8D303A04E7; Mon, 2 Nov 2020 16:23:58 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DFDACC926; Mon, 2 Nov 2020 16:23:56 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 19449C922; Mon, 2 Nov 2020 16:23:53 +0100 (CET) IronPort-SDR: oH1j+2pXudvowRkp6jaD7y4OOynP5uVbskUt3KELGlDgTJb16IwdnQ21P7zWYP3A6Bo69npzj3 hbV3LxUN27RA== X-IronPort-AV: E=McAfee;i="6000,8403,9793"; a="148755256" X-IronPort-AV: E=Sophos;i="5.77,445,1596524400"; d="scan'208";a="148755256" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Nov 2020 07:23:51 -0800 IronPort-SDR: LDMKf0P7so8jZyk4QwOAsatkG6NBVBObuTXYnXZ7IXEMIz8T3naZbTCA+phLxOMIhLRkwRtGa8 zGhH08sRHHUQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,445,1596524400"; d="scan'208";a="362638237" Received: from silpixa00400355.ir.intel.com (HELO silpixa00400355.ger.corp.intel.com) ([10.237.223.148]) by FMSMGA003.fm.intel.com with ESMTP; 02 Nov 2020 07:23:50 -0800 From: Ciara Power To: dev@dpdk.org Cc: Ciara Power , dg@adax.com, stable@dpdk.org, Ferruh Yigit Date: Mon, 2 Nov 2020 15:23:48 +0000 Message-Id: <20201102152348.472458-1-ciara.power@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] doc: fix typo in kni programmers guide 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The typo "withe" should have been "with the". This is now fixed. Fixes: 89397a01ce4a ("kni: set default carrier state of interface") Cc: dg@adax.com Cc: stable@dpdk.org Signed-off-by: Ciara Power --- doc/guides/prog_guide/kernel_nic_interface.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/prog_guide/kernel_nic_interface.rst b/doc/guides/prog_guide/kernel_nic_interface.rst index de5d75bd4c..1ce03ec1a3 100644 --- a/doc/guides/prog_guide/kernel_nic_interface.rst +++ b/doc/guides/prog_guide/kernel_nic_interface.rst @@ -178,7 +178,7 @@ KNI Creation and Deletion ------------------------- Before any KNI interfaces can be created, the ``rte_kni`` kernel module must -be loaded into the kernel and configured withe ``rte_kni_init()`` function. +be loaded into the kernel and configured with the ``rte_kni_init()`` function. The KNI interfaces are created by a DPDK application dynamically via the ``rte_kni_alloc()`` function. -- 2.25.1