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 44D8EA04BE; Sun, 6 Sep 2020 14:57:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4F69E2BAB; Sun, 6 Sep 2020 14:57:53 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id CCFF629AC; Sun, 6 Sep 2020 14:57:50 +0200 (CEST) IronPort-SDR: 6C5XB2zY4GNlqr+ttlBFSun5XKmtLg7PvwXG/X558BmLqRmgnYhu05CLXpi+8HJlMJIq/gv7h8 g8+hhQxXxdag== X-IronPort-AV: E=McAfee;i="6000,8403,9735"; a="155311453" X-IronPort-AV: E=Sophos;i="5.76,398,1592895600"; d="scan'208";a="155311453" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Sep 2020 05:57:49 -0700 IronPort-SDR: dF/Az/X6r7DzBvjh35MpIJhRN9Sgkyw7qDZoed6EtEBB+3LXVQx90YEmUnDaCUacSzQ7DHEgP2 /uKwrAe18Xbw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,398,1592895600"; d="scan'208";a="299122908" Received: from dpdk51.sh.intel.com ([10.67.111.82]) by orsmga003.jf.intel.com with ESMTP; 06 Sep 2020 05:57:47 -0700 From: Qi Zhang To: qiming.yang@intel.com Cc: ting.xu@intel.com, dev@dpdk.org, Qi Zhang , stable@dpdk.org Date: Sun, 6 Sep 2020 21:01:45 +0800 Message-Id: <20200906130145.44729-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.13.6 Subject: [dpdk-dev] [PATCH] net/ice/base: fix wrong outer ipv6 ptype table 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" ptype 264, 265, 266, 267, 275 is should not be set in ice_ptypes_ipv6_ofos_all. Fixes: 88824213be8a ("net/ice/base: enable RSS for PFCP/L2TP/ESP/AH") Cc: stable@dpdk.org Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ice/base/ice_flow.c b/drivers/net/ice/base/ice_flow.c index 6035bdfcf..552e58f9b 100644 --- a/drivers/net/ice/base/ice_flow.c +++ b/drivers/net/ice/base/ice_flow.c @@ -278,7 +278,7 @@ static const u32 ice_ptypes_ipv6_ofos[] = { static const u32 ice_ptypes_ipv6_ofos_all[] = { 0x00000000, 0x00000000, 0x77000000, 0x10002000, 0x00000000, 0x000002AA, 0x00000000, 0x00000000, - 0x00080F00, 0x03F00000, 0x7C1F0000, 0x00000206, + 0x00000000, 0x03F00000, 0x7C1F0000, 0x00000206, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, -- 2.13.6