From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [PATCH v3 1/2] librte_ether: ensure not overwrite device data in mp app Date: Tue, 27 Sep 2016 11:06:46 +0800 Message-ID: <20160927030646.GA9990@yliu-dev.sh.intel.com> References: <1474901586-8706-1-git-send-email-marcinx.kerlin@intel.com> <1474901586-8706-2-git-send-email-marcinx.kerlin@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, pablo.de.lara.guarch@intel.com, thomas.monjalon@6wind.com To: Marcin Kerlin Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 2DEF12BA8 for ; Tue, 27 Sep 2016 05:06:22 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1474901586-8706-2-git-send-email-marcinx.kerlin@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" On Mon, Sep 26, 2016 at 04:53:05PM +0200, Marcin Kerlin wrote: > diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ether_version.map > index 45ddf44..34e1109 100644 > --- a/lib/librte_ether/rte_ether_version.map > +++ b/lib/librte_ether/rte_ether_version.map > @@ -139,3 +139,10 @@ DPDK_16.07 { > rte_eth_dev_get_port_by_name; > rte_eth_xstats_get_names; > } DPDK_16.04; > + > +DPDK_16.11 { > + global: > + > + rte_eth_dev_data_allocated; > + rte_eth_dev_release_dev_data; > +} DPDK_16.07 Interestingly, my robot caught an error (missing ';') with your v1, and you fixed it in v2. Now you broke it again in v3. --yliu