✅ PASS (14/308 SKIPPED): Test report for 5.19.4-200.fc36 (fedora-36)

2022-08-26 Thread cki-project
Hi, we tested your kernel and here are the results:

Overall result: PASSED
 Merge: OK
   Compile: OK
  Test: OK

Tested-by: CKI Project 

Kernel information:
Brew / Koji Task ID: 91250244

You can find all the details about the test run at
https://datawarehouse.cki-project.org/kcidb/checkouts/51736

One or more kernel tests failed:

We also see the following known issues which are not related to your 
changes:
Issue: Storage - lvm thinp stqe test: ERROR: lvextend -L48 -rf 
testvg/snap1
URL: 
https://gitlab.com/redhat/centos-stream/tests/kernel/kernel-tests/-/issues/1349
Affected tests:
 aarch64 - Storage - lvm thinp stqe test
 ppc64le - Storage - lvm thinp stqe test
   s390x - Storage - lvm thinp stqe test
  x86_64 - Storage - lvm thinp stqe test
Issue: Storage blktests - blk: scsi/007: Reading from scsi_debug failed
URL: https://bugzilla.redhat.com/show_bug.cgi?id=2027550
Affected tests:
  x86_64 - Storage - blktests - blk
Issue: Storage block - storage fio numa: Performance comparison: 
min:40535 * 1.15 < max:81259
URL: https://bugzilla.redhat.com/show_bug.cgi?id=2032094
Affected tests:
  x86_64 - Storage - block - storage fio numa
Issue: selinux-policy: serge-testsuite: binder/test: TIMEOUT
URL: 
https://gitlab.com/redhat/centos-stream/tests/kernel/kernel-tests/-/issues/1345
Affected tests:
 aarch64 - selinux-policy: serge-testsuite
  x86_64 - selinux-policy: serge-testsuite
Issue: [upstream] [aarch64] WARNING: CPU: 0 PID: 1 at 
mm/page_alloc.c:5407 __alloc_pages+0x1a0/0x290
URL: 
https://lore.kernel.org/all/CA+QYu4rPbfH-4wNR06Vn=31rcgkffeb-krskn52jtig_uug...@mail.gmail.com
Affected tests:
 aarch64 - Boot test
Issue: NFS Connectathon: SELinux prevents rpcbind
URL: 
https://gitlab.com/redhat/centos-stream/tests/kernel/kernel-tests/-/issues/1284
Affected tests:
 aarch64 - NFS Connectathon


If you find a failure unrelated to your changes, please tag it at 
https://datawarehouse.cki-project.org .
This will prevent the failures from being incorrectly reported in the future.
If you don't have permissions to tag an issue, you can contact the CKI team or
test maintainers.

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
   `-'
__
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCH 2/3] redhat/scripts/expand_srpm.sh: Use Makefile variables

2022-08-26 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava 

redhat/scripts/expand_srpm.sh: Use Makefile variables

Exported Makefile variables are exported to all levels of scripts.

Signed-off-by: Prarit Bhargava 

diff --git a/redhat/scripts/expand_srpm.sh b/redhat/scripts/expand_srpm.sh
index blahblah..blahblah 100755
--- a/redhat/scripts/expand_srpm.sh
+++ b/redhat/scripts/expand_srpm.sh
@@ -1,18 +1,9 @@
 #!/bin/sh
 
-# $1: git source tree directory
-# $2: cloned tree
-# $3: package name
-# $4: name of srpm
-# shellcheck disable=SC2034 # tree, redhat unused
+# $1: cloned tree
+cloned="$1";
 
-tree="$1";
-cloned="$2";
-package_name="$3";
-redhat="$1/redhat";
-srpm="$4";
-
-cd "$cloned/$package_name" || die "\"$cloned\" doesn't seem to have a dist-git 
clone";
+cd "$cloned/$PACKAGE_NAME" || die "\"$cloned\" doesn't seem to have a dist-git 
clone";
 
 # delete everything in the cloned tree to avoid having stale files
 rm -r -- *
@@ -23,7 +14,7 @@ echo "*.xz" > .gitignore
 echo "*.bz2" >> .gitignore
 
 # expand the srpm into the tree
-rpm2cpio "$srpm" | cpio -idmv
+rpm2cpio "$SRPM" | cpio -idmv
 
 git add -A
 
diff --git a/redhat/scripts/rh-dist-git.sh b/redhat/scripts/rh-dist-git.sh
index blahblah..blahblah 100755
--- a/redhat/scripts/rh-dist-git.sh
+++ b/redhat/scripts/rh-dist-git.sh
@@ -32,7 +32,7 @@ $RHPKG_BIN switch-branch "$RHDISTGIT_BRANCH" || die 
"switching to branch $RHDIST
 
 echo "Copying updated files"
 # copy the required files (redhat/git/files)
-"$REDHAT"/scripts/expand_srpm.sh "$TOPDIR" "$tmpdir" "$PACKAGE_NAME" "$SRPM";
+"$REDHAT"/scripts/expand_srpm.sh "$tmpdir";
 
 echo "Uploading new tarballs"
 # upload tarballs

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1994
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCH 3/3] redhat/scripts/rh-dist-git.sh: Fix outdated cvs reference

2022-08-26 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava 

redhat/scripts/rh-dist-git.sh: Fix outdated cvs reference

dontdiff is in the redhat/git directory.

Signed-off-by: Prarit Bhargava 

diff --git a/redhat/scripts/rh-dist-git.sh b/redhat/scripts/rh-dist-git.sh
index blahblah..blahblah 100755
--- a/redhat/scripts/rh-dist-git.sh
+++ b/redhat/scripts/rh-dist-git.sh
@@ -46,7 +46,7 @@ upload_list="$TARBALL $KABI_TARBALL $KABIDW_TARBALL"
 upload $upload_list
 
 echo "Creating diff for review ($tmpdir/diff) and changelog"
-# diff the result (redhat/cvs/dontdiff). note: diff reuturns 1 if
+# diff the result (redhat/git/dontdiff). note: diff reuturns 1 if
 # differences were found
 diff -X "$REDHAT"/git/dontdiff -upr "$tmpdir/$PACKAGE_NAME" 
"$REDHAT"/rpm/SOURCES/ > "$tmpdir"/diff;
 # creating the changelog file

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1994
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCH 1/3] redhat/scripts/clone_tree.sh: Use Makefile variables

2022-08-26 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava 

redhat/scripts/clone_tree.sh: Use Makefile variables

Exported Makefile variables are exported to all levels of scripts.

Signed-off-by: Prarit Bhargava 

diff --git a/redhat/scripts/clone_tree.sh b/redhat/scripts/clone_tree.sh
index blahblah..blahblah 100755
--- a/redhat/scripts/clone_tree.sh
+++ b/redhat/scripts/clone_tree.sh
@@ -1,17 +1,6 @@
 #!/bin/bash
 
 # Clones a RHEL dist-git tree using a local reference if existent
-# $1: repository
-# $2: local clone
-# $3: use a different tmp directory (for people with SSDs)
-# $4: package name
-
-repo="$1";
-local="$2";
-tmp_dir="$3";
-package_name="$4";
-rhel_major="$5";
-rhpkg_bin="$6";
 
 function die
 {
@@ -20,23 +9,23 @@ function die
 }
 
 date=$(date +"%Y-%m-%d")
-tmp="$(mktemp -d --tmpdir="$tmp_dir" RHEL"$rhel_major"."$date".)";
+tmp="$(mktemp -d --tmpdir="$RHDISTGIT_TMP" 
RHEL"$RHEL_MAJOR"."$date".)";
 cd "$tmp" || die "Unable to create temporary directory";
 
-if [[ -n $repo && -n $local ]]; then
-   git clone --reference "$local" "$repo" "$package_name" >/dev/null || 
die "Unable to clone using local cache";
+if [[ -n $RHDISTGIT && -n $RHDISTGIT_CACHE ]]; then
+   git clone --reference "$RHDISTGIT_CACHE" "$RHDISTGIT" "$PACKAGE_NAME" 
>/dev/null || die "Unable to clone using local cache";
# if there're tarballs present that are listed in the "sources" file,
# copy them or it'll be downloaded again
-   if [ -e "$local/sources" ]; then
+   if [ -e "$RHDISTGIT_CACHE/sources" ]; then
while IFS= read -r i; do
-   if [ -f "$local/$i" ]; then
-   cp "$local/$i" "$tmp/kernel/";
+   if [ -f "$RHDISTGIT_CACHE/$i" ]; then
+   cp "$RHDISTGIT_CACHE/$i" "$tmp/kernel/";
fi
-   done < "$local"/sources
+   done < "$RHDISTGIT_CACHE"/sources
fi
 else
-   echo "No local repo, cloning using $rhpkg_bin" >&2;
-   $rhpkg_bin clone "$package_name" >/dev/null || die "Unable to clone 
using $rhpkg_bin";
+   echo "No local repo, cloning using $RHPKG_BIN" >&2;
+   $RHPKG_BIN clone "$PACKAGE_NAME" >/dev/null || die "Unable to clone 
using $RHPKG_BIN";
 fi
 
 echo "$tmp";
diff --git a/redhat/scripts/rh-dist-git.sh b/redhat/scripts/rh-dist-git.sh
index blahblah..blahblah 100755
--- a/redhat/scripts/rh-dist-git.sh
+++ b/redhat/scripts/rh-dist-git.sh
@@ -23,7 +23,7 @@ fi
 
 echo "Cloning the repository"
 # clone the dist-git, considering cache
-tmpdir=$("$REDHAT"/scripts/clone_tree.sh "$RHDISTGIT" "$RHDISTGIT_CACHE" 
"$RHDISTGIT_TMP" "$PACKAGE_NAME" "$RHEL_MAJOR" "$RHPKG_BIN");
+tmpdir=$("$REDHAT"/scripts/clone_tree.sh);
 
 echo "Switching the branch"
 # change in the correct branch

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1994
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCH 0/3] redhat/scripts/rh-dist-git.sh: General fixups

2022-08-26 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1994

Use Makefile variables throughout the scripts, and fix a minor typo.

Signed-off-by: Prarit Bhargava 

---
 redhat/scripts/clone_tree.sh  |  29 +
 redhat/scripts/expand_srpm.sh |  17 -
 redhat/scripts/rh-dist-git.sh |   6 +++---
 3 files changed, 16 insertions(+), 36 deletions(-)
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [OS-BUILD PATCHv3] redhat: configs: move CONFIG_SERIAL_MULTI_INSTANTIATE=m settings to common/x86

2022-08-26 Thread Jaroslav Kysela (via Email Bridge)
From: Jaroslav Kysela on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1996#note_1079326915

Oops. You're right. Removed in v3. Thank you for your review.
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCHv3] redhat: configs: move CONFIG_SERIAL_MULTI_INSTANTIATE=m settings to common/x86

2022-08-26 Thread Jaroslav Kysela (via Email Bridge)
From: Jaroslav Kysela 

redhat: configs: move CONFIG_SERIAL_MULTI_INSTANTIATE=m settings to common/x86

Also remove the ark/generic/CONFIG_SERIAL_MULTI_INSTANTIATE configuration file.

Signed-off-by: Jaroslav Kysela 

diff --git a/redhat/configs/ark/generic/CONFIG_SERIAL_MULTI_INSTANTIATE 
b/redhat/configs/ark/generic/CONFIG_SERIAL_MULTI_INSTANTIATE
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/ark/generic/CONFIG_SERIAL_MULTI_INSTANTIATE
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_SERIAL_MULTI_INSTANTIATE is not set
diff --git a/redhat/configs/fedora/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE 
b/redhat/configs/common/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
rename from redhat/configs/fedora/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
rename to redhat/configs/common/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
index blahblah..blahblah 100644
--- a/redhat/configs/fedora/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
+++ b/redhat/configs/common/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1996
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [OS-BUILD PATCHv2] redhat: configs: move CONFIG_SERIAL_MULTI_INSTANTIATE=m settings to common/x86

2022-08-26 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1996#note_1079303623

@jkysela I think you also want to delete
./redhat/configs/ark/generic/CONFIG_SERIAL_MULTI_INSTANTIATE ?
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCHv2] redhat: configs: move CONFIG_SERIAL_MULTI_INSTANTIATE=m settings to common/x86

2022-08-26 Thread Jaroslav Kysela (via Email Bridge)
From: Jaroslav Kysela 

redhat: configs: move CONFIG_SERIAL_MULTI_INSTANTIATE=m settings to common/x86

Signed-off-by: Jaroslav Kysela 

diff --git a/redhat/configs/fedora/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE 
b/redhat/configs/common/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
rename from redhat/configs/fedora/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
rename to redhat/configs/common/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
index blahblah..blahblah 100644
--- a/redhat/configs/fedora/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
+++ b/redhat/configs/common/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1996
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCH] redhat: configs: move CONFIG_SERIAL_MULTI_INSTANTIATE=m settings to common/x86_64

2022-08-26 Thread Jaroslav Kysela (via Email Bridge)
From: Jaroslav Kysela 

redhat: configs: move CONFIG_SERIAL_MULTI_INSTANTIATE=m settings to 
common/x86_64

Signed-off-by: Jaroslav Kysela 

diff --git a/redhat/configs/fedora/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE 
b/redhat/configs/common/generic/x86/x86_64/CONFIG_SERIAL_MULTI_INSTANTIATE
rename from redhat/configs/fedora/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
rename to 
redhat/configs/common/generic/x86/x86_64/CONFIG_SERIAL_MULTI_INSTANTIATE
index blahblah..blahblah 100644
--- a/redhat/configs/fedora/generic/x86/CONFIG_SERIAL_MULTI_INSTANTIATE
+++ b/redhat/configs/common/generic/x86/x86_64/CONFIG_SERIAL_MULTI_INSTANTIATE

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1996
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue