kernel-6.12.0-55.el10
* Sun Feb 16 2025 Jan Stancek <jstancek@redhat.com> [6.12.0-55.el10] - ovl: support encoding fid from inode with no alias (Miklos Szeredi) [RHEL-77301] {CVE-2025-21654} - ovl: pass realinode to ovl_encode_real_fh() instead of realdentry (Miklos Szeredi) [RHEL-77301] {CVE-2025-21654} - pmdomain: imx8mp-blk-ctrl: add missing loop break condition (CKI Backport Bot) [RHEL-77240] {CVE-2025-21668} - io_uring/rsrc: require cloned buffers to share accounting contexts (Jeff Moyer) [RHEL-78677] {CVE-2025-21686} - vsock: prevent null-ptr-deref in vsock_*[has_data|has_space] (CKI Backport Bot) [RHEL-77214] {CVE-2025-21666} - USB: serial: quatech2: fix null-ptr-deref in qt2_process_read_urb() (CKI Backport Bot) [RHEL-78685] {CVE-2025-21689} - lazy tlb: fix hotplug exit race with MMU_LAZY_TLB_SHOOTDOWN (Herton R. Krzesinski) [RHEL-58817] Resolves: RHEL-58817, RHEL-77214, RHEL-77240, RHEL-77301, RHEL-78677, RHEL-78685 Signed-off-by: Jan Stancek <jstancek@redhat.com>
This commit is contained in:
parent
a5e53c7db4
commit
b887845347
@ -12,7 +12,7 @@ RHEL_MINOR = 0
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 54
|
||||
RHEL_RELEASE = 55
|
||||
|
||||
#
|
||||
# RHEL_REBASE_NUM
|
||||
|
@ -1,3 +1,13 @@
|
||||
* Sun Feb 16 2025 Jan Stancek <jstancek@redhat.com> [6.12.0-55.el10]
|
||||
- ovl: support encoding fid from inode with no alias (Miklos Szeredi) [RHEL-77301] {CVE-2025-21654}
|
||||
- ovl: pass realinode to ovl_encode_real_fh() instead of realdentry (Miklos Szeredi) [RHEL-77301] {CVE-2025-21654}
|
||||
- pmdomain: imx8mp-blk-ctrl: add missing loop break condition (CKI Backport Bot) [RHEL-77240] {CVE-2025-21668}
|
||||
- io_uring/rsrc: require cloned buffers to share accounting contexts (Jeff Moyer) [RHEL-78677] {CVE-2025-21686}
|
||||
- vsock: prevent null-ptr-deref in vsock_*[has_data|has_space] (CKI Backport Bot) [RHEL-77214] {CVE-2025-21666}
|
||||
- USB: serial: quatech2: fix null-ptr-deref in qt2_process_read_urb() (CKI Backport Bot) [RHEL-78685] {CVE-2025-21689}
|
||||
- lazy tlb: fix hotplug exit race with MMU_LAZY_TLB_SHOOTDOWN (Herton R. Krzesinski) [RHEL-58817]
|
||||
Resolves: RHEL-58817, RHEL-77214, RHEL-77240, RHEL-77301, RHEL-78677, RHEL-78685
|
||||
|
||||
* Fri Feb 14 2025 Jan Stancek <jstancek@redhat.com> [6.12.0-54.el10]
|
||||
- mm/mempolicy: fix migrate_to_node() assuming there is at least one VMA in a MM (CKI Backport Bot) [RHEL-76120] {CVE-2024-56611}
|
||||
- Revert "redhat: gating.yaml: drop unstable test" (Jan Stancek)
|
||||
|
17
kernel.spec
17
kernel.spec
@ -162,15 +162,15 @@ Summary: The Linux kernel
|
||||
%define specrpmversion 6.12.0
|
||||
%define specversion 6.12.0
|
||||
%define patchversion 6.12
|
||||
%define pkgrelease 54
|
||||
%define pkgrelease 55
|
||||
%define kversion 6
|
||||
%define tarfile_release 6.12.0-54.el10
|
||||
%define tarfile_release 6.12.0-55.el10
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 12
|
||||
# This allows pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 54%{?buildid}%{?dist}
|
||||
%define specrelease 55%{?buildid}%{?dist}
|
||||
# This defines the kabi tarball version
|
||||
%define kabiversion 6.12.0-54.el10
|
||||
%define kabiversion 6.12.0-55.el10
|
||||
|
||||
# If this variable is set to 1, a bpf selftests build failure will cause a
|
||||
# fatal kernel package build error
|
||||
@ -4313,6 +4313,15 @@ fi\
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Sun Feb 16 2025 Jan Stancek <jstancek@redhat.com> [6.12.0-55.el10]
|
||||
- ovl: support encoding fid from inode with no alias (Miklos Szeredi) [RHEL-77301] {CVE-2025-21654}
|
||||
- ovl: pass realinode to ovl_encode_real_fh() instead of realdentry (Miklos Szeredi) [RHEL-77301] {CVE-2025-21654}
|
||||
- pmdomain: imx8mp-blk-ctrl: add missing loop break condition (CKI Backport Bot) [RHEL-77240] {CVE-2025-21668}
|
||||
- io_uring/rsrc: require cloned buffers to share accounting contexts (Jeff Moyer) [RHEL-78677] {CVE-2025-21686}
|
||||
- vsock: prevent null-ptr-deref in vsock_*[has_data|has_space] (CKI Backport Bot) [RHEL-77214] {CVE-2025-21666}
|
||||
- USB: serial: quatech2: fix null-ptr-deref in qt2_process_read_urb() (CKI Backport Bot) [RHEL-78685] {CVE-2025-21689}
|
||||
- lazy tlb: fix hotplug exit race with MMU_LAZY_TLB_SHOOTDOWN (Herton R. Krzesinski) [RHEL-58817]
|
||||
|
||||
* Fri Feb 14 2025 Jan Stancek <jstancek@redhat.com> [6.12.0-54.el10]
|
||||
- mm/mempolicy: fix migrate_to_node() assuming there is at least one VMA in a MM (CKI Backport Bot) [RHEL-76120] {CVE-2024-56611}
|
||||
- Revert "redhat: gating.yaml: drop unstable test" (Jan Stancek)
|
||||
|
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-54.el10.tar.xz) = a3751e387ea8aa562b81e3e0e31b2ad757142ffc1a32740083887f120f1c1fbf43c3f64c9e4c8016052412f906756729bb04aafd942c4a025bdda9b938048518
|
||||
SHA512 (kernel-abi-stablelists-6.12.0-54.el10.tar.xz) = ebf1cfe226689763fae392d86d14dba246a534d892c57b6665228cb65be3fc5ef2e1df3674c7bfb69aaa93abae817e5c67b2a5b07b1cfaeeeb8e231455fe84ac
|
||||
SHA512 (kernel-kabi-dw-6.12.0-54.el10.tar.xz) = 0818d13d53225c079a7140fd45d4a1a6566bbc68700cdfc6bee1a02b6bee079fcc1317ae945d975e63aceee592a1072a957d806205def3f730539854a932dcc3
|
||||
SHA512 (linux-6.12.0-55.el10.tar.xz) = a6b27f4be2473797884139e314433381a709af46b632cb36c47a5d56f221a136edbf99c9d082183536c7b5572e8e933f55f52d3868d61787277d5f028bfc8a10
|
||||
SHA512 (kernel-abi-stablelists-6.12.0-55.el10.tar.xz) = 16a0962f584122acfec86fc33cc0bb683635789dee80e974dba6f39c55bb660d02f5523fc09dc7d1f35e2a9a8d5e466aaf722244a6535923e8ab81aa007a7f73
|
||||
SHA512 (kernel-kabi-dw-6.12.0-55.el10.tar.xz) = 0818d13d53225c079a7140fd45d4a1a6566bbc68700cdfc6bee1a02b6bee079fcc1317ae945d975e63aceee592a1072a957d806205def3f730539854a932dcc3
|
||||
|
Loading…
Reference in New Issue
Block a user