From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v11 1/4] flow_classify: add flow classify library Date: Tue, 24 Oct 2017 21:43:22 +0200 Message-ID: <2041835.lviG8H9kti@xps> References: <1508771778-617-1-git-send-email-bernard.iremonger@intel.com> <1508866083-15646-2-git-send-email-bernard.iremonger@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, ferruh.yigit@intel.com, konstantin.ananyev@intel.com, cristian.dumitrescu@intel.com, adrien.mazarguil@6wind.com, jasvinder.singh@intel.com To: Bernard Iremonger Return-path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 9F9D41B2DA for ; Tue, 24 Oct 2017 21:43:23 +0200 (CEST) In-Reply-To: <1508866083-15646-2-git-send-email-bernard.iremonger@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 24/10/2017 19:28, Bernard Iremonger: > --- /dev/null > +++ b/lib/librte_flow_classify/rte_flow_classify_version.map > @@ -0,0 +1,13 @@ > +EXPERIMENTAL { > + global: > + > + rte_flow_classifier_create; > + rte_flow_classifier_free; > + rte_flow_classifier_query; > + rte_flow_classify_table_create; > + rte_flow_classify_table_entry_add; > + rte_flow_classify_table_entry_delete; > + > + local: *; > + > +} DPDK_17.11; It does not compile in shared library mode. The reason is that you cannot inherit DPDK_17.11 block because it does not exist in this file.