kernel-5.14.0-655.el9

* Mon Dec 29 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-655.el9]
- usb: dwc3: Fix race condition between concurrent dwc3_remove_requests() call paths (CKI Backport Bot) [RHEL-137148] {CVE-2025-68287}
- cpufreq/amd-pstate: Fix a regression leading to EPP 0 after hibernate (David Arcari) [RHEL-129866]
- cpufreq/amd-pstate: Fix a regression leading to EPP 0 after resume (David Arcari) [RHEL-129866]
- cpufreq/amd-pstate: Fix setting of CPPC.min_perf in active mode for performance governor (David Arcari) [RHEL-129866]
- KVM: arm64: Hide ID_AA64MMFR2_EL1.NV from guest and userspace (Donald Dutile) [RHEL-134723]
- autofs: dont trigger mount if it cant succeed (Ian Kent) [RHEL-120685]
- tick/sched: Limit non-timekeeper CPUs calling jiffies update (Phil Auld) [RHEL-132755]
- PCI/ACPI: Fix pci_acpi_preserve_config() memory leak (Thilak KN) [RHEL-73305]
- be2net: pass wrb_params in case of OS2BMC (Mohammad Heib) [RHEL-101842 RHEL-96554 RHEL-97699]
- be2net: Use correct byte order and format string for TCP seq and ack_seq (Mohammad Heib) [RHEL-101842 RHEL-96554 RHEL-97699]
- proc: block mounting on top of /proc/<pid>/fdinfo/* (Waiman Long) [RHEL-128728]
- proc: block mounting on top of /proc/<pid>/fd/* (Waiman Long) [RHEL-128728]
- proc: block mounting on top of /proc/<pid>/map_files/* (Waiman Long) [RHEL-128728]
- proc: add proc_splice_unmountable() (Waiman Long) [RHEL-128728]
- proc: proc_readfdinfo() -> proc_fdinfo_iterate() (Waiman Long) [RHEL-128728]
- proc: proc_readfd() -> proc_fd_iterate() (Waiman Long) [RHEL-128728]
Resolves: RHEL-101842, RHEL-120685, RHEL-128728, RHEL-129866, RHEL-132755, RHEL-134723, RHEL-137148, RHEL-73305, RHEL-96554, RHEL-97699

Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
This commit is contained in:
CKI KWF Bot 2025-12-29 07:42:51 +00:00
parent 6884d2aa10
commit 576759d5af
4 changed files with 45 additions and 8 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 = 654
RHEL_RELEASE = 655
#
# ZSTREAM

View File

@ -1,3 +1,22 @@
* Mon Dec 29 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-655.el9]
- usb: dwc3: Fix race condition between concurrent dwc3_remove_requests() call paths (CKI Backport Bot) [RHEL-137148] {CVE-2025-68287}
- cpufreq/amd-pstate: Fix a regression leading to EPP 0 after hibernate (David Arcari) [RHEL-129866]
- cpufreq/amd-pstate: Fix a regression leading to EPP 0 after resume (David Arcari) [RHEL-129866]
- cpufreq/amd-pstate: Fix setting of CPPC.min_perf in active mode for performance governor (David Arcari) [RHEL-129866]
- KVM: arm64: Hide ID_AA64MMFR2_EL1.NV from guest and userspace (Donald Dutile) [RHEL-134723]
- autofs: dont trigger mount if it cant succeed (Ian Kent) [RHEL-120685]
- tick/sched: Limit non-timekeeper CPUs calling jiffies update (Phil Auld) [RHEL-132755]
- PCI/ACPI: Fix pci_acpi_preserve_config() memory leak (Thilak KN) [RHEL-73305]
- be2net: pass wrb_params in case of OS2BMC (Mohammad Heib) [RHEL-101842 RHEL-96554 RHEL-97699]
- be2net: Use correct byte order and format string for TCP seq and ack_seq (Mohammad Heib) [RHEL-101842 RHEL-96554 RHEL-97699]
- proc: block mounting on top of /proc/<pid>/fdinfo/* (Waiman Long) [RHEL-128728]
- proc: block mounting on top of /proc/<pid>/fd/* (Waiman Long) [RHEL-128728]
- proc: block mounting on top of /proc/<pid>/map_files/* (Waiman Long) [RHEL-128728]
- proc: add proc_splice_unmountable() (Waiman Long) [RHEL-128728]
- proc: proc_readfdinfo() -> proc_fdinfo_iterate() (Waiman Long) [RHEL-128728]
- proc: proc_readfd() -> proc_fd_iterate() (Waiman Long) [RHEL-128728]
Resolves: RHEL-101842, RHEL-120685, RHEL-128728, RHEL-129866, RHEL-132755, RHEL-134723, RHEL-137148, RHEL-73305, RHEL-96554, RHEL-97699
* Fri Dec 19 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-654.el9]
- x86/cpu: Rename and move CPU model entry for Diamond Rapids (David Arcari) [RHEL-129861]
- x86/CPU/AMD: Prevent reset reasons from being retained across reboot (CKI Backport Bot) [RHEL-129867]

View File

@ -165,15 +165,15 @@ Summary: The Linux kernel
# define buildid .local
%define specversion 5.14.0
%define patchversion 5.14
%define pkgrelease 654
%define pkgrelease 655
%define kversion 5
%define tarfile_release 5.14.0-654.el9
%define tarfile_release 5.14.0-655.el9
# This is needed to do merge window version magic
%define patchlevel 14
# This allows pkg_release to have configurable %%{?dist} tag
%define specrelease 654%{?buildid}%{?dist}
%define specrelease 655%{?buildid}%{?dist}
# This defines the kabi tarball version
%define kabiversion 5.14.0-654.el9
%define kabiversion 5.14.0-655.el9
#
# End of genspec.sh variables
@ -3697,6 +3697,24 @@ fi
#
#
%changelog
* Mon Dec 29 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-655.el9]
- usb: dwc3: Fix race condition between concurrent dwc3_remove_requests() call paths (CKI Backport Bot) [RHEL-137148] {CVE-2025-68287}
- cpufreq/amd-pstate: Fix a regression leading to EPP 0 after hibernate (David Arcari) [RHEL-129866]
- cpufreq/amd-pstate: Fix a regression leading to EPP 0 after resume (David Arcari) [RHEL-129866]
- cpufreq/amd-pstate: Fix setting of CPPC.min_perf in active mode for performance governor (David Arcari) [RHEL-129866]
- KVM: arm64: Hide ID_AA64MMFR2_EL1.NV from guest and userspace (Donald Dutile) [RHEL-134723]
- autofs: dont trigger mount if it cant succeed (Ian Kent) [RHEL-120685]
- tick/sched: Limit non-timekeeper CPUs calling jiffies update (Phil Auld) [RHEL-132755]
- PCI/ACPI: Fix pci_acpi_preserve_config() memory leak (Thilak KN) [RHEL-73305]
- be2net: pass wrb_params in case of OS2BMC (Mohammad Heib) [RHEL-101842 RHEL-96554 RHEL-97699]
- be2net: Use correct byte order and format string for TCP seq and ack_seq (Mohammad Heib) [RHEL-101842 RHEL-96554 RHEL-97699]
- proc: block mounting on top of /proc/<pid>/fdinfo/* (Waiman Long) [RHEL-128728]
- proc: block mounting on top of /proc/<pid>/fd/* (Waiman Long) [RHEL-128728]
- proc: block mounting on top of /proc/<pid>/map_files/* (Waiman Long) [RHEL-128728]
- proc: add proc_splice_unmountable() (Waiman Long) [RHEL-128728]
- proc: proc_readfdinfo() -> proc_fdinfo_iterate() (Waiman Long) [RHEL-128728]
- proc: proc_readfd() -> proc_fd_iterate() (Waiman Long) [RHEL-128728]
* Fri Dec 19 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-654.el9]
- x86/cpu: Rename and move CPU model entry for Diamond Rapids (David Arcari) [RHEL-129861]
- x86/CPU/AMD: Prevent reset reasons from being retained across reboot (CKI Backport Bot) [RHEL-129867]

View File

@ -1,3 +1,3 @@
SHA512 (linux-5.14.0-654.el9.tar.xz) = 717d2dab4a2a75918ae776a68aabc9f6c4d42f4ff9b97b915598bb7027a742a2fe1ea234685f1f7d9ab0e5f6f728d52e0f438d3688269b26e3fe5d284e67cb69
SHA512 (kernel-abi-stablelists-5.14.0-654.el9.tar.bz2) = 0246365d4102889285d643121fef50ceb09cd4c780c90fa35dd0526699743b7f86378ac16c5bc11169bb76a2ca03183dcd34dee83370a4187a30863049a0ceb4
SHA512 (kernel-kabi-dw-5.14.0-654.el9.tar.bz2) = a4af2be946d53a79ff05929d6ec1b1b226063545cb4ac8ccdcd18dd786090529ca6b727fe28df130fd89f924f2ea0fa893854f121ca68a7419fe2055d1397bd0
SHA512 (linux-5.14.0-655.el9.tar.xz) = 759b72db9bc76f32bb306ed932e0dacdc942c9d4d61c702129f6ac99f9ccf48b2718be5ddd7882e4febfd479a2205785d2262f5af6f0062faa50955bc2e3de98
SHA512 (kernel-abi-stablelists-5.14.0-655.el9.tar.bz2) = 881312bb473a23d4f0c411cf83def115fabaa436566bf7a9886b6aa4bdd2ef480c2ae60092a2cf347fde4bf1a7bca5634f89acdaf29716382ac7cb7d25b95c19
SHA512 (kernel-kabi-dw-5.14.0-655.el9.tar.bz2) = 0e1900472eceabd418e8cae792cf821e1b78e747029ea81647b70eae0d168ba200e4b45ed292e568eb2541094b492cf33702137906deaaf224dcff572746e5aa