From: Thomas Monjalon <thomas@monjalon.net> To: dev@dpdk.org Cc: jerinj@marvell.com, David Marchand <david.marchand@redhat.com>, Ray Kinsella <mdr@ashroe.eu>, Neil Horman <nhorman@tuxdriver.com>, Timothy McDaniel <timothy.mcdaniel@intel.com> Subject: [dpdk-dev] [PATCH] devtools: skip removed DLB driver in ABI check Date: Tue, 13 Apr 2021 10:45:25 +0200 Message-ID: <20210413084525.3057669-1-thomas@monjalon.net> (raw) In-Reply-To: <CAJFAV8x0-8pWr4mj86n=wzmX5jxS9C5D-jqEW+d8z3vcc+AABA@mail.gmail.com> The eventdev driver DLB was removed in DPDK 21.05, breaking the ABI check. The exception was agreed so we just need to skip this check. Note: complete removal of a driver cannot be ignored in devtools/libabigail.abignore, so the script must be patched. Fixes: 698fa829415d ("event/dlb: remove driver") Reported-by: David Marchand <david.marchand@redhat.com> Signed-off-by: Thomas Monjalon <thomas@monjalon.net> --- This should have been done as part of removing the driver. The CI is currently broken, so it should be merged today. --- devtools/check-abi.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/devtools/check-abi.sh b/devtools/check-abi.sh index 9835e346da..ca523eb94c 100755 --- a/devtools/check-abi.sh +++ b/devtools/check-abi.sh @@ -44,6 +44,10 @@ for dump in $(find $refdir -name "*.dump"); do echo "Skipped glue library $name." continue fi + if grep -qE "\<soname='librte_event_dlb\.so" $dump; then + echo "Skipped removed driver $name." + continue + fi dump2=$(find $newdir -name $name) if [ -z "$dump2" ] || [ ! -e "$dump2" ]; then echo "Error: cannot find $name in $newdir" >&2 -- 2.31.1
next prev parent reply other threads:[~2021-04-13 8:45 UTC|newest] Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-04-12 13:20 [dpdk-dev] [pull-request] dpdk-next-net-eventdev - 21.05 - PRE-RC1 Jerin Jacob Kollanukkaran 2021-04-12 13:27 ` McDaniel, Timothy 2021-04-12 13:40 ` Jerin Jacob 2021-04-12 22:12 ` Thomas Monjalon 2021-04-13 7:15 ` David Marchand 2021-04-13 7:31 ` Thomas Monjalon 2021-04-13 8:45 ` Thomas Monjalon [this message] 2021-04-13 9:15 ` [dpdk-dev] [PATCH] devtools: skip removed DLB driver in ABI check David Marchand 2021-04-13 9:32 ` Thomas Monjalon 2021-04-13 16:09 ` Kinsella, Ray 2021-04-13 16:44 ` Thomas Monjalon 2021-04-13 16:45 ` Kinsella, Ray 2021-04-13 8:54 ` [dpdk-dev] [pull-request] dpdk-next-net-eventdev - 21.05 - PRE-RC1 Jerin Jacob 2021-04-13 9:01 ` Thomas Monjalon 2021-04-13 9:07 ` David Marchand 2021-04-13 9:12 ` Thomas Monjalon 2021-04-13 9:14 ` David Marchand 2021-04-13 12:58 ` Aaron Conole
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=20210413084525.3057669-1-thomas@monjalon.net \ --to=thomas@monjalon.net \ --cc=david.marchand@redhat.com \ --cc=dev@dpdk.org \ --cc=jerinj@marvell.com \ --cc=mdr@ashroe.eu \ --cc=nhorman@tuxdriver.com \ --cc=timothy.mcdaniel@intel.com \ /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
DPDK patches and discussions This inbox may be cloned and mirrored by anyone: git clone --mirror https://inbox.dpdk.org/dev/0 dev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 dev dev/ https://inbox.dpdk.org/dev \ dev@dpdk.org public-inbox-index dev Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.dev AGPL code for this site: git clone https://public-inbox.org/public-inbox.git