From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (xvm-189-124.dc0.ghst.net [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 404C3A0524 for ; Fri, 8 Jan 2021 06:35:53 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0D70F140DE9; Fri, 8 Jan 2021 06:35:53 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id CB8F4140DE9; Fri, 8 Jan 2021 06:35:50 +0100 (CET) IronPort-SDR: NoFWZMNQBg4TgvivVuXbzHpmhfFwnQBzxq6OGy8kvMizjwNSzaJZhlq5qdaj3N5sRD1ETWnkOX 4z658A63bTOA== X-IronPort-AV: E=McAfee;i="6000,8403,9857"; a="177693926" X-IronPort-AV: E=Sophos;i="5.79,330,1602572400"; d="scan'208";a="177693926" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jan 2021 21:35:49 -0800 IronPort-SDR: j9Jrj+fh3+wHSDvWYzuVCd+87+y+xhwh9BB12jUn9grDeGTMiocI6NUI8kj+Wby1Ejdy6CLVzo ZQnyK42LPDEw== X-IronPort-AV: E=Sophos;i="5.79,330,1602572400"; d="scan'208";a="398872166" Received: from shwdenpg235.ccr.corp.intel.com ([10.240.182.60]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jan 2021 21:35:46 -0800 From: "Zhang,Alvin" To: jia.guo@intel.com, beilei.xing@intel.com, qi.z.zhang@intel.com, Simei.Su@intel.com, qiming.yang@intel.com Cc: dev@dpdk.org, Alvin Zhang , stable@dpdk.org Date: Fri, 8 Jan 2021 13:35:38 +0800 Message-Id: <20210108053540.11184-1-alvinx.zhang@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20210107080230.7836-1-alvinx.zhang@intel.com> References: <20210107080230.7836-1-alvinx.zhang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH v4 1/3] doc: fix testpmd command for i40e RSS flow X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" From: Alvin Zhang The command here does not create a queue region, but only sets the lookup table, so the descriptions in the doc is not exact. Signed-off-by: Alvin Zhang Fixes: feaae285b342 ("net/i40e: support hash configuration in RSS flow") Cc: stable@dpdk.org --- V2: Divide the patch into three patch series and delete some two unused functions --- doc/guides/nics/i40e.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index 4e5c467..64f20e7 100644 --- a/doc/guides/nics/i40e.rst +++ b/doc/guides/nics/i40e.rst @@ -562,9 +562,9 @@ Generic flow API - ``RSS Flow`` RSS Flow supports to set hash input set, hash function, enable hash - and configure queue region. + and configure queues. For example: - Configure queue region as queue 0, 1, 2, 3. + Configure queues as queue 0, 1, 2, 3. .. code-block:: console -- 1.8.3.1