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 8DBC1A09FF for ; Thu, 7 Jan 2021 09:02:41 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 866C3140ED4; Thu, 7 Jan 2021 09:02:41 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id B5A8F140EC0; Thu, 7 Jan 2021 09:02:39 +0100 (CET) IronPort-SDR: 3Ou1BhP/m1tre27WBeWn0xzbH11D8mZLLaeRkzzwcpKHwe0/zg2BivJ6HA5PdxS6WylDqhNZV4 Ga4Yx/gTUUYw== X-IronPort-AV: E=McAfee;i="6000,8403,9856"; a="177491563" X-IronPort-AV: E=Sophos;i="5.79,329,1602572400"; d="scan'208";a="177491563" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jan 2021 00:02:38 -0800 IronPort-SDR: gTSzpTyl+ChdpcnIpij8wxiv8ToQyxoq+b73QRUB0kz5EXTn2MxSmJO3GSW0T267V/UX0HAK46 O6GL01e7xtfQ== X-IronPort-AV: E=Sophos;i="5.79,329,1602572400"; d="scan'208";a="398533044" 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 00:02:35 -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: Thu, 7 Jan 2021 16:02:27 +0800 Message-Id: <20210107080230.7836-1-alvinx.zhang@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20201228071210.19596-1-alvinx.zhang@intel.com> References: <20201228071210.19596-1-alvinx.zhang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH v3 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