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 7184CA04B5; Thu, 29 Oct 2020 22:37:04 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D44F5CA18; Thu, 29 Oct 2020 22:37:02 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 9CF87C9EC for ; Thu, 29 Oct 2020 22:36:59 +0100 (CET) IronPort-SDR: e3DFUY2tKOt4ogSIRg0kc+xQZvflsLvf3ykDNOZlppNCxGupiLEAKjhgYFXNnO/WJnoUi7regF Oe0nGpvHccTA== X-IronPort-AV: E=McAfee;i="6000,8403,9789"; a="148371914" X-IronPort-AV: E=Sophos;i="5.77,430,1596524400"; d="scan'208";a="148371914" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Oct 2020 14:36:57 -0700 IronPort-SDR: GUrwJeORovnBsKbbkxTUCoOq4nBqDNBfIxPSYXY56oEHJE48ku7sfZsFAwML9l2XiUq43ct3r/ r5WqB+ZXM7YA== X-IronPort-AV: E=Sophos;i="5.77,430,1596524400"; d="scan'208";a="536824523" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.251.183]) ([10.213.251.183]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Oct 2020 14:36:56 -0700 From: Ferruh Yigit To: Andrew Rybchenko Cc: dev@dpdk.org References: <1603030152-13451-1-git-send-email-arybchenko@solarflare.com> <1603359758-13297-1-git-send-email-arybchenko@solarflare.com> Message-ID: <4f81f0fc-a591-ada7-13cf-71ac48b25084@intel.com> Date: Thu, 29 Oct 2020 21:36:46 +0000 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v2 00/14] ethdev: remove legacy filter API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 10/23/2020 5:03 PM, Ferruh Yigit wrote: > On 10/22/2020 10:42 AM, Andrew Rybchenko wrote: >> Removal is aggressive and tries to cleanup all dead code from drivers. >> >> tep_termination example still uses TUNNEL filters. Functionality is >> broken when TUNNEL filter is removed and finally even build of the >> example is broken when API is removed. It is assumed that the example >> will be removed before the patch series applied. >> >> v2: >>    - cleanup testpmd user guide >>    - try to improve descriptions a bit >>    - remove example/tep_termination mentions from patches >>      description >>    - fix broken build because of unused static function left >>    - other chagnes are documented in specific patches >> >> Andrew Rybchenko (14): >>    ethdev: remove legacy MACVLAN filter type support >>    ethdev: move MAC filter type to i40e driver >>    ethdev: remove legacy EtherType filter type support >>    ethdev: remove legacy flexible filter type support >>    ethdev: move flexible filter type to e1000 driver >>    ethdev: remove legacy SYN filter type support >>    ethdev: remove legacy N-tuple filter type support >>    ethdev: remove legacy TUNNEL filter type support >>    ethdev: remove legacy HASH filter type support >>    ethdev: remove legacy L2_TUNNEL filter type support >>    ethdev: remove legacy global filter configuration support >>    ethdev: remove legacy FDIR filter type support >>    app/testpmd: remove command to set FDIR flexible filter mask >>    ethdev: remove legacy filter API functions >> > > For series, > Reviewed-by: Ferruh Yigit > Series applied to dpdk-next-net/main, thanks.