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 17472A04DD; Wed, 21 Oct 2020 18:09:40 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7023DA99C; Wed, 21 Oct 2020 18:09:37 +0200 (CEST) Received: from dispatch1-us1.ppe-hosted.com (dispatch1-us1.ppe-hosted.com [148.163.129.52]) by dpdk.org (Postfix) with ESMTP id 45B4FA95D for ; Wed, 21 Oct 2020 18:09:35 +0200 (CEST) Received: from mx1-us1.ppe-hosted.com (unknown [10.7.65.60]) by dispatch1-us1.ppe-hosted.com (PPE Hosted ESMTP Server) with ESMTP id BCA32600F2; Wed, 21 Oct 2020 16:09:33 +0000 (UTC) Received: from us4-mdac16-30.ut7.mdlocal (unknown [10.7.66.140]) by mx1-us1.ppe-hosted.com (PPE Hosted ESMTP Server) with ESMTP id BBBBE200A0; Wed, 21 Oct 2020 16:09:33 +0000 (UTC) X-Virus-Scanned: Proofpoint Essentials engine Received: from mx1-us1.ppe-hosted.com (unknown [10.7.66.42]) by mx1-us1.ppe-hosted.com (PPE Hosted ESMTP Server) with ESMTPS id 3B4FF1C004F; Wed, 21 Oct 2020 16:09:33 +0000 (UTC) Received: from webmail.solarflare.com (uk.solarflare.com [193.34.186.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by mx1-us1.ppe-hosted.com (PPE Hosted ESMTP Server) with ESMTPS id D31DBA40075; Wed, 21 Oct 2020 16:09:32 +0000 (UTC) Received: from [127.0.0.27] (10.17.10.39) by ukex01.SolarFlarecom.com (10.17.10.4) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Wed, 21 Oct 2020 17:09:14 +0100 To: "Guo, Jia" , "Xing, Beilei" , Thomas Monjalon , "Yigit, Ferruh" , Andrew Rybchenko CC: "dev@dpdk.org" References: <1603030152-13451-1-git-send-email-arybchenko@solarflare.com> <1603030152-13451-3-git-send-email-arybchenko@solarflare.com> From: Andrew Rybchenko Message-ID: <9f1b5be2-6e20-d130-8dff-c65d0563d51a@solarflare.com> Date: Wed, 21 Oct 2020 19:09:07 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.3.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.17.10.39] X-ClientProxiedBy: ocex03.SolarFlarecom.com (10.20.40.36) To ukex01.SolarFlarecom.com (10.17.10.4) X-TM-AS-Product-Ver: SMEX-12.5.0.1300-8.6.1012-25738.003 X-TM-AS-Result: No-5.977200-8.000000-10 X-TMASE-MatchedRID: 7ySqCuYCpfjmLzc6AOD8DfHkpkyUphL9Ud7Bjfo+5jTVEYfep7SzppWi xnDxF7NQtqy4fGtVdQqTH1CW/TkdqkgMxOkBoMP0/ccgt/EtX/199ekRHlOQkTs61woVLQQE035 U7xRHgyHXX+bwWrzPa5nx1D8CeR1zXHEPHmpuRH05f9Xw/xqKXVkMvWAuahr8+gD2vYtOFhgqtq 5d3cxkNXSXz+MUhzKEgHRxPBqaB48abbYVsQz++fVS3unKVu/VL+6oUn8cANryof1FAj8PdU8GV AxaetDCW1SbGfjRqUbn4fa6TbvJjivPG8GHaeWzBsRAh8WmTAcG2WAWHb2qekrMHC7kmmSWc5S6 hNczuvhDDKa3G4nrLQ== X-TM-AS-User-Approved-Sender: Yes X-TM-AS-User-Blocked-Sender: No X-TMASE-Result: 10--5.977200-8.000000 X-TMASE-Version: SMEX-12.5.0.1300-8.6.1012-25738.003 X-MDID: 1603296573-Sw1e0bg1pCy1 X-PPE-DISP: 1603296573;Sw1e0bg1pCy1 Subject: Re: [dpdk-dev] [PATCH 02/14] ethdev: move MAC filter type to i40e driver 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/21/20 7:01 AM, Guo, Jia wrote: > >> -----Original Message----- >> From: Andrew Rybchenko >> Sent: Sunday, October 18, 2020 10:09 PM >> To: Xing, Beilei ; Guo, Jia ; >> Thomas Monjalon ; Yigit, Ferruh >> ; Andrew Rybchenko >> >> Cc: dev@dpdk.org >> Subject: [PATCH 02/14] ethdev: move MAC filter type to i40e driver >> >> net/i40e driver is the only user of the enum rte_mac_filter_type. >> Move the define to the driver and use i40e_ prefix instead of rte_. >> >> Signed-off-by: Andrew Rybchenko >> --- >> drivers/net/i40e/i40e_ethdev.c | 58 ++++++++++++++++---------------- >> drivers/net/i40e/i40e_ethdev.h | 15 +++++++-- >> drivers/net/i40e/i40e_pf.c | 2 +- >> drivers/net/i40e/rte_pmd_i40e.c | 30 ++++++++--------- >> lib/librte_ethdev/rte_eth_ctrl.h | 11 ------ >> 5 files changed, 58 insertions(+), 58 deletions(-) >> > > Where is the related remove in testpmd about the rte_mac_filter_type? There is no rte_mac_filter_type in testpmd. Corresponding filter support is removed in the previous patch including testpmd.