DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ferruh Yigit <ferruh.yigit@intel.com>
To: David Marchand <david.marchand@redhat.com>, dev@dpdk.org
Cc: thomas@monjalon.net, dodji@redhat.com
Subject: Re: [dpdk-dev] [PATCH] devtools: skip experimental libraries in ABI check
Date: Fri, 21 Feb 2020 16:13:20 +0000	[thread overview]
Message-ID: <b899a817-f49e-0218-051c-892c7258c013@intel.com> (raw)
In-Reply-To: <20200221161005.18557-1-david.marchand@redhat.com>

On 2/21/2020 4:10 PM, David Marchand wrote:
> We don't provide ABI compatibility for experimental libraries.
> Skip those libraries by catching a soname containing a version starting
> with '0.'.

I am not familiar with the script and how libabigail works, but +1 to the idea.

> 
> Align the special case for the glue libraries by using the soname too.
> Once libabigail has support for it, we will have a single type of rule.
> 
> Fixes: 777014e56d07 ("devtools: add ABI checks")
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
>  devtools/check-abi.sh | 9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/devtools/check-abi.sh b/devtools/check-abi.sh
> index 0b4d1a37e..dd9120e69 100755
> --- a/devtools/check-abi.sh
> +++ b/devtools/check-abi.sh
> @@ -40,8 +40,13 @@ for dump in $(find $refdir -name "*.dump"); do
>  	# skip glue drivers, example librte_pmd_mlx5_glue.dump
>  	# We can't rely on a suppression rule for now:
>  	# https://sourceware.org/bugzilla/show_bug.cgi?id=25480
> -	if [ "$name" != "${name%%_glue.dump}" ]; then
> -		echo "Skipping ${dump}..."
> +	if grep -qE "\<soname='[^']*_glue\.so\.[^']*'" $dump; then
> +		echo "Skipped glue library $name."
> +		continue
> +	fi
> +	# skip experimental libraries, with a sover starting with 0.
> +	if grep -qE "\<soname='[^']*\.so\.0\.[^']*'" $dump; then
> +		echo "Skipped experimental library $name."
>  		continue
>  	fi
>  	dump2=$(find $newdir -name $name)
> 


  reply	other threads:[~2020-02-21 16:13 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-21 16:10 David Marchand
2020-02-21 16:13 ` Ferruh Yigit [this message]
2020-02-21 16:30   ` Thomas Monjalon
2020-02-21 16:40     ` David Marchand

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=b899a817-f49e-0218-051c-892c7258c013@intel.com \
    --to=ferruh.yigit@intel.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=dodji@redhat.com \
    --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).