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 0D762425D9; Mon, 18 Sep 2023 17:23:09 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8CC4B4025D; Mon, 18 Sep 2023 17:23:08 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id D5C0D4025C for ; Mon, 18 Sep 2023 17:23:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1695050586; 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=C/rLFU+hznVZ6TWF7PFZLxHMG67rDTWRaUXxykNtudA=; b=SSO+KiFnVkRsleVusRb7t9Vk4aNiWdWAdj1b5UAywvDfz4VV/qSv0ccHA8pe3S53PtE59g M69TA308/tw0+a7obHqV1c/9BR9/vdSBIN433HdFb4t2rOEFW3p4+gfZSpOjKdB+AjE6KY EkR9lZGCLWM42AIhl6kWev8AXYOJ2Qk= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-245-dFMRAm4qNUyZuYAvN8MlyQ-1; Mon, 18 Sep 2023 11:23:00 -0400 X-MC-Unique: dFMRAm4qNUyZuYAvN8MlyQ-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 915AF29AA2C9; Mon, 18 Sep 2023 15:22:59 +0000 (UTC) Received: from [10.39.208.35] (unknown [10.39.208.35]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4C2DB1054FC0; Mon, 18 Sep 2023 15:22:58 +0000 (UTC) Message-ID: <48047ac6-7edf-7bd4-b828-9654bb43bdac@redhat.com> Date: Mon, 18 Sep 2023 17:22:56 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.13.0 Subject: Re: [PATCH v2 5/5] devtools: ignore changes into bbdev experimental API To: Nicolas Chautru , dev@dpdk.org Cc: trix@redhat.com, hemant.agrawal@nxp.com, david.marchand@redhat.com, hernan.vargas@intel.com References: <20230615164901.40845-1-nicolas.chautru@intel.com> <20230615164901.40845-6-nicolas.chautru@intel.com> From: Maxime Coquelin In-Reply-To: <20230615164901.40845-6-nicolas.chautru@intel.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.3 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 On 6/15/23 18:49, Nicolas Chautru wrote: > Developpers are warned that the related fft experimental functions > do not preserve ABI, hence these can be waived. > > Signed-off-by: Nicolas Chautru > --- > devtools/libabigail.abignore | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/devtools/libabigail.abignore b/devtools/libabigail.abignore > index 7a93de3ba1..09b8f156b5 100644 > --- a/devtools/libabigail.abignore > +++ b/devtools/libabigail.abignore > @@ -30,7 +30,9 @@ > [suppress_type] > type_kind = enum > changed_enumerators = RTE_CRYPTO_ASYM_XFORM_ECPM, RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END > - > +; Ignore changes to bbdev FFT API which is experimental > +[suppress_type] > + name = rte_bbdev_fft_op > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > ; Temporary exceptions till next major ABI version ; > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; With Hemmant's typo fix suggestion: Reviewed-by: Maxime Coquelin