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 1B865A00BE; Fri, 1 Nov 2019 03:55:44 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id ECB6C1D44B; Fri, 1 Nov 2019 03:55:43 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 98E811D429 for ; Fri, 1 Nov 2019 03:55:41 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 31 Oct 2019 19:55:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,253,1569308400"; d="scan'208";a="231092871" Received: from unknown (HELO dpdk-wenjielx-KVM190.icx.intel.com) ([10.238.54.190]) by fmsmga002.fm.intel.com with ESMTP; 31 Oct 2019 19:55:39 -0700 From: Wenjie Li To: dts@dpdk.org Cc: Wenjie Li Date: Fri, 1 Nov 2019 11:45:15 +0000 Message-Id: <1572608715-57859-1-git-send-email-wenjiex.a.li@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] conf/checklist: CVL not support GRE_packet_filter/tunnel_filter/tunnel_filter_invalid 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" columbiaville nic does not support below cases: ipgre/GRE_packet_filter nvgre/tunnel_filter nvgre/tunnel_filter_invalid vxlan/tunnel_filter vxlan/tunnel_filter_invalid Reason: "testpmd> tunnel_filter add xxx" return: ice_dev_filter_ctrl(): Filter type (6) not supported Signed-off-by: Wenjie Li --- conf/test_case_checklist.json | 48 +++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/conf/test_case_checklist.json b/conf/test_case_checklist.json index 53c5221..ffafaf4 100644 --- a/conf/test_case_checklist.json +++ b/conf/test_case_checklist.json @@ -2365,5 +2365,53 @@ "Bug ID": "", "Comments": "the nic not support this case" } + ], + "tunnel_filter": [ + { + "OS": [ + "ALL" + ], + "NIC": [ + "columbiaville_25g", + "columbiaville_100g" + ], + "Target": [ + "ALL" + ], + "Bug ID": "", + "Comments": "the nic not support this case: ice_dev_filter_ctrl(): Filter type (6) not supported" + } + ], + "tunnel_filter_invalid": [ + { + "OS": [ + "ALL" + ], + "NIC": [ + "columbiaville_25g", + "columbiaville_100g" + ], + "Target": [ + "ALL" + ], + "Bug ID": "", + "Comments": "the nic not support this case: ice_dev_filter_ctrl(): Filter type (6) not supported" + } + ], + "GRE_packet_filter": [ + { + "OS": [ + "ALL" + ], + "NIC": [ + "columbiaville_25g", + "columbiaville_100g" + ], + "Target": [ + "ALL" + ], + "Bug ID": "", + "Comments": "the nic not support this case: ice_dev_filter_ctrl(): Filter type (6) not supported" + } ] } -- 2.17.1