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 90D8AA034F; Wed, 13 May 2020 10:22:03 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 246A71C29A; Wed, 13 May 2020 10:22:02 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 7479B1C246 for ; Wed, 13 May 2020 10:22:00 +0200 (CEST) IronPort-SDR: SdAtxiSxhxFKpF0QAVSCmS5BDpmqLh2odVBCQj5m3m43CFt8YsgHUbkgX2izosev5cf2GunPcj vCKS4Oux5xkw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 May 2020 01:21:59 -0700 IronPort-SDR: Z4uCXNX+vt6aBEkW0B49CJaVAA/rZZbZpiiGkZFeeC/Y5bvQdgRLmYhs0htyGccQw1WuDbz2AR b6g5QVC1IPpQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,387,1583222400"; d="scan'208";a="464052850" Received: from npg-dpdk-cvl-jeffguo-01.sh.intel.com ([10.67.111.128]) by fmsmga006.fm.intel.com with ESMTP; 13 May 2020 01:21:56 -0700 From: Jeff Guo To: beilei.xing@intel.com, xiaolong.ye@intel.com, qi.z.zhang@intel.com, jingjing.wu@intel.com Cc: dev@dpdk.org, jia.guo@intel.com Date: Wed, 13 May 2020 16:21:27 -0400 Message-Id: <20200513202128.112290-1-jia.guo@intel.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200509202730.70367-1-jia.guo@intel.com> References: <20200509202730.70367-1-jia.guo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [dpdk-dev v2 1/2] common/iavf: fix typo of rss algorithm type 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" A typo need to be fixd for Simple XOR algorithm configuration. Signed-off-by: Jeff Guo --- v2: fix a typo for xor. --- drivers/common/iavf/virtchnl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/iavf/virtchnl.h b/drivers/common/iavf/virtchnl.h index 36449731f..ef41a4f8a 100644 --- a/drivers/common/iavf/virtchnl.h +++ b/drivers/common/iavf/virtchnl.h @@ -551,7 +551,7 @@ VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_rss_hena); /* Type of RSS algorithm */ enum virtchnl_rss_algorithm { VIRTCHNL_RSS_ALG_TOEPLITZ_ASYMMETRIC = 0, - VIRTCHNL_RSS_ALG_R_ASYMMETRIC = 1, + VIRTCHNL_RSS_ALG_XOR_ASYMMETRIC = 1, VIRTCHNL_RSS_ALG_TOEPLITZ_SYMMETRIC = 2, VIRTCHNL_RSS_ALG_XOR_SYMMETRIC = 3, }; -- 2.20.1