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 48110A0A00 for ; Mon, 28 Dec 2020 08:12:29 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 11379C9D6; Mon, 28 Dec 2020 08:12:28 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id EBC0AC9B0; Mon, 28 Dec 2020 08:12:23 +0100 (CET) IronPort-SDR: fRfCjg4eOl6G1eXA221WWzFb7hNexbMEGvR7i016JPdn7c8FjAjkxIpoO2VCMTRKGCpGozch2y 83OBIk/SmiAA== X-IronPort-AV: E=McAfee;i="6000,8403,9847"; a="172842729" X-IronPort-AV: E=Sophos;i="5.78,454,1599548400"; d="scan'208";a="172842729" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Dec 2020 23:12:22 -0800 IronPort-SDR: mNPxTXm8nI6P0YtVgXO1woPz10OycNo2xsLCBfoZDz5lHbgNIe2Q2QovwrO05sxKEIae0TN7nO ojDHFO6NvtBA== X-IronPort-AV: E=Sophos;i="5.78,454,1599548400"; d="scan'208";a="394969367" 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; 27 Dec 2020 23:12:19 -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: Mon, 28 Dec 2020 15:12:08 +0800 Message-Id: <20201228071210.19596-1-alvinx.zhang@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20201222081227.7192-1-alvinx.zhang@intel.com> References: <20201222081227.7192-1-alvinx.zhang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH v2 1/3] doc: fix testpmd command for i40e RSS flow X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 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 4e5c4679b..64f20e7da 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 -- 2.21.0.windows.1