From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 1FCABC3AE for ; Tue, 30 Jun 2015 20:37:23 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP; 30 Jun 2015 11:37:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,379,1432623600"; d="scan'208";a="597624809" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga003.jf.intel.com with ESMTP; 30 Jun 2015 11:37:22 -0700 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t5UIbB5n007445 for ; Tue, 30 Jun 2015 19:37:20 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id t5UIbBMf018161 for ; Tue, 30 Jun 2015 19:37:11 +0100 Received: (from pdelarax@localhost) by sivswdev01.ir.intel.com with id t5UIbBC1018157 for dev@dpdk.org; Tue, 30 Jun 2015 19:37:11 +0100 From: Pablo de Lara To: dev@dpdk.org Date: Tue, 30 Jun 2015 19:37:11 +0100 Message-Id: <1435689431-18116-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH] hash: add missing symbol in version map 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, 30 Jun 2015 18:37:24 -0000 rte_hash_hash is a public function but was not in rte_hash_version.map Signed-off-by: Pablo de Lara --- lib/librte_hash/rte_hash_version.map | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/librte_hash/rte_hash_version.map b/lib/librte_hash/rte_hash_version.map index 0b749e8..94a0fec 100644 --- a/lib/librte_hash/rte_hash_version.map +++ b/lib/librte_hash/rte_hash_version.map @@ -11,6 +11,7 @@ DPDK_2.0 { rte_hash_del_key_with_hash; rte_hash_find_existing; rte_hash_free; + rte_hash_hash; rte_hash_lookup; rte_hash_lookup_bulk; rte_hash_lookup_with_hash; -- 1.7.4.1