From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id DC97E5A6B for ; Thu, 9 Jul 2015 10:16:13 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 09 Jul 2015 01:16:12 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,438,1432623600"; d="scan'208";a="725574316" Received: from unknown (HELO stargo) ([10.217.248.233]) by orsmga001.jf.intel.com with SMTP; 09 Jul 2015 01:16:11 -0700 Received: by stargo (sSMTP sendmail emulation); Thu, 09 Jul 2015 10:17:20 +0200 From: Maciej Gajdzica To: dev@dpdk.org Date: Thu, 9 Jul 2015 10:17:10 +0200 Message-Id: <1436429830-16239-2-git-send-email-maciejx.t.gajdzica@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1436429830-16239-1-git-send-email-maciejx.t.gajdzica@intel.com> References: <1436429830-16239-1-git-send-email-maciejx.t.gajdzica@intel.com> Subject: [dpdk-dev] [PATCH 2/2] pipeline: 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:14 -0000 Exported symbols for port in, port out and table stats. Signed-off-by: Maciej Gajdzica --- lib/librte_pipeline/rte_pipeline_version.map | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/librte_pipeline/rte_pipeline_version.map b/lib/librte_pipeline/rte_pipeline_version.map index e9b5bd6..2b43542 100644 --- a/lib/librte_pipeline/rte_pipeline_version.map +++ b/lib/librte_pipeline/rte_pipeline_version.map @@ -20,3 +20,13 @@ DPDK_2.0 { local: *; }; + +DPDK_2.1 { + global: + + rte_pipeline_table_stats_read; + rte_pipeline_port_in_stats_read; + rte_pipeline_port_out_stats_read; + + local: *; +} DPDK_2.0; -- 1.7.9.5