On Wed, May 07, 2025 at 01:03:06PM +0200, Thorsten Leemhuis wrote:
>
> """
> ld: warning: discarding dynamic section .glink
> ld: warning: discarding dynamic section .plt
> ld: linkage table error against `poly1305_emit_arch'
> ld: stubs don't match calculated size
> ld: can not build stubs: bad value
> ld: lib/crypto/poly1305.o: in function `poly1305_final':
> /builddir/build/BUILD/kernel-6.15.0-build/kernel-next-20250507/linux-6.15.0-0.0.next.20250507.443.vanilla.fc43.ppc64le/lib/crypto/poly1305.c:65:(.text+0x2dc): undefined reference to `poly1305_emit_arch'
> ld: /builddir/build/BUILD/kernel-6.15.0-build/kernel-next-20250507/linux-6.15.0-0.0.next.20250507.443.vanilla.fc43.ppc64le/lib/crypto/poly1305.c:65:(.text+0x378): undefined reference to `poly1305_emit_arch'
> make[2]: *** [scripts/Makefile.vmlinux:91: vmlinux] Error 1
> make[1]: *** [/builddir/build/BUILD/kernel-6.15.0-build/kernel-next-20250507/linux-6.15.0-0.0.next.20250507.443.vanilla.fc43.ppc64le/Makefile:1250: vmlinux] Error 2
> """
Oops, the powerpc patch was missing the assembly part:
---8<---
Rename poly1305_emit_64 to poly1305_emit_arch to conform with
the expectation of the poly1305 library.
Reported-by: Thorsten Leemhuis <linux@leemhuis.info>
Fixes: 14d31979145d ("crypto: powerpc/poly1305 - Add block-only interface")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/arch/powerpc/lib/crypto/poly1305-p10-glue.c b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
index 16c2a8316696..7cea0ebcc6bc 100644
--- a/arch/powerpc/lib/crypto/poly1305-p10-glue.c
+++ b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
@@ -17,6 +17,7 @@ asmlinkage void poly1305_64s(struct poly1305_block_state *state, const u8 *m, u3
asmlinkage void poly1305_emit_arch(const struct poly1305_state *state,
u8 digest[POLY1305_DIGEST_SIZE],
const u32 nonce[4]);
+EXPORT_SYMBOL_GPL(poly1305_emit_arch);
static __ro_after_init DEFINE_STATIC_KEY_FALSE(have_p10);
diff --git a/arch/powerpc/lib/crypto/poly1305-p10le_64.S b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
index a3c1987f1ecd..2ba2911b8038 100644
--- a/arch/powerpc/lib/crypto/poly1305-p10le_64.S
+++ b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
@@ -1030,7 +1030,7 @@ SYM_FUNC_END(poly1305_64s)
# Input: r3 = h, r4 = s, r5 = mac
# mac = h + s
#
-SYM_FUNC_START(poly1305_emit_64)
+SYM_FUNC_START(poly1305_emit_arch)
ld 10, 0(3)
ld 11, 8(3)
ld 12, 16(3)
@@ -1060,7 +1060,7 @@ Skip_h64:
std 10, 0(5)
std 11, 8(5)
blr
-SYM_FUNC_END(poly1305_emit_64)
+SYM_FUNC_END(poly1305_emit_arch)
SYM_DATA_START_LOCAL(RMASK)
.align 5
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
Hello Herbert,
On 07/05/25 5:06 pm, Herbert Xu wrote:
> On Wed, May 07, 2025 at 01:03:06PM +0200, Thorsten Leemhuis wrote:
>> """
>> ld: warning: discarding dynamic section .glink
>> ld: warning: discarding dynamic section .plt
>> ld: linkage table error against `poly1305_emit_arch'
>> ld: stubs don't match calculated size
>> ld: can not build stubs: bad value
>> ld: lib/crypto/poly1305.o: in function `poly1305_final':
>> /builddir/build/BUILD/kernel-6.15.0-build/kernel-next-20250507/linux-6.15.0-0.0.next.20250507.443.vanilla.fc43.ppc64le/lib/crypto/poly1305.c:65:(.text+0x2dc): undefined reference to `poly1305_emit_arch'
>> ld: /builddir/build/BUILD/kernel-6.15.0-build/kernel-next-20250507/linux-6.15.0-0.0.next.20250507.443.vanilla.fc43.ppc64le/lib/crypto/poly1305.c:65:(.text+0x378): undefined reference to `poly1305_emit_arch'
>> make[2]: *** [scripts/Makefile.vmlinux:91: vmlinux] Error 1
>> make[1]: *** [/builddir/build/BUILD/kernel-6.15.0-build/kernel-next-20250507/linux-6.15.0-0.0.next.20250507.443.vanilla.fc43.ppc64le/Makefile:1250: vmlinux] Error 2
>> """
> Oops, the powerpc patch was missing the assembly part:
>
> ---8<---
> Rename poly1305_emit_64 to poly1305_emit_arch to conform with
> the expectation of the poly1305 library.
>
> Reported-by: Thorsten Leemhuis <linux@leemhuis.info>
> Fixes: 14d31979145d ("crypto: powerpc/poly1305 - Add block-only interface")
> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
>
> diff --git a/arch/powerpc/lib/crypto/poly1305-p10-glue.c b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
> index 16c2a8316696..7cea0ebcc6bc 100644
> --- a/arch/powerpc/lib/crypto/poly1305-p10-glue.c
> +++ b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
> @@ -17,6 +17,7 @@ asmlinkage void poly1305_64s(struct poly1305_block_state *state, const u8 *m, u3
> asmlinkage void poly1305_emit_arch(const struct poly1305_state *state,
> u8 digest[POLY1305_DIGEST_SIZE],
> const u32 nonce[4]);
> +EXPORT_SYMBOL_GPL(poly1305_emit_arch);
>
> static __ro_after_init DEFINE_STATIC_KEY_FALSE(have_p10);
>
> diff --git a/arch/powerpc/lib/crypto/poly1305-p10le_64.S b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
> index a3c1987f1ecd..2ba2911b8038 100644
> --- a/arch/powerpc/lib/crypto/poly1305-p10le_64.S
> +++ b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
> @@ -1030,7 +1030,7 @@ SYM_FUNC_END(poly1305_64s)
> # Input: r3 = h, r4 = s, r5 = mac
> # mac = h + s
> #
> -SYM_FUNC_START(poly1305_emit_64)
> +SYM_FUNC_START(poly1305_emit_arch)
> ld 10, 0(3)
> ld 11, 8(3)
> ld 12, 16(3)
> @@ -1060,7 +1060,7 @@ Skip_h64:
> std 10, 0(5)
> std 11, 8(5)
> blr
> -SYM_FUNC_END(poly1305_emit_64)
> +SYM_FUNC_END(poly1305_emit_arch)
>
> SYM_DATA_START_LOCAL(RMASK)
> .align 5
I tested this patch by applying on next-20250507, though it fixes the
build issue, it has introduced a boot warning.
Warning:
[ 1.644487] ------------[ cut here ]------------
[ 1.644490] WARNING: CPU: 3 PID: 1 at
lib/crypto/chacha20poly1305.c:359 chacha20poly1305_init+0x28/0x50
[ 1.644501] Modules linked in:
[ 1.644507] CPU: 3 UID: 0 PID: 1 Comm: swapper/0 Not tainted
6.15.0-rc5-next-20250507-00002-g8be5012869c6-dirty #1 VOLUNTARY
[ 1.644515] Hardware name: IBM,8375-42A POWER9 (architected) 0x4e0202
0xf000005 of:IBM,FW950.80 (VL950_131) hv:phyp pSeries
[ 1.644520] NIP: c0000000020646c0 LR: c0000000020646b4 CTR:
00000000007088ec
[ 1.644525] REGS: c000000a03757960 TRAP: 0700 Not tainted
(6.15.0-rc5-next-20250507-00002-g8be5012869c6-dirty)
[ 1.644530] MSR: 8000000002029033 <SF,VEC,EE,ME,IR,DR,RI,LE> CR:
28000282 XER: 0000000f
[ 1.644544] CFAR: c000000002064ec8 IRQMASK: 0
[ 1.644544] GPR00: c0000000020646b4 c000000a03757c00 c000000001dc8100
0000000000000001
[ 1.644544] GPR04: 0000000000000961 c0000009e94dd5c0 c000000a0d348000
0000000000000960
[ 1.644544] GPR08: 00000009e7270000 0000000000000000 0000000000000000
c0000013fb400000
[ 1.644544] GPR12: c0000013fc9fffa8 c000000017ffcb00 c0000000000113d8
0000000000000000
[ 1.644544] GPR16: 0000000000000000 0000000000000000 0000000000000000
0000000000000000
[ 1.644544] GPR20: 0000000000000000 0000000000000000 0000000000000000
0000000000000000
[ 1.644544] GPR24: 0000000000000000 0000000000000000 c0000000020b19a8
0000000000000006
[ 1.644544] GPR28: 0000000000000000 c0000000020b1960 c000000a05490a00
c000000002064698
[ 1.644600] NIP [c0000000020646c0] chacha20poly1305_init+0x28/0x50
[ 1.644607] LR [c0000000020646b4] chacha20poly1305_init+0x1c/0x50
[ 1.644612] Call Trace:
[ 1.644615] [c000000a03757c00] [c0000000020646b4]
chacha20poly1305_init+0x1c/0x50 (unreliable)
[ 1.644624] [c000000a03757c20] [c000000000010d1c]
do_one_initcall+0x5c/0x37c
[ 1.644631] [c000000a03757d00] [c000000002005394]
do_initcalls+0x144/0x18c
[ 1.644638] [c000000a03757d90] [c000000002005688]
kernel_init_freeable+0x214/0x288
[ 1.644645] [c000000a03757df0] [c0000000000113fc] kernel_init+0x2c/0x1b0
[ 1.644651] [c000000a03757e50] [c00000000000df5c]
ret_from_kernel_user_thread+0x14/0x1c
[ 1.644657] ---- interrupt: 0 at 0x0
[ 1.644661] Code: 7c0803a6 4e800020 3c4cffd6 38423a68 60000000
7c0802a6 f8010010 f821ffe1 4800028d 60000000 68630001 5463063e
<0b030000> 2c030000 4082000c 38600000
[ 1.644681] ---[ end trace 0000000000000000 ]---
If you are planning to fix this in seperate patch, please add below tag.
Reported-by: Venkat Rao Bagalkote <venkat88@linux.ibm.com>
Regards,
Venkat.
On Thu, May 08, 2025 at 02:46:06PM +0530, Venkat Rao Bagalkote wrote: > > I tested this patch by applying on next-20250507, though it fixes the build > issue, it has introduced a boot warning. What was the last next tree that's known to be good on this machine? Thanks, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On 08/05/25 5:09 pm, Herbert Xu wrote: > On Thu, May 08, 2025 at 02:46:06PM +0530, Venkat Rao Bagalkote wrote: >> I tested this patch by applying on next-20250507, though it fixes the build >> issue, it has introduced a boot warning. > What was the last next tree that's known to be good on this machine? > > Thanks, Yes, its was on the same machine, next-20250506 passed. Also, modporbe works fine. ]# modprobe chacha20poly1305 ]# Regards, Venkat.
On Thu, May 08, 2025 at 05:27:13PM +0530, Venkat Rao Bagalkote wrote: > > Yes, its was on the same machine, next-20250506 passed. Great! > > > Also, modporbe works fine. > > > ]# modprobe chacha20poly1305 > ]# Did you check dmesg? Self-test failures will only show up there. Thanks, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Thu, May 08, 2025 at 05:27:13PM +0530, Venkat Rao Bagalkote wrote:
>
> Yes, its was on the same machine, next-20250506 passed.
OK I found one bug in my patches, I incorrectly removed the simd
tests for powerpc. Does this patch help?
---8<---
Restore the crypto_simd_usable test as powerpc needs it.
Fixes: 14d31979145d ("crypto: powerpc/poly1305 - Add block-only interface")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/arch/powerpc/lib/crypto/poly1305-p10-glue.c b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
index 7cea0ebcc6bc..154eced0bf9e 100644
--- a/arch/powerpc/lib/crypto/poly1305-p10-glue.c
+++ b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
@@ -6,6 +6,7 @@
*/
#include <asm/switch_to.h>
#include <crypto/internal/poly1305.h>
+#include <crypto/internal/simd.h>
#include <linux/cpufeature.h>
#include <linux/jump_label.h>
#include <linux/kernel.h>
@@ -51,7 +52,7 @@ void poly1305_blocks_arch(struct poly1305_block_state *state, const u8 *src,
if (!static_key_enabled(&have_p10))
return poly1305_blocks_generic(state, src, len, padbit);
vsx_begin();
- if (len >= POLY1305_BLOCK_SIZE * 4) {
+ if (crypto_simd_usable() && len >= POLY1305_BLOCK_SIZE * 4) {
poly1305_p10le_4blocks(state, src, len);
src += len - (len % (POLY1305_BLOCK_SIZE * 4));
len %= POLY1305_BLOCK_SIZE * 4;
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Thu, May 08, 2025 at 08:23:17PM +0800, Herbert Xu wrote:
>
> @@ -51,7 +52,7 @@ void poly1305_blocks_arch(struct poly1305_block_state *state, const u8 *src,
> if (!static_key_enabled(&have_p10))
> return poly1305_blocks_generic(state, src, len, padbit);
> vsx_begin();
> - if (len >= POLY1305_BLOCK_SIZE * 4) {
> + if (crypto_simd_usable() && len >= POLY1305_BLOCK_SIZE * 4) {
This patch is obviously broken. However, I think this code was
always broken in the SIMD-fallback case. AFAICS the fallback
uses vector instructions so it can't be used in softirqs either.
A proper fallback would have to convert the state to the format
used by the generic poly1305 implementation, call that, and then
convert it back.
Of course it would be a lot easier if ppc could make VSX usable
in softirq context.
Cheers,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On 08/05/25 5:53 pm, Herbert Xu wrote:
> On Thu, May 08, 2025 at 05:27:13PM +0530, Venkat Rao Bagalkote wrote:
>> Yes, its was on the same machine, next-20250506 passed.
> OK I found one bug in my patches, I incorrectly removed the simd
> tests for powerpc. Does this patch help?
>
> ---8<---
> Restore the crypto_simd_usable test as powerpc needs it.
>
> Fixes: 14d31979145d ("crypto: powerpc/poly1305 - Add block-only interface")
> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
>
> diff --git a/arch/powerpc/lib/crypto/poly1305-p10-glue.c b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
> index 7cea0ebcc6bc..154eced0bf9e 100644
> --- a/arch/powerpc/lib/crypto/poly1305-p10-glue.c
> +++ b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
> @@ -6,6 +6,7 @@
> */
> #include <asm/switch_to.h>
> #include <crypto/internal/poly1305.h>
> +#include <crypto/internal/simd.h>
> #include <linux/cpufeature.h>
> #include <linux/jump_label.h>
> #include <linux/kernel.h>
> @@ -51,7 +52,7 @@ void poly1305_blocks_arch(struct poly1305_block_state *state, const u8 *src,
> if (!static_key_enabled(&have_p10))
> return poly1305_blocks_generic(state, src, len, padbit);
> vsx_begin();
> - if (len >= POLY1305_BLOCK_SIZE * 4) {
> + if (crypto_simd_usable() && len >= POLY1305_BLOCK_SIZE * 4) {
> poly1305_p10le_4blocks(state, src, len);
> src += len - (len % (POLY1305_BLOCK_SIZE * 4));
> len %= POLY1305_BLOCK_SIZE * 4;
Unfortunately, above patch dosent fix the boot warning.
Regards,
Venkat.
On Thu, May 08, 2025 at 08:35:48PM +0530, Venkat Rao Bagalkote wrote:
>
> Unfortunately, above patch dosent fix the boot warning.
This works for me:
---8<---
Swap the order of the arguments in poly1305_emit_arch to match
the prototype.
Fixes: 14d31979145d ("crypto: powerpc/poly1305 - Add block-only interface")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/arch/powerpc/lib/crypto/poly1305-p10le_64.S b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
index 2ba2911b8038..5b368baf96d2 100644
--- a/arch/powerpc/lib/crypto/poly1305-p10le_64.S
+++ b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
@@ -1027,7 +1027,7 @@ Out_no_poly1305_64:
SYM_FUNC_END(poly1305_64s)
#
-# Input: r3 = h, r4 = s, r5 = mac
+# Input: r3 = h, r4 = mac, r5 = s
# mac = h + s
#
SYM_FUNC_START(poly1305_emit_arch)
@@ -1051,14 +1051,14 @@ SYM_FUNC_START(poly1305_emit_arch)
mr 12, 8
Skip_h64:
- ld 6, 0(4)
- ld 7, 8(4)
+ ld 6, 0(5)
+ ld 7, 8(5)
addc 10, 10, 6
adde 11, 11, 7
addze 12, 12
- std 10, 0(5)
- std 11, 8(5)
+ std 10, 0(4)
+ std 11, 8(4)
blr
SYM_FUNC_END(poly1305_emit_arch)
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Fri, May 09, 2025 at 08:29:00PM +0800, Herbert Xu wrote:
> On Thu, May 08, 2025 at 08:35:48PM +0530, Venkat Rao Bagalkote wrote:
> >
> > Unfortunately, above patch dosent fix the boot warning.
>
> This works for me:
>
> ---8<---
> Swap the order of the arguments in poly1305_emit_arch to match
> the prototype.
>
> Fixes: 14d31979145d ("crypto: powerpc/poly1305 - Add block-only interface")
> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This fixes "-cpu Power10", but older CPUs (e.g. "-cpu POWER9") are still
failing.
- Eric
On Fri, May 09, 2025 at 09:44:50PM -0700, Eric Biggers wrote:
>
> This fixes "-cpu Power10", but older CPUs (e.g. "-cpu POWER9") are still
> failing.
You're right. I'll revert this and apply the following patch
instead.
BTW this thing is still hopelessly broken if it's called from
softirq context because there is no SIMD fallback. Yes I removed
the SIMD check but it was already broken before that as it simply
switched from the 4-block version to the 1-block version if SIMD
is not available rather than actually doing something that is
safe in softirq context.
Perhaps we should just remove this altogether until it's fixed.
---8<---
Add poly1305_emit_arch with fallback instead of calling assembly
directly. This is because the state format differs between p10
and that of the generic implementation.
Reported-by: Venkat Rao Bagalkote <venkat88@linux.ibm.com>
Reported-by: Eric Biggers <ebiggers@google.com>
Fixes: 14d31979145d ("crypto: powerpc/poly1305 - Add block-only interface")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/arch/powerpc/lib/crypto/poly1305-p10-glue.c b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
index 7cea0ebcc6bc..3f1664a724b6 100644
--- a/arch/powerpc/lib/crypto/poly1305-p10-glue.c
+++ b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
@@ -14,10 +14,7 @@
asmlinkage void poly1305_p10le_4blocks(struct poly1305_block_state *state, const u8 *m, u32 mlen);
asmlinkage void poly1305_64s(struct poly1305_block_state *state, const u8 *m, u32 mlen, int highbit);
-asmlinkage void poly1305_emit_arch(const struct poly1305_state *state,
- u8 digest[POLY1305_DIGEST_SIZE],
- const u32 nonce[4]);
-EXPORT_SYMBOL_GPL(poly1305_emit_arch);
+asmlinkage void poly1305_emit_64(const struct poly1305_state *state, const u32 nonce[4], u8 digest[POLY1305_DIGEST_SIZE]);
static __ro_after_init DEFINE_STATIC_KEY_FALSE(have_p10);
@@ -65,6 +62,16 @@ void poly1305_blocks_arch(struct poly1305_block_state *state, const u8 *src,
}
EXPORT_SYMBOL_GPL(poly1305_blocks_arch);
+void poly1305_emit_arch(const struct poly1305_state *state,
+ u8 digest[POLY1305_DIGEST_SIZE],
+ const u32 nonce[4])
+{
+ if (!static_key_enabled(&have_p10))
+ return poly1305_emit_generic(state, digest, nonce);
+ poly1305_emit_64(state, nonce, digest);
+}
+EXPORT_SYMBOL_GPL(poly1305_emit_arch);
+
bool poly1305_is_arch_optimized(void)
{
return static_key_enabled(&have_p10);
diff --git a/arch/powerpc/lib/crypto/poly1305-p10le_64.S b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
index 2ba2911b8038..a3c1987f1ecd 100644
--- a/arch/powerpc/lib/crypto/poly1305-p10le_64.S
+++ b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
@@ -1030,7 +1030,7 @@ SYM_FUNC_END(poly1305_64s)
# Input: r3 = h, r4 = s, r5 = mac
# mac = h + s
#
-SYM_FUNC_START(poly1305_emit_arch)
+SYM_FUNC_START(poly1305_emit_64)
ld 10, 0(3)
ld 11, 8(3)
ld 12, 16(3)
@@ -1060,7 +1060,7 @@ Skip_h64:
std 10, 0(5)
std 11, 8(5)
blr
-SYM_FUNC_END(poly1305_emit_arch)
+SYM_FUNC_END(poly1305_emit_64)
SYM_DATA_START_LOCAL(RMASK)
.align 5
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On 10/05/25 10:40 am, Herbert Xu wrote:
> On Fri, May 09, 2025 at 09:44:50PM -0700, Eric Biggers wrote:
>> This fixes "-cpu Power10", but older CPUs (e.g. "-cpu POWER9") are still
>> failing.
> You're right. I'll revert this and apply the following patch
> instead.
>
> BTW this thing is still hopelessly broken if it's called from
> softirq context because there is no SIMD fallback. Yes I removed
> the SIMD check but it was already broken before that as it simply
> switched from the 4-block version to the 1-block version if SIMD
> is not available rather than actually doing something that is
> safe in softirq context.
>
> Perhaps we should just remove this altogether until it's fixed.
>
> ---8<---
> Add poly1305_emit_arch with fallback instead of calling assembly
> directly. This is because the state format differs between p10
> and that of the generic implementation.
>
> Reported-by: Venkat Rao Bagalkote <venkat88@linux.ibm.com>
> Reported-by: Eric Biggers <ebiggers@google.com>
> Fixes: 14d31979145d ("crypto: powerpc/poly1305 - Add block-only interface")
> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
>
> diff --git a/arch/powerpc/lib/crypto/poly1305-p10-glue.c b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
> index 7cea0ebcc6bc..3f1664a724b6 100644
> --- a/arch/powerpc/lib/crypto/poly1305-p10-glue.c
> +++ b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
> @@ -14,10 +14,7 @@
>
> asmlinkage void poly1305_p10le_4blocks(struct poly1305_block_state *state, const u8 *m, u32 mlen);
> asmlinkage void poly1305_64s(struct poly1305_block_state *state, const u8 *m, u32 mlen, int highbit);
> -asmlinkage void poly1305_emit_arch(const struct poly1305_state *state,
> - u8 digest[POLY1305_DIGEST_SIZE],
> - const u32 nonce[4]);
> -EXPORT_SYMBOL_GPL(poly1305_emit_arch);
> +asmlinkage void poly1305_emit_64(const struct poly1305_state *state, const u32 nonce[4], u8 digest[POLY1305_DIGEST_SIZE]);
>
> static __ro_after_init DEFINE_STATIC_KEY_FALSE(have_p10);
>
> @@ -65,6 +62,16 @@ void poly1305_blocks_arch(struct poly1305_block_state *state, const u8 *src,
> }
> EXPORT_SYMBOL_GPL(poly1305_blocks_arch);
>
> +void poly1305_emit_arch(const struct poly1305_state *state,
> + u8 digest[POLY1305_DIGEST_SIZE],
> + const u32 nonce[4])
> +{
> + if (!static_key_enabled(&have_p10))
> + return poly1305_emit_generic(state, digest, nonce);
> + poly1305_emit_64(state, nonce, digest);
> +}
> +EXPORT_SYMBOL_GPL(poly1305_emit_arch);
> +
> bool poly1305_is_arch_optimized(void)
> {
> return static_key_enabled(&have_p10);
> diff --git a/arch/powerpc/lib/crypto/poly1305-p10le_64.S b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
> index 2ba2911b8038..a3c1987f1ecd 100644
> --- a/arch/powerpc/lib/crypto/poly1305-p10le_64.S
> +++ b/arch/powerpc/lib/crypto/poly1305-p10le_64.S
> @@ -1030,7 +1030,7 @@ SYM_FUNC_END(poly1305_64s)
> # Input: r3 = h, r4 = s, r5 = mac
> # mac = h + s
> #
> -SYM_FUNC_START(poly1305_emit_arch)
> +SYM_FUNC_START(poly1305_emit_64)
> ld 10, 0(3)
> ld 11, 8(3)
> ld 12, 16(3)
> @@ -1060,7 +1060,7 @@ Skip_h64:
> std 10, 0(5)
> std 11, 8(5)
> blr
> -SYM_FUNC_END(poly1305_emit_arch)
> +SYM_FUNC_END(poly1305_emit_64)
>
> SYM_DATA_START_LOCAL(RMASK)
> .align 5
Tested this patch, by applying on top of next-20250508 on IBM Power9
system and it fixes the reported boot warnings. Hence,
Tested-by: Venkat Rao Bagalkote <venkat88@linux.ibm.com>
Regards,
Venkat.
On Sat, May 10, 2025 at 01:10:22PM +0800, Herbert Xu wrote: > On Fri, May 09, 2025 at 09:44:50PM -0700, Eric Biggers wrote: > > > > This fixes "-cpu Power10", but older CPUs (e.g. "-cpu POWER9") are still > > failing. > > You're right. I'll revert this and apply the following patch > instead. > > BTW this thing is still hopelessly broken if it's called from > softirq context because there is no SIMD fallback. Yes I removed > the SIMD check but it was already broken before that as it simply > switched from the 4-block version to the 1-block version if SIMD > is not available rather than actually doing something that is > safe in softirq context. > > Perhaps we should just remove this altogether until it's fixed. Yes, the PowerPC Poly1305 code incorrectly uses VSX without first checking crypto_simd_usable(). And PowerPC also doesn't support VSX in softirqs, or at least it doesn't claim to (it doesn't override may_use_simd(), so it gets the default from include/asm-generic/simd.h which returns false in softirq context). Maybe add 'depends on BROKEN' to CRYPTO_POLY1305_P10 for now, and give the PowerPC folks (Cc'ed) a chance to fix this before removing the code. - Eric
Hi! On Fri, May 09, 2025 at 10:33:08PM -0700, Eric Biggers wrote: > On Sat, May 10, 2025 at 01:10:22PM +0800, Herbert Xu wrote: > > On Fri, May 09, 2025 at 09:44:50PM -0700, Eric Biggers wrote: > > > > > > This fixes "-cpu Power10", but older CPUs (e.g. "-cpu POWER9") are still > > > failing. > > > > You're right. I'll revert this and apply the following patch > > instead. > > > > BTW this thing is still hopelessly broken if it's called from > > softirq context because there is no SIMD fallback. Yes I removed > > the SIMD check but it was already broken before that as it simply > > switched from the 4-block version to the 1-block version if SIMD > > is not available rather than actually doing something that is > > safe in softirq context. > > > > Perhaps we should just remove this altogether until it's fixed. > > Yes, the PowerPC Poly1305 code incorrectly uses VSX without first checking > crypto_simd_usable(). And PowerPC also doesn't support VSX in softirqs, or at > least it doesn't claim to (it doesn't override may_use_simd(), so it gets the > default from include/asm-generic/simd.h which returns false in softirq context). > Maybe add 'depends on BROKEN' to CRYPTO_POLY1305_P10 for now, and give the > PowerPC folks (Cc'ed) a chance to fix this before removing the code. What doe "may_use_simd" even *mean*? At its declaration site it says "whether it is allowable at this time to issue SIMD instructions or access the SIMD register file", but that is 100% meaningless, you can do SIMD in GPRs. On PowerPC we have two separate register files dedicated to SIMD-like stuff, the VMX and the VSX register files. Which of those is this function supposed to care about? It looks like the whole "may_use_simd" thing is a misguided abstraction unfortunately :-( Segher
On Sat, May 10, 2025 at 05:34:01PM -0500, Segher Boessenkool wrote: > > What doe "may_use_simd" even *mean*? At its declaration site it says > "whether it is allowable at this time to issue SIMD instructions or > access the SIMD register file", but that is 100% meaningless, you can do > SIMD in GPRs. > > On PowerPC we have two separate register files dedicated to SIMD-like > stuff, the VMX and the VSX register files. Which of those is this > function supposed to care about? > > It looks like the whole "may_use_simd" thing is a misguided abstraction > unfortunately :-( While we may debate the name of this function, the question is simply whether you need to save state or not when you get an interrupt. If you don't need to save state, then may_use_simd doesn't apply to you. If you need to manually save state when you get an IRQ, then you must obey the rules. So even if VMX and VSX registers are separate, you must assume that in an IRQ either could be in use already and therefore you must not use any of them without saving the state. The ideal solution is to save the state (if necessary) in softirqs, or simply disable softirqs when these instructions are in use. Then the fallback path can be removed, for softirqs at least. Cheers, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Sat, May 10, 2025 at 05:34:01PM -0500, Segher Boessenkool wrote: > Hi! > > On Fri, May 09, 2025 at 10:33:08PM -0700, Eric Biggers wrote: > > On Sat, May 10, 2025 at 01:10:22PM +0800, Herbert Xu wrote: > > > On Fri, May 09, 2025 at 09:44:50PM -0700, Eric Biggers wrote: > > > > > > > > This fixes "-cpu Power10", but older CPUs (e.g. "-cpu POWER9") are still > > > > failing. > > > > > > You're right. I'll revert this and apply the following patch > > > instead. > > > > > > BTW this thing is still hopelessly broken if it's called from > > > softirq context because there is no SIMD fallback. Yes I removed > > > the SIMD check but it was already broken before that as it simply > > > switched from the 4-block version to the 1-block version if SIMD > > > is not available rather than actually doing something that is > > > safe in softirq context. > > > > > > Perhaps we should just remove this altogether until it's fixed. > > > > Yes, the PowerPC Poly1305 code incorrectly uses VSX without first checking > > crypto_simd_usable(). And PowerPC also doesn't support VSX in softirqs, or at > > least it doesn't claim to (it doesn't override may_use_simd(), so it gets the > > default from include/asm-generic/simd.h which returns false in softirq context). > > Maybe add 'depends on BROKEN' to CRYPTO_POLY1305_P10 for now, and give the > > PowerPC folks (Cc'ed) a chance to fix this before removing the code. > > What doe "may_use_simd" even *mean*? At its declaration site it says > "whether it is allowable at this time to issue SIMD instructions or > access the SIMD register file", but that is 100% meaningless, you can do > SIMD in GPRs. > > On PowerPC we have two separate register files dedicated to SIMD-like > stuff, the VMX and the VSX register files. Which of those is this > function supposed to care about? > > It looks like the whole "may_use_simd" thing is a misguided abstraction > unfortunately :-( may_use_simd() a.k.a crypto_simd_usable() is supposed to check whether vector / SIMD registers can be used in the current context, provided that the appropriate architecture-specific functions like kernel_fpu_begin() and kernel_fpu_end() are used. In the case of architectures that support the use of multiple sets of vector / SIMD registers in kernel mode, it would have to check for the intersection of the calling context requirements for all of them, since it doesn't specify a particular set. The reason that may_use_simd() a.k.a. crypto_simd_usable() got pulled out into an abstraction shared across all architectures is that it's used by non-architecture-specific code, such as crypto/simd.c, and also the crypto self-tests which inject 'false' return values to test the no-SIMD code paths. I think the users other than the self-tests are on the way out, though. Most of the users of crypto/simd.c just got removed, with CRYPTO_AES_GCM_P10 being the last one. A new non-architecture-specific user of crypto_simd_usable() just got added in include/crypto/internal/sha2.h for some reason (despite me nacking the patch), but that should be reverted. So if it's really the case that VMX and VSX are both supported for kernel-mode use but have different requirements on the calling context, you could make the PowerPC crypto code use more precise checks like may_use_vsx(). Just the crypto self-tests won't be able to test the no-SIMD code paths that way, unfortunately. - Eric
On Fri, May 09, 2025 at 10:33:08PM -0700, Eric Biggers wrote: > > Yes, the PowerPC Poly1305 code incorrectly uses VSX without first checking > crypto_simd_usable(). And PowerPC also doesn't support VSX in softirqs, or at > least it doesn't claim to (it doesn't override may_use_simd(), so it gets the > default from include/asm-generic/simd.h which returns false in softirq context). > Maybe add 'depends on BROKEN' to CRYPTO_POLY1305_P10 for now, and give the > PowerPC folks (Cc'ed) a chance to fix this before removing the code. I just noticed something weird with this code, running a speed test using "modprobe tcrypt mode=217" shows that the p10 version of poly1305 is way slower than the generic: qemu P9 CPU: May 10 13:36:46 test-p10 kernel: [ 59.585264][ T374] tcrypt: testing speed of multibuffer rfc7539esp(chacha20,poly1305) (rfc7539esp(chacha20-generic,poly1305-generic)) encryption May 10 13:36:46 test-p10 kernel: [ 59.586011][ T374] tcrypt: test 0 (288 bit key, 16 byte blocks): 1 operation in 1374 cycles (16 bytes) May 10 13:36:46 test-p10 kernel: [ 59.587446][ T374] tcrypt: test 1 (288 bit key, 64 byte blocks): 1 operation in 1359 cycles (64 bytes) May 10 13:36:46 test-p10 kernel: [ 59.588025][ T374] tcrypt: test 2 (288 bit key, 256 byte blocks): 1 operation in 1778 cycles (256 bytes) May 10 13:36:46 test-p10 kernel: [ 59.588639][ T374] tcrypt: test 3 (288 bit key, 512 byte blocks): 1 operation in 2323 cycles (512 bytes) May 10 13:36:46 test-p10 kernel: [ 59.589342][ T374] tcrypt: test 4 (288 bit key, 1024 byte blocks): 1 operation in 31624 cycles (1024 bytes) May 10 13:36:46 test-p10 kernel: [ 59.594178][ T374] tcrypt: test 5 (288 bit key, 1420 byte blocks): 1 operation in 4408 cycles (1420 bytes) May 10 13:36:46 test-p10 kernel: [ 59.595317][ T374] tcrypt: test 6 (288 bit key, 4096 byte blocks): 1 operation in 9719 cycles (4096 bytes) May 10 13:36:46 test-p10 kernel: [ 59.597512][ T374] tcrypt: test 7 (288 bit key, 8192 byte blocks): 1 operation in 20168 cycles (8192 bytes) May 10 13:36:46 test-p10 kernel: [ 59.604616][ T374] tcrypt: testing speed of multibuffer rfc7539esp(chacha20,poly1305) (rfc7539esp(chacha20-generic,poly1305-generic)) decryption May 10 13:36:46 test-p10 kernel: [ 59.604916][ T374] tcrypt: test 0 (288 bit key, 16 byte blocks): 1 operation in 1356 cycles (16 bytes) May 10 13:36:46 test-p10 kernel: [ 59.605564][ T374] tcrypt: test 1 (288 bit key, 64 byte blocks): 1 operation in 1393 cycles (64 bytes) May 10 13:36:46 test-p10 kernel: [ 59.608308][ T374] tcrypt: test 2 (288 bit key, 256 byte blocks): 1 operation in 1845 cycles (256 bytes) May 10 13:36:46 test-p10 kernel: [ 59.609002][ T374] tcrypt: test 3 (288 bit key, 512 byte blocks): 1 operation in 2392 cycles (512 bytes) May 10 13:36:46 test-p10 kernel: [ 59.612109][ T374] tcrypt: test 4 (288 bit key, 1024 byte blocks): 1 operation in 3349 cycles (1024 bytes) May 10 13:36:46 test-p10 kernel: [ 59.613289][ T374] tcrypt: test 5 (288 bit key, 1420 byte blocks): 1 operation in 4418 cycles (1420 bytes) May 10 13:36:46 test-p10 kernel: [ 59.616233][ T374] tcrypt: test 6 (288 bit key, 4096 byte blocks): 1 operation in 21600 cycles (4096 bytes) May 10 13:36:46 test-p10 kernel: [ 59.620221][ T374] tcrypt: test 7 (288 bit key, 8192 byte blocks): 1 operation in 20013 cycles (8192 bytes) qemu P10 CPU: May 10 13:40:56 test-p10 kernel: [ 91.672877][ T392] tcrypt: testing speed of multibuffer rfc7539esp(chacha20,poly1305) (rfc7539esp(chacha20-powerpc,poly1305-generic)) encryption May 10 13:40:56 test-p10 kernel: [ 91.674615][ T392] tcrypt: test 0 (288 bit key, 16 byte blocks): 1 operation in 1471 cycles (16 bytes) May 10 13:40:56 test-p10 kernel: [ 91.680240][ T392] tcrypt: test 1 (288 bit key, 64 byte blocks): 1 operation in 1733 cycles (64 bytes) May 10 13:40:56 test-p10 kernel: [ 91.682975][ T392] tcrypt: test 2 (288 bit key, 256 byte blocks): 1 operation in 3248 cycles (256 bytes) May 10 13:40:56 test-p10 kernel: [ 91.684445][ T392] tcrypt: test 3 (288 bit key, 512 byte blocks): 1 operation in 15211 cycles (512 bytes) May 10 13:40:56 test-p10 kernel: [ 91.687603][ T392] tcrypt: test 4 (288 bit key, 1024 byte blocks): 1 operation in 20500 cycles (1024 bytes) May 10 13:40:56 test-p10 kernel: [ 91.690926][ T392] tcrypt: test 5 (288 bit key, 1420 byte blocks): 1 operation in 10159 cycles (1420 bytes) May 10 13:40:56 test-p10 kernel: [ 91.695009][ T392] tcrypt: test 6 (288 bit key, 4096 byte blocks): 1 operation in 25917 cycles (4096 bytes) May 10 13:40:56 test-p10 kernel: [ 91.701320][ T392] tcrypt: test 7 (288 bit key, 8192 byte blocks): 1 operation in 63352 cycles (8192 bytes) May 10 13:40:56 test-p10 kernel: [ 91.713863][ T392] tcrypt: testing speed of multibuffer rfc7539esp(chacha20,poly1305) (rfc7539esp(chacha20-powerpc,poly1305-generic)) decryption May 10 13:40:56 test-p10 kernel: [ 91.714182][ T392] tcrypt: test 0 (288 bit key, 16 byte blocks): 1 operation in 1502 cycles (16 bytes) May 10 13:40:56 test-p10 kernel: [ 91.714871][ T392] tcrypt: test 1 (288 bit key, 64 byte blocks): 1 operation in 1778 cycles (64 bytes) May 10 13:40:56 test-p10 kernel: [ 91.715508][ T392] tcrypt: test 2 (288 bit key, 256 byte blocks): 1 operation in 3322 cycles (256 bytes) May 10 13:40:56 test-p10 kernel: [ 91.716463][ T392] tcrypt: test 3 (288 bit key, 512 byte blocks): 1 operation in 20980 cycles (512 bytes) May 10 13:40:56 test-p10 kernel: [ 91.720775][ T392] tcrypt: test 4 (288 bit key, 1024 byte blocks): 1 operation in 8000 cycles (1024 bytes) May 10 13:40:56 test-p10 kernel: [ 91.724348][ T392] tcrypt: test 5 (288 bit key, 1420 byte blocks): 1 operation in 10155 cycles (1420 bytes) May 10 13:40:56 test-p10 kernel: [ 91.727952][ T392] tcrypt: test 6 (288 bit key, 4096 byte blocks): 1 operation in 27711 cycles (4096 bytes) May 10 13:40:56 test-p10 kernel: [ 91.735306][ T392] tcrypt: test 7 (288 bit key, 8192 byte blocks): 1 operation in 52874 cycles (8192 bytes) Did I do something wrong? Cheers, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Sat, May 10, 2025 at 01:49:13PM +0800, Herbert Xu wrote: > > Did I do something wrong? OK perhaps it's just that the qemu emulation being slow. Cheers, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Sat, May 10, 2025 at 01:50:02PM +0800, Herbert Xu wrote: > On Sat, May 10, 2025 at 01:49:13PM +0800, Herbert Xu wrote: > > > > Did I do something wrong? > > OK perhaps it's just that the qemu emulation being slow. Yes, non-native QEMU usually isn't any good for benchmarking the architecture-optimized code, due to the instructions it uses having to be emulated. Just to give another random example, in (non-native) QEMU the RISC-V CRC code is much slower than the generic CRC code. But when run on an actual RISC-V processor it's much faster. - Eric
On Fri, May 09, 2025 at 10:33:08PM -0700, Eric Biggers wrote:
>
> Yes, the PowerPC Poly1305 code incorrectly uses VSX without first checking
> crypto_simd_usable(). And PowerPC also doesn't support VSX in softirqs, or at
> least it doesn't claim to (it doesn't override may_use_simd(), so it gets the
> default from include/asm-generic/simd.h which returns false in softirq context).
> Maybe add 'depends on BROKEN' to CRYPTO_POLY1305_P10 for now, and give the
> PowerPC folks (Cc'ed) a chance to fix this before removing the code.
OK this patch works for me:
---8<---
Add a SIMD fallback path for poly1305-p10 by converting the 2^64
based hash state into a 2^44 base. In order to ensure that the
generic fallback is actually 2^44, add ARCH_SUPPORTS_INT128 to
powerpc and make poly1305-p10 depend on it.
Fixes: ba8f8624fde2 ("crypto: poly1305-p10 - Glue code for optmized Poly1305 implementation for ppc64le")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig
index 6722625a406a..651e0c32957a 100644
--- a/arch/powerpc/Kconfig
+++ b/arch/powerpc/Kconfig
@@ -173,6 +173,7 @@ config PPC
select ARCH_STACKWALK
select ARCH_SUPPORTS_ATOMIC_RMW
select ARCH_SUPPORTS_DEBUG_PAGEALLOC if PPC_BOOK3S || PPC_8xx
+ select ARCH_SUPPORTS_INT128 if PPC64 && CC_HAS_INT128
select ARCH_USE_BUILTIN_BSWAP
select ARCH_USE_CMPXCHG_LOCKREF if PPC64
select ARCH_USE_MEMTEST
diff --git a/arch/powerpc/lib/crypto/Kconfig b/arch/powerpc/lib/crypto/Kconfig
index ffa541ad6d5d..6761fdb6193c 100644
--- a/arch/powerpc/lib/crypto/Kconfig
+++ b/arch/powerpc/lib/crypto/Kconfig
@@ -9,7 +9,7 @@ config CRYPTO_CHACHA20_P10
config CRYPTO_POLY1305_P10
tristate
- depends on PPC64 && CPU_LITTLE_ENDIAN && VSX
+ depends on PPC64 && CPU_LITTLE_ENDIAN && VSX && ARCH_SUPPORTS_INT128
default CRYPTO_LIB_POLY1305
select CRYPTO_ARCH_HAVE_LIB_POLY1305
select CRYPTO_LIB_POLY1305_GENERIC
diff --git a/arch/powerpc/lib/crypto/poly1305-p10-glue.c b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
index 3f1664a724b6..280c10c48c53 100644
--- a/arch/powerpc/lib/crypto/poly1305-p10-glue.c
+++ b/arch/powerpc/lib/crypto/poly1305-p10-glue.c
@@ -6,6 +6,7 @@
*/
#include <asm/switch_to.h>
#include <crypto/internal/poly1305.h>
+#include <crypto/internal/simd.h>
#include <linux/cpufeature.h>
#include <linux/jump_label.h>
#include <linux/kernel.h>
@@ -18,6 +19,11 @@ asmlinkage void poly1305_emit_64(const struct poly1305_state *state, const u32 n
static __ro_after_init DEFINE_STATIC_KEY_FALSE(have_p10);
+static inline bool is_state_base64(struct poly1305_block_state *state)
+{
+ return state->core_r.precomputed_s.r64[2];
+}
+
static void vsx_begin(void)
{
preempt_disable();
@@ -30,12 +36,35 @@ static void vsx_end(void)
preempt_enable();
}
+static void convert_to_base2_44(struct poly1305_block_state *state)
+{
+ u8 raw_key[POLY1305_BLOCK_SIZE];
+ u64 h0, h1, h2;
+
+ if (!is_state_base64(state))
+ return;
+
+ state->core_r.precomputed_s.r64[2] = 0;
+ put_unaligned_le64(state->core_r.key.r64[0], raw_key + 0);
+ put_unaligned_le64(state->core_r.key.r64[1], raw_key + 8);
+ poly1305_core_setkey(&state->core_r, raw_key);
+
+ h0 = state->h.h64[0];
+ h1 = state->h.h64[1];
+ h2 = state->h.h64[2];
+ state->h.h64[0] = h0 & 0xfffffffffffULL;
+ state->h.h64[1] = h0 >> 44 | (h1 & 0xffffffULL) << 20;
+ state->h.h64[2] = h1 >> 24 | h2 << 40;
+}
+
void poly1305_block_init_arch(struct poly1305_block_state *dctx,
const u8 raw_key[POLY1305_BLOCK_SIZE])
{
- if (!static_key_enabled(&have_p10))
+ dctx->core_r.precomputed_s.r64[2] = 0;
+ if (!static_key_enabled(&have_p10) || !crypto_simd_usable())
return poly1305_block_init_generic(dctx, raw_key);
+ dctx->core_r.precomputed_s.r64[2] = 1;
dctx->h = (struct poly1305_state){};
dctx->core_r.key.r64[0] = get_unaligned_le64(raw_key + 0);
dctx->core_r.key.r64[1] = get_unaligned_le64(raw_key + 8);
@@ -45,8 +74,11 @@ EXPORT_SYMBOL_GPL(poly1305_block_init_arch);
void poly1305_blocks_arch(struct poly1305_block_state *state, const u8 *src,
unsigned int len, u32 padbit)
{
- if (!static_key_enabled(&have_p10))
+ if (!static_key_enabled(&have_p10) || !is_state_base64(state) ||
+ !crypto_simd_usable()) {
+ convert_to_base2_44(state);
return poly1305_blocks_generic(state, src, len, padbit);
+ }
vsx_begin();
if (len >= POLY1305_BLOCK_SIZE * 4) {
poly1305_p10le_4blocks(state, src, len);
@@ -66,7 +98,10 @@ void poly1305_emit_arch(const struct poly1305_state *state,
u8 digest[POLY1305_DIGEST_SIZE],
const u32 nonce[4])
{
- if (!static_key_enabled(&have_p10))
+ struct poly1305_block_state *dctx =
+ container_of(state, struct poly1305_block_state, h);
+
+ if (!static_key_enabled(&have_p10) || !is_state_base64(dctx))
return poly1305_emit_generic(state, digest, nonce);
poly1305_emit_64(state, nonce, digest);
}
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Thu, May 08, 2025 at 02:46:06PM +0530, Venkat Rao Bagalkote wrote: > > Warning: Please also run the Crypto API self-tests for chacha20poly1305. If you have built it as a module, then load it with modprobe chacha20poly1305 Thanks, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Thu, May 08, 2025 at 02:46:06PM +0530, Venkat Rao Bagalkote wrote: > > I tested this patch by applying on next-20250507, though it fixes the build > issue, it has introduced a boot warning. Looking at the history of this code it was never used as lib/crypto prior to commit 378a337ab40f88d63ba71d68ff578ead7f5ac8f1. So either this code simply doesn't work as lib/crypto for some reason, or my subsequent blockhash change broke it. Could you please revert back to commit 378a337ab40f and see if the lib/crypto chacha20poly1305 self-test passes with that? Thanks, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Thu, May 08, 2025 at 05:45:28PM +0800, Herbert Xu wrote: > On Thu, May 08, 2025 at 02:46:06PM +0530, Venkat Rao Bagalkote wrote: > > > > I tested this patch by applying on next-20250507, though it fixes the build > > issue, it has introduced a boot warning. > > Looking at the history of this code it was never used as lib/crypto > prior to commit 378a337ab40f88d63ba71d68ff578ead7f5ac8f1. So either > this code simply doesn't work as lib/crypto for some reason, or my > subsequent blockhash change broke it. > > Could you please revert back to commit 378a337ab40f and see if the > lib/crypto chacha20poly1305 self-test passes with that? > My patchsets "Remove per-architecture poly1305 shash glue code" and "Finish disentangling ChaCha, Poly1305, and BLAKE2s from CRYPTO", which included commit 378a337ab40f, passed testing with qemu-system-ppc64 with -M pseries and -cpu in [POWER7, POWER8, POWER9, Power10]. These issues, both the build failure and test failure, were introduced by your patchset "crypto: lib - Add partial block helper". - Eric
On Thu, May 08, 2025 at 09:29:54AM -0700, Eric Biggers wrote: > > My patchsets "Remove per-architecture poly1305 shash glue code" and > "Finish disentangling ChaCha, Poly1305, and BLAKE2s from CRYPTO", which included > commit 378a337ab40f, passed testing with qemu-system-ppc64 with -M pseries and > -cpu in [POWER7, POWER8, POWER9, Power10]. These issues, both the build failure > and test failure, were introduced by your patchset > "crypto: lib - Add partial block helper". Thanks. I'll try to reproduce this. -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On Thu, May 08, 2025 at 02:46:06PM +0530, Venkat Rao Bagalkote wrote: > > I tested this patch by applying on next-20250507, though it fixes the build > issue, it has introduced a boot warning. > > > Warning: Can you post the complete boot up messages please? Thanks, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On 08/05/25 3:01 pm, Herbert Xu wrote:
> On Thu, May 08, 2025 at 02:46:06PM +0530, Venkat Rao Bagalkote wrote:
>> I tested this patch by applying on next-20250507, though it fixes the build
>> issue, it has introduced a boot warning.
>>
>>
>> Warning:
> Can you post the complete boot up messages please?
Attached is the complete boot up logs.
Regards,
Venkat.
>
> Thanks,Booting Linux via __start() @ 0x000000000a6e0000 ...
[ 0.000000] crashkernel reserved: 0x0000000018000000 - 0x0000000098000000 (2048 MB)
[ 0.000000] hash-mmu: Page sizes from device-tree:
[ 0.000000] hash-mmu: base_shift=12: shift=12, sllp=0x0000, avpnm=0x00000000, tlbiel=1, penc=0
[ 0.000000] hash-mmu: base_shift=12: shift=16, sllp=0x0000, avpnm=0x00000000, tlbiel=1, penc=7
[ 0.000000] hash-mmu: base_shift=12: shift=24, sllp=0x0000, avpnm=0x00000000, tlbiel=1, penc=56
[ 0.000000] hash-mmu: base_shift=16: shift=16, sllp=0x0110, avpnm=0x00000000, tlbiel=1, penc=1
[ 0.000000] hash-mmu: base_shift=16: shift=24, sllp=0x0110, avpnm=0x00000000, tlbiel=1, penc=8
[ 0.000000] hash-mmu: base_shift=24: shift=24, sllp=0x0100, avpnm=0x00000001, tlbiel=0, penc=0
[ 0.000000] hash-mmu: base_shift=34: shift=34, sllp=0x0120, avpnm=0x000007ff, tlbiel=0, penc=3
[ 0.000000] fadump: WARNING: Could not setup area to pass additional parameters!
[ 0.000000] Enabling pkeys with max key count 31
[ 0.000000] Activating Kernel Userspace Access Prevention
[ 0.000000] Activating Kernel Userspace Execution Prevention
[ 0.000000] Using 1TB segments
[ 0.000000] hash-mmu: Initializing hash mmu with SLB
[ 0.000000] Linux version 6.15.0-rc5-next-20250507-00002-g8be5012869c6-dirty (root@ltc-zzci-3.ltc.tadn.ibm.com) (gcc (GCC) 14.2.1 20250110 (Red Hat 14.2.1-7), GNU ld version 2.41-53.el10) #1 SMP Tue Jun 3 20:47:43 CDT 2025
[ 0.000000] OF: reserved mem: Reserved memory: No reserved-memory node in the DT
[ 0.000000] Found initrd at 0xc00000000d800000:0xc00000001177fd75
[ 0.000000] Hardware name: IBM,8375-42A POWER9 (architected) 0x4e0202 0xf000005 of:IBM,FW950.80 (VL950_131) hv:phyp pSeries
[ 0.000000] printk: legacy bootconsole [udbg0] enabled
[ 0.000000] Partition configured for 1024 cpus.
[ 0.000000] CPU maps initialized for 8 threads per core
[ 0.000000] numa: Partition configured for 32 NUMA nodes.
[ 0.000000] -----------------------------------------------------
[ 0.000000] phys_mem_size = 0x1400000000
[ 0.000000] dcache_bsize = 0x80
[ 0.000000] icache_bsize = 0x80
[ 0.000000] cpu_features = 0x0001c07b8f5f9187
[ 0.000000] possible = 0x003ffbfbcf5fb187
[ 0.000000] always = 0x0000000380008181
[ 0.000000] cpu_user_features = 0xdc0065c2 0xeff00000
[ 0.000000] mmu_features = 0xfc006e01
[ 0.000000] firmware_features = 0x0000109fc45bfc57
[ 0.000000] vmalloc start = 0xc008000000000000
[ 0.000000] IO start = 0xc00a000000000000
[ 0.000000] vmemmap start = 0xc00c000000000000
[ 0.000000] hash-mmu: ppc64_pft_size = 0x1e
[ 0.000000] hash-mmu: htab_hash_mask = 0x7fffff
[ 0.000000] -----------------------------------------------------
[ 0.000000] NODE_DATA(0) allocated [mem 0x9fc0f8800-0x9fc0fffff]
[ 0.000000] NODE_DATA(1) allocated [mem 0x13ffea8800-0x13ffeaffff]
[ 0.000000] rfi-flush: fallback displacement flush available
[ 0.000000] rfi-flush: mttrig type flush available
[ 0.000000] count-cache-flush: flush disabled.
[ 0.000000] link-stack-flush: software flush enabled.
[ 0.000000] stf-barrier: eieio barrier available
[ 0.000000] lpar: H_BLOCK_REMOVE supports base psize:0 psize:0 block size:8
[ 0.000000] lpar: H_BLOCK_REMOVE supports base psize:0 psize:2 block size:8
[ 0.000000] lpar: H_BLOCK_REMOVE supports base psize:0 psize:10 block size:8
[ 0.000000] lpar: H_BLOCK_REMOVE supports base psize:2 psize:2 block size:8
[ 0.000000] lpar: H_BLOCK_REMOVE supports base psize:2 psize:10 block size:8
[ 0.000000] PPC64 nvram contains 15360 bytes
[ 0.000000] barrier-nospec: using ORI speculation barrier
[ 0.000000] Zone ranges:
[ 0.000000] Normal [mem 0x0000000000000000-0x00000013ffffffff]
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000000000-0x00000009ffffffff]
[ 0.000000] node 1: [mem 0x0000000a00000000-0x00000013ffffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000009ffffffff]
[ 0.000000] Initmem setup node 1 [mem 0x0000000a00000000-0x00000013ffffffff]
[ 0.000000] Initmem setup node 2 as memoryless
[ 0.000000] Initmem setup node 3 as memoryless
[ 0.000000] Initmem setup node 4 as memoryless
[ 0.000000] Initmem setup node 5 as memoryless
[ 0.000000] Initmem setup node 6 as memoryless
[ 0.000000] Initmem setup node 7 as memoryless
[ 0.000000] Initmem setup node 8 as memoryless
[ 0.000000] Initmem setup node 9 as memoryless
[ 0.000000] Initmem setup node 10 as memoryless
[ 0.000000] Initmem setup node 11 as memoryless
[ 0.000000] Initmem setup node 12 as memoryless
[ 0.000000] Initmem setup node 13 as memoryless
[ 0.000000] Initmem setup node 14 as memoryless
[ 0.000000] Initmem setup node 15 as memoryless
[ 0.000000] Initmem setup node 16 as memoryless
[ 0.000000] Initmem setup node 17 as memoryless
[ 0.000000] Initmem setup node 18 as memoryless
[ 0.000000] Initmem setup node 19 as memoryless
[ 0.000000] Initmem setup node 20 as memoryless
[ 0.000000] Initmem setup node 21 as memoryless
[ 0.000000] Initmem setup node 22 as memoryless
[ 0.000000] Initmem setup node 23 as memoryless
[ 0.000000] Initmem setup node 24 as memoryless
[ 0.000000] Initmem setup node 25 as memoryless
[ 0.000000] Initmem setup node 26 as memoryless
[ 0.000000] Initmem setup node 27 as memoryless
[ 0.000000] Initmem setup node 28 as memoryless
[ 0.000000] Initmem setup node 29 as memoryless
[ 0.000000] Initmem setup node 30 as memoryless
[ 0.000000] Initmem setup node 31 as memoryless
[ 0.000000] percpu: Embedded 3 pages/cpu s119832 r0 d76776 u262144
[ 0.000000] Kernel command line: BOOT_IMAGE=(ieee1275//vdevice/v-scsi@30000067/disk@8100000000000000,msdos9)/boot/vmlinuz-6.15.0-rc5-next-20250507-00002-g8be5012869c6-dirty root=UUID=a4ffacf6-03ad-45c0-80c6-cbfaeedef279 ro crashkernel=2G-4G:384M,4G-16G:512M,16G-64G:1G,64G-128G:2G,128G-:4G
[ 0.000000] Unknown kernel command line parameters "BOOT_IMAGE=(ieee1275//vdevice/v-scsi@30000067/disk@8100000000000000,msdos9)/boot/vmlinuz-6.15.0-rc5-next-20250507-00002-g8be5012869c6-dirty", will be passed to user space.
[ 0.000000] random: crng init done
[ 0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[ 0.000000] printk: log_buf_len total cpu_extra contributions: 4190208 bytes
[ 0.000000] printk: log_buf_len min size: 1048576 bytes
[ 0.000000] printk: log buffer data + meta data: 8388608 + 29360128 = 37748736 bytes
[ 0.000000] printk: early log buf free: 1032544(98%)
[ 0.000000] Fallback order for Node 0: 0 1
[ 0.000000] Fallback order for Node 1: 1 0
[ 0.000000] Fallback order for Node 2: 0 1
[ 0.000000] Fallback order for Node 3: 0 1
[ 0.000000] Fallback order for Node 4: 0 1
[ 0.000000] Fallback order for Node 5: 0 1
[ 0.000000] Fallback order for Node 6: 0 1
[ 0.000000] Fallback order for Node 7: 0 1
[ 0.000000] Fallback order for Node 8: 0 1
[ 0.000000] Fallback order for Node 9: 0 1
[ 0.000000] Fallback order for Node 10: 0 1
[ 0.000000] Fallback order for Node 11: 0 1
[ 0.000000] Fallback order for Node 12: 0 1
[ 0.000000] Fallback order for Node 13: 0 1
[ 0.000000] Fallback order for Node 14: 0 1
[ 0.000000] Fallback order for Node 15: 0 1
[ 0.000000] Fallback order for Node 16: 0 1
[ 0.000000] Fallback order for Node 17: 0 1
[ 0.000000] Fallback order for Node 18: 0 1
[ 0.000000] Fallback order for Node 19: 0 1
[ 0.000000] Fallback order for Node 20: 0 1
[ 0.000000] Fallback order for Node 21: 0 1
[ 0.000000] Fallback order for Node 22: 0 1
[ 0.000000] Fallback order for Node 23: 0 1
[ 0.000000] Fallback order for Node 24: 0 1
[ 0.000000] Fallback order for Node 25: 0 1
[ 0.000000] Fallback order for Node 26: 0 1
[ 0.000000] Fallback order for Node 27: 0 1
[ 0.000000] Fallback order for Node 28: 0 1
[ 0.000000] Fallback order for Node 29: 0 1
[ 0.000000] Fallback order for Node 30: 0 1
[ 0.000000] Fallback order for Node 31: 0 1
[ 0.000000] Built 2 zonelists, mobility grouping on. Total pages: 1310720
[ 0.000000] Policy zone: Normal
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] SLUB: HWalign=128, Order=0-3, MinObjects=0, CPUs=1024, Nodes=32
[ 0.000000] ftrace: allocating 46901 entries in 18 pages
[ 0.000000] ftrace: allocated 18 pages with 2 groups
[ 0.000000] rcu: Hierarchical RCU implementation.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1024.
[ 0.000000] Rude variant of Tasks RCU enabled.
[ 0.000000] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 15 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1024
[ 0.000000] RCU Tasks Rude: Setting shift to 10 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1024.
[ 0.000000] RCU Tasks Trace: Setting shift to 10 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1024.
[ 0.000000] NR_IRQS: 512, nr_irqs: 512, preallocated irqs: 16
[ 0.000000] rcu: srcu_init: Setting srcu_struct sizes to big.
[ 0.000002] time_init: 56 bit decrementer (max: 7fffffffffffff)
[ 0.000041] clocksource: timebase: mask: 0xffffffffffffffff max_cycles: 0x761537d007, max_idle_ns: 440795202126 ns
[ 0.000108] clocksource: timebase mult[1f40000] shift[24] registered
[ 0.001743] Console: colour dummy device 80x25
[ 0.001778] printk: legacy console [hvc0] enabled
[ 0.001778] printk: legacy console [hvc0] enabled
[ 0.001813] printk: legacy bootconsole [udbg0] disabled
[ 0.001813] printk: legacy bootconsole [udbg0] disabled
[ 0.002360] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[ 0.002389] pid_max: default: 1048576 minimum: 8192
[ 0.003249] LSM: initializing lsm=lockdown,capability,yama,selinux,bpf,ima,evm
[ 0.003589] Yama: becoming mindful.
[ 0.003615] SELinux: Initializing.
[ 0.007111] LSM support for eBPF active
[ 0.012090] Dentry cache hash table entries: 8388608 (order: 10, 67108864 bytes, vmalloc)
[ 0.014367] Inode-cache hash table entries: 4194304 (order: 9, 33554432 bytes, vmalloc)
[ 0.014616] Mount-cache hash table entries: 131072 (order: 4, 1048576 bytes, vmalloc)
[ 0.014692] Mountpoint-cache hash table entries: 131072 (order: 4, 1048576 bytes, vmalloc)
[ 0.041578] POWER9 performance monitor hardware support registered
[ 0.041706] rcu: Hierarchical SRCU implementation.
[ 0.041710] rcu: Max phase no-delay instances is 1000.
[ 0.041810] Timer migration: 4 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.048974] smp: Bringing up secondary CPUs ...
[ 0.712970] smp: Brought up 2 nodes, 32 CPUs
[ 0.712987] numa: Node 0 CPUs: 0-7 16-23
[ 0.713001] numa: Node 1 CPUs: 8-15 24-31
[ 0.713034] Big cores detected but using small core scheduling
[ 0.737492] Memory: 80966784K/83886080K available (19520K kernel code, 6400K rwdata, 13248K rodata, 6912K init, 2851K bss, 2703232K reserved, 0K cma-reserved)
[ 0.738509] devtmpfs: initialized
[ 0.749575] PCI host bridge /pci@800000020000021 ranges:
[ 0.749586] MEM 0x0000040080000000..0x00000400feffffff -> 0x0000000080000000
[ 0.749593] MEM 0x0000044000000000..0x0000047fffffffff -> 0x0006204000000000
[ 0.749622] PCI host bridge /pci@80000002000001a ranges:
[ 0.749629] MEM 0x0000040020000000..0x000004003fffffff -> 0x0000000080000000
[ 0.749635] MEM 0x0000041000000000..0x00000417ffffffff -> 0x0006024000000000
[ 0.749659] PCI host bridge /pci@800000020000014 ranges:
[ 0.749666] MEM 0x0000040000000000..0x000004001fffffff -> 0x00000000c0000000
[ 0.749672] MEM 0x0000040800000000..0x0000040fffffffff -> 0x0006005000000000
[ 0.750126] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.750195] posixtimers hash table entries: 524288 (order: 7, 8388608 bytes, vmalloc)
[ 0.751096] futex hash table entries: 262144 (order: 9, 33554432 bytes, vmalloc)
[ 0.761887] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.762198] audit: initializing netlink subsys (disabled)
[ 0.762370] audit: type=2000 audit(1749002017.760:1): state=initialized audit_enabled=0 res=1
[ 0.762616] thermal_sys: Registered thermal governor 'fair_share'
[ 0.762619] thermal_sys: Registered thermal governor 'step_wise'
[ 0.762703] cpuidle: using governor menu
[ 0.765035] pstore: Using crash dump compression: deflate
[ 0.765039] pstore: Registered nvram as persistent store backend
[ 0.765796] EEH: pSeries platform initialized
[ 0.767483] plpks: POWER LPAR Platform KeyStore is not supported or enabled
[ 0.796803] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.800644] HugeTLB: allocation took 0ms with hugepage_allocation_threads=8
[ 0.800817] HugeTLB: registered 16.0 MiB page size, pre-allocated 0 pages
[ 0.800824] HugeTLB: 0 KiB vmemmap can be freed for a 16.0 MiB page
[ 0.800831] HugeTLB: registered 16.0 GiB page size, pre-allocated 0 pages
[ 0.800837] HugeTLB: 0 KiB vmemmap can be freed for a 16.0 GiB page
[ 0.805668] iommu: Default domain type: Translated
[ 0.805676] iommu: DMA domain TLB invalidation policy: strict mode
[ 0.806055] SCSI subsystem initialized
[ 0.806101] usbcore: registered new interface driver usbfs
[ 0.806113] usbcore: registered new interface driver hub
[ 0.806367] usbcore: registered new device driver usb
[ 0.806406] pps_core: LinuxPPS API ver. 1 registered
[ 0.806410] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.806417] PTP clock support registered
[ 0.807445] EDAC MC: Ver: 3.0.0
[ 0.808904] NetLabel: Initializing
[ 0.808908] NetLabel: domain hash size = 128
[ 0.808912] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.808929] NetLabel: unlabeled traffic allowed by default
[ 0.808946] PCI: Probing PCI hardware
[ 0.809110] PCI host bridge to bus 0021:01
[ 0.809115] pci_bus 0021:01: root bus resource [mem 0x40080000000-0x400feffffff] (bus address [0x80000000-0xfeffffff])
[ 0.809123] pci_bus 0021:01: root bus resource [mem 0x44000000000-0x47fffffffff 64bit] (bus address [0x6204000000000-0x6207fffffffff])
[ 0.809130] pci_bus 0021:01: root bus resource [bus 01-ff]
[ 0.810581] pci 0021:01:00.0: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.813978] pci 0021:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.820134] pci 0021:01:00.1: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.823068] pci 0021:01:00.1: PME# supported from D0 D3hot D3cold
[ 0.828142] pci 0021:01:00.2: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.831055] pci 0021:01:00.2: PME# supported from D0 D3hot D3cold
[ 0.836126] pci 0021:01:00.3: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.839041] pci 0021:01:00.3: PME# supported from D0 D3hot D3cold
[ 0.851284] IOMMU table initialized, virtual merging enabled
[ 0.851476] PCI host bridge to bus 001a:50
[ 0.851481] pci_bus 001a:50: root bus resource [mem 0x40020000000-0x4003fffffff] (bus address [0x80000000-0x9fffffff])
[ 0.851488] pci_bus 001a:50: root bus resource [mem 0x41000000000-0x417ffffffff 64bit] (bus address [0x6024000000000-0x60247ffffffff])
[ 0.851495] pci_bus 001a:50: root bus resource [bus 50-ff]
[ 0.852298] pci 001a:50:00.0: enabling Extended Tags
[ 0.853317] pci 001a:50:00.0: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.876597] pci 001a:50:00.0: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.877366] pci 001a:50:00.1: enabling Extended Tags
[ 0.878186] pci 001a:50:00.1: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.900119] pci 001a:50:00.1: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.900883] pci 001a:50:00.2: enabling Extended Tags
[ 0.901706] pci 001a:50:00.2: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.913802] pci 001a:50:00.2: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.914568] pci 001a:50:00.3: enabling Extended Tags
[ 0.915387] pci 001a:50:00.3: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.927470] pci 001a:50:00.3: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.928239] pci 001a:50:00.4: enabling Extended Tags
[ 0.929057] pci 001a:50:00.4: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.941169] pci 001a:50:00.4: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.941937] pci 001a:50:00.5: enabling Extended Tags
[ 0.942755] pci 001a:50:00.5: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.954860] pci 001a:50:00.5: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.964141] PCI host bridge to bus 0014:70
[ 0.964146] pci_bus 0014:70: root bus resource [mem 0x40000000000-0x4001fffffff] (bus address [0xc0000000-0xdfffffff])
[ 0.964153] pci_bus 0014:70: root bus resource [mem 0x40800000000-0x40fffffffff 64bit] (bus address [0x6005000000000-0x60057ffffffff])
[ 0.964160] pci_bus 0014:70: root bus resource [bus 70-ff]
[ 0.964928] pci 0014:70:00.0: enabling Extended Tags
[ 0.965936] pci 0014:70:00.0: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.977400] pci 0014:70:00.0: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.978163] pci 0014:70:00.1: enabling Extended Tags
[ 0.978984] pci 0014:70:00.1: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.989074] pci 0014:70:00.1: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 0.989835] pci 0014:70:00.2: enabling Extended Tags
[ 0.990654] pci 0014:70:00.2: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 1.000747] pci 0014:70:00.2: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 1.001510] pci 0014:70:00.3: enabling Extended Tags
[ 1.002334] pci 0014:70:00.3: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 1.012421] pci 0014:70:00.3: No hypervisor support for SR-IOV on this device, IOV BARs disabled.
[ 1.022892] pci_bus 0021:01: resource 4 [mem 0x40080000000-0x400feffffff]
[ 1.022898] pci_bus 0021:01: resource 5 [mem 0x44000000000-0x47fffffffff 64bit]
[ 1.022905] pci_bus 001a:50: resource 4 [mem 0x40020000000-0x4003fffffff]
[ 1.022909] pci_bus 001a:50: resource 5 [mem 0x41000000000-0x417ffffffff 64bit]
[ 1.022915] pci_bus 0014:70: resource 4 [mem 0x40000000000-0x4001fffffff]
[ 1.022919] pci_bus 0014:70: resource 5 [mem 0x40800000000-0x40fffffffff 64bit]
[ 1.023008] pci 0021:01:00.0: ibm,query-pe-dma-windows(53) 10000 8000000 20000021 returned 0, lb=1000000 ps=3 wn=1
[ 1.023021] pci 0021:01:00.0: Adding to iommu group 0
[ 1.025535] pci 0021:01:00.1: Adding to iommu group 0
[ 1.027980] pci 0021:01:00.2: Adding to iommu group 0
[ 1.030410] pci 0021:01:00.3: Adding to iommu group 0
[ 1.032925] pci 001a:50:00.0: ibm,query-pe-dma-windows(53) 500000 8000000 2000001a returned 0, lb=1000000 ps=3 wn=1
[ 1.032938] pci 001a:50:00.0: Adding to iommu group 1
[ 1.032993] pci 001a:50:00.0: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.032998] PCI: OF: of_irq_parse_pci: possibly some PCI slots don't have level triggered interrupts capability
[ 1.035422] pci 001a:50:00.1: Adding to iommu group 1
[ 1.035476] pci 001a:50:00.1: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.037699] pci 001a:50:00.2: Adding to iommu group 1
[ 1.037753] pci 001a:50:00.2: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.039983] pci 001a:50:00.3: Adding to iommu group 1
[ 1.040037] pci 001a:50:00.3: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.042270] pci 001a:50:00.4: Adding to iommu group 1
[ 1.042324] pci 001a:50:00.4: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.044553] pci 001a:50:00.5: Adding to iommu group 1
[ 1.044607] pci 001a:50:00.5: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.046900] pci 0014:70:00.0: ibm,query-pe-dma-windows(53) 700000 8000000 20000014 returned 0, lb=1000000 ps=3 wn=1
[ 1.046914] pci 0014:70:00.0: Adding to iommu group 2
[ 1.046969] pci 0014:70:00.0: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.049375] pci 0014:70:00.1: Adding to iommu group 2
[ 1.049429] pci 0014:70:00.1: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.051646] pci 0014:70:00.2: Adding to iommu group 2
[ 1.051700] pci 0014:70:00.2: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.053922] pci 0014:70:00.3: Adding to iommu group 2
[ 1.053977] pci 0014:70:00.3: of_irq_parse_pci: no interrupt-map found, INTx interrupts not available
[ 1.056189] EEH: Capable adapter found: recovery enabled.
[ 1.056316] vgaarb: loaded
[ 1.056863] clocksource: Switched to clocksource timebase
[ 1.057898] VFS: Disk quotas dquot_6.6.0
[ 1.057988] VFS: Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
[ 1.061991] NET: Registered PF_INET protocol family
[ 1.062213] IP idents hash table entries: 262144 (order: 5, 2097152 bytes, vmalloc)
[ 1.078403] tcp_listen_portaddr_hash hash table entries: 65536 (order: 4, 1048576 bytes, vmalloc)
[ 1.078549] Table-perturb hash table entries: 65536 (order: 2, 262144 bytes, vmalloc)
[ 1.078647] TCP established hash table entries: 524288 (order: 6, 4194304 bytes, vmalloc)
[ 1.079570] TCP bind hash table entries: 65536 (order: 5, 2097152 bytes, vmalloc)
[ 1.079783] TCP: Hash tables configured (established 524288 bind 65536)
[ 1.081825] MPTCP token hash table entries: 65536 (order: 4, 1572864 bytes, vmalloc)
[ 1.081982] UDP hash table entries: 65536 (order: 6, 4194304 bytes, vmalloc)
[ 1.082446] UDP-Lite hash table entries: 65536 (order: 6, 4194304 bytes, vmalloc)
[ 1.084376] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 1.084387] NET: Registered PF_XDP protocol family
[ 1.085095] PCI: CLS 128 bytes, default 128
[ 1.085161] Trying to unpack rootfs image as initramfs...
[ 1.102297] vas: API is supported only with radix page tables
[ 1.103376] hv-24x7: read 1530 catalog entries, created 509 event attrs (0 failures), 275 descs
[ 1.126262] Initialise system trusted keyrings
[ 1.126464] workingset: timestamp_bits=38 max_order=21 bucket_order=0
[ 1.128261] cryptd: max_cpu_qlen set to 1000
[ 1.141594] NET: Registered PF_ALG protocol family
[ 1.141608] Key type asymmetric registered
[ 1.141612] Asymmetric key parser 'x509' registered
[ 1.637477] Freeing initrd memory: 64960K
[ 1.641939] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[ 1.642335] io scheduler mq-deadline registered
[ 1.642340] io scheduler kyber registered
[ 1.642444] io scheduler bfq registered
[ 1.643493] chacha20poly1305 encryption self-test 1: FAIL
[ 1.643498] chacha20poly1305 encryption self-test 2: FAIL
[ 1.643502] chacha20poly1305 encryption self-test 3: FAIL
[ 1.643507] chacha20poly1305 encryption self-test 4: FAIL
[ 1.643511] chacha20poly1305 encryption self-test 5: FAIL
[ 1.643515] chacha20poly1305 encryption self-test 6: FAIL
[ 1.643520] chacha20poly1305 encryption self-test 7: FAIL
[ 1.643526] chacha20poly1305 encryption self-test 8: FAIL
[ 1.643532] chacha20poly1305 encryption self-test 9: FAIL
[ 1.643541] chacha20poly1305 encryption self-test 10: FAIL
[ 1.643553] chacha20poly1305 encryption self-test 11: FAIL
[ 1.643565] chacha20poly1305 encryption self-test 12: FAIL
[ 1.643569] chacha20poly1305 encryption self-test 13: FAIL
[ 1.643573] chacha20poly1305 encryption self-test 14: FAIL
[ 1.643577] chacha20poly1305 encryption self-test 15: FAIL
[ 1.643581] chacha20poly1305 encryption self-test 16: FAIL
[ 1.643585] chacha20poly1305 encryption self-test 17: FAIL
[ 1.643589] chacha20poly1305 encryption self-test 18: FAIL
[ 1.643593] chacha20poly1305 encryption self-test 19: FAIL
[ 1.643597] chacha20poly1305 encryption self-test 20: FAIL
[ 1.643601] chacha20poly1305 encryption self-test 21: FAIL
[ 1.643605] chacha20poly1305 encryption self-test 22: FAIL
[ 1.643609] chacha20poly1305 encryption self-test 23: FAIL
[ 1.643613] chacha20poly1305 encryption self-test 24: FAIL
[ 1.643617] chacha20poly1305 encryption self-test 25: FAIL
[ 1.643621] chacha20poly1305 encryption self-test 26: FAIL
[ 1.643625] chacha20poly1305 encryption self-test 27: FAIL
[ 1.643629] chacha20poly1305 encryption self-test 28: FAIL
[ 1.643632] chacha20poly1305 encryption self-test 29: FAIL
[ 1.643636] chacha20poly1305 encryption self-test 30: FAIL
[ 1.643640] chacha20poly1305 encryption self-test 31: FAIL
[ 1.643644] chacha20poly1305 encryption self-test 32: FAIL
[ 1.643648] chacha20poly1305 encryption self-test 33: FAIL
[ 1.643652] chacha20poly1305 encryption self-test 34: FAIL
[ 1.643656] chacha20poly1305 encryption self-test 35: FAIL
[ 1.643660] chacha20poly1305 encryption self-test 36: FAIL
[ 1.643664] chacha20poly1305 encryption self-test 37: FAIL
[ 1.643668] chacha20poly1305 encryption self-test 38: FAIL
[ 1.643672] chacha20poly1305 encryption self-test 39: FAIL
[ 1.643676] chacha20poly1305 encryption self-test 40: FAIL
[ 1.643680] chacha20poly1305 encryption self-test 41: FAIL
[ 1.643685] chacha20poly1305 encryption self-test 42: FAIL
[ 1.643689] chacha20poly1305 encryption self-test 43: FAIL
[ 1.643693] chacha20poly1305 encryption self-test 44: FAIL
[ 1.643697] chacha20poly1305 encryption self-test 45: FAIL
[ 1.643701] chacha20poly1305 encryption self-test 46: FAIL
[ 1.643705] chacha20poly1305 encryption self-test 47: FAIL
[ 1.643709] chacha20poly1305 encryption self-test 48: FAIL
[ 1.643713] chacha20poly1305 encryption self-test 49: FAIL
[ 1.643717] chacha20poly1305 encryption self-test 50: FAIL
[ 1.643721] chacha20poly1305 encryption self-test 51: FAIL
[ 1.643725] chacha20poly1305 encryption self-test 52: FAIL
[ 1.643729] chacha20poly1305 encryption self-test 53: FAIL
[ 1.643733] chacha20poly1305 encryption self-test 54: FAIL
[ 1.643737] chacha20poly1305 encryption self-test 55: FAIL
[ 1.643741] chacha20poly1305 encryption self-test 56: FAIL
[ 1.643745] chacha20poly1305 encryption self-test 57: FAIL
[ 1.643749] chacha20poly1305 encryption self-test 58: FAIL
[ 1.643753] chacha20poly1305 encryption self-test 59: FAIL
[ 1.643757] chacha20poly1305 encryption self-test 60: FAIL
[ 1.643761] chacha20poly1305 encryption self-test 61: FAIL
[ 1.643765] chacha20poly1305 encryption self-test 62: FAIL
[ 1.643769] chacha20poly1305 encryption self-test 63: FAIL
[ 1.643773] chacha20poly1305 encryption self-test 64: FAIL
[ 1.643777] chacha20poly1305 encryption self-test 65: FAIL
[ 1.643781] chacha20poly1305 encryption self-test 66: FAIL
[ 1.643785] chacha20poly1305 encryption self-test 67: FAIL
[ 1.643789] chacha20poly1305 encryption self-test 68: FAIL
[ 1.643793] chacha20poly1305 encryption self-test 69: FAIL
[ 1.643797] chacha20poly1305 encryption self-test 70: FAIL
[ 1.643801] chacha20poly1305 encryption self-test 71: FAIL
[ 1.643805] chacha20poly1305 encryption self-test 72: FAIL
[ 1.643810] chacha20poly1305 encryption self-test 73: FAIL
[ 1.643814] chacha20poly1305 encryption self-test 74: FAIL
[ 1.643818] chacha20poly1305 encryption self-test 75: FAIL
[ 1.643823] chacha20poly1305 encryption self-test 76: FAIL
[ 1.643827] chacha20poly1305 encryption self-test 77: FAIL
[ 1.643831] chacha20poly1305 encryption self-test 78: FAIL
[ 1.643836] chacha20poly1305 encryption self-test 79: FAIL
[ 1.643841] chacha20poly1305 encryption self-test 80: FAIL
[ 1.643845] chacha20poly1305 encryption self-test 81: FAIL
[ 1.643849] chacha20poly1305 encryption self-test 82: FAIL
[ 1.643853] chacha20poly1305 encryption self-test 83: FAIL
[ 1.643858] chacha20poly1305 encryption self-test 84: FAIL
[ 1.643862] chacha20poly1305 encryption self-test 85: FAIL
[ 1.643866] chacha20poly1305 encryption self-test 86: FAIL
[ 1.643870] chacha20poly1305 encryption self-test 88: FAIL
[ 1.643874] chacha20poly1305 encryption self-test 89: FAIL
[ 1.643878] chacha20poly1305 encryption self-test 90: FAIL
[ 1.643882] chacha20poly1305 encryption self-test 91: FAIL
[ 1.643887] chacha20poly1305 encryption self-test 92: FAIL
[ 1.643891] chacha20poly1305 encryption self-test 93: FAIL
[ 1.643895] chacha20poly1305 encryption self-test 94: FAIL
[ 1.643899] chacha20poly1305 encryption self-test 95: FAIL
[ 1.643903] chacha20poly1305 encryption self-test 96: FAIL
[ 1.643908] chacha20poly1305 encryption self-test 97: FAIL
[ 1.643912] chacha20poly1305 encryption self-test 98: FAIL
[ 1.643916] chacha20poly1305 encryption self-test 99: FAIL
[ 1.643920] chacha20poly1305 encryption self-test 100: FAIL
[ 1.643925] chacha20poly1305 encryption self-test 101: FAIL
[ 1.643929] chacha20poly1305 encryption self-test 102: FAIL
[ 1.643933] chacha20poly1305 encryption self-test 103: FAIL
[ 1.643937] chacha20poly1305 encryption self-test 104: FAIL
[ 1.643941] chacha20poly1305 encryption self-test 105: FAIL
[ 1.643945] chacha20poly1305 encryption self-test 106: FAIL
[ 1.643950] chacha20poly1305 encryption self-test 107: FAIL
[ 1.643954] chacha20poly1305 encryption self-test 108: FAIL
[ 1.643958] chacha20poly1305 encryption self-test 109: FAIL
[ 1.643963] chacha20poly1305 encryption self-test 110: FAIL
[ 1.643967] chacha20poly1305 encryption self-test 111: FAIL
[ 1.643971] chacha20poly1305 encryption self-test 112: FAIL
[ 1.643975] chacha20poly1305 encryption self-test 113: FAIL
[ 1.643980] chacha20poly1305 encryption self-test 114: FAIL
[ 1.643984] chacha20poly1305 encryption self-test 115: FAIL
[ 1.643988] chacha20poly1305 encryption self-test 116: FAIL
[ 1.643992] chacha20poly1305 encryption self-test 117: FAIL
[ 1.643997] chacha20poly1305 encryption self-test 118: FAIL
[ 1.644003] chacha20poly1305 sg encryption self-test 1: FAIL
[ 1.644008] chacha20poly1305 sg encryption self-test 2: FAIL
[ 1.644012] chacha20poly1305 sg encryption self-test 3: FAIL
[ 1.644016] chacha20poly1305 sg encryption self-test 4: FAIL
[ 1.644020] chacha20poly1305 sg encryption self-test 5: FAIL
[ 1.644025] chacha20poly1305 sg encryption self-test 6: FAIL
[ 1.644030] chacha20poly1305 sg encryption self-test 7: FAIL
[ 1.644036] chacha20poly1305 sg encryption self-test 8: FAIL
[ 1.644042] chacha20poly1305 sg encryption self-test 9: FAIL
[ 1.644050] chacha20poly1305 sg encryption self-test 10: FAIL
[ 1.644062] chacha20poly1305 sg encryption self-test 11: FAIL
[ 1.644074] chacha20poly1305 sg encryption self-test 12: FAIL
[ 1.644078] chacha20poly1305 sg encryption self-test 53: FAIL
[ 1.644082] chacha20poly1305 sg encryption self-test 54: FAIL
[ 1.644087] chacha20poly1305 sg encryption self-test 55: FAIL
[ 1.644091] chacha20poly1305 sg encryption self-test 56: FAIL
[ 1.644095] chacha20poly1305 sg encryption self-test 57: FAIL
[ 1.644099] chacha20poly1305 sg encryption self-test 58: FAIL
[ 1.644103] chacha20poly1305 sg encryption self-test 59: FAIL
[ 1.644107] chacha20poly1305 sg encryption self-test 60: FAIL
[ 1.644112] chacha20poly1305 sg encryption self-test 61: FAIL
[ 1.644116] chacha20poly1305 sg encryption self-test 62: FAIL
[ 1.644120] chacha20poly1305 sg encryption self-test 63: FAIL
[ 1.644124] chacha20poly1305 sg encryption self-test 64: FAIL
[ 1.644128] chacha20poly1305 sg encryption self-test 65: FAIL
[ 1.644132] chacha20poly1305 sg encryption self-test 66: FAIL
[ 1.644137] chacha20poly1305 sg encryption self-test 67: FAIL
[ 1.644141] chacha20poly1305 sg encryption self-test 68: FAIL
[ 1.644145] chacha20poly1305 sg encryption self-test 69: FAIL
[ 1.644149] chacha20poly1305 sg encryption self-test 70: FAIL
[ 1.644153] chacha20poly1305 sg encryption self-test 71: FAIL
[ 1.644158] chacha20poly1305 sg encryption self-test 72: FAIL
[ 1.644162] chacha20poly1305 sg encryption self-test 73: FAIL
[ 1.644167] chacha20poly1305 sg encryption self-test 76: FAIL
[ 1.644171] chacha20poly1305 sg encryption self-test 77: FAIL
[ 1.644176] chacha20poly1305 sg encryption self-test 78: FAIL
[ 1.644180] chacha20poly1305 sg encryption self-test 79: FAIL
[ 1.644185] chacha20poly1305 sg encryption self-test 80: FAIL
[ 1.644189] chacha20poly1305 sg encryption self-test 81: FAIL
[ 1.644194] chacha20poly1305 sg encryption self-test 82: FAIL
[ 1.644198] chacha20poly1305 sg encryption self-test 83: FAIL
[ 1.644203] chacha20poly1305 sg encryption self-test 84: FAIL
[ 1.644207] chacha20poly1305 sg encryption self-test 85: FAIL
[ 1.644212] chacha20poly1305 sg encryption self-test 93: FAIL
[ 1.644216] chacha20poly1305 sg encryption self-test 94: FAIL
[ 1.644221] chacha20poly1305 sg encryption self-test 95: FAIL
[ 1.644225] chacha20poly1305 sg encryption self-test 96: FAIL
[ 1.644229] chacha20poly1305 sg encryption self-test 97: FAIL
[ 1.644234] chacha20poly1305 sg encryption self-test 98: FAIL
[ 1.644238] chacha20poly1305 sg encryption self-test 99: FAIL
[ 1.644242] chacha20poly1305 sg encryption self-test 100: FAIL
[ 1.644247] chacha20poly1305 sg encryption self-test 101: FAIL
[ 1.644251] chacha20poly1305 sg encryption self-test 102: FAIL
[ 1.644256] chacha20poly1305 sg encryption self-test 103: FAIL
[ 1.644261] chacha20poly1305 sg encryption self-test 104: FAIL
[ 1.644265] chacha20poly1305 sg encryption self-test 105: FAIL
[ 1.644270] chacha20poly1305 sg encryption self-test 106: FAIL
[ 1.644274] chacha20poly1305 sg encryption self-test 107: FAIL
[ 1.644278] chacha20poly1305 sg encryption self-test 108: FAIL
[ 1.644283] chacha20poly1305 sg encryption self-test 109: FAIL
[ 1.644287] chacha20poly1305 sg encryption self-test 110: FAIL
[ 1.644292] chacha20poly1305 sg encryption self-test 111: FAIL
[ 1.644296] chacha20poly1305 sg encryption self-test 112: FAIL
[ 1.644300] chacha20poly1305 sg encryption self-test 113: FAIL
[ 1.644305] chacha20poly1305 sg encryption self-test 114: FAIL
[ 1.644309] chacha20poly1305 sg encryption self-test 115: FAIL
[ 1.644314] chacha20poly1305 sg encryption self-test 116: FAIL
[ 1.644318] chacha20poly1305 sg encryption self-test 117: FAIL
[ 1.644323] chacha20poly1305 sg encryption self-test 118: FAIL
[ 1.644328] chacha20poly1305 decryption self-test 1: FAIL
[ 1.644332] chacha20poly1305 decryption self-test 2: FAIL
[ 1.644335] chacha20poly1305 decryption self-test 3: FAIL
[ 1.644339] chacha20poly1305 decryption self-test 4: FAIL
[ 1.644343] chacha20poly1305 decryption self-test 5: FAIL
[ 1.644347] chacha20poly1305 decryption self-test 6: FAIL
[ 1.644351] chacha20poly1305 decryption self-test 7: FAIL
[ 1.644355] chacha20poly1305 decryption self-test 8: FAIL
[ 1.644360] chacha20poly1305 decryption self-test 9: FAIL
[ 1.644365] chacha20poly1305 decryption self-test 10: FAIL
[ 1.644371] chacha20poly1305 decryption self-test 11: FAIL
[ 1.644377] chacha20poly1305 decryption self-test 12: FAIL
[ 1.644385] chacha20poly1305 sg decryption self-test 1: FAIL
[ 1.644389] chacha20poly1305 sg decryption self-test 2: FAIL
[ 1.644393] chacha20poly1305 sg decryption self-test 3: FAIL
[ 1.644398] chacha20poly1305 sg decryption self-test 4: FAIL
[ 1.644402] chacha20poly1305 sg decryption self-test 5: FAIL
[ 1.644406] chacha20poly1305 sg decryption self-test 6: FAIL
[ 1.644411] chacha20poly1305 sg decryption self-test 7: FAIL
[ 1.644417] chacha20poly1305 sg decryption self-test 8: FAIL
[ 1.644424] chacha20poly1305 sg decryption self-test 9: FAIL
[ 1.644432] chacha20poly1305 sg decryption self-test 10: FAIL
[ 1.644443] chacha20poly1305 sg decryption self-test 11: FAIL
[ 1.644456] chacha20poly1305 sg decryption self-test 12: FAIL
[ 1.644470] xchacha20poly1305 encryption self-test 1: FAIL
[ 1.644474] xchacha20poly1305 decryption self-test 1: FAIL
[ 1.644487] ------------[ cut here ]------------
[ 1.644490] WARNING: CPU: 3 PID: 1 at lib/crypto/chacha20poly1305.c:359 chacha20poly1305_init+0x28/0x50
[ 1.644501] Modules linked in:
[ 1.644507] CPU: 3 UID: 0 PID: 1 Comm: swapper/0 Not tainted 6.15.0-rc5-next-20250507-00002-g8be5012869c6-dirty #1 VOLUNTARY
[ 1.644515] Hardware name: IBM,8375-42A POWER9 (architected) 0x4e0202 0xf000005 of:IBM,FW950.80 (VL950_131) hv:phyp pSeries
[ 1.644520] NIP: c0000000020646c0 LR: c0000000020646b4 CTR: 00000000007088ec
[ 1.644525] REGS: c000000a03757960 TRAP: 0700 Not tainted (6.15.0-rc5-next-20250507-00002-g8be5012869c6-dirty)
[ 1.644530] MSR: 8000000002029033 <SF,VEC,EE,ME,IR,DR,RI,LE> CR: 28000282 XER: 0000000f
[ 1.644544] CFAR: c000000002064ec8 IRQMASK: 0
[ 1.644544] GPR00: c0000000020646b4 c000000a03757c00 c000000001dc8100 0000000000000001
[ 1.644544] GPR04: 0000000000000961 c0000009e94dd5c0 c000000a0d348000 0000000000000960
[ 1.644544] GPR08: 00000009e7270000 0000000000000000 0000000000000000 c0000013fb400000
[ 1.644544] GPR12: c0000013fc9fffa8 c000000017ffcb00 c0000000000113d8 0000000000000000
[ 1.644544] GPR16: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[ 1.644544] GPR20: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[ 1.644544] GPR24: 0000000000000000 0000000000000000 c0000000020b19a8 0000000000000006
[ 1.644544] GPR28: 0000000000000000 c0000000020b1960 c000000a05490a00 c000000002064698
[ 1.644600] NIP [c0000000020646c0] chacha20poly1305_init+0x28/0x50
[ 1.644607] LR [c0000000020646b4] chacha20poly1305_init+0x1c/0x50
[ 1.644612] Call Trace:
[ 1.644615] [c000000a03757c00] [c0000000020646b4] chacha20poly1305_init+0x1c/0x50 (unreliable)
[ 1.644624] [c000000a03757c20] [c000000000010d1c] do_one_initcall+0x5c/0x37c
[ 1.644631] [c000000a03757d00] [c000000002005394] do_initcalls+0x144/0x18c
[ 1.644638] [c000000a03757d90] [c000000002005688] kernel_init_freeable+0x214/0x288
[ 1.644645] [c000000a03757df0] [c0000000000113fc] kernel_init+0x2c/0x1b0
[ 1.644651] [c000000a03757e50] [c00000000000df5c] ret_from_kernel_user_thread+0x14/0x1c
[ 1.644657] ---- interrupt: 0 at 0x0
[ 1.644661] Code: 7c0803a6 4e800020 3c4cffd6 38423a68 60000000 7c0802a6 f8010010 f821ffe1 4800028d 60000000 68630001 5463063e <0b030000> 2c030000 4082000c 38600000
[ 1.644681] ---[ end trace 0000000000000000 ]---
[ 1.646225] atomic64_test: passed
[ 1.646625] PowerPC PowerNV PCI Hotplug Driver version: 0.1
[ 1.647199] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.647838] tpm_ibmvtpm 30000003: CRQ initialization completed
[ 2.722009] loop: module loaded
[ 2.722083] rdac: device handler registered
[ 2.722286] hp_sw: device handler registered
[ 2.722292] emc: device handler registered
[ 2.722682] alua: device handler registered
[ 2.723713] usbcore: registered new interface driver usbserial_generic
[ 2.723727] usbserial: USB Serial support registered for generic
[ 2.723786] mousedev: PS/2 mouse device common for all mice
[ 2.723896] rtc-generic rtc-generic: registered as rtc0
[ 2.723952] rtc-generic rtc-generic: setting system clock to 2025-06-04T01:53:40 UTC (1749002020)
[ 2.741561] nx_compress_pseries ibm,compression-v1: nx842_OF_upd: max_sync_size new:65536 old:0
[ 2.741570] nx_compress_pseries ibm,compression-v1: nx842_OF_upd: max_sync_sg new:510 old:0
[ 2.741577] nx_compress_pseries ibm,compression-v1: nx842_OF_upd: max_sg_len new:4080 old:0
[ 2.741652] NX-GZIP is not supported. Returned=-524
[ 2.741697] hid: raw HID events driver (C) Jiri Kosina
[ 2.741752] usbcore: registered new interface driver usbhid
[ 2.741756] usbhid: USB HID core driver
[ 2.742044] drop_monitor: Initializing network drop monitor service
[ 2.742074] GACT probability on
[ 2.744134] ipip: IPv4 and MPLS over IPv4 tunneling driver
[ 2.744906] gre: GRE over IPv4 demultiplexer driver
[ 2.744910] ip_gre: GRE over IPv4 tunneling driver
[ 2.747214] Initializing XFRM netlink socket
[ 2.747222] IPsec XFRM device driver
[ 2.747509] NET: Registered PF_INET6 protocol family
[ 2.751603] Segment Routing with IPv6
[ 2.751614] In-situ OAM (IOAM) with IPv6
[ 2.751678] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[ 2.752801] ip6_gre: GRE over IPv6 tunneling driver
[ 2.753767] NET: Registered PF_PACKET protocol family
[ 2.753987] NET: Registered PF_VSOCK protocol family
[ 2.753991] mpls_gso: MPLS GSO support
[ 2.754284] secvar-sysfs: Failed to retrieve secvar operations
[ 2.760232] registered taskstats version 1
[ 2.768996] Loading compiled-in X.509 certificates
[ 2.778528] Loaded X.509 cert 'Build time autogenerated kernel key: c986a21492d09e4fd382607bdadd8a4261dceb27'
[ 2.782800] Demotion targets for Node 0: null
[ 2.782806] Demotion targets for Node 1: null
[ 2.782814] page_owner is disabled
[ 2.783177] Key type big_key registered
[ 2.786823] Key type trusted registered
[ 2.799548] Key type encrypted registered
[ 2.799609] Secure boot mode disabled
[ 2.799617] Loading compiled-in module X.509 certificates
[ 2.800152] Loaded X.509 cert 'Build time autogenerated kernel key: c986a21492d09e4fd382607bdadd8a4261dceb27'
[ 2.800159] ima: Allocated hash algorithm: sha256
[ 2.809449] Secure boot mode disabled
[ 2.809476] Trusted boot mode disabled
[ 2.809479] ima: No architecture policies found
[ 2.809499] evm: Initialising EVM extended attributes:
[ 2.809503] evm: security.selinux
[ 2.809506] evm: security.SMACK64 (disabled)
[ 2.809509] evm: security.SMACK64EXEC (disabled)
[ 2.809512] evm: security.SMACK64TRANSMUTE (disabled)
[ 2.809516] evm: security.SMACK64MMAP (disabled)
[ 2.809519] evm: security.apparmor (disabled)
[ 2.809522] evm: security.ima
[ 2.809525] evm: security.capability
[ 2.809527] evm: HMAC attrs: 0x1
[ 2.809637] alg: No test for 842 (842-nx)
[ 2.829759] clk: Disabling unused clocks
[ 2.841320] Freeing unused kernel image (initmem) memory: 6912K
[ 2.856815] Run /init as init process
[ 2.868434] systemd[1]: Successfully made /usr/ read-only.
[ 2.869596] systemd[1]: systemd 257-9.el10_0.1-gd1d3a11 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +IPE +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -BTF +XKBCOMMON +UTMP +SYSVINIT +LIBARCHIVE)
[ 2.869615] systemd[1]: Detected virtualization powervm.
[ 2.869623] systemd[1]: Detected architecture ppc64-le.
[ 2.869630] systemd[1]: Running in initrd.
Booting initrd of Red Hat Enterprise Linux 10.0 Beta (Coughlan) dracut-105-2.el10 (Initramfs).
[ 2.869993] systemd[1]: Hostname set to <ltc-zzci-3.ltc.tadn.ibm.com>.
[ 3.137005] systemd[1]: Queued start job for default target initrd.target.
[ 3.140875] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[ OK ] Started systemd-ask-password-conso…equests to Console Directory Watch.
[ 3.141137] systemd[1]: Expecting device dev-disk-by\x2duuid-a4ffacf6\x2d03ad\x2d45c0\x2d80c6\x2dcbfaeedef279.device - /dev/disk/by-uuid/a4ffacf6-03ad-45c0-80c6-cbfaeedef279...
Expecting device dev-disk-by\x2duu…acf6-03ad-45c0-80c6-cbfaeedef279...
[ 3.141289] systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
[ OK ] Reached target initrd-usr-fs.target - Initrd /usr File System.
[ 3.141431] systemd[1]: Reached target paths.target - Path Units.
[ OK ] Reached target paths.target - Path Units.
[ 3.141573] systemd[1]: Reached target slices.target - Slice Units.
[ OK ] Reached target slices.target - Slice Units.
[ 3.141708] systemd[1]: Reached target swap.target - Swaps.
[ OK ] Reached target swap.target - Swaps.
[ 3.141843] systemd[1]: Reached target timers.target - Timer Units.
[ OK ] Reached target timers.target - Timer Units.
[ 3.142073] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ OK ] Listening on systemd-journald-dev-…socket - Journal Socket (/dev/log).
[ 3.142295] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[ OK ] Listening on systemd-journald.socket - Journal Sockets.
[ 3.142504] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ OK ] Listening on systemd-udevd-control.socket - udev Control Socket.
[ 3.142687] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ OK ] Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 3.142824] systemd[1]: Reached target sockets.target - Socket Units.
[ OK ] Reached target sockets.target - Socket Units.
[ 3.148597] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Starting kmod-static-nodes.service…eate List of Static Device Nodes...
[ 3.152992] systemd[1]: Starting systemd-journald.service - Journal Service...
Starting systemd-journald.service - Journal Service...
[ 3.153425] systemd[1]: systemd-modules-load.service - Load Kernel Modules was skipped because no trigger condition checks were met.
[ 3.157537] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
Starting systemd-sysctl.service - Apply Kernel Variables...
[ 3.160912] systemd[1]: Starting systemd-vconsole-setup.service - Virtual Console Setup...
Starting systemd-vconsole-setup.service - Virtual Console Setup...
[ 3.162406] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ OK ] Finished kmod-static-nodes.service…Create List of Static Device Nodes.
[ 3.166772] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
Starting systemd-tmpfiles-setup-de… Device Nodes in /dev gracefully...
[ 3.170810] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[ OK ] Finished systemd-sysctl.service - Apply Kernel Variables.
[ 3.184463] systemd-journald[387]: Collecting audit messages is disabled.
[ 3.192565] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ OK ] Finished systemd-tmpfiles-setup-de…ic Device Nodes in /dev gracefully.
[ 3.197537] systemd[1]: Starting systemd-sysusers.service - Create System Users...
Starting systemd-sysusers.service - Create System Users...
[ 3.209820] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[ OK ] Finished systemd-sysusers.service - Create System Users.
[ 3.212934] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
Starting systemd-tmpfiles-setup-de…eate Static Device Nodes in /dev...
[ 3.221052] systemd[1]: Started systemd-journald.service - Journal Service.
[ OK ] Started systemd-journald.service - Journal Service.
[ OK ] Finished systemd-vconsole-setup.service - Virtual Console Setup.
Starting dracut-cmdline.service - dracut cmdline hook...
[ OK ] Finished systemd-tmpfiles-setup-de…Create Static Device Nodes in /dev.
[ OK ] Reached target local-fs-pre.target…Preparation for Local File Systems.
[ OK ] Reached target local-fs.target - Local File Systems.
Starting systemd-tmpfiles-setup.se…ate System Files and Directories...
[ OK ] Finished dracut-cmdline.service - dracut cmdline hook.
Starting dracut-pre-udev.service - dracut pre-udev hook...
[ OK ] Finished systemd-tmpfiles-setup.se…reate System Files and Directories.
[ OK ] Finished dracut-pre-udev.service - dracut pre-udev hook.
Starting systemd-udevd.service - R…ager for Device Events and Files...
[ OK ] Started systemd-udevd.service - Ru…anager for Device Events and Files.
Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ OK ] Created slice system-modprobe.slice - Slice /system/modprobe.
Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 4.084412] scsi_transport_fc: module verification failed: signature and/or required key missing - tainting kernel
[ OK ] Finished systemd-udev-trigger.service - Coldplug All udev Devices.
[ OK ] Reached target remote-fs-pre.targe…reparation for Remote File Systems.
[ OK ] Reached target remote-fs.target - Remote File Systems.
[ OK ] Finished modprobe@configfs.service - Load Kernel Module configfs.
Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ OK ] Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ OK ] Reached target sysinit.target - System Initialization.
[ OK ] Reached target basic.target - Basic System.
[ OK ] Stopped systemd-vconsole-setup.service - Virtual Console Setup.
Stopping systemd-vconsole-setup.service - Virtual Console Setup...
Starting systemd-vconsole-setup.service - Virtual Console Setup...
[ 4.282343] ibmvscsi 30000067: SRP_VERSION: 16.a
[ 4.282482] ibmvscsi 30000067: Maximum ID: 64 Maximum LUN: 32 Maximum Channel: 3
[ 4.282490] scsi host0: IBM POWER Virtual SCSI Adapter 1.5.9
[ 4.282987] ibmvscsi 30000067: partner initialization complete
[ 4.283038] ibmvscsi 30000067: host srp version: 16.a, host partition ltc-zzci-vios1 (100), OS 3, max io 1048576
[ 4.283093] ibmvscsi 30000067: Client reserve enabled
[ 4.283102] ibmvscsi 30000067: sent SRP login
[ 4.283128] ibmvscsi 30000067: SRP_LOGIN succeeded
[ 4.297957] scsi 0:0:1:0: Direct-Access AIX VDASD 0001 PQ: 0 ANSI: 3
[ 4.298653] scsi 0:0:2:0: CD-ROM AIX VOPTA PQ: 0 ANSI: 4
[ 4.414814] sd 0:0:1:0: [sda] 26214400 4096-byte logical blocks: (107 GB/100 GiB)
[ 4.414884] sd 0:0:1:0: [sda] Write Protect is off
[ 4.414946] sd 0:0:1:0: [sda] Cache data unavailable
[ 4.414951] sd 0:0:1:0: [sda] Assuming drive cache: write through
[ 4.522988] Emulex LightPulse Fibre Channel SCSI driver 14.4.0.9
[ 4.523000] Copyright (C) 2017-2025 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
[ 4.523336] lpfc 001a:50:00.4: enabling device (0140 -> 0142)
[ 4.526862] lpfc 001a:50:00.4: ibm,query-pe-dma-windows(53) 500400 8000000 2000001a returned 0, lb=1000000 ps=3 wn=1
[ OK ] Finished systemd-vconsole-setup.service - Virtual Console Setup.
[ 4.589676] lpfc 001a:50:00.4: ibm,create-pe-dma-window(54) 500400 8000000 2000001a 10 25 returned 0 (liobn = 0x7000001a starting addr = 8000000 0)
[ 4.673669] lpfc 001a:50:00.4: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 4.673706] lpfc 001a:50:00.4: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 4.769079] lpfc 001a:50:00.4: 0:6101 Disabling NVME support: Not supported by firmware (0 0) x3
[ 4.769275] lpfc 001a:50:00.4: 0:2574 IO channels: hdwQ 32 IRQ 32 MRQ: 0
[ 4.798782] scsi host1: Emulex OneConnect OCe15100, FCoE Initiator on PCI bus 50 device 04 irq 0 BSG
[ 4.846266] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 sda9 >
[ 4.848129] sd 0:0:1:0: [sda] Attached SCSI disk
[ 4.848474] sr 0:0:2:0: [sr0] scsi-1 drive
[ 4.848484] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 4.885016] lpfc 001a:50:00.4: 0:6468 Set host date / time: Status x10:
[ OK ] Found device dev-disk-by\x2duuid-a…6\x2dcbfaeedef279.device - VDASD 9.
[ OK ] Reached target initrd-root-device.target - Initrd Root Device.
Starting systemd-fsck-root.service…acf6-03ad-45c0-80c6-cbfaeedef279...
[ OK ] Finished systemd-fsck-root.service…ffacf6-03ad-45c0-80c6-cbfaeedef279.
Mounting sysroot.mount - /sysroot...
[ 5.489030] lpfc 001a:50:00.4: 0:3176 Port Name 0 Physical Link is functional
[ 5.489601] lpfc 001a:50:00.5: enabling device (0140 -> 0142)
[ 5.493002] lpfc 001a:50:00.5: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 5.493016] lpfc 001a:50:00.5: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 5.609055] lpfc 001a:50:00.5: 1:6101 Disabling NVME support: Not supported by firmware (0 0) x3
[ 5.609068] lpfc 001a:50:00.5: 1:2574 IO channels: hdwQ 32 IRQ 32 MRQ: 0
[ 5.639176] scsi host2: Emulex OneConnect OCe15100, FCoE Initiator on PCI bus 50 device 05 irq 0 BSG
[ 5.734985] lpfc 001a:50:00.5: 1:6468 Set host date / time: Status x10:
[ 6.271098] SGI XFS with ACLs, security attributes, scrub, quota, no debug enabled
[ 6.279988] XFS (sda9): Mounting V5 Filesystem a4ffacf6-03ad-45c0-80c6-cbfaeedef279
[ 6.349040] lpfc 001a:50:00.5: 1:3176 Port Name 1 Physical Link is functional
[ 6.349568] lpfc 0014:70:00.0: enabling device (0144 -> 0146)
[ 6.351831] XFS (sda9): Ending clean mount
[ 6.353095] lpfc 0014:70:00.0: ibm,query-pe-dma-windows(53) 700000 8000000 20000014 returned 0, lb=1000000 ps=3 wn=1
[ OK ] Mounted sysroot.mount - /sysroot.
[ OK ] Reached target initrd-root-fs.target - Initrd Root File System.
Starting initrd-parse-etc.service …ints Configured in the Real Root...
[ 6.415347] lpfc 0014:70:00.0: ibm,create-pe-dma-window(54) 700000 8000000 20000014 10 25 returned 0 (liobn = 0x70000014 starting addr = 8000000 0)
[ 6.498577] lpfc 0014:70:00.0: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 6.498611] lpfc 0014:70:00.0: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 6.599018] lpfc 0014:70:00.0: 2:2574 IO channels: hdwQ 32 IRQ 32 MRQ: 0
[ 6.622501] scsi host3: Emulex LPe32000 16Gb PCIe Fibre Channel Adapter on PCI bus 70 device 00 irq 0 BSG PCI resettable
[ 6.714956] lpfc 0014:70:00.0: 2:6468 Set host date / time: Status x10:
[ OK ] Finished initrd-parse-etc.service …points Configured in the Real Root.
[ OK ] Reached target initrd-fs.target - Initrd File Systems.
[ OK ] Reached target initrd.target - Initrd Default Target.
Starting dracut-pre-pivot.service …racut pre-pivot and cleanup hook...
[ OK ] Finished dracut-pre-pivot.service - dracut pre-pivot and cleanup hook.
Starting initrd-cleanup.service - …ing Up and Shutting Down Daemons...
[ OK ] Stopped target timers.target - Timer Units.
[ OK ] Stopped dracut-pre-pivot.service - dracut pre-pivot and cleanup hook.
[ OK ] Stopped target initrd.target - Initrd Default Target.
[ OK ] Stopped target basic.target - Basic System.
[ OK ] Stopped target initrd-root-device.target - Initrd Root Device.
[ OK ] Stopped target initrd-usr-fs.target - Initrd /usr File System.
[ OK ] Stopped target paths.target - Path Units.
[ OK ] Stopped systemd-ask-password-conso…equests to Console Directory Watch.
[ OK ] Stopped target remote-fs.target - Remote File Systems.
[ OK ] Stopped target remote-fs-pre.targe…reparation for Remote File Systems.
[ OK ] Stopped target slices.target - Slice Units.
[ OK ] Stopped target sockets.target - Socket Units.
[ OK ] Stopped target sysinit.target - System Initialization.
[ OK ] Stopped target swap.target - Swaps.
[ OK ] Stopped systemd-sysctl.service - Apply Kernel Variables.
[ OK ] Stopped systemd-tmpfiles-setup.ser…reate System Files and Directories.
[ OK ] Stopped target local-fs.target - Local File Systems.
[ OK ] Stopped target local-fs-pre.target…Preparation for Local File Systems.
[ OK ] Stopped systemd-udev-trigger.service - Coldplug All udev Devices.
Stopping systemd-udevd.service - R…ager for Device Events and Files...
[ OK ] Stopped systemd-vconsole-setup.service - Virtual Console Setup.
[ OK ] Finished initrd-cleanup.service - …aning Up and Shutting Down Daemons.
[ 7.321295] lpfc 0014:70:00.0: 2:3176 Port Name 0 Physical Link is functional
[ 7.321789] lpfc 0014:70:00.1: enabling device (0144 -> 0146)
[ 7.324737] lpfc 0014:70:00.1: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 7.324751] lpfc 0014:70:00.1: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 7.439012] lpfc 0014:70:00.1: 3:2574 IO channels: hdwQ 32 IRQ 32 MRQ: 0
[ 7.462405] scsi host4: Emulex LPe32000 16Gb PCIe Fibre Channel Adapter on PCI bus 70 device 01 irq 0 BSG PCI resettable
[ 7.564950] lpfc 0014:70:00.1: 3:6468 Set host date / time: Status x10:
[ 8.171045] lpfc 0014:70:00.1: 3:3176 Port Name 1 Physical Link is functional
[ 8.171445] lpfc 0014:70:00.2: enabling device (0144 -> 0146)
[ 8.174393] lpfc 0014:70:00.2: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 8.174406] lpfc 0014:70:00.2: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 8.269013] lpfc 0014:70:00.2: 4:2574 IO channels: hdwQ 32 IRQ 32 MRQ: 0
[ 8.292246] scsi host5: Emulex LPe32000 16Gb PCIe Fibre Channel Adapter on PCI bus 70 device 02 irq 0 BSG PCI resettable
[ 8.374958] lpfc 0014:70:00.2: 4:6468 Set host date / time: Status x10:
[ 8.991024] lpfc 0014:70:00.2: 4:3176 Port Name 2 Physical Link is functional
[ 8.991508] lpfc 0014:70:00.3: enabling device (0144 -> 0146)
[ 8.994453] lpfc 0014:70:00.3: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 8.994466] lpfc 0014:70:00.3: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[* ] Job systemd-udevd.service/stop runn… (2s / 1min 30s): Shutting down...
[ 9.089014] lpfc 0014:70:00.3: 5:2574 IO channels: hdwQ 32 IRQ 32 MRQ: 0
[ 9.112740] scsi host6: Emulex LPe32000 16Gb PCIe Fibre Channel Adapter on PCI bus 70 device 03 irq 0 BSG PCI resettable
[** ] Job systemd-udevd.service/stop runn… (2s / 1min 30s): Shutting down...
[ OK ] Stopped systemd-udevd.service - Ru…anager for Device Events and Files.
[ OK ] Closed systemd-udevd-control.socket - udev Control Socket.
[ OK ] Closed systemd-udevd-kernel.socket - udev Kernel Socket.
[ OK ] Stopped dracut-pre-udev.service - dracut pre-udev hook.
[ OK ] Stopped dracut-cmdline.service - dracut cmdline hook.
Starting initrd-udevadm-cleanup-db.service - Cleanup udev Database...
[ OK ] Stopped systemd-tmpfiles-setup-dev…Create Static Device Nodes in /dev.
[ OK ] Stopped systemd-sysusers.service - Create System Users.
[ OK ] Stopped systemd-tmpfiles-setup-dev…ic Device Nodes in /dev gracefully.
[ OK ] Stopped kmod-static-nodes.service …Create List of Static Device Nodes.
[ OK ] Finished initrd-udevadm-cleanup-db.service - Cleanup udev Database.
[ OK ] Reached target initrd-switch-root.target - Switch Root.
Starting initrd-switch-root.service - Switch Root...
[ 10.231874] systemd-journald[387]: Received SIGTERM from PID 1 (systemd).
[ 10.515359] audit: type=1404 audit(1749002028.280:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
[ 10.883270] SELinux: Permission firmware_load in class system not defined in policy.
[ 10.883281] SELinux: Permission kexec_image_load in class system not defined in policy.
[ 10.883286] SELinux: Permission kexec_initramfs_load in class system not defined in policy.
[ 10.883291] SELinux: Permission policy_load in class system not defined in policy.
[ 10.883296] SELinux: Permission x509_certificate_load in class system not defined in policy.
[ 10.883306] SELinux: Permission watch_mountns in class file not defined in policy.
[ 10.883312] SELinux: Permission watch_mountns in class dir not defined in policy.
[ 10.883318] SELinux: Permission watch_mountns in class lnk_file not defined in policy.
[ 10.883323] SELinux: Permission watch_mountns in class chr_file not defined in policy.
[ 10.883328] SELinux: Permission watch_mountns in class blk_file not defined in policy.
[ 10.883333] SELinux: Permission watch_mountns in class sock_file not defined in policy.
[ 10.883338] SELinux: Permission watch_mountns in class fifo_file not defined in policy.
[ 10.883353] SELinux: Permission nlmsg in class netlink_route_socket not defined in policy.
[ 10.883358] SELinux: Permission nlmsg in class netlink_tcpdiag_socket not defined in policy.
[ 10.883365] SELinux: Permission nlmsg in class netlink_xfrm_socket not defined in policy.
[ 10.883371] SELinux: Permission nlmsg in class netlink_audit_socket not defined in policy.
[ 10.883405] SELinux: Permission watch_mountns in class anon_inode not defined in policy.
[ 10.883409] SELinux: Permission allowed in class io_uring not defined in policy.
[ 10.883414] SELinux: the above unknown classes and permissions will be allowed
[ 10.886259] SELinux: policy capability network_peer_controls=1
[ 10.886264] SELinux: policy capability open_perms=1
[ 10.886268] SELinux: policy capability extended_socket_class=1
[ 10.886272] SELinux: policy capability always_check_network=0
[ 10.886276] SELinux: policy capability cgroup_seclabel=1
[ 10.886280] SELinux: policy capability nnp_nosuid_transition=1
[ 10.886283] SELinux: policy capability genfs_seclabel_symlinks=1
[ 10.886287] SELinux: policy capability ioctl_skip_cloexec=0
[ 10.886291] SELinux: policy capability userspace_initial_context=0
[ 10.886295] SELinux: policy capability netlink_xperm=0
[ 10.886298] SELinux: policy capability netif_wildcard=0
[ 10.886302] SELinux: policy capability genfs_seclabel_wildcard=0
[ 11.355531] audit: type=1403 audit(1749002029.120:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
[ 11.363360] systemd[1]: Successfully loaded SELinux policy in 850.443ms.
[ 11.548951] systemd[1]: Relabeled /dev/, /dev/shm/, /run/ in 16.703ms.
[ 11.559102] systemd[1]: systemd 257-9.el10_0.1-gd1d3a11 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +IPE +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -BTF +XKBCOMMON +UTMP +SYSVINIT +LIBARCHIVE)
[ 11.559120] systemd[1]: Detected virtualization powervm.
[ 11.559128] systemd[1]: Detected architecture ppc64-le.
Welcome to Red Hat Enterprise Linux 10.0 Beta (Coughlan)!
[ 12.248672] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 13.016877] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[ 13.017242] systemd[1]: Stopped initrd-switch-root.service - Switch Root.
[ OK ] Stopped initrd-switch-root.service - Switch Root.
[ 13.018595] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[ 13.021273] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[ OK ] Created slice system-getty.slice - Slice /system/getty.
[ 13.024068] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[ OK ] Created slice system-serial\x2dget…slice - Slice /system/serial-getty.
[ 13.026697] systemd[1]: Created slice system-sshd\x2dkeygen.slice - Slice /system/sshd-keygen.
[ OK ] Created slice system-sshd\x2dkeygen.slice - Slice /system/sshd-keygen.
[ 13.029322] systemd[1]: Created slice user.slice - User and Session Slice.
[ OK ] Created slice user.slice - User and Session Slice.
[ 13.029634] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[ OK ] Started systemd-ask-password-conso…equests to Console Directory Watch.
[ 13.029853] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ OK ] Started systemd-ask-password-wall.…d Requests to Wall Directory Watch.
[ 13.030505] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ OK ] Set up automount proc-sys-fs-binfm…ormats File System Automount Point.
[ 13.030648] systemd[1]: Expecting device dev-disk-by\x2duuid-cfd51a62\x2dac52\x2d4fdf\x2da198\x2dad57f5a6b44e.device - /dev/disk/by-uuid/cfd51a62-ac52-4fdf-a198-ad57f5a6b44e...
Expecting device dev-disk-by\x2duu…1a62-ac52-4fdf-a198-ad57f5a6b44e...
[ 13.030776] systemd[1]: Expecting device dev-hvc0.device - /dev/hvc0...
Expecting device dev-hvc0.device - /dev/hvc0...
[ 13.030906] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[ OK ] Reached target cryptsetup.target - Local Encrypted Volumes.
[ 13.031054] systemd[1]: Stopped target initrd-switch-root.target - Switch Root.
[ OK ] Stopped target initrd-switch-root.target - Switch Root.
[ 13.031189] systemd[1]: Stopped target initrd-fs.target - Initrd File Systems.
[ OK ] Stopped target initrd-fs.target - Initrd File Systems.
[ 13.031321] systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System.
[ OK ] Stopped target initrd-root-fs.target - Initrd Root File System.
[ 13.031458] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ OK ] Reached target integritysetup.targ… Local Integrity Protected Volumes.
[ 13.031620] systemd[1]: Reached target paths.target - Path Units.
[ OK ] Reached target paths.target - Path Units.
[ 13.031758] systemd[1]: Reached target remote-cryptsetup.target - Remote Encrypted Volumes.
[ OK ] Reached target remote-cryptsetup.target - Remote Encrypted Volumes.
[ 13.031890] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ OK ] Reached target remote-fs.target - Remote File Systems.
[ 13.032022] systemd[1]: Reached target slices.target - Slice Units.
[ OK ] Reached target slices.target - Slice Units.
[ 13.032191] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ OK ] Reached target veritysetup.target - Local Verity Protected Volumes.
[ 13.032755] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ OK ] Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 13.034213] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ OK ] Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 13.036806] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[ OK ] Listening on systemd-coredump.socket - Process Core Dump Socket.
[ 13.038478] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[ OK ] Listening on systemd-creds.socket - Credential Encryption/Decryption.
[ 13.038739] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ OK ] Listening on systemd-initctl.socke…- initctl Compatibility Named Pipe.
[ 13.041772] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ OK ] Listening on systemd-udevd-control.socket - udev Control Socket.
[ 13.042175] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ OK ] Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 13.047534] systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
[ OK ] Listening on systemd-userdbd.socket - User Database Manager Socket.
[ 13.051783] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
Mounting dev-hugepages.mount - Huge Pages File System...
[ 13.054914] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 13.058357] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 13.062315] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 13.062645] systemd[1]: fips-crypto-policy-overlay.service - Bind-mount FIPS crypto-policy in FIPS mode was skipped because of an unmet condition check (ConditionKernelCommandLine=fips=1).
[ 13.066229] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Starting kmod-static-nodes.service…eate List of Static Device Nodes...
[ 13.071082] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Starting lvm2-monitor.service - Mo…ing dmeventd or progress polling...
[ 13.268634] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 13.273161] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 13.277234] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
Starting modprobe@drm.service - Load Kernel Module drm...
[ 13.281475] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Starting modprobe@efi_pstore.servi… - Load Kernel Module efi_pstore...
[ 13.287401] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 13.291900] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
Starting modprobe@loop.service - Load Kernel Module loop...
[ 13.292350] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
[ 13.292433] systemd[1]: Stopped systemd-fsck-root.service - File System Check on Root Device.
[ OK ] Stopped systemd-fsck-root.service - File System Check on Root Device.
[ 13.292697] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 13.297863] systemd[1]: Starting systemd-journald.service - Journal Service...
Starting systemd-journald.service - Journal Service...
[ 13.298325] systemd[1]: systemd-modules-load.service - Load Kernel Modules was skipped because no trigger condition checks were met.
[ 13.303319] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
Starting systemd-network-generator…k units from Kernel command line...
[ 13.307178] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
Starting systemd-remount-fs.servic…unt Root and Kernel File Systems...
[ 13.311915] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
Starting systemd-sysctl.service - Apply Kernel Variables...
[ 13.317089] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
Starting systemd-udev-load-credent…Load udev Rules from Credentials...
[ 13.322818] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 13.330354] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ OK ] Mounted dev-hugepages.mount - Huge Pages File System.
[ 13.330673] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ OK ] Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 13.330919] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ OK ] Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 13.331165] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ OK ] Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 13.332077] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ OK ] Finished kmod-static-nodes.service…Create List of Static Device Nodes.
[ 13.332651] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 13.333162] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ OK ] Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 13.333730] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 13.334213] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ OK ] Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 13.334707] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 13.335073] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ OK ] Finished modprobe@loop.service - Load Kernel Module loop.
[ 13.335992] systemd[1]: Finished systemd-network-generator.service - Generate network units from Kernel command line.
[ OK ] Finished systemd-network-generator…ork units from Kernel command line.
[ 13.340949] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
Starting systemd-tmpfiles-setup-de… Device Nodes in /dev gracefully...
[ 13.427129] systemd-journald[941]: Collecting audit messages is disabled.
[ 13.456874] systemd[1]: Started systemd-journald.service - Journal Service.
[ OK ] Started systemd-journald.service - Journal Service.
[ 13.459416] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 13.459579] device-mapper: uevent: version 1.0.3
[ 13.460427] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[ OK ] Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ OK ] Finished systemd-remount-fs.servic…mount Root and Kernel File Systems.
Starting systemd-journal-flush.ser…sh Journal to Persistent Storage...
Starting systemd-pstore.service - …form Persistent Storage Archival...
Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 13.556083] systemd-journald[941]: Received client request to flush runtime journal.
[ OK ] Finished systemd-udev-load-credent…- Load udev Rules from Credentials.
[ OK ] Finished systemd-sysctl.service - Apply Kernel Variables.
[ 13.581312] fuse: init (API version 7.44)
[ OK ] Finished modprobe@fuse.service - Load Kernel Module fuse.
[ OK ] Finished systemd-journal-flush.ser…lush Journal to Persistent Storage.
[ OK ] Finished systemd-random-seed.service - Load/Save OS Random Seed.
[ OK ] Finished systemd-pstore.service - …atform Persistent Storage Archival.
Starting systemd-userdbd.service - User Database Manager...
[ OK ] Finished modprobe@drm.service - Load Kernel Module drm.
Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ OK ] Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ OK ] Started systemd-userdbd.service - User Database Manager.
[ OK ] Finished systemd-udev-trigger.service - Coldplug All udev Devices.
[ OK ] Finished systemd-tmpfiles-setup-de…ic Device Nodes in /dev gracefully.
Starting systemd-tmpfiles-setup-de…eate Static Device Nodes in /dev...
[ OK ] Finished lvm2-monitor.service - Mo…using dmeventd or progress polling.
[ OK ] Finished systemd-tmpfiles-setup-de…Create Static Device Nodes in /dev.
Starting systemd-udevd.service - R…ager for Device Events and Files...
[ OK ] Started systemd-udevd.service - Ru…anager for Device Events and Files.
Starting nvmefc-boot-connections.s…C-NVME devices found during boot...
Starting modprobe@configfs.service - Load Kernel Module configfs...
[ OK ] Finished modprobe@configfs.service - Load Kernel Module configfs.
[ OK ] Finished nvmefc-boot-connections.s… FC-NVME devices found during boot.
[ OK ] Reached target local-fs-pre.target…Preparation for Local File Systems.
[ OK ] Reached target local-fs.target - Local File Systems.
[ OK ] Listening on systemd-sysext.socket… System Extension Image Management.
Starting systemd-tmpfiles-setup.se…ate System Files and Directories...
[ 14.634917] sd 0:0:1:0: Attached scsi generic sg0 type 0
[ 14.635139] sr 0:0:2:0: Attached scsi generic sg1 type 5
[ 14.825549] be2net 001a:50:00.0: enabling device (0140 -> 0142)
[ 14.826443] be2net 001a:50:00.0: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 14.826457] be2net 001a:50:00.0: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 14.830633] pseries_rng: Registering IBM pSeries RNG driver
Starting systemd-vconsole-setup.service - Virtual Console Setup...
[ 15.092061] HVCS: vty-server@30000004 added to the vio bus.
[ 15.092145] HVCS: Driver registered.
[ 15.143558] ibmveth 30000002 net0: renamed from eth0
Activating swap dev-disk-by\x2duui…1a62-ac52-4fdf-a198-ad57f5a6b44e...
[ 15.192550] Adding 2097088k swap on /dev/sda8. Priority:-2 extents:1 across:2097088k
[ OK ] Activated swap dev-disk-by\x2duuid…d51a62-ac52-4fdf-a198-ad57f5a6b44e.
[ OK ] Reached target swap.target - Swaps.
[ 15.256301] bnx2x 0021:01:00.0: msix capability found
[ 15.256603] bnx2x 0021:01:00.0: enabling device (0140 -> 0142)
[ 15.259734] bnx2x 0021:01:00.0: ibm,query-pe-dma-windows(53) 10000 8000000 20000021 returned 0, lb=1000000 ps=3 wn=1
[ 15.322465] bnx2x 0021:01:00.0: ibm,create-pe-dma-window(54) 10000 8000000 20000021 10 25 returned 0 (liobn = 0x70000021 starting addr = 8000000 0)
[ 15.406051] bnx2x 0021:01:00.0: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 15.406082] bnx2x 0021:01:00.0: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 15.406272] bnx2x 0021:01:00.0: part number 0-0-0-0
[ OK ] Finished systemd-vconsole-setup.service - Virtual Console Setup.
[ 15.492370] bnx2x 0021:01:00.0: 0.000 Gb/s available PCIe bandwidth (Unknown x8 link)
[ 15.492457] bnx2x 0021:01:00.1: msix capability found
[ 15.492676] bnx2x 0021:01:00.1: enabling device (0140 -> 0142)
[ 15.495496] bnx2x 0021:01:00.1: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 15.495510] bnx2x 0021:01:00.1: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 15.495675] bnx2x 0021:01:00.1: part number 0-0-0-0
[ 15.561848] bnx2x 0021:01:00.1: 0.000 Gb/s available PCIe bandwidth (Unknown x8 link)
[ 15.561906] bnx2x 0021:01:00.2: msix capability found
[ 15.562084] bnx2x 0021:01:00.2: enabling device (0140 -> 0142)
[ 15.564896] bnx2x 0021:01:00.2: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 15.564910] bnx2x 0021:01:00.2: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 15.565076] bnx2x 0021:01:00.2: part number 0-0-0-0
[ OK ] Finished systemd-tmpfiles-setup.se…reate System Files and Directories.
Starting auditd.service - Security Audit Logging Service...
[ 15.632302] bnx2x 0021:01:00.2: 0.000 Gb/s available PCIe bandwidth (Unknown x8 link)
[ 15.632369] bnx2x 0021:01:00.3: msix capability found
[ 15.632570] bnx2x 0021:01:00.3: enabling device (0140 -> 0142)
[ 15.635357] bnx2x 0021:01:00.3: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 15.635370] bnx2x 0021:01:00.3: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 15.635535] bnx2x 0021:01:00.3: part number 0-0-0-0
[ 15.701796] bnx2x 0021:01:00.3: 0.000 Gb/s available PCIe bandwidth (Unknown x8 link)
[ 15.718280] bnx2x 0021:01:00.3 enP33p1s0f3: renamed from eth3
[ 15.718811] bnx2x 0021:01:00.1 enP33p1s0f1: renamed from eth1
[ 15.719119] bnx2x 0021:01:00.0 enP33p1s0f0: renamed from eth0
[ 15.719404] bnx2x 0021:01:00.2 enP33p1s0f2: renamed from eth2
[ OK ] Started auditd.service - Security Audit Logging Service.
Starting audit-rules.service - Load Audit Rules...
Starting systemd-update-utmp.servi…ord System Boot/Shutdown in UTMP...
[ OK ] Finished systemd-update-utmp.servi…ecord System Boot/Shutdown in UTMP.
[ OK ] Reached target sysinit.target - System Initialization.
[ OK ] Started dnf-makecache.timer - dnf makecache --timer.
[ OK ] Started fstrim.timer - Discard unused filesystem blocks once a week.
[ OK ] Started logrotate.timer - Daily rotation of log files.
[ OK ] Started plocate-updatedb.timer - Update the plocate database daily.
[ OK ] Started raid-check.timer - Weekly RAID setup health check.
[ OK ] Started systemd-tmpfiles-clean.tim…y Cleanup of Temporary Directories.
Starting cockpit.socket - Cockpit Web Service Socket...
[ OK ] Listening on dbus.socket - D-Bus System Message Bus Socket.
[ OK ] Listening on pcscd.socket - PC/SC Smart Card Daemon Activation Socket.
[ OK ] Listening on sshd-unix-local.socke…temd-ssh-generator, AF_UNIX Local).
[ OK ] Listening on sshd-vsock.socket - O… (systemd-ssh-generator, AF_VSOCK).
[ OK ] Reached target ssh-access.target - SSH Access Available.
[ OK ] Listening on sssd-kcm.socket - SSS…ros Cache Manager responder socket.
[ OK ] Listening on systemd-hostnamed.socket - Hostname Service Socket.
Starting dbus-broker.service - D-Bus System Message Bus...
[ OK ] Finished audit-rules.service - Load Audit Rules.
[ OK ] Listening on cockpit.socket - Cockpit Web Service Socket.
[ OK ] Reached target sockets.target - Socket Units.
[ 16.156791] be2net 001a:50:00.0: FW config: function_mode=0x2, function_caps=0x874006
[ OK ] Started dbus-broker.service - D-Bus System Message Bus.
[ OK ] Reached target basic.target - Basic System.
Starting chronyd.service - NTP client/server...
Starting dracut-shutdown.service -…store /run/initramfs on shutdown...
Starting firewalld.service - firewalld - dynamic firewall daemon...
[ OK ] Started irqbalance.service - irqbalance daemon.
Starting rtas_errd.service - ppc64…platform error handling) Service...
[ OK ] Reached target sshd-keygen.target.
[ OK ] Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 16.326785] be2net 001a:50:00.0: Using profile 0x29
Starting systemd-logind.service - User Login Management...
[ OK ] Finished dracut-shutdown.service - Restore /run/initramfs on shutdown.
[ 16.416783] be2net 001a:50:00.0: Max: txqs 18, rxqs 18, rss 17, eqs 20, vfs 80
[ 16.416798] be2net 001a:50:00.0: Max: uc-macs 16, mc-macs 40, vlans 16
[ 16.428575] be2net 001a:50:00.0: enabled 2 MSI-x vector(s) for NIC
[ OK ] Started rtas_errd.service - ppc64-… (platform error handling) Service.
[ OK ] Started systemd-logind.service - User Login Management.
[ 16.706804] be2net 001a:50:00.0: created 2 TX queue(s)
[ OK ] Started chronyd.service - NTP client/server.
[ 16.826782] be2net 001a:50:00.0: created 3 RX queue(s)
[ 16.907394] be2net 001a:50:00.0: FW version is 11.2.211.21
[ 16.907602] be2net 001a:50:00.0: opcode 36-1 failed:status 68-0
[ 16.907808] be2net 001a:50:00.0: HW Flow control - TX:0 RX:0
[ 16.920740] be2net 001a:50:00.0: Emulex OneConnect(Lancer): PF port 0
[ 16.920967] be2net 001a:50:00.1: enabling device (0140 -> 0142)
[ 16.921959] be2net 001a:50:00.1: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 16.921973] be2net 001a:50:00.1: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ OK ] Started firewalld.service - firewalld - dynamic firewall daemon.
[ OK ] Reached target network-pre.target - Preparation for Network.
Starting NetworkManager.service - Network Manager...
[ 18.306796] be2net 001a:50:00.1: FW config: function_mode=0x2, function_caps=0x874006
[ 18.446768] be2net 001a:50:00.1: Using profile 0x29
[ 18.536782] be2net 001a:50:00.1: Max: txqs 18, rxqs 18, rss 17, eqs 20, vfs 80
[ 18.536793] be2net 001a:50:00.1: Max: uc-macs 16, mc-macs 40, vlans 16
[ 18.548437] be2net 001a:50:00.1: enabled 2 MSI-x vector(s) for NIC
[ 18.856809] be2net 001a:50:00.1: created 2 TX queue(s)
[ 18.976808] be2net 001a:50:00.1: created 3 RX queue(s)
[ 19.066787] be2net 001a:50:00.1: Port 1: Physical Link is functional
[ 19.067401] be2net 001a:50:00.1: FW version is 11.2.211.21
[ 19.067607] be2net 001a:50:00.1: opcode 36-1 failed:status 68-0
[ 19.067813] be2net 001a:50:00.1: HW Flow control - TX:0 RX:0
[ 19.080551] be2net 001a:50:00.1: Emulex OneConnect(Lancer): PF port 1
[ 19.080748] be2net 001a:50:00.2: enabling device (0140 -> 0142)
[ 19.081664] be2net 001a:50:00.2: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 19.081677] be2net 001a:50:00.2: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
Starting systemd-hostnamed.service - Hostname Service...
[ OK ] Started systemd-hostnamed.service - Hostname Service.
[ OK ] Listening on systemd-rfkill.socket…ll Switch Status /dev/rfkill Watch.
Starting NetworkManager-dispatcher…anager Script Dispatcher Service...
[ OK ] Started NetworkManager-dispatcher.… Manager Script Dispatcher Service.
Starting polkit.service - Authorization Manager...
[ 20.436786] be2net 001a:50:00.2: FW config: function_mode=0x2, function_caps=0x874006
[ 20.457527] bnx2x 0021:01:00.0 enP33p1s0f0: using MSI-X IRQs: sp 218 fp[0] 220 ... fp[1] 221
[ 20.586786] be2net 001a:50:00.2: Using profile 0x29
[ 20.676785] be2net 001a:50:00.2: Max: txqs 18, rxqs 18, rss 17, eqs 20, vfs 20
[ 20.676799] be2net 001a:50:00.2: Max: uc-macs 16, mc-macs 40, vlans 16
[ 20.688587] be2net 001a:50:00.2: enabled 2 MSI-x vector(s) for NIC
[ OK ] Started polkit.service - Authorization Manager.
[ 21.127514] bnx2x 0021:01:00.1 enP33p1s0f1: using MSI-X IRQs: sp 222 fp[0] 224 ... fp[1] 225
[ 21.536815] be2net 001a:50:00.2: created 2 TX queue(s)
[ 21.666809] be2net 001a:50:00.2: created 3 RX queue(s)
[ 21.746811] be2net 001a:50:00.2: Port 2: Physical Link is functional
[ 21.747432] be2net 001a:50:00.2: FW version is 11.2.211.21
[ 21.748441] be2net 001a:50:00.2: HW Flow control - TX:1 RX:1
[ 21.754242] be2net 001a:50:00.2: Emulex OneConnect(Lancer): PF port 2
[ 21.754500] be2net 001a:50:00.3: enabling device (0140 -> 0142)
[ 21.755578] be2net 001a:50:00.3: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 21.755599] be2net 001a:50:00.3: lsa_required: 0, lsa_enabled: 0, direct mapping: 1
[ 21.957510] bnx2x 0021:01:00.2 enP33p1s0f2: using MSI-X IRQs: sp 226 fp[0] 228 ... fp[1] 229
[ 22.397511] bnx2x 0021:01:00.3 enP33p1s0f3: using MSI-X IRQs: sp 230 fp[0] 232 ... fp[1] 233
[ OK ] Started NetworkManager.service - Network Manager.
[ OK ] Reached target network.target - Network.
Starting NetworkManager-wait-onlin…ce - Network Manager Wait Online...
Starting hcn-init.service - hybrid…an and config for NetworkManager...
Starting rhsmcertd.service - Enabl…ate of entitlement certificates....
Starting sshd.service - OpenSSH server daemon...
Starting systemd-user-sessions.service - Permit User Sessions...
Starting tuned.service - Dynamic System Tuning Daemon...
[ OK ] Finished systemd-user-sessions.service - Permit User Sessions.
[ OK ] Started atd.service - Deferred execution scheduler.
[ OK ] Started crond.service - Command Scheduler.
[ OK ] Started getty@tty1.service - Getty on tty1.
[ OK ] Started serial-getty@hvc0.service - Serial Getty on hvc0.
[ OK ] Reached target getty.target - Login Prompts.
[ OK ] Started rhsmcertd.service - Enable…pdate of entitlement certificates..
[ 23.086793] be2net 001a:50:00.3: FW config: function_mode=0x2, function_caps=0x874006
[ OK ] Started sshd.service - OpenSSH server daemon.
[ 23.236786] be2net 001a:50:00.3: Using profile 0x29
[ 23.356791] be2net 001a:50:00.3: Max: txqs 18, rxqs 18, rss 17, eqs 20, vfs 20
[ 23.356808] be2net 001a:50:00.3: Max: uc-macs 16, mc-macs 40, vlans 16
[ 23.369139] be2net 001a:50:00.3: enabled 2 MSI-x vector(s) for NIC
[ 23.726794] be2net 001a:50:00.3: created 2 TX queue(s)
[ 23.906770] be2net 001a:50:00.3: created 3 RX queue(s)
[ 24.006813] be2net 001a:50:00.3: Port 3: Physical Link is functional
[ 24.007439] be2net 001a:50:00.3: FW version is 11.2.211.21
[ 24.008546] be2net 001a:50:00.3: HW Flow control - TX:1 RX:1
[ 24.012126] be2net 001a:50:00.3: Emulex OneConnect(Lancer): PF port 3
[ OK ] Finished hcn-init.service - hybrid…scan and config for NetworkManager.
[ 24.062678] be2net 001a:50:00.2 enP26p80s0f2: renamed from eth2
[ 24.063147] be2net 001a:50:00.0 enP26p80s0f0: renamed from eth0
[ 24.063634] be2net 001a:50:00.1 enP26p80s0f1: renamed from eth1
[ 24.064391] be2net 001a:50:00.3 enP26p80s0f3: renamed from eth3
[ 24.084584] be2net 001a:50:00.3 enP26p80s0f3: Link is Down
[ 24.102903] be2net 001a:50:00.1 enP26p80s0f1: Link is Down
[ 24.117863] be2net 001a:50:00.0 enP26p80s0f0: Link is Down
[ 24.132700] be2net 001a:50:00.2 enP26p80s0f2: Link is Down
[ OK ] Started tuned.service - Dynamic System Tuning Daemon.
On Thu, May 08, 2025 at 03:31:25PM +0530, Venkat Rao Bagalkote wrote: > > Attached is the complete boot up logs. Thanks. Can you please try the Crypto API chacha20poly1305 and see what happens there? If you have it built as a module you can load it with modprobe chacha20poly1305 Cheers, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
On 07.05.25 13:36, Herbert Xu wrote: > On Wed, May 07, 2025 at 01:03:06PM +0200, Thorsten Leemhuis wrote: >> >> """ >> ld: warning: discarding dynamic section .glink >> ld: warning: discarding dynamic section .plt >> ld: linkage table error against `poly1305_emit_arch' >> ld: stubs don't match calculated size >> ld: can not build stubs: bad value >> ld: lib/crypto/poly1305.o: in function `poly1305_final': >> /builddir/build/BUILD/kernel-6.15.0-build/kernel-next-20250507/linux-6.15.0-0.0.next.20250507.443.vanilla.fc43.ppc64le/lib/crypto/poly1305.c:65:(.text+0x2dc): undefined reference to `poly1305_emit_arch' >> ld: /builddir/build/BUILD/kernel-6.15.0-build/kernel-next-20250507/linux-6.15.0-0.0.next.20250507.443.vanilla.fc43.ppc64le/lib/crypto/poly1305.c:65:(.text+0x378): undefined reference to `poly1305_emit_arch' >> make[2]: *** [scripts/Makefile.vmlinux:91: vmlinux] Error 1 >> make[1]: *** [/builddir/build/BUILD/kernel-6.15.0-build/kernel-next-20250507/linux-6.15.0-0.0.next.20250507.443.vanilla.fc43.ppc64le/Makefile:1250: vmlinux] Error 2 >> """ > > Oops, the powerpc patch was missing the assembly part: Ha, happens, thx for providing the patch this quickly, it did the trick for me: Tested-by: Thorsten Leemhuis <linux@leemhuis.info> Ciao, Thorsten
© 2016 - 2025 Red Hat, Inc.