From patchwork Fri Jun 18 16:43:43 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Sun, QinX" X-Patchwork-Id: 94398 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 F1588A0C46; Fri, 18 Jun 2021 10:14:31 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B93AC40150; Fri, 18 Jun 2021 10:14:31 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 648CA40142 for ; Fri, 18 Jun 2021 10:14:30 +0200 (CEST) IronPort-SDR: xbQX4T3QRmrONILLIBnM87mutEZuKBg/nONiMCS5YpAMiucDMn5CPvB09BMjhpkLoPkXhNRXqt qrkpNdETOROw== X-IronPort-AV: E=McAfee;i="6200,9189,10018"; a="206468579" X-IronPort-AV: E=Sophos;i="5.83,283,1616482800"; d="scan'208";a="206468579" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jun 2021 01:14:29 -0700 IronPort-SDR: imAe6d4t6rhrWhhk2f7Wkn5HSGqO3v4+UVAv4NJV3l2FTCxO0nfjlco1keIcEf6fWlf1l25cEK Y8OI+5uUw+pw== X-IronPort-AV: E=Sophos;i="5.83,283,1616482800"; d="scan'208";a="640645845" Received: from unknown (HELO localhost.localdomain) ([10.240.183.105]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jun 2021 01:14:28 -0700 From: Qin Sun To: dts@dpdk.org Cc: Qin Sun Date: Fri, 18 Jun 2021 16:43:43 +0000 Message-Id: <20210618164343.17904-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 4a5ce42734d7(the flow of ETH type should be supported), so remove the rule from the unsupport rule list Signed-off-by: Qin Sun Tested-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()