From patchwork Tue Dec 17 11:52:03 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liron Himi X-Patchwork-Id: 63954 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 74EB4A04F8; Tue, 17 Dec 2019 10:37:04 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D8AA93576; Tue, 17 Dec 2019 10:37:02 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 30FC02C17; Tue, 17 Dec 2019 10:37:01 +0100 (CET) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id xBH9ax4r026107; Tue, 17 Dec 2019 01:37:00 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=/qzN1/GGcfqwDEE1RXuajwd4/0gLmgn8RP1nflmPUV4=; b=RqenqBCNQFKnKXh5fnz7O4h/To4DRIkSgLbxz4Mesx9HwXnLwwnQRvWRPNZystFpIrXj /9M0FV+A5aQq8dEqUTAeMqlTTHOo2Ce1tVSkvS9HSQ8ZihriW2hDwhnE4bllUItKQlwS qxeARhk6OEsWSr9jLy6BOMZkdYJdt+exxudV0bhRVjZui/UV7jUjP93DLFlHBTFprK4I s95eN7LI/fPU4/DrhCXV+HV1Ax8RC1PEKoLnfA9PsJ9B8VUoryh8VCHvIHVf00fU3UEv XgPqH4c3Z+OF6uqhP5ZXPQtJHZbgWsrLupRsddYtjvqWXzeN+P0xD8C98xOWhl0ftmPB FA== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0b-0016f401.pphosted.com with ESMTP id 2wxn0whf6e-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 17 Dec 2019 01:37:00 -0800 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Tue, 17 Dec 2019 01:36:58 -0800 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Tue, 17 Dec 2019 01:36:58 -0800 Received: from pt-lxl0023.marvell.com (pt-lxl0023.marvell.com [10.5.213.12]) by maili.marvell.com (Postfix) with ESMTP id 527DC3F7040; Tue, 17 Dec 2019 01:36:57 -0800 (PST) From: To: CC: , , Liron Himi Date: Tue, 17 Dec 2019 13:52:03 +0200 Message-ID: <20191217115203.22162-1-lironh@marvell.com> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20191217104347.21955-1-lironh@marvell.com> References: <20191217104347.21955-1-lironh@marvell.com> MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.95,18.0.572 definitions=2019-12-17_01:2019-12-16,2019-12-16 signatures=0 Subject: [dpdk-dev] [PATCH v2] cfgfile: update 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" From: Liron Himi rte_cfgfile_section_num_entries_by_index was missing from the map file. meson build failed when calling this function, due to linking a binary to cfgfile built as a shared library Fixes: 85ff364f3b ("build: align symbols with global ABI version") Signed-off-by: Liron Himi Acked-by: Cristian Dumitrescu --- v2: - update commit msg. - add 'Fixes' - follow alphabetical order lib/librte_cfgfile/rte_cfgfile_version.map | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_cfgfile/rte_cfgfile_version.map b/lib/librte_cfgfile/rte_cfgfile_version.map index 906eee96b..22c999fe1 100644 --- a/lib/librte_cfgfile/rte_cfgfile_version.map +++ b/lib/librte_cfgfile/rte_cfgfile_version.map @@ -15,6 +15,7 @@ DPDK_20.0 { rte_cfgfile_section_entries; rte_cfgfile_section_entries_by_index; rte_cfgfile_section_num_entries; + rte_cfgfile_section_num_entries_by_index; rte_cfgfile_sections; rte_cfgfile_set_entry;