From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 2B1C6106B for ; Thu, 9 Jul 2015 10:16:27 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 09 Jul 2015 01:16:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,438,1432623600"; d="scan'208";a="725574259" Received: from unknown (HELO stargo) ([10.217.248.233]) by orsmga001.jf.intel.com with SMTP; 09 Jul 2015 01:16:03 -0700 Received: by stargo (sSMTP sendmail emulation); Thu, 09 Jul 2015 10:17:11 +0200 From: Maciej Gajdzica To: dev@dpdk.org Date: Thu, 9 Jul 2015 10:17:09 +0200 Message-Id: <1436429830-16239-1-git-send-email-maciejx.t.gajdzica@intel.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file 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: Thu, 09 Jul 2015 08:16:27 -0000 Exported symbols for nodrop, fragmentation, reassembly ports Signed-off-by: Maciej Gajdzica --- lib/librte_port/rte_port_version.map | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/librte_port/rte_port_version.map b/lib/librte_port/rte_port_version.map index f8abbc1..b7acb3c 100644 --- a/lib/librte_port/rte_port_version.map +++ b/lib/librte_port/rte_port_version.map @@ -16,3 +16,14 @@ DPDK_2.0 { local: *; }; + +DPDK_2.1 { + global: + + rte_port_ethdev_writer_nodrop_ops; + rte_port_ring_reader_ipv6_frag_ops; + rte_port_ring_writer_ipv6_ras_ops; + rte_port_ring_writer_nodrop_ops; + + local: *; +} DPDK_2.0; -- 1.7.9.5