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 4B9BAA0A0B; Mon, 1 Feb 2021 21:39:39 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CCDBC160654; Mon, 1 Feb 2021 21:39:38 +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 4491340693 for ; Mon, 1 Feb 2021 21:39:37 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1612211976; 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: in-reply-to:in-reply-to:references:references; bh=wLIw1gsagbnROuAHFOUDfaBSsVec5CJfeNvOJ0jVfIQ=; b=HsqMGONPzSSbAcrJL/JRQFHl6bnnViWxDk4SwjFwhKKkqcs/cqYjbp0aTDR3zP/ArGu5A9 iaXvyBfa53mWfczrhCP1QAyy/+AudJe9Meci5P4YaW3haYqhZ4H/N3lkheJdwCWX8ATBgH k8Xx4pypnQh+ub6E4c2OkEbC6NQ23bI= 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-5-mABHobKpMmWwhDqWnSa_0w-1; Mon, 01 Feb 2021 15:39:32 -0500 X-MC-Unique: mABHobKpMmWwhDqWnSa_0w-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id E250A8042B7; Mon, 1 Feb 2021 20:39:24 +0000 (UTC) Received: from [10.36.110.37] (unknown [10.36.110.37]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C02845D9DC; Mon, 1 Feb 2021 20:39:22 +0000 (UTC) To: David Marchand , dev@dpdk.org Cc: ferruh.yigit@intel.com, dodji@redhat.com, Ray Kinsella , Neil Horman , Bruce Richardson , Steven Webster , Thomas Monjalon References: <20210201180852.1624-1-david.marchand@redhat.com> From: Maxime Coquelin Message-ID: <7d275fd8-d168-7b88-451a-bbeb0d2fdc9e@redhat.com> Date: Mon, 1 Feb 2021 21:39:20 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.0 MIME-Version: 1.0 In-Reply-To: <20210201180852.1624-1-david.marchand@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [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" On 2/1/21 7:08 PM, David Marchand wrote: > 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 > > Acked-by: Maxime Coquelin