From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Shelton Subject: [PATCH] ethdev: Add rte_tm_get_number_of_leaf_nodes to .map file Date: Fri, 25 May 2018 14:59:43 -0500 Message-ID: <20180525195943.16277-1-benjamin.h.shelton@intel.com> Cc: dev@dpdk.org, Ben Shelton To: Cristian Dumitrescu , Thomas Monjalon Return-path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id D8B09200 for ; Fri, 25 May 2018 22:00:06 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The rte_tm_get_number_of_leaf_nodes() API function was added in DPDK 17.08. However, it was added to the .map file with the wrong function name (rte_tm_get_leaf_nodes), which was subsequently removed in commit 3e8ea3d ('lib: remove unused map symbols'). Add it back under the 17.08 release with the correct function name. v2: Remove Gerrit Change-Id. Signed-off-by: Ben Shelton --- lib/librte_ethdev/rte_ethdev_version.map | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_ethdev/rte_ethdev_version.map b/lib/librte_ethdev/rte_ethdev_version.map index 9c9394c..c4251b6 100644 --- a/lib/librte_ethdev/rte_ethdev_version.map +++ b/lib/librte_ethdev/rte_ethdev_version.map @@ -148,6 +148,7 @@ DPDK_17.08 { _rte_eth_dev_callback_process; rte_eth_dev_adjust_nb_rx_tx_desc; rte_tm_capabilities_get; + rte_tm_get_number_of_leaf_nodes; rte_tm_hierarchy_commit; rte_tm_level_capabilities_get; rte_tm_mark_ip_dscp; -- 2.6.4