kernel-6.12.0-236.el10
* Wed Jun 03 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [6.12.0-236.el10]
- smb: client: reject userspace cifs.spnego descriptions (Paulo Alcantara) [RHEL-178929] {CVE-2026-46243}
- redhat/kernel.spec.template: disable OBJTOOL_WERROR for gcov builds (Oleksii Baranov)
- rbd: eliminate a race in lock_dwork draining on unmap (CKI Backport Bot) [RHEL-180187]
- mei: me: add nova lake point S DID (Steve Best) [RHEL-117353]
- platform/x86/intel/uncore-freq: Replace sprintf() with sysfs_emit() (Steve Best) [RHEL-133081]
- platform/x86/intel/uncore-freq: Replace sprintf() with scnprintf() (Steve Best) [RHEL-133081]
- platform/x86: intel-uncore-freq: fix all header kernel-doc warnings (Steve Best) [RHEL-133081]
- platform/x86/intel-uncore-freq: Present unique domain ID per package (Steve Best) [RHEL-133081]
- platform/x86/intel-uncore-freq: Fix warning in partitioned system (Steve Best) [RHEL-133081]
- pinctrl: intel: platform: Add Nova Lake to the list of supported (Steve Best) [RHEL-129783]
- scsi: qla2xxx: Add support to report MPI FW state (Nilesh Javali) [RHEL-157286]
- soc: qcom: socinfo: Avoid out of bounds read of serial number (CKI Backport Bot) [RHEL-81413] {CVE-2024-58007}
Resolves: RHEL-117353, RHEL-129783, RHEL-133081, RHEL-157286, RHEL-178929, RHEL-180187, RHEL-81413
Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
This commit is contained in:
parent
a0da2b1dbd
commit
e4d8b620a0
@ -12,7 +12,7 @@ RHEL_MINOR = 3
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 235
|
||||
RHEL_RELEASE = 236
|
||||
|
||||
#
|
||||
# RHEL_REBASE_NUM
|
||||
|
||||
@ -1,3 +1,18 @@
|
||||
* Wed Jun 03 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [6.12.0-236.el10]
|
||||
- smb: client: reject userspace cifs.spnego descriptions (Paulo Alcantara) [RHEL-178929] {CVE-2026-46243}
|
||||
- redhat/kernel.spec.template: disable OBJTOOL_WERROR for gcov builds (Oleksii Baranov)
|
||||
- rbd: eliminate a race in lock_dwork draining on unmap (CKI Backport Bot) [RHEL-180187]
|
||||
- mei: me: add nova lake point S DID (Steve Best) [RHEL-117353]
|
||||
- platform/x86/intel/uncore-freq: Replace sprintf() with sysfs_emit() (Steve Best) [RHEL-133081]
|
||||
- platform/x86/intel/uncore-freq: Replace sprintf() with scnprintf() (Steve Best) [RHEL-133081]
|
||||
- platform/x86: intel-uncore-freq: fix all header kernel-doc warnings (Steve Best) [RHEL-133081]
|
||||
- platform/x86/intel-uncore-freq: Present unique domain ID per package (Steve Best) [RHEL-133081]
|
||||
- platform/x86/intel-uncore-freq: Fix warning in partitioned system (Steve Best) [RHEL-133081]
|
||||
- pinctrl: intel: platform: Add Nova Lake to the list of supported (Steve Best) [RHEL-129783]
|
||||
- scsi: qla2xxx: Add support to report MPI FW state (Nilesh Javali) [RHEL-157286]
|
||||
- soc: qcom: socinfo: Avoid out of bounds read of serial number (CKI Backport Bot) [RHEL-81413] {CVE-2024-58007}
|
||||
Resolves: RHEL-117353, RHEL-129783, RHEL-133081, RHEL-157286, RHEL-178929, RHEL-180187, RHEL-81413
|
||||
|
||||
* Tue Jun 02 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [6.12.0-235.el10]
|
||||
- redhat: Add DENYLIST.rhel to BPF selftests (Viktor Malik) [RHEL-76113]
|
||||
- xfs: flush delalloc blocks on ENOSPC in xfs_trans_alloc_icreate (Ravi Singh) [RHEL-116652]
|
||||
|
||||
29
kernel.spec
29
kernel.spec
@ -179,15 +179,15 @@ Summary: The Linux kernel
|
||||
%define specrpmversion 6.12.0
|
||||
%define specversion 6.12.0
|
||||
%define patchversion 6.12
|
||||
%define pkgrelease 235
|
||||
%define pkgrelease 236
|
||||
%define kversion 6
|
||||
%define tarfile_release 6.12.0-235.el10
|
||||
%define tarfile_release 6.12.0-236.el10
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 12
|
||||
# This allows pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 235%{?buildid}%{?dist}
|
||||
%define specrelease 236%{?buildid}%{?dist}
|
||||
# This defines the kabi tarball version
|
||||
%define kabiversion 6.12.0-235.el10
|
||||
%define kabiversion 6.12.0-236.el10
|
||||
|
||||
# If this variable is set to 1, a bpf selftests build failure will cause a
|
||||
# fatal kernel package build error
|
||||
@ -2118,6 +2118,13 @@ do
|
||||
done
|
||||
rm -f $i.tmp
|
||||
done
|
||||
%if %{with_gcov}
|
||||
%{log_msg "Disabling CONFIG_OBJTOOL_WERROR for gcov build"}
|
||||
for i in %{all_configs}
|
||||
do
|
||||
sed -i "s|CONFIG_OBJTOOL_WERROR=y|# CONFIG_OBJTOOL_WERROR is not set|g" $i
|
||||
done
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if %{signkernel}%{signmodules}
|
||||
@ -4543,6 +4550,20 @@ fi\
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Wed Jun 03 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [6.12.0-236.el10]
|
||||
- smb: client: reject userspace cifs.spnego descriptions (Paulo Alcantara) [RHEL-178929] {CVE-2026-46243}
|
||||
- redhat/kernel.spec.template: disable OBJTOOL_WERROR for gcov builds (Oleksii Baranov)
|
||||
- rbd: eliminate a race in lock_dwork draining on unmap (CKI Backport Bot) [RHEL-180187]
|
||||
- mei: me: add nova lake point S DID (Steve Best) [RHEL-117353]
|
||||
- platform/x86/intel/uncore-freq: Replace sprintf() with sysfs_emit() (Steve Best) [RHEL-133081]
|
||||
- platform/x86/intel/uncore-freq: Replace sprintf() with scnprintf() (Steve Best) [RHEL-133081]
|
||||
- platform/x86: intel-uncore-freq: fix all header kernel-doc warnings (Steve Best) [RHEL-133081]
|
||||
- platform/x86/intel-uncore-freq: Present unique domain ID per package (Steve Best) [RHEL-133081]
|
||||
- platform/x86/intel-uncore-freq: Fix warning in partitioned system (Steve Best) [RHEL-133081]
|
||||
- pinctrl: intel: platform: Add Nova Lake to the list of supported (Steve Best) [RHEL-129783]
|
||||
- scsi: qla2xxx: Add support to report MPI FW state (Nilesh Javali) [RHEL-157286]
|
||||
- soc: qcom: socinfo: Avoid out of bounds read of serial number (CKI Backport Bot) [RHEL-81413] {CVE-2024-58007}
|
||||
|
||||
* Tue Jun 02 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [6.12.0-235.el10]
|
||||
- redhat: Add DENYLIST.rhel to BPF selftests (Viktor Malik) [RHEL-76113]
|
||||
- xfs: flush delalloc blocks on ENOSPC in xfs_trans_alloc_icreate (Ravi Singh) [RHEL-116652]
|
||||
|
||||
6
sources
6
sources
@ -1,5 +1,5 @@
|
||||
SHA512 (kernel-abi-stablelists-6.6.0.tar.bz2) = 4f917598056dee5e23814621ec96ff2e4a411c8c4ba9d56ecb01b23cb96431825bedbecfcbaac9338efbf5cb21694d85497fa0bf43e7c80d9cd10bc6dd144dbd
|
||||
SHA512 (kernel-kabi-dw-6.6.0.tar.bz2) = 19308cd976031d05e18ef7f5d093218acdb89446418bab0cd956ff12cf66369915b9e64bb66fa9f20939428a60e81884fec5be3529c6c7461738d6540d3cc5c6
|
||||
SHA512 (linux-6.12.0-235.el10.tar.xz) = 5223ec8ecafab3bd850dff274c56cb9912f5bd9a8372eab60158911f9d6f8b95df0e7290a8d735501031605de4efd2228ccb5ada7514a2a95db9ae64a4a94cd6
|
||||
SHA512 (kernel-abi-stablelists-6.12.0-235.el10.tar.xz) = 29f05895ed952a114b7bea172ac3078a7af1ad7a2a9c7477ffbe2965eeb8101a2935bc712b3fc03e79ae4312ac9c2bea89378acd94d15fd9fc5eba56f6b14803
|
||||
SHA512 (kernel-kabi-dw-6.12.0-235.el10.tar.xz) = cb167f8a326813d84d5cfeb5303f17440ff9e231a324c7d868dc6f9eab7bdc89c3127c1e1a7471f4e7ae8776bc046c0a5a247c0d94823d1209bdf6a9d7466131
|
||||
SHA512 (linux-6.12.0-236.el10.tar.xz) = 35d354a7b12f8d3bde4409405b6da539e3f7504d6775462fc6d846641802253a8e7259f55bf21f3adc92c7c4ebbcc2f9893356114b698bdbe4565349f261fad1
|
||||
SHA512 (kernel-abi-stablelists-6.12.0-236.el10.tar.xz) = 8e7cc5c5c180890c57f04aead07e4fd0432860806b523e59113af37ee9a77fb36cdffd54f29cece2c284994c11528e32c37fcc4d287cf2dc7beb9c67607422a0
|
||||
SHA512 (kernel-kabi-dw-6.12.0-236.el10.tar.xz) = eadb7b137fcf55c260306ef0d2592d1aab49179233e56303cc9360e694f21b9ae63bf988dbab51252d25b1d83ce28b6b8d4254f077fed45f5ddc5ff9741c4c89
|
||||
|
||||
Loading…
Reference in New Issue
Block a user