kernel-5.14.0-640.el9

* Tue Nov 18 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-640.el9]
- kernfs: Fix UAF in polling when open file is released (Pavel Reichl) [RHEL-122088] {CVE-2025-39881}
- crypto: iaa - mark as supported (Vladis Dronov) [RHEL-95629]
- dmaengine: idxd: Add a new IAA device ID for Wildcat Lake family platforms (Vladis Dronov) [RHEL-95629]
- crypto: iaa - Optimize rebalance_wq_table() (Vladis Dronov) [RHEL-95629]
- crypto: iaa - Adjust workqueue allocation type (Vladis Dronov) [RHEL-95629]
- fs: Add 'initramfs_options' to set initramfs mount options (Ian Kent) [RHEL-121113]
- e1000e: fix heap overflow in e1000_set_eeprom (Corinna Vinschen) [RHEL-123108] {CVE-2025-39898}
- Configs: Enable CONFIG_SCHED_MC for powerpc (Phil Auld) [RHEL-118964]
- sched: Unify the SCHED_{SMT,CLUSTER,MC} Kconfig (Phil Auld) [RHEL-118964]
- sched: Move STDL_INIT() functions out-of-line (Phil Auld) [RHEL-118964]
- sched/fair: Get rid of sched_domains_curr_level hack for tl->cpumask() (Phil Auld) [RHEL-118964]
- x86/smpboot: avoid SMT domain attach/destroy if SMT is not enabled (Phil Auld) [RHEL-118964]
- x86/smpboot: moves x86_topology to static initialize and truncate (Phil Auld) [RHEL-118964]
- x86/smpboot: remove redundant CONFIG_SCHED_SMT (Phil Auld) [RHEL-118964]
- smpboot: introduce SDTL_INIT() helper to tidy sched topology setup (Phil Auld) [RHEL-118964]
- powerpc/smp: Dynamically build Powerpc topology (Phil Auld) [RHEL-118964]
- powerpc/smp: Avoid asym packing within thread_group of a core (Phil Auld) [RHEL-118964]
- powerpc/smp: Add __ro_after_init attribute (Phil Auld) [RHEL-118964]
- powerpc/smp: Disable MC domain for shared processor (Phil Auld) [RHEL-118964]
- powerpc/smp: Enable Asym packing for cores on shared processor (Phil Auld) [RHEL-118964]
- perf/x86/intel/uncore: Add iMC freerunning for Panther Lake (Michael Petlan) [RHEL-47456]
- perf/x86/intel/uncore: Add Panther Lake support (Michael Petlan) [RHEL-47456]
- perf/x86/intel/uncore: Support customized MMIO map size (Michael Petlan) [RHEL-47442 RHEL-47456]
- perf/x86/intel/uncore: Support MSR portal for discovery tables (Michael Petlan) [RHEL-47442 RHEL-47456]
Resolves: RHEL-118964, RHEL-121113, RHEL-122088, RHEL-123108, RHEL-47442, RHEL-47456, RHEL-95629

Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
This commit is contained in:
CKI KWF Bot 2025-11-18 07:44:53 +00:00
parent 31c7d1d716
commit dd568a92de
6 changed files with 63 additions and 10 deletions

View File

@ -12,7 +12,7 @@ RHEL_MINOR = 8
#
# Use this spot to avoid future merge conflicts.
# Do not trim this comment.
RHEL_RELEASE = 639
RHEL_RELEASE = 640
#
# ZSTREAM

View File

@ -4709,8 +4709,8 @@ CONFIG_SCHED_AUTOGROUP=y
CONFIG_SCHED_CLUSTER=y
CONFIG_SCHED_CORE=y
CONFIG_SCHED_DEBUG=y
# CONFIG_SCHED_MC is not set
CONFIG_SCHED_MC_PRIO=y
CONFIG_SCHED_MC=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_SCHED_SMT=y
CONFIG_SCHED_STACK_END_CHECK=y

View File

@ -4689,8 +4689,8 @@ CONFIG_SCHED_AUTOGROUP=y
CONFIG_SCHED_CLUSTER=y
CONFIG_SCHED_CORE=y
CONFIG_SCHED_DEBUG=y
# CONFIG_SCHED_MC is not set
CONFIG_SCHED_MC_PRIO=y
CONFIG_SCHED_MC=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_SCHED_SMT=y
CONFIG_SCHED_STACK_END_CHECK=y

View File

@ -1,3 +1,30 @@
* Tue Nov 18 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-640.el9]
- kernfs: Fix UAF in polling when open file is released (Pavel Reichl) [RHEL-122088] {CVE-2025-39881}
- crypto: iaa - mark as supported (Vladis Dronov) [RHEL-95629]
- dmaengine: idxd: Add a new IAA device ID for Wildcat Lake family platforms (Vladis Dronov) [RHEL-95629]
- crypto: iaa - Optimize rebalance_wq_table() (Vladis Dronov) [RHEL-95629]
- crypto: iaa - Adjust workqueue allocation type (Vladis Dronov) [RHEL-95629]
- fs: Add 'initramfs_options' to set initramfs mount options (Ian Kent) [RHEL-121113]
- e1000e: fix heap overflow in e1000_set_eeprom (Corinna Vinschen) [RHEL-123108] {CVE-2025-39898}
- Configs: Enable CONFIG_SCHED_MC for powerpc (Phil Auld) [RHEL-118964]
- sched: Unify the SCHED_{SMT,CLUSTER,MC} Kconfig (Phil Auld) [RHEL-118964]
- sched: Move STDL_INIT() functions out-of-line (Phil Auld) [RHEL-118964]
- sched/fair: Get rid of sched_domains_curr_level hack for tl->cpumask() (Phil Auld) [RHEL-118964]
- x86/smpboot: avoid SMT domain attach/destroy if SMT is not enabled (Phil Auld) [RHEL-118964]
- x86/smpboot: moves x86_topology to static initialize and truncate (Phil Auld) [RHEL-118964]
- x86/smpboot: remove redundant CONFIG_SCHED_SMT (Phil Auld) [RHEL-118964]
- smpboot: introduce SDTL_INIT() helper to tidy sched topology setup (Phil Auld) [RHEL-118964]
- powerpc/smp: Dynamically build Powerpc topology (Phil Auld) [RHEL-118964]
- powerpc/smp: Avoid asym packing within thread_group of a core (Phil Auld) [RHEL-118964]
- powerpc/smp: Add __ro_after_init attribute (Phil Auld) [RHEL-118964]
- powerpc/smp: Disable MC domain for shared processor (Phil Auld) [RHEL-118964]
- powerpc/smp: Enable Asym packing for cores on shared processor (Phil Auld) [RHEL-118964]
- perf/x86/intel/uncore: Add iMC freerunning for Panther Lake (Michael Petlan) [RHEL-47456]
- perf/x86/intel/uncore: Add Panther Lake support (Michael Petlan) [RHEL-47456]
- perf/x86/intel/uncore: Support customized MMIO map size (Michael Petlan) [RHEL-47442 RHEL-47456]
- perf/x86/intel/uncore: Support MSR portal for discovery tables (Michael Petlan) [RHEL-47442 RHEL-47456]
Resolves: RHEL-118964, RHEL-121113, RHEL-122088, RHEL-123108, RHEL-47442, RHEL-47456, RHEL-95629
* Sat Nov 15 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-639.el9]
- smb: client: fix refcount leak in smb2_set_path_attr (Paulo Alcantara) [RHEL-114699]
- smb: client: fix potential UAF in smb2_close_cached_fid() (Paulo Alcantara) [RHEL-114699]

View File

@ -165,15 +165,15 @@ Summary: The Linux kernel
# define buildid .local
%define specversion 5.14.0
%define patchversion 5.14
%define pkgrelease 639
%define pkgrelease 640
%define kversion 5
%define tarfile_release 5.14.0-639.el9
%define tarfile_release 5.14.0-640.el9
# This is needed to do merge window version magic
%define patchlevel 14
# This allows pkg_release to have configurable %%{?dist} tag
%define specrelease 639%{?buildid}%{?dist}
%define specrelease 640%{?buildid}%{?dist}
# This defines the kabi tarball version
%define kabiversion 5.14.0-639.el9
%define kabiversion 5.14.0-640.el9
#
# End of genspec.sh variables
@ -3693,6 +3693,32 @@ fi
#
#
%changelog
* Tue Nov 18 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-640.el9]
- kernfs: Fix UAF in polling when open file is released (Pavel Reichl) [RHEL-122088] {CVE-2025-39881}
- crypto: iaa - mark as supported (Vladis Dronov) [RHEL-95629]
- dmaengine: idxd: Add a new IAA device ID for Wildcat Lake family platforms (Vladis Dronov) [RHEL-95629]
- crypto: iaa - Optimize rebalance_wq_table() (Vladis Dronov) [RHEL-95629]
- crypto: iaa - Adjust workqueue allocation type (Vladis Dronov) [RHEL-95629]
- fs: Add 'initramfs_options' to set initramfs mount options (Ian Kent) [RHEL-121113]
- e1000e: fix heap overflow in e1000_set_eeprom (Corinna Vinschen) [RHEL-123108] {CVE-2025-39898}
- Configs: Enable CONFIG_SCHED_MC for powerpc (Phil Auld) [RHEL-118964]
- sched: Unify the SCHED_{SMT,CLUSTER,MC} Kconfig (Phil Auld) [RHEL-118964]
- sched: Move STDL_INIT() functions out-of-line (Phil Auld) [RHEL-118964]
- sched/fair: Get rid of sched_domains_curr_level hack for tl->cpumask() (Phil Auld) [RHEL-118964]
- x86/smpboot: avoid SMT domain attach/destroy if SMT is not enabled (Phil Auld) [RHEL-118964]
- x86/smpboot: moves x86_topology to static initialize and truncate (Phil Auld) [RHEL-118964]
- x86/smpboot: remove redundant CONFIG_SCHED_SMT (Phil Auld) [RHEL-118964]
- smpboot: introduce SDTL_INIT() helper to tidy sched topology setup (Phil Auld) [RHEL-118964]
- powerpc/smp: Dynamically build Powerpc topology (Phil Auld) [RHEL-118964]
- powerpc/smp: Avoid asym packing within thread_group of a core (Phil Auld) [RHEL-118964]
- powerpc/smp: Add __ro_after_init attribute (Phil Auld) [RHEL-118964]
- powerpc/smp: Disable MC domain for shared processor (Phil Auld) [RHEL-118964]
- powerpc/smp: Enable Asym packing for cores on shared processor (Phil Auld) [RHEL-118964]
- perf/x86/intel/uncore: Add iMC freerunning for Panther Lake (Michael Petlan) [RHEL-47456]
- perf/x86/intel/uncore: Add Panther Lake support (Michael Petlan) [RHEL-47456]
- perf/x86/intel/uncore: Support customized MMIO map size (Michael Petlan) [RHEL-47442 RHEL-47456]
- perf/x86/intel/uncore: Support MSR portal for discovery tables (Michael Petlan) [RHEL-47442 RHEL-47456]
* Sat Nov 15 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-639.el9]
- smb: client: fix refcount leak in smb2_set_path_attr (Paulo Alcantara) [RHEL-114699]
- smb: client: fix potential UAF in smb2_close_cached_fid() (Paulo Alcantara) [RHEL-114699]

View File

@ -1,3 +1,3 @@
SHA512 (linux-5.14.0-639.el9.tar.xz) = 79c09abc6df058616126ca51ded69606b72b79fcbd313dd478fc0bea87bb77b8b257f1aff16ee57be31bfaabd2f5659983f85d1c79a711b8c57ed67337d43409
SHA512 (kernel-abi-stablelists-5.14.0-639.el9.tar.bz2) = d2d21bc517d6109141228cad70ba6426bde77991f0d347cb6e0808f743a7f82a708bdafb9ea606d184dc0ae3b8194f284253d56f6d71eb06001bbaac56d3b502
SHA512 (kernel-kabi-dw-5.14.0-639.el9.tar.bz2) = a5dab0c35722e98a4659cb74d402c785f554cb577c341f4e2d148c331285592de3907cd067339d010658a5f57a2244bc6b8398ca9b4a04ef91ea717708fbc18a
SHA512 (linux-5.14.0-640.el9.tar.xz) = 5719c7209725ceef5fcaa57dc38902a390f662d0f5ad20ec22d0d70c2114d4fabe9e09811849d588c418176ac24c587ec5ea043123cbae636281181503a2dc4f
SHA512 (kernel-abi-stablelists-5.14.0-640.el9.tar.bz2) = 2d09ff605aa51d6c83e872ee112d7fa69f86218e9a3525f6010c5465de9d448f73e3575dc954028dbc03fa514658cd57a1457e8deb9ad076506b6299d94f5d0f
SHA512 (kernel-kabi-dw-5.14.0-640.el9.tar.bz2) = bc441a99effa6b5df9a2d73bae0171a8c31d567354be9ec2c83ae79c8a184a9eacc9c71811c5819612781c5ee4e7a34ca55c2294f6a8d9ab7c94491f154228f0