Hi, we tested your kernel and here are the results:
Overall result: PASSED
Merge: OK
Compile: OK
Test: OK
Tested-by: CKI Project <cki-project(a)redhat.com>
Kernel information:
Brew / Koji Task ID: 112045638
You can find all the details about the test run at
https://datawarehouse.cki-project.org/kcidb/checkouts/124483
One or more kernel tests failed:
We also see the following known issues which are not related to your changes:
Issue: NFS Connectathon: SELinux prevents rpcbind
URL: https://bugzilla.redhat.com/1758147
Affected tests:
x86_64 - Filesystem - NFS Connectathon
Tests that were not ran because of internal issues:
ppc64le - CKI/restraint
ppc64le - SELinux Custom Module Setup
ppc64le - machineinfo
ppc64le - Boot test
ppc64le - selinux-policy: serge-testsuite
ppc64le - Reboot test
If you find a failure unrelated to your changes, please ask the test maintainer to review it.
This will prevent the failures from being incorrectly reported in the future.
Please reply to this email if you have any questions about the tests that we
ran or if you have any suggestions on how to make future tests more effective.
,-. ,-.
( C ) ( K ) Continuous
`-',-.`-' Kernel
( I ) Integration
`-'
______________________________________________________________________________
Hi, we tested your kernel and here are the results:
Overall result: PASSED
Merge: OK
Compile: OK
Test: OK
Tested-by: CKI Project <cki-project(a)redhat.com>
Kernel information:
Brew / Koji Task ID: 111995681
You can find all the details about the test run at
https://datawarehouse.cki-project.org/kcidb/checkouts/124411
One or more kernel tests failed:
We also see the following known issues which are not related to your changes:
Issue: NFS Connectathon: SELinux prevents rpcbind
URL: https://bugzilla.redhat.com/1758147
Affected tests:
x86_64 - Filesystem - NFS Connectathon
Tests that were not ran because of internal issues:
ppc64le - CKI/restraint
ppc64le - SELinux Custom Module Setup
ppc64le - machineinfo
ppc64le - Boot test
ppc64le - selinux-policy: serge-testsuite
ppc64le - Reboot test
If you find a failure unrelated to your changes, please ask the test maintainer to review it.
This will prevent the failures from being incorrectly reported in the future.
Please reply to this email if you have any questions about the tests that we
ran or if you have any suggestions on how to make future tests more effective.
,-. ,-.
( C ) ( K ) Continuous
`-',-.`-' Kernel
( I ) Integration
`-'
______________________________________________________________________________
From: Ondrej Mosnáček on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2892
The recipes for $(KABI_TARBALL) and sources-rh reference the
kabi/kabi-current file, but they don't depend on the target that creates
it (dist-kabi), leading to occasional build failures under parallel
build (make -j). Fix it by adding the missing dependencies.
Signed-off-by: Ondrej Mosnacek <omosnace(a)redhat.com>
---
redhat/Makefile | 9 ++-------
1 files changed, 2 insertions(+), 7 deletions(-)
From: Justin M. Forbes <jforbes(a)fedoraproject.org>
Remove CONFIG_NET_EMATCH_STACK file for RHEL
This file was set to:
CONFIG_NET_EMATCH_STACK is not set
Unofortunately that is not a valid entry for this. It would require an
integer. In the past, Kconfig didn't care so much, but recent changes
make Kconfig error out on this and kill the build. We can simply delete
the entry because CONFIG_NET_EMATCH is not set for RHEL either, and that
is the only thing with a dep on CONFIG_NET_EMATCH_STACK.
Signed-off-by: Justin M. Forbes <jforbes(a)fedoraproject.org>
diff --git a/redhat/configs/rhel/generic/CONFIG_NET_EMATCH_STACK b/redhat/configs/rhel/generic/CONFIG_NET_EMATCH_STACK
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/rhel/generic/CONFIG_NET_EMATCH_STACK
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_NET_EMATCH_STACK is not set
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2900
From: Ondrej Mosnacek <omosnace(a)redhat.com>
redhat/Makefile: fix race condition when making the KABI tarball
The recipe for $(KABI_TARBALL) references the kabi/kabi-current file,
but it doesn't depend on the target that creates it (dist-kabi), leading
to occasional build failures under parallel build (make -j). Fix it by
making $(KABI_TARBALL) depend on dist-kabi.
Signed-off-by: Ondrej Mosnacek <omosnace(a)redhat.com>
diff --git a/redhat/Makefile b/redhat/Makefile
index blahblah..blahblah 100644
--- a/redhat/Makefile
+++ b/redhat/Makefile
@@ -601,7 +601,7 @@ $(TARBALL):
@scripts/create-tarball.sh
.PHONY: $(KABI_TARBALL)
-$(KABI_TARBALL):
+$(KABI_TARBALL): dist-kabi
@(cd kabi && tar -cJf $(KABI_TARBALL) kabi-rhel$(RHEL_MAJOR)* kabi-current)
.PHONY: $(KABIDW_TARBALL)
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2892