[OS-BUILD PATCH] redhat: avoid picking up stray editor backups when processing configs

2022-11-14 Thread Clark Williams (via Email Bridge)
From: Clark Williams redhat: avoid picking up stray editor backups when processing configs Emacs and vim both use a trailing '~' to designate a backup file. This can cause puzzling behavior in the config generation logic because the build_configs.sh script will pick up both CONFIG_FOO and CONFIG

[OS-BUILD PATCHv2 1/2] redhat: make RHTEST stricter

2022-11-14 Thread Jonathan Toppins (via Email Bridge)
From: Jonathan Toppins redhat: make RHTEST stricter The test would originally match on any `-n` that existed in the MAKEFLAGS variable. This is not correct. Signed-off-by: Jonathan Toppins diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah 100644 --- a/redhat/Makefile +++

[OS-BUILD PATCHv2 2/2] redhat: override `make help` to include dist-help

2022-11-14 Thread Jonathan Toppins (via Email Bridge)
From: Jonathan Toppins redhat: override `make help` to include dist-help Override the upstream kernel `make help` target so we can inject distribution targets at the top of the help output. Signed-off-by: Jonathan Toppins diff --git a/makefile b/makefile index blahblah..blahblah 100644 --- a/

[OS-BUILD PATCHv2 0/2] redhat: override `make help` to include dist-help

2022-11-14 Thread Jonathan Toppins (via Email Bridge)
From: Jonathan Toppins on gitlab.com Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2144 Override the upstream kernel `make help` target so we can inject distribution targets at the top of the help output. Signed-off-by: Jonathan Toppins --- redhat/Makefile | 2 +-

Re: [OS-BUILD PATCH] redhat: override `make help` to include dist-help

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2144#note_1171642635 That looks like it keeps "-n" detection working. @jtoppins_redhat just add a new commit explaining what dzickus found (--no-print-directory, etc.) __

[OS-BUILD PATCH] redhat/Makefile: Fix RHJOBS grep warning

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/Makefile: Fix RHJOBS grep warning Calculating RHJOBS results in the warning grep: warning: stray \ before white space Resolve this by using [ ] to detect a space in the regex. Before fix: Search for "before white space" in https://s3.amazonaws.com/arr-ck

[OS-BUILD PATCH] redhat/Makefile: Fix RHJOBS grep warning

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat/Makefile: Fix RHJOBS grep warning Calculating RHJOBS results in the warning grep: warning: stray \ before white space Resolve this by using [ ] to detect a space in the regex. Before fix: Search for "before white space" in https://s3.amazonaws.com/arr-ck

Re: [OS-BUILD PATCH] redhat: override `make help` to include dist-help

2022-11-14 Thread Jonathan Toppins (via Email Bridge)
From: Jonathan Toppins on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2144#note_1171607519 Nice find. How would you like me to deal with it? Create a new commit, rebase, something else? ___ kernel mailing list -- kernel@lists.fe

Re: [OS-BUILD PATCH] redhat: override `make help` to include dist-help

2022-11-14 Thread Don Zickus (via Email Bridge)
From: Don Zickus on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2144#note_1171547161 @prarit @jtoppins_redhat - this change should fix it -ifneq (,$(findstring n,$(MAKEFLAGS))) +ifneq (,$(findstring n,$(filter-out --%,$(MAKEFLAGS _

Re: [OS-BUILD PATCH] redhat: override `make help` to include dist-help

2022-11-14 Thread Don Zickus (via Email Bridge)
From: Don Zickus on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2144#note_1171535058 @jtoppins_redhat - found it. https://gitlab.com/cki-project/kernel- ark/-/blob/os-build/redhat/Makefile#L22-26 You are being bitten by @prarit RHTEST checker. It looks for a '-n' and t

Re: [OS-BUILD PATCH] redhat: override `make help` to include dist-help

2022-11-14 Thread Don Zickus (via Email Bridge)
From: Don Zickus on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2144#note_1171514727 Oddly commenting that out, allows the dist-configs-check target to run and successfully generate the kernel-*.configs that are failing to copy over. Still investigating. _

[OS-BUILD PATCHv2] RHMAINTAINERS: Update for Nov 10 2022

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava RHMAINTAINERS: Update for Nov 10 2022 Update RHMAINTAINERS to latest. Signed-off-by: Prarit Bhargava diff --git a/redhat/rhdocs/MAINTAINERS/RHMAINTAINERS b/redhat/rhdocs/MAINTAINERS/RHMAINTAINERS index blahblah..blahblah 100644 --- a/redhat/rhdocs/MAINTAINERS/RHMAINTAIN

[OS-BUILD PATCHv4] redhat: Force remove tmp file

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Force remove tmp file If BTF is not enabled in the kernel config then .tmp_vmlinux.btf will not exist. The rpm build will throw an error because the file doesn't exist. Use 'rm -f' to delete the .tmp_vmlinux.btf file. Reported by: stan Signed-off-by: Prarit Bhar

[OS-BUILD PATCHv5 3/6] redhat: Move kernel-tools scripts into their own directory

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Move kernel-tools scripts into their own directory The redhat/ dir is messy and this is just a cleanup. Move the kernel-tools scripts into their own directory. Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah

[OS-BUILD PATCHv5 5/6] redhat: Move yaml files into their own directory

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Move yaml files into their own directory The redhat/scripts dir is messy and this is just a cleanup. Move the yaml files into their own directory. Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah 100644 --- a

[OS-BUILD PATCHv5 6/6] redhat: Move cross-compile scripts into their own directory

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Move cross-compile scripts into their own directory The redhat/scripts dir is messy and this is just a cleanup. Move the cross-compile scripts into their own directory. Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile.cross b/redhat/Makefile.cross ind

[OS-BUILD PATCHv5 0/6] redhat: Cleanup scripts

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2095 The redhat/ directory contains a bunch of scripts. These can be moved around and cleaned up. Signed-off-by: Prarit Bhargava --- redhat/scripts/ci/ark-update-configs.sh

[OS-BUILD PATCHv5 2/6] redhat: Move gen-* scripts into their own directory

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Move gen-* scripts into their own directory The redhat/ dir is messy and this is just a cleanup. Move the gen-* scripts, and the commit_template into their own directory. Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/redhat/Makefile index blahbla

[OS-BUILD PATCHv5 4/6] redhat: Move update_scripts.sh into redhat/scripts

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Move update_scripts.sh into redhat/scripts The redhat/scripts dir is messy and this is just a cleanup. Move upate_scripts.sh into redhat/scripts. Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah 100644 --- a/

[OS-BUILD PATCHv5 1/6] redhat: Move mod-* scripts into their own directory

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Move mod-* scripts into their own directory The redhat/ dir is messy and this is just a cleanup. Move the mod-* scripts into their own directory. Signed-off-by: Prarit Bhargava diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah 100644 --- a/

Re: [OS-BUILD PATCH] redhat: override `make help` to include dist-help

2022-11-14 Thread Jonathan Toppins (via Email Bridge)
From: Jonathan Toppins on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2144#note_1171422514 The only change that would even have a possibility is the `MAKEFLAGS += --no- print-directory` change. I don't see why not printing the directory descending into would cause an issu

[OS-BUILD PATCH] redhat: Remove cpupower files

2022-11-14 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Remove cpupower files The cpupower.config and cpupower.service files no longer serve a purpose. System level performance control is generally controlled by tuned and other system applications. Remove the cpupower files from the kernel. Signed-off-by: Prarit Bharga

Re: [OS-BUILD PATCH] redhat: override `make help` to include dist-help

2022-11-14 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2144#note_1171180269 Actually, the patch seems to break `make dist-srpm` when it runs the `sources- rh` make target. I am still trying to sort out why... ___ k

Re: [OS-BUILD PATCH] fs: fix leaked psi pressure state

2022-11-14 Thread Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2137#note_1170782780 This is upstream now. ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an email to kernel-le...@lists.fedora