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 44F5A200 for ; Fri, 25 May 2018 21:57:18 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 May 2018 12:57:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,441,1520924400"; d="scan'208";a="227298441" Received: from txasoft-yocto.an.intel.com ([10.123.72.192]) by orsmga005.jf.intel.com with ESMTP; 25 May 2018 12:57:15 -0700 From: Ben Shelton To: Cristian Dumitrescu , Thomas Monjalon Cc: dev@dpdk.org, Ben Shelton Date: Fri, 25 May 2018 14:56:47 -0500 Message-Id: <20180525195647.16109-1-benjamin.h.shelton@intel.com> X-Mailer: git-send-email 2.13.6 Subject: [dpdk-dev] [PATCH] ethdev: Add rte_tm_get_number_of_leaf_nodes to .map file X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2018 19:57:19 -0000 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. Change-Id: I01d6cb011a3ca03c14e031856ce7a75d0f67e5ae 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 9c9394c58..c4251b607 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.13.6