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 D1DA2A04B8; Tue, 5 May 2020 13:21:05 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3C2521D598; Tue, 5 May 2020 13:21:05 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id B67C81D580 for ; Tue, 5 May 2020 13:21:03 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE2 (envelope-from ophirmu@mellanox.com) with ESMTPS (AES256-SHA encrypted); 5 May 2020 14:21:02 +0300 Received: from localhost.localdomain (pegasus05.mtr.labs.mlnx [10.210.16.100]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 045BL2EN026535; Tue, 5 May 2020 14:21:02 +0300 Received: from pegasus05.mtr.labs.mlnx (localhost [127.0.0.1]) by localhost.localdomain (8.14.7/8.14.7) with ESMTP id 045BL2xj020946; Tue, 5 May 2020 11:21:02 GMT Received: (from root@localhost) by pegasus05.mtr.labs.mlnx (8.14.7/8.14.7/Submit) id 045BL1jL020945; Tue, 5 May 2020 11:21:01 GMT From: Ophir Munk To: dev@dpdk.org Cc: Ophir Munk , Raslan Darawsheh , Matan Azrad , Neil Horman Date: Tue, 5 May 2020 11:20:55 +0000 Message-Id: <20200505112057.20901-1-ophirmu@mellanox.com> X-Mailer: git-send-email 2.8.4 Subject: [dpdk-dev] [PATCH v1 1/3] devtools: create internal ignore file for libabigail 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" Create file libabigail.internalignore where it is specified to ignore all symbols in library file librte_pmd_mlx.* during an ABI check. Signed-off-by: Ophir Munk --- devtools/check-abi.sh | 4 +++- devtools/libabigail.internalignore | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 devtools/libabigail.internalignore diff --git a/devtools/check-abi.sh b/devtools/check-abi.sh index dd9120e..3bad19a 100755 --- a/devtools/check-abi.sh +++ b/devtools/check-abi.sh @@ -10,7 +10,9 @@ fi refdir=$1 newdir=$2 warnonly=${3:-} -ABIDIFF_OPTIONS="--suppr $(dirname $0)/libabigail.abignore --no-added-syms" +ABIDIFF_OPTIONS="--suppr $(dirname $0))/libabigail.abignore" \ + " --suppr $(dirname $0))/libabigail.internalignore" \ + " --no-added-syms" if [ ! -d $refdir ]; then echo "Error: reference directory '$refdir' does not exist." diff --git a/devtools/libabigail.internalignore b/devtools/libabigail.internalignore new file mode 100644 index 0000000..55df5b1 --- /dev/null +++ b/devtools/libabigail.internalignore @@ -0,0 +1,4 @@ +; These functions were moved from stable to internal. +; This is a temporary exception till DPDK 20.11. +[suppress_file] + file_name_regexp = librte*mlx5* -- 2.8.4