From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Tan, Jianfeng" Subject: Re: [PATCH v9 01/11] ethdev: add API to query supported packet types Date: Fri, 18 Mar 2016 17:17:04 +0800 Message-ID: <56EBC790.4010009@intel.com> References: <56E6F176.80304@intel.com> <1457988650-52797-1-git-send-email-jianfeng.tan@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: helin.zhang@intel.com, konstantin.ananyev@intel.com, adrien.mazarguil@6wind.com, ferruh.yigit@intel.com To: dev@dpdk.org, Thomas Monjalon Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id AE34C2B95 for ; Fri, 18 Mar 2016 10:17:06 +0100 (CET) In-Reply-To: <1457988650-52797-1-git-send-email-jianfeng.tan@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Thomas, On 3/15/2016 4:50 AM, Jianfeng Tan wrote: > Add a new API rte_eth_dev_get_supported_ptypes to query what packet types > can be filled by given already started device (or its pmd rx burst function > has already been decided). > > Signed-off-by: Jianfeng Tan > Acked-by: Konstantin Ananyev > Acked-by: Adrien Mazarguil > --- > v9: > - Fix rte_ether_version.map as Ferruh Yigit sugguests. > lib/librte_ether/rte_ethdev.c | 27 +++++++++++++++++++++++++++ > lib/librte_ether/rte_ethdev.h | 27 +++++++++++++++++++++++++++ > lib/librte_ether/rte_ether_version.map | 7 +++++++ > 3 files changed, 61 insertions(+) ... > diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ether_version.map > index d8db24d..c242e71 100644 > --- a/lib/librte_ether/rte_ether_version.map > +++ b/lib/librte_ether/rte_ether_version.map > @@ -117,3 +117,10 @@ DPDK_2.2 { > > local: *; > }; > + > +DPDK_16.04 { > + global: > + > + rte_eth_dev_get_supported_ptypes; > + > +} DPDK_2.2; Although this series is rebased on dpdk-next-net/rel_16_04, but applying this into v16.04-rc1 only needs to remove change in rte_ether_version.map. Shall I send a new version? Or this series will simply be deferred? Thanks, Jianfeng