From patchwork Wed Feb 11 13:30:55 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergio Gonzalez Monroy X-Patchwork-Id: 3149 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 A5B8A9AB6; Wed, 11 Feb 2015 14:31:00 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 1281D9AB5 for ; Wed, 11 Feb 2015 14:30:58 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP; 11 Feb 2015 05:25:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,558,1418112000"; d="scan'208";a="684201039" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga002.jf.intel.com with ESMTP; 11 Feb 2015 05:30:57 -0800 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t1BDUtv0004570 for ; Wed, 11 Feb 2015 13:30:55 GMT Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t1BDUtwg027579 for ; Wed, 11 Feb 2015 13:30:55 GMT Received: (from smonroy@localhost) by sivswdev02.ir.intel.com with id t1BDUtcN027575 for dev@dpdk.org; Wed, 11 Feb 2015 13:30:55 GMT From: Sergio Gonzalez Monroy To: dev@dpdk.org Date: Wed, 11 Feb 2015 13:30:55 +0000 Message-Id: <1423661455-27540-1-git-send-email-sergio.gonzalez.monroy@intel.com> X-Mailer: git-send-email 1.8.5.4 Subject: [dpdk-dev] [PATCH] eal: add rte_eal_iopl_init to 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Common rte_eal_iopl_init function is missing from eal version map. Signed-off-by: Sergio Gonzalez Monroy --- lib/librte_eal/bsdapp/eal/rte_eal_version.map | 1 + lib/librte_eal/linuxapp/eal/rte_eal_version.map | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/librte_eal/bsdapp/eal/rte_eal_version.map b/lib/librte_eal/bsdapp/eal/rte_eal_version.map index d36286e..a5ca65a 100644 --- a/lib/librte_eal/bsdapp/eal/rte_eal_version.map +++ b/lib/librte_eal/bsdapp/eal/rte_eal_version.map @@ -32,6 +32,7 @@ DPDK_2.0 { rte_eal_get_physmem_size; rte_eal_has_hugepages; rte_eal_hpet_init; + rte_eal_iopl_init; rte_eal_init; rte_eal_lcore_role; rte_eal_mp_remote_launch; diff --git a/lib/librte_eal/linuxapp/eal/rte_eal_version.map b/lib/librte_eal/linuxapp/eal/rte_eal_version.map index d36286e..a5ca65a 100644 --- a/lib/librte_eal/linuxapp/eal/rte_eal_version.map +++ b/lib/librte_eal/linuxapp/eal/rte_eal_version.map @@ -32,6 +32,7 @@ DPDK_2.0 { rte_eal_get_physmem_size; rte_eal_has_hugepages; rte_eal_hpet_init; + rte_eal_iopl_init; rte_eal_init; rte_eal_lcore_role; rte_eal_mp_remote_launch;