DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Kinsella, Ray" <mdr@ashroe.eu>
To: Thomas Monjalon <thomas@monjalon.net>, dev@dpdk.org
Cc: david.marchand@redhat.com, nhorman@tuxdriver.com,
	kevin.laatz@intel.com, bruce.richardson@intel.com,
	Hemant Agrawal <hemant.agrawal@nxp.com>,
	Honnappa Nagarahalli <Honnappa.Nagarahalli@arm.com>,
	Luca Boccassi <luca.boccassi@gmail.com>,
	Dodji Seketeli <dodji@redhat.com>,
	Stephen Hemminger <stephen@networkplumber.org>,
	"Richardson, Bruce" <bruce.richardson@intel.com>,
	"Yigit, Ferruh" <ferruh.yigit@intel.com>,
	David Marchand <david.marchand@redhat.com>
Subject: Re: [dpdk-dev] [PATCH v4 1/2] version: 20.11-rc0
Date: Tue, 11 Aug 2020 14:47:53 +0100	[thread overview]
Message-ID: <44dcd28c-73ac-4252-1993-3fdd85942532@ashroe.eu> (raw)
In-Reply-To: <20200811112720.2103052-1-thomas@monjalon.net>

Hi Thomas,

On 11/08/2020 12:27, Thomas Monjalon wrote:
> Start a new release cycle with empty release notes.
> 
> The ABI version becomes 21.0.
> The ABI major is back to normal, having only one number (21 vs 20.0).
> The map files are updated to the new ABI major number (21).
> The ABI exceptions specific to previous major version are dropped.
> Travis ABI check is disabled because compatibility is not preserved.
> 
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> ---
> v4: add -rc0 and remove temporary ABI exceptions
> v3: add minor number to ABI_VERSION and remove workaround in scripts
> v2: bump major ABI number (including .map changes)
> ---
>  .travis.yml                                   |  26 ----
>  ABI_VERSION                                   |   2 +-
>  VERSION                                       |   2 +-
>  config/meson.build                            |   5 +-
>  devtools/libabigail.abignore                  |  60 --------

[SNIP]

> diff --git a/devtools/libabigail.abignore b/devtools/libabigail.abignore
> index 9fea822f36..2827d5ff7e 100644
> --- a/devtools/libabigail.abignore
> +++ b/devtools/libabigail.abignore
> @@ -8,12 +8,6 @@
>  [suppress_variable]
>          symbol_version = INTERNAL
>  
> -; Ignore ABI 20.0.1 replaced with ABI 21
> -[suppress_function]
> -        symbol_version = DPDK_20.0.1
> -[suppress_variable]
> -        symbol_version = DPDK_20.0.1
> -
>  ; Explicit ignore for driver-only ABI
>  [suppress_type]
>          name = rte_cryptodev_ops


I think we might be safer doing a complete reset of libabigail.ignore.
We should leave only the suppressions for internal and experimental. 

My concern is that if we have suppressions that live in there forever,
it will becomes stale, and eventually we will end up suppressing things we don't intend.

So yes, if we strip out some of these - especially the enumeration suppressions,
We will end up having to suppress them again as we extend/modify the enumerations etc,
but for me that preferable to the risk of unintended supressions. 

What do others think?


> @@ -56,57 +50,3 @@
>  [suppress_type]
>          name = rte_mbuf_ext_shared_info
>          has_data_member_inserted_between = {offset_of(refcnt_atomic), offset_of(refcnt_atomic)}
> -
> -;;;;;;;;;;;;;;;;;;;;;;
> -; Temporary exceptions till DPDK 20.11
> -;;;;;;;;;;;;;;;;;;;;;;
> -; Ignore moving OCTEONTX2 stable functions to INTERNAL
> -[suppress_file]
> -	file_name_regexp = ^librte_common_octeontx2\.
> -[suppress_file]
> -	file_name_regexp = ^librte_mempool_octeontx2\.
> -; Ignore moving mlx5 stable functions to INTERNAL
> -[suppress_file]
> -	file_name_regexp = ^librte_common_mlx5\.
> -; Ignore moving DPAAx stable functions to INTERNAL
> -[suppress_file]
> -        file_name_regexp = ^librte_common_dpaax\.
> -[suppress_file]
> -        file_name_regexp = ^librte_bus_fslmc\.
> -[suppress_file]
> -        file_name_regexp = ^librte_bus_dpaa\.
> -[suppress_variable]
> -        name = rte_dpaa_bpid_info
> -[suppress_variable]
> -        name = rte_dpaa_memsegs
> -[suppress_variable]
> -        name = rte_dpaa2_bpid_info
> -[suppress_function]
> -        name = rte_dpaa2_mbuf_alloc_bulk
> -[suppress_function]
> -        name_regexp = ^dpaa2?_.*tach$
> -; Ignore soname changes for experimental libraries
> -[suppress_file]
> -	file_name_regexp = ^librte_bbdev\.
> -[suppress_file]
> -	file_name_regexp = ^librte_bpf\.
> -[suppress_file]
> -	file_name_regexp = ^librte_compressdev\.
> -[suppress_file]
> -	file_name_regexp = ^librte_fib\.
> -[suppress_file]
> -	file_name_regexp = ^librte_flow_classify\.
> -[suppress_file]
> -	file_name_regexp = ^librte_graph\.
> -[suppress_file]
> -	file_name_regexp = ^librte_ipsec\.
> -[suppress_file]
> -	file_name_regexp = ^librte_node\.
> -[suppress_file]
> -	file_name_regexp = ^librte_rcu\.
> -[suppress_file]
> -	file_name_regexp = ^librte_rib\.
> -[suppress_file]
> -	file_name_regexp = ^librte_telemetry\.
> -[suppress_file]
> -	file_name_regexp = ^librte_stack\.
[SNIP]

  parent reply	other threads:[~2020-08-11 13:48 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-10 15:15 [dpdk-dev] [PATCH] " Thomas Monjalon
2020-08-11  9:31 ` [dpdk-dev] [PATCH v2] " Thomas Monjalon
2020-08-11  9:58 ` [dpdk-dev] [PATCH v3 1/2] " Thomas Monjalon
2020-08-11  9:58   ` [dpdk-dev] [PATCH v3 2/2] devtools: fix ABI update in map files Thomas Monjalon
2020-08-11 11:27 ` [dpdk-dev] [PATCH v4 1/2] version: 20.11-rc0 Thomas Monjalon
2020-08-11 11:27   ` [dpdk-dev] [PATCH v4 2/2] devtools: fix ABI update in map files Thomas Monjalon
2020-08-11 13:47   ` Kinsella, Ray [this message]
2020-08-11 14:05     ` [dpdk-dev] [PATCH v4 1/2] version: 20.11-rc0 Thomas Monjalon
2020-08-11 14:03 ` [dpdk-dev] [PATCH v5 " Thomas Monjalon
2020-08-11 14:03   ` [dpdk-dev] [PATCH v5 2/2] devtools: fix ABI update in map files Thomas Monjalon
2020-08-12  6:57     ` Kinsella, Ray
2020-08-11 16:18   ` [dpdk-dev] [PATCH v5 1/2] version: 20.11-rc0 Kinsella, Ray
2020-08-12  9:02     ` Kinsella, Ray
2020-08-12  8:58   ` Kinsella, Ray
2020-08-12  9:33     ` Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=44dcd28c-73ac-4252-1993-3fdd85942532@ashroe.eu \
    --to=mdr@ashroe.eu \
    --cc=Honnappa.Nagarahalli@arm.com \
    --cc=bruce.richardson@intel.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=dodji@redhat.com \
    --cc=ferruh.yigit@intel.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=kevin.laatz@intel.com \
    --cc=luca.boccassi@gmail.com \
    --cc=nhorman@tuxdriver.com \
    --cc=stephen@networkplumber.org \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).