* [PATCH 21.11] build: suppress rte_crypto_asym_op abi check
@ 2022-03-16 11:45 Kevin Traynor
2022-03-16 16:08 ` Kevin Traynor
2022-03-16 16:14 ` David Marchand
0 siblings, 2 replies; 4+ messages in thread
From: Kevin Traynor @ 2022-03-16 11:45 UTC (permalink / raw)
To: stable; +Cc: bluca, Kevin Traynor, arkadiuszx.kusztal, David Marchand
Suppress of rte_crypto_asym_op was added in dpdk main branch
as part of
a678c5d36589 ("cryptodev: add DSA random number k")
That is not backported to 21.11 branch, but other commit
f092922c3674 ("cryptodev: fix RSA key type name")
also needs this suppression.
Add the suppression here.
Fixes: f092922c3674 ("cryptodev: fix RSA key type name")
Cc: arkadiuszx.kusztal@intel.com
Reported-by: https://lab.dpdk.org/results/dashboard/tarballs/19132
Reported-by: David Marchand <david.marchand@redhat.com>
Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
---
devtools/libabigail.abignore | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/devtools/libabigail.abignore b/devtools/libabigail.abignore
index 004fd53180..146a601ed3 100644
--- a/devtools/libabigail.abignore
+++ b/devtools/libabigail.abignore
@@ -13,4 +13,8 @@
name_regexp = _pmd_info$
+; Ignore changes to rte_crypto_asym_op, asymmetric crypto API is experimental
+[suppress_type]
+ name = rte_crypto_asym_op
+
; Ignore section attribute fixes in experimental regexdev library
[suppress_file]
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 21.11] build: suppress rte_crypto_asym_op abi check
2022-03-16 11:45 [PATCH 21.11] build: suppress rte_crypto_asym_op abi check Kevin Traynor
@ 2022-03-16 16:08 ` Kevin Traynor
2022-03-16 16:14 ` David Marchand
1 sibling, 0 replies; 4+ messages in thread
From: Kevin Traynor @ 2022-03-16 16:08 UTC (permalink / raw)
To: stable; +Cc: bluca, arkadiuszx.kusztal, David Marchand
On 16/03/2022 11:45, Kevin Traynor wrote:
> Suppress of rte_crypto_asym_op was added in dpdk main branch
> as part of
> a678c5d36589 ("cryptodev: add DSA random number k")
>
> That is not backported to 21.11 branch, but other commit
> f092922c3674 ("cryptodev: fix RSA key type name")
> also needs this suppression.
>
> Add the suppression here.
>
> Fixes: f092922c3674 ("cryptodev: fix RSA key type name")
> Cc: arkadiuszx.kusztal@intel.com
>
> Reported-by: https://lab.dpdk.org/results/dashboard/tarballs/19132
> Reported-by: David Marchand <david.marchand@redhat.com>
> Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
> ---
Will apply this by EOD if no objections so the nightly CI will pass.
> devtools/libabigail.abignore | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/devtools/libabigail.abignore b/devtools/libabigail.abignore
> index 004fd53180..146a601ed3 100644
> --- a/devtools/libabigail.abignore
> +++ b/devtools/libabigail.abignore
> @@ -13,4 +13,8 @@
> name_regexp = _pmd_info$
>
> +; Ignore changes to rte_crypto_asym_op, asymmetric crypto API is experimental
> +[suppress_type]
> + name = rte_crypto_asym_op
> +
> ; Ignore section attribute fixes in experimental regexdev library
> [suppress_file]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 21.11] build: suppress rte_crypto_asym_op abi check
2022-03-16 11:45 [PATCH 21.11] build: suppress rte_crypto_asym_op abi check Kevin Traynor
2022-03-16 16:08 ` Kevin Traynor
@ 2022-03-16 16:14 ` David Marchand
2022-03-16 16:51 ` Kevin Traynor
1 sibling, 1 reply; 4+ messages in thread
From: David Marchand @ 2022-03-16 16:14 UTC (permalink / raw)
To: Kevin Traynor; +Cc: dpdk stable, Luca Boccassi, Kusztal, ArkadiuszX
On Wed, Mar 16, 2022 at 12:45 PM Kevin Traynor <ktraynor@redhat.com> wrote:
>
> Suppress of rte_crypto_asym_op was added in dpdk main branch
> as part of
> a678c5d36589 ("cryptodev: add DSA random number k")
>
> That is not backported to 21.11 branch, but other commit
> f092922c3674 ("cryptodev: fix RSA key type name")
> also needs this suppression.
>
> Add the suppression here.
>
> Fixes: f092922c3674 ("cryptodev: fix RSA key type name")
> Cc: arkadiuszx.kusztal@intel.com
>
> Reported-by: https://lab.dpdk.org/results/dashboard/tarballs/19132
In dpdk history, the Reported-by tag has always been used with people
names, and not URI.
It is probably not an issue (except maybe for people doing stats on
those tags), but I would rather keep this URI as a comment in the
commitlog.
> Reported-by: David Marchand <david.marchand@redhat.com>
> Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
The change lgtm,
Reviewed-by: David Marchand <david.marchand@redhat.com>
--
David Marchand
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 21.11] build: suppress rte_crypto_asym_op abi check
2022-03-16 16:14 ` David Marchand
@ 2022-03-16 16:51 ` Kevin Traynor
0 siblings, 0 replies; 4+ messages in thread
From: Kevin Traynor @ 2022-03-16 16:51 UTC (permalink / raw)
To: David Marchand; +Cc: dpdk stable, Luca Boccassi, Kusztal, ArkadiuszX
On 16/03/2022 16:14, David Marchand wrote:
> On Wed, Mar 16, 2022 at 12:45 PM Kevin Traynor <ktraynor@redhat.com> wrote:
>>
>> Suppress of rte_crypto_asym_op was added in dpdk main branch
>> as part of
>> a678c5d36589 ("cryptodev: add DSA random number k")
>>
>> That is not backported to 21.11 branch, but other commit
>> f092922c3674 ("cryptodev: fix RSA key type name")
>> also needs this suppression.
>>
This caused a failure in UNH CI
https://lab.dpdk.org/results/dashboard/tarballs/19132
>> Add the suppression here.
>>
>> Fixes: f092922c3674 ("cryptodev: fix RSA key type name")
>> Cc: arkadiuszx.kusztal@intel.com
>>
>> Reported-by: https://lab.dpdk.org/results/dashboard/tarballs/19132
>
> In dpdk history, the Reported-by tag has always been used with people
> names, and not URI.
> It is probably not an issue (except maybe for people doing stats on
> those tags), but I would rather keep this URI as a comment in the
> commitlog.
>
ok, sure. I changed it to free form in the commit msg as above instead.
>> Reported-by: David Marchand <david.marchand@redhat.com>
>> Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
>
> The change lgtm,
>
> Reviewed-by: David Marchand <david.marchand@redhat.com>
Thanks. Applied with changes above.
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-03-16 16:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-16 11:45 [PATCH 21.11] build: suppress rte_crypto_asym_op abi check Kevin Traynor
2022-03-16 16:08 ` Kevin Traynor
2022-03-16 16:14 ` David Marchand
2022-03-16 16:51 ` Kevin Traynor
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).