kernel-5.14.0-638.el9
* Thu Nov 13 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-638.el9]
- cpufreq: powernv: Stop setting common freq attributes (Yunming Yang) [RHEL-121364]
- NFS: remove revoked delegation from server's delegation list (Benjamin Coddington) [RHEL-123617]
- selftests/bpf: Test invalid narrower ctx load (Viktor Malik) [RHEL-110274]
- bpf: Reject narrower access to pointer ctx fields (Viktor Malik) [RHEL-110274]
- libbpf: Fix handling of BPF arena relocations (Viktor Malik) [RHEL-110274]
- s390/bpf: Fix bpf_arch_text_poke() with new_addr == NULL again (Viktor Malik) [RHEL-110274]
- selftests/bpf: Add negative test cases for snprintf (Viktor Malik) [RHEL-110274]
- bpf: Reject %%p%% format string in bprintf-like helpers (Viktor Malik) [RHEL-110274]
- selftests/bpf: adapt one more case in test_lru_map to the new target_free (Viktor Malik) [RHEL-110274]
- libbpf: Fix possible use-after-free for externs (Viktor Malik) [RHEL-110274]
- libbpf: Fix null pointer dereference in btf_dump__free on allocation failure (Viktor Malik) [RHEL-110274]
- bpf: Adjust free target to avoid global starvation of LRU map (Viktor Malik) [RHEL-110274]
- selftests/bpf: Add tests with stack ptr register in conditional jmp (Viktor Malik) [RHEL-110274]
- bpf: Do not include stack ptr register in precision backtracking bookkeeping (Viktor Malik) [RHEL-110274]
- selftests/bpf: Add unit tests with __bpf_trap() kfunc (Viktor Malik) [RHEL-110274]
- bpf: Warn with __bpf_trap() kfunc maybe due to uninitialized variable (Viktor Malik) [RHEL-110274]
- libbpf/btf: Fix string handling to support multi-split BTF (Viktor Malik) [RHEL-110274]
- bpf: Pass the same orig_call value to trampoline functions (Viktor Malik) [RHEL-110274]
- s390/bpf: Store backchain even for leaf progs (Viktor Malik) [RHEL-110274]
- libbpf: Check bpf_map_skeleton link for NULL (Viktor Malik) [RHEL-110274]
- bpf: Fix WARN() in get_bpf_raw_tp_regs (Viktor Malik) [RHEL-110274]
- libbpf: Use proper errno value in nlattr (Viktor Malik) [RHEL-110274]
- selftests/bpf: Fix caps for __xlated/jited_unpriv (Viktor Malik) [RHEL-110274]
- bpftool: Fix cgroup command to only show cgroup bpf programs (Viktor Malik) [RHEL-110274]
- bpftool: Fix regression of "bpftool cgroup tree" EINVAL on older kernels (Viktor Malik) [RHEL-110274]
- libbpf: Use proper errno value in linker (Viktor Malik) [RHEL-110274]
- Use thread-safe function pointer in libbpf_print (Viktor Malik) [RHEL-110274]
- bpf: Use proper type to calculate bpf_raw_tp_null_args.mask index (Viktor Malik) [RHEL-110274]
- selftests/bpf: Add test for attaching kprobe with long event names (Viktor Malik) [RHEL-110274]
- selftests/bpf: Add test for attaching uprobe with long event names (Viktor Malik) [RHEL-110274]
- libbpf: Fix event name too long error (Viktor Malik) [RHEL-110274]
- libbpf: Verify section type in btf_find_elf_sections (Viktor Malik) [RHEL-110274]
- libbpf: Fix buffer overflow in bpf_object__init_prog (Viktor Malik) [RHEL-110274]
- selftests/bpf: Add test case for atomic update of fd htab (Viktor Malik) [RHEL-110274]
- bpf: Don't allocate per-cpu extra_elems for fd htab (Viktor Malik) [RHEL-110274]
- bpf: Add is_fd_htab() helper (Viktor Malik) [RHEL-110274]
- bpf: Support atomic update for htab of maps (Viktor Malik) [RHEL-110274]
- bpf: Rename __htab_percpu_map_update_elem to htab_map_update_elem_in_place (Viktor Malik) [RHEL-110274]
- bpf: Factor out htab_elem_value helper() (Viktor Malik) [RHEL-110274]
- bpf: Bail out early in __htab_map_lookup_and_delete_elem() (Viktor Malik) [RHEL-110274]
- selftests/bpf: Fix bpf_nf selftest failure (Viktor Malik) [RHEL-110274]
- bpf: Check link_create.flags parameter for multi_uprobe (Viktor Malik) [RHEL-110274]
- bpf: Check link_create.flags parameter for multi_kprobe (Viktor Malik) [RHEL-110274]
- mm/memory-failure: fix VM_BUG_ON_PAGE(PagePoisoned(page)) when unpoison memory (CKI Backport Bot) [RHEL-119153] {CVE-2025-39883}
Resolves: RHEL-110274, RHEL-119153, RHEL-121364, RHEL-123617
Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
This commit is contained in:
parent
fee8c5101a
commit
cecd298072
@ -12,7 +12,7 @@ RHEL_MINOR = 8
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 637
|
||||
RHEL_RELEASE = 638
|
||||
|
||||
#
|
||||
# ZSTREAM
|
||||
|
||||
@ -1,3 +1,50 @@
|
||||
* Thu Nov 13 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-638.el9]
|
||||
- cpufreq: powernv: Stop setting common freq attributes (Yunming Yang) [RHEL-121364]
|
||||
- NFS: remove revoked delegation from server's delegation list (Benjamin Coddington) [RHEL-123617]
|
||||
- selftests/bpf: Test invalid narrower ctx load (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Reject narrower access to pointer ctx fields (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix handling of BPF arena relocations (Viktor Malik) [RHEL-110274]
|
||||
- s390/bpf: Fix bpf_arch_text_poke() with new_addr == NULL again (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add negative test cases for snprintf (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Reject %%p%% format string in bprintf-like helpers (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: adapt one more case in test_lru_map to the new target_free (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix possible use-after-free for externs (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix null pointer dereference in btf_dump__free on allocation failure (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Adjust free target to avoid global starvation of LRU map (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add tests with stack ptr register in conditional jmp (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Do not include stack ptr register in precision backtracking bookkeeping (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add unit tests with __bpf_trap() kfunc (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Warn with __bpf_trap() kfunc maybe due to uninitialized variable (Viktor Malik) [RHEL-110274]
|
||||
- libbpf/btf: Fix string handling to support multi-split BTF (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Pass the same orig_call value to trampoline functions (Viktor Malik) [RHEL-110274]
|
||||
- s390/bpf: Store backchain even for leaf progs (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Check bpf_map_skeleton link for NULL (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Fix WARN() in get_bpf_raw_tp_regs (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Use proper errno value in nlattr (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Fix caps for __xlated/jited_unpriv (Viktor Malik) [RHEL-110274]
|
||||
- bpftool: Fix cgroup command to only show cgroup bpf programs (Viktor Malik) [RHEL-110274]
|
||||
- bpftool: Fix regression of "bpftool cgroup tree" EINVAL on older kernels (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Use proper errno value in linker (Viktor Malik) [RHEL-110274]
|
||||
- Use thread-safe function pointer in libbpf_print (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Use proper type to calculate bpf_raw_tp_null_args.mask index (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add test for attaching kprobe with long event names (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add test for attaching uprobe with long event names (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix event name too long error (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Verify section type in btf_find_elf_sections (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix buffer overflow in bpf_object__init_prog (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add test case for atomic update of fd htab (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Don't allocate per-cpu extra_elems for fd htab (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Add is_fd_htab() helper (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Support atomic update for htab of maps (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Rename __htab_percpu_map_update_elem to htab_map_update_elem_in_place (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Factor out htab_elem_value helper() (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Bail out early in __htab_map_lookup_and_delete_elem() (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Fix bpf_nf selftest failure (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Check link_create.flags parameter for multi_uprobe (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Check link_create.flags parameter for multi_kprobe (Viktor Malik) [RHEL-110274]
|
||||
- mm/memory-failure: fix VM_BUG_ON_PAGE(PagePoisoned(page)) when unpoison memory (CKI Backport Bot) [RHEL-119153] {CVE-2025-39883}
|
||||
Resolves: RHEL-110274, RHEL-119153, RHEL-121364, RHEL-123617
|
||||
|
||||
* Wed Nov 12 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-637.el9]
|
||||
- net/smc: fix one NULL pointer dereference in smc_ib_is_sg_need_sync() (Mete Durlu) [RHEL-99989]
|
||||
- net/smc: fix UAF on smcsk after smc_listen_out() (Mete Durlu) [RHEL-99989]
|
||||
|
||||
54
kernel.spec
54
kernel.spec
@ -165,15 +165,15 @@ Summary: The Linux kernel
|
||||
# define buildid .local
|
||||
%define specversion 5.14.0
|
||||
%define patchversion 5.14
|
||||
%define pkgrelease 637
|
||||
%define pkgrelease 638
|
||||
%define kversion 5
|
||||
%define tarfile_release 5.14.0-637.el9
|
||||
%define tarfile_release 5.14.0-638.el9
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 14
|
||||
# This allows pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 637%{?buildid}%{?dist}
|
||||
%define specrelease 638%{?buildid}%{?dist}
|
||||
# This defines the kabi tarball version
|
||||
%define kabiversion 5.14.0-637.el9
|
||||
%define kabiversion 5.14.0-638.el9
|
||||
|
||||
#
|
||||
# End of genspec.sh variables
|
||||
@ -3693,6 +3693,52 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Thu Nov 13 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-638.el9]
|
||||
- cpufreq: powernv: Stop setting common freq attributes (Yunming Yang) [RHEL-121364]
|
||||
- NFS: remove revoked delegation from server's delegation list (Benjamin Coddington) [RHEL-123617]
|
||||
- selftests/bpf: Test invalid narrower ctx load (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Reject narrower access to pointer ctx fields (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix handling of BPF arena relocations (Viktor Malik) [RHEL-110274]
|
||||
- s390/bpf: Fix bpf_arch_text_poke() with new_addr == NULL again (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add negative test cases for snprintf (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Reject %%p%% format string in bprintf-like helpers (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: adapt one more case in test_lru_map to the new target_free (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix possible use-after-free for externs (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix null pointer dereference in btf_dump__free on allocation failure (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Adjust free target to avoid global starvation of LRU map (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add tests with stack ptr register in conditional jmp (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Do not include stack ptr register in precision backtracking bookkeeping (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add unit tests with __bpf_trap() kfunc (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Warn with __bpf_trap() kfunc maybe due to uninitialized variable (Viktor Malik) [RHEL-110274]
|
||||
- libbpf/btf: Fix string handling to support multi-split BTF (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Pass the same orig_call value to trampoline functions (Viktor Malik) [RHEL-110274]
|
||||
- s390/bpf: Store backchain even for leaf progs (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Check bpf_map_skeleton link for NULL (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Fix WARN() in get_bpf_raw_tp_regs (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Use proper errno value in nlattr (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Fix caps for __xlated/jited_unpriv (Viktor Malik) [RHEL-110274]
|
||||
- bpftool: Fix cgroup command to only show cgroup bpf programs (Viktor Malik) [RHEL-110274]
|
||||
- bpftool: Fix regression of "bpftool cgroup tree" EINVAL on older kernels (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Use proper errno value in linker (Viktor Malik) [RHEL-110274]
|
||||
- Use thread-safe function pointer in libbpf_print (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Use proper type to calculate bpf_raw_tp_null_args.mask index (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add test for attaching kprobe with long event names (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add test for attaching uprobe with long event names (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix event name too long error (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Verify section type in btf_find_elf_sections (Viktor Malik) [RHEL-110274]
|
||||
- libbpf: Fix buffer overflow in bpf_object__init_prog (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Add test case for atomic update of fd htab (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Don't allocate per-cpu extra_elems for fd htab (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Add is_fd_htab() helper (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Support atomic update for htab of maps (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Rename __htab_percpu_map_update_elem to htab_map_update_elem_in_place (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Factor out htab_elem_value helper() (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Bail out early in __htab_map_lookup_and_delete_elem() (Viktor Malik) [RHEL-110274]
|
||||
- selftests/bpf: Fix bpf_nf selftest failure (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Check link_create.flags parameter for multi_uprobe (Viktor Malik) [RHEL-110274]
|
||||
- bpf: Check link_create.flags parameter for multi_kprobe (Viktor Malik) [RHEL-110274]
|
||||
- mm/memory-failure: fix VM_BUG_ON_PAGE(PagePoisoned(page)) when unpoison memory (CKI Backport Bot) [RHEL-119153] {CVE-2025-39883}
|
||||
|
||||
* Wed Nov 12 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-637.el9]
|
||||
- net/smc: fix one NULL pointer dereference in smc_ib_is_sg_need_sync() (Mete Durlu) [RHEL-99989]
|
||||
- net/smc: fix UAF on smcsk after smc_listen_out() (Mete Durlu) [RHEL-99989]
|
||||
|
||||
6
sources
6
sources
@ -1,3 +1,3 @@
|
||||
SHA512 (linux-5.14.0-637.el9.tar.xz) = ddea8d618d35e145952f4319f8f926c05bc6091962764bbe27179b949485061638fc5a0b8e20742e2ae90285a5e4abce67b63ac6b055e834eaaafb995af795cf
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-637.el9.tar.bz2) = 6ed7544edd7e3c15a7003dcd463158bb1c325170ae879541581129dbae40ed3eb58f2413c20f96434b4a93cf654f7d0aa5859863bc2ae73cab288ecf43978816
|
||||
SHA512 (kernel-kabi-dw-5.14.0-637.el9.tar.bz2) = 614e1b23e5c37db26c3cb33e438306001ffcfda65cdddc48fd5d82a42d320d6366e581f5862e711e7ddcf805938760493f32037674e7b58b85fc1aea826abb52
|
||||
SHA512 (linux-5.14.0-638.el9.tar.xz) = daa448a4b9435398aecb0b72bdbf1f66b4070993000aef06dd7f6e20a3debc95376d41ff1a67afef997b12b9dc7ee04f2bfb4963fb4976ba811da48c222f715e
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-638.el9.tar.bz2) = a6c1391af3bbb72ae2a502debd02d9a522b290ba3be38fe53ed0066f533fd32c5414a7e436d56d48f6f835dc862688ac4067d95789798c7dbcfc5b807dbc6f4e
|
||||
SHA512 (kernel-kabi-dw-5.14.0-638.el9.tar.bz2) = 44884825b66754de73e31bacae49bf7888dd41efae9bc22abb34ad8bfa7eac740cb9a1250f3dd7cff3c107b69057b827c806f5e7fedad9b41af12e55c7d16bfc
|
||||
|
||||
Loading…
Reference in New Issue
Block a user