diff --git a/1100-xfrm-esp-avoid-in-place-decrypt-shared-skb-frags.patch b/1100-xfrm-esp-avoid-in-place-decrypt-shared-skb-frags.patch deleted file mode 100644 index 0fe6a5691..000000000 --- a/1100-xfrm-esp-avoid-in-place-decrypt-shared-skb-frags.patch +++ /dev/null @@ -1,77 +0,0 @@ -From: Andrew Lukoshko -Subject: [PATCH AlmaLinux 10] xfrm: esp: avoid in-place decrypt on shared skb frags - -Direct cherry-pick of upstream commit f4c50a4034e6 for AlmaLinux 10 -(6.12 kernel). - -Verified to apply with `patch -p1 -F0` (no offset, no fuzz, no rejects) -against kernel-6.12.0-124.55.1.el10_1. - -ESP-in-UDP packets built from MSG_SPLICE_PAGES (pipe pages) look like -ordinary uncloned nonlinear skbs to ESP input, which takes the no-COW -fast path and decrypts in place over data that is not owned privately -by the skb. Mark IPv4/IPv6 datagram splice frags with SKBFL_SHARED_FRAG -matching TCP, and make ESP input fall back to skb_cow_data() when the -flag is present. - -Fixes: cac2661c53f3 ("esp4: Avoid skb_cow_data whenever possible") -Fixes: 03e2a30f6a27 ("esp6: Avoid skb_cow_data whenever possible") -Fixes: 7da0dde68486 ("ip, udp: Support MSG_SPLICE_PAGES") -Fixes: 6d8192bd69bb ("ip6, udp6: Support MSG_SPLICE_PAGES") -(cherry picked from commit f4c50a4034e62ab75f1d5cdd191dd5f9c77fdff4) -Signed-off-by: Andrew Lukoshko ---- - net/ipv4/esp4.c | 3 ++- - net/ipv4/ip_output.c | 2 ++ - net/ipv6/esp6.c | 3 ++- - net/ipv6/ip6_output.c | 2 ++ - 4 files changed, 8 insertions(+), 2 deletions(-) - ---- a/net/ipv4/esp4.c -+++ b/net/ipv4/esp4.c -@@ -908,7 +908,8 @@ - nfrags = 1; - - goto skip_cow; -- } else if (!skb_has_frag_list(skb)) { -+ } else if (!skb_has_frag_list(skb) && -+ !skb_has_shared_frag(skb)) { - nfrags = skb_shinfo(skb)->nr_frags; - nfrags++; - ---- a/net/ipv4/ip_output.c -+++ b/net/ipv4/ip_output.c -@@ -1236,6 +1236,8 @@ - if (err < 0) - goto error; - copy = err; -+ if (!(flags & MSG_NO_SHARED_FRAGS)) -+ skb_shinfo(skb)->flags |= SKBFL_SHARED_FRAG; - wmem_alloc_delta += copy; - } else if (!zc) { - int i = skb_shinfo(skb)->nr_frags; ---- a/net/ipv6/esp6.c -+++ b/net/ipv6/esp6.c -@@ -950,7 +950,8 @@ - nfrags = 1; - - goto skip_cow; -- } else if (!skb_has_frag_list(skb)) { -+ } else if (!skb_has_frag_list(skb) && -+ !skb_has_shared_frag(skb)) { - nfrags = skb_shinfo(skb)->nr_frags; - nfrags++; - ---- a/net/ipv6/ip6_output.c -+++ b/net/ipv6/ip6_output.c -@@ -1769,6 +1769,8 @@ - if (err < 0) - goto error; - copy = err; -+ if (!(flags & MSG_NO_SHARED_FRAGS)) -+ skb_shinfo(skb)->flags |= SKBFL_SHARED_FRAG; - wmem_alloc_delta += copy; - } else if (!zc) { - int i = skb_shinfo(skb)->nr_frags; --- -2.43.0 diff --git a/1101-rxrpc-linearize-paged-frags.patch b/1101-rxrpc-linearize-paged-frags.patch deleted file mode 100644 index 71f881d12..000000000 --- a/1101-rxrpc-linearize-paged-frags.patch +++ /dev/null @@ -1,69 +0,0 @@ -From: Andrew Lukoshko -Subject: [PATCH AlmaLinux 10] rxrpc: linearize incoming DATA packet when it has paged frags - -AlmaLinux-specific backport of the intent of the upstream rxrpc fix -posted at https://lore.kernel.org/all/afKV2zGR6rrelPC7@v4bel/ for the -"Dirty Frag" class of bugs (sibling to upstream commit f4c50a4034e6 in -the ESP/xfrm subsystem). - -The upstream patch can not be cherry-picked against this 6.12 tree: -its target lines were introduced by upstream commit d0d5c0cd1e71 -("rxrpc: Use skb_unshare() rather than skb_cow_data()") which is not -present here. The age-equivalent code path on AlmaLinux 10 is the -centralized skb_unshare() in net/rxrpc/io_thread.c that is run for -every DATA packet with a non-zero securityIndex before in-place -decryption. - -skb_unshare() only handles cloned skbs. An skb that is non-cloned but -carries paged fragments (skb->data_len != 0) — e.g. pages attached via -udp_sendpage() / splice() / MSG_SPLICE_PAGES on a UDP socket carrying -rxrpc traffic — slips through and is decrypted in place over data the -skb does not own privately. With kernel-modules-partner installed -(rxrpc.ko enabled), this is exploitable. - -Replace the unconditional skb_unshare() with skb_copy() whenever the -skb is cloned OR carries paged fragments. skb_copy() always returns a -freshly allocated linear skb, so subsequent in-place decryption only -touches kernel-owned memory. The original skb is consumed explicitly -(skb_unshare did this internally via consume_skb()). - -Verified to apply with `patch -p1 -F0` (no offset, no fuzz, no -rejects) against kernel-6.12.0-124.55.1.el10_1. - -Fixes: cac2661c53f3 ("rxrpc: Use skb_cow_data() in rxrpc_recvmsg_data()") -Signed-off-by: Andrew Lukoshko ---- - net/rxrpc/io_thread.c | 18 ++++++++++-------- - 1 file changed, 10 insertions(+), 8 deletions(-) - ---- a/net/rxrpc/io_thread.c -+++ b/net/rxrpc/io_thread.c -@@ -235,16 +235,18 @@ - * decryption. - */ - if (sp->hdr.securityIndex != 0) { -- skb = skb_unshare(skb, GFP_ATOMIC); -- if (!skb) { -- rxrpc_eaten_skb(*_skb, rxrpc_skb_eaten_by_unshare_nomem); -- *_skb = NULL; -- return just_discard; -- } -+ if (skb_cloned(skb) || skb->data_len) { -+ struct sk_buff *nskb = skb_copy(skb, GFP_ATOMIC); -+ -+ if (!nskb) { -+ rxrpc_eaten_skb(*_skb, rxrpc_skb_eaten_by_unshare_nomem); -+ return just_discard; -+ } - -- if (skb != *_skb) { - rxrpc_eaten_skb(*_skb, rxrpc_skb_eaten_by_unshare); -- *_skb = skb; -+ consume_skb(*_skb); -+ *_skb = nskb; -+ skb = nskb; - rxrpc_new_skb(skb, rxrpc_skb_new_unshared); - sp = rxrpc_skb(skb); - } --- -2.43.0 diff --git a/1102-net-skbuff-propagate-shared-frag-marker.patch b/1102-net-skbuff-propagate-shared-frag-marker.patch deleted file mode 100644 index 6880430f9..000000000 --- a/1102-net-skbuff-propagate-shared-frag-marker.patch +++ /dev/null @@ -1,105 +0,0 @@ -From: Eduard Abdullin -Subject: [PATCH AlmaLinux 10] net: skbuff: propagate shared-frag marker through frag-transfer helpers - -Backport of upstream v3 patch posted at -https://lore.kernel.org/all/agW4vC0r8QOUKtRT@v4bel/ -(sibling to upstream commit f4c50a4034e6 "xfrm: esp: avoid in-place -decrypt on shared skb frags"). - -Three frag-transfer helpers (__pskb_copy_fclone(), skb_try_coalesce(), -and skb_shift()) and the GRO accumulator helpers (skb_gro_receive() -and skb_gro_receive_list()) fail to propagate the SKBFL_SHARED_FRAG -bit in skb_shinfo()->flags when moving frag descriptors from source -to destination. As a result, the destination skb keeps a reference -to the same externally-owned or page-cache-backed pages while -reporting skb_has_shared_frag() as false. - -The mismatch is harmful in any in-place writer that uses -skb_has_shared_frag() to decide whether shared pages must be detoured -through skb_cow_data(). ESP input is one such writer (esp4.c, -esp6.c). Combined with an nft 'dup to ' rule, an -nf_dup_ipv4() / xt_TEE caller, or ESP-over-UDP with UDP GRO, this -lets an unprivileged user write into the page cache of a root-owned -read-only file via authencesn-ESN stray writes (CVE-2026-46300, -"Fragnesia"). - -Set SKBFL_SHARED_FRAG on the destination whenever frag descriptors -were actually moved from the source. skb_copy() and skb_copy_expand() -share skb_copy_header() too but linearize all paged data into freshly -allocated head storage and emerge with nr_frags == 0, so -skb_has_shared_frag() returns false on its own; they need no change. - -The same omission exists in skb_gro_receive() and -skb_gro_receive_list(). The former moves the incoming skb's frag -descriptors into the accumulator's last sub-skb via two paths plus a -"merge:" fallback that chains the whole skb onto frag_list; the -latter chains the incoming skb whole onto p's frag_list. Downstream -skb_segment() reads only skb_shinfo(p)->flags, and skb_segment_list() -reuses each sub-skb's shinfo as the nskb -- both p and lp must carry -the marker. - -Fixes: cef401de7be8 ("net: fix possible wrong checksum generation") -Fixes: f4c50a4034e6 ("xfrm: esp: avoid in-place decrypt on shared skb frags") -Reported-by: Sultan Alsawaf -Reported-by: William Bowling -Reported-by: Hyunwoo Kim -Signed-off-by: Eduard Abdullin ---- - net/core/gro.c | 4 ++++ - net/core/skbuff.c | 5 +++++ - 2 files changed, 9 insertions(+) - ---- a/net/core/gro.c -+++ b/net/core/gro.c -@@ -213,10 +213,12 @@ int skb_gro_receive(struct sk_buff *p, struct sk_buff *skb) - p->data_len += len; - p->truesize += delta_truesize; - p->len += len; -+ skb_shinfo(p)->flags |= skbinfo->flags & SKBFL_SHARED_FRAG; - if (lp != p) { - lp->data_len += len; - lp->truesize += delta_truesize; - lp->len += len; -+ skb_shinfo(lp)->flags |= skbinfo->flags & SKBFL_SHARED_FRAG; - } - NAPI_GRO_CB(skb)->same_flow = 1; - return 0; -@@ -244,6 +246,8 @@ int skb_gro_receive_list(struct sk_buff *p, struct sk_buff *skb) - p->truesize += skb->truesize; - p->len += skb->len; - -+ skb_shinfo(p)->flags |= skb_shinfo(skb)->flags & SKBFL_SHARED_FRAG; -+ - NAPI_GRO_CB(skb)->same_flow = 1; - - return 0; ---- a/net/core/skbuff.c -+++ b/net/core/skbuff.c -@@ -2123,6 +2123,7 @@ struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom, - skb_frag_ref(skb, i); - } - skb_shinfo(n)->nr_frags = i; -+ skb_shinfo(n)->flags |= skb_shinfo(skb)->flags & SKBFL_SHARED_FRAG; - } - - if (skb_has_frag_list(skb)) { -@@ -4198,6 +4199,8 @@ int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen) - tgt->ip_summed = CHECKSUM_PARTIAL; - skb->ip_summed = CHECKSUM_PARTIAL; - -+ skb_shinfo(tgt)->flags |= skb_shinfo(skb)->flags & SKBFL_SHARED_FRAG; -+ - skb_len_add(skb, -shiftlen); - skb_len_add(tgt, shiftlen); - -@@ -6028,6 +6031,8 @@ bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from, - from_shinfo->frags, - from_shinfo->nr_frags * sizeof(skb_frag_t)); - to_shinfo->nr_frags += from_shinfo->nr_frags; -+ if (from_shinfo->nr_frags) -+ to_shinfo->flags |= from_shinfo->flags & SKBFL_SHARED_FRAG; - - if (!skb_cloned(from)) - from_shinfo->nr_frags = 0; --- -2.43.0 diff --git a/1103-ptrace-require-cap-on-mm-less-task.patch b/1103-ptrace-require-cap-on-mm-less-task.patch deleted file mode 100644 index 0c23998c0..000000000 --- a/1103-ptrace-require-cap-on-mm-less-task.patch +++ /dev/null @@ -1,55 +0,0 @@ -From: Andrew Lukoshko -Subject: [PATCH AlmaLinux 10s] ptrace: require CAP_SYS_PTRACE when task has no mm - -kABI-safe AlmaLinux backport of upstream commit 31e62c2ebbfd -("ptrace: slightly saner 'get_dumpable()' logic") posted at -https://github.com/torvalds/linux/commit/31e62c2ebbfdc3fe3dbdf5e02c92a9dc67087a3a - -The upstream fix adds a 'user_dumpable:1' bit to task_struct and -caches the last dumpability in exit_mm() so __ptrace_may_access() -can require CAP_SYS_PTRACE when the target has no mm (e.g. kernel -threads or already-exited user tasks). That layout change to -task_struct breaks kABI on AlmaLinux 10s (the symtype -signature of struct task_struct is referenced by hundreds of -stablelist exports), so we cannot import the field/exit_mm hunks -as-is. - -Take the minimal kABI-safe slice instead: when task->mm == NULL, -require CAP_SYS_PTRACE in init_user_ns unconditionally. This closes -the Qualys Security Advisory hole -- mm-less targets no longer pass -the dumpability check by default -- without touching task_struct or -exit.c. The only behavioural delta versus upstream is that a user -task that has already cleared its mm in exit_mm() (a dying/zombie -task) now also requires CAP_SYS_PTRACE to attach, instead of being -remembered as previously dumpable. Such targets are rarely ptraced -in practice. - -Verified to apply with `patch -p1 -F0` (no offset, no fuzz, no rejects) -against kernel-6.12.0-227.el10. - -Reported-by: Qualys Security Advisory -Signed-off-by: Andrew Lukoshko ---- - kernel/ptrace.c | 11 +++++++---- - 1 file changed, 7 insertions(+), 4 deletions(-) - ---- a/kernel/ptrace.c -+++ b/kernel/ptrace.c -@@ -339,8 +339,11 @@ static int __ptrace_may_access(struct task_struct *task, unsigned int mode) - smp_rmb(); - mm = task->mm; -- if (mm && -- ((get_dumpable(mm) != SUID_DUMP_USER) && -- !ptrace_has_cap(mm->user_ns, mode))) -- return -EPERM; -+ if (mm) { -+ if ((get_dumpable(mm) != SUID_DUMP_USER) && -+ !ptrace_has_cap(mm->user_ns, mode)) -+ return -EPERM; -+ } else if (!ptrace_has_cap(&init_user_ns, mode)) { -+ return -EPERM; -+ } - - return security_ptrace_access_check(task, mode); --- -2.43.0 diff --git a/Makefile.rhelver b/Makefile.rhelver index 911958cf3..b91c23247 100644 --- a/Makefile.rhelver +++ b/Makefile.rhelver @@ -12,7 +12,7 @@ RHEL_MINOR = 3 # # Use this spot to avoid future merge conflicts. # Do not trim this comment. -RHEL_RELEASE = 227 +RHEL_RELEASE = 228 # # RHEL_REBASE_NUM diff --git a/kernel-aarch64-64k-debug-rhel.config b/kernel-aarch64-64k-debug-rhel.config index c9e969404..53f5b0b45 100644 --- a/kernel-aarch64-64k-debug-rhel.config +++ b/kernel-aarch64-64k-debug-rhel.config @@ -379,6 +379,9 @@ CONFIG_ARM64_GCS=y CONFIG_ARM64_HAFT=y CONFIG_ARM64_HW_AFDBM=y CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_MPAM_DRIVER_DEBUG=y +CONFIG_ARM64_MPAM_DRIVER=y +CONFIG_ARM64_MPAM=y CONFIG_ARM64_MTE=y # CONFIG_ARM64_PA_BITS_48 is not set CONFIG_ARM64_PA_BITS_52=y @@ -5632,6 +5635,7 @@ CONFIG_RELOCATABLE=y # CONFIG_REMOTEPROC is not set # CONFIG_REMOTE_TARGET is not set CONFIG_RENESAS_PHY=m +CONFIG_RESCTRL_FS=y # CONFIG_RESET_ATTACK_MITIGATION is not set CONFIG_RESET_CONTROLLER=y # CONFIG_RESET_GPIO is not set diff --git a/kernel-aarch64-64k-rhel.config b/kernel-aarch64-64k-rhel.config index 84d18a656..d50297372 100644 --- a/kernel-aarch64-64k-rhel.config +++ b/kernel-aarch64-64k-rhel.config @@ -379,6 +379,9 @@ CONFIG_ARM64_GCS=y CONFIG_ARM64_HAFT=y CONFIG_ARM64_HW_AFDBM=y CONFIG_ARM64_LSE_ATOMICS=y +# CONFIG_ARM64_MPAM_DRIVER_DEBUG is not set +CONFIG_ARM64_MPAM_DRIVER=y +CONFIG_ARM64_MPAM=y CONFIG_ARM64_MTE=y # CONFIG_ARM64_PA_BITS_48 is not set CONFIG_ARM64_PA_BITS_52=y @@ -5609,6 +5612,7 @@ CONFIG_RELOCATABLE=y # CONFIG_REMOTEPROC is not set # CONFIG_REMOTE_TARGET is not set CONFIG_RENESAS_PHY=m +CONFIG_RESCTRL_FS=y # CONFIG_RESET_ATTACK_MITIGATION is not set CONFIG_RESET_CONTROLLER=y # CONFIG_RESET_GPIO is not set diff --git a/kernel-aarch64-debug-rhel.config b/kernel-aarch64-debug-rhel.config index 6fa035a4d..96ea4fb32 100644 --- a/kernel-aarch64-debug-rhel.config +++ b/kernel-aarch64-debug-rhel.config @@ -379,6 +379,9 @@ CONFIG_ARM64_GCS=y CONFIG_ARM64_HAFT=y CONFIG_ARM64_HW_AFDBM=y CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_MPAM_DRIVER_DEBUG=y +CONFIG_ARM64_MPAM_DRIVER=y +CONFIG_ARM64_MPAM=y CONFIG_ARM64_MTE=y CONFIG_ARM64_PA_BITS_48=y CONFIG_ARM64_PAN=y @@ -5628,6 +5631,7 @@ CONFIG_RELOCATABLE=y # CONFIG_REMOTEPROC is not set # CONFIG_REMOTE_TARGET is not set CONFIG_RENESAS_PHY=m +CONFIG_RESCTRL_FS=y # CONFIG_RESET_ATTACK_MITIGATION is not set CONFIG_RESET_CONTROLLER=y # CONFIG_RESET_GPIO is not set diff --git a/kernel-aarch64-rhel.config b/kernel-aarch64-rhel.config index 64b20faf7..6fae36d90 100644 --- a/kernel-aarch64-rhel.config +++ b/kernel-aarch64-rhel.config @@ -379,6 +379,9 @@ CONFIG_ARM64_GCS=y CONFIG_ARM64_HAFT=y CONFIG_ARM64_HW_AFDBM=y CONFIG_ARM64_LSE_ATOMICS=y +# CONFIG_ARM64_MPAM_DRIVER_DEBUG is not set +CONFIG_ARM64_MPAM_DRIVER=y +CONFIG_ARM64_MPAM=y CONFIG_ARM64_MTE=y CONFIG_ARM64_PA_BITS_48=y CONFIG_ARM64_PAN=y @@ -5605,6 +5608,7 @@ CONFIG_RELOCATABLE=y # CONFIG_REMOTEPROC is not set # CONFIG_REMOTE_TARGET is not set CONFIG_RENESAS_PHY=m +CONFIG_RESCTRL_FS=y # CONFIG_RESET_ATTACK_MITIGATION is not set CONFIG_RESET_CONTROLLER=y # CONFIG_RESET_GPIO is not set diff --git a/kernel-aarch64-rt-64k-debug-rhel.config b/kernel-aarch64-rt-64k-debug-rhel.config index 65b77ef0f..c5e6a1816 100644 --- a/kernel-aarch64-rt-64k-debug-rhel.config +++ b/kernel-aarch64-rt-64k-debug-rhel.config @@ -379,6 +379,9 @@ CONFIG_ARM64_GCS=y CONFIG_ARM64_HAFT=y CONFIG_ARM64_HW_AFDBM=y CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_MPAM_DRIVER_DEBUG=y +CONFIG_ARM64_MPAM_DRIVER=y +CONFIG_ARM64_MPAM=y CONFIG_ARM64_MTE=y # CONFIG_ARM64_PA_BITS_48 is not set CONFIG_ARM64_PA_BITS_52=y @@ -5679,6 +5682,7 @@ CONFIG_RELOCATABLE=y # CONFIG_REMOTEPROC is not set # CONFIG_REMOTE_TARGET is not set CONFIG_RENESAS_PHY=m +CONFIG_RESCTRL_FS=y # CONFIG_RESET_ATTACK_MITIGATION is not set CONFIG_RESET_CONTROLLER=y # CONFIG_RESET_GPIO is not set diff --git a/kernel-aarch64-rt-64k-rhel.config b/kernel-aarch64-rt-64k-rhel.config index 77a4cfe2c..55aac7326 100644 --- a/kernel-aarch64-rt-64k-rhel.config +++ b/kernel-aarch64-rt-64k-rhel.config @@ -379,6 +379,9 @@ CONFIG_ARM64_GCS=y CONFIG_ARM64_HAFT=y CONFIG_ARM64_HW_AFDBM=y CONFIG_ARM64_LSE_ATOMICS=y +# CONFIG_ARM64_MPAM_DRIVER_DEBUG is not set +CONFIG_ARM64_MPAM_DRIVER=y +CONFIG_ARM64_MPAM=y CONFIG_ARM64_MTE=y # CONFIG_ARM64_PA_BITS_48 is not set CONFIG_ARM64_PA_BITS_52=y @@ -5656,6 +5659,7 @@ CONFIG_RELOCATABLE=y # CONFIG_REMOTEPROC is not set # CONFIG_REMOTE_TARGET is not set CONFIG_RENESAS_PHY=m +CONFIG_RESCTRL_FS=y # CONFIG_RESET_ATTACK_MITIGATION is not set CONFIG_RESET_CONTROLLER=y # CONFIG_RESET_GPIO is not set diff --git a/kernel-aarch64-rt-debug-rhel.config b/kernel-aarch64-rt-debug-rhel.config index c48a2f220..4a3b3c693 100644 --- a/kernel-aarch64-rt-debug-rhel.config +++ b/kernel-aarch64-rt-debug-rhel.config @@ -379,6 +379,9 @@ CONFIG_ARM64_GCS=y CONFIG_ARM64_HAFT=y CONFIG_ARM64_HW_AFDBM=y CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_MPAM_DRIVER_DEBUG=y +CONFIG_ARM64_MPAM_DRIVER=y +CONFIG_ARM64_MPAM=y CONFIG_ARM64_MTE=y CONFIG_ARM64_PA_BITS_48=y CONFIG_ARM64_PAN=y @@ -5675,6 +5678,7 @@ CONFIG_RELOCATABLE=y # CONFIG_REMOTEPROC is not set # CONFIG_REMOTE_TARGET is not set CONFIG_RENESAS_PHY=m +CONFIG_RESCTRL_FS=y # CONFIG_RESET_ATTACK_MITIGATION is not set CONFIG_RESET_CONTROLLER=y # CONFIG_RESET_GPIO is not set diff --git a/kernel-aarch64-rt-rhel.config b/kernel-aarch64-rt-rhel.config index 034298122..02814bde8 100644 --- a/kernel-aarch64-rt-rhel.config +++ b/kernel-aarch64-rt-rhel.config @@ -379,6 +379,9 @@ CONFIG_ARM64_GCS=y CONFIG_ARM64_HAFT=y CONFIG_ARM64_HW_AFDBM=y CONFIG_ARM64_LSE_ATOMICS=y +# CONFIG_ARM64_MPAM_DRIVER_DEBUG is not set +CONFIG_ARM64_MPAM_DRIVER=y +CONFIG_ARM64_MPAM=y CONFIG_ARM64_MTE=y CONFIG_ARM64_PA_BITS_48=y CONFIG_ARM64_PAN=y @@ -5652,6 +5655,7 @@ CONFIG_RELOCATABLE=y # CONFIG_REMOTEPROC is not set # CONFIG_REMOTE_TARGET is not set CONFIG_RENESAS_PHY=m +CONFIG_RESCTRL_FS=y # CONFIG_RESET_ATTACK_MITIGATION is not set CONFIG_RESET_CONTROLLER=y # CONFIG_RESET_GPIO is not set diff --git a/kernel-x86_64-debug-rhel.config b/kernel-x86_64-debug-rhel.config index daaabe2e5..9ba691d0a 100644 --- a/kernel-x86_64-debug-rhel.config +++ b/kernel-x86_64-debug-rhel.config @@ -7028,6 +7028,7 @@ CONFIG_SND_XEN_FRONTEND=m # CONFIG_SOFTLOCKUP_DETECTOR_INTR_STORM is not set CONFIG_SOFTLOCKUP_DETECTOR=y CONFIG_SOFT_WATCHDOG=m +# CONFIG_SOFT_WATCHDOG_PRETIMEOUT is not set CONFIG_SOLARIS_X86_PARTITION=y CONFIG_SONY_FF=y CONFIG_SONY_LAPTOP=m @@ -8257,10 +8258,14 @@ CONFIG_WAN=y # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set CONFIG_WATCHDOG_CORE=y CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT=y # CONFIG_WATCHDOG_NOWAYOUT is not set CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set +# CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP is not set +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC=y +# CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP is not set +CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV=y CONFIG_WATCHDOG_SYSFS=y CONFIG_WATCHDOG=y CONFIG_WATCH_QUEUE=y diff --git a/kernel-x86_64-rhel.config b/kernel-x86_64-rhel.config index c7a700ca7..194eee5be 100644 --- a/kernel-x86_64-rhel.config +++ b/kernel-x86_64-rhel.config @@ -7003,6 +7003,7 @@ CONFIG_SND_XEN_FRONTEND=m # CONFIG_SOFTLOCKUP_DETECTOR_INTR_STORM is not set CONFIG_SOFTLOCKUP_DETECTOR=y CONFIG_SOFT_WATCHDOG=m +# CONFIG_SOFT_WATCHDOG_PRETIMEOUT is not set CONFIG_SOLARIS_X86_PARTITION=y CONFIG_SONY_FF=y CONFIG_SONY_LAPTOP=m @@ -8232,10 +8233,14 @@ CONFIG_WAN=y # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set CONFIG_WATCHDOG_CORE=y CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT=y # CONFIG_WATCHDOG_NOWAYOUT is not set CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set +# CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP is not set +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC=y +# CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP is not set +CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV=y CONFIG_WATCHDOG_SYSFS=y CONFIG_WATCHDOG=y CONFIG_WATCH_QUEUE=y diff --git a/kernel-x86_64-rt-debug-rhel.config b/kernel-x86_64-rt-debug-rhel.config index 252e1b1bc..c3d88001b 100644 --- a/kernel-x86_64-rt-debug-rhel.config +++ b/kernel-x86_64-rt-debug-rhel.config @@ -7076,6 +7076,7 @@ CONFIG_SND_XEN_FRONTEND=m # CONFIG_SOFTLOCKUP_DETECTOR_INTR_STORM is not set CONFIG_SOFTLOCKUP_DETECTOR=y CONFIG_SOFT_WATCHDOG=m +# CONFIG_SOFT_WATCHDOG_PRETIMEOUT is not set CONFIG_SOLARIS_X86_PARTITION=y CONFIG_SONY_FF=y CONFIG_SONY_LAPTOP=m @@ -8306,10 +8307,14 @@ CONFIG_WAN=y # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set CONFIG_WATCHDOG_CORE=y CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT=y # CONFIG_WATCHDOG_NOWAYOUT is not set CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set +# CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP is not set +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC=y +# CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP is not set +CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV=y CONFIG_WATCHDOG_SYSFS=y CONFIG_WATCHDOG=y CONFIG_WATCH_QUEUE=y diff --git a/kernel-x86_64-rt-rhel.config b/kernel-x86_64-rt-rhel.config index 690116af0..a3bf5ee62 100644 --- a/kernel-x86_64-rt-rhel.config +++ b/kernel-x86_64-rt-rhel.config @@ -7051,6 +7051,7 @@ CONFIG_SND_XEN_FRONTEND=m # CONFIG_SOFTLOCKUP_DETECTOR_INTR_STORM is not set CONFIG_SOFTLOCKUP_DETECTOR=y CONFIG_SOFT_WATCHDOG=m +# CONFIG_SOFT_WATCHDOG_PRETIMEOUT is not set CONFIG_SOLARIS_X86_PARTITION=y CONFIG_SONY_FF=y CONFIG_SONY_LAPTOP=m @@ -8281,10 +8282,14 @@ CONFIG_WAN=y # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set CONFIG_WATCHDOG_CORE=y CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT=y # CONFIG_WATCHDOG_NOWAYOUT is not set CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set +# CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP is not set +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC=y +# CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP is not set +CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV=y CONFIG_WATCHDOG_SYSFS=y CONFIG_WATCHDOG=y CONFIG_WATCH_QUEUE=y diff --git a/kernel.changelog b/kernel.changelog index 44a593476..22076638c 100644 --- a/kernel.changelog +++ b/kernel.changelog @@ -1,3 +1,382 @@ +* Thu May 14 2026 CKI KWF Bot [6.12.0-228.el10] +- dpaa2-switch: validate num_ifs to prevent out-of-bounds write (CKI Backport Bot) [RHEL-174253] {CVE-2026-43205} +- dpaa2-switch: prevent ZERO_SIZE_PTR dereference when num_ifs is zero (CKI Backport Bot) [RHEL-174253] {CVE-2026-43205} +- s390/barrier: Make array_index_mask_nospec() __always_inline (Ramesh Chhetri) [RHEL-174629] +- s390/entry: Scrub r12 register on kernel entry (Ramesh Chhetri) [RHEL-174629] +- bitmap: introduce bitmap_weighted_xor() (Michal Schmidt) [RHEL-174745] +- bitmap: add test_zero_nbits() (Michal Schmidt) [RHEL-174745] +- bitmap: exclude nbits == 0 cases from bitmap test (Michal Schmidt) [RHEL-174745] +- bitmap: test bitmap_weight() for more (Michal Schmidt) [RHEL-174745] +- bitmap: add bitmap_weight_from() (Michal Schmidt) [RHEL-174745] +- bitmap: align test_bitmap output (Michal Schmidt) [RHEL-174745] +- bitmap: switch test to scnprintf("%%*pbl") (Michal Schmidt) [RHEL-174745] +- bitmap: Add test for out-of-boundary modifications for scatter & gather (Michal Schmidt) [RHEL-174745] +- cpumask: Introduce cpumask_weighted_or() (Michal Schmidt) [RHEL-174745] +- bitmap: Align documentation between bitmap_gather() and bitmap_scatter() (Michal Schmidt) [RHEL-174745] +- bitmap: remove _check_eq_u32_array (Michal Schmidt) [RHEL-174745] +- ice: set max queues in alloc_etherdev_mqs() (CKI Backport Bot) [RHEL-172305] +- ice: use netif_get_num_default_rss_queues() (CKI Backport Bot) [RHEL-172305] +- HID: wacom: fix out-of-bounds read in wacom_intuos_bt_irq (CKI Backport Bot) [RHEL-172748] {CVE-2026-43051} +- redhat/configs: Enable MPAM options (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Make resctrl_mon_ctx_waiters static (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Fix the check for no monitor components found (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Fix MBA CDP alloc_capable handling on unmount (Gavin Shan) [RHEL-164228] +- arm64: mpam: Add initial MPAM documentation (Gavin Shan) [RHEL-164228] +- arm_mpam: Quirk CMN-650's CSU NRDY behaviour (Gavin Shan) [RHEL-164228] +- arm_mpam: Add workaround for T241-MPAM-6 (Gavin Shan) [RHEL-164228] +- arm_mpam: Add workaround for T241-MPAM-4 (Gavin Shan) [RHEL-164228] +- arm_mpam: Add workaround for T241-MPAM-1 (Gavin Shan) [RHEL-164228] +- arm_mpam: Add quirk framework (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Call resctrl_init() on platforms that can support resctrl (Gavin Shan) [RHEL-164228] +- arm64: mpam: Select ARCH_HAS_CPU_RESCTRL (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add empty definitions for assorted resctrl functions (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Update the rmid reallocation limit (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add resctrl_arch_rmid_read() (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Allow resctrl to allocate monitors (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add support for csu counters (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add monitor initialisation and domain boilerplate (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add kunit test for control format conversions (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add support for 'MB' resource (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Wait for cacheinfo to be ready (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add rmid index helpers (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Convert to/from MPAMs fixed-point formats (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Hide CDP emulation behind CONFIG_EXPERT (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add CDP emulation (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add plumbing against arm64 task and cpu hooks (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Implement helpers to update configuration (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add resctrl_arch_get_config() (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Implement resctrl_arch_reset_all_ctrls() (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Pick the caches we will use as resctrl resources (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add boilerplate cpuhp and domain allocation (Gavin Shan) [RHEL-164228] +- KVM: arm64: Force guest EL1 to use user-space's partid configuration (Gavin Shan) [RHEL-164228] +- arm64: mpam: Add helpers to change a task or cpu's MPAM PARTID/PMG values (Gavin Shan) [RHEL-164228] +- arm64: mpam: Initialise and context switch the MPAMSM_EL1 register (Gavin Shan) [RHEL-164228] +- arm64: mpam: Add cpu_pm notifier to restore MPAM sysregs (Gavin Shan) [RHEL-164228] +- arm64: mpam: Advertise the CPUs MPAM limits to the driver (Gavin Shan) [RHEL-164228] +- arm64: mpam: Drop the CONFIG_EXPERT restriction (Gavin Shan) [RHEL-164228] +- arm64: mpam: Re-initialise MPAM regs when CPU comes online (Gavin Shan) [RHEL-164228] +- arm64: mpam: Context switch the MPAM registers (Gavin Shan) [RHEL-164228] +- KVM: arm64: Make MPAMSM_EL1 accesses UNDEF (Gavin Shan) [RHEL-164228] +- KVM: arm64: Preserve host MPAM configuration when changing traps (Gavin Shan) [RHEL-164228] +- arm64/sysreg: Add MPAMSM_EL1 register (Gavin Shan) [RHEL-164228] +- arm_mpam: Reset when feature configuration bit unset (Gavin Shan) [RHEL-164228] +- arm_mpam: Ensure in_reset_state is false after applying configuration (Gavin Shan) [RHEL-164228] +- arm_mpam: Force __iomem casts (Gavin Shan) [RHEL-100932] +- arm_mpam: Disable preemption when making accesses to fake MSC in kunit test (Gavin Shan) [RHEL-100932] +- arm_mpam: Fix null pointer dereference when restoring bandwidth counters (Gavin Shan) [RHEL-100932] +- arm_mpam: Use non-atomic bitops when modifying feature bitmap (Gavin Shan) [RHEL-100932] +- arm_mpam: Remove duplicate linux/srcu.h header (Gavin Shan) [RHEL-100932] +- arm_mpam: Stop using uninitialized variables in __ris_msmon_read() (Gavin Shan) [RHEL-100932] +- MAINTAINERS: new entry for MPAM Driver (Gavin Shan) [RHEL-100932] +- arm_mpam: Add kunit tests for props_mismatch() (Gavin Shan) [RHEL-100932] +- arm_mpam: Add kunit test for bitmap reset (Gavin Shan) [RHEL-100932] +- arm_mpam: Add helper to reset saved mbwu state (Gavin Shan) [RHEL-100932] +- arm_mpam: Use long MBWU counters if supported (Gavin Shan) [RHEL-100932] +- arm_mpam: Probe for long/lwd mbwu counters (Gavin Shan) [RHEL-100932] +- arm_mpam: Consider overflow in bandwidth counter state (Gavin Shan) [RHEL-100932] +- arm_mpam: Track bandwidth counter state for power management (Gavin Shan) [RHEL-100932] +- arm_mpam: Add mpam_msmon_read() to read monitor value (Gavin Shan) [RHEL-100932] +- arm_mpam: Add helpers to allocate monitors (Gavin Shan) [RHEL-100932] +- arm_mpam: Probe and reset the rest of the features (Gavin Shan) [RHEL-100932] +- arm_mpam: Allow configuration to be applied and restored during cpu online (Gavin Shan) [RHEL-100932] +- arm_mpam: Use a static key to indicate when mpam is enabled (Gavin Shan) [RHEL-100932] +- arm_mpam: Register and enable IRQs (Gavin Shan) [RHEL-100932] +- arm_mpam: Extend reset logic to allow devices to be reset any time (Gavin Shan) [RHEL-100932] +- arm_mpam: Add a helper to touch an MSC from any CPU (Gavin Shan) [RHEL-100932] +- arm_mpam: Reset MSC controls from cpuhp callbacks (Gavin Shan) [RHEL-100932] +- arm_mpam: Merge supported features during mpam_enable() into mpam_class (Gavin Shan) [RHEL-100932] +- arm_mpam: Probe the hardware features resctrl supports (Gavin Shan) [RHEL-100932] +- arm_mpam: Add helpers for managing the locking around the mon_sel registers (Gavin Shan) [RHEL-100932] +- arm_mpam: Probe hardware to find the supported partid/pmg values (Gavin Shan) [RHEL-100932] +- arm_mpam: Add cpuhp callbacks to probe MSC hardware (Gavin Shan) [RHEL-100932] +- arm_mpam: Add MPAM MSC register layout definitions (Gavin Shan) [RHEL-100932] +- arm_mpam: Add the class and component structures for firmware described ris (Gavin Shan) [RHEL-100932] +- arm_mpam: Add probe/remove for mpam msc driver and kbuild boiler plate (Gavin Shan) [RHEL-100932] +- ACPI / MPAM: Parse the MPAM table (Gavin Shan) [RHEL-100932] +- ACPI: Define acpi_put_table cleanup handler and acpi_get_table_pointer() helper (Gavin Shan) [RHEL-100932] +- platform: Define platform_device_put cleanup handler (Gavin Shan) [RHEL-100932] +- arm64: kconfig: Add Kconfig entry for MPAM (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Add a helper to fill a cpumask from a cache_id (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Find cache level by cache-id (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Add acpi_pptt_cache_v1_full to use pptt cache as one structure (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Stop acpi_count_levels() expecting callers to clear levels (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Add a helper to fill a cpumask from a processor container (Gavin Shan) [RHEL-100932] +- s390/pfault: Fix virtual vs physical address confusion (Mircea Dragan) [RHEL-170908] +- lib/vsprintf: Add specifier for printing struct timespec64 (CKI Backport Bot) [RHEL-172105] +- RDMA/rw: Fix MR pool exhaustion in bvec RDMA READ path (Kamal Heib) [RHEL-163515] +- RDMA/rw: Fall back to direct SGE on MR pool exhaustion (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Import DMA-BUF module in uverbs_std_types_dmabuf file (Kamal Heib) [RHEL-163515] +- RDMA/umem: Fix double dma_buf_unpin in failure path (Kamal Heib) [RHEL-163515] +- RDMA/core: Check id_priv->restricted_node_type in cma_listen_on_dev() (Kamal Heib) [RHEL-163515] +- RDMA/core: Fix stale RoCE GIDs during netdev events at registration (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: select CONFIG_DMA_SHARED_BUFFER (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Add DMABUF object type and operations (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Support external FD uobjects (Kamal Heib) [RHEL-163515] +- RDMA/core: introduce rdma_restrict_node_type() (Kamal Heib) [RHEL-163515] +- RDMA/umem: don't abuse current->group_leader (Kamal Heib) [RHEL-163515] +- IB/core: Extend rate limit support for RC QPs (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Add __GFP_NOWARN to ib_uverbs_unmarshall_recv() kmalloc (Kamal Heib) [RHEL-163515] +- RDMA/core: add rdma_rw_max_sge() helper for SQ sizing (Kamal Heib) [RHEL-163515] +- RDMA/core: add MR support for bvec-based RDMA operations (Kamal Heib) [RHEL-163515] +- RDMA/core: use IOVA-based DMA mapping for bvec RDMA operations (Kamal Heib) [RHEL-163515] +- RDMA/core: add bio_vec based RDMA read/write API (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Validate wqe_size before using it in ib_uverbs_post_send (Kamal Heib) [RHEL-163515] +- RDMA/iwcm: Fix workqueue list corruption by removing work_list (Kamal Heib) [RHEL-163515] +- RDMA/core: Avoid exporting module local functions and remove not-used ones (Kamal Heib) [RHEL-163515] +- RDMA/umem: Remove redundant DMABUF ops check (Kamal Heib) [RHEL-163515] +- IB/core: Add query_port_speed verb (Kamal Heib) [RHEL-163515] +- IB/core: Refactor rate_show to use ib_port_attr_to_rate() (Kamal Heib) [RHEL-163515] +- IB/core: Add helper to convert port attributes to data rate (Kamal Heib) [RHEL-163515] +- IB/core: Add async event on device speed change (Kamal Heib) [RHEL-163515] +- IB/cache: update gid cache on client reregister event (Kamal Heib) [RHEL-163515] +- RDMA/core: always drop device refcount in ib_del_sub_device_and_put() (Kamal Heib) [RHEL-163515] +- RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr() (Kamal Heib) [RHEL-163515] +- RDMA/ucma: Fix rdma_ucm_query_ib_service_resp struct padding (Kamal Heib) [RHEL-163515] +- RDMA/cm: Fix leaking the multicast GID table reference (Kamal Heib) [RHEL-163515] +- RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly (Kamal Heib) [RHEL-163515] +- RDMA/core: Reduce cond_resched() frequency in __ib_umem_release (Kamal Heib) [RHEL-163515] +- RDMA/core: Add new IB rate for XDR (8x) support (Kamal Heib) [RHEL-163515] +- RDMA/core: Prevent soft lockup during large user memory region cleanup (Kamal Heib) [RHEL-163515] +- RDMA/restrack: Fix typos in the comments (Kamal Heib) [RHEL-163515] +- RDMA/cm: Correct typedef and bad line warnings (Kamal Heib) [RHEL-163515] +- IB/isert: add WQ_PERCPU to alloc_workqueue users (Kamal Heib) [RHEL-163515] +- IB/iser: add WQ_PERCPU to alloc_workqueue users (Kamal Heib) [RHEL-163515] +- IB/rdmavt: rdmavt_qp.h: clean up kernel-doc comments (Kamal Heib) [RHEL-163515] +- RDMA/core: WQ_PERCPU added to alloc_workqueue users (Kamal Heib) [RHEL-163515] +- RDMA/cm: Base cm_id destruction timeout on CMA values (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: fix some kernel-doc warnings (Kamal Heib) [RHEL-163515] +- RDMA/core: let rdma_connect_locked() call lockdep_assert_held(&id_priv->handler_mutex) (Kamal Heib) [RHEL-163515] +- RDMA: Use %%pe format specifier for error pointers (Kamal Heib) [RHEL-163515] +- IB/ipoib: Ignore L3 master device (Kamal Heib) [RHEL-163515] +- RDMA/core: Use route entry flag to decide on loopback traffic (Kamal Heib) [RHEL-163515] +- RDMA/core: Squash a single user static function (Kamal Heib) [RHEL-163515] +- RDMA/core: fix "truely"->"truly" (Kamal Heib) [RHEL-163515] +- RDMA/ucma: Support write an event into a CM (Kamal Heib) [RHEL-163515] +- RDMA/ucma: Support query resolved service records (Kamal Heib) [RHEL-163515] +- RDMA/cma: Support IB service record resolution (Kamal Heib) [RHEL-163515] +- RDMA/sa_query: Support IB service records resolution (Kamal Heib) [RHEL-163515] +- RDMA/sa_query: Add RMPP support for SA queries (Kamal Heib) [RHEL-163515] +- dpll: zl3073x: add ref-sync pair support (Ivan Vecera) [RHEL-157828] +- dpll: zl3073x: add ref sync and output clock type helpers (Ivan Vecera) [RHEL-157828] +- dpll: zl3073x: use FIELD_MODIFY() for clear-and-set patterns (Ivan Vecera) [RHEL-157828] +- dpll: zl3073x: clean up esync get/set and use zl3073x_out_is_ndiv() (Ivan Vecera) [RHEL-157828] +- dpll: zl3073x: implement frequency monitoring (Ivan Vecera) [RHEL-165161] +- dpll: add frequency monitoring callback ops (Ivan Vecera) [RHEL-165161] +- dpll: add frequency monitoring to netlink spec (Ivan Vecera) [RHEL-165161] +- dpll: zl3073x: drop selected and simplify connected ref getter (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: add reference priority to zl3073x_chan (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: add DPLL channel status fields to zl3073x_chan (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: introduce zl3073x_chan for DPLL channel state (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: add zl3073x_ref_state_update helper (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: use struct_group to partition states (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: add die temperature reporting for supported chips (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: detect DPLL channel count from chip ID at runtime (Ivan Vecera) [RHEL-171979] +- crypto: tegra - Disable softirqs before finalizing request (CKI Backport Bot) [RHEL-159000] +- iommu/tegra241-cmdqv: Update uAPI to clarify HYP_OWN requirement (Jerry Snitselaar) [RHEL-160189] +- iommu/tegra241-cmdqv: Set supports_cmd op in tegra241_vcmdq_hw_init() (Jerry Snitselaar) [RHEL-160189] +- ima: don't clear IMA_DIGSIG flag when setting or removing non-IMA xattr (CKI Backport Bot) [RHEL-169737] {CVE-2025-68183} +- ice: Fix NULL pointer dereference in ice_vsi_set_napi_queues (CKI Backport Bot) [RHEL-147247] +- x86/platform/uv: Handle deconfigured sockets (Krzysztof Pawlinski) [RHEL-158967] +- redhat/configs: enable watchdog pretimout panic functionality for x86 (David Arcari) [RHEL-164699] +- watchdog: wdat_wdt: Fix ACPI table leak in probe function (David Arcari) [RHEL-164699] +- net/ipv6: Remove HBH helpers (Michal Schmidt) [RHEL-156515] +- net: mana: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- gve: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- bnxt_en: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- ice: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- net/mlx4: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- net/mlx5e: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- net/ipv6: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- net/ipv6: Drop HBH for BIG TCP on RX side (Michal Schmidt) [RHEL-156515] +- net/ipv6: Drop HBH for BIG TCP on TX side (Michal Schmidt) [RHEL-156515] +- net/ipv6: Introduce payload_len helpers (Michal Schmidt) [RHEL-156515] +- scsi: qla2xxx: Fix improper freeing of purex item (CKI Backport Bot) [RHEL-161120] {CVE-2025-68741} +- selftests/bpf: Add test to verify the fix of kprobe_write_ctx abuse (Ines Qian) [RHEL-78291] +- bpf: Fix abuse of kprobe_write_ctx via freplace (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix kprobe multi stacktrace_ips test (Ines Qian) [RHEL-78291] +- selftests/bpf: Add stacktrace ips test for kprobe_multi/kretprobe_multi (Ines Qian) [RHEL-78291] +- selftests/bpf: Remove hexdump dependency (Ines Qian) [RHEL-78291] +- selftests/bpf: Remove xxd util dependency (Ines Qian) [RHEL-78291] +- selftests/bpf: Skip livepatch test when prerequisites are missing (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for livepatch + bpf trampoline (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for exclusive maps (Ines Qian) [RHEL-78291] +- bpf: Require frozen map for calculating map hash (Ines Qian) [RHEL-78291] +- bpf: Limit bpf program signature size (Ines Qian) [RHEL-78291] +- bpf: Fix exclusive map memory leak (Ines Qian) [RHEL-78291] +- selftests/bpf: Allow selftests to build with older xxd (Ines Qian) [RHEL-78291] +- bpftool: Allow bpftool to build with openssl < 3 (Ines Qian) [RHEL-78291] +- selftests/bpf: Update test_tag to use sha256 (Ines Qian) [RHEL-78291] +- selftests/bpf: Test widen_imprecise_scalars() with different stack depth (Ines Qian) [RHEL-78291] +- bpf: account for current allocated stack depth in widen_imprecise_scalars() (Ines Qian) [RHEL-78291] +- bpf: add _impl suffix for bpf_stream_vprintk() kfunc (Ines Qian) [RHEL-78291] +- bpf:add _impl suffix for bpf_task_work_schedule* kfuncs (Ines Qian) [RHEL-78291] +- bpf: Conditionally include dynptr copy kfuncs (Ines Qian) [RHEL-78291] +- libbpf: Fix powerpc's stack register definition in bpf_tracing.h (Ines Qian) [RHEL-78291] +- bpf: Sync pending IRQ work before freeing ring buffer (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix redefinition of 'off' as different kind of symbol (Ines Qian) [RHEL-78291] +- bpf: Fix memory leak in __lookup_instance error path (Ines Qian) [RHEL-78291] +- selftests: arg_parsing: Ensure data is flushed to disk before reading. (Ines Qian) [RHEL-78291] +- selftests/bpf: make arg_parsing.c more robust to crashes (Ines Qian) [RHEL-78291] +- selftests/bpf: Add test for unpinning htab with internal timer struct (Ines Qian) [RHEL-78291] +- bpf: Avoid RCU context warning when unpinning htab with internal structs (Ines Qian) [RHEL-78291] +- libbpf: Fix undefined behavior in {get,put}_unaligned_be32() (Ines Qian) [RHEL-78291] +- bpf: Finish constification of 1st parameter of bpf_d_path() (Ines Qian) [RHEL-78291] +- libbpf: Fix missing #pragma in libbpf_utils.c (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for rejection of ALU ops with negative offsets (Ines Qian) [RHEL-78291] +- selftests/bpf: Add test for libbpf_sha256() (Ines Qian) [RHEL-78291] +- bpf: Reject negative offsets for ALU ops (Ines Qian) [RHEL-78291] +- libbpf: remove linux/unaligned.h dependency for libbpf_sha256() (Ines Qian) [RHEL-78291] +- libbpf: move libbpf_sha256() implementation into libbpf_utils.c (Ines Qian) [RHEL-78291] +- libbpf: move libbpf_errstr() into libbpf_utils.c (Ines Qian) [RHEL-78291] +- libbpf: remove unused libbpf_strerror_r and STRERR_BUFSIZE (Ines Qian) [RHEL-78291] +- libbpf: make libbpf_errno.c into more generic libbpf_utils.c (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix realloc size in bpf_get_addrs (Ines Qian) [RHEL-78291] +- libbpf: Replace AF_ALG with open coded SHA-256 (Ines Qian) [RHEL-78291] +- selftests/bpf: Add stress test for rqspinlock in NMI (Ines Qian) [RHEL-78291] +- selftests/bpf: Add test case for different expected_attach_type (Ines Qian) [RHEL-78291] +- bpf: Enforce expected_attach_type for tailcall compatibility (Ines Qian) [RHEL-78291] +- bpftool: Remove duplicate string.h header (Ines Qian) [RHEL-78291] +- bpf: Remove duplicate crypto/sha2.h header (Ines Qian) [RHEL-78291] +- libbpf: Fix error when st-prefix_ops and ops from differ btf (Ines Qian) [RHEL-78291] +- selftests/bpf: Add stacktrace map lookup_and_delete_elem test case (Ines Qian) [RHEL-78291] +- selftests/bpf: Refactor stacktrace_map case with skeleton (Ines Qian) [RHEL-78291] +- bpf: Add lookup_and_delete_elem for BPF_MAP_STACK_TRACE (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix flaky bpf_cookie selftest (Ines Qian) [RHEL-78291] +- selftests/bpf: Task_work selftest cleanup fixes (Ines Qian) [RHEL-78291] +- bpf: Mark kfuncs as __noclone (Ines Qian) [RHEL-78291] +- selftests/bpf: Add kprobe multi write ctx attach test (Ines Qian) [RHEL-78291] +- selftests/bpf: Add kprobe write ctx attach test (Ines Qian) [RHEL-78291] +- selftests/bpf: Add uprobe context ip register change test (Ines Qian) [RHEL-78291] +- selftests/bpf: Add uprobe context registers changes test (Ines Qian) [RHEL-78291] +- uprobe: Do not emulate/sstep original instruction when ip is changed (Ines Qian) [RHEL-78291] +- bpf: Allow uprobe program to change context registers (Ines Qian) [RHEL-78291] +- bpftool: Add bash completion for program signing options (Ines Qian) [RHEL-78291] +- selftests/bpf: Add union argument tests using fexit programs (Ines Qian) [RHEL-78291] +- bpf: Allow union argument in trampoline based programs (Ines Qian) [RHEL-78291] +- selftests: bpf: Add tests for signed loads from arena (Ines Qian) [RHEL-78291] +- bpf, arm64: Add support for signed arena loads (Ines Qian) [RHEL-78291] +- bpf, x86: Add support for signed arena loads (Ines Qian) [RHEL-78291] +- selftests/bpf: add bpf task work stress tests (Ines Qian) [RHEL-78291] +- selftests/bpf: BPF task work scheduling tests (Ines Qian) [RHEL-78291] +- bpf: task work scheduling kfuncs (Ines Qian) [RHEL-78291] +- bpf: extract map key pointer calculation (Ines Qian) [RHEL-78291] +- bpf: bpf task work plumbing (Ines Qian) [RHEL-78291] +- bpf: verifier: permit non-zero returns from async callbacks (Ines Qian) [RHEL-78291] +- bpf: htab: extract helper for freeing special structs (Ines Qian) [RHEL-78291] +- bpf: extract generic helper from process_timer_func() (Ines Qian) [RHEL-78291] +- bpf: refactor special field-type detection (Ines Qian) [RHEL-78291] +- selftests/bpf: Enable signature verification for some lskel tests (Ines Qian) [RHEL-78291] +- bpftool: Add support for signing BPF programs (Ines Qian) [RHEL-78291] +- libbpf: Embed and verify the metadata hash in the loader (Ines Qian) [RHEL-78291] +- libbpf: Update light skeleton for signing (Ines Qian) [RHEL-78291] +- bpf: Implement signature verification for BPF programs (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix selftest verifier_arena_large failure (Ines Qian) [RHEL-78291] +- bpftool: Fix -Wuninitialized-const-pointer warnings with clang >= 21 (Ines Qian) [RHEL-78291] +- bpftool: Fix UAF in get_delegate_value (Ines Qian) [RHEL-78291] +- bpftool: Add HELP_SPEC_OPTIONS in token.c (Ines Qian) [RHEL-78291] +- selftests/bpf: test cases for callchain sensitive live stack tracking (Ines Qian) [RHEL-78291] +- selftests/bpf: __not_msg() tag for test_loader framework (Ines Qian) [RHEL-78291] +- bpf: table based bpf_insn_successors() (Ines Qian) [RHEL-78291] +- bpf: disable and remove registers chain based liveness (Ines Qian) [RHEL-78291] +- bpf: signal error if old liveness is more conservative than new (Ines Qian) [RHEL-78291] +- bpf: enable callchain sensitive stack liveness tracking (Ines Qian) [RHEL-78291] +- bpf: callchain sensitive stack liveness tracking using CFG (Ines Qian) [RHEL-78291] +- bpf: compute instructions postorder per subprogram (Ines Qian) [RHEL-78291] +- bpf: declare a few utility functions as internal api (Ines Qian) [RHEL-78291] +- bpf: remove redundant REG_LIVE_READ check in stacksafe() (Ines Qian) [RHEL-78291] +- bpf: use compute_live_registers() info in clean_func_state (Ines Qian) [RHEL-78291] +- bpf: bpf_verifier_state->cleaned flag instead of REG_LIVE_DONE (Ines Qian) [RHEL-78291] +- bpf: Move the signature kfuncs to helpers.c (Ines Qian) [RHEL-78291] +- bpf: Return hashes of maps in BPF_OBJ_GET_INFO_BY_FD (Ines Qian) [RHEL-78291] +- libbpf: Support exclusive map creation (Ines Qian) [RHEL-78291] +- libbpf: Implement SHA256 internal helper (Ines Qian) [RHEL-78291] +- bpf: Implement exclusive map creation (Ines Qian) [RHEL-78291] +- bpf: Update the bpf_prog_calc_tag to use SHA256 (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for KF_RCU_PROTECTED (Ines Qian) [RHEL-78291] +- bpf: Enforce RCU protection for KF_RCU_PROTECTED (Ines Qian) [RHEL-78291] +- bpf, arm64: Call bpf_jit_binary_pack_finalize() in bpf_jit_free() (Ines Qian) [RHEL-78291] +- bpf...d_path(): constify path argument (Ines Qian) [RHEL-78291] +- selftests/bpf: Add a test for bpf_cgroup_from_id lookup in non-root cgns (Ines Qian) [RHEL-78291] +- bpf: Do not limit bpf_cgroup_from_id to current's namespace (Ines Qian) [RHEL-78291] +- bpftool: Search for tracefs at /sys/kernel/tracing first (Ines Qian) [RHEL-78291] +- selftests/bpf: More open-coded gettid syscall cleanup (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for arena fault reporting (Ines Qian) [RHEL-78291] +- selftests: bpf: use __stderr in stream error tests (Ines Qian) [RHEL-78291] +- selftests: bpf: introduce __stderr and __stdout (Ines Qian) [RHEL-78291] +- bpf: Report arena faults to BPF stderr (Ines Qian) [RHEL-78291] +- bpf: core: introduce main_prog_aux for stream access (Ines Qian) [RHEL-78291] +- bpf: arm64: simplify exception table handling (Ines Qian) [RHEL-78291] +- bpf: WQ_PERCPU added to alloc_workqueue users (Ines Qian) [RHEL-78291] +- bpf: replace use of system_unbound_wq with system_dfl_wq (Ines Qian) [RHEL-78291] +- bpf: replace use of system_wq with system_percpu_wq (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix the issue where the error code is 0 (Ines Qian) [RHEL-78291] +- powerpc64/bpf: Implement PROBE_ATOMIC instructions (Ines Qian) [RHEL-78291] +- powerpc64/bpf: Introduce bpf_jit_emit_atomic_ops() to emit atomic instructions (Ines Qian) [RHEL-78291] +- powerpc64/bpf: Implement bpf_addr_space_cast instruction (Ines Qian) [RHEL-78291] +- powerpc64/bpf: Implement PROBE_MEM32 pseudo instructions (Ines Qian) [RHEL-78291] +- selftests/bpf: Add BPF program dump in veristat (Ines Qian) [RHEL-78291] +- libbpf: Remove unused args in parse_usdt_note (Ines Qian) [RHEL-78291] +- bpf, arm64: Remove duplicated bpf_flush_icache() (Ines Qian) [RHEL-78291] +- selftests/bpf: Test kfunc bpf_strcasecmp (Ines Qian) [RHEL-78291] +- bpf: add bpf_strcasecmp kfunc (Ines Qian) [RHEL-78291] +- selftests/bpf: add benchmark testing for kprobe-multi-all (Ines Qian) [RHEL-78291] +- selftests/bpf: skip recursive functions for kprobe_multi (Ines Qian) [RHEL-78291] +- selftests/bpf: move get_ksyms and get_addrs to trace_helpers.c (Ines Qian) [RHEL-78291] +- bpf: Replace kvfree with kfree for kzalloc memory (Ines Qian) [RHEL-78291] +- bpftool: Add CET-aware symbol matching for x86_64 architectures (Ines Qian) [RHEL-78291] +- bpftool: Refactor kernel config reading into common helper (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix bpf_prog_detach2 usage in test_lirc_mode2 (Ines Qian) [RHEL-78291] +- selftests/bpf: Add LPM trie microbenchmarks (Ines Qian) [RHEL-78291] +- selftests/bpf: Enable timed may_goto tests for arm64 (Ines Qian) [RHEL-78291] +- bpf, arm64: Add JIT support for timed may_goto (Ines Qian) [RHEL-78291] +- selftests/bpf: Enrich subtest_basic_usdt case in selftests to cover SIB handling logic (Ines Qian) [RHEL-78291] +- libbpf: Fix USDT SIB argument handling causing unrecognized register error (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix typos and grammar in test sources (Ines Qian) [RHEL-78291] +- bpf: Add selftest to check the verifier's abstract multiplication (Ines Qian) [RHEL-78291] +- bpf: Improve the general precision of tnum_mul (Ines Qian) [RHEL-78291] +- selftests/bpf: Remove may_goto tests from DENYLIST.s390x (Ines Qian) [RHEL-78291] +- selftests/bpf: Enable timed may_goto verifier tests on s390x (Ines Qian) [RHEL-78291] +- selftests/bpf: Add __arch_s390x macro (Ines Qian) [RHEL-78291] +- selftests/bpf: Add a missing newline to the "bad arch spec" message (Ines Qian) [RHEL-78291] +- s390/bpf: Add s390 JIT support for timed may_goto (Ines Qian) [RHEL-78291] +- selftests/bpf: Remove entries from config.{arch} already present in config (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for trampoline.c (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_prog_run_array_cg() (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_task_storage_free() (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_iter_run_prog() (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_inode_storage_free() (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_cgrp_storage_free() (Ines Qian) [RHEL-78291] +- bpf: Use sha1() instead of sha1_transform() in bpf_prog_calc_tag() (Ines Qian) [RHEL-78291] +- selftests/bpf: Tests for is_scalar_branch_taken tnum logic (Ines Qian) [RHEL-78291] +- bpf: Use tnums for JEQ/JNE is_branch_taken logic (Ines Qian) [RHEL-78291] +- selftests/bpf: Use vmlinux.h for BPF programs (Ines Qian) [RHEL-78291] +- libbpf: Add documentation to version and error API functions (Ines Qian) [RHEL-78291] +- s390/bpf: Use direct calls and jumps where possible (Ines Qian) [RHEL-78291] +- bpftool: Add kernel.kptr_restrict hint for no instructions (Ines Qian) [RHEL-78291] +- bpf: Add a verbose message when the BTF limit is reached (Ines Qian) [RHEL-78291] +- bpf: Replace get_next_cpu() with cpumask_next_wrap() (Ines Qian) [RHEL-78291] +- selftests/bpf: Add test for DEVMAP reuse (Ines Qian) [RHEL-78291] +- libbpf: Fix reuse of DEVMAP (Ines Qian) [RHEL-78291] +- bpf: Remove migrate_disable in kprobe_multi_link_prog_run (Ines Qian) [RHEL-78291] +- selftests/bpf: Copy test_kmods when installing selftest (Ines Qian) [RHEL-78291] +- bpf: Don't use %%pK through printk (Ines Qian) [RHEL-78291] +- bpf: Replace kvfree with kfree for kzalloc memory (Ines Qian) [RHEL-78291] +- bpf: Remove redundant __GFP_NOWARN (Ines Qian) [RHEL-78291] +- bpf: Standardize function declaration style (Ines Qian) [RHEL-78291] +- bpf: removed unused 'env' parameter from is_reg64 and insn_has_def32 (Ines Qian) [RHEL-78291] +- selftests/bpf: Test multi_st_ops and calling kfuncs from different programs (Ines Qian) [RHEL-78291] +- selftests/bpf: Add multi_st_ops that supports multiple instances (Ines Qian) [RHEL-78291] +- bpf: Allow struct_ops to get map id by kdata (Ines Qian) [RHEL-78291] +- bpftool: Add bash completion for token argument (Ines Qian) [RHEL-78291] +- bpftool: Add bpftool-token manpage (Ines Qian) [RHEL-78291] +- bpftool: Add bpf_token show (Ines Qian) [RHEL-78291] +- selftests/bpf: Test concurrent task local data key creation (Ines Qian) [RHEL-78291] +- selftests/bpf: Test basic task local data operations (Ines Qian) [RHEL-78291] +- selftests/bpf: Introduce task local data (Ines Qian) [RHEL-78291] +- bpf: Allow syscall bpf programs to call non-recur helpers (Ines Qian) [RHEL-78291] +- i2c: i801: Revert "i2c: i801: replace acpi_lock with I2C bus lock" (Charles Haithcock) [RHEL-154387] +Resolves: RHEL-100932, RHEL-147247, RHEL-154387, RHEL-156515, RHEL-157828, RHEL-158967, RHEL-159000, RHEL-160189, RHEL-161120, RHEL-163515, RHEL-164228, RHEL-164699, RHEL-165161, RHEL-169737, RHEL-170908, RHEL-171979, RHEL-172105, RHEL-172305, RHEL-172748, RHEL-174253, RHEL-174629, RHEL-174745, RHEL-78291 + * Fri May 08 2026 CKI KWF Bot [6.12.0-227.el10] - PCI/PTM: Drop pci_enable_ptm() granularity parameter (CKI Backport Bot) [RHEL-172222] - x86/mce: Remove the redundant mce_hygon_feature_init() (Steve Best) [RHEL-130026] diff --git a/kernel.spec b/kernel.spec index 12f26563a..dbaaf2a87 100644 --- a/kernel.spec +++ b/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 227 +%define pkgrelease 228 %define kversion 6 -%define tarfile_release 6.12.0-227.el10 +%define tarfile_release 6.12.0-228.el10 # This is needed to do merge window version magic %define patchlevel 12 # This allows pkg_release to have configurable %%{?dist} tag -%define specrelease 227%{?buildid}%{?dist} +%define specrelease 228%{?buildid}%{?dist} # This defines the kabi tarball version -%define kabiversion 6.12.0-227.el10 +%define kabiversion 6.12.0-228.el10 # If this variable is set to 1, a bpf selftests build failure will cause a # fatal kernel package build error @@ -1143,10 +1143,6 @@ Patch2007: 0007-Bring-back-deprecated-pci-ids-to-be2iscsi-driver.patch Patch2008: 0008-Bring-back-deprecated-pci-ids-to-megaraid_sas-driver.patch Patch2009: 0009-Bring-back-deprecated-pci-ids-to-mpt3sas-driver.patch Patch2010: 0001-Keep-fs-btrfs-files-in-modules-package.patch -Patch1100: 1100-xfrm-esp-avoid-in-place-decrypt-shared-skb-frags.patch -Patch1101: 1101-rxrpc-linearize-paged-frags.patch -Patch1102: 1102-net-skbuff-propagate-shared-frag-marker.patch -Patch1103: 1103-ptrace-require-cap-on-mm-less-task.patch # END OF PATCH DEFINITIONS @@ -2042,10 +2038,6 @@ ApplyPatch 0007-Bring-back-deprecated-pci-ids-to-be2iscsi-driver.patch ApplyPatch 0008-Bring-back-deprecated-pci-ids-to-megaraid_sas-driver.patch ApplyPatch 0009-Bring-back-deprecated-pci-ids-to-mpt3sas-driver.patch ApplyPatch 0001-Keep-fs-btrfs-files-in-modules-package.patch -ApplyPatch 1100-xfrm-esp-avoid-in-place-decrypt-shared-skb-frags.patch -ApplyPatch 1101-rxrpc-linearize-paged-frags.patch -ApplyPatch 1102-net-skbuff-propagate-shared-frag-marker.patch -ApplyPatch 1103-ptrace-require-cap-on-mm-less-task.patch %{log_msg "End of patch applications"} # END OF PATCH APPLICATIONS @@ -4560,26 +4552,14 @@ fi\ # # %changelog -* Fri May 15 2026 Andrew Lukoshko - 6.12.0-227 -- ptrace: require CAP_SYS_PTRACE when task has no mm (kABI-safe backport - of upstream 31e62c2ebbfd, Qualys Security Advisory) - -* Thu May 14 2026 Eduard Abdullin - 6.12.0-227 -- net: skbuff: propagate shared-frag marker through frag-transfer helpers - -* Wed May 13 2026 Andrew Lukoshko - 6.12.0-227 -- xfrm: esp: avoid in-place decrypt on shared skb frags (CVE-2026-43284) -- rxrpc: linearize incoming DATA packet when it has paged frags (CVE-2026-43500) -- net: skbuff: propagate shared-frag marker through pskb_copy() - -* Wed May 13 2026 Eduard Abdullin - 6.12.0-227 +* Sat May 16 2026 Eduard Abdullin - 6.12.0-228 - Debrand for AlmaLinux OS - Use AlmaLinux OS secure boot cert -* Wed May 13 2026 Neal Gompa - 6.12.0-227 +* Sat May 16 2026 Neal Gompa - 6.12.0-228 - Enable Btrfs support for all kernel variants -* Wed May 13 2026 Andrew Lukoshko - 6.12.0-227 +* Sat May 16 2026 Andrew Lukoshko - 6.12.0-228 - hpsa: bring back deprecated PCI ids #CFHack #CFHack2024 - mptsas: bring back deprecated PCI ids #CFHack #CFHack2024 - megaraid_sas: bring back deprecated PCI ids #CFHack #CFHack2024 @@ -4589,6 +4569,384 @@ fi\ - kernel/rh_messages.h: enable all disabled pci devices by moving to unmaintained +* Thu May 14 2026 CKI KWF Bot [6.12.0-228.el10] +- dpaa2-switch: validate num_ifs to prevent out-of-bounds write (CKI Backport Bot) [RHEL-174253] {CVE-2026-43205} +- dpaa2-switch: prevent ZERO_SIZE_PTR dereference when num_ifs is zero (CKI Backport Bot) [RHEL-174253] {CVE-2026-43205} +- s390/barrier: Make array_index_mask_nospec() __always_inline (Ramesh Chhetri) [RHEL-174629] +- s390/entry: Scrub r12 register on kernel entry (Ramesh Chhetri) [RHEL-174629] +- bitmap: introduce bitmap_weighted_xor() (Michal Schmidt) [RHEL-174745] +- bitmap: add test_zero_nbits() (Michal Schmidt) [RHEL-174745] +- bitmap: exclude nbits == 0 cases from bitmap test (Michal Schmidt) [RHEL-174745] +- bitmap: test bitmap_weight() for more (Michal Schmidt) [RHEL-174745] +- bitmap: add bitmap_weight_from() (Michal Schmidt) [RHEL-174745] +- bitmap: align test_bitmap output (Michal Schmidt) [RHEL-174745] +- bitmap: switch test to scnprintf("%%*pbl") (Michal Schmidt) [RHEL-174745] +- bitmap: Add test for out-of-boundary modifications for scatter & gather (Michal Schmidt) [RHEL-174745] +- cpumask: Introduce cpumask_weighted_or() (Michal Schmidt) [RHEL-174745] +- bitmap: Align documentation between bitmap_gather() and bitmap_scatter() (Michal Schmidt) [RHEL-174745] +- bitmap: remove _check_eq_u32_array (Michal Schmidt) [RHEL-174745] +- ice: set max queues in alloc_etherdev_mqs() (CKI Backport Bot) [RHEL-172305] +- ice: use netif_get_num_default_rss_queues() (CKI Backport Bot) [RHEL-172305] +- HID: wacom: fix out-of-bounds read in wacom_intuos_bt_irq (CKI Backport Bot) [RHEL-172748] {CVE-2026-43051} +- redhat/configs: Enable MPAM options (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Make resctrl_mon_ctx_waiters static (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Fix the check for no monitor components found (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Fix MBA CDP alloc_capable handling on unmount (Gavin Shan) [RHEL-164228] +- arm64: mpam: Add initial MPAM documentation (Gavin Shan) [RHEL-164228] +- arm_mpam: Quirk CMN-650's CSU NRDY behaviour (Gavin Shan) [RHEL-164228] +- arm_mpam: Add workaround for T241-MPAM-6 (Gavin Shan) [RHEL-164228] +- arm_mpam: Add workaround for T241-MPAM-4 (Gavin Shan) [RHEL-164228] +- arm_mpam: Add workaround for T241-MPAM-1 (Gavin Shan) [RHEL-164228] +- arm_mpam: Add quirk framework (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Call resctrl_init() on platforms that can support resctrl (Gavin Shan) [RHEL-164228] +- arm64: mpam: Select ARCH_HAS_CPU_RESCTRL (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add empty definitions for assorted resctrl functions (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Update the rmid reallocation limit (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add resctrl_arch_rmid_read() (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Allow resctrl to allocate monitors (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add support for csu counters (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add monitor initialisation and domain boilerplate (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add kunit test for control format conversions (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add support for 'MB' resource (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Wait for cacheinfo to be ready (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add rmid index helpers (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Convert to/from MPAMs fixed-point formats (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Hide CDP emulation behind CONFIG_EXPERT (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add CDP emulation (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add plumbing against arm64 task and cpu hooks (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Implement helpers to update configuration (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add resctrl_arch_get_config() (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Implement resctrl_arch_reset_all_ctrls() (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Pick the caches we will use as resctrl resources (Gavin Shan) [RHEL-164228] +- arm_mpam: resctrl: Add boilerplate cpuhp and domain allocation (Gavin Shan) [RHEL-164228] +- KVM: arm64: Force guest EL1 to use user-space's partid configuration (Gavin Shan) [RHEL-164228] +- arm64: mpam: Add helpers to change a task or cpu's MPAM PARTID/PMG values (Gavin Shan) [RHEL-164228] +- arm64: mpam: Initialise and context switch the MPAMSM_EL1 register (Gavin Shan) [RHEL-164228] +- arm64: mpam: Add cpu_pm notifier to restore MPAM sysregs (Gavin Shan) [RHEL-164228] +- arm64: mpam: Advertise the CPUs MPAM limits to the driver (Gavin Shan) [RHEL-164228] +- arm64: mpam: Drop the CONFIG_EXPERT restriction (Gavin Shan) [RHEL-164228] +- arm64: mpam: Re-initialise MPAM regs when CPU comes online (Gavin Shan) [RHEL-164228] +- arm64: mpam: Context switch the MPAM registers (Gavin Shan) [RHEL-164228] +- KVM: arm64: Make MPAMSM_EL1 accesses UNDEF (Gavin Shan) [RHEL-164228] +- KVM: arm64: Preserve host MPAM configuration when changing traps (Gavin Shan) [RHEL-164228] +- arm64/sysreg: Add MPAMSM_EL1 register (Gavin Shan) [RHEL-164228] +- arm_mpam: Reset when feature configuration bit unset (Gavin Shan) [RHEL-164228] +- arm_mpam: Ensure in_reset_state is false after applying configuration (Gavin Shan) [RHEL-164228] +- arm_mpam: Force __iomem casts (Gavin Shan) [RHEL-100932] +- arm_mpam: Disable preemption when making accesses to fake MSC in kunit test (Gavin Shan) [RHEL-100932] +- arm_mpam: Fix null pointer dereference when restoring bandwidth counters (Gavin Shan) [RHEL-100932] +- arm_mpam: Use non-atomic bitops when modifying feature bitmap (Gavin Shan) [RHEL-100932] +- arm_mpam: Remove duplicate linux/srcu.h header (Gavin Shan) [RHEL-100932] +- arm_mpam: Stop using uninitialized variables in __ris_msmon_read() (Gavin Shan) [RHEL-100932] +- MAINTAINERS: new entry for MPAM Driver (Gavin Shan) [RHEL-100932] +- arm_mpam: Add kunit tests for props_mismatch() (Gavin Shan) [RHEL-100932] +- arm_mpam: Add kunit test for bitmap reset (Gavin Shan) [RHEL-100932] +- arm_mpam: Add helper to reset saved mbwu state (Gavin Shan) [RHEL-100932] +- arm_mpam: Use long MBWU counters if supported (Gavin Shan) [RHEL-100932] +- arm_mpam: Probe for long/lwd mbwu counters (Gavin Shan) [RHEL-100932] +- arm_mpam: Consider overflow in bandwidth counter state (Gavin Shan) [RHEL-100932] +- arm_mpam: Track bandwidth counter state for power management (Gavin Shan) [RHEL-100932] +- arm_mpam: Add mpam_msmon_read() to read monitor value (Gavin Shan) [RHEL-100932] +- arm_mpam: Add helpers to allocate monitors (Gavin Shan) [RHEL-100932] +- arm_mpam: Probe and reset the rest of the features (Gavin Shan) [RHEL-100932] +- arm_mpam: Allow configuration to be applied and restored during cpu online (Gavin Shan) [RHEL-100932] +- arm_mpam: Use a static key to indicate when mpam is enabled (Gavin Shan) [RHEL-100932] +- arm_mpam: Register and enable IRQs (Gavin Shan) [RHEL-100932] +- arm_mpam: Extend reset logic to allow devices to be reset any time (Gavin Shan) [RHEL-100932] +- arm_mpam: Add a helper to touch an MSC from any CPU (Gavin Shan) [RHEL-100932] +- arm_mpam: Reset MSC controls from cpuhp callbacks (Gavin Shan) [RHEL-100932] +- arm_mpam: Merge supported features during mpam_enable() into mpam_class (Gavin Shan) [RHEL-100932] +- arm_mpam: Probe the hardware features resctrl supports (Gavin Shan) [RHEL-100932] +- arm_mpam: Add helpers for managing the locking around the mon_sel registers (Gavin Shan) [RHEL-100932] +- arm_mpam: Probe hardware to find the supported partid/pmg values (Gavin Shan) [RHEL-100932] +- arm_mpam: Add cpuhp callbacks to probe MSC hardware (Gavin Shan) [RHEL-100932] +- arm_mpam: Add MPAM MSC register layout definitions (Gavin Shan) [RHEL-100932] +- arm_mpam: Add the class and component structures for firmware described ris (Gavin Shan) [RHEL-100932] +- arm_mpam: Add probe/remove for mpam msc driver and kbuild boiler plate (Gavin Shan) [RHEL-100932] +- ACPI / MPAM: Parse the MPAM table (Gavin Shan) [RHEL-100932] +- ACPI: Define acpi_put_table cleanup handler and acpi_get_table_pointer() helper (Gavin Shan) [RHEL-100932] +- platform: Define platform_device_put cleanup handler (Gavin Shan) [RHEL-100932] +- arm64: kconfig: Add Kconfig entry for MPAM (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Add a helper to fill a cpumask from a cache_id (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Find cache level by cache-id (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Add acpi_pptt_cache_v1_full to use pptt cache as one structure (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Stop acpi_count_levels() expecting callers to clear levels (Gavin Shan) [RHEL-100932] +- ACPI / PPTT: Add a helper to fill a cpumask from a processor container (Gavin Shan) [RHEL-100932] +- s390/pfault: Fix virtual vs physical address confusion (Mircea Dragan) [RHEL-170908] +- lib/vsprintf: Add specifier for printing struct timespec64 (CKI Backport Bot) [RHEL-172105] +- RDMA/rw: Fix MR pool exhaustion in bvec RDMA READ path (Kamal Heib) [RHEL-163515] +- RDMA/rw: Fall back to direct SGE on MR pool exhaustion (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Import DMA-BUF module in uverbs_std_types_dmabuf file (Kamal Heib) [RHEL-163515] +- RDMA/umem: Fix double dma_buf_unpin in failure path (Kamal Heib) [RHEL-163515] +- RDMA/core: Check id_priv->restricted_node_type in cma_listen_on_dev() (Kamal Heib) [RHEL-163515] +- RDMA/core: Fix stale RoCE GIDs during netdev events at registration (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: select CONFIG_DMA_SHARED_BUFFER (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Add DMABUF object type and operations (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Support external FD uobjects (Kamal Heib) [RHEL-163515] +- RDMA/core: introduce rdma_restrict_node_type() (Kamal Heib) [RHEL-163515] +- RDMA/umem: don't abuse current->group_leader (Kamal Heib) [RHEL-163515] +- IB/core: Extend rate limit support for RC QPs (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Add __GFP_NOWARN to ib_uverbs_unmarshall_recv() kmalloc (Kamal Heib) [RHEL-163515] +- RDMA/core: add rdma_rw_max_sge() helper for SQ sizing (Kamal Heib) [RHEL-163515] +- RDMA/core: add MR support for bvec-based RDMA operations (Kamal Heib) [RHEL-163515] +- RDMA/core: use IOVA-based DMA mapping for bvec RDMA operations (Kamal Heib) [RHEL-163515] +- RDMA/core: add bio_vec based RDMA read/write API (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: Validate wqe_size before using it in ib_uverbs_post_send (Kamal Heib) [RHEL-163515] +- RDMA/iwcm: Fix workqueue list corruption by removing work_list (Kamal Heib) [RHEL-163515] +- RDMA/core: Avoid exporting module local functions and remove not-used ones (Kamal Heib) [RHEL-163515] +- RDMA/umem: Remove redundant DMABUF ops check (Kamal Heib) [RHEL-163515] +- IB/core: Add query_port_speed verb (Kamal Heib) [RHEL-163515] +- IB/core: Refactor rate_show to use ib_port_attr_to_rate() (Kamal Heib) [RHEL-163515] +- IB/core: Add helper to convert port attributes to data rate (Kamal Heib) [RHEL-163515] +- IB/core: Add async event on device speed change (Kamal Heib) [RHEL-163515] +- IB/cache: update gid cache on client reregister event (Kamal Heib) [RHEL-163515] +- RDMA/core: always drop device refcount in ib_del_sub_device_and_put() (Kamal Heib) [RHEL-163515] +- RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr() (Kamal Heib) [RHEL-163515] +- RDMA/ucma: Fix rdma_ucm_query_ib_service_resp struct padding (Kamal Heib) [RHEL-163515] +- RDMA/cm: Fix leaking the multicast GID table reference (Kamal Heib) [RHEL-163515] +- RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly (Kamal Heib) [RHEL-163515] +- RDMA/core: Reduce cond_resched() frequency in __ib_umem_release (Kamal Heib) [RHEL-163515] +- RDMA/core: Add new IB rate for XDR (8x) support (Kamal Heib) [RHEL-163515] +- RDMA/core: Prevent soft lockup during large user memory region cleanup (Kamal Heib) [RHEL-163515] +- RDMA/restrack: Fix typos in the comments (Kamal Heib) [RHEL-163515] +- RDMA/cm: Correct typedef and bad line warnings (Kamal Heib) [RHEL-163515] +- IB/isert: add WQ_PERCPU to alloc_workqueue users (Kamal Heib) [RHEL-163515] +- IB/iser: add WQ_PERCPU to alloc_workqueue users (Kamal Heib) [RHEL-163515] +- IB/rdmavt: rdmavt_qp.h: clean up kernel-doc comments (Kamal Heib) [RHEL-163515] +- RDMA/core: WQ_PERCPU added to alloc_workqueue users (Kamal Heib) [RHEL-163515] +- RDMA/cm: Base cm_id destruction timeout on CMA values (Kamal Heib) [RHEL-163515] +- RDMA/uverbs: fix some kernel-doc warnings (Kamal Heib) [RHEL-163515] +- RDMA/core: let rdma_connect_locked() call lockdep_assert_held(&id_priv->handler_mutex) (Kamal Heib) [RHEL-163515] +- RDMA: Use %%pe format specifier for error pointers (Kamal Heib) [RHEL-163515] +- IB/ipoib: Ignore L3 master device (Kamal Heib) [RHEL-163515] +- RDMA/core: Use route entry flag to decide on loopback traffic (Kamal Heib) [RHEL-163515] +- RDMA/core: Squash a single user static function (Kamal Heib) [RHEL-163515] +- RDMA/core: fix "truely"->"truly" (Kamal Heib) [RHEL-163515] +- RDMA/ucma: Support write an event into a CM (Kamal Heib) [RHEL-163515] +- RDMA/ucma: Support query resolved service records (Kamal Heib) [RHEL-163515] +- RDMA/cma: Support IB service record resolution (Kamal Heib) [RHEL-163515] +- RDMA/sa_query: Support IB service records resolution (Kamal Heib) [RHEL-163515] +- RDMA/sa_query: Add RMPP support for SA queries (Kamal Heib) [RHEL-163515] +- dpll: zl3073x: add ref-sync pair support (Ivan Vecera) [RHEL-157828] +- dpll: zl3073x: add ref sync and output clock type helpers (Ivan Vecera) [RHEL-157828] +- dpll: zl3073x: use FIELD_MODIFY() for clear-and-set patterns (Ivan Vecera) [RHEL-157828] +- dpll: zl3073x: clean up esync get/set and use zl3073x_out_is_ndiv() (Ivan Vecera) [RHEL-157828] +- dpll: zl3073x: implement frequency monitoring (Ivan Vecera) [RHEL-165161] +- dpll: add frequency monitoring callback ops (Ivan Vecera) [RHEL-165161] +- dpll: add frequency monitoring to netlink spec (Ivan Vecera) [RHEL-165161] +- dpll: zl3073x: drop selected and simplify connected ref getter (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: add reference priority to zl3073x_chan (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: add DPLL channel status fields to zl3073x_chan (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: introduce zl3073x_chan for DPLL channel state (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: add zl3073x_ref_state_update helper (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: use struct_group to partition states (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: add die temperature reporting for supported chips (Ivan Vecera) [RHEL-171979] +- dpll: zl3073x: detect DPLL channel count from chip ID at runtime (Ivan Vecera) [RHEL-171979] +- crypto: tegra - Disable softirqs before finalizing request (CKI Backport Bot) [RHEL-159000] +- iommu/tegra241-cmdqv: Update uAPI to clarify HYP_OWN requirement (Jerry Snitselaar) [RHEL-160189] +- iommu/tegra241-cmdqv: Set supports_cmd op in tegra241_vcmdq_hw_init() (Jerry Snitselaar) [RHEL-160189] +- ima: don't clear IMA_DIGSIG flag when setting or removing non-IMA xattr (CKI Backport Bot) [RHEL-169737] {CVE-2025-68183} +- ice: Fix NULL pointer dereference in ice_vsi_set_napi_queues (CKI Backport Bot) [RHEL-147247] +- x86/platform/uv: Handle deconfigured sockets (Krzysztof Pawlinski) [RHEL-158967] +- redhat/configs: enable watchdog pretimout panic functionality for x86 (David Arcari) [RHEL-164699] +- watchdog: wdat_wdt: Fix ACPI table leak in probe function (David Arcari) [RHEL-164699] +- net/ipv6: Remove HBH helpers (Michal Schmidt) [RHEL-156515] +- net: mana: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- gve: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- bnxt_en: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- ice: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- net/mlx4: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- net/mlx5e: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- net/ipv6: Remove jumbo_remove step from TX path (Michal Schmidt) [RHEL-156515] +- net/ipv6: Drop HBH for BIG TCP on RX side (Michal Schmidt) [RHEL-156515] +- net/ipv6: Drop HBH for BIG TCP on TX side (Michal Schmidt) [RHEL-156515] +- net/ipv6: Introduce payload_len helpers (Michal Schmidt) [RHEL-156515] +- scsi: qla2xxx: Fix improper freeing of purex item (CKI Backport Bot) [RHEL-161120] {CVE-2025-68741} +- selftests/bpf: Add test to verify the fix of kprobe_write_ctx abuse (Ines Qian) [RHEL-78291] +- bpf: Fix abuse of kprobe_write_ctx via freplace (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix kprobe multi stacktrace_ips test (Ines Qian) [RHEL-78291] +- selftests/bpf: Add stacktrace ips test for kprobe_multi/kretprobe_multi (Ines Qian) [RHEL-78291] +- selftests/bpf: Remove hexdump dependency (Ines Qian) [RHEL-78291] +- selftests/bpf: Remove xxd util dependency (Ines Qian) [RHEL-78291] +- selftests/bpf: Skip livepatch test when prerequisites are missing (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for livepatch + bpf trampoline (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for exclusive maps (Ines Qian) [RHEL-78291] +- bpf: Require frozen map for calculating map hash (Ines Qian) [RHEL-78291] +- bpf: Limit bpf program signature size (Ines Qian) [RHEL-78291] +- bpf: Fix exclusive map memory leak (Ines Qian) [RHEL-78291] +- selftests/bpf: Allow selftests to build with older xxd (Ines Qian) [RHEL-78291] +- bpftool: Allow bpftool to build with openssl < 3 (Ines Qian) [RHEL-78291] +- selftests/bpf: Update test_tag to use sha256 (Ines Qian) [RHEL-78291] +- selftests/bpf: Test widen_imprecise_scalars() with different stack depth (Ines Qian) [RHEL-78291] +- bpf: account for current allocated stack depth in widen_imprecise_scalars() (Ines Qian) [RHEL-78291] +- bpf: add _impl suffix for bpf_stream_vprintk() kfunc (Ines Qian) [RHEL-78291] +- bpf:add _impl suffix for bpf_task_work_schedule* kfuncs (Ines Qian) [RHEL-78291] +- bpf: Conditionally include dynptr copy kfuncs (Ines Qian) [RHEL-78291] +- libbpf: Fix powerpc's stack register definition in bpf_tracing.h (Ines Qian) [RHEL-78291] +- bpf: Sync pending IRQ work before freeing ring buffer (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix redefinition of 'off' as different kind of symbol (Ines Qian) [RHEL-78291] +- bpf: Fix memory leak in __lookup_instance error path (Ines Qian) [RHEL-78291] +- selftests: arg_parsing: Ensure data is flushed to disk before reading. (Ines Qian) [RHEL-78291] +- selftests/bpf: make arg_parsing.c more robust to crashes (Ines Qian) [RHEL-78291] +- selftests/bpf: Add test for unpinning htab with internal timer struct (Ines Qian) [RHEL-78291] +- bpf: Avoid RCU context warning when unpinning htab with internal structs (Ines Qian) [RHEL-78291] +- libbpf: Fix undefined behavior in {get,put}_unaligned_be32() (Ines Qian) [RHEL-78291] +- bpf: Finish constification of 1st parameter of bpf_d_path() (Ines Qian) [RHEL-78291] +- libbpf: Fix missing #pragma in libbpf_utils.c (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for rejection of ALU ops with negative offsets (Ines Qian) [RHEL-78291] +- selftests/bpf: Add test for libbpf_sha256() (Ines Qian) [RHEL-78291] +- bpf: Reject negative offsets for ALU ops (Ines Qian) [RHEL-78291] +- libbpf: remove linux/unaligned.h dependency for libbpf_sha256() (Ines Qian) [RHEL-78291] +- libbpf: move libbpf_sha256() implementation into libbpf_utils.c (Ines Qian) [RHEL-78291] +- libbpf: move libbpf_errstr() into libbpf_utils.c (Ines Qian) [RHEL-78291] +- libbpf: remove unused libbpf_strerror_r and STRERR_BUFSIZE (Ines Qian) [RHEL-78291] +- libbpf: make libbpf_errno.c into more generic libbpf_utils.c (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix realloc size in bpf_get_addrs (Ines Qian) [RHEL-78291] +- libbpf: Replace AF_ALG with open coded SHA-256 (Ines Qian) [RHEL-78291] +- selftests/bpf: Add stress test for rqspinlock in NMI (Ines Qian) [RHEL-78291] +- selftests/bpf: Add test case for different expected_attach_type (Ines Qian) [RHEL-78291] +- bpf: Enforce expected_attach_type for tailcall compatibility (Ines Qian) [RHEL-78291] +- bpftool: Remove duplicate string.h header (Ines Qian) [RHEL-78291] +- bpf: Remove duplicate crypto/sha2.h header (Ines Qian) [RHEL-78291] +- libbpf: Fix error when st-prefix_ops and ops from differ btf (Ines Qian) [RHEL-78291] +- selftests/bpf: Add stacktrace map lookup_and_delete_elem test case (Ines Qian) [RHEL-78291] +- selftests/bpf: Refactor stacktrace_map case with skeleton (Ines Qian) [RHEL-78291] +- bpf: Add lookup_and_delete_elem for BPF_MAP_STACK_TRACE (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix flaky bpf_cookie selftest (Ines Qian) [RHEL-78291] +- selftests/bpf: Task_work selftest cleanup fixes (Ines Qian) [RHEL-78291] +- bpf: Mark kfuncs as __noclone (Ines Qian) [RHEL-78291] +- selftests/bpf: Add kprobe multi write ctx attach test (Ines Qian) [RHEL-78291] +- selftests/bpf: Add kprobe write ctx attach test (Ines Qian) [RHEL-78291] +- selftests/bpf: Add uprobe context ip register change test (Ines Qian) [RHEL-78291] +- selftests/bpf: Add uprobe context registers changes test (Ines Qian) [RHEL-78291] +- uprobe: Do not emulate/sstep original instruction when ip is changed (Ines Qian) [RHEL-78291] +- bpf: Allow uprobe program to change context registers (Ines Qian) [RHEL-78291] +- bpftool: Add bash completion for program signing options (Ines Qian) [RHEL-78291] +- selftests/bpf: Add union argument tests using fexit programs (Ines Qian) [RHEL-78291] +- bpf: Allow union argument in trampoline based programs (Ines Qian) [RHEL-78291] +- selftests: bpf: Add tests for signed loads from arena (Ines Qian) [RHEL-78291] +- bpf, arm64: Add support for signed arena loads (Ines Qian) [RHEL-78291] +- bpf, x86: Add support for signed arena loads (Ines Qian) [RHEL-78291] +- selftests/bpf: add bpf task work stress tests (Ines Qian) [RHEL-78291] +- selftests/bpf: BPF task work scheduling tests (Ines Qian) [RHEL-78291] +- bpf: task work scheduling kfuncs (Ines Qian) [RHEL-78291] +- bpf: extract map key pointer calculation (Ines Qian) [RHEL-78291] +- bpf: bpf task work plumbing (Ines Qian) [RHEL-78291] +- bpf: verifier: permit non-zero returns from async callbacks (Ines Qian) [RHEL-78291] +- bpf: htab: extract helper for freeing special structs (Ines Qian) [RHEL-78291] +- bpf: extract generic helper from process_timer_func() (Ines Qian) [RHEL-78291] +- bpf: refactor special field-type detection (Ines Qian) [RHEL-78291] +- selftests/bpf: Enable signature verification for some lskel tests (Ines Qian) [RHEL-78291] +- bpftool: Add support for signing BPF programs (Ines Qian) [RHEL-78291] +- libbpf: Embed and verify the metadata hash in the loader (Ines Qian) [RHEL-78291] +- libbpf: Update light skeleton for signing (Ines Qian) [RHEL-78291] +- bpf: Implement signature verification for BPF programs (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix selftest verifier_arena_large failure (Ines Qian) [RHEL-78291] +- bpftool: Fix -Wuninitialized-const-pointer warnings with clang >= 21 (Ines Qian) [RHEL-78291] +- bpftool: Fix UAF in get_delegate_value (Ines Qian) [RHEL-78291] +- bpftool: Add HELP_SPEC_OPTIONS in token.c (Ines Qian) [RHEL-78291] +- selftests/bpf: test cases for callchain sensitive live stack tracking (Ines Qian) [RHEL-78291] +- selftests/bpf: __not_msg() tag for test_loader framework (Ines Qian) [RHEL-78291] +- bpf: table based bpf_insn_successors() (Ines Qian) [RHEL-78291] +- bpf: disable and remove registers chain based liveness (Ines Qian) [RHEL-78291] +- bpf: signal error if old liveness is more conservative than new (Ines Qian) [RHEL-78291] +- bpf: enable callchain sensitive stack liveness tracking (Ines Qian) [RHEL-78291] +- bpf: callchain sensitive stack liveness tracking using CFG (Ines Qian) [RHEL-78291] +- bpf: compute instructions postorder per subprogram (Ines Qian) [RHEL-78291] +- bpf: declare a few utility functions as internal api (Ines Qian) [RHEL-78291] +- bpf: remove redundant REG_LIVE_READ check in stacksafe() (Ines Qian) [RHEL-78291] +- bpf: use compute_live_registers() info in clean_func_state (Ines Qian) [RHEL-78291] +- bpf: bpf_verifier_state->cleaned flag instead of REG_LIVE_DONE (Ines Qian) [RHEL-78291] +- bpf: Move the signature kfuncs to helpers.c (Ines Qian) [RHEL-78291] +- bpf: Return hashes of maps in BPF_OBJ_GET_INFO_BY_FD (Ines Qian) [RHEL-78291] +- libbpf: Support exclusive map creation (Ines Qian) [RHEL-78291] +- libbpf: Implement SHA256 internal helper (Ines Qian) [RHEL-78291] +- bpf: Implement exclusive map creation (Ines Qian) [RHEL-78291] +- bpf: Update the bpf_prog_calc_tag to use SHA256 (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for KF_RCU_PROTECTED (Ines Qian) [RHEL-78291] +- bpf: Enforce RCU protection for KF_RCU_PROTECTED (Ines Qian) [RHEL-78291] +- bpf, arm64: Call bpf_jit_binary_pack_finalize() in bpf_jit_free() (Ines Qian) [RHEL-78291] +- bpf...d_path(): constify path argument (Ines Qian) [RHEL-78291] +- selftests/bpf: Add a test for bpf_cgroup_from_id lookup in non-root cgns (Ines Qian) [RHEL-78291] +- bpf: Do not limit bpf_cgroup_from_id to current's namespace (Ines Qian) [RHEL-78291] +- bpftool: Search for tracefs at /sys/kernel/tracing first (Ines Qian) [RHEL-78291] +- selftests/bpf: More open-coded gettid syscall cleanup (Ines Qian) [RHEL-78291] +- selftests/bpf: Add tests for arena fault reporting (Ines Qian) [RHEL-78291] +- selftests: bpf: use __stderr in stream error tests (Ines Qian) [RHEL-78291] +- selftests: bpf: introduce __stderr and __stdout (Ines Qian) [RHEL-78291] +- bpf: Report arena faults to BPF stderr (Ines Qian) [RHEL-78291] +- bpf: core: introduce main_prog_aux for stream access (Ines Qian) [RHEL-78291] +- bpf: arm64: simplify exception table handling (Ines Qian) [RHEL-78291] +- bpf: WQ_PERCPU added to alloc_workqueue users (Ines Qian) [RHEL-78291] +- bpf: replace use of system_unbound_wq with system_dfl_wq (Ines Qian) [RHEL-78291] +- bpf: replace use of system_wq with system_percpu_wq (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix the issue where the error code is 0 (Ines Qian) [RHEL-78291] +- powerpc64/bpf: Implement PROBE_ATOMIC instructions (Ines Qian) [RHEL-78291] +- powerpc64/bpf: Introduce bpf_jit_emit_atomic_ops() to emit atomic instructions (Ines Qian) [RHEL-78291] +- powerpc64/bpf: Implement bpf_addr_space_cast instruction (Ines Qian) [RHEL-78291] +- powerpc64/bpf: Implement PROBE_MEM32 pseudo instructions (Ines Qian) [RHEL-78291] +- selftests/bpf: Add BPF program dump in veristat (Ines Qian) [RHEL-78291] +- libbpf: Remove unused args in parse_usdt_note (Ines Qian) [RHEL-78291] +- bpf, arm64: Remove duplicated bpf_flush_icache() (Ines Qian) [RHEL-78291] +- selftests/bpf: Test kfunc bpf_strcasecmp (Ines Qian) [RHEL-78291] +- bpf: add bpf_strcasecmp kfunc (Ines Qian) [RHEL-78291] +- selftests/bpf: add benchmark testing for kprobe-multi-all (Ines Qian) [RHEL-78291] +- selftests/bpf: skip recursive functions for kprobe_multi (Ines Qian) [RHEL-78291] +- selftests/bpf: move get_ksyms and get_addrs to trace_helpers.c (Ines Qian) [RHEL-78291] +- bpf: Replace kvfree with kfree for kzalloc memory (Ines Qian) [RHEL-78291] +- bpftool: Add CET-aware symbol matching for x86_64 architectures (Ines Qian) [RHEL-78291] +- bpftool: Refactor kernel config reading into common helper (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix bpf_prog_detach2 usage in test_lirc_mode2 (Ines Qian) [RHEL-78291] +- selftests/bpf: Add LPM trie microbenchmarks (Ines Qian) [RHEL-78291] +- selftests/bpf: Enable timed may_goto tests for arm64 (Ines Qian) [RHEL-78291] +- bpf, arm64: Add JIT support for timed may_goto (Ines Qian) [RHEL-78291] +- selftests/bpf: Enrich subtest_basic_usdt case in selftests to cover SIB handling logic (Ines Qian) [RHEL-78291] +- libbpf: Fix USDT SIB argument handling causing unrecognized register error (Ines Qian) [RHEL-78291] +- selftests/bpf: Fix typos and grammar in test sources (Ines Qian) [RHEL-78291] +- bpf: Add selftest to check the verifier's abstract multiplication (Ines Qian) [RHEL-78291] +- bpf: Improve the general precision of tnum_mul (Ines Qian) [RHEL-78291] +- selftests/bpf: Remove may_goto tests from DENYLIST.s390x (Ines Qian) [RHEL-78291] +- selftests/bpf: Enable timed may_goto verifier tests on s390x (Ines Qian) [RHEL-78291] +- selftests/bpf: Add __arch_s390x macro (Ines Qian) [RHEL-78291] +- selftests/bpf: Add a missing newline to the "bad arch spec" message (Ines Qian) [RHEL-78291] +- s390/bpf: Add s390 JIT support for timed may_goto (Ines Qian) [RHEL-78291] +- selftests/bpf: Remove entries from config.{arch} already present in config (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for trampoline.c (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_prog_run_array_cg() (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_task_storage_free() (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_iter_run_prog() (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_inode_storage_free() (Ines Qian) [RHEL-78291] +- bpf: use rcu_read_lock_dont_migrate() for bpf_cgrp_storage_free() (Ines Qian) [RHEL-78291] +- bpf: Use sha1() instead of sha1_transform() in bpf_prog_calc_tag() (Ines Qian) [RHEL-78291] +- selftests/bpf: Tests for is_scalar_branch_taken tnum logic (Ines Qian) [RHEL-78291] +- bpf: Use tnums for JEQ/JNE is_branch_taken logic (Ines Qian) [RHEL-78291] +- selftests/bpf: Use vmlinux.h for BPF programs (Ines Qian) [RHEL-78291] +- libbpf: Add documentation to version and error API functions (Ines Qian) [RHEL-78291] +- s390/bpf: Use direct calls and jumps where possible (Ines Qian) [RHEL-78291] +- bpftool: Add kernel.kptr_restrict hint for no instructions (Ines Qian) [RHEL-78291] +- bpf: Add a verbose message when the BTF limit is reached (Ines Qian) [RHEL-78291] +- bpf: Replace get_next_cpu() with cpumask_next_wrap() (Ines Qian) [RHEL-78291] +- selftests/bpf: Add test for DEVMAP reuse (Ines Qian) [RHEL-78291] +- libbpf: Fix reuse of DEVMAP (Ines Qian) [RHEL-78291] +- bpf: Remove migrate_disable in kprobe_multi_link_prog_run (Ines Qian) [RHEL-78291] +- selftests/bpf: Copy test_kmods when installing selftest (Ines Qian) [RHEL-78291] +- bpf: Don't use %%pK through printk (Ines Qian) [RHEL-78291] +- bpf: Replace kvfree with kfree for kzalloc memory (Ines Qian) [RHEL-78291] +- bpf: Remove redundant __GFP_NOWARN (Ines Qian) [RHEL-78291] +- bpf: Standardize function declaration style (Ines Qian) [RHEL-78291] +- bpf: removed unused 'env' parameter from is_reg64 and insn_has_def32 (Ines Qian) [RHEL-78291] +- selftests/bpf: Test multi_st_ops and calling kfuncs from different programs (Ines Qian) [RHEL-78291] +- selftests/bpf: Add multi_st_ops that supports multiple instances (Ines Qian) [RHEL-78291] +- bpf: Allow struct_ops to get map id by kdata (Ines Qian) [RHEL-78291] +- bpftool: Add bash completion for token argument (Ines Qian) [RHEL-78291] +- bpftool: Add bpftool-token manpage (Ines Qian) [RHEL-78291] +- bpftool: Add bpf_token show (Ines Qian) [RHEL-78291] +- selftests/bpf: Test concurrent task local data key creation (Ines Qian) [RHEL-78291] +- selftests/bpf: Test basic task local data operations (Ines Qian) [RHEL-78291] +- selftests/bpf: Introduce task local data (Ines Qian) [RHEL-78291] +- bpf: Allow syscall bpf programs to call non-recur helpers (Ines Qian) [RHEL-78291] +- i2c: i801: Revert "i2c: i801: replace acpi_lock with I2C bus lock" (Charles Haithcock) [RHEL-154387] + * Fri May 08 2026 CKI KWF Bot [6.12.0-227.el10] - PCI/PTM: Drop pci_enable_ptm() granularity parameter (CKI Backport Bot) [RHEL-172222] - x86/mce: Remove the redundant mce_hygon_feature_init() (Steve Best) [RHEL-130026] diff --git a/sources b/sources index ea6b2044f..af2904571 100644 --- a/sources +++ b/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-227.el10.tar.xz) = 651b833c2d8c341dd9d07f4bd585b8015ef4135cbfb44311a8766ce7841632b6090e3f0681c86cd91b1b786bc132b5ac8bf3ac69fe69f32965a4912d75840ce6 -SHA512 (kernel-abi-stablelists-6.12.0-227.el10.tar.xz) = c3c76b4a3087ea1432f432887c4feb2f52e89bd3656b827f7c2c68d3adf3bd8e6bdfac7704b7f0fd6f4b14878da75590de20a44bf1ec47199f3cde873c938995 -SHA512 (kernel-kabi-dw-6.12.0-227.el10.tar.xz) = 89e57ad14edda6e053c3c14b8f2b4916ca3a96fa46bd00e89467b170ac65fafef47684d950b6eea91d33c8128da27f97096f13930e12468120233b7f6c1e3746 +SHA512 (linux-6.12.0-228.el10.tar.xz) = acb07fc6ad1538a3012140aafebbbea7b9c2c3c0bdaaa96cd4f7f7c479c21e35ad4cfb867d7702fd9aab624001fdb9b68b46671efd2b2f86b5cd782f34b3115b +SHA512 (kernel-abi-stablelists-6.12.0-228.el10.tar.xz) = a06e3c88ba6cc7d606b7ed54ef517b5840d8783dde5352a948386e6eba34b9a1316fd8c4453451f61fa540fe586845590edf5c16ae6a96665ad648742952857f +SHA512 (kernel-kabi-dw-6.12.0-228.el10.tar.xz) = 2ea83a14500520555caa081ce597da3c8e1352ba32e41fc2c53838ff0bc0092c6aaf0ea0ea29d9b0fea8dafe71d24a6b6ef6b1df726a21ddfa9b9a47d0c7003b