From patchwork Thu Mar 25 15:57:50 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Xie, WeiX" X-Patchwork-Id: 89813 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id EC5F2A0A02; Thu, 25 Mar 2021 08:33:59 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D962240693; Thu, 25 Mar 2021 08:33:59 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 8A95B4067B for ; Thu, 25 Mar 2021 08:33:56 +0100 (CET) IronPort-SDR: DgnOftjqtWcbeCCZhdyDjzq+pbUnmocAZi1+kABnVo2fIio6JlJVJyjqZB/+MSJTs+Ky/Nu9Oc jDlPbm6UHV7g== X-IronPort-AV: E=McAfee;i="6000,8403,9933"; a="211001559" X-IronPort-AV: E=Sophos;i="5.81,277,1610438400"; d="scan'208";a="211001559" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2021 00:33:54 -0700 IronPort-SDR: J/rjMNCSlRmhgmtTiE2E/eAyhXKwa3EYPfyZNXiQuyYH6/rIlpSUSPW6YgqqaeVI3+O7RLj90T 7r0lHHVOsSSg== X-IronPort-AV: E=Sophos;i="5.81,277,1610438400"; d="scan'208";a="415874005" Received: from unknown (HELO localhost.localdomain) ([10.240.183.103]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2021 00:33:53 -0700 From: xiewei To: dts@dpdk.org Cc: xiewei Date: Thu, 25 Mar 2021 23:57:50 +0800 Message-Id: <20210325155751.24219-2-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210325155751.24219-1-weix.xie@intel.com> References: <20210325155751.24219-1-weix.xie@intel.com> Subject: [dts] [PATCH V1 1/2] tests/kernelpf_iavf: adapt to CVL nic X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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" adapt to ice driver update for vlan issue on AVF/DCF. vf_add_pvid: remove vlan, the pkts with random vlan id 1-4095 shall not be received. vf_vlan_rx: remove vlan, the pkts with vlan 1 shall not be received. vf_vlan_strip: disable strip, the pkts with random vlan tag shall not be received. vf_vlan_filter: disable filter, the pkts with random vlan tag shall not be received. vf_vlan_promisc: disable filter and strip, the pkts with random vlan tag shall not be received. Signed-off-by: xiewei --- tests/TestSuite_kernelpf_iavf.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/TestSuite_kernelpf_iavf.py b/tests/TestSuite_kernelpf_iavf.py index 5db1ec00..c953e46c 100644 --- a/tests/TestSuite_kernelpf_iavf.py +++ b/tests/TestSuite_kernelpf_iavf.py @@ -420,7 +420,7 @@ class TestKernelpfIavf(TestCase): out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP") tcpdump_out = self.get_tcpdump_package() receive_pkt = re.findall('vlan %s' % random_vlan, tcpdump_out) - if self.driver_version < "2.13.10" or self.kdriver == 'ice': + if self.kdriver == 'i40e' and self.driver_version < "2.13.10": self.verify(len(receive_pkt) == 2, "fail to tester received vlan packet!!!") self.verify(self.vf_mac in out, "Failed to received vlan packet!!!") else: @@ -489,7 +489,7 @@ class TestKernelpfIavf(TestCase): # send vlan 1 packet, vf can receive packet out = self.send_and_getout(vlan=1, pkt_type="VLAN_UDP") - if self.driver_version < "2.13.10" or self.kdriver == 'ice': + if self.kdriver == 'i40e' and self.driver_version < "2.13.10": self.verify(self.vf_mac in out, "received vlan 1 packet!!!") else: self.verify(self.vf_mac not in out, "Received vlan 1 packet!!!") @@ -537,7 +537,7 @@ class TestKernelpfIavf(TestCase): self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP") tcpdump_out = self.get_tcpdump_package() receive_pkt = re.findall('vlan %s' % random_vlan, tcpdump_out) - if self.driver_version < "2.13.10" or self.kdriver == 'ice': + if self.kdriver == 'i40e' and self.driver_version < "2.13.10": self.verify(len(receive_pkt) == 2, 'Failed to not received vlan packet!!!') else: self.verify(len(receive_pkt) == 1, 'Failed to not received vlan packet!!!') @@ -574,7 +574,7 @@ class TestKernelpfIavf(TestCase): time.sleep(1) tcpdump_out = self.get_tcpdump_package() receive_pkt = re.findall('vlan %s' % random_vlan, tcpdump_out) - if self.driver_version < "2.13.10" or self.kdriver == 'ice': + if self.kdriver == 'i40e' and self.driver_version < "2.13.10": self.verify(len(receive_pkt) == 2, 'Failed to received vlan packet!!!') else: self.verify(len(receive_pkt) == 1, 'Failed to received vlan packet!!!') @@ -917,7 +917,7 @@ class TestKernelpfIavf(TestCase): self.scapy_send_packet(self.vf_mac, self.tester_intf, vlan_flags=True, count=10) out = self.vm_dut.get_session_output() packets = len(re.findall('received 1 packets', out)) - if self.driver_version < "2.13.10" or self.kdriver == 'ice': + if self.kdriver == 'i40e' and self.driver_version < "2.13.10": self.verify(packets == 10, "Not receive expected packet") else: self.verify(packets == 0, "Receive expected packet") From patchwork Thu Mar 25 15:57:51 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Xie, WeiX" X-Patchwork-Id: 89812 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3C0A2A0A0A; Thu, 25 Mar 2021 08:34:00 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0BD34140D57; Thu, 25 Mar 2021 08:34:00 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 6F1CE4067B for ; Thu, 25 Mar 2021 08:33:57 +0100 (CET) IronPort-SDR: 4Gr+4thlYdrPkzNt//k3m5fvQ4Jos+qjtDcK4Atss9/iUebBtCTArjnX6UsUbfCdUzOajuD91l RaI6ykkyL75g== X-IronPort-AV: E=McAfee;i="6000,8403,9933"; a="211001567" X-IronPort-AV: E=Sophos;i="5.81,277,1610438400"; d="scan'208";a="211001567" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2021 00:33:56 -0700 IronPort-SDR: +2ZFHDp9YWieiJzAR9kuG7XiSchrnDHXgRLQsT3wHGt7Z+Tbv5hcMk2mE7yK5J7uefVW7kv/Dk ox+N3kyuiNRQ== X-IronPort-AV: E=Sophos;i="5.81,277,1610438400"; d="scan'208";a="415874018" Received: from unknown (HELO localhost.localdomain) ([10.240.183.103]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2021 00:33:55 -0700 From: xiewei To: dts@dpdk.org Cc: xiewei Date: Thu, 25 Mar 2021 23:57:51 +0800 Message-Id: <20210325155751.24219-3-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210325155751.24219-1-weix.xie@intel.com> References: <20210325155751.24219-1-weix.xie@intel.com> Subject: [dts] [PATCH V1 2/2] tests/vf_vlan: adapt to CVL nic X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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" adapt to ice driver update for vlan issue on AVF/DCF. vf_vlan_rx: while vlan set filter on, the pkts with random vlan id 1-4095 shall not be received. add_pvid_vf: while ip link set pf_intf vf 0 vlan 0, the pkts with random vlan id 1-4095 shall not be received. Signed-off-by: xiewei --- tests/TestSuite_vf_vlan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_vf_vlan.py b/tests/TestSuite_vf_vlan.py index 28650143..0cc2ba89 100644 --- a/tests/TestSuite_vf_vlan.py +++ b/tests/TestSuite_vf_vlan.py @@ -276,7 +276,7 @@ class TestVfVlan(TestCase): self.vm0_testpmd.execute_cmd("start") out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP") - if self.driver_version < "2.13.10" or self.kdriver == 'ice': + if self.kdriver == 'i40e' and self.driver_version < "2.13.10": self.verify("received" in out, "Failed to received vlan packet!!!") else: self.verify( @@ -398,7 +398,7 @@ class TestVfVlan(TestCase): # send packet with vlan out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP") - if self.driver_version < "2.13.10" or self.kdriver == 'ice': + if self.kdriver == 'i40e' and self.driver_version < "2.13.10": self.verify( "received 1 packets" in out, "Received mismatched vlan packet while vlan filter on") else: