From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP; 26 Sep 2016 20:06:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,402,1470726000"; d="scan'208";a="1036919147" Received: from yliu-dev.sh.intel.com (HELO yliu-dev) ([10.239.67.162]) by orsmga001.jf.intel.com with ESMTP; 26 Sep 2016 20:06:20 -0700 Date: Tue, 27 Sep 2016 11:06:46 +0800 From: Yuanhan Liu To: Marcin Kerlin Cc: dev@dpdk.org, pablo.de.lara.guarch@intel.com, thomas.monjalon@6wind.com 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 Content-Disposition: inline In-Reply-To: <1474901586-8706-2-git-send-email-marcinx.kerlin@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH v3 1/2] librte_ether: ensure not overwrite device data in mp app X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Sep 2016 03:06:22 -0000 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