From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D49C0C433DB for ; Mon, 1 Feb 2021 18:09:15 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 57CD764DAE for ; Mon, 1 Feb 2021 18:09:15 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 57CD764DAE Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 93D3440693; Mon, 1 Feb 2021 19:09:14 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 6CF6440687 for ; Mon, 1 Feb 2021 19:09:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1612202952; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=0t0pJKh5DK7vuyFecFh6DmHHJ5tcK2dkBy/vCI7PCa8=; b=Lt+uQIt2XdsyWrmIuFGBEupNKlpNteawbakw7eAi5WhAmY4PT0Q1ivbMLDpketgV18Ev37 Rhg45ixr2QYMM3URxLbOegDVdTdQLe3Jmq8mhC8dxWnxeBYk2zWaqXsHdYUTL4Aj2JfELZ SvPUkhCKugcG7zOJDDf2lZsEom9Prv4= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-163-QoAQR2-NNqyPzA5k5WJbuQ-1; Mon, 01 Feb 2021 13:09:09 -0500 X-MC-Unique: QoAQR2-NNqyPzA5k5WJbuQ-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 3FDBE81625; Mon, 1 Feb 2021 18:09:07 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.163]) by smtp.corp.redhat.com (Postfix) with ESMTP id BE33719CB6; Mon, 1 Feb 2021 18:08:57 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: ferruh.yigit@intel.com, dodji@redhat.com, Ray Kinsella , Neil Horman , Maxime Coquelin , Bruce Richardson , Steven Webster , Thomas Monjalon Date: Mon, 1 Feb 2021 19:08:52 +0100 Message-Id: <20210201180852.1624-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [dpdk-dev] [PATCH] devtools: remove ethdev ABI exception 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" Now that the ethernet driver dev_ops structure definition is not exported anymore, there is no need for an exception. abidiff will only consider structures defined in the installed headers (passed with --headers-dirX options). Fixes: df96fd0d7395 ("ethdev: make driver-only headers private") Signed-off-by: David Marchand --- devtools/libabigail.abignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/devtools/libabigail.abignore b/devtools/libabigail.abignore index ab5db240e7..6c0b38984e 100644 --- a/devtools/libabigail.abignore +++ b/devtools/libabigail.abignore @@ -13,8 +13,6 @@ name_regexp = _pmd_info$ ; Explicit ignore for driver-only ABI -[suppress_type] - name = eth_dev_ops [suppress_function] name_regexp = rte_vdev_(|un)register -- 2.23.0