From patchwork Fri Jul 24 09:10:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Xie, WeiX" X-Patchwork-Id: 74739 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 9F2D3A0521; Fri, 24 Jul 2020 11:09:10 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3B8C31BFE7; Fri, 24 Jul 2020 11:09:10 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 6A6B01BFE5 for ; Fri, 24 Jul 2020 11:09:09 +0200 (CEST) IronPort-SDR: XmoOuKuiNJPVN/M/h0K7Ydks5RMgFnbxzig6rpW+wZC1r4yJlC8cYDuszsBcE90uTNDXhlo5gc VfP6lHi1xtKw== X-IronPort-AV: E=McAfee;i="6000,8403,9691"; a="168811050" X-IronPort-AV: E=Sophos;i="5.75,390,1589266800"; d="scan'208";a="168811050" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Jul 2020 02:09:08 -0700 IronPort-SDR: LIc0hDsNeuFiyQ1xvDXk78YJG2pnG41o45RwG9gqlUnmKpwfagG8qQxdndQe3Y7SHr67rKdULP Xamq5/c6kH0g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,390,1589266800"; d="scan'208";a="302612014" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 24 Jul 2020 02:09:06 -0700 From: Xie wei To: dts@dpdk.org Cc: Xie wei Date: Fri, 24 Jul 2020 17:10:39 +0800 Message-Id: <20200724091039.28068-1-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/cvl_advanced_iavf_rss:modify cvlan rss rule X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" According to test plan, modify cvlan_rss flow rule, and vlan tag type=0x9100. Signed-off-by: Xie wei Tested-by: Xie,WeiX < weix.xie@intel.com> Signed-off-by: Xie wei --- tests/TestSuite_cvl_advanced_iavf_rss.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_cvl_advanced_iavf_rss.py b/tests/TestSuite_cvl_advanced_iavf_rss.py index 349cb40..27aab5e 100644 --- a/tests/TestSuite_cvl_advanced_iavf_rss.py +++ b/tests/TestSuite_cvl_advanced_iavf_rss.py @@ -261,9 +261,9 @@ tv_iavf_mac_ipv6_tcp_frag = { tv_iavf_mac_cvlan_rss = { "name": "iavf_mac_cvlan_rss", - "rte_flow_pattern": "flow create 0 ingress pattern eth / ipv4 / end actions rss types c-vlan end key_len 0 queues end / end", + "rte_flow_pattern": "flow create 0 ingress pattern eth / vlan / ipv4 / end actions rss types c-vlan end key_len 0 queues end / end", "scapy_str": ['Ether()/Dot1Q(vlan=RandShort())/IP(src=RandIP())/UDP()/("X"*480)', - 'Ether(type=0x8100)/Dot1Q(vlan=RandShort())/Dot1Q(vlan=56)/IP(src=RandIP())/UDP()/("X"*480)', + 'Ether(type=0x9100)/Dot1Q(vlan=RandShort())/Dot1Q(vlan=56)/IP(src=RandIP())/UDP()/("X"*480)', ], "send_count": 100, "check_func": rfc.check_iavf_packets_rss_queue