From patchwork Wed Oct 18 15:03:34 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 30545 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E0B4C1B229; Wed, 18 Oct 2017 17:04:55 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 3D2711B1A4 for ; Wed, 18 Oct 2017 17:04:17 +0200 (CEST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Oct 2017 08:04:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,397,1503385200"; d="scan'208";a="139673105" Received: from silpixa00382658.ir.intel.com ([10.237.223.29]) by orsmga004.jf.intel.com with ESMTP; 18 Oct 2017 08:04:15 -0700 From: Cristian Dumitrescu To: dev@dpdk.org Cc: thomas@monjalon.net Date: Wed, 18 Oct 2017 16:03:34 +0100 Message-Id: <1508339034-171115-18-git-send-email-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1508339034-171115-1-git-send-email-cristian.dumitrescu@intel.com> References: <1507634341-72277-2-git-send-email-cristian.dumitrescu@intel.com> <1508339034-171115-1-git-send-email-cristian.dumitrescu@intel.com> Subject: [dpdk-dev] [PATCH v3 17/18] librte_table: map file updates 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" Updated map file to current API. Several API items were removed, so not using inheritance. Signed-off-by: Cristian Dumitrescu --- lib/librte_table/rte_table_version.map | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) mode change 100644 => 100755 lib/librte_table/rte_table_version.map diff --git a/lib/librte_table/rte_table_version.map b/lib/librte_table/rte_table_version.map old mode 100644 new mode 100755 index e1eaa27..f03fc3f --- a/lib/librte_table/rte_table_version.map +++ b/lib/librte_table/rte_table_version.map @@ -28,7 +28,7 @@ DPDK_2.2 { rte_table_hash_key16_ext_dosig_ops; rte_table_hash_key16_lru_dosig_ops; -}; +} DPDK_2.0; DPDK_16.07 { global: @@ -36,3 +36,24 @@ DPDK_16.07 { rte_table_hash_cuckoo_dosig_ops; } DPDK_2.0; + +DPDK_17.11 { + global: + + rte_table_acl_ops; + rte_table_array_ops; + rte_table_hash_ext_ops; + rte_table_hash_key8_ext_ops; + rte_table_hash_key16_ext_ops; + rte_table_hash_key32_ext_ops; + rte_table_hash_lru_ops; + rte_table_hash_key8_lru_ops; + rte_table_hash_key16_lru_ops; + rte_table_hash_key32_lru_ops; + rte_table_hash_cuckoo_ops; + rte_table_lpm_ipv6_ops; + rte_table_lpm_ops; + rte_table_stub_ops; + + local: *; +};