From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D12DDA0562; Wed, 14 Apr 2021 14:21:16 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A53F6161A58; Wed, 14 Apr 2021 14:21:12 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id E1185161A44 for ; Wed, 14 Apr 2021 14:21:10 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 13EC9Wx8027567; Wed, 14 Apr 2021 05:21:08 -0700 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=pfpt0220; bh=PRtjI+B4V+VDgMUoOJHQU1U5D8kJ2+bQ9nbsjUtnWmA=; b=RIG7OKMabT2b9RlPnzCWPIzN/B9MZHKbjyVKJl+0Ux89N8Gv2HxUCtclD3d5av5HoD90 VXvw9BCmAtQg1y17LV7ZBD4mDbr1UBePgUp46wnGkqeH2dP7Sf8/5QfGh3nYSdK96ohP vq+U00ju0QFXkSX+aRCRa23jQjFiK7VlLg2jV0FoXT8qXeeuUxQ4Qyusyj7X2y3W+IKo mllg5X6IFFuC7l26/wS+uDuaw+4ixZnn27y3nf4/hRy/V96cenaWwLf9CYGWqnc86BWh l+DieGFpLad4+auwV6EPASwzHqRsV6v2/82bR9lo2yOVExJodbEu820W7tXEXbmMggnl aw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com with ESMTP id 37wn4wsyx0-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 14 Apr 2021 05:21:07 -0700 Received: from SC-EXCH04.marvell.com (10.93.176.84) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Wed, 14 Apr 2021 05:21:06 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Wed, 14 Apr 2021 05:21:06 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Wed, 14 Apr 2021 05:21:06 -0700 Received: from localhost.localdomain (unknown [10.28.36.185]) by maili.marvell.com (Postfix) with ESMTP id 22E403F703F; Wed, 14 Apr 2021 05:21:00 -0700 (PDT) From: To: , , , , CC: , , , , , , , , , , , , , Akhil Goyal Date: Wed, 14 Apr 2021 17:50:36 +0530 Message-ID: <20210414122036.1262579-5-gakhil@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210414122036.1262579-1-gakhil@marvell.com> References: <561328fb16b18404a30a2401c6bfb3a7f373a0f4.1618309291.git.sthotton@marvell.com> <20210414122036.1262579-1-gakhil@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: wcPVbPbrTvGUKZ5wHvyQSK3PNKbpE1Ub X-Proofpoint-GUID: wcPVbPbrTvGUKZ5wHvyQSK3PNKbpE1Ub X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.761 definitions=2021-04-14_07:2021-04-14, 2021-04-14 signatures=0 Subject: [dpdk-dev] [PATCH v9 4/4] devtools: add exception for reserved fields X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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: Akhil Goyal Certain structures are added with reserved fields to address any future enhancements to retain ABI compatibility. However, ABI script will still report error as it is not aware of reserved fields. Hence, adding a generic exception for reserved fields. Signed-off-by: Akhil Goyal --- devtools/libabigail.abignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/devtools/libabigail.abignore b/devtools/libabigail.abignore index 46a5a6af5..a9d284f76 100644 --- a/devtools/libabigail.abignore +++ b/devtools/libabigail.abignore @@ -25,3 +25,7 @@ [suppress_type] name = rte_eventdev has_data_member_inserted_between = {offset_after(attached), end} + +; Ignore changes in reserved fields +[suppress_variable] + name_regexp = reserved -- 2.25.1