[OS-BUILD PATCHv6 0/7] redhat: Fix PACKAGE_NAME variable
by Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2253
The PACKAGE_NAME variable description implies that 'make
PACKAGE_NAME="foo" dist-all-rpms' will create a set of rpms with Name
"foo". This, unfortunately, does not work.
The PACKAGE_NAME variable must be first renamed to SPECPACKAGE_NAME to
comply with the naming convention for Makefile variables that are passed
into the kernel spec file. In addition to that there are several other
cases where 'kernel' is hardcoded in the scripts and spec files. And
lastly, the Makefile assumes that the kernel spec file is always called
"kernel.spec".
Fix these issues, and allow users to set the kernel rpm Name by setting
SPECPACKAGE_NAME.
Signed-off-by: Prarit Bhargava <prarit(a)redhat.com>
---
redhat/configs/build_configs.sh | 8 +-
redhat/configs/generate_all_configs.sh | 11 +-
redhat/configs/process_configs.sh | 4 +-
redhat/docs/kernel-naming.rst | 4 +-
redhat/koji/Makefile | 4 +-
redhat/scripts/genspec/genspec.sh | 1 +
redhat/scripts/expand_srpm.sh | 2 +-
redhat/scripts/rh-dist-git.sh | 14 ++--
redhat/self-test/data/centos-2585cf9dfaad.el7 | 5 +-
redhat/self-test/data/centos-2585cf9dfaad.el7.spec | 1 +
redhat/self-test/data/centos-2585cf9dfaad.fc25 | 5 +-
redhat/self-test/data/centos-2585cf9dfaad.fc25.spec | 1 +
redhat/self-test/data/centos-78e36f3b0dae.el7 | 5 +-
redhat/self-test/data/centos-78e36f3b0dae.el7.spec | 1 +
redhat/self-test/data/centos-78e36f3b0dae.fc25 | 5 +-
redhat/self-test/data/centos-78e36f3b0dae.fc25.spec | 1 +
redhat/self-test/data/centos-df0cc57e057f.el7 | 5 +-
redhat/self-test/data/centos-df0cc57e057f.el7.spec | 1 +
redhat/self-test/data/centos-df0cc57e057f.fc25 | 5 +-
redhat/self-test/data/centos-df0cc57e057f.fc25.spec | 1 +
redhat/self-test/data/centos-fce15c45d3fb.el7 | 5 +-
redhat/self-test/data/centos-fce15c45d3fb.el7.spec | 1 +
redhat/self-test/data/centos-fce15c45d3fb.fc25 | 5 +-
redhat/self-test/data/centos-fce15c45d3fb.fc25.spec | 1 +
redhat/self-test/data/fedora-2585cf9dfaad.el7 | 5 +-
redhat/self-test/data/fedora-2585cf9dfaad.el7.spec | 1 +
redhat/self-test/data/fedora-2585cf9dfaad.fc25 | 5 +-
redhat/self-test/data/fedora-2585cf9dfaad.fc25.spec | 1 +
redhat/self-test/data/fedora-78e36f3b0dae.el7 | 5 +-
redhat/self-test/data/fedora-78e36f3b0dae.el7.spec | 1 +
redhat/self-test/data/fedora-78e36f3b0dae.fc25 | 5 +-
redhat/self-test/data/fedora-78e36f3b0dae.fc25.spec | 1 +
redhat/self-test/data/fedora-df0cc57e057f.el7 | 5 +-
redhat/self-test/data/fedora-df0cc57e057f.el7.spec | 1 +
redhat/self-test/data/fedora-df0cc57e057f.fc25 | 5 +-
redhat/self-test/data/fedora-df0cc57e057f.fc25.spec | 1 +
redhat/self-test/data/fedora-fce15c45d3fb.el7 | 5 +-
redhat/self-test/data/fedora-fce15c45d3fb.el7.spec | 1 +
redhat/self-test/data/fedora-fce15c45d3fb.fc25 | 5 +-
redhat/self-test/data/fedora-fce15c45d3fb.fc25.spec | 1 +
redhat/self-test/data/rhel-2585cf9dfaad.el7 | 5 +-
redhat/self-test/data/rhel-2585cf9dfaad.el7.spec | 1 +
redhat/self-test/data/rhel-2585cf9dfaad.fc25 | 5 +-
redhat/self-test/data/rhel-2585cf9dfaad.fc25.spec | 1 +
redhat/self-test/data/rhel-78e36f3b0dae.el7 | 5 +-
redhat/self-test/data/rhel-78e36f3b0dae.el7.spec | 1 +
redhat/self-test/data/rhel-78e36f3b0dae.fc25 | 5 +-
redhat/self-test/data/rhel-78e36f3b0dae.fc25.spec | 1 +
redhat/self-test/data/rhel-df0cc57e057f.el7 | 5 +-
redhat/self-test/data/rhel-df0cc57e057f.el7.spec | 1 +
redhat/self-test/data/rhel-df0cc57e057f.fc25 | 5 +-
redhat/self-test/data/rhel-df0cc57e057f.fc25.spec | 1 +
redhat/self-test/data/rhel-fce15c45d3fb.el7 | 5 +-
redhat/self-test/data/rhel-fce15c45d3fb.el7.spec | 1 +
redhat/self-test/data/rhel-fce15c45d3fb.fc25 | 5 +-
redhat/self-test/data/rhel-fce15c45d3fb.fc25.spec | 1 +
redhat/Makefile | 34 ++++++---
redhat/Makefile.variables | 10 +-
redhat/kernel.spec.template | 68 ++++++++++----------
59 files changed, 183 insertions(+), 121 deletions(-)
3 months, 2 weeks
[OS-BUILD PATCHv5 0/7] redhat: Fix PACKAGE_NAME variable
by Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2253
The PACKAGE_NAME variable description implies that 'make
PACKAGE_NAME="foo" dist-all-rpms' will create a set of rpms with Name
"foo". This, unfortunately, does not work.
The PACKAGE_NAME variable must be first renamed to SPECPACKAGE_NAME to
comply with the naming convention for Makefile variables that are passed
into the kernel spec file. In addition to that there are several other
cases where 'kernel' is hardcoded in the scripts and spec files. And
lastly, the Makefile assumes that the kernel spec file is always called
"kernel.spec".
Fix these issues, and allow users to set the kernel rpm Name by setting
SPECPACKAGE_NAME.
Signed-off-by: Prarit Bhargava <prarit(a)redhat.com>
---
redhat/configs/build_configs.sh | 8 +-
redhat/configs/generate_all_configs.sh | 11 +-
redhat/configs/process_configs.sh | 4 +-
redhat/docs/kernel-naming.rst | 4 +-
redhat/koji/Makefile | 4 +-
redhat/scripts/genspec/genspec.sh | 1 +
redhat/scripts/expand_srpm.sh | 2 +-
redhat/scripts/rh-dist-git.sh | 14 ++--
redhat/self-test/data/centos-2585cf9dfaad.el7 | 5 +-
redhat/self-test/data/centos-2585cf9dfaad.el7.spec | 1 +
redhat/self-test/data/centos-2585cf9dfaad.fc25 | 5 +-
redhat/self-test/data/centos-2585cf9dfaad.fc25.spec | 1 +
redhat/self-test/data/centos-78e36f3b0dae.el7 | 5 +-
redhat/self-test/data/centos-78e36f3b0dae.el7.spec | 1 +
redhat/self-test/data/centos-78e36f3b0dae.fc25 | 5 +-
redhat/self-test/data/centos-78e36f3b0dae.fc25.spec | 1 +
redhat/self-test/data/centos-df0cc57e057f.el7 | 5 +-
redhat/self-test/data/centos-df0cc57e057f.el7.spec | 1 +
redhat/self-test/data/centos-df0cc57e057f.fc25 | 5 +-
redhat/self-test/data/centos-df0cc57e057f.fc25.spec | 1 +
redhat/self-test/data/centos-fce15c45d3fb.el7 | 5 +-
redhat/self-test/data/centos-fce15c45d3fb.el7.spec | 1 +
redhat/self-test/data/centos-fce15c45d3fb.fc25 | 5 +-
redhat/self-test/data/centos-fce15c45d3fb.fc25.spec | 1 +
redhat/self-test/data/fedora-2585cf9dfaad.el7 | 5 +-
redhat/self-test/data/fedora-2585cf9dfaad.el7.spec | 1 +
redhat/self-test/data/fedora-2585cf9dfaad.fc25 | 5 +-
redhat/self-test/data/fedora-2585cf9dfaad.fc25.spec | 1 +
redhat/self-test/data/fedora-78e36f3b0dae.el7 | 5 +-
redhat/self-test/data/fedora-78e36f3b0dae.el7.spec | 1 +
redhat/self-test/data/fedora-78e36f3b0dae.fc25 | 5 +-
redhat/self-test/data/fedora-78e36f3b0dae.fc25.spec | 1 +
redhat/self-test/data/fedora-df0cc57e057f.el7 | 5 +-
redhat/self-test/data/fedora-df0cc57e057f.el7.spec | 1 +
redhat/self-test/data/fedora-df0cc57e057f.fc25 | 5 +-
redhat/self-test/data/fedora-df0cc57e057f.fc25.spec | 1 +
redhat/self-test/data/fedora-fce15c45d3fb.el7 | 5 +-
redhat/self-test/data/fedora-fce15c45d3fb.el7.spec | 1 +
redhat/self-test/data/fedora-fce15c45d3fb.fc25 | 5 +-
redhat/self-test/data/fedora-fce15c45d3fb.fc25.spec | 1 +
redhat/self-test/data/rhel-2585cf9dfaad.el7 | 5 +-
redhat/self-test/data/rhel-2585cf9dfaad.el7.spec | 1 +
redhat/self-test/data/rhel-2585cf9dfaad.fc25 | 5 +-
redhat/self-test/data/rhel-2585cf9dfaad.fc25.spec | 1 +
redhat/self-test/data/rhel-78e36f3b0dae.el7 | 5 +-
redhat/self-test/data/rhel-78e36f3b0dae.el7.spec | 1 +
redhat/self-test/data/rhel-78e36f3b0dae.fc25 | 5 +-
redhat/self-test/data/rhel-78e36f3b0dae.fc25.spec | 1 +
redhat/self-test/data/rhel-df0cc57e057f.el7 | 5 +-
redhat/self-test/data/rhel-df0cc57e057f.el7.spec | 1 +
redhat/self-test/data/rhel-df0cc57e057f.fc25 | 5 +-
redhat/self-test/data/rhel-df0cc57e057f.fc25.spec | 1 +
redhat/self-test/data/rhel-fce15c45d3fb.el7 | 5 +-
redhat/self-test/data/rhel-fce15c45d3fb.el7.spec | 1 +
redhat/self-test/data/rhel-fce15c45d3fb.fc25 | 5 +-
redhat/self-test/data/rhel-fce15c45d3fb.fc25.spec | 1 +
redhat/Makefile | 34 ++++++---
redhat/Makefile.variables | 10 +-
redhat/kernel.spec.template | 68 ++++++++++----------
59 files changed, 183 insertions(+), 121 deletions(-)
3 months, 2 weeks
[OS-BUILD PATCHv4 0/7] redhat: Fix PACKAGE_NAME variable
by Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2253
The PACKAGE_NAME variable description implies that 'make
PACKAGE_NAME="foo" dist-all-rpms' will create a set of rpms with Name
"foo". This, unfortunately, does not work.
The PACKAGE_NAME variable must be first renamed to SPECPACKAGE_NAME to
comply with the naming convention for Makefile variables that are passed
into the kernel spec file. In addition to that there are several other
cases where 'kernel' is hardcoded in the scripts and spec files. And
lastly, the Makefile assumes that the kernel spec file is always called
"kernel.spec".
Fix these issues, and allow users to set the kernel rpm Name by setting
SPECPACKAGE_NAME.
Signed-off-by: Prarit Bhargava <prarit(a)redhat.com>
---
redhat/configs/build_configs.sh | 8 +-
redhat/configs/generate_all_configs.sh | 11 +-
redhat/configs/process_configs.sh | 4 +-
redhat/docs/kernel-naming.rst | 4 +-
redhat/koji/Makefile | 4 +-
redhat/scripts/genspec/genspec.sh | 1 +
redhat/scripts/expand_srpm.sh | 2 +-
redhat/scripts/rh-dist-git.sh | 14 +-
redhat/self-test/data/centos-2585cf9dfaad.el7 | 5 +-
redhat/self-test/data/centos-2585cf9dfaad.el7.spec | 1 +
redhat/self-test/data/centos-2585cf9dfaad.fc25 | 5 +-
redhat/self-test/data/centos-2585cf9dfaad.fc25.spec | 1 +
redhat/self-test/data/centos-78e36f3b0dae.el7 | 5 +-
redhat/self-test/data/centos-78e36f3b0dae.el7.spec | 1 +
redhat/self-test/data/centos-78e36f3b0dae.fc25 | 5 +-
redhat/self-test/data/centos-78e36f3b0dae.fc25.spec | 1 +
redhat/self-test/data/centos-df0cc57e057f.el7 | 5 +-
redhat/self-test/data/centos-df0cc57e057f.el7.spec | 1 +
redhat/self-test/data/centos-df0cc57e057f.fc25 | 5 +-
redhat/self-test/data/centos-df0cc57e057f.fc25.spec | 1 +
redhat/self-test/data/centos-fce15c45d3fb.el7 | 5 +-
redhat/self-test/data/centos-fce15c45d3fb.el7.spec | 1 +
redhat/self-test/data/centos-fce15c45d3fb.fc25 | 5 +-
redhat/self-test/data/centos-fce15c45d3fb.fc25.spec | 1 +
redhat/self-test/data/fedora-2585cf9dfaad.el7 | 5 +-
redhat/self-test/data/fedora-2585cf9dfaad.el7.spec | 1 +
redhat/self-test/data/fedora-2585cf9dfaad.fc25 | 5 +-
redhat/self-test/data/fedora-2585cf9dfaad.fc25.spec | 1 +
redhat/self-test/data/fedora-78e36f3b0dae.el7 | 5 +-
redhat/self-test/data/fedora-78e36f3b0dae.el7.spec | 1 +
redhat/self-test/data/fedora-78e36f3b0dae.fc25 | 5 +-
redhat/self-test/data/fedora-78e36f3b0dae.fc25.spec | 1 +
redhat/self-test/data/fedora-df0cc57e057f.el7 | 5 +-
redhat/self-test/data/fedora-df0cc57e057f.el7.spec | 1 +
redhat/self-test/data/fedora-df0cc57e057f.fc25 | 5 +-
redhat/self-test/data/fedora-df0cc57e057f.fc25.spec | 1 +
redhat/self-test/data/fedora-fce15c45d3fb.el7 | 5 +-
redhat/self-test/data/fedora-fce15c45d3fb.el7.spec | 1 +
redhat/self-test/data/fedora-fce15c45d3fb.fc25 | 5 +-
redhat/self-test/data/fedora-fce15c45d3fb.fc25.spec | 1 +
redhat/self-test/data/rhel-2585cf9dfaad.el7 | 5 +-
redhat/self-test/data/rhel-2585cf9dfaad.el7.spec | 1 +
redhat/self-test/data/rhel-2585cf9dfaad.fc25 | 5 +-
redhat/self-test/data/rhel-2585cf9dfaad.fc25.spec | 1 +
redhat/self-test/data/rhel-78e36f3b0dae.el7 | 5 +-
redhat/self-test/data/rhel-78e36f3b0dae.el7.spec | 1 +
redhat/self-test/data/rhel-78e36f3b0dae.fc25 | 5 +-
redhat/self-test/data/rhel-78e36f3b0dae.fc25.spec | 1 +
redhat/self-test/data/rhel-df0cc57e057f.el7 | 5 +-
redhat/self-test/data/rhel-df0cc57e057f.el7.spec | 1 +
redhat/self-test/data/rhel-df0cc57e057f.fc25 | 5 +-
redhat/self-test/data/rhel-df0cc57e057f.fc25.spec | 1 +
redhat/self-test/data/rhel-fce15c45d3fb.el7 | 5 +-
redhat/self-test/data/rhel-fce15c45d3fb.el7.spec | 1 +
redhat/self-test/data/rhel-fce15c45d3fb.fc25 | 5 +-
redhat/self-test/data/rhel-fce15c45d3fb.fc25.spec | 1 +
redhat/Makefile | 34 +-
redhat/Makefile.variables | 10 +-
redhat/kernel-rh.changelog-9.99 | 1771 ++++++++++
redhat/kernel-rh.spec.template | 3238 +++++++++++++++++++
redhat/kernel.spec.template | 68 +-
61 files changed, 5192 insertions(+), 121 deletions(-)
3 months, 2 weeks
[OS-BUILD PATCHv6 0/3] redhat/kernel.spec.template: Add global
compression
variables
by Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2173
Most of the kernel and its packing is currently xz. There are two
exceptions: the aarch64 boot an initrd images [1] and KABI. Mark gzip as
only being necessary for aarch64, and change the KABI symbol compression
to xz.
There are other compression algorithms that are becoming more popular. To
prepare for this change, add a compression variable and compression file
extension variable.
Signed-off-by: Prarit Bhargava <prarit(a)redhat.com>
[1] There is upstream work on implementing xz and other compression
algorithms for aarch64. This work should be completed in the next few
upstream kernel and bootloader releases.
---
redhat/kernel.spec.template | 35 ++++++++++++++---------------------
1 files changed, 14 insertions(+), 21 deletions(-)
3 months, 2 weeks
[OS-BUILD PATCH] RHMAINTAINERS: Update for Feb 17 2023
by Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava <prarit(a)redhat.com>
RHMAINTAINERS: Update for Feb 17 2023
Update RHMAINTAINERS to latest.
Signed-off-by: Prarit Bhargava <prarit(a)redhat.com>
diff --git a/redhat/rhdocs/MAINTAINERS/RHMAINTAINERS b/redhat/rhdocs/MAINTAINERS/RHMAINTAINERS
index blahblah..blahblah 100644
--- a/redhat/rhdocs/MAINTAINERS/RHMAINTAINERS
+++ b/redhat/rhdocs/MAINTAINERS/RHMAINTAINERS
@@ -66,7 +66,7 @@ I: INTERNAL
T: git https://gitlab.com/cki-project/kernel-ark.git
ARK Real Time Kernel Maintainer
-M: Clark Wiliams <williams(a)redhat.com>
+M: Clark Williams <williams(a)redhat.com>
M: Andrew Halaney <ahalaney(a)redhat.com>
S: Supported
F: Makefile.rhelver
@@ -78,6 +78,7 @@ S: Supported
F: makefile
F: Makefile.rhelver
F: redhat/
+X: redhat/configs/
CentOS Stream 9 Kernel Maintainer
M: Herton R. Krzesinski <herton(a)redhat.com>
@@ -102,9 +103,11 @@ R: Jan Stancek <jstancek(a)redhat.com>
R: Luis Claudio Goncalves <lgoncalv(a)redhat.com>
R: Donald Zickus <dzickus(a)redhat.com>
R: Prarit Bhargava <prarit(a)redhat.com>
+R: Jarod Wilson <jarod(a)redhat.com>
S: Supported
F: makefile
F: redhat/
+F: Kconfig.redhat
X: redhat/configs/
RHEL 9.1 Real Time Kernel Maintainer
@@ -129,7 +132,7 @@ S: Supported
F: Makefile.rhelver
RHEL 8.8 Real Time Kernel Maintainer
-M: John Wyatt <jwyatt(a)redhat.com>
+M: John B. Wyatt IV <jwyatt(a)redhat.com>
M: Chris White <chwhite(a)redhat.com>
S: Supported
F: Makefile.rhelver
@@ -296,15 +299,15 @@ F: include/uapi/rdma/efa-abi.h
AMD IOMMU (AMD-VI)
M: Jerry Snitselaar <jsnitsel(a)redhat.com>
-R: Myron Stowe <myron.stowe(a)redhat.com>
+R: Myron Stowe <mstowe(a)redhat.com>
R: Alex Williamson <alex.williamson(a)redhat.com>
-R: Don Dutile <ddutile(a)redhat.com>
+R: Donald Dutile <ddutile(a)redhat.com>
S: Supported
F: drivers/iommu/amd/
F: include/linux/amd-iommu.h
AMD PTDMA DRIVER
-M: John W. Linville <linville(a)redhat.com>
+M: John Linville <linville(a)redhat.com>
M: Myron Stowe <mstowe(a)redhat.com>
S: Supported
F: drivers/dma/ptdma
@@ -477,8 +480,14 @@ BONDING DRIVER
M: Jonathan Toppins <jtoppins(a)redhat.com>
R: Jarod Wilson <jarod(a)redhat.com>
S: Supported
+F: Documentation/networking/bonding.rst
F: drivers/net/bonding/
-F: include/linux/if_bonding.h
+F: include/net/bond_3ad.h
+F: include/net/bond_alb.h
+F: include/net/bonding.h
+F: include/net/bond_options.h
+F: include/uapi/linux/if_bonding.h
+F: tools/testing/selftests/drivers/net/bonding/
BPF (Safe dynamic programs and tools)
M: Yauheni Kaliuta <ykaliuta(a)redhat.com>
@@ -545,6 +554,13 @@ M: Maurizio Lombardi <mlombard(a)redhat.com>
S: Supported
F: drivers/net/ethernet/broadcom/cnic*
+Broadcom specific AMBA
+M: José Ignacio Tornos Martínez <jtornosm(a)redhat.com>
+M: Michal Schmidt <mschmidt(a)redhat.com>
+S: Provided
+F: drivers/bcma/
+F: include/linux/bcma/
+
BROADCOM TG3 GIGABIT ETHERNET DRIVER
M: Ken Cox <jkc(a)redhat.com>
S: Supported
@@ -601,6 +617,10 @@ F: include/linux/miscdevice.h
CIFS FILESYSTEM
M: Ronnie Sahlberg <lsahlber(a)redhat.com>
+R: Benjamin Coddington <bcodding(a)redhat.com>
+R: Jeffrey Layton <jlayton(a)redhat.com>
+R: Steve Dickson <steved(a)redhat.com>
+R: Scott Mayhew <smayhew(a)redhat.com>
S: Supported
F: fs/cifs/
@@ -611,7 +631,7 @@ S: Supported
F: drivers/scsi/fnic/
CISCO VIC ETHERNET NIC DRIVER
-M: Govindarajulu Varadarajan <gvaradar(a)redhat.com>
+M: Michal Schmidt <mschmidt(a)redhat.com>
S: Supported
F: drivers/net/ethernet/cisco/enic/
@@ -857,9 +877,11 @@ ETHERNET PHY LIBRARY
M: Petr Oros <poros(a)redhat.com>
S: Supported
F: Documentation/networking/phy.rst
+F: drivers/net/mdio/
F: drivers/net/phy/
F: drivers/of/of_mdio.c
F: include/linux/*mdio*.h
+F: include/linux/mdio/
F: include/linux/phy.h
F: include/linux/phy_fixed.h
F: include/linux/platform_data/mdio-bcm-unimac.h
@@ -911,7 +933,6 @@ X: fs/aio.c
X: fs/ceph/
X: fs/cifs/
X: fs/configfs/
-X: fs/cramfs/
X: fs/dax.c
X: fs/direct-io.c
X: fs/dlm/
@@ -987,6 +1008,11 @@ F: kernel/futex/
F: tools/perf/bench/futex*
F: tools/testing/selftests/futex/
+GCOV
+M: Jan Stancek <jstancek(a)redhat.com>
+S: Internal
+F: kernel/gcov
+
GENERIC PHY FRAMEWORK
M: Petr Oros <poros(a)redhat.com>
S: Supported
@@ -1220,9 +1246,9 @@ F: drivers/net/ethernet/intel/igc/
INTEL IOMMU (VT-d)
M: Jerry Snitselaar <jsnitsel(a)redhat.com>
-R: Myron Stowe <myron.stowe(a)redhat.com>
+R: Myron Stowe <mstowe(a)redhat.com>
R: Alex Williamson <alex.williamson(a)redhat.com>
-R: Don Dutile <ddutile(a)redhat.com>
+R: Donald Dutile <ddutile(a)redhat.com>
S: Supported
F: drivers/iommu/intel/
F: include/linux/intel-iommu.h
@@ -1286,9 +1312,9 @@ X: include/linux/irqchip/arm-gic*
IOMMU DRIVERS
M: Jerry Snitselaar <jsnitsel(a)redhat.com>
-R: Myron Stowe <myron.stowe(a)redhat.com>
+R: Myron Stowe <mstowe(a)redhat.com>
R: Alex Williamson <alex.williamson(a)redhat.com>
-R: Don Dutile <ddutile(a)redhat.com>
+R: Donald Dutile <ddutile(a)redhat.com>
S: Supported
F: drivers/iommu/
F: include/linux/iommu*h
@@ -1510,7 +1536,7 @@ R: Artem Savkov <asavkov(a)redhat.com>
R: Clark Williams <williams(a)redhat.com>
R: Oleg Nesterov <onestero(a)redhat.com>
R: Phil Auld <pauld(a)redhat.com>
-R: Wander Costa <wander(a)redhat.com>
+R: Wander Lairson Costa <wander(a)redhat.com>
S: Supported
F: Documentation/locking/
F: arch/*/include/asm/mutex*.h
@@ -1552,7 +1578,10 @@ S: Supported
F: arch/x86/kernel/cpu/mcheck/
MAILBOX DRIVERS
-M: Al Stone <ahs3(a)redhat.com>
+M: Adrien Thierry <athierry(a)redhat.com>
+M: Andrew Halaney <ahalaney(a)redhat.com>
+M: Brian Masney <bmasney(a)redhat.com>
+M: Eric Chanudet <echanude(a)redhat.com>
S: Supported
F: drivers/mailbox/
@@ -1585,7 +1614,7 @@ R: Aristeu Rozanski <arozansk(a)redhat.com>
R: Artem Savkov <asavkov(a)redhat.com>
R: Baoquan He <bhe(a)redhat.com>
R: Christoph von Recklinghausen <crecklin(a)redhat.com>
-R: Don Dutile <ddutile(a)redhat.com>
+R: Donald Dutile <ddutile(a)redhat.com>
R: Herton R. Krzesinski <herton(a)redhat.com>
R: Leah Leshchinsky <lleshchi(a)redhat.com>
R: Nico Pache <npache(a)redhat.com>
@@ -1688,8 +1717,8 @@ S: Supported
F: drivers/net/ethernet/myricom/myri10ge/
NAMESPACES
-M: Eric W. Biederman <ebiederm(a)redhat.com>
M: Alex Gladkov <agladkov(a)redhat.com>
+R: Eric W. Biederman <ebiederm(a)redhat.com>
R: Christoph von Recklinghausen <crecklin(a)redhat.com>
S: Supported
F: Documentation/admin-guide/namespaces/
@@ -1764,7 +1793,9 @@ S: Supported
F: net/
F: Documentation/admin-guide/sysctl/net.rst
F: Documentation/networking/
+F: drivers/net/Kconfig
F: drivers/net/Space.c
+F: drivers/net/appletalk/
F: drivers/net/bareudp.c
F: drivers/net/dummy.c
F: drivers/net/geneve.c
@@ -1879,7 +1910,6 @@ X: net/sunrpc/
X: net/vmw_vsock/
X: net/wimax/
X: net/wireless/
-X: net/x25/
I: net
NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
@@ -2121,12 +2151,12 @@ F: drivers/parport/
PCI HOTPLUG
M: Prarit Bhargava <prarit(a)redhat.com>
-M: Myron Stowe <myron.stowe(a)redhat.com>
+M: Myron Stowe <mstowe(a)redhat.com>
S: Supported
F: drivers/pci/hotplug/
PCI SUBSYSTEM
-M: Myron Stowe <myron.stowe(a)redhat.com>
+M: Myron Stowe <mstowe(a)redhat.com>
M: Prarit Bhargava <prarit(a)redhat.com>
S: Supported
F: drivers/pci/
@@ -2134,7 +2164,7 @@ F: include/linux/pci*
PCI-E NON-TRANSPARENT BRIDGE
M: John Linville <linville(a)redhat.com>
-M: Myron Stowe <myron.stowe(a)redhat.com>
+M: Myron Stowe <mstowe(a)redhat.com>
S: Supported
F: drivers/pci/
F: tools/testing/selftests/ntb
@@ -2149,7 +2179,8 @@ F: drivers/net/ntb_netdev.c
PCS NETWORK DRIVERS
M: Corinna Vinschen <vinschen(a)redhat.com>
S: Provided
-F: drivers/net/pcs/ include/linux/pcs/
+F: drivers/net/pcs/
+F: include/linux/pcs/
Pensando Ethernet IONIC Driver
M: Jonathan Toppins <jtoppins(a)redhat.com>
@@ -2358,7 +2389,7 @@ M: Waiman Long <longman(a)redhat.com>
R: Artem Savkov <asavkov(a)redhat.com>
R: Clark Williams <williams(a)redhat.com>
R: Phil Auld <pauld(a)redhat.com>
-R: Wander Costa <wander(a)redhat.com>
+R: Wander Lairson Costa <wander(a)redhat.com>
S: Supported
F: Documentation/RCU/
F: include/linux/rcu*
@@ -2446,7 +2477,7 @@ F: drivers/target/
F: include/target/
SCTP PROTOCOL
-M: Marcelo Ricardo Leitner <mleitner(a)redhat.com>
+M: Marcelo Leitner <mleitner(a)redhat.com>
M: Xin Long <lxin(a)redhat.com>
S: Supported
F: net/sctp/
@@ -2459,7 +2490,7 @@ M: Ondrej Mosnacek <omosnace(a)redhat.com>
R: Christoph von Recklinghausen <crecklin(a)redhat.com>
R: Richard Guy Briggs <rbriggs(a)redhat.com>
R: Vladis Dronov <vdronov(a)redhat.com>
-R: Wander Costa <wander(a)redhat.com>
+R: Wander Lairson Costa <wander(a)redhat.com>
R: Yannick Cote <ycote(a)redhat.com>
S: Supported
F: include/linux/lsm_*
@@ -2475,7 +2506,7 @@ F: security/Makefile
SELINUX SECURITY MODULE
M: Ondrej Mosnacek <omosnace(a)redhat.com>
R: Richard Guy Briggs <rbriggs(a)redhat.com>
-R: Wander Costa <wander(a)redhat.com>
+R: Wander Lairson Costa <wander(a)redhat.com>
S: Supported
F: include/linux/selinux*
F: security/selinux/
@@ -2527,6 +2558,11 @@ M: Mark Langsdorf <mlangsdo(a)redhat.com>
S: Provided
F: drivers/net/ethernet/marvell/sky2.*
+SLIP (serial line)
+M: Michal Schmidt <mschmidt(a)redhat.com>
+S: Supported
+F: drivers/net/slip/
+
SOFT-IWARP DRIVER (siw)
M: Kamal Heib <kheib(a)redhat.com>
S: Supported
@@ -2561,12 +2597,15 @@ S: Provided
F: drivers/soundwire/
SPI DRIVERS (Serial Peripheral Interface)
-M: Al Stone <ahs3(a)redhat.com>
+M: Adrien Thierry <athierry(a)redhat.com>
+M: Andrew Halaney <ahalaney(a)redhat.com>
+M: Brian Masney <bmasney(a)redhat.com>
+M: Eric Chanudet <echanude(a)redhat.com>
S: Supported
F: drivers/spi/
SQUASHFS FILE SYSTEM
-M: Abhijith Das <adas(a)redhat.com>
+M: Abhi Das <adas(a)redhat.com>
S: Supported
F: Documentation/filesystems/squashfs.txt
F: fs/squashfs/
@@ -2696,16 +2735,16 @@ F: include/uapi/linux/tty.h
UNIVERSAL EXTENSIBLE FIRMWARE INTERFACE (UEFI/EFI)
M: Lenny Szubowicz <lszubowi(a)redhat.com>
-M: Myron Stowe <myron.stowe(a)redhat.com>
+M: Myron Stowe <mstowe(a)redhat.com>
M: Prarit Bhargava <prarit(a)redhat.com>
S: Supported
F: arch/x86/kernel/efi*
F: include/linux/efi.h
-USB CDC ETHERNET DRIVER
+USB network drivers
M: José Ignacio Tornos Martínez <jtornosm(a)redhat.com>
S: Supported
-F: drivers/net/usb/cdc_ether.c
+F: drivers/net/usb/
USB SUBSYSTEM
M: Torez Smith <torez(a)redhat.com>
@@ -2833,6 +2872,13 @@ S: Supported
F: drivers/virtio/virtio_input.c
F: include/uapi/linux/virtio_input.h
+VIRTUALIZATION SUPPORT DRIVERS
+M: Vitaly Kuznetsov <vkuznets(a)redhat.com>
+M: Cathy Avery <cavery(a)redhat.com>
+M: Mohammed Gamal <mgamal(a)redhat.com>
+S: Supported
+F: drivers/virt/
+
VMWARE PVRDMA DRIVER (vmw_pvrdma)
M: Kamal Heib <kheib(a)redhat.com>
S: Supported
@@ -2855,6 +2901,12 @@ F: drivers/acpi/acpi_watchdog.c
F: include/linux/watchdog.h
F: include/uapi/linux/watchdog.h
+Wide Area Networks (WAN)
+M: Michal Schmidt <mschmidt(a)redhat.com>
+S: Supported
+F: drivers/net/wan/
+F: Documentation/networking/device_drivers/wan/
+
WIRELESS DRIVERS AND STACK
M: Íñigo Huguet <ihuguet(a)redhat.com>
M: José Ignacio Tornos Martínez <jtornosm(a)redhat.com>
@@ -2878,12 +2930,20 @@ WIRELESS [LR-WPAN] (IEEE 802.15.4)
M: Christoph von Recklinghausen <crecklin(a)redhat.com>
S: Supported
F: Documentation/networking/ieee802154.rst
-F: drivers/net/ieee802154/fakelb.c
+F: drivers/net/ieee802154/
F: include/linux/*802154*
F: include/net/*802154*
F: net/ieee802154/
F: net/mac802154/
+WWAN (Wireless WAN)
+M: José Ignacio Tornos Martínez <jtornosm(a)redhat.com>
+S: Supported
+F: drivers/net/wwan/
+F: include/linux/wwan.h
+F: include/uapi/linux/wwan.h
+F: Documentation/networking/device_drivers/wwan/
+
X86 ARCHITECTURE
M: David Arcari <darcari(a)redhat.com>
M: Prarit Bhargava <prarit(a)redhat.com>
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2294
3 months, 2 weeks
[OS-BUILD PATCH] redhat/configs: enable Octeon TX2 network drivers
for RHEL
by Michal Schmidt (via Email Bridge)
From: Michal Schmidt <mschmidt(a)redhat.com>
redhat/configs: enable Octeon TX2 network drivers for RHEL
Enable the Admin/Physical/Virtual Function Octeon TX2 drivers for RHEL.
Move the relevant config enabling snippets from 'fedora' to 'common'.
Delete the disabling snippets in 'rhel'.
CONFIG_NDC_DIS_DYNAMIC_CACHING affects the behavior of the AF driver. It
remains disabled. Its snippet is moved to 'common' too.
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2040643
Signed-off-by: Michal Schmidt <mschmidt(a)redhat.com>
diff --git a/redhat/configs/fedora/generic/CONFIG_NDC_DIS_DYNAMIC_CACHING b/redhat/configs/common/generic/CONFIG_NDC_DIS_DYNAMIC_CACHING
rename from redhat/configs/fedora/generic/CONFIG_NDC_DIS_DYNAMIC_CACHING
rename to redhat/configs/common/generic/CONFIG_NDC_DIS_DYNAMIC_CACHING
index blahblah..blahblah 100644
--- a/redhat/configs/fedora/generic/CONFIG_NDC_DIS_DYNAMIC_CACHING
+++ b/redhat/configs/common/generic/CONFIG_NDC_DIS_DYNAMIC_CACHING
diff --git a/redhat/configs/fedora/generic/arm/aarch64/CONFIG_OCTEONTX2_AF b/redhat/configs/common/generic/arm/aarch64/CONFIG_OCTEONTX2_AF
rename from redhat/configs/fedora/generic/arm/aarch64/CONFIG_OCTEONTX2_AF
rename to redhat/configs/common/generic/arm/aarch64/CONFIG_OCTEONTX2_AF
index blahblah..blahblah 100644
--- a/redhat/configs/fedora/generic/arm/aarch64/CONFIG_OCTEONTX2_AF
+++ b/redhat/configs/common/generic/arm/aarch64/CONFIG_OCTEONTX2_AF
diff --git a/redhat/configs/fedora/generic/arm/aarch64/CONFIG_OCTEONTX2_PF b/redhat/configs/common/generic/arm/aarch64/CONFIG_OCTEONTX2_PF
rename from redhat/configs/fedora/generic/arm/aarch64/CONFIG_OCTEONTX2_PF
rename to redhat/configs/common/generic/arm/aarch64/CONFIG_OCTEONTX2_PF
index blahblah..blahblah 100644
--- a/redhat/configs/fedora/generic/arm/aarch64/CONFIG_OCTEONTX2_PF
+++ b/redhat/configs/common/generic/arm/aarch64/CONFIG_OCTEONTX2_PF
diff --git a/redhat/configs/fedora/generic/arm/aarch64/CONFIG_OCTEONTX2_VF b/redhat/configs/common/generic/arm/aarch64/CONFIG_OCTEONTX2_VF
rename from redhat/configs/fedora/generic/arm/aarch64/CONFIG_OCTEONTX2_VF
rename to redhat/configs/common/generic/arm/aarch64/CONFIG_OCTEONTX2_VF
index blahblah..blahblah 100644
--- a/redhat/configs/fedora/generic/arm/aarch64/CONFIG_OCTEONTX2_VF
+++ b/redhat/configs/common/generic/arm/aarch64/CONFIG_OCTEONTX2_VF
diff --git a/redhat/configs/rhel/generic/arm/aarch64/CONFIG_OCTEONTX2_AF b/redhat/configs/rhel/generic/arm/aarch64/CONFIG_OCTEONTX2_AF
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/rhel/generic/arm/aarch64/CONFIG_OCTEONTX2_AF
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_OCTEONTX2_AF is not set
diff --git a/redhat/configs/rhel/generic/arm/aarch64/CONFIG_OCTEONTX2_PF b/redhat/configs/rhel/generic/arm/aarch64/CONFIG_OCTEONTX2_PF
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/rhel/generic/arm/aarch64/CONFIG_OCTEONTX2_PF
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_OCTEONTX2_PF is not set
diff --git a/redhat/configs/rhel/generic/arm/aarch64/CONFIG_OCTEONTX2_VF b/redhat/configs/rhel/generic/arm/aarch64/CONFIG_OCTEONTX2_VF
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/rhel/generic/arm/aarch64/CONFIG_OCTEONTX2_VF
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_OCTEONTX2_VF is not set
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2291
3 months, 2 weeks
[OS-BUILD PATCH] Fix underline mark-up after text change
by Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes <jforbes(a)fedoraproject.org>
Fix underline mark-up after text change
After MR 2278, the docs build was broken complaining that the underline
was too short. Renaming pending-ark to pending-rhel required adding a
character to the underline to match.
Signed-off-by: Justin M. Forbes <jforbes(a)fedoraproject.org>
diff --git a/redhat/docs/repository-layout.rst b/redhat/docs/repository-layout.rst
index blahblah..blahblah 100644
--- a/redhat/docs/repository-layout.rst
+++ b/redhat/docs/repository-layout.rst
@@ -135,7 +135,7 @@ A flavor is defined by:
defined in step 2.
common and pending-rhel
-~~~~~~~~~~~~~~~~~~~~~~
+~~~~~~~~~~~~~~~~~~~~~~~
The ``common`` directory contains configuration values that are shared
across all configuration "flavors". For a configuration to be in
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2290
3 months, 3 weeks
[OS-BUILD PATCHv5 0/3] redhat/kernel.spec.template: Add global
compression
variables
by Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2173
Most of the kernel and its packing is currently xz. There are two
exceptions: the aarch64 boot an initrd images [1] and KABI. Mark gzip as
only being necessary for aarch64, and change the KABI symbol compression
to xz.
There are other compression algorithms that are becoming more popular. To
prepare for this change, add a compression variable and compression file
extension variable.
Signed-off-by: Prarit Bhargava <prarit(a)redhat.com>
[1] There is upstream work on implementing xz and other compression
algorithms for aarch64. This work should be completed in the next few
upstream kernel and bootloader releases.
---
redhat/kernel.spec.template | 40 +++++++++++++++++++++-------------------
1 files changed, 21 insertions(+), 19 deletions(-)
3 months, 3 weeks
[OS-BUILD PATCH] Disable frame pointers
by Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes <jforbes(a)fedoraproject.org>
Disable frame pointers
Fedora is defaulting to add -fno-omit-frame-pointer by default. This is
not necessary for kernel.
Signed-off-by: Justin M. Forbes <jforbes(a)fedoraproject.org>
diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template
index blahblah..blahblah 100755
--- a/redhat/kernel.spec.template
+++ b/redhat/kernel.spec.template
@@ -3,6 +3,9 @@
# environment changes that affect %%install need to go
# here before the %%install macro is pre-built.
+# Disable frame pointers
+%undefine _include_frame_pointers
+
# Disable LTO in userspace packages.
%global _lto_cflags %{nil}
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2260
3 months, 3 weeks
[OS-BUILD PATCH] redhat: remove duplicate pending-rhel config items
by Patrick Talbert (via Email Bridge)
From: Patrick Talbert <ptalbert(a)redhat.com>
redhat: remove duplicate pending-rhel config items
After MR !2278 there are a number of duplicate config items
under the new pending-rhel directory. Remove them.
Signed-off-by: Patrick Talbert <ptalbert(a)redhat.com>
diff --git a/redhat/configs/pending-rhel/generic/CONFIG_BT_LE_L2CAP_ECRED b/redhat/configs/pending-rhel/generic/CONFIG_BT_LE_L2CAP_ECRED
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-rhel/generic/CONFIG_BT_LE_L2CAP_ECRED
+++ /dev/null
@@ -1,14 +0,0 @@
-# Symbol: BT_LE_L2CAP_ECRED [=y]
-# Type : bool
-# Defined at net/bluetooth/Kconfig:81
-# Prompt: Bluetooth L2CAP Enhanced Credit Flow Control
-# Depends on: NET [=y] && BT_LE [=y]
-# Location:
-# -> Networking support (NET [=y])
-# -> Bluetooth subsystem support (BT [=m])
-# -> Bluetooth Low Energy (LE) features (BT_LE [=y])
-# -> Bluetooth L2CAP Enhanced Credit Flow Control (BT_LE_L2CAP_ECRED [=y])
-#
-#
-#
-CONFIG_BT_LE_L2CAP_ECRED=y
diff --git a/redhat/configs/pending-rhel/generic/CONFIG_DRM_ACCEL b/redhat/configs/pending-rhel/generic/CONFIG_DRM_ACCEL
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-rhel/generic/CONFIG_DRM_ACCEL
+++ /dev/null
@@ -1,12 +0,0 @@
-# Symbol: DRM_ACCEL [=n]
-# Type : bool
-# Defined at drivers/accel/Kconfig:9
-# Prompt: Compute Acceleration Framework
-# Depends on: DRM [=y]
-# Location:
-# -> Device Drivers
-# -> Compute Acceleration Framework (DRM_ACCEL [=n])
-#
-#
-#
-# CONFIG_DRM_ACCEL is not set
diff --git a/redhat/configs/pending-rhel/generic/CONFIG_MEMCPY_SLOW_KUNIT_TEST b/redhat/configs/pending-rhel/generic/CONFIG_MEMCPY_SLOW_KUNIT_TEST
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-rhel/generic/CONFIG_MEMCPY_SLOW_KUNIT_TEST
+++ /dev/null
@@ -1,15 +0,0 @@
-# Symbol: MEMCPY_SLOW_KUNIT_TEST [=y]
-# Type : bool
-# Defined at lib/Kconfig.debug:2569
-# Prompt: Include exhaustive memcpy tests
-# Depends on: RUNTIME_TESTING_MENU [=y] && MEMCPY_KUNIT_TEST [=m]
-# Location:
-# -> Kernel hacking
-# -> Kernel Testing and Coverage
-# -> Runtime Testing (RUNTIME_TESTING_MENU [=y])
-# -> Test memcpy(), memmove(), and memset() functions at runtime (MEMCPY_KUNIT_TEST [=m])
-# -> Include exhaustive memcpy tests (MEMCPY_SLOW_KUNIT_TEST [=y])
-#
-#
-#
-CONFIG_MEMCPY_SLOW_KUNIT_TEST=y
diff --git a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT b/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT
+++ /dev/null
@@ -1,15 +0,0 @@
-# Symbol: SQUASHFS_CHOICE_DECOMP_BY_MOUNT [=n]
-# Type : bool
-# Defined at fs/squashfs/Kconfig:69
-# Prompt: Select the parallel decompression mode during mount
-# Depends on: MISC_FILESYSTEMS [=y] && SQUASHFS [=m]
-# Location:
-# -> File systems
-# -> Miscellaneous filesystems (MISC_FILESYSTEMS [=y])
-# -> SquashFS 4.0 - Squashed file system support (SQUASHFS [=m])
-# -> Select the parallel decompression mode during mount (SQUASHFS_CHOICE_DECOMP_BY_MOUNT [=n])
-# Selects: SQUASHFS_DECOMP_SINGLE [=y] && SQUASHFS_DECOMP_MULTI [=n] && SQUASHFS_DECOMP_MULTI_PERCPU [=n] && SQUASHFS_MOUNT_DECOMP_THREADS [=n]
-#
-#
-#
-# CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT is not set
diff --git a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI b/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI
+++ /dev/null
@@ -1,17 +0,0 @@
-# Symbol: SQUASHFS_COMPILE_DECOMP_MULTI [=n]
-# Type : bool
-# Defined at fs/squashfs/Kconfig:101
-# Prompt: Use multiple decompressors for parallel I/O
-# Depends on: <choice>
-# Location:
-# -> File systems
-# -> Miscellaneous filesystems (MISC_FILESYSTEMS [=y])
-# -> SquashFS 4.0 - Squashed file system support (SQUASHFS [=m])
-# -> Select the parallel decompression mode during mount (SQUASHFS_CHOICE_DECOMP_BY_MOUNT [=n])
-# -> Select decompression parallel mode at compile time (<choice> [=y])
-# -> Use multiple decompressors for parallel I/O (SQUASHFS_COMPILE_DECOMP_MULTI [=n])
-# Selects: SQUASHFS_DECOMP_MULTI [=n]
-#
-#
-#
-# CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI is not set
diff --git a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI_PERCPU b/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI_PERCPU
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI_PERCPU
+++ /dev/null
@@ -1,17 +0,0 @@
-# Symbol: SQUASHFS_COMPILE_DECOMP_MULTI_PERCPU [=n]
-# Type : bool
-# Defined at fs/squashfs/Kconfig:116
-# Prompt: Use percpu multiple decompressors for parallel I/O
-# Depends on: <choice>
-# Location:
-# -> File systems
-# -> Miscellaneous filesystems (MISC_FILESYSTEMS [=y])
-# -> SquashFS 4.0 - Squashed file system support (SQUASHFS [=m])
-# -> Select the parallel decompression mode during mount (SQUASHFS_CHOICE_DECOMP_BY_MOUNT [=n])
-# -> Select decompression parallel mode at compile time (<choice> [=y])
-# -> Use percpu multiple decompressors for parallel I/O (SQUASHFS_COMPILE_DECOMP_MULTI_PERCPU [=n])
-# Selects: SQUASHFS_DECOMP_MULTI_PERCPU [=n]
-#
-#
-#
-# CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI_PERCPU is not set
diff --git a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_COMPILE_DECOMP_SINGLE b/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_COMPILE_DECOMP_SINGLE
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_COMPILE_DECOMP_SINGLE
+++ /dev/null
@@ -1,17 +0,0 @@
-# Symbol: SQUASHFS_COMPILE_DECOMP_SINGLE [=y]
-# Type : bool
-# Defined at fs/squashfs/Kconfig:93
-# Prompt: Single threaded compression
-# Depends on: <choice>
-# Location:
-# -> File systems
-# -> Miscellaneous filesystems (MISC_FILESYSTEMS [=y])
-# -> SquashFS 4.0 - Squashed file system support (SQUASHFS [=m])
-# -> Select the parallel decompression mode during mount (SQUASHFS_CHOICE_DECOMP_BY_MOUNT [=n])
-# -> Select decompression parallel mode at compile time (<choice> [=y])
-# -> Single threaded compression (SQUASHFS_COMPILE_DECOMP_SINGLE [=y])
-# Selects: SQUASHFS_DECOMP_SINGLE [=y]
-#
-#
-#
-CONFIG_SQUASHFS_COMPILE_DECOMP_SINGLE=y
diff --git a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_DECOMP_SINGLE b/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_DECOMP_SINGLE
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-rhel/generic/CONFIG_SQUASHFS_DECOMP_SINGLE
+++ /dev/null
@@ -1 +0,0 @@
-CONFIG_SQUASHFS_DECOMP_SINGLE=y
diff --git a/redhat/configs/pending-rhel/generic/CONFIG_TDX_GUEST_DRIVER b/redhat/configs/pending-rhel/generic/CONFIG_TDX_GUEST_DRIVER
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-rhel/generic/CONFIG_TDX_GUEST_DRIVER
+++ /dev/null
@@ -1,13 +0,0 @@
-# Symbol: TDX_GUEST_DRIVER [=n]
-# Type : tristate
-# Defined at drivers/virt/coco/tdx-guest/Kconfig:1
-# Prompt: TDX Guest driver
-# Depends on: VIRT_DRIVERS [=y] && INTEL_TDX_GUEST [=y]
-# Location:
-# -> Device Drivers
-# -> Virtualization drivers (VIRT_DRIVERS [=y])
-# -> TDX Guest driver (TDX_GUEST_DRIVER [=n])
-#
-#
-#
-# CONFIG_TDX_GUEST_DRIVER is not set
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2287
3 months, 3 weeks