From patchwork Fri Jun 18 16:31:06 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Sun, QinX" X-Patchwork-Id: 94392 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 5FB18A0C46; Fri, 18 Jun 2021 10:01:59 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5700D410D7; Fri, 18 Jun 2021 10:01:59 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 39D6F40150 for ; Fri, 18 Jun 2021 10:01:57 +0200 (CEST) IronPort-SDR: /C2RZ4NY7GkcnqtaC9beQ1H9i31sbczqJhikQbiNxMArH7yraTgTmvfqWdHfgz1ydslCvecrJO 7o4K5Zuf4Hcw== X-IronPort-AV: E=McAfee;i="6200,9189,10018"; a="186207522" X-IronPort-AV: E=Sophos;i="5.83,283,1616482800"; d="scan'208";a="186207522" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jun 2021 01:01:54 -0700 IronPort-SDR: l+3H/ZW6inel95oYDt1VZA8WMSG+m0bkZHy0k928+0A0Rs0/DQtUQsp4Tl2HadpYcrmugfjucQ ZR3xdw/QBouQ== X-IronPort-AV: E=Sophos;i="5.83,283,1616482800"; d="scan'208";a="485600750" Received: from unknown (HELO localhost.localdomain) ([10.240.183.105]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jun 2021 01:01:51 -0700 From: Qin Sun To: dts@dpdk.org Cc: Qin Sun Date: Fri, 18 Jun 2021 16:31:06 +0000 Message-Id: <20210618163106.17817-1-qinx.sun@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/iavf_fdir: os-pkg support eth type rule as ice driver changed 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" according to ice driver commit 4a5ce42734d, the flow of ETH type should be supported by os pkg, so remove the rule from the unsupport rule list Signed-off-by: Qin Sun --- tests/TestSuite_iavf_fdir.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/TestSuite_iavf_fdir.py b/tests/TestSuite_iavf_fdir.py index 27f92f80..852c7415 100644 --- a/tests/TestSuite_iavf_fdir.py +++ b/tests/TestSuite_iavf_fdir.py @@ -2973,7 +2973,6 @@ class TestIAVFFdir(TestCase): """ rule = ["flow create 0 ingress pattern eth / ipv4 / udp / gtpu teid is 0x12345678 / gtp_psc qfi is 0x34 / end actions drop / end", "flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions queue index 1 / end", - "flow create 0 ingress pattern eth type is 0x8863 / end actions queue index 1 / mark id 1 / end", "flow create 0 ingress pattern eth / ipv4 / l2tpv3oip session_id is 17 / end actions rss queues 1 2 end / mark id 6 / end", "flow create 0 ingress pattern eth / ipv6 / udp / esp spi is 6 / end actions rss queues 1 2 end / mark id 6 / end"] self.launch_testpmd()