From patchwork Thu Apr 6 10:18:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 23281 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 0A1D32B87; Thu, 6 Apr 2017 12:18:29 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 9F85B2B84 for ; Thu, 6 Apr 2017 12:18:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1491473907; x=1523009907; h=from:to:cc:subject:date:message-id; bh=3c3+VZHMka8pJA5apOXN5uUpV+bpjC+3H/LXDiPJ40k=; b=G4ACgjI/lPEEvCFysU/YrHBZdkwpgz7k2jkhGjpKx7tyt0DpDzqg8eKs 6uaKRu2JUJghIh1FGD8nTC98eJbrHg==; Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Apr 2017 03:18:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,159,1488873600"; d="scan'208";a="85542715" Received: from sivswdev01.ir.intel.com ([10.237.217.45]) by fmsmga006.fm.intel.com with ESMTP; 06 Apr 2017 03:18:25 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Thu, 6 Apr 2017 11:18:21 +0100 Message-Id: <20170406101821.12984-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.8.4 Subject: [dpdk-dev] [PATCH] ethdev: fix missing function in version 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The function rte_eth_find_next is missing in the map file, which causes errors with shared library builds. .../test-pmd/testpmd.c:1693: undefined reference to `rte_eth_find_next' Adding function to map file fixes the issue. Fixes: 5588909af21b ("ethdev: add device iterator") Signed-off-by: Bruce Richardson --- lib/librte_ether/rte_ether_version.map | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ether_version.map index c6c9d0d..318a852 100644 --- a/lib/librte_ether/rte_ether_version.map +++ b/lib/librte_ether/rte_ether_version.map @@ -154,3 +154,9 @@ DPDK_17.02 { rte_flow_validate; } DPDK_16.11; + +DPDK_17.05 { + global: + + rte_eth_find_next; +} DPDK_17.02;