From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2C52BA04B5 for ; Mon, 11 Jan 2021 06:22:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E752D140CA0; Mon, 11 Jan 2021 06:22:31 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id DF1C1140C9E for ; Mon, 11 Jan 2021 06:22:30 +0100 (CET) IronPort-SDR: CNZRWHyJDbAVDGN5bZVCwzuj0/VloGypYV+1LAFv20zmfpWMlqCDDY8W6kHrJ8k7ki+dF17w/b BUVODd+esPNw== X-IronPort-AV: E=McAfee;i="6000,8403,9860"; a="175228779" X-IronPort-AV: E=Sophos;i="5.79,337,1602572400"; d="scan'208";a="175228779" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jan 2021 21:22:27 -0800 IronPort-SDR: RsZB+ODUr+zUBSE1KgZFJO/ZVb4ksG8Gn/5QXM7H/fEByiTCP2mZ03zIeR8btHXUehxeV61a75 RWArEkjcvd9w== X-IronPort-AV: E=Sophos;i="5.79,337,1602572400"; d="scan'208";a="399683530" 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; 10 Jan 2021 21:22:25 -0800 From: "Zhang,Alvin" To: qabuild@intel.com Cc: Alvin Zhang , stable@dpdk.org, Qi Zhang Date: Mon, 11 Jan 2021 13:22:19 +0800 Message-Id: <20210111052221.7780-1-alvinx.zhang@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [DPDK 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. Fixes: feaae285b342 ("net/i40e: support hash configuration in RSS flow") Cc: stable@dpdk.org Signed-off-by: Alvin Zhang Acked-by: Qi Zhang --- 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