From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 87822A04FB; Tue, 17 Dec 2019 09:28:45 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 518BA34EF; Tue, 17 Dec 2019 09:28:45 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id F03362C52 for ; Tue, 17 Dec 2019 09:28:43 +0100 (CET) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id xBH8Lfja001066; Tue, 17 Dec 2019 00:28:43 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=eD/6m86o2vGZ7+l2u1+oWUjjoK6bKUW1fH2pfWTqQfc=; b=piEdh/gnMjjkeEKUcCE5F4kiJOT9STTchZbJsY1PQVBxgk2bKCnYt3JK8i4aFi9gBKDl TLFchDb+c5O9u65o9T8AnWhUCPMy4VXQYcKSww+WUSPj+LmH8lp9XWSNpmTlamlQdazj VG1H9W5SOjkfxkozyvRdmhE82L+or8mJHIfT5a0nDjXg74tC4XGszzMkP1bpsJRbvt6Q jtC25g7WxYZlxrV44i7TY8hEszBXeNsjC0kc5H+FGtLdAAF2SiWz28+KrRoEg/L2BwJD 11fF+Gx9dwOILAq8l1htoRf030mLv2el2t3+frXORPbKWD9TsWSywhy65ZqKyHDtfdd1 Yg== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0a-0016f401.pphosted.com with ESMTP id 2wxneas571-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 17 Dec 2019 00:28:43 -0800 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Tue, 17 Dec 2019 00:28:42 -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 00:28:41 -0800 Received: from pt-lxl0023.marvell.com (pt-lxl0023.marvell.com [10.5.213.12]) by maili.marvell.com (Postfix) with ESMTP id DBFAF3F703F; Tue, 17 Dec 2019 00:28:40 -0800 (PST) From: To: CC: , Liron Himi Date: Tue, 17 Dec 2019 12:43:47 +0200 Message-ID: <20191217104347.21955-1-lironh@marvell.com> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain 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] lib/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 Signed-off-by: Liron Himi --- 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..b0389e7d8 100644 --- a/lib/librte_cfgfile/rte_cfgfile_version.map +++ b/lib/librte_cfgfile/rte_cfgfile_version.map @@ -14,6 +14,7 @@ DPDK_20.0 { rte_cfgfile_save; rte_cfgfile_section_entries; rte_cfgfile_section_entries_by_index; + rte_cfgfile_section_num_entries_by_index; rte_cfgfile_section_num_entries; rte_cfgfile_sections; rte_cfgfile_set_entry; -- 2.23.0