# All Global changes to build and install go here. # Per the below section about __spec_install_pre, any rpm # environment changes that affect %%install need to go # here before the %%install macro is pre-built. # Disable frame pointers %undefine _include_frame_pointers # Disable LTO in userspace packages. %global _lto_cflags %{nil} # Option to enable compiling with clang instead of gcc. %bcond_with toolchain_clang %if %{with toolchain_clang} %global toolchain clang %endif # Compile the kernel with LTO (only supported when building with clang). %bcond_with clang_lto %if %{with clang_lto} && %{without toolchain_clang} {error:clang_lto requires --with toolchain_clang} %endif # RPM macros strip everything in BUILDROOT, either with __strip # or find-debuginfo.sh. Make use of __spec_install_post override # and save/restore binaries we want to package as unstripped. %define buildroot_unstripped %{_builddir}/root_unstripped %define buildroot_save_unstripped() \ (cd %{buildroot}; cp -rav --parents -t %{buildroot_unstripped}/ %1 || true) \ %{nil} %define __restore_unstripped_root_post \ echo "Restoring unstripped artefacts %{buildroot_unstripped} -> %{buildroot}" \ cp -rav %{buildroot_unstripped}/. %{buildroot}/ \ %{nil} # The kernel's %%install section is special # Normally the %%install section starts by cleaning up the BUILD_ROOT # like so: # # %%__spec_install_pre %%{___build_pre}\ # [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf "${RPM_BUILD_ROOT}"\ # mkdir -p `dirname "$RPM_BUILD_ROOT"`\ # mkdir "$RPM_BUILD_ROOT"\ # %%{nil} # # But because of kernel variants, the %%build section, specifically # BuildKernel(), moves each variant to its final destination as the # variant is built. This violates the expectation of the %%install # section. As a result we snapshot the current env variables and # purposely leave out the removal section. All global wide changes # should be added above this line otherwise the %%install section # will not see them. %global __spec_install_pre %{___build_pre} # Replace '-' with '_' where needed so that variants can use '-' in # their name. %define uname_suffix() %{lua: local flavour = rpm.expand('%{?1:+%{1}}') flavour = flavour:gsub('-', '_') if flavour ~= '' then print(flavour) end } # This returns the main kernel tied to a debug variant. For example, # kernel-debug is the debug version of kernel, so we return an empty # string. However, kernel-64k-debug is the debug version of kernel-64k, # in this case we need to return "64k", and so on. This is used in # macros below where we need this for some uname based requires. %define uname_variant() %{lua: local flavour = rpm.expand('%{?1:%{1}}') _, _, main, sub = flavour:find("(%w+)-(.*)") if main then print("+" .. main) end } # At the time of this writing (2019-03), RHEL8 packages use w2.xzdio # compression for rpms (xz, level 2). # Kernel has several large (hundreds of mbytes) rpms, they take ~5 mins # to compress by single-threaded xz. Switch to threaded compression, # and from level 2 to 3 to keep compressed sizes close to "w2" results. # # NB: if default compression in /usr/lib/rpm/redhat/macros ever changes, # this one might need tweaking (e.g. if default changes to w3.xzdio, # change below to w4T.xzdio): # # This is disabled on i686 as it triggers oom errors %ifnarch i686 %define _binary_payload w3T.xzdio %endif Summary: The Linux kernel %if 0%{?fedora} %define secure_boot_arch x86_64 %else %define secure_boot_arch x86_64 aarch64 s390x ppc64le %endif # Signing for secure boot authentication %ifarch %{secure_boot_arch} %global signkernel 1 %else %global signkernel 0 %endif # RHEL/CentOS/Fedora specific .SBAT entries %if 0%{?centos} %global sbat_suffix centos %else %if 0%{?fedora} %global sbat_suffix fedora %else %global sbat_suffix rhel %endif %endif # Sign modules on all arches %global signmodules 1 # Add additional rhel certificates to system trusted keys. %global rhelkeys 1 # Compress modules only for architectures that build modules %ifarch noarch %global zipmodules 0 %else %global zipmodules 1 %endif # Default compression algorithm %global compression xz %global compression_flags --compress --check=crc32 --lzma2=dict=1MiB %global compext xz %if 0%{?fedora} %define primary_target fedora %else %define primary_target rhel %endif # # genspec.sh variables # # kernel package name %global package_name kernel-automotive %global gemini 0 # Include Fedora files %global include_fedora 0 # Include RHEL files %global include_rhel 0 # Include RT files %global include_rt 0 # Include Automotive files %global include_automotive 1 # Provide Patchlist.changelog file %global patchlist_changelog 0 # Set released_kernel to 1 when the upstream source tarball contains a # kernel release. (This includes prepatch or "rc" releases.) # Set released_kernel to 0 when the upstream source tarball contains an # unreleased kernel development snapshot. %global released_kernel 0 # Set debugbuildsenabled to 1 to build separate base and debug kernels # (on supported architectures). The kernel-debug-* subpackages will # contain the debug kernel. # Set debugbuildsenabled to 0 to not build a separate debug kernel, but # to build the base kernel using the debug configuration. (Specifying # the --with-release option overrides this setting.) %define debugbuildsenabled 1 %define buildid .erofs %define specrpmversion 6.12.0 %define specversion 6.12.0 %define patchversion 6.12 %define pkgrelease 221.erofs %define kversion 6 %define tarfile_release 6.12.0-221.erofs.el10iv # This is needed to do merge window version magic %define patchlevel 12 # This allows pkg_release to have configurable %%{?dist} tag %define specrelease 221%{?buildid}%{?dist} # This defines the kabi tarball version %define kabiversion 6.12.0-221.erofs.el10iv # If this variable is set to 1, a bpf selftests build failure will cause a # fatal kernel package build error %define selftests_must_build 0 # # End of genspec.sh variables # %define pkg_release %{specrelease} # libexec dir is not used by the linker, so the shared object there # should not be exported to RPM provides %global __provides_exclude_from ^%{_libexecdir}/kselftests %define _with_automotive_build 1 %define _without_debug 1 # The following build options are (mostly) enabled by default, but may become # enabled/disabled by later architecture-specific checks. # Where disabled by default, they can be enabled by using --with in the # rpmbuild command, or by forcing these values to 1. # Where enabled by default, they can be disabled by using --without in # the rpmbuild command, or by forcing these values to 0. # # standard kernel %define with_up %{?_without_up: 0} %{?!_without_up: 1} # build the base variants %define with_base %{?_without_base: 0} %{?!_without_base: 1} # build also debug variants %define with_debug %{?_without_debug: 0} %{?!_without_debug: 1} # kernel-zfcpdump (s390 specific kernel for zfcpdump) %define with_zfcpdump %{?_without_zfcpdump: 0} %{?!_without_zfcpdump: 1} # kernel-16k (aarch64 kernel with 16K page_size) %define with_arm64_16k %{?_with_arm64_16k: 1} %{?!_with_arm64_16k: 0} # kernel-64k (aarch64 kernel with 64K page_size) %define with_arm64_64k %{?_without_arm64_64k: 0} %{?!_without_arm64_64k: 1} # kernel-rt (x86_64 and aarch64 only PREEMPT_RT enabled kernel) %define with_realtime %{?_without_realtime: 0} %{?!_without_realtime: 1} # kernel-rt-64k (aarch64 RT kernel with 64K page_size) %define with_realtime_arm64_64k %{?_without_realtime_arm64_64k: 0} %{?!_without_realtime_arm64_64k: 1} # kernel-automotive (x86_64 and aarch64 with PREEMPT_RT enabled - currently off by default) %define with_automotive %{?_with_automotive: 1} %{?!_with_automotive: 0} # Supported variants # with_base with_debug with_gcov # up X X X # zfcpdump X X # arm64_16k X X X # arm64_64k X X X # realtime X X X # automotive X X X # kernel-doc %define with_doc %{?_without_doc: 0} %{?!_without_doc: 1} # kernel-headers %define with_headers %{?_without_headers: 0} %{?!_without_headers: 1} %define with_cross_headers %{?_without_cross_headers: 0} %{?!_without_cross_headers: 1} # perf %define with_perf %{?_without_perf: 0} %{?!_without_perf: 1} # libperf %define with_libperf %{?_without_libperf: 0} %{?!_without_libperf: 1} # tools %define with_tools %{?_without_tools: 0} %{?!_without_tools: 1} # ynl %define with_ynl %{?_without_ynl: 0} %{?!_without_ynl: 1} # kernel-debuginfo %define with_debuginfo %{?_without_debuginfo: 0} %{?!_without_debuginfo: 1} # kernel-abi-stablelists %define with_kernel_abi_stablelists %{?_without_kernel_abi_stablelists: 0} %{?!_without_kernel_abi_stablelists: 1} # internal samples and selftests %define with_selftests %{?_without_selftests: 0} %{?!_without_selftests: 1} # # Additional options for user-friendly one-off kernel building: # # Only build the base kernel (--with baseonly): %define with_baseonly %{?_with_baseonly: 1} %{?!_with_baseonly: 0} # Only build the debug variants (--with dbgonly): %define with_dbgonly %{?_with_dbgonly: 1} %{?!_with_dbgonly: 0} # Only build the realtime kernel (--with rtonly): %define with_rtonly %{?_with_rtonly: 1} %{?!_with_rtonly: 0} # Only build the automotive variant of the kernel (--with automotiveonly): %define with_automotiveonly %{?_with_automotiveonly: 1} %{?!_with_automotiveonly: 0} # Build the automotive kernel (--with automotive_build), this builds base variant with automotive config/options: %define with_automotive_build %{?_with_automotive_build: 1} %{?!_with_automotive_build: 0} # Control whether we perform a compat. check against published ABI. %define with_kabichk %{?_without_kabichk: 0} %{?!_without_kabichk: 1} # Temporarily disable kabi checks until RC. %define with_kabichk 0 # Control whether we perform a compat. check against DUP ABI. %define with_kabidupchk %{?_with_kabidupchk: 1} %{?!_with_kabidupchk: 0} # # Control whether to run an extensive DWARF based kABI check. # Note that this option needs to have baseline setup in SOURCE300. %define with_kabidwchk %{?_without_kabidwchk: 0} %{?!_without_kabidwchk: 1} %define with_kabidw_base %{?_with_kabidw_base: 1} %{?!_with_kabidw_base: 0} # # Control whether to install the vdso directories. %define with_vdso_install %{?_without_vdso_install: 0} %{?!_without_vdso_install: 1} # # should we do C=1 builds with sparse %define with_sparse %{?_with_sparse: 1} %{?!_with_sparse: 0} # # Cross compile requested? %define with_cross %{?_with_cross: 1} %{?!_with_cross: 0} # # build a release kernel on rawhide %define with_release %{?_with_release: 1} %{?!_with_release: 0} # verbose build, i.e. no silent rules and V=1 %define with_verbose %{?_with_verbose: 1} %{?!_with_verbose: 0} # # check for mismatched config options %define with_configchecks %{?_without_configchecks: 0} %{?!_without_configchecks: 1} # # gcov support %define with_gcov %{?_with_gcov:1}%{?!_with_gcov:0} # Want to build a vanilla kernel build without any non-upstream patches? %define with_vanilla %{?_with_vanilla: 1} %{?!_with_vanilla: 0} %ifarch x86_64 aarch64 riscv64 %define with_efiuki %{?_without_efiuki: 0} %{?!_without_efiuki: 1} %else %define with_efiuki 0 %endif %if 0%{?fedora} # Kernel headers are being split out into a separate package %define with_headers 0 %define with_cross_headers 0 # no stablelist %define with_kernel_abi_stablelists 0 %define with_arm64_64k 0 %define with_realtime 0 %define with_realtime_arm64_64k 0 %define with_automotive 0 %endif %if %{with_verbose} %define make_opts V=1 %else %define make_opts -s %endif %if %{with toolchain_clang} %ifarch s390x ppc64le %global llvm_ias 0 %else %global llvm_ias 1 %endif %global clang_make_opts HOSTCC=clang CC=clang LLVM_IAS=%{llvm_ias} %if %{with clang_lto} # LLVM=1 enables use of all LLVM tools. %global clang_make_opts %{clang_make_opts} LLVM=1 %endif %global make_opts %{make_opts} %{clang_make_opts} %endif # turn off debug kernel and kabichk for gcov builds %if %{with_gcov} %define with_debug 0 %define with_kabichk 0 %define with_kabidupchk 0 %define with_kabidwchk 0 %define with_kabidw_base 0 %define with_kernel_abi_stablelists 0 %endif # turn off kABI DWARF-based check if we're generating the base dataset %if %{with_kabidw_base} %define with_kabidwchk 0 %endif %define make_target bzImage %define image_install_path boot %define KVERREL %{specversion}-%{release}.%{_target_cpu} %define KVERREL_RE %(echo %KVERREL | sed 's/+/[+]/g') %define hdrarch %_target_cpu %define asmarch %_target_cpu %if 0%{!?nopatches:1} %define nopatches 0 %endif %if %{with_vanilla} %define nopatches 1 %endif %if %{with_release} %define debugbuildsenabled 1 %endif %if !%{with_debuginfo} %define _enable_debug_packages 0 %endif %define debuginfodir /usr/lib/debug # Needed because we override almost everything involving build-ids # and debuginfo generation. Currently we rely on the old alldebug setting. %global _build_id_links alldebug # if requested, only build base kernel %if %{with_baseonly} %define with_debug 0 %define with_realtime 0 %define with_vdso_install 0 %define with_perf 0 %define with_libperf 0 %define with_tools 0 %define with_kernel_abi_stablelists 0 %define with_selftests 0 %endif # if requested, only build debug kernel %if %{with_dbgonly} %define with_base 0 %define with_vdso_install 0 %define with_perf 0 %define with_libperf 0 %define with_tools 0 %define with_kernel_abi_stablelists 0 %define with_selftests 0 %endif # if requested, only build realtime kernel %if %{with_rtonly} %define with_realtime 1 %define with_realtime_arm64_64k 1 %define with_automotive 0 %define with_up 0 %define with_debug 0 %define with_debuginfo 0 %define with_vdso_install 0 %define with_perf 0 %define with_libperf 0 %define with_tools 0 %define with_kernel_abi_stablelists 0 %define with_selftests 0 %define with_headers 0 %define with_efiuki 0 %define with_zfcpdump 0 %define with_arm64_16k 0 %define with_arm64_64k 0 %endif # if requested, only build the automotive variant of the kernel %if %{with_automotiveonly} %define with_automotive 1 %define with_realtime 0 %define with_up 0 %define with_debug 0 %define with_debuginfo 0 %define with_vdso_install 0 %define with_selftests 1 %endif # if requested, build kernel-automotive %if %{with_automotive_build} %define with_automotive 1 %define with_selftests 1 %endif # RT and Automotive kernels are only built on x86_64 and aarch64 %ifnarch x86_64 aarch64 %define with_realtime 0 %define with_automotive 0 %endif %if %{with_automotive} # overrides compression algorithms for automotive %global compression zstd %global compression_flags --rm %global compext zst # automotive does not support the following variants %define with_realtime 0 %define with_realtime_arm64_64k 0 %define with_arm64_16k 0 %define with_arm64_64k 0 %define with_efiuki 0 %define with_doc 0 %define with_headers 0 %define with_cross_headers 0 %define with_perf 0 %define with_libperf 0 %define with_tools 0 %define with_kabichk 0 %define with_kernel_abi_stablelists 0 %define with_kabidw_base 0 %define signkernel 0 %define signmodules 1 %define rhelkeys 0 %endif %if %{zipmodules} %global zipsed -e 's/\.ko$/\.ko.%compext/' # for parallel xz processes, replace with 1 to go back to single process %endif # turn off kABI DUP check and DWARF-based check if kABI check is disabled %if !%{with_kabichk} %define with_kabidupchk 0 %define with_kabidwchk 0 %endif %if %{with_vdso_install} %define use_vdso 1 %endif %ifnarch noarch %define with_kernel_abi_stablelists 0 %endif # Overrides for generic default options # only package docs noarch %ifnarch noarch %define with_doc 0 %define doc_build_fail true %endif %if 0%{?fedora} # don't do debug builds on anything but aarch64 and x86_64 %ifnarch aarch64 x86_64 %define with_debug 0 %endif %endif %define all_configs %{name}-%{specrpmversion}-*.config # don't build noarch kernels or headers (duh) %ifarch noarch %define with_up 0 %define with_realtime 0 %define with_automotive 0 %define with_headers 0 %define with_cross_headers 0 %define with_tools 0 %define with_perf 0 %define with_libperf 0 %define with_selftests 0 %define with_debug 0 %endif # sparse blows up on ppc %ifnarch ppc64le %define with_sparse 0 %endif # zfcpdump mechanism is s390 only %ifnarch s390x %define with_zfcpdump 0 %endif # 16k and 64k variants only for aarch64 %ifnarch aarch64 %define with_arm64_16k 0 %define with_arm64_64k 0 %define with_realtime_arm64_64k 0 %endif %if 0%{?fedora} # This is not for Fedora %define with_zfcpdump 0 %endif # Per-arch tweaks %ifarch i686 %define asmarch x86 %define hdrarch i386 %define kernel_image arch/x86/boot/bzImage %endif %ifarch x86_64 %define asmarch x86 %define kernel_image arch/x86/boot/bzImage %endif %ifarch ppc64le %define asmarch powerpc %define hdrarch powerpc %define make_target vmlinux %define kernel_image vmlinux %define kernel_image_elf 1 %define use_vdso 0 %endif %ifarch s390x %define asmarch s390 %define hdrarch s390 %define kernel_image arch/s390/boot/bzImage %define vmlinux_decompressor arch/s390/boot/vmlinux %endif %ifarch aarch64 %define asmarch arm64 %define hdrarch arm64 %define make_target vmlinuz.efi %define kernel_image arch/arm64/boot/vmlinuz.efi %endif %ifarch riscv64 %define asmarch riscv %define hdrarch riscv %define make_target vmlinuz.efi %define kernel_image arch/riscv/boot/vmlinuz.efi %endif # Should make listnewconfig fail if there's config options # printed out? %if %{nopatches} %define with_configchecks 0 %endif # To temporarily exclude an architecture from being built, add it to # %%nobuildarches. Do _NOT_ use the ExclusiveArch: line, because if we # don't build kernel-headers then the new build system will no longer let # us use the previous build of that package -- it'll just be completely AWOL. # Which is a BadThing(tm). # We only build kernel-headers on the following... %if 0%{?fedora} %define nobuildarches i386 %else %define nobuildarches i386 i686 %endif %ifarch %nobuildarches # disable BuildKernel commands %define with_up 0 %define with_debug 0 %define with_zfcpdump 0 %define with_arm64_16k 0 %define with_arm64_64k 0 %define with_realtime 0 %define with_realtime_arm64_64k 0 %define with_automotive 0 %define with_debuginfo 0 %define with_perf 0 %define with_libperf 0 %define with_tools 0 %define with_selftests 0 %define _enable_debug_packages 0 %endif # Architectures we build tools/cpupower on %if 0%{?fedora} %define cpupowerarchs %{ix86} x86_64 ppc64le aarch64 %else %define cpupowerarchs i686 x86_64 ppc64le aarch64 riscv64 %endif %if 0%{?use_vdso} %define _use_vdso 1 %else %define _use_vdso 0 %endif # If build of debug packages is disabled, we need to know if we want to create # meta debug packages or not, after we define with_debug for all specific cases # above. So this must be at the end here, after all cases of with_debug or not. %define with_debug_meta 0 %if !%{debugbuildsenabled} %if %{with_debug} %define with_debug_meta 1 %endif %define with_debug 0 %endif # short-hand for "are we building base/non-debug variants of ...?" %if %{with_up} && %{with_base} %define with_up_base 1 %else %define with_up_base 0 %endif %if %{with_realtime} && %{with_base} %define with_realtime_base 1 %else %define with_realtime_base 0 %endif %if %{with_automotive} && %{with_base} && !%{with_automotive_build} %define with_automotive_base 1 %else %define with_automotive_base 0 %endif %if %{with_arm64_16k} && %{with_base} %define with_arm64_16k_base 1 %else %define with_arm64_16k_base 0 %endif %if %{with_arm64_64k} && %{with_base} %define with_arm64_64k_base 1 %else %define with_arm64_64k_base 0 %endif %if %{with_realtime_arm64_64k} && %{with_base} %define with_realtime_arm64_64k_base 1 %else %define with_realtime_arm64_64k_base 0 %endif # # Packages that need to be installed before the kernel is, because the %%post # scripts use them. # %define kernel_prereq coreutils, systemd >= 203-2, /usr/bin/kernel-install %define initrd_prereq dracut >= 027 Name: %{package_name} License: ((GPL-2.0-only WITH Linux-syscall-note) OR BSD-2-Clause) AND ((GPL-2.0-only WITH Linux-syscall-note) OR BSD-3-Clause) AND ((GPL-2.0-only WITH Linux-syscall-note) OR CDDL-1.0) AND ((GPL-2.0-only WITH Linux-syscall-note) OR Linux-OpenIB) AND ((GPL-2.0-only WITH Linux-syscall-note) OR MIT) AND ((GPL-2.0-or-later WITH Linux-syscall-note) OR BSD-3-Clause) AND ((GPL-2.0-or-later WITH Linux-syscall-note) OR MIT) AND 0BSD AND BSD-2-Clause AND (BSD-2-Clause OR Apache-2.0) AND BSD-3-Clause AND BSD-3-Clause-Clear AND CC0-1.0 AND GFDL-1.1-no-invariants-or-later AND GPL-1.0-or-later AND (GPL-1.0-or-later OR BSD-3-Clause) AND (GPL-1.0-or-later WITH Linux-syscall-note) AND GPL-2.0-only AND (GPL-2.0-only OR Apache-2.0) AND (GPL-2.0-only OR BSD-2-Clause) AND (GPL-2.0-only OR BSD-3-Clause) AND (GPL-2.0-only OR CDDL-1.0) AND (GPL-2.0-only OR GFDL-1.1-no-invariants-or-later) AND (GPL-2.0-only OR GFDL-1.2-no-invariants-only) AND (GPL-2.0-only WITH Linux-syscall-note) AND GPL-2.0-or-later AND (GPL-2.0-or-later OR BSD-2-Clause) AND (GPL-2.0-or-later OR BSD-3-Clause) AND (GPL-2.0-or-later OR CC-BY-4.0) AND (GPL-2.0-or-later WITH GCC-exception-2.0) AND (GPL-2.0-or-later WITH Linux-syscall-note) AND ISC AND LGPL-2.0-or-later AND (LGPL-2.0-or-later OR BSD-2-Clause) AND (LGPL-2.0-or-later WITH Linux-syscall-note) AND LGPL-2.1-only AND (LGPL-2.1-only OR BSD-2-Clause) AND (LGPL-2.1-only WITH Linux-syscall-note) AND LGPL-2.1-or-later AND (LGPL-2.1-or-later WITH Linux-syscall-note) AND (Linux-OpenIB OR GPL-2.0-only) AND (Linux-OpenIB OR GPL-2.0-only OR BSD-2-Clause) AND Linux-man-pages-copyleft AND MIT AND (MIT OR Apache-2.0) AND (MIT OR GPL-2.0-only) AND (MIT OR GPL-2.0-or-later) AND (MIT OR LGPL-2.1-only) AND (MPL-1.1 OR GPL-2.0-only) AND (X11 OR GPL-2.0-only) AND (X11 OR GPL-2.0-or-later) AND Zlib AND (copyleft-next-0.3.1 OR GPL-2.0-or-later) URL: https://www.kernel.org/ Version: %{specrpmversion} Release: %{pkg_release} # DO NOT CHANGE THE 'ExclusiveArch' LINE TO TEMPORARILY EXCLUDE AN ARCHITECTURE BUILD. # SET %%nobuildarches (ABOVE) INSTEAD %if 0%{?fedora} ExclusiveArch: noarch x86_64 s390x aarch64 ppc64le riscv64 %else ExclusiveArch: noarch i386 i686 x86_64 s390x aarch64 ppc64le riscv64 %endif ExclusiveOS: Linux %ifnarch %{nobuildarches} Requires: %{name}-core-uname-r = %{KVERREL} Requires: %{name}-modules-uname-r = %{KVERREL} Requires: %{name}-modules-core-uname-r = %{KVERREL} Requires: ((%{name}-modules-extra-uname-r = %{KVERREL}) if %{name}-modules-extra-matched) Provides: installonlypkg(kernel) %endif # # List the packages used during the kernel build # BuildRequires: kmod, bash, coreutils, tar, git-core, which BuildRequires: bzip2, xz, findutils, m4, perl-interpreter, perl-Carp, perl-devel, perl-generators, make, diffutils, gawk, %compression BuildRequires: gcc, binutils, redhat-rpm-config, hmaccalc, bison, flex, gcc-c++ %if 0%{?fedora} BuildRequires: rust, rust-src, bindgen %endif BuildRequires: net-tools, hostname, bc, elfutils-devel BuildRequires: dwarves BuildRequires: python3 BuildRequires: python3-devel BuildRequires: python3-pyyaml BuildRequires: kernel-rpm-macros # glibc-static is required for a consistent build environment (specifically # CONFIG_CC_CAN_LINK_STATIC=y). BuildRequires: glibc-static %if %{with_headers} || %{with_cross_headers} BuildRequires: rsync %endif %if %{with_doc} BuildRequires: xmlto, asciidoc, python3-sphinx, python3-sphinx_rtd_theme %endif %if %{with_sparse} BuildRequires: sparse %endif %if %{with_perf} BuildRequires: zlib-devel binutils-devel newt-devel perl(ExtUtils::Embed) bison flex xz-devel BuildRequires: audit-libs-devel python3-setuptools BuildRequires: java-devel BuildRequires: libbabeltrace-devel BuildRequires: libtraceevent-devel %ifnarch s390x BuildRequires: numactl-devel %endif %ifarch aarch64 BuildRequires: opencsd-devel >= 1.0.0 %endif %endif %if %{with_tools} BuildRequires: python3-docutils BuildRequires: gettext ncurses-devel BuildRequires: libcap-devel libcap-ng-devel # The following are rtla requirements BuildRequires: python3-docutils BuildRequires: libtraceevent-devel BuildRequires: libtracefs-devel BuildRequires: libbpf-devel BuildRequires: bpftool BuildRequires: clang %ifarch %{cpupowerarchs} # For libcpupower bindings BuildRequires: swig %endif %ifnarch s390x BuildRequires: pciutils-devel %endif %ifarch i686 x86_64 BuildRequires: libnl3-devel %endif %endif %if %{with_tools} && %{with_ynl} BuildRequires: python3-pyyaml python3-jsonschema python3-pip python3-setuptools python3-wheel %endif BuildRequires: openssl-devel %if %{with_selftests} BuildRequires: clang llvm-devel fuse-devel zlib-devel binutils-devel python3-docutils python3-jsonschema %ifarch x86_64 riscv64 BuildRequires: lld %endif BuildRequires: libcap-devel libcap-ng-devel rsync libmnl-devel libxml2-devel BuildRequires: numactl-devel %endif BuildConflicts: rhbuildsys(DiskFree) < 500Mb %if %{with_debuginfo} BuildRequires: rpm-build, elfutils BuildConflicts: rpm < 4.13.0.1-19 BuildConflicts: dwarves < 1.13 # Most of these should be enabled after more investigation %undefine _include_minidebuginfo %undefine _find_debuginfo_dwz_opts %undefine _unique_build_ids %undefine _unique_debug_names %undefine _unique_debug_srcs %undefine _debugsource_packages %undefine _debuginfo_subpackages # Remove -q option below to provide 'extracting debug info' messages %global _find_debuginfo_opts -r -q %global _missing_build_ids_terminate_build 1 %global _no_recompute_build_ids 1 %endif %if %{with_kabidwchk} || %{with_kabidw_base} BuildRequires: kabi-dw %endif %if %{signkernel}%{signmodules} BuildRequires: openssl %if %{signkernel} # ELN uses Fedora signing process, so exclude %if 0%{?rhel}%{?centos} && !0%{?eln} BuildRequires: system-sb-certs %endif %ifarch x86_64 aarch64 riscv64 BuildRequires: nss-tools BuildRequires: pesign >= 0.10-4 %endif %endif %endif %if %{with_cross} BuildRequires: binutils-%{_build_arch}-linux-gnu, gcc-%{_build_arch}-linux-gnu %define cross_opts CROSS_COMPILE=%{_build_arch}-linux-gnu- %define __strip %{_build_arch}-linux-gnu-strip %if 0%{?fedora} && 0%{?fedora} <= 41 # Work around find-debuginfo for cross builds. # find-debuginfo doesn't support any of CROSS options (RHEL-21797), # and since debugedit > 5.0-16.el10, or since commit # dfe1f7ff30f4 ("find-debuginfo.sh: Exit with real exit status in parallel jobs") # it now aborts on failure and build fails. # debugedit-5.1-5 in F42 added support to override tools with target versions. %undefine _include_gdb_index %endif %endif # These below are required to build man pages %if %{with_perf} BuildRequires: xmlto %endif %if %{with_perf} || %{with_tools} BuildRequires: asciidoc %endif %if %{with toolchain_clang} BuildRequires: clang %endif %if %{with clang_lto} BuildRequires: llvm BuildRequires: lld %endif %if %{with_efiuki} BuildRequires: dracut >= 104 # For dracut UEFI uki binaries BuildRequires: binutils # For the initrd BuildRequires: lvm2 BuildRequires: systemd-boot-unsigned # For systemd-stub and systemd-pcrphase BuildRequires: systemd-udev >= 252-1 # For systemd-repart BuildRequires: xfsprogs e2fsprogs dosfstools # For UKI kernel cmdline addons BuildRequires: systemd-ukify # For TPM operations in UKI initramfs BuildRequires: tpm2-tools # For UKI sb cert %if 0%{?rhel}%{?centos} && !0%{?eln} %if 0%{?centos} BuildRequires: centos-sb-certs >= 9.0-23 %else BuildRequires: redhat-sb-certs >= 9.4-0.1 %endif %endif %endif # Because this is the kernel, it's hard to get a single upstream URL # to represent the base without needing to do a bunch of patching. This # tarball is generated from a src-git tree. If you want to see the # exact git commit you can run # # xzcat -qq ${TARBALL} | git get-tar-commit-id Source0: linux-%{tarfile_release}.tar.xz Source1: Makefile.rhelver Source2: %{package_name}.changelog Source10: redhatsecurebootca5.cer Source13: redhatsecureboot501.cer %if %{signkernel} # Name of the packaged file containing signing key %ifarch ppc64le %define signing_key_filename kernel-signing-ppc.cer %endif %ifarch s390x %define signing_key_filename kernel-signing-s390.cer %endif # Fedora/ELN pesign macro expects to see these cert file names, see: # https://github.com/rhboot/pesign/blob/main/src/pesign-rpmbuild-helper.in#L216 %if 0%{?fedora}%{?eln} %define pesign_name_0 redhatsecureboot501 %define secureboot_ca_0 %{SOURCE10} %define secureboot_key_0 %{SOURCE13} %endif # RHEL/centos certs come from system-sb-certs %if 0%{?rhel} && !0%{?eln} %define secureboot_ca_0 %{_datadir}/pki/sb-certs/secureboot-ca-%{_arch}.cer %define secureboot_key_0 %{_datadir}/pki/sb-certs/secureboot-kernel-%{_arch}.cer %if 0%{?centos} %define pesign_name_0 centossecureboot201 %else %ifarch x86_64 aarch64 %define pesign_name_0 redhatsecureboot801 %endif %ifarch s390x %define pesign_name_0 redhatsecureboot302 %endif %ifarch ppc64le %define pesign_name_0 redhatsecureboot701 %endif %endif # rhel && !eln %endif # signkernel %endif Source20: mod-denylist.sh Source21: mod-sign.sh Source22: filtermods.py %define modsign_cmd %{SOURCE21} %if 0%{?include_rhel} Source24: %{name}-aarch64-rhel.config Source25: %{name}-aarch64-debug-rhel.config Source27: %{name}-ppc64le-rhel.config Source28: %{name}-ppc64le-debug-rhel.config Source29: %{name}-s390x-rhel.config Source30: %{name}-s390x-debug-rhel.config Source31: %{name}-s390x-zfcpdump-rhel.config Source32: %{name}-x86_64-rhel.config Source33: %{name}-x86_64-debug-rhel.config # ARM64 64K page-size kernel config Source42: %{name}-aarch64-64k-rhel.config Source43: %{name}-aarch64-64k-debug-rhel.config Source44: %{name}-riscv64-rhel.config Source45: %{name}-riscv64-debug-rhel.config %endif %if %{include_rhel} || %{include_automotive} Source23: x509.genkey.rhel Source34: def_variants.yaml.rhel Source41: x509.genkey.centos %endif %if 0%{?include_fedora} Source50: x509.genkey.fedora Source52: %{name}-aarch64-fedora.config Source53: %{name}-aarch64-debug-fedora.config Source54: %{name}-aarch64-16k-fedora.config Source55: %{name}-aarch64-16k-debug-fedora.config Source56: %{name}-ppc64le-fedora.config Source57: %{name}-ppc64le-debug-fedora.config Source58: %{name}-s390x-fedora.config Source59: %{name}-s390x-debug-fedora.config Source60: %{name}-x86_64-fedora.config Source61: %{name}-x86_64-debug-fedora.config Source700: %{name}-riscv64-fedora.config Source701: %{name}-riscv64-debug-fedora.config Source62: def_variants.yaml.fedora %endif Source70: partial-kgcov-snip.config Source71: partial-kgcov-debug-snip.config Source72: partial-clang-snip.config Source73: partial-clang-debug-snip.config Source74: partial-clang_lto-x86_64-snip.config Source75: partial-clang_lto-x86_64-debug-snip.config Source76: partial-clang_lto-aarch64-snip.config Source77: partial-clang_lto-aarch64-debug-snip.config Source80: generate_all_configs.sh Source81: process_configs.sh Source83: uki.sbat.template Source84: uki-addons.sbat.template Source85: kernel.sbat.template Source86: dracut-virt.conf Source87: flavors Source151: uki_create_addons.py Source152: uki_addons.json # Temporary use redhatsecureboot504 for x86 UKI, see RHEL-122230 Source153: redhatsecureboot504.cer Source100: rheldup3.x509 Source101: rhelkpatch1.x509 Source102: nvidiagpuoot001.x509 Source103: rhelimaca1.x509 Source104: rhelima.x509 Source105: rhelima_centos.x509 Source106: fedoraimaca.x509 %if 0%{?fedora}%{?eln} %define ima_ca_cert %{SOURCE106} %endif %if 0%{?rhel} && !0%{?eln} %define ima_ca_cert %{SOURCE103} # rhel && !eln %endif %if 0%{?centos} %define ima_signing_cert %{SOURCE105} %else %define ima_signing_cert %{SOURCE104} %endif %define ima_cert_name ima.cer Source200: check-kabi Source201: Module.kabi_aarch64 Source202: Module.kabi_ppc64le Source203: Module.kabi_s390x Source204: Module.kabi_x86_64 Source205: Module.kabi_riscv64 Source210: Module.kabi_dup_aarch64 Source211: Module.kabi_dup_ppc64le Source212: Module.kabi_dup_s390x Source213: Module.kabi_dup_x86_64 Source214: Module.kabi_dup_riscv64 Source300: kernel-abi-stablelists-%{kabiversion}.tar.xz Source301: kernel-kabi-dw-%{kabiversion}.tar.xz %if 0%{include_rt} %if 0%{include_rhel} Source474: %{name}-aarch64-rt-rhel.config Source475: %{name}-aarch64-rt-debug-rhel.config Source476: %{name}-aarch64-rt-64k-rhel.config Source477: %{name}-aarch64-rt-64k-debug-rhel.config Source478: %{name}-x86_64-rt-rhel.config Source479: %{name}-x86_64-rt-debug-rhel.config %endif %if 0%{include_fedora} Source478: %{name}-aarch64-rt-fedora.config Source479: %{name}-aarch64-rt-debug-fedora.config Source480: %{name}-aarch64-rt-64k-fedora.config Source481: %{name}-aarch64-rt-64k-debug-fedora.config Source482: %{name}-x86_64-rt-fedora.config Source483: %{name}-x86_64-rt-debug-fedora.config Source484: %{name}-riscv64-rt-fedora.config Source485: %{name}-riscv64-rt-debug-fedora.config %endif %endif %if %{include_automotive} %if %{with_automotive_build} Source486: %{name}-aarch64-rhel.config Source487: %{name}-aarch64-debug-rhel.config Source488: %{name}-x86_64-rhel.config Source489: %{name}-x86_64-debug-rhel.config %else Source486: %{name}-aarch64-automotive-rhel.config Source487: %{name}-aarch64-automotive-debug-rhel.config Source488: %{name}-x86_64-automotive-rhel.config Source489: %{name}-x86_64-automotive-debug-rhel.config %endif %endif # Sources for kernel-tools Source2002: kvm_stat.logrotate # Some people enjoy building customized kernels from the dist-git in Fedora and # use this to override configuration options. One day they may all use the # source tree, but in the mean time we carry this to support the legacy workflow Source3000: merge.py Source3001: kernel-local %if %{patchlist_changelog} Source3002: Patchlist.changelog %endif Source4000: README.rst Source4001: rpminspect.yaml Source4002: gating.yaml ## Patches needed for building this package %if !%{nopatches} Patch1: patch-%{patchversion}-redhat.patch %endif # empty final patch to facilitate testing of kernel patches Patch999999: linux-kernel-test.patch # END OF PATCH DEFINITIONS %description The %{package_name} meta package # This macro does requires, provides, conflicts, obsoletes for a kernel package. # %%kernel_reqprovconf [-o] # It uses any kernel__conflicts and kernel__obsoletes # macros defined above. # -o: Skips main "Provides" that would satisfy general kernel requirements that # special-purpose kernels shouldn't include. # For example, used for zfcpdump-core to *not* provide kernel-core. (BZ 2027654) # %define kernel_reqprovconf(o) \ %if %{-o:0}%{!-o:1}\ Provides: kernel = %{specversion}-%{pkg_release}\ Provides: %{name} = %{specversion}-%{pkg_release}\ %endif\ Provides: %{name}-%{_target_cpu} = %{specrpmversion}-%{pkg_release}%{uname_suffix %{?1}}\ Provides: %{name}-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires(pre): %{kernel_prereq}\ Requires(pre): %{initrd_prereq}\ Requires(pre): ((linux-firmware >= 20150904-56.git6ebf5d57) if linux-firmware)\ Recommends: linux-firmware\ Requires(preun): systemd >= 200\ Conflicts: xfsprogs < 4.3.0-1\ Conflicts: xorg-x11-drv-vmmouse < 13.0.99\ %{expand:%%{?kernel%{?1:_%{1}}_conflicts:Conflicts: %%{kernel%{?1:_%{1}}_conflicts}}}\ %{expand:%%{?kernel%{?1:_%{1}}_obsoletes:Obsoletes: %%{kernel%{?1:_%{1}}_obsoletes}}}\ %{expand:%%{?kernel%{?1:_%{1}}_provides:Provides: %%{kernel%{?1:_%{1}}_provides}}}\ # We can't let RPM do the dependencies automatic because it'll then pick up\ # a correct but undesirable perl dependency from the module headers which\ # isn't required for the kernel proper to function\ AutoReq: no\ AutoProv: yes\ %{nil} %package doc Summary: Various documentation bits found in the kernel source Group: Documentation %description doc This package contains documentation files from the kernel source. Various bits of information about the Linux kernel and the device drivers shipped with it are documented in these files. You'll want to install this package if you need a reference to the options that can be passed to Linux kernel modules at load time. %if %{with_headers} %package headers Summary: Header files for the Linux kernel for use by glibc Obsoletes: glibc-kernheaders < 3.0-46 Provides: glibc-kernheaders = 3.0-46 %if 0%{?gemini} Provides: %{name}-headers = %{specversion}-%{release} Obsoletes: kernel-headers < %{specversion} %endif %description headers Kernel-headers includes the C header files that specify the interface between the Linux kernel and userspace libraries and programs. The header files define structures and constants that are needed for building most standard programs and are also needed for rebuilding the glibc package. %endif %if %{with_cross_headers} %package cross-headers Summary: Header files for the Linux kernel for use by cross-glibc %if 0%{?gemini} Provides: %{name}-cross-headers = %{specversion}-%{release} Obsoletes: kernel-cross-headers < %{specversion} %endif %description cross-headers Kernel-cross-headers includes the C header files that specify the interface between the Linux kernel and userspace libraries and programs. The header files define structures and constants that are needed for building most standard programs and are also needed for rebuilding the cross-glibc package. %endif %package debuginfo-common-%{_target_cpu} Summary: Kernel source files used by %{name}-debuginfo packages Provides: installonlypkg(kernel) %description debuginfo-common-%{_target_cpu} This package is required by %{name}-debuginfo subpackages. It provides the kernel source files common to all builds. %if %{with_perf} %package -n perf %if 0%{gemini} Epoch: %{gemini} %endif Summary: Performance monitoring for the Linux kernel Requires: bzip2 %description -n perf This package contains the perf tool, which enables performance monitoring of the Linux kernel. %package -n perf-debuginfo %if 0%{gemini} Epoch: %{gemini} %endif Summary: Debug information for package perf Requires: %{name}-debuginfo-common-%{_target_cpu} = %{specrpmversion}-%{release} AutoReqProv: no %description -n perf-debuginfo This package provides debug information for the perf package. # Note that this pattern only works right to match the .build-id # symlinks because of the trailing nonmatching alternation and # the leading .*, because of find-debuginfo.sh's buggy handling # of matching the pattern against the symlinks file. %{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{_bindir}/perf(\.debug)?|.*%%{_libexecdir}/perf-core/.*|.*%%{_libdir}/libperf-jvmti.so(\.debug)?|XXX' -o perf-debuginfo.list} %package -n python3-perf %if 0%{gemini} Epoch: %{gemini} %endif Summary: Python bindings for apps which will manipulate perf events %description -n python3-perf The python3-perf package contains a module that permits applications written in the Python programming language to use the interface to manipulate perf events. %package -n python3-perf-debuginfo %if 0%{gemini} Epoch: %{gemini} %endif Summary: Debug information for package perf python bindings Requires: %{name}-debuginfo-common-%{_target_cpu} = %{specrpmversion}-%{release} AutoReqProv: no %description -n python3-perf-debuginfo This package provides debug information for the perf python bindings. # the python_sitearch macro should already be defined from above %{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{python3_sitearch}/perf.*so(\.debug)?|XXX' -o python3-perf-debuginfo.list} # with_perf %endif %if %{with_libperf} %package -n libperf Summary: The perf library from kernel source %description -n libperf This package contains the kernel source perf library. %package -n libperf-devel Summary: Developement files for the perf library from kernel source Requires: libperf = %{version}-%{release} %description -n libperf-devel This package includes libraries and header files needed for development of applications which use perf library from kernel source. %package -n libperf-debuginfo Summary: Debug information for package libperf Group: Development/Debug Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release} AutoReqProv: no %description -n libperf-debuginfo This package provides debug information for the libperf package. # Note that this pattern only works right to match the .build-id # symlinks because of the trailing nonmatching alternation and # the leading .*, because of find-debuginfo.sh's buggy handling # of matching the pattern against the symlinks file. %{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{_libdir}/libperf.so.*(\.debug)?|XXX' -o libperf-debuginfo.list} # with_libperf %endif %if %{with_tools} %package -n %{package_name}-tools Summary: Assortment of tools for the Linux kernel %ifarch %{cpupowerarchs} Provides: cpupowerutils = 1:009-0.6.p1 Obsoletes: cpupowerutils < 1:009-0.6.p1 Provides: cpufreq-utils = 1:009-0.6.p1 Provides: cpufrequtils = 1:009-0.6.p1 Obsoletes: cpufreq-utils < 1:009-0.6.p1 Obsoletes: cpufrequtils < 1:009-0.6.p1 Obsoletes: cpuspeed < 1:1.5-16 Requires: %{package_name}-tools-libs = %{specrpmversion}-%{release} %endif %define __requires_exclude ^%{_bindir}/python %description -n %{package_name}-tools This package contains the tools/ directory from the kernel source and the supporting documentation. %package -n %{package_name}-tools-libs Summary: Libraries for the kernels-tools %description -n %{package_name}-tools-libs This package contains the libraries built from the tools/ directory from the kernel source. %package -n %{package_name}-tools-libs-devel Summary: Assortment of tools for the Linux kernel Requires: %{package_name}-tools = %{version}-%{release} %ifarch %{cpupowerarchs} Provides: cpupowerutils-devel = 1:009-0.6.p1 Obsoletes: cpupowerutils-devel < 1:009-0.6.p1 %endif Requires: %{package_name}-tools-libs = %{version}-%{release} Provides: %{package_name}-tools-devel %description -n %{package_name}-tools-libs-devel This package contains the development files for the tools/ directory from the kernel source. %package -n %{package_name}-tools-debuginfo Summary: Debug information for package %{package_name}-tools Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release} AutoReqProv: no %description -n %{package_name}-tools-debuginfo This package provides debug information for package %{package_name}-tools. # Note that this pattern only works right to match the .build-id # symlinks because of the trailing nonmatching alternation and # the leading .*, because of find-debuginfo.sh's buggy handling # of matching the pattern against the symlinks file. %{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{_bindir}/bootconfig(\.debug)?|.*%%{_bindir}/centrino-decode(\.debug)?|.*%%{_bindir}/powernow-k8-decode(\.debug)?|.*%%{_bindir}/cpupower(\.debug)?|.*%%{_libdir}/libcpupower.*|.*%%{python3_sitearch}/_raw_pylibcpupower.*|.*%%{_bindir}/turbostat(\.debug)?|.*%%{_bindir}/x86_energy_perf_policy(\.debug)?|.*%%{_bindir}/tmon(\.debug)?|.*%%{_bindir}/lsgpio(\.debug)?|.*%%{_bindir}/gpio-hammer(\.debug)?|.*%%{_bindir}/gpio-event-mon(\.debug)?|.*%%{_bindir}/gpio-watch(\.debug)?|.*%%{_bindir}/iio_event_monitor(\.debug)?|.*%%{_bindir}/iio_generic_buffer(\.debug)?|.*%%{_bindir}/lsiio(\.debug)?|.*%%{_bindir}/intel-speed-select(\.debug)?|.*%%{_bindir}/page_owner_sort(\.debug)?|.*%%{_bindir}/slabinfo(\.debug)?|.*%%{_sbindir}/intel_sdsi(\.debug)?|XXX' -o %{package_name}-tools-debuginfo.list} %package -n rtla %if 0%{gemini} Epoch: %{gemini} %endif Summary: Real-Time Linux Analysis tools Requires: libtraceevent Requires: libtracefs Requires: libbpf %ifarch %{cpupowerarchs} Requires: %{package_name}-tools-libs = %{version}-%{release} %endif %description -n rtla The rtla meta-tool includes a set of commands that aims to analyze the real-time properties of Linux. Instead of testing Linux as a black box, rtla leverages kernel tracing capabilities to provide precise information about the properties and root causes of unexpected results. %package -n rv Summary: RV: Runtime Verification %description -n rv Runtime Verification (RV) is a lightweight (yet rigorous) method that complements classical exhaustive verification techniques (such as model checking and theorem proving) with a more practical approach for complex systems. The rv tool is the interface for a collection of monitors that aim analysing the logical and timing behavior of Linux. # with_tools %endif %if %{with_selftests} %package selftests-internal Summary: Kernel samples and selftests Requires: binutils, bpftool, iproute-tc, nmap-ncat, python3, fuse-libs, keyutils %description selftests-internal Kernel sample programs and selftests. # Note that this pattern only works right to match the .build-id # symlinks because of the trailing nonmatching alternation and # the leading .*, because of find-debuginfo.sh's buggy handling # of matching the pattern against the symlinks file. %{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{_libexecdir}/(ksamples|kselftests)/.*|XXX' -o selftests-debuginfo.list} %define __requires_exclude ^liburandom_read.so.*$ # with_selftests %endif %define kernel_gcov_package() \ %package %{?1:%{1}-}gcov\ Summary: gcov graph and source files for coverage data collection.\ %description %{?1:%{1}-}gcov\ %{?1:%{1}-}gcov includes the gcov graph and source files for gcov coverage collection.\ %{nil} %if %{with_kernel_abi_stablelists} %package -n %{package_name}-abi-stablelists Summary: The Red Hat Enterprise Linux kernel ABI symbol stablelists AutoReqProv: no %description -n %{package_name}-abi-stablelists The kABI package contains information pertaining to the Red Hat Enterprise Linux kernel ABI, including lists of kernel symbols that are needed by external Linux kernel modules, and a yum plugin to aid enforcement. %endif %if %{with_kabidw_base} %package kernel-kabidw-base-internal Summary: The baseline dataset for kABI verification using DWARF data Group: System Environment/Kernel AutoReqProv: no %description kernel-kabidw-base-internal The package contains data describing the current ABI of the Red Hat Enterprise Linux kernel, suitable for the kabi-dw tool. %endif # # This macro creates a kernel--debuginfo package. # %%kernel_debuginfo_package # # Explanation of the find_debuginfo_opts: We build multiple kernels (debug, # rt, 64k etc.) so the regex filters those kernels appropriately. We also # have to package several binaries as part of kernel-devel but getting # unique build-ids is tricky for these userspace binaries. We don't really # care about debugging those so we just filter those out and remove it. %define kernel_debuginfo_package() \ %package %{?1:%{1}-}debuginfo\ Summary: Debug information for package %{name}%{?1:-%{1}}\ Requires: %{name}-debuginfo-common-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: %{name}%{?1:-%{1}}-debuginfo-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: installonlypkg(kernel)\ AutoReqProv: no\ %description %{?1:%{1}-}debuginfo\ This package provides debug information for package %{name}%{?1:-%{1}}.\ This is required to use SystemTap with %{name}%{?1:-%{1}}-%{KVERREL}.\ %{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} --keep-section '.BTF' -p '.*\/usr\/src\/kernels/.*|XXX' -o ignored-debuginfo.list -p '/.*/%%{KVERREL_RE}%{?1:[+]%{1}}/.*|/.*%%{KVERREL_RE}%{?1:\+%{1}}(\.debug)?' -o debuginfo%{?1}.list}\ %{nil} # # This macro creates a kernel--devel package. # %%kernel_devel_package [-m] # %define kernel_devel_package(m) \ %package %{?1:%{1}-}devel\ Summary: Development package for building kernel modules to match the %{?2:%{2} }kernel\ Provides: %{name}%{?1:-%{1}}-devel-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: %{name}-devel-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: kernel-devel-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Provides: %{name}-devel-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Provides: installonlypkg(kernel)\ AutoReqProv: no\ Requires(pre): findutils\ Requires: findutils\ Requires: perl-interpreter\ Requires: openssl-devel\ Requires: elfutils-libelf-devel\ Requires: bison\ Requires: flex\ Requires: make\ Requires: gcc\ %if %{-m:1}%{!-m:0}\ Requires: %{name}-devel-uname-r = %{KVERREL}%{uname_variant %{?1}}\ %endif\ %description %{?1:%{1}-}devel\ This package provides kernel headers and makefiles sufficient to build modules\ against the %{?2:%{2} }kernel package.\ %{nil} # # This macro creates an empty kernel--devel-matched package that # requires both the core and devel packages locked on the same version. # %%kernel_devel_matched_package [-m] # %define kernel_devel_matched_package(m) \ %package %{?1:%{1}-}devel-matched\ Summary: Meta package to install matching core and devel packages for a given %{?2:%{2} }kernel\ Requires: %{package_name}%{?1:-%{1}}-devel = %{specrpmversion}-%{release}\ Requires: %{package_name}%{?1:-%{1}}-core = %{specrpmversion}-%{release}\ %description %{?1:%{1}-}devel-matched\ This meta package is used to install matching core and devel packages for a given %{?2:%{2} }kernel.\ %{nil} %define kernel_modules_extra_matched_package(m) \ %package modules-extra-matched\ Summary: Meta package which requires modules-extra to be installed for all kernels.\ %description modules-extra-matched\ This meta package provides a single reference that other packages can Require to have modules-extra installed for all kernels.\ %{nil} # # This macro creates a kernel--modules-internal package. # %%kernel_modules_internal_package # %define kernel_modules_internal_package() \ %package %{?1:%{1}-}modules-internal\ Summary: Extra kernel modules to match the %{?2:%{2} }kernel\ Group: System Environment/Kernel\ Provides: %{name}%{?1:-%{1}}-modules-internal-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: %{name}%{?1:-%{1}}-modules-internal-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: %{name}%{?1:-%{1}}-modules-internal = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: installonlypkg(kernel-module)\ Provides: %{name}%{?1:-%{1}}-modules-internal-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ AutoReq: no\ AutoProv: yes\ %description %{?1:%{1}-}modules-internal\ This package provides kernel modules for the %{?2:%{2} }kernel package for Red Hat internal usage.\ %{nil} # # This macro creates a kernel--modules-extra package. # %%kernel_modules_extra_package [-m] # %define kernel_modules_extra_package(m) \ %package %{?1:%{1}-}modules-extra\ Summary: Extra kernel modules to match the %{?2:%{2} }kernel\ Provides: %{name}%{?1:-%{1}}-modules-extra-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: %{name}%{?1:-%{1}}-modules-extra-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: %{name}%{?1:-%{1}}-modules-extra = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: installonlypkg(kernel-module)\ Provides: %{name}%{?1:-%{1}}-modules-extra-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ %if %{-m:1}%{!-m:0}\ Requires: %{name}-modules-extra-uname-r = %{KVERREL}%{uname_variant %{?1}}\ %endif\ AutoReq: no\ AutoProv: yes\ %description %{?1:%{1}-}modules-extra\ This package provides less commonly used kernel modules for the %{?2:%{2} }kernel package.\ %{nil} # # This macro creates a kernel--modules package. # %%kernel_modules_package [-m] # %define kernel_modules_package(m) \ %package %{?1:%{1}-}modules\ Summary: kernel modules to match the %{?2:%{2}-}core kernel\ Provides: %{name}%{?1:-%{1}}-modules-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: %{name}-modules-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: %{name}-modules = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: installonlypkg(kernel-module)\ Provides: %{name}%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ %if %{-m:1}%{!-m:0}\ Requires: %{name}-modules-uname-r = %{KVERREL}%{uname_variant %{?1}}\ %endif\ AutoReq: no\ AutoProv: yes\ %description %{?1:%{1}-}modules\ This package provides commonly used kernel modules for the %{?2:%{2}-}core kernel package.\ %{nil} # # This macro creates a kernel--modules-core package. # %%kernel_modules_core_package [-m] # %define kernel_modules_core_package(m) \ %package %{?1:%{1}-}modules-core\ Summary: Core kernel modules to match the %{?2:%{2}-}core kernel\ Provides: %{name}%{?1:-%{1}}-modules-core-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: %{name}-modules-core-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: %{name}-modules-core = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: installonlypkg(kernel-module)\ Provides: %{name}%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ %if %{-m:1}%{!-m:0}\ Requires: %{name}-modules-core-uname-r = %{KVERREL}%{uname_variant %{?1}}\ %endif\ AutoReq: no\ AutoProv: yes\ %description %{?1:%{1}-}modules-core\ This package provides essential kernel modules for the %{?2:%{2}-}core kernel package.\ %{nil} # # this macro creates a kernel- meta package. # %%kernel_meta_package # %define kernel_meta_package() \ %package %{1}\ summary: kernel meta-package for the %{1} kernel\ Requires: %{name}-%{1}-core-uname-r = %{KVERREL}%{uname_suffix %{1}}\ Requires: %{name}-%{1}-modules-uname-r = %{KVERREL}%{uname_suffix %{1}}\ Requires: %{name}-%{1}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{1}}\ Requires: ((%{name}-%{1}-modules-extra-uname-r = %{KVERREL}%{uname_suffix %{1}}) if %{name}-modules-extra-matched)\ %if "%{1}" == "rt" || "%{1}" == "rt-debug" || "%{1}" == "rt-64k" || "%{1}" == "rt-64k-debug"\ Requires: realtime-setup\ %endif\ Provides: installonlypkg(kernel)\ %description %{1}\ The meta-package for the %{1} kernel\ %{nil} # # This macro creates a kernel- and its -devel and -debuginfo too. # %%define variant_summary The Linux kernel compiled for # %%kernel_variant_package [-n ] [-m] [-o] # -m: Used with debugbuildsenabled==0 to create a "meta" debug variant that # depends on base variant and skips debug/internal/partner packages. # -o: Skips main "Provides" that would satisfy general kernel requirements that # special-purpose kernels shouldn't include. # %define kernel_variant_package(n:mo) \ %package %{?1:%{1}-}core\ Summary: %{variant_summary}\ Provides: %{name}-%{?1:%{1}-}core-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Provides: installonlypkg(kernel)\ %if %{-m:1}%{!-m:0}\ Requires: %{name}-core-uname-r = %{KVERREL}%{uname_variant %{?1}}\ Requires: %{name}-%{?1:%{1}-}-modules-core-uname-r = %{KVERREL}%{uname_variant %{?1}}\ %endif\ %{expand:%%kernel_reqprovconf %{?1:%{1}} %{-o:%{-o}}}\ %if %{?1:1} %{!?1:0} \ %{expand:%%kernel_meta_package %{?1:%{1}}}\ %endif\ %{expand:%%kernel_devel_package %{?1:%{1}} %{!?{-n}:%{1}}%{?{-n}:%{-n*}} %{-m:%{-m}}}\ %{expand:%%kernel_devel_matched_package %{?1:%{1}} %{!?{-n}:%{1}}%{?{-n}:%{-n*}} %{-m:%{-m}}}\ %{expand:%%kernel_modules_package %{?1:%{1}} %{!?{-n}:%{1}}%{?{-n}:%{-n*}} %{-m:%{-m}}}\ %{expand:%%kernel_modules_core_package %{?1:%{1}} %{!?{-n}:%{1}}%{?{-n}:%{-n*}} %{-m:%{-m}}}\ %{expand:%%kernel_modules_extra_package %{?1:%{1}} %{!?{-n}:%{1}}%{?{-n}:%{-n*}} %{-m:%{-m}}}\ %if %{-m:0}%{!-m:1}\ %{expand:%%kernel_modules_internal_package %{?1:%{1}} %{!?{-n}:%{1}}%{?{-n}:%{-n*}}}\ %if 0%{!?fedora:1}\ %{expand:%%kernel_modules_partner_package %{?1:%{1}} %{!?{-n}:%{1}}%{?{-n}:%{-n*}}}\ %endif\ %{expand:%%kernel_debuginfo_package %{?1:%{1}}}\ %endif\ %if %{with_efiuki} && ("%{1}" != "rt" && "%{1}" != "rt-debug" && "%{1}" != "rt-64k" && "%{1}" != "rt-64k-debug")\ %package %{?1:%{1}-}uki-virt\ Summary: %{variant_summary} unified kernel image for virtual machines\ Provides: installonlypkg(kernel)\ Provides: %{name}-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires(pre): %{kernel_prereq}\ Requires(pre): systemd >= 254-1\ %package %{?1:%{1}-}uki-virt-addons\ Summary: %{variant_summary} unified kernel image addons for virtual machines\ Provides: installonlypkg(kernel)\ Requires: %{name}%{?1:-%{1}}-uki-virt = %{specrpmversion}-%{release}\ Requires(pre): systemd >= 254-1\ %endif\ %if %{with_gcov}\ %{expand:%%kernel_gcov_package %{?1:%{1}}}\ %endif\ %{nil} # # This macro creates a kernel--modules-partner package. # %%kernel_modules_partner_package # %define kernel_modules_partner_package() \ %package %{?1:%{1}-}modules-partner\ Summary: Extra kernel modules to match the %{?2:%{2} }kernel\ Group: System Environment/Kernel\ Provides: %{name}%{?1:-%{1}}-modules-partner-%{_target_cpu} = %{specrpmversion}-%{release}\ Provides: %{name}%{?1:-%{1}}-modules-partner-%{_target_cpu} = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: %{name}%{?1:-%{1}}-modules-partner = %{specrpmversion}-%{release}%{uname_suffix %{?1}}\ Provides: installonlypkg(kernel-module)\ Provides: %{name}%{?1:-%{1}}-modules-partner-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ Requires: %{name}%{?1:-%{1}}-modules-core-uname-r = %{KVERREL}%{uname_suffix %{?1}}\ AutoReq: no\ AutoProv: yes\ %description %{?1:%{1}-}modules-partner\ This package provides kernel modules for the %{?2:%{2} }kernel package for Red Hat partners usage.\ %{nil} # Now, each variant package. %if %{with_zfcpdump} %define variant_summary The Linux kernel compiled for zfcpdump usage %kernel_variant_package -o zfcpdump %description zfcpdump-core The kernel package contains the Linux kernel (vmlinuz) for use by the zfcpdump infrastructure. # with_zfcpdump %endif %if %{with_arm64_16k_base} %define variant_summary The Linux kernel compiled for 16k pagesize usage %kernel_variant_package 16k %description 16k-core The kernel package contains a variant of the ARM64 Linux kernel using a 16K page size. %endif %if %{with_arm64_16k} && %{with_debug} %define variant_summary The Linux kernel compiled with extra debugging enabled %if !%{debugbuildsenabled} %kernel_variant_package -m 16k-debug %else %kernel_variant_package 16k-debug %endif %description 16k-debug-core The debug kernel package contains a variant of the ARM64 Linux kernel using a 16K page size. This variant of the kernel has numerous debugging options enabled. It should only be installed when trying to gather additional information on kernel bugs, as some of these options impact performance noticably. %endif %if %{with_arm64_64k_base} %define variant_summary The Linux kernel compiled for 64k pagesize usage %kernel_variant_package 64k %description 64k-core The kernel package contains a variant of the ARM64 Linux kernel using a 64K page size. %endif %if %{with_arm64_64k} && %{with_debug} %define variant_summary The Linux kernel compiled with extra debugging enabled %if !%{debugbuildsenabled} %kernel_variant_package -m 64k-debug %else %kernel_variant_package 64k-debug %endif %description 64k-debug-core The debug kernel package contains a variant of the ARM64 Linux kernel using a 64K page size. This variant of the kernel has numerous debugging options enabled. It should only be installed when trying to gather additional information on kernel bugs, as some of these options impact performance noticably. %endif %if %{with_debug} && %{with_realtime} %define variant_summary The Linux PREEMPT_RT kernel compiled with extra debugging enabled %kernel_variant_package rt-debug %description rt-debug-core The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc. This variant of the kernel has numerous debugging options enabled. It should only be installed when trying to gather additional information on kernel bugs, as some of these options impact performance noticably. %endif %if %{with_realtime_base} %define variant_summary The Linux kernel compiled with PREEMPT_RT enabled %kernel_variant_package rt %description rt-core This package includes a version of the Linux kernel compiled with the PREEMPT_RT real-time preemption support %endif %if %{with_realtime_arm64_64k_base} %define variant_summary The Linux PREEMPT_RT kernel compiled for 64k pagesize usage %kernel_variant_package rt-64k %description rt-64k-core The kernel package contains a variant of the ARM64 Linux PREEMPT_RT kernel using a 64K page size. %endif %if %{with_realtime_arm64_64k} && %{with_debug} %define variant_summary The Linux PREEMPT_RT kernel compiled with extra debugging enabled %if !%{debugbuildsenabled} %kernel_variant_package -m rt-64k-debug %else %kernel_variant_package rt-64k-debug %endif %description rt-64k-debug-core The debug kernel package contains a variant of the ARM64 Linux PREEMPT_RT kernel using a 64K page size. This variant of the kernel has numerous debugging options enabled. It should only be installed when trying to gather additional information on kernel bugs, as some of these options impact performance noticably. %endif %if %{with_debug} && %{with_automotive} && !%{with_automotive_build} %define variant_summary The Linux Automotive kernel compiled with extra debugging enabled %kernel_variant_package automotive-debug %description automotive-debug-core The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc. This variant of the kernel has numerous debugging options enabled. It should only be installed when trying to gather additional information on kernel bugs, as some of these options impact performance noticably. %endif %if %{with_automotive_base} %define variant_summary The Linux kernel compiled with PREEMPT_RT enabled %kernel_variant_package automotive %description automotive-core This package includes a version of the Linux kernel compiled with the PREEMPT_RT real-time preemption support, targeted for Automotive platforms %endif %if %{with_up} && %{with_debug} %if !%{debugbuildsenabled} %kernel_variant_package -m debug %else %kernel_variant_package debug %endif %description debug-core The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc. This variant of the kernel has numerous debugging options enabled. It should only be installed when trying to gather additional information on kernel bugs, as some of these options impact performance noticably. %endif %if %{with_up_base} # And finally the main -core package %define variant_summary The Linux kernel %kernel_variant_package %description core The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc. %endif %if %{with_up} && %{with_debug} && %{with_efiuki} %description debug-uki-virt Prebuilt debug unified kernel image for virtual machines. %description debug-uki-virt-addons Prebuilt debug unified kernel image addons for virtual machines. %endif %if %{with_up_base} && %{with_efiuki} %description uki-virt Prebuilt default unified kernel image for virtual machines. %description uki-virt-addons Prebuilt default unified kernel image addons for virtual machines. %endif %if %{with_arm64_16k} && %{with_debug} && %{with_efiuki} %description 16k-debug-uki-virt Prebuilt 16k debug unified kernel image for virtual machines. %description 16k-debug-uki-virt-addons Prebuilt 16k debug unified kernel image addons for virtual machines. %endif %if %{with_arm64_16k_base} && %{with_efiuki} %description 16k-uki-virt Prebuilt 16k unified kernel image for virtual machines. %description 16k-uki-virt-addons Prebuilt 16k unified kernel image addons for virtual machines. %endif %if %{with_arm64_64k} && %{with_debug} && %{with_efiuki} %description 64k-debug-uki-virt Prebuilt 64k debug unified kernel image for virtual machines. %description 64k-debug-uki-virt-addons Prebuilt 64k debug unified kernel image addons for virtual machines. %endif %if %{with_arm64_64k_base} && %{with_efiuki} %description 64k-uki-virt Prebuilt 64k unified kernel image for virtual machines. %description 64k-uki-virt-addons Prebuilt 64k unified kernel image addons for virtual machines. %endif %ifnarch noarch %{nobuildarches} %kernel_modules_extra_matched_package %endif %define log_msg() \ { set +x; } 2>/dev/null \ _log_msglineno=$(grep -n %{*} %{_specdir}/${RPM_PACKAGE_NAME}.spec | grep log_msg | cut -d":" -f1) \ echo "kernel.spec:${_log_msglineno}: %{*}" \ set -x %prep %{log_msg "Start of prep stage"} %{log_msg "Sanity checks"} # do a few sanity-checks for --with *only builds %if %{with_baseonly} %if !%{with_up} %{log_msg "Cannot build --with baseonly, up build is disabled"} exit 1 %endif %endif %if %{with_automotive} %if 0%{?fedora} %{log_msg "Cannot build automotive with a fedora baseline, must be rhel/centos/eln"} exit 1 %endif %endif # more sanity checking; do it quietly if [ "%{patches}" != "%%{patches}" ] ; then for patch in %{patches} ; do if [ ! -f $patch ] ; then %{log_msg "ERROR: Patch ${patch##/*/} listed in specfile but is missing"} exit 1 fi done fi 2>/dev/null patch_command='git --work-tree=. apply' ApplyPatch() { local patch=$1 shift if [ ! -f $RPM_SOURCE_DIR/$patch ]; then exit 1 fi if ! grep -E "^Patch[0-9]+: $patch\$" %{_specdir}/${RPM_PACKAGE_NAME}.spec ; then if [ "${patch:0:8}" != "patch-%{kversion}." ] ; then %{log_msg "ERROR: Patch $patch not listed as a source patch in specfile"} exit 1 fi fi 2>/dev/null case "$patch" in *.bz2) bunzip2 < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;; *.gz) gunzip < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;; *.xz) unxz < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;; *) $patch_command ${1+"$@"} < "$RPM_SOURCE_DIR/$patch" ;; esac } # don't apply patch if it's empty ApplyOptionalPatch() { local patch=$1 shift %{log_msg "ApplyOptionalPatch: $1"} if [ ! -f $RPM_SOURCE_DIR/$patch ]; then exit 1 fi local C=$(wc -l $RPM_SOURCE_DIR/$patch | awk '{print $1}') if [ "$C" -gt 9 ]; then ApplyPatch $patch ${1+"$@"} fi } %{log_msg "Untar kernel tarball"} %setup -q -n kernel-%{tarfile_release} -c mv linux-%{tarfile_release} linux-%{KVERREL} cd linux-%{KVERREL} cp -a %{SOURCE1} . %{log_msg "Start of patch applications"} %if !%{nopatches} ApplyOptionalPatch patch-%{patchversion}-redhat.patch %endif ApplyOptionalPatch linux-kernel-test.patch %{log_msg "End of patch applications"} # END OF PATCH APPLICATIONS # Any further pre-build tree manipulations happen here. %{log_msg "Pre-build tree manipulations"} chmod +x scripts/checkpatch.pl mv COPYING COPYING-%{specrpmversion}-%{release} # on linux-next prevent scripts/setlocalversion from mucking with our version numbers rm -f localversion-next localversion-rt # Mangle /usr/bin/python shebangs to /usr/bin/python3 # Mangle all Python shebangs to be Python 3 explicitly # -p preserves timestamps # -n prevents creating ~backup files # -i specifies the interpreter for the shebang # This fixes errors such as # *** ERROR: ambiguous python shebang in /usr/bin/kvm_stat: #!/usr/bin/python. Change it to python3 (or python2) explicitly. # We patch all sources below for which we got a report/error. %{log_msg "Fixing Python shebangs..."} %py3_shebang_fix \ tools/kvm/kvm_stat/kvm_stat \ scripts/show_delta \ scripts/diffconfig \ scripts/bloat-o-meter \ scripts/jobserver-exec \ tools \ Documentation \ scripts/clang-tools 2> /dev/null # SBAT data sed -e s,@KVER,%{KVERREL}, -e s,@SBAT_SUFFIX,%{sbat_suffix}, %{SOURCE83} > uki.sbat sed -e s,@KVER,%{KVERREL}, -e s,@SBAT_SUFFIX,%{sbat_suffix}, %{SOURCE84} > uki-addons.sbat sed -e s,@KVER,%{KVERREL}, -e s,@SBAT_SUFFIX,%{sbat_suffix}, %{SOURCE85} > kernel.sbat # only deal with configs if we are going to build for the arch %ifnarch %nobuildarches if [ -L configs ]; then rm -f configs fi mkdir configs cd configs %{log_msg "Copy additional source files into buildroot"} # Drop some necessary files from the source dir into the buildroot cp $RPM_SOURCE_DIR/%{name}-*.config . cp %{SOURCE80} . # merge.py cp %{SOURCE3000} . # kernel-local - rename and copy for partial snippet config process cp %{SOURCE3001} partial-kernel-local-snip.config cp %{SOURCE3001} partial-kernel-local-debug-snip.config FLAVOR=%{primary_target} SPECPACKAGE_NAME=%{name} SPECVERSION=%{specversion} SPECRPMVERSION=%{specrpmversion} ./generate_all_configs.sh %{debugbuildsenabled} # Collect custom defined config options %{log_msg "Collect custom defined config options"} PARTIAL_CONFIGS="" %if %{with_gcov} PARTIAL_CONFIGS="$PARTIAL_CONFIGS %{SOURCE70} %{SOURCE71}" %endif %if %{with toolchain_clang} PARTIAL_CONFIGS="$PARTIAL_CONFIGS %{SOURCE72} %{SOURCE73}" %endif %if %{with clang_lto} PARTIAL_CONFIGS="$PARTIAL_CONFIGS %{SOURCE74} %{SOURCE75} %{SOURCE76} %{SOURCE77}" %endif PARTIAL_CONFIGS="$PARTIAL_CONFIGS partial-kernel-local-snip.config partial-kernel-local-debug-snip.config" GetArch() { case "$1" in *aarch64*) echo "aarch64" ;; *ppc64le*) echo "ppc64le" ;; *s390x*) echo "s390x" ;; *x86_64*) echo "x86_64" ;; *riscv64*) echo "riscv64" ;; # no arch, apply everywhere *) echo "" ;; esac } # Merge in any user-provided local config option changes %{log_msg "Merge in any user-provided local config option changes"} %ifnarch %nobuildarches for i in %{all_configs} do kern_arch="$(GetArch $i)" kern_debug="$(echo $i | grep -q debug && echo "debug" || echo "")" for j in $PARTIAL_CONFIGS do part_arch="$(GetArch $j)" part_debug="$(echo $j | grep -q debug && echo "debug" || echo "")" # empty arch means apply to all arches if [ "$part_arch" == "" -o "$part_arch" == "$kern_arch" ] && [ "$part_debug" == "$kern_debug" ] then mv $i $i.tmp ./merge.py $j $i.tmp > $i fi done rm -f $i.tmp done %endif %if %{signkernel}%{signmodules} # Add DUP and kpatch certificates to system trusted keys for RHEL truncate -s0 ../certs/rhel.pem %if 0%{?rhel} %if %{rhelkeys} %{log_msg "Add DUP and kpatch certificates to system trusted keys for RHEL"} openssl x509 -inform der -in %{SOURCE100} -out rheldup3.pem openssl x509 -inform der -in %{SOURCE101} -out rhelkpatch1.pem openssl x509 -inform der -in %{SOURCE102} -out nvidiagpuoot001.pem cat rheldup3.pem rhelkpatch1.pem nvidiagpuoot001.pem >> ../certs/rhel.pem # rhelkeys %endif %if %{signkernel} %ifarch s390x ppc64le openssl x509 -inform der -in %{secureboot_ca_0} -out secureboot.pem cat secureboot.pem >> ../certs/rhel.pem %endif %endif # rhel %endif openssl x509 -inform der -in %{ima_ca_cert} -out imaca.pem cat imaca.pem >> ../certs/rhel.pem for i in *.config; do sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' $i sed -i 's@CONFIG_EFI_SBAT_FILE=""@CONFIG_EFI_SBAT_FILE="kernel.sbat"@' $i done %endif # Adjust FIPS module name for RHEL %if 0%{?rhel} %{log_msg "Adjust FIPS module name for RHEL"} for i in *.config; do sed -i 's/CONFIG_CRYPTO_FIPS_NAME=.*/CONFIG_CRYPTO_FIPS_NAME="Red Hat Enterprise Linux %{rhel} - Kernel Cryptographic API"/' $i done %endif %{log_msg "Set process_configs.sh $OPTS"} cp %{SOURCE81} . OPTS="" %if %{with_configchecks} OPTS="$OPTS -w -n -c" %endif %if %{with clang_lto} for opt in %{clang_make_opts}; do OPTS="$OPTS -m $opt" done %endif %{log_msg "Generate redhat configs"} RHJOBS=$RPM_BUILD_NCPUS SPECPACKAGE_NAME=%{name} ./process_configs.sh $OPTS %{specrpmversion} # We may want to override files from the primary target in case of building # against a flavour of it (eg. centos not rhel), thus override it here if # necessary update_scripts() { TARGET="$1" for i in "$RPM_SOURCE_DIR"/*."$TARGET"; do NEW=${i%."$TARGET"} cp "$i" "$(basename "$NEW")" done } %{log_msg "Set scripts/SOURCES targets"} update_target=%{primary_target} if [ "%{primary_target}" == "rhel" ]; then : # no-op to avoid empty if-fi error %if 0%{?centos} update_scripts $update_target %{log_msg "Updating scripts/sources to centos version"} update_target=centos %endif fi update_scripts $update_target %endif %{log_msg "End of kernel config"} cd .. # # End of Configs stuff # get rid of unwanted files resulting from patch fuzz find . \( -name "*.orig" -o -name "*~" \) -delete >/dev/null # remove unnecessary SCM files find . -name .gitignore -delete >/dev/null cd .. ### ### build ### %build %{log_msg "Start of build stage"} %{log_msg "General arch build configuration"} rm -rf %{buildroot_unstripped} || true mkdir -p %{buildroot_unstripped} %if %{with_sparse} %define sparse_mflags C=1 %endif cp_vmlinux() { eu-strip --remove-comment -o "$2" "$1" } # Note we need to disable these flags for cross builds because the flags # from redhat-rpm-config assume that host == target so target arch # flags cause issues with the host compiler. %if !%{with_cross} %define build_hostcflags %{?build_cflags} %define build_hostldflags %{?build_ldflags} %endif %define make %{__make} %{?cross_opts} %{?make_opts} HOSTCFLAGS="%{?build_hostcflags}" HOSTLDFLAGS="%{?build_hostldflags}" InitBuildVars() { %{log_msg "InitBuildVars for $1"} %{log_msg "InitBuildVars: Initialize build variables"} # Initialize the kernel .config file and create some variables that are # needed for the actual build process. Variant=$1 # Pick the right kernel config file Config=%{name}-%{specrpmversion}-%{_target_cpu}${Variant:+-${Variant}}.config DevelDir=/usr/src/kernels/%{KVERREL}${Variant:++${Variant}} KernelVer=%{specversion}-%{release}.%{_target_cpu}${Variant:++${Variant}} %{log_msg "InitBuildVars: Update Makefile"} # make sure EXTRAVERSION says what we want it to say # Trim the release if this is a CI build, since KERNELVERSION is limited to 64 characters ShortRel=$(perl -e "print \"%{release}\" =~ s/\.pr\.[0-9A-Fa-f]{32}//r") perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -${ShortRel}.%{_target_cpu}${Variant:++${Variant}}/" Makefile # if pre-rc1 devel kernel, must fix up PATCHLEVEL for our versioning scheme # if we are post rc1 this should match anyway so this won't matter perl -p -i -e 's/^PATCHLEVEL.*/PATCHLEVEL = %{patchlevel}/' Makefile %{log_msg "InitBuildVars: Copy files"} %{make} %{?_smp_mflags} mrproper cp configs/$Config .config %if %{signkernel}%{signmodules} cp configs/x509.genkey certs/. %endif %if %{with_debuginfo} == 0 sed -i 's/^\(CONFIG_DEBUG_INFO.*\)=y/# \1 is not set/' .config %endif Arch=`head -1 .config | cut -b 3-` %{log_msg "InitBuildVars: USING ARCH=$Arch"} KCFLAGS="%{?kcflags}" } #Build bootstrap bpftool BuildBpftool(){ export BPFBOOTSTRAP_CFLAGS=$(echo "%{__global_compiler_flags}" | sed -r "s/\-specs=[^\ ]+\/redhat-annobin-cc1//") export BPFBOOTSTRAP_LDFLAGS=$(echo "%{__global_ldflags}" | sed -r "s/\-specs=[^\ ]+\/redhat-annobin-cc1//") CFLAGS="" LDFLAGS="" make EXTRA_CFLAGS="${BPFBOOTSTRAP_CFLAGS}" EXTRA_CXXFLAGS="${BPFBOOTSTRAP_CFLAGS}" EXTRA_LDFLAGS="${BPFBOOTSTRAP_LDFLAGS}" %{?make_opts} %{?clang_make_opts} V=1 -C tools/bpf/bpftool bootstrap } BuildKernel() { %{log_msg "BuildKernel for $4"} MakeTarget=$1 KernelImage=$2 DoVDSO=$3 Variant=$4 InstallName=${5:-vmlinuz} %{log_msg "Setup variables"} DoModules=1 if [ "$Variant" = "zfcpdump" ]; then DoModules=0 fi # When the bootable image is just the ELF kernel, strip it. # We already copy the unstripped file into the debuginfo package. if [ "$KernelImage" = vmlinux ]; then CopyKernel=cp_vmlinux else CopyKernel=cp fi %if %{with_gcov} %{log_msg "Setup build directories"} # Make build directory unique for each variant, so that gcno symlinks # are also unique for each variant. if [ -n "$Variant" ]; then ln -s $(pwd) ../linux-%{KVERREL}-${Variant} fi %{log_msg "GCOV - continuing build in: $(pwd)"} pushd ../linux-%{KVERREL}${Variant:+-${Variant}} pwd > ../kernel${Variant:+-${Variant}}-gcov.list %endif %{log_msg "Calling InitBuildVars for $Variant"} InitBuildVars $Variant %{log_msg "BUILDING A KERNEL FOR ${Variant} %{_target_cpu}..."} %{make} ARCH=$Arch olddefconfig >/dev/null %{log_msg "Setup build-ids"} # This ensures build-ids are unique to allow parallel debuginfo perl -p -i -e "s/^CONFIG_BUILD_SALT.*/CONFIG_BUILD_SALT=\"%{KVERREL}\"/" .config %{make} ARCH=$Arch KCFLAGS="$KCFLAGS" WITH_GCOV="%{?with_gcov}" %{?_smp_mflags} $MakeTarget %{?sparse_mflags} %{?kernel_mflags} if [ $DoModules -eq 1 ]; then %{make} ARCH=$Arch KCFLAGS="$KCFLAGS" WITH_GCOV="%{?with_gcov}" %{?_smp_mflags} modules %{?sparse_mflags} || exit 1 fi %{log_msg "Setup RPM_BUILD_ROOT directories"} mkdir -p $RPM_BUILD_ROOT/%{image_install_path} mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/systemtap %if %{with_debuginfo} mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/%{image_install_path} %endif %ifarch aarch64 riscv64 %{log_msg "Build dtb kernel"} mkdir -p $RPM_BUILD_ROOT/%{image_install_path}/dtb-$KernelVer %{make} ARCH=$Arch dtbs INSTALL_DTBS_PATH=$RPM_BUILD_ROOT/%{image_install_path}/dtb-$KernelVer %{make} ARCH=$Arch dtbs_install INSTALL_DTBS_PATH=$RPM_BUILD_ROOT/%{image_install_path}/dtb-$KernelVer cp -r $RPM_BUILD_ROOT/%{image_install_path}/dtb-$KernelVer $RPM_BUILD_ROOT/lib/modules/$KernelVer/dtb find arch/$Arch/boot/dts -name '*.dtb' -type f -delete %endif %{log_msg "Cleanup temp btf files"} # Remove large intermediate files we no longer need to save space # (-f required for zfcpdump builds that do not enable BTF) rm -f vmlinux.o .tmp_vmlinux.btf %{log_msg "Install files to RPM_BUILD_ROOT"} # Comment out specific config settings that may use resources not available # to the end user so that the packaged config file can be easily reused with # upstream make targets %if %{signkernel}%{signmodules} sed -i -e '/^CONFIG_SYSTEM_TRUSTED_KEYS/{ i\# The kernel was built with s/^/# / a\# We are resetting this value to facilitate local builds a\CONFIG_SYSTEM_TRUSTED_KEYS="" }' .config %endif # Start installing the results install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer install -m 644 .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/config install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer install -m 644 System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/System.map %{log_msg "Create initrfamfs"} # We estimate the size of the initramfs because rpm needs to take this size # into consideration when performing disk space calculations. (See bz #530778) dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initramfs-$KernelVer.img bs=1M count=20 if [ -f arch/$Arch/boot/zImage.stub ]; then %{log_msg "Copy zImage.stub to RPM_BUILD_ROOT"} cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || : cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/lib/modules/$KernelVer/zImage.stub-$KernelVer || : fi %if %{signkernel} %{log_msg "Copy kernel for signing"} if [ "$KernelImage" = vmlinux ]; then # We can't strip and sign $KernelImage in place, because # we need to preserve original vmlinux for debuginfo. # Use a copy for signing. $CopyKernel $KernelImage $KernelImage.tosign KernelImage=$KernelImage.tosign CopyKernel=cp fi SignImage=$KernelImage %ifarch x86_64 aarch64 %{log_msg "Sign kernel image"} %pesign -s -i $SignImage -o vmlinuz.signed -a %{secureboot_ca_0} -c %{secureboot_key_0} -n %{pesign_name_0} %endif %ifarch s390x ppc64le if [ -x /usr/bin/rpm-sign ]; then rpm-sign --key "%{pesign_name_0}" --lkmsign $SignImage --output vmlinuz.signed elif [ "$DoModules" == "1" -a "%{signmodules}" == "1" ]; then chmod +x scripts/sign-file ./scripts/sign-file -p sha256 certs/signing_key.pem certs/signing_key.x509 $SignImage vmlinuz.signed else mv $SignImage vmlinuz.signed fi %endif if [ ! -s vmlinuz.signed ]; then %{log_msg "pesigning failed"} exit 1 fi mv vmlinuz.signed $SignImage # signkernel %endif %{log_msg "copy signed kernel"} $CopyKernel $KernelImage \ $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer chmod 755 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer cp $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer $RPM_BUILD_ROOT/lib/modules/$KernelVer/$InstallName # hmac sign the kernel for FIPS %{log_msg "hmac sign the kernel for FIPS"} %{log_msg "Creating hmac file: $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac"} ls -l $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer (cd $RPM_BUILD_ROOT/%{image_install_path} && sha512hmac $InstallName-$KernelVer) > $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac; cp $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac $RPM_BUILD_ROOT/lib/modules/$KernelVer/.vmlinuz.hmac if [ $DoModules -eq 1 ]; then %{log_msg "Install modules in RPM_BUILD_ROOT"} # Override $(mod-fw) because we don't want it to install any firmware # we'll get it from the linux-firmware package and we don't want conflicts %{make} %{?_smp_mflags} ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT %{?_smp_mflags} modules_install KERNELRELEASE=$KernelVer mod-fw= fi %if %{with_gcov} %{log_msg "install gcov-needed files to $BUILDROOT/$BUILD/"} # install gcov-needed files to $BUILDROOT/$BUILD/...: # gcov_info->filename is absolute path # gcno references to sources can use absolute paths (e.g. in out-of-tree builds) # sysfs symlink targets (set up at compile time) use absolute paths to BUILD dir find . \( -name '*.gcno' -o -name '*.[chS]' \) -exec install -D '{}' "$RPM_BUILD_ROOT/$(pwd)/{}" \; %endif %{log_msg "Add VDSO files"} # add an a noop %%defattr statement 'cause rpm doesn't like empty file list files echo '%%defattr(-,-,-)' > ../kernel${Variant:+-${Variant}}-ldsoconf.list if [ $DoVDSO -ne 0 ]; then %{make} ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT vdso_install KERNELRELEASE=$KernelVer if [ -s ldconfig-kernel.conf ]; then install -D -m 444 ldconfig-kernel.conf \ $RPM_BUILD_ROOT/etc/ld.so.conf.d/kernel-$KernelVer.conf echo /etc/ld.so.conf.d/kernel-$KernelVer.conf >> ../kernel${Variant:+-${Variant}}-ldsoconf.list fi rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/vdso/.build-id fi %{log_msg "Save headers/makefiles, etc. for kernel-headers"} # And save the headers/makefiles etc for building modules against # # This all looks scary, but the end result is supposed to be: # * all arch relevant include/ files # * all Makefile/Kconfig files # * all script/ files rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source) # dirs for additional modules per module-init-tools, kbuild/modules.txt mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/updates mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/weak-updates # CONFIG_KERNEL_HEADER_TEST generates some extra files in the process of # testing so just delete find . -name *.h.s -delete # first copy everything cp --parents `find -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build if [ ! -e Module.symvers ]; then touch Module.symvers fi cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/build if [ -s Module.markers ]; then cp Module.markers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build fi # create the kABI metadata for use in packaging # NOTENOTE: the name symvers is used by the rpm backend # NOTENOTE: to discover and run the /usr/lib/rpm/fileattrs/kabi.attr # NOTENOTE: script which dynamically adds exported kernel symbol # NOTENOTE: checksums to the rpm metadata provides list. # NOTENOTE: if you change the symvers name, update the backend too %{log_msg "GENERATING kernel ABI metadata"} %compression --stdout %compression_flags < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.%compext cp $RPM_BUILD_ROOT/boot/symvers-$KernelVer.%compext $RPM_BUILD_ROOT/lib/modules/$KernelVer/symvers.%compext %if %{with_kabichk} %{log_msg "kABI checking is enabled in kernel SPEC file."} chmod 0755 $RPM_SOURCE_DIR/check-kabi if [ -e $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Variant ]; then cp $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Variant $RPM_BUILD_ROOT/Module.kabi $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1 # for now, don't keep it around. rm $RPM_BUILD_ROOT/Module.kabi else %{log_msg "NOTE: Cannot find reference Module.kabi file."} fi %endif %if %{with_kabidupchk} %{log_msg "kABI DUP checking is enabled in kernel SPEC file."} if [ -e $RPM_SOURCE_DIR/Module.kabi_dup_%{_target_cpu}$Variant ]; then cp $RPM_SOURCE_DIR/Module.kabi_dup_%{_target_cpu}$Variant $RPM_BUILD_ROOT/Module.kabi $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1 # for now, don't keep it around. rm $RPM_BUILD_ROOT/Module.kabi else %{log_msg "NOTE: Cannot find DUP reference Module.kabi file."} fi %endif %if %{with_kabidw_base} # Don't build kabi base for debug kernels if [ "$Variant" != "zfcpdump" -a "$Variant" != "debug" ]; then mkdir -p $RPM_BUILD_ROOT/kabi-dwarf tar -xvf %{SOURCE301} -C $RPM_BUILD_ROOT/kabi-dwarf mkdir -p $RPM_BUILD_ROOT/kabi-dwarf/stablelists tar -xvf %{SOURCE300} -C $RPM_BUILD_ROOT/kabi-dwarf/stablelists %{log_msg "GENERATING DWARF-based kABI baseline dataset"} chmod 0755 $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh generate \ "$RPM_BUILD_ROOT/kabi-dwarf/stablelists/kabi-current/kabi_stablelist_%{_target_cpu}" \ "$(pwd)" \ "$RPM_BUILD_ROOT/kabidw-base/%{_target_cpu}${Variant:+.${Variant}}" || : rm -rf $RPM_BUILD_ROOT/kabi-dwarf fi %endif %if %{with_kabidwchk} if [ "$Variant" != "zfcpdump" ]; then mkdir -p $RPM_BUILD_ROOT/kabi-dwarf tar -xvf %{SOURCE301} -C $RPM_BUILD_ROOT/kabi-dwarf if [ -d "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Variant:+.${Variant}}" ]; then mkdir -p $RPM_BUILD_ROOT/kabi-dwarf/stablelists tar -xvf %{SOURCE300} -C $RPM_BUILD_ROOT/kabi-dwarf/stablelists %{log_msg "GENERATING DWARF-based kABI dataset"} chmod 0755 $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh generate \ "$RPM_BUILD_ROOT/kabi-dwarf/stablelists/kabi-current/kabi_stablelist_%{_target_cpu}" \ "$(pwd)" \ "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Variant:+.${Variant}}.tmp" || : %{log_msg "kABI DWARF-based comparison report"} $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh compare \ "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Variant:+.${Variant}}" \ "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Variant:+.${Variant}}.tmp" || : %{log_msg "End of kABI DWARF-based comparison report"} else %{log_msg "Baseline dataset for kABI DWARF-BASED comparison report not found"} fi rm -rf $RPM_BUILD_ROOT/kabi-dwarf fi %endif %{log_msg "Cleanup Makefiles/Kconfig files"} # then drop all but the needed Makefiles/Kconfig files rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/tracing rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/spdxcheck.py %ifarch s390x # CONFIG_EXPOLINE_EXTERN=y produces arch/s390/lib/expoline/expoline.o # which is needed during external module build. %{log_msg "Copy expoline.o"} if [ -f arch/s390/lib/expoline/expoline.o ]; then cp -a --parents arch/s390/lib/expoline/expoline.o $RPM_BUILD_ROOT/lib/modules/$KernelVer/build fi %endif %{log_msg "Copy additional files for make targets"} # Files for 'make scripts' to succeed with kernel-devel. mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/security/selinux/include cp -a --parents security/selinux/include/classmap.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents security/selinux/include/initial_sid_to_string.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/include/tools cp -a --parents tools/include/tools/be_byteshift.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/include/tools/le_byteshift.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build # Files for 'make prepare' to succeed with kernel-devel. cp -a --parents tools/include/linux/compiler* $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/include/linux/types.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/build/Build.include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents tools/build/fixdep.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents tools/objtool/sync-check.sh $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/bpf/resolve_btfids $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents security/selinux/include/policycap_names.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents security/selinux/include/policycap.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/include/asm $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/include/asm-generic $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/include/linux $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/include/uapi/asm $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/include/uapi/asm-generic $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/include/uapi/linux $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/include/vdso $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents tools/scripts/utilities.mak $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/lib/subcmd $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents tools/lib/*.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents tools/objtool/*.[ch] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents tools/objtool/Build $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents tools/objtool/include/objtool/*.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/lib/bpf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp --parents tools/lib/bpf/Build $RPM_BUILD_ROOT/lib/modules/$KernelVer/build if [ -f tools/objtool/objtool ]; then cp -a tools/objtool/objtool $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/objtool/ || : fi if [ -f tools/objtool/fixdep ]; then cp -a tools/objtool/fixdep $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/objtool/ || : fi if [ -d arch/$Arch/scripts ]; then cp -a arch/$Arch/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch} || : fi if [ -f arch/$Arch/*lds ]; then cp -a arch/$Arch/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch}/ || : fi if [ -f arch/%{asmarch}/kernel/module.lds ]; then cp -a --parents arch/%{asmarch}/kernel/module.lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ fi find $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts \( -iname "*.o" -o -iname "*.cmd" \) -exec rm -f {} + %ifarch ppc64le cp -a --parents arch/powerpc/lib/crtsavres.[So] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ %endif if [ -d arch/%{asmarch}/include ]; then cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ fi if [ -d tools/arch/%{asmarch}/include ]; then cp -a --parents tools/arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build fi %ifarch aarch64 # arch/arm64/include/asm/xen references arch/arm cp -a --parents arch/arm/include/asm/xen $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ # arch/arm64/include/asm/opcodes.h references arch/arm cp -a --parents arch/arm/include/asm/opcodes.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ %endif cp -a include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include # Cross-reference from include/perf/events/sof.h cp -a sound/soc/sof/sof-audio.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/sound/soc/sof %ifarch i686 x86_64 # files for 'make prepare' to succeed with kernel-devel cp -a --parents arch/x86/entry/syscalls/syscall_32.tbl $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/entry/syscalls/syscall_64.tbl $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/tools/relocs_32.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/tools/relocs_64.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/tools/relocs.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/tools/relocs_common.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/tools/relocs.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/purgatory/purgatory.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/purgatory/stack.S $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/purgatory/setup-x86_64.S $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/purgatory/entry64.S $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/boot/string.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/boot/string.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents arch/x86/boot/ctype.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents scripts/syscalltbl.sh $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents scripts/syscallhdr.sh $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/ cp -a --parents tools/arch/x86/include/asm $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/arch/x86/include/uapi/asm $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/objtool/arch/x86/lib $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/arch/x86/lib/ $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/arch/x86/tools/gen-insn-attr-x86.awk $RPM_BUILD_ROOT/lib/modules/$KernelVer/build cp -a --parents tools/objtool/arch/x86/ $RPM_BUILD_ROOT/lib/modules/$KernelVer/build %endif %{log_msg "Clean up intermediate tools files"} # Clean up intermediate tools files find $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools \( -iname "*.o" -o -iname "*.cmd" \) -exec rm -f {} + # Make sure the Makefile, version.h, and auto.conf have a matching # timestamp so that external modules can be built touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile \ $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/generated/uapi/linux/version.h \ $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf %if %{with_debuginfo} eu-readelf -n vmlinux | grep "Build ID" | awk '{print $NF}' > vmlinux.id cp vmlinux.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.id %{log_msg "Copy additional files for kernel-debuginfo rpm"} # # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm # (use mv + symlink instead of cp to reduce disk space requirements) # mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer mv vmlinux $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer ln -s $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer/vmlinux vmlinux if [ -n "%{?vmlinux_decompressor}" ]; then eu-readelf -n %{vmlinux_decompressor} | grep "Build ID" | awk '{print $NF}' > vmlinux.decompressor.id # Without build-id the build will fail. But for s390 the build-id # wasn't added before 5.11. In case it is missing prefer not # packaging the debuginfo over a build failure. if [ -s vmlinux.decompressor.id ]; then cp vmlinux.decompressor.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.decompressor.id cp %{vmlinux_decompressor} $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer/vmlinux.decompressor fi fi # build and copy the vmlinux-gdb plugin files into kernel-debuginfo %{make} ARCH=$Arch %{?_smp_mflags} scripts_gdb cp -a --parents scripts/gdb/{,linux/}*.py $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer # this should be a relative symlink (Kbuild creates an absolute one) ln -s scripts/gdb/vmlinux-gdb.py $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer/vmlinux-gdb.py %py_byte_compile %{python3} $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer/scripts/gdb %endif %{log_msg "Create modnames"} find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames # mark modules executable so that strip-to-file can strip them xargs --no-run-if-empty chmod u+x < modnames # Generate a list of modules for block and networking. %{log_msg "Generate a list of modules for block and networking"} grep -F /drivers/ modnames | xargs --no-run-if-empty nm -upA | sed -n 's,^.*/\([^/]*\.ko\): *U \(.*\)$,\1 \2,p' > drivers.undef collect_modules_list() { sed -r -n -e "s/^([^ ]+) \\.?($2)\$/\\1/p" drivers.undef | LC_ALL=C sort -u > $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1 if [ ! -z "$3" ]; then sed -r -e "/^($3)\$/d" -i $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1 fi } collect_modules_list networking \ 'register_netdev|ieee80211_register_hw|usbnet_probe|phy_driver_register|rt(l_|2x00)(pci|usb)_probe|register_netdevice' collect_modules_list block \ 'ata_scsi_ioctl|scsi_add_host|scsi_add_host_with_dma|blk_alloc_queue|blk_init_queue|register_mtd_blktrans|scsi_esp_register|scsi_register_device_handler|blk_queue_physical_block_size' 'pktcdvd.ko|dm-mod.ko' collect_modules_list drm \ 'drm_open|drm_init' collect_modules_list modesetting \ 'drm_crtc_init' %{log_msg "detect missing or incorrect license tags"} # detect missing or incorrect license tags ( find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name '*.ko' | xargs /sbin/modinfo -l | \ grep -E -v 'GPL( v2)?$|Dual BSD/GPL$|Dual MPL/GPL$|GPL and additional rights$' ) && exit 1 if [ $DoModules -eq 0 ]; then %{log_msg "Create empty files for RPM packaging"} # Ensure important files/directories exist to let the packaging succeed echo '%%defattr(-,-,-)' > ../kernel${Variant:+-${Variant}}-modules-core.list echo '%%defattr(-,-,-)' > ../kernel${Variant:+-${Variant}}-modules.list echo '%%defattr(-,-,-)' > ../kernel${Variant:+-${Variant}}-modules-extra.list echo '%%defattr(-,-,-)' > ../kernel${Variant:+-${Variant}}-modules-internal.list echo '%%defattr(-,-,-)' > ../kernel${Variant:+-${Variant}}-modules-partner.list mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/kernel # Add files usually created by make modules, needed to prevent errors # thrown by depmod during package installation touch $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.order touch $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.builtin fi # Copy the System.map file for depmod to use cp System.map $RPM_BUILD_ROOT/. if [[ "$Variant" == "rt" || "$Variant" == "rt-debug" || "$Variant" == "rt-64k" || "$Variant" == "rt-64k-debug" || "$Variant" == "automotive" || "$Variant" == "automotive-debug" ]]; then %{log_msg "Skipping efiuki build"} else %if %{with_efiuki} %{log_msg "Setup the EFI UKI kernel"} KernelUnifiedImageDir="$RPM_BUILD_ROOT/lib/modules/$KernelVer" KernelUnifiedImage="$KernelUnifiedImageDir/$InstallName-virt.efi" KernelUnifiedInitrd="$KernelUnifiedImageDir/$InstallName-virt.img" mkdir -p $KernelUnifiedImageDir dracut --conf=%{SOURCE86} \ --confdir=$(mktemp -d) \ --no-hostonly \ --verbose \ --kver "$KernelVer" \ --kmoddir "$RPM_BUILD_ROOT/lib/modules/$KernelVer/" \ --logfile=$(mktemp) \ $KernelUnifiedInitrd ukify build --linux $(realpath $KernelImage) --initrd $KernelUnifiedInitrd \ --sbat @uki.sbat --os-release @/etc/os-release --uname $KernelVer \ --cmdline 'console=tty0 console=ttyS0' --output $KernelUnifiedImage rm -f $KernelUnifiedInitrd KernelAddonsDirOut="$KernelUnifiedImage.extra.d" mkdir -p $KernelAddonsDirOut python3 %{SOURCE151} %{SOURCE152} $KernelAddonsDirOut virt %{primary_target} %{_target_cpu} @uki-addons.sbat %if %{signkernel} %{log_msg "Sign the EFI UKI kernel"} %if 0%{?fedora}%{?eln} %pesign -s -i $KernelUnifiedImage -o $KernelUnifiedImage.signed -a %{secureboot_ca_0} -c %{secureboot_key_0} -n %{pesign_name_0} %else %if 0%{?centos} UKI_secureboot_name=centossecureboot204 UKI_secureboot_cert=%{_datadir}/pki/sb-certs/secureboot-uki-virt-%{_arch}.cer %else # RHEL only builds UKI for x86 UKI_secureboot_name=redhatsecureboot504 UKI_secureboot_cert=%{SOURCE153} %endif %pesign -s -i $KernelUnifiedImage -o $KernelUnifiedImage.signed -a %{secureboot_ca_0} -c $UKI_secureboot_cert -n $UKI_secureboot_name for addon in "$KernelAddonsDirOut"/*; do %pesign -s -i $addon -o $addon.signed -a %{secureboot_ca_0} -c $UKI_secureboot_cert -n $UKI_secureboot_name rm -f $addon mv $addon.signed $addon done # 0%{?fedora}%{?eln} %endif if [ ! -s $KernelUnifiedImage.signed ]; then echo "pesigning failed" exit 1 fi mv $KernelUnifiedImage.signed $KernelUnifiedImage mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer cp -a $UKI_secureboot_cert $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/secureboot-uki-%{_arch}.cer # signkernel %endif # hmac sign the UKI for FIPS KernelUnifiedImageHMAC="$KernelUnifiedImageDir/.$InstallName-virt.efi.hmac" %{log_msg "hmac sign the UKI for FIPS"} %{log_msg "Creating hmac file: $KernelUnifiedImageHMAC"} (cd $KernelUnifiedImageDir && sha512hmac $InstallName-virt.efi) > $KernelUnifiedImageHMAC; # with_efiuki %endif : # in case of empty block fi # "$Variant" == "rt" || "$Variant" == "rt-debug" || "$Variant" == "automotive" || "$Variant" == "automotive-debug" # # Generate the modules files lists # move_kmod_list() { local module_list="$1" local subdir_name="$2" mkdir -p "$RPM_BUILD_ROOT/lib/modules/$KernelVer/$subdir_name" set +x while read -r kmod; do local target_file="$RPM_BUILD_ROOT/lib/modules/$KernelVer/$subdir_name/$kmod" local target_dir="${target_file%/*}" mkdir -p "$target_dir" mv "$RPM_BUILD_ROOT/lib/modules/$KernelVer/kernel/$kmod" "$target_dir" done < <(sed -e 's|^kernel/||' "$module_list") set -x } create_module_file_list() { # subdirectory within /lib/modules/$KernelVer where kmods should go local module_subdir="$1" # kmod list with relative paths produced by filtermods.py local relative_kmod_list="$2" # list with absolute paths to kmods and other files to be included local absolute_file_list="$3" # if 1, this adds also all kmod directories to absolute_file_list local add_all_dirs="$4" local run_mod_deny="$5" if [ "$module_subdir" != "kernel" ]; then # move kmods into subdirs if needed (internal, partner, extra,..) move_kmod_list $relative_kmod_list $module_subdir fi # make kmod paths absolute sed -e 's|^kernel/|/lib/modules/'$KernelVer'/'$module_subdir'/|' $relative_kmod_list > $absolute_file_list if [ "$run_mod_deny" -eq 1 ]; then # run deny-mod script, this adds blacklist-* files to absolute_file_list %{SOURCE20} "$RPM_BUILD_ROOT" lib/modules/$KernelVer $absolute_file_list fi %if %{zipmodules} # deny-mod script works with kmods as they are now (not compressed), # but if they will be we need to add compext to all sed -i %{?zipsed} $absolute_file_list %endif # add also dir for the case when there are no kmods # "kernel" subdir is covered in %files section, skip it here if [ "$module_subdir" != "kernel" ]; then echo "%dir /lib/modules/$KernelVer/$module_subdir" >> $absolute_file_list fi if [ "$add_all_dirs" -eq 1 ]; then (cd $RPM_BUILD_ROOT; find lib/modules/$KernelVer/kernel -mindepth 1 -type d | sort -n) > ../module-dirs.list sed -e 's|^lib|%dir /lib|' ../module-dirs.list >> $absolute_file_list fi } if [ $DoModules -eq 1 ]; then # save modules.dep for debugging cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.dep ../ %{log_msg "Create module list files for all kernel variants"} variants_param="" if [[ "$Variant" == "rt" || "$Variant" == "rt-debug" ]]; then variants_param="-r rt" fi if [[ "$Variant" == "rt-64k" || "$Variant" == "rt-64k-debug" ]]; then variants_param="-r rt-64k" fi if [[ "$Variant" == "automotive" || "$Variant" == "automotive-debug" ]]; then variants_param="-r automotive" fi # this creates ../modules-*.list output, where each kmod path is as it # appears in modules.dep (relative to lib/modules/$KernelVer) ret=0 %{SOURCE22} -l "../filtermods-$KernelVer.log" sort -d $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.dep -c configs/def_variants.yaml $variants_param -o .. || ret=$? if [ $ret -ne 0 ]; then echo "8< --- filtermods-$KernelVer.log ---" cat "../filtermods-$KernelVer.log" echo "--- filtermods-$KernelVer.log --- >8" echo "8< --- modules.dep ---" cat $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.dep echo "--- modules.dep --- >8" exit 1 fi create_module_file_list "kernel" ../modules-core.list ../kernel${Variant:+-${Variant}}-modules-core.list 1 0 create_module_file_list "kernel" ../modules.list ../kernel${Variant:+-${Variant}}-modules.list 0 0 create_module_file_list "internal" ../modules-internal.list ../kernel${Variant:+-${Variant}}-modules-internal.list 0 1 create_module_file_list "kernel" ../modules-extra.list ../kernel${Variant:+-${Variant}}-modules-extra.list 0 1 %if 0%{!?fedora:1} create_module_file_list "partner" ../modules-partner.list ../kernel${Variant:+-${Variant}}-modules-partner.list 1 1 %endif fi # $DoModules -eq 1 remove_depmod_files() { # remove files that will be auto generated by depmod at rpm -i time pushd $RPM_BUILD_ROOT/lib/modules/$KernelVer/ # in case below list needs to be extended, remember to add a # matching ghost entry in the files section as well rm -f modules.{alias,alias.bin,builtin.alias.bin,builtin.bin} \ modules.{dep,dep.bin,devname,softdep,symbols,symbols.bin,weakdep} popd } # Cleanup %{log_msg "Cleanup build files"} rm -f $RPM_BUILD_ROOT/System.map %{log_msg "Remove depmod files"} remove_depmod_files %if %{with_cross} make -C $RPM_BUILD_ROOT/lib/modules/$KernelVer/build M=scripts clean make -C $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/bpf/resolve_btfids clean sed -i 's/REBUILD_SCRIPTS_FOR_CROSS:=0/REBUILD_SCRIPTS_FOR_CROSS:=1/' $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile %endif # Move the devel headers out of the root file system %{log_msg "Move the devel headers to RPM_BUILD_ROOT"} mkdir -p $RPM_BUILD_ROOT/usr/src/kernels mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir # This is going to create a broken link during the build, but we don't use # it after this point. We need the link to actually point to something # when kernel-devel is installed, and a relative link doesn't work across # the F17 UsrMove feature. ln -sf $DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build %if %{with_debuginfo} # Generate vmlinux.h and put it to kernel-devel path # zfcpdump build does not have btf anymore if [ "$Variant" != "zfcpdump" ]; then %{log_msg "Build the bootstrap bpftool to generate vmlinux.h"} # Build the bootstrap bpftool to generate vmlinux.h BuildBpftool tools/bpf/bpftool/bootstrap/bpftool btf dump file vmlinux format c > $RPM_BUILD_ROOT/$DevelDir/vmlinux.h fi %endif %{log_msg "Cleanup kernel-devel and kernel-debuginfo files"} # prune junk from kernel-devel find $RPM_BUILD_ROOT/usr/src/kernels -name ".*.cmd" -delete # prune junk from kernel-debuginfo find $RPM_BUILD_ROOT/usr/src/kernels -name "*.mod.c" -delete # Red Hat UEFI Secure Boot CA cert, which can be used to authenticate the kernel %{log_msg "Install certs"} mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer %if %{signkernel} install -m 0644 %{secureboot_ca_0} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/kernel-signing-ca.cer %ifarch s390x ppc64le if [ -x /usr/bin/rpm-sign ]; then install -m 0644 %{secureboot_key_0} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/%{signing_key_filename} fi %endif %endif %if 0%{?rhel} # Red Hat IMA code-signing cert, which is used to authenticate package files install -m 0644 %{ima_signing_cert} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/%{ima_cert_name} %endif %if %{signmodules} if [ $DoModules -eq 1 ]; then # Save the signing keys so we can sign the modules in __modsign_install_post cp certs/signing_key.pem certs/signing_key.pem.sign${Variant:++${Variant}} cp certs/signing_key.x509 certs/signing_key.x509.sign${Variant:++${Variant}} %ifarch s390x ppc64le if [ ! -x /usr/bin/rpm-sign ]; then install -m 0644 certs/signing_key.x509.sign${Variant:++${Variant}} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/kernel-signing-ca.cer openssl x509 -in certs/signing_key.pem.sign${Variant:++${Variant}} -outform der -out $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/%{signing_key_filename} chmod 0644 $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/%{signing_key_filename} fi %endif fi %endif %if %{with_gcov} popd %endif } ### # DO it... ### # prepare directories rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/boot mkdir -p $RPM_BUILD_ROOT%{_libexecdir} cd linux-%{KVERREL} %if %{with_debug} %if %{with_realtime} BuildKernel %make_target %kernel_image %{_use_vdso} rt-debug %endif %if %{with_realtime_arm64_64k} BuildKernel %make_target %kernel_image %{_use_vdso} rt-64k-debug %endif %if %{with_automotive} && !%{with_automotive_build} BuildKernel %make_target %kernel_image %{_use_vdso} automotive-debug %endif %if %{with_arm64_16k} BuildKernel %make_target %kernel_image %{_use_vdso} 16k-debug %endif %if %{with_arm64_64k} BuildKernel %make_target %kernel_image %{_use_vdso} 64k-debug %endif %if %{with_up} BuildKernel %make_target %kernel_image %{_use_vdso} debug %endif %endif %if %{with_zfcpdump} BuildKernel %make_target %kernel_image %{_use_vdso} zfcpdump %endif %if %{with_arm64_16k_base} BuildKernel %make_target %kernel_image %{_use_vdso} 16k %endif %if %{with_arm64_64k_base} BuildKernel %make_target %kernel_image %{_use_vdso} 64k %endif %if %{with_realtime_base} BuildKernel %make_target %kernel_image %{_use_vdso} rt %endif %if %{with_realtime_arm64_64k_base} BuildKernel %make_target %kernel_image %{_use_vdso} rt-64k %endif %if %{with_automotive_base} BuildKernel %make_target %kernel_image %{_use_vdso} automotive %endif %if %{with_up_base} BuildKernel %make_target %kernel_image %{_use_vdso} %endif %ifnarch noarch i686 %{nobuildarches} %if !%{with_debug} && !%{with_zfcpdump} && !%{with_up} && !%{with_arm64_16k} && !%{with_arm64_64k} && !%{with_realtime} && !%{with_realtime_arm64_64k} && !%{with_automotive} # If only building the user space tools, then initialize the build environment # and some variables so that the various userspace tools can be built. %{log_msg "Initialize userspace tools build environment"} InitBuildVars # Some tests build also modules, and need Module.symvers if ! [[ -e Module.symvers ]] && [[ -f $DevelDir/Module.symvers ]]; then %{log_msg "Found Module.symvers in DevelDir, copying to ."} cp "$DevelDir/Module.symvers" . fi %endif %endif %ifarch aarch64 %global perf_build_extra_opts CORESIGHT=1 %endif %global perf_make \ %{__make} %{?make_opts} EXTRA_CFLAGS="${RPM_OPT_FLAGS}" EXTRA_CXXFLAGS="${RPM_OPT_FLAGS}" LDFLAGS="%{__global_ldflags} -Wl,-E" %{?cross_opts} -C tools/perf V=1 NO_PERF_READ_VDSO32=1 NO_PERF_READ_VDSOX32=1 WERROR=0 NO_LIBUNWIND=1 HAVE_CPLUS_DEMANGLE=1 NO_GTK2=1 NO_STRLCPY=1 NO_BIONIC=1 LIBTRACEEVENT_DYNAMIC=1 %{?perf_build_extra_opts} prefix=%{_prefix} PYTHON=%{__python3} %if %{with_perf} %{log_msg "Build perf"} # perf # make sure check-headers.sh is executable chmod +x tools/perf/check-headers.sh %{perf_make} DESTDIR=$RPM_BUILD_ROOT all %endif %if %{with_libperf} %global libperf_make \ %{__make} %{?make_opts} EXTRA_CFLAGS="${RPM_OPT_FLAGS}" LDFLAGS="%{__global_ldflags}" %{?cross_opts} -C tools/lib/perf V=1 %{log_msg "build libperf"} %{libperf_make} DESTDIR=$RPM_BUILD_ROOT %endif %global tools_make \ CFLAGS="${RPM_OPT_FLAGS}" LDFLAGS="%{__global_ldflags}" EXTRA_CFLAGS="${RPM_OPT_FLAGS}" %{make} %{?make_opts} %ifarch %{cpupowerarchs} # link against in-tree libcpupower for idle state support %global rtla_make %{tools_make} LDFLAGS="%{__global_ldflags} -L../../power/cpupower" INCLUDES="-I../../power/cpupower/lib" # Build libcpupower Python bindings %global libcpupower_python_bindings_make %{tools_make} LDFLAGS="-L%{buildroot}%{_libdir} -lcpupower" %else %global rtla_make %{tools_make} %endif %if %{with_tools} %if %{with_ynl} pushd tools/net/ynl export PIP_CONFIG_FILE=/tmp/pip.config cat < $PIP_CONFIG_FILE [install] no-index = true no-build-isolation = false EOF %{tools_make} %{?_smp_mflags} DESTDIR=$RPM_BUILD_ROOT install popd %endif %ifarch %{cpupowerarchs} # cpupower # make sure version-gen.sh is executable. chmod +x tools/power/cpupower/utils/version-gen.sh %{log_msg "build cpupower"} %{tools_make} %{?_smp_mflags} -C tools/power/cpupower CPUFREQ_BENCH=false DEBUG=false %ifarch x86_64 pushd tools/power/cpupower/debug/x86_64 %{log_msg "build centrino-decode powernow-k8-decode"} %{tools_make} %{?_smp_mflags} centrino-decode powernow-k8-decode popd %endif %ifarch x86_64 pushd tools/power/x86/x86_energy_perf_policy/ %{log_msg "build x86_energy_perf_policy"} %{tools_make} popd pushd tools/power/x86/turbostat %{log_msg "build turbostat"} %{tools_make} popd pushd tools/power/x86/intel-speed-select %{log_msg "build intel-speed-select"} %{tools_make} popd pushd tools/arch/x86/intel_sdsi %{log_msg "build intel_sdsi"} %{tools_make} CFLAGS="${RPM_OPT_FLAGS}" popd %endif %endif pushd tools/thermal/tmon/ %{log_msg "build tmon"} %{tools_make} popd pushd tools/bootconfig/ %{log_msg "build bootconfig"} %{tools_make} popd pushd tools/iio/ %{log_msg "build iio"} %{tools_make} popd pushd tools/gpio/ %{log_msg "build gpio"} %{tools_make} popd # build VM tools pushd tools/mm/ %{log_msg "build slabinfo page_owner_sort"} %{tools_make} slabinfo page_owner_sort popd pushd tools/verification/rv/ %{log_msg "build rv"} %{tools_make} popd pushd tools/tracing/rtla %{log_msg "build rtla"} %{rtla_make} popd %endif #set RPM_VMLINUX_H if [ -f $RPM_BUILD_ROOT/$DevelDir/vmlinux.h ]; then RPM_VMLINUX_H=$RPM_BUILD_ROOT/$DevelDir/vmlinux.h elif [ -f $DevelDir/vmlinux.h ]; then RPM_VMLINUX_H=$DevelDir/vmlinux.h fi echo "${RPM_VMLINUX_H}" > ../vmlinux_h_path %if %{with_selftests} %{log_msg "start build selftests"} # Unfortunately, samples/bpf/Makefile expects that the headers are installed # in the source tree. We installed them previously to $RPM_BUILD_ROOT/usr # but there's no way to tell the Makefile to take them from there. %{log_msg "install headers for selftests"} %{make} %{?_smp_mflags} headers_install # If we re building only tools without kernel, we need to generate config # headers and prepare tree for modules building. The modules_prepare target # will cover both. if [ ! -f include/generated/autoconf.h ]; then %{log_msg "modules_prepare for selftests"} %{make} %{?_smp_mflags} modules_prepare fi # Build BPFtool for samples/bpf if [ ! -f tools/bpf/bpftool/bootstrap/bpftool ]; then BuildBpftool fi %{log_msg "build samples/bpf"} %{make} %{?_smp_mflags} EXTRA_CXXFLAGS="${RPM_OPT_FLAGS}" ARCH=$Arch BPFTOOL=$(pwd)/tools/bpf/bpftool/bootstrap/bpftool V=1 M=samples/bpf/ VMLINUX_H="${RPM_VMLINUX_H}" || true pushd tools/testing/selftests # We need to install here because we need to call make with ARCH set which # doesn't seem possible to do in the install section. %if %{selftests_must_build} force_targets="FORCE_TARGETS=1" %else force_targets="" %endif %{log_msg "main selftests compile"} # Some selftests (especially bpf) do not build with source fortification. # Since selftests are not shipped, disable source fortification for them. %global _fortify_level_bak %{_fortify_level} %undefine _fortify_level export CFLAGS="%{build_cflags}" export CXXFLAGS="%{build_cxxflags}" TARGETS="bpf cgroup kmod mm net net/forwarding net/mptcp net/netfilter net/packetdrill tc-testing memfd drivers/net/hw iommu cachestat pid_namespace rlimits timens pidfd" %{make} %{?_smp_mflags} EXTRA_CFLAGS="${RPM_OPT_FLAGS}" EXTRA_CXXFLAGS="${RPM_OPT_FLAGS}" EXTRA_LDFLAGS="%{__global_ldflags}" ARCH=$Arch V=1 TARGETS="$TARGETS" SKIP_TARGETS="" $force_targets VMLINUX_H="${RPM_VMLINUX_H}" # Restore the original level of source fortification %define _fortify_level %{_fortify_level_bak} export CFLAGS="%{build_cflags}" export CXXFLAGS="%{build_cxxflags}" # We must install all the targets in a single step as each `make install` # command overrides the kselftest-list.txt file. %{make} ARCH=$Arch TARGETS="${TARGETS}" SKIP_TARGETS="" $force_targets INSTALL_PATH=%{buildroot}%{_libexecdir}/kselftests install # 'make install' for bpf is broken and upstream refuses to fix it. # Install the needed files manually. %{log_msg "install selftests"} for dir in bpf bpf/no_alu32 bpf/cpuv4 bpf/progs; do # In ARK, the rpm build continues even if some of the selftests # cannot be built. It's not always possible to build selftests, # as upstream sometimes dependens on too new llvm version or has # other issues. If something did not get built, just skip it. test -d $dir || continue mkdir -p %{buildroot}%{_libexecdir}/kselftests/$dir find $dir -maxdepth 1 \( -type f -o -type l \) \ \( -executable -o -name '*.py' -o -name settings -o \ -name 'btf_dump_test_case_*.c' -o -name '*.ko' -o \ -name '*.o' -exec sh -c 'readelf -h "{}" | grep -q "^ Machine:.*BPF"' \; \) -print0 | \ xargs -0 cp -t %{buildroot}%{_libexecdir}/kselftests/$dir || true done %buildroot_save_unstripped "usr/libexec/kselftests/bpf/test_progs" %buildroot_save_unstripped "usr/libexec/kselftests/bpf/test_progs-no_alu32" %buildroot_save_unstripped "usr/libexec/kselftests/bpf/test_progs-cpuv4" # The urandom_read binary doesn't pass the check-rpaths check and upstream # refuses to fix it. So, we save it to buildroot_unstripped and delete it so it # will be hidden from check-rpaths and will automatically get restored later. %buildroot_save_unstripped "usr/libexec/kselftests/bpf/urandom_read" %buildroot_save_unstripped "usr/libexec/kselftests/bpf/no_alu32/urandom_read" %buildroot_save_unstripped "usr/libexec/kselftests/bpf/cpuv4/urandom_read" rm -f %{buildroot}/usr/libexec/kselftests/bpf/urandom_read rm -f %{buildroot}/usr/libexec/kselftests/bpf/no_alu32/urandom_read rm -f %{buildroot}/usr/libexec/kselftests/bpf/cpuv4/urandom_read # Copy bpftool to kselftests so selftests is packaged with # the full bpftool instead of bootstrap bpftool cp ./bpf/tools/sbin/bpftool %{buildroot}%{_libexecdir}/kselftests/bpf/bpftool popd %{log_msg "end build selftests"} %endif %if %{with_doc} %{log_msg "start install docs"} # Make the HTML pages. %{log_msg "build html docs"} %{__make} PYTHON=/usr/bin/python3 htmldocs || %{doc_build_fail} # sometimes non-world-readable files sneak into the kernel source tree chmod -R a=rX Documentation find Documentation -type d | xargs chmod u+w %{log_msg "end install docs"} %endif # Module signing (modsign) # # This must be run _after_ find-debuginfo.sh runs, otherwise that will strip # the signature off of the modules. # # Don't sign modules for the zfcpdump variant as it is monolithic. %define __modsign_install_post \ if [ "%{signmodules}" -eq "1" ]; then \ %{log_msg "Signing kernel modules ..."} \ modules_dirs="$(shopt -s nullglob; echo $RPM_BUILD_ROOT/lib/modules/%{KVERREL}*)" \ for modules_dir in $modules_dirs; do \ variant_suffix="${modules_dir#$RPM_BUILD_ROOT/lib/modules/%{KVERREL}}" \ [ "$variant_suffix" == "+zfcpdump" ] && continue \ %{log_msg "Signing modules for %{KVERREL}${variant_suffix}"} \ %{modsign_cmd} certs/signing_key.pem.sign${variant_suffix} certs/signing_key.x509.sign${variant_suffix} $modules_dir/ \ done \ fi \ if [ "%{zipmodules}" -eq "1" ]; then \ %{log_msg "Compressing kernel modules ..."} \ find $RPM_BUILD_ROOT/lib/modules/ -type f -name '*.ko' | xargs -n 16 -P${RPM_BUILD_NCPUS} -r %compression %compression_flags; \ fi \ %{nil} ### ### Special hacks for debuginfo subpackages. ### # This macro is used by %%install, so we must redefine it before that. %define debug_package %{nil} %if %{with_debuginfo} %ifnarch noarch %{nobuildarches} %global __debug_package 1 %files -f debugfiles.list debuginfo-common-%{_target_cpu} %endif %endif # We don't want to package debuginfo for self-tests and samples but # we have to delete them to avoid an error messages about unpackaged # files. # Delete the debuginfo for kernel-devel files %define __remove_unwanted_dbginfo_install_post \ if [ "%{with_selftests}" -ne "0" ]; then \ rm -rf $RPM_BUILD_ROOT/usr/lib/debug/usr/libexec/ksamples; \ rm -rf $RPM_BUILD_ROOT/usr/lib/debug/usr/libexec/kselftests; \ fi \ rm -rf $RPM_BUILD_ROOT/usr/lib/debug/usr/src; \ %{nil} # Make debugedit and gdb-add-index use target versions of tools # when cross-compiling. This is supported since debugedit-5.1-5.fc42 # https://inbox.sourceware.org/debugedit/20250220153858.963312-1-mark@klomp.org/ %if %{with_cross} %define __override_target_tools_for_debugedit \ export OBJCOPY=%{_build_arch}-linux-gnu-objcopy \ export NM=%{_build_arch}-linux-gnu-nm \ export READELF=%{_build_arch}-linux-gnu-readelf \ %{nil} %endif # # Disgusting hack alert! We need to ensure we sign modules *after* all # invocations of strip occur, which is in __debug_install_post if # find-debuginfo.sh runs, and __os_install_post if not. # %define __spec_install_post \ %{?__override_target_tools_for_debugedit:%{__override_target_tools_for_debugedit}}\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{__remove_unwanted_dbginfo_install_post}\ %{__restore_unstripped_root_post}\ %{__modsign_install_post} ### ### install ### %install cd linux-%{KVERREL} # re-define RPM_VMLINUX_H, because it doesn't carry over from %build RPM_VMLINUX_H="$(cat ../vmlinux_h_path)" %if %{with_doc} docdir=$RPM_BUILD_ROOT%{_datadir}/doc/kernel-doc-%{specversion}-%{pkgrelease} # copy the source over mkdir -p $docdir tar -h -f - --exclude=man --exclude='.*' -c Documentation | tar xf - -C $docdir cat %{SOURCE2} | xz > $docdir/kernel.changelog.xz chmod 0644 $docdir/kernel.changelog.xz # with_doc %endif # We have to do the headers install before the tools install because the # kernel headers_install will remove any header files in /usr/include that # it doesn't install itself. %if %{with_headers} # Install kernel headers %{__make} ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install find $RPM_BUILD_ROOT/usr/include \ \( -name .install -o -name .check -o \ -name ..install.cmd -o -name ..check.cmd \) -delete %endif %if %{with_cross_headers} HDR_ARCH_LIST='arm64 powerpc s390 x86 riscv' mkdir -p $RPM_BUILD_ROOT/usr/tmp-headers for arch in $HDR_ARCH_LIST; do mkdir $RPM_BUILD_ROOT/usr/tmp-headers/arch-${arch} %{__make} ARCH=${arch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr/tmp-headers/arch-${arch} headers_install done find $RPM_BUILD_ROOT/usr/tmp-headers \ \( -name .install -o -name .check -o \ -name ..install.cmd -o -name ..check.cmd \) -delete # Copy all the architectures we care about to their respective asm directories for arch in $HDR_ARCH_LIST ; do mkdir -p $RPM_BUILD_ROOT/usr/${arch}-linux-gnu/include mv $RPM_BUILD_ROOT/usr/tmp-headers/arch-${arch}/include/* $RPM_BUILD_ROOT/usr/${arch}-linux-gnu/include/ done rm -rf $RPM_BUILD_ROOT/usr/tmp-headers %endif %if %{with_kernel_abi_stablelists} # kabi directory INSTALL_KABI_PATH=$RPM_BUILD_ROOT/lib/modules/ mkdir -p $INSTALL_KABI_PATH # install kabi releases directories tar -xvf %{SOURCE300} -C $INSTALL_KABI_PATH # with_kernel_abi_stablelists %endif %if %{with_perf} # perf tool binary and supporting scripts/binaries %{perf_make} DESTDIR=$RPM_BUILD_ROOT lib=%{_lib} install-bin # remove the 'trace' symlink. rm -f %{buildroot}%{_bindir}/trace # For both of the below, yes, this should be using a macro but right now # it's hard coded and we don't actually want it anyway right now. # Whoever wants examples can fix it up! # remove examples rm -rf %{buildroot}/usr/lib/perf/examples rm -rf %{buildroot}/usr/lib/perf/include # python-perf extension %{perf_make} DESTDIR=$RPM_BUILD_ROOT install-python_ext # perf man pages (note: implicit rpm magic compresses them later) mkdir -p %{buildroot}/%{_mandir}/man1 %{perf_make} DESTDIR=$RPM_BUILD_ROOT install-man # remove any tracevent files, eg. its plugins still gets built and installed, # even if we build against system's libtracevent during perf build (by setting # LIBTRACEEVENT_DYNAMIC=1 above in perf_make macro). Those files should already # ship with libtraceevent package. rm -rf %{buildroot}%{_libdir}/traceevent %endif %if %{with_libperf} %{libperf_make} DESTDIR=%{buildroot} prefix=%{_prefix} libdir=%{_libdir} install install_headers # This is installed on some arches and we don't want to ship it rm -rf %{buildroot}%{_libdir}/libperf.a %endif %if %{with_tools} %ifarch %{cpupowerarchs} %{make} -C tools/power/cpupower DESTDIR=$RPM_BUILD_ROOT libdir=%{_libdir} mandir=%{_mandir} CPUFREQ_BENCH=false install %find_lang cpupower mv cpupower.lang ../ %ifarch x86_64 pushd tools/power/cpupower/debug/x86_64 install -m755 centrino-decode %{buildroot}%{_bindir}/centrino-decode install -m755 powernow-k8-decode %{buildroot}%{_bindir}/powernow-k8-decode popd %endif chmod 0755 %{buildroot}%{_libdir}/libcpupower.so* %{log_msg "Build libcpupower Python bindings"} pushd tools/power/cpupower/bindings/python %{libcpupower_python_bindings_make} %{log_msg "Install libcpupower Python bindings"} %{make} INSTALL_DIR=$RPM_BUILD_ROOT%{python3_sitearch} install popd %endif %ifarch x86_64 mkdir -p %{buildroot}%{_mandir}/man8 pushd tools/power/x86/x86_energy_perf_policy %{tools_make} DESTDIR=%{buildroot} install popd pushd tools/power/x86/turbostat %{tools_make} DESTDIR=%{buildroot} install popd pushd tools/power/x86/intel-speed-select %{tools_make} DESTDIR=%{buildroot} install popd pushd tools/arch/x86/intel_sdsi %{tools_make} CFLAGS="${RPM_OPT_FLAGS}" DESTDIR=%{buildroot} install popd %endif pushd tools/thermal/tmon %{tools_make} INSTALL_ROOT=%{buildroot} install popd pushd tools/bootconfig %{tools_make} DESTDIR=%{buildroot} install popd pushd tools/iio %{tools_make} DESTDIR=%{buildroot} install popd pushd tools/gpio %{tools_make} DESTDIR=%{buildroot} install popd install -m644 -D %{SOURCE2002} %{buildroot}%{_sysconfdir}/logrotate.d/kvm_stat pushd tools/kvm/kvm_stat %{__make} INSTALL_ROOT=%{buildroot} install-tools %{__make} INSTALL_ROOT=%{buildroot} install-man install -m644 -D kvm_stat.service %{buildroot}%{_unitdir}/kvm_stat.service popd # install VM tools pushd tools/mm/ install -m755 slabinfo %{buildroot}%{_bindir}/slabinfo install -m755 page_owner_sort %{buildroot}%{_bindir}/page_owner_sort popd pushd tools/verification/rv/ %{tools_make} DESTDIR=%{buildroot} install popd pushd tools/tracing/rtla/ %{tools_make} DESTDIR=%{buildroot} install rm -f %{buildroot}%{_bindir}/hwnoise rm -f %{buildroot}%{_bindir}/osnoise rm -f %{buildroot}%{_bindir}/timerlat (cd %{buildroot} ln -sf rtla ./%{_bindir}/hwnoise ln -sf rtla ./%{_bindir}/osnoise ln -sf rtla ./%{_bindir}/timerlat ) popd %endif %if %{with_selftests} pushd samples install -d %{buildroot}%{_libexecdir}/ksamples # install bpf samples pushd bpf install -d %{buildroot}%{_libexecdir}/ksamples/bpf find -type f -executable -exec install -m755 {} %{buildroot}%{_libexecdir}/ksamples/bpf \; install -m755 *.sh %{buildroot}%{_libexecdir}/ksamples/bpf # test_lwt_bpf.sh compiles test_lwt_bpf.c when run; this works only from the # kernel tree. Just remove it. rm %{buildroot}%{_libexecdir}/ksamples/bpf/test_lwt_bpf.sh install -m644 *_kern.o %{buildroot}%{_libexecdir}/ksamples/bpf || true install -m644 tcp_bpf.readme %{buildroot}%{_libexecdir}/ksamples/bpf popd # install pktgen samples pushd pktgen install -d %{buildroot}%{_libexecdir}/ksamples/pktgen find . -type f -executable -exec install -m755 {} %{buildroot}%{_libexecdir}/ksamples/pktgen/{} \; find . -type f ! -executable -exec install -m644 {} %{buildroot}%{_libexecdir}/ksamples/pktgen/{} \; popd popd # install mm selftests pushd tools/testing/selftests/mm find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/mm/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/mm/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/mm/{} \; popd # install cgroup selftests pushd tools/testing/selftests/cgroup find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/cgroup/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/cgroup/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/cgroup/{} \; popd # install drivers/net selftests pushd tools/testing/selftests/drivers/net find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/drivers/net/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/{} \; popd # install drivers/net/mlxsw selftests pushd tools/testing/selftests/drivers/net/mlxsw find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/drivers/net/mlxsw/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/mlxsw/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/mlxsw/{} \; popd # install drivers/net/hw selftests pushd tools/testing/selftests/drivers/net/hw find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/drivers/net/hw/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/hw/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/hw/{} \; popd # install drivers/net/netdevsim selftests pushd tools/testing/selftests/drivers/net/netdevsim find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/drivers/net/netdevsim/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/netdevsim/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/netdevsim/{} \; popd # install drivers/net/bonding selftests pushd tools/testing/selftests/drivers/net/bonding find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/drivers/net/bonding/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/bonding/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/bonding/{} \; popd # install net/forwarding selftests pushd tools/testing/selftests/net/forwarding find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/net/forwarding/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/net/forwarding/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/net/forwarding/{} \; popd # install net/mptcp selftests pushd tools/testing/selftests/net/mptcp find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/net/mptcp/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/net/mptcp/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/net/mptcp/{} \; popd # install tc-testing selftests pushd tools/testing/selftests/tc-testing find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/tc-testing/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/tc-testing/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/tc-testing/{} \; popd # install net/netfilter selftests pushd tools/testing/selftests/net/netfilter find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/net/netfilter/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/net/netfilter/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/net/netfilter/{} \; popd # install net/packetdrill selftests pushd tools/testing/selftests/net/packetdrill find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/net/packetdrill/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/net/packetdrill/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/net/packetdrill/{} \; popd # install memfd selftests pushd tools/testing/selftests/memfd find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/memfd/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/memfd/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/memfd/{} \; popd # install iommu selftests pushd tools/testing/selftests/iommu find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/iommu/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/iommu/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/iommu/{} \; popd # install rlimits selftests pushd tools/testing/selftests/rlimits find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/rlimits/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/rlimits/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/rlimits/{} \; popd # install pid_namespace selftests pushd tools/testing/selftests/pid_namespace find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/pid_namespace/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/pid_namespace/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/pid_namespace/{} \; popd # install timens selftests pushd tools/testing/selftests/timens find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/timens/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/timens/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/timens/{} \; popd # install pidfd selftests pushd tools/testing/selftests/pidfd find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/pidfd/{} \; find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/pidfd/{} \; find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/pidfd/{} \; popd %endif ### ### clean ### ### ### scripts ### %if %{with_tools} %post -n %{package_name}-tools-libs /sbin/ldconfig %postun -n %{package_name}-tools-libs /sbin/ldconfig %endif # # This macro defines a %%post script for a kernel*-devel package. # %%kernel_devel_post [] # Note we don't run hardlink if ostree is in use, as ostree is # a far more sophisticated hardlink implementation. # https://github.com/projectatomic/rpm-ostree/commit/58a79056a889be8814aa51f507b2c7a4dccee526 # # The deletion of *.hardlink-temporary files is a temporary workaround # for this bug in the hardlink binary (fixed in util-linux 2.38): # https://github.com/util-linux/util-linux/issues/1602 # %define kernel_devel_post() \ %{expand:%%post %{?1:%{1}-}devel}\ if [ -f /etc/sysconfig/kernel ]\ then\ . /etc/sysconfig/kernel || exit $?\ fi\ if [ "$HARDLINK" != "no" -a -x /usr/bin/hardlink -a ! -e /run/ostree-booted ] \ then\ (cd /usr/src/kernels/%{KVERREL}%{?1:+%{1}} &&\ /usr/bin/find . -type f | while read f; do\ hardlink -c /usr/src/kernels/*%{?dist}.*/$f $f > /dev/null\ done;\ /usr/bin/find /usr/src/kernels -type f -name '*.hardlink-temporary' -delete\ )\ fi\ %if %{with_cross}\ echo "Building scripts and resolve_btfids"\ env --unset=ARCH make -C /usr/src/kernels/%{KVERREL}%{?1:+%{1}} prepare_after_cross\ %endif\ %{nil} # # This macro defines a %%post script for a kernel*-modules-extra package. # It also defines a %%postun script that does the same thing. # %%kernel_modules_extra_post [] # %define kernel_modules_extra_post() \ %{expand:%%post %{?1:%{1}-}modules-extra}\ /sbin/depmod -a %{KVERREL}%{?1:+%{1}}\ %{nil}\ %{expand:%%postun %{?1:%{1}-}modules-extra}\ /sbin/depmod -a %{KVERREL}%{?1:+%{1}}\ %{nil} # # This macro defines a %%post script for a kernel*-modules-internal package. # It also defines a %%postun script that does the same thing. # %%kernel_modules_internal_post [] # %define kernel_modules_internal_post() \ %{expand:%%post %{?1:%{1}-}modules-internal}\ /sbin/depmod -a %{KVERREL}%{?1:+%{1}}\ %{nil}\ %{expand:%%postun %{?1:%{1}-}modules-internal}\ /sbin/depmod -a %{KVERREL}%{?1:+%{1}}\ %{nil} # # This macro defines a %%post script for a kernel*-modules-partner package. # It also defines a %%postun script that does the same thing. # %%kernel_modules_partner_post [] # %define kernel_modules_partner_post() \ %{expand:%%post %{?1:%{1}-}modules-partner}\ /sbin/depmod -a %{KVERREL}%{?1:+%{1}}\ %{nil}\ %{expand:%%postun %{?1:%{1}-}modules-partner}\ /sbin/depmod -a %{KVERREL}%{?1:+%{1}}\ %{nil} # # This macro defines a %%post script for a kernel*-modules package. # It also defines a %%postun script that does the same thing. # %%kernel_modules_post [] # %define kernel_modules_post() \ %{expand:%%post %{?1:%{1}-}modules}\ /sbin/depmod -a %{KVERREL}%{?1:+%{1}}\ if [ ! -f %{_localstatedir}/lib/rpm-state/%{name}/installing_core_%{KVERREL}%{?1:+%{1}} ]; then\ mkdir -p %{_localstatedir}/lib/rpm-state/%{name}\ touch %{_localstatedir}/lib/rpm-state/%{name}/need_to_run_dracut_%{KVERREL}%{?1:+%{1}}\ fi\ %{nil}\ %{expand:%%postun %{?1:%{1}-}modules}\ /sbin/depmod -a %{KVERREL}%{?1:+%{1}}\ %{nil}\ %{expand:%%posttrans %{?1:%{1}-}modules}\ if [ -f %{_localstatedir}/lib/rpm-state/%{name}/need_to_run_dracut_%{KVERREL}%{?1:+%{1}} ]; then\ rm -f %{_localstatedir}/lib/rpm-state/%{name}/need_to_run_dracut_%{KVERREL}%{?1:+%{1}}\ echo "Running: dracut -f --kver %{KVERREL}%{?1:+%{1}}"\ dracut -f --kver "%{KVERREL}%{?1:+%{1}}" || exit $?\ fi\ %{nil} # # This macro defines a %%post script for a kernel*-modules-core package. # %%kernel_modules_core_post [] # %define kernel_modules_core_post() \ %{expand:%%posttrans %{?1:%{1}-}modules-core}\ /sbin/depmod -a %{KVERREL}%{?1:+%{1}}\ %{nil} # This macro defines a %%posttrans script for a kernel package. # %%kernel_variant_posttrans [-v ] [-u uki-suffix] # More text can follow to go at the end of this variant's %%post. # %define kernel_variant_posttrans(v:u:) \ %{expand:%%posttrans %{?-v:%{-v*}-}%{!?-u*:core}%{?-u*:uki-%{-u*}}}\ %if 0%{!?fedora:1}\ %if !%{with_automotive}\ if [ -x %{_sbindir}/weak-modules ]\ then\ %{_sbindir}/weak-modules --add-kernel %{KVERREL}%{?-v:+%{-v*}} || exit $?\ fi\ %endif\ %endif\ rm -f %{_localstatedir}/lib/rpm-state/%{name}/installing_core_%{KVERREL}%{?-v:+%{-v*}}\ /bin/kernel-install add %{KVERREL}%{?-v:+%{-v*}} /lib/modules/%{KVERREL}%{?-v:+%{-v*}}/vmlinuz%{?-u:-%{-u*}.efi} || exit $?\ if [[ ! -e "/boot/symvers-%{KVERREL}%{?-v:+%{-v*}}.%compext" ]]; then\ cp "/lib/modules/%{KVERREL}%{?-v:+%{-v*}}/symvers.%compext" "/boot/symvers-%{KVERREL}%{?-v:+%{-v*}}.%compext"\ if command -v restorecon &>/dev/null; then\ restorecon "/boot/symvers-%{KVERREL}%{?-v:+%{-v*}}.%compext"\ fi\ fi\ %{nil} # # This macro defines a %%post script for a kernel package and its devel package. # %%kernel_variant_post [-v ] [-r ] # More text can follow to go at the end of this variant's %%post. # %define kernel_variant_post(v:r:) \ %{expand:%%kernel_devel_post %{?-v*}}\ %{expand:%%kernel_modules_post %{?-v*}}\ %{expand:%%kernel_modules_core_post %{?-v*}}\ %{expand:%%kernel_modules_extra_post %{?-v*}}\ %{expand:%%kernel_modules_internal_post %{?-v*}}\ %if 0%{!?fedora:1}\ %{expand:%%kernel_modules_partner_post %{?-v*}}\ %endif\ %{expand:%%kernel_variant_posttrans %{?-v*:-v %{-v*}}}\ %{expand:%%post %{?-v*:%{-v*}-}core}\ %{-r:\ if [ `uname -i` == "x86_64" -o `uname -i` == "i386" ] &&\ [ -f /etc/sysconfig/kernel ]; then\ /bin/sed -r -i -e 's/^DEFAULTKERNEL=%{-r*}$/DEFAULTKERNEL=kernel%{?-v:-%{-v*}}/' /etc/sysconfig/kernel || exit $?\ fi}\ mkdir -p %{_localstatedir}/lib/rpm-state/%{name}\ touch %{_localstatedir}/lib/rpm-state/%{name}/installing_core_%{KVERREL}%{?-v:+%{-v*}}\ %{nil} # # This macro defines a %%preun script for a kernel package. # %%kernel_variant_preun [-v ] -u [uki-suffix] -e # Add kernel-install's --entry-type=type1|type2|all option (if supported) to limit removal # to a specific boot entry type. # %define kernel_variant_preun(v:u:e) \ %{expand:%%preun %{?-v:%{-v*}-}%{!?-u*:core}%{?-u*:uki-%{-u*}}}\ entry_type=""\ %{-e: \ /bin/kernel-install --help|grep -q -- '--entry-type=' &&\ entry_type="--entry-type %{!?-u:type1}%{?-u:type2}" \ }\ /bin/kernel-install remove %{KVERREL}%{?-v:+%{-v*}} $entry_type || exit $?\ %if !%{with_automotive}\ if [ -x %{_sbindir}/weak-modules ]\ then\ %{_sbindir}/weak-modules --remove-kernel %{KVERREL}%{?-v:+%{-v*}} || exit $?\ fi\ %endif\ %{nil} %if %{with_up_base} && %{with_efiuki} %kernel_variant_posttrans -u virt %kernel_variant_preun -u virt -e %endif %if %{with_up_base} %kernel_variant_preun -e %kernel_variant_post %endif %if %{with_zfcpdump} %kernel_variant_preun -v zfcpdump %kernel_variant_post -v zfcpdump %endif %if %{with_up} && %{with_debug} && %{with_efiuki} %kernel_variant_posttrans -v debug -u virt %kernel_variant_preun -v debug -u virt -e %endif %if %{with_up} && %{with_debug} %kernel_variant_preun -v debug -e %kernel_variant_post -v debug %endif %if %{with_arm64_16k_base} %kernel_variant_preun -v 16k -e %kernel_variant_post -v 16k %endif %if %{with_debug} && %{with_arm64_16k} %kernel_variant_preun -v 16k-debug -e %kernel_variant_post -v 16k-debug %endif %if %{with_arm64_16k} && %{with_debug} && %{with_efiuki} %kernel_variant_posttrans -v 16k-debug -u virt %kernel_variant_preun -v 16k-debug -u virt -e %endif %if %{with_arm64_16k_base} && %{with_efiuki} %kernel_variant_posttrans -v 16k -u virt %kernel_variant_preun -v 16k -u virt -e %endif %if %{with_arm64_64k_base} %kernel_variant_preun -v 64k -e %kernel_variant_post -v 64k %endif %if %{with_debug} && %{with_arm64_64k} %kernel_variant_preun -v 64k-debug -e %kernel_variant_post -v 64k-debug %endif %if %{with_arm64_64k} && %{with_debug} && %{with_efiuki} %kernel_variant_posttrans -v 64k-debug -u virt %kernel_variant_preun -v 64k-debug -u virt -e %endif %if %{with_arm64_64k_base} && %{with_efiuki} %kernel_variant_posttrans -v 64k -u virt %kernel_variant_preun -v 64k -u virt -e %endif %if %{with_realtime_base} %kernel_variant_preun -v rt %kernel_variant_post -v rt -r kernel %endif %if %{with_automotive_base} %kernel_variant_preun -v automotive %kernel_variant_post -v automotive -r kernel %endif %if %{with_realtime} && %{with_debug} %kernel_variant_preun -v rt-debug %kernel_variant_post -v rt-debug %endif %if %{with_realtime_arm64_64k_base} %kernel_variant_preun -v rt-64k %kernel_variant_post -v rt-64k %kernel_kvm_post rt-64k %endif %if %{with_debug} && %{with_realtime_arm64_64k} %kernel_variant_preun -v rt-64k-debug %kernel_variant_post -v rt-64k-debug %kernel_kvm_post rt-64k-debug %endif %if %{with_automotive} && %{with_debug} && !%{with_automotive_build} %kernel_variant_preun -v automotive-debug %kernel_variant_post -v automotive-debug %endif ### ### file lists ### %if %{with_headers} %files headers /usr/include/* %exclude %{_includedir}/cpufreq.h %if %{with_ynl} %exclude %{_includedir}/ynl %endif %endif %if %{with_cross_headers} %files cross-headers /usr/*-linux-gnu/include/* %endif %if %{with_kernel_abi_stablelists} %files -n %{package_name}-abi-stablelists /lib/modules/kabi-* %endif %if %{with_kabidw_base} %ifarch x86_64 s390x ppc64 ppc64le aarch64 riscv64 %files kernel-kabidw-base-internal %defattr(-,root,root) /kabidw-base/%{_target_cpu}/* %endif %endif # only some architecture builds need kernel-doc %if %{with_doc} %files doc %defattr(-,root,root) %{_datadir}/doc/kernel-doc-%{specversion}-%{pkgrelease}/Documentation/* %dir %{_datadir}/doc/kernel-doc-%{specversion}-%{pkgrelease}/Documentation %dir %{_datadir}/doc/kernel-doc-%{specversion}-%{pkgrelease} %{_datadir}/doc/kernel-doc-%{specversion}-%{pkgrelease}/kernel.changelog.xz %endif %if %{with_perf} %files -n perf %{_bindir}/perf %{_libdir}/libperf-jvmti.so %dir %{_libexecdir}/perf-core %{_libexecdir}/perf-core/* %{_mandir}/man[1-8]/perf* %{_sysconfdir}/bash_completion.d/perf %doc linux-%{KVERREL}/tools/perf/Documentation/examples.txt %{_docdir}/perf-tip/tips.txt %files -n python3-perf %{python3_sitearch}/perf* %if %{with_debuginfo} %files -f perf-debuginfo.list -n perf-debuginfo %files -f python3-perf-debuginfo.list -n python3-perf-debuginfo %endif # with_perf %endif %if %{with_libperf} %files -n libperf %{_libdir}/libperf.so.0 %{_libdir}/libperf.so.0.0.1 %files -n libperf-devel %{_libdir}/libperf.so %{_libdir}/pkgconfig/libperf.pc %{_includedir}/internal/*.h %{_includedir}/perf/bpf_perf.h %{_includedir}/perf/core.h %{_includedir}/perf/cpumap.h %{_includedir}/perf/perf_dlfilter.h %{_includedir}/perf/event.h %{_includedir}/perf/evlist.h %{_includedir}/perf/evsel.h %{_includedir}/perf/mmap.h %{_includedir}/perf/threadmap.h %{_mandir}/man3/libperf.3.gz %{_mandir}/man7/libperf-counting.7.gz %{_mandir}/man7/libperf-sampling.7.gz %{_docdir}/libperf/examples/sampling.c %{_docdir}/libperf/examples/counting.c %{_docdir}/libperf/html/libperf.html %{_docdir}/libperf/html/libperf-counting.html %{_docdir}/libperf/html/libperf-sampling.html %if %{with_debuginfo} %files -f libperf-debuginfo.list -n libperf-debuginfo %endif # with_libperf %endif %if %{with_tools} %ifnarch %{cpupowerarchs} %files -n %{package_name}-tools %else %files -n %{package_name}-tools -f cpupower.lang %{_bindir}/cpupower %{_datadir}/bash-completion/completions/cpupower %ifarch x86_64 %{_bindir}/centrino-decode %{_bindir}/powernow-k8-decode %endif %{_mandir}/man[1-8]/cpupower* %ifarch x86_64 %{_bindir}/x86_energy_perf_policy %{_mandir}/man8/x86_energy_perf_policy* %{_bindir}/turbostat %{_mandir}/man8/turbostat* %{_bindir}/intel-speed-select %{_sbindir}/intel_sdsi %endif # cpupowerarchs %endif %{_bindir}/tmon %{_bindir}/bootconfig %{_bindir}/iio_event_monitor %{_bindir}/iio_generic_buffer %{_bindir}/lsiio %{_bindir}/lsgpio %{_bindir}/gpio-hammer %{_bindir}/gpio-event-mon %{_bindir}/gpio-watch %{_mandir}/man1/kvm_stat* %{_bindir}/kvm_stat %{_unitdir}/kvm_stat.service %config(noreplace) %{_sysconfdir}/logrotate.d/kvm_stat %{_bindir}/page_owner_sort %{_bindir}/slabinfo %if %{with_ynl} %{_bindir}/ynl* %{_docdir}/ynl %{_datadir}/ynl %{python3_sitelib}/pyynl* %endif %if %{with_debuginfo} %files -f %{package_name}-tools-debuginfo.list -n %{package_name}-tools-debuginfo %endif %files -n %{package_name}-tools-libs %ifarch %{cpupowerarchs} %{_libdir}/libcpupower.so.1 %{_libdir}/libcpupower.so.0.0.1 %endif %files -n %{package_name}-tools-libs-devel %ifarch %{cpupowerarchs} %{_libdir}/libcpupower.so %{_includedir}/cpufreq.h %{_includedir}/cpuidle.h %{_includedir}/powercap.h # libcpupower Python bindings %{python3_sitearch}/_raw_pylibcpupower.so %{python3_sitearch}/raw_pylibcpupower.py %{python3_sitearch}/__pycache__/raw_pylibcpupower* %endif %if %{with_ynl} %{_libdir}/libynl* %{_includedir}/ynl %endif %files -n rtla %{_bindir}/rtla %{_bindir}/hwnoise %{_bindir}/osnoise %{_bindir}/timerlat %{_mandir}/man1/rtla-hwnoise.1.gz %{_mandir}/man1/rtla-osnoise-hist.1.gz %{_mandir}/man1/rtla-osnoise-top.1.gz %{_mandir}/man1/rtla-osnoise.1.gz %{_mandir}/man1/rtla-timerlat-hist.1.gz %{_mandir}/man1/rtla-timerlat-top.1.gz %{_mandir}/man1/rtla-timerlat.1.gz %{_mandir}/man1/rtla.1.gz %files -n rv %{_bindir}/rv %{_mandir}/man1/rv-list.1.gz %{_mandir}/man1/rv-mon-wip.1.gz %{_mandir}/man1/rv-mon-wwnr.1.gz %{_mandir}/man1/rv-mon.1.gz %{_mandir}/man1/rv-mon-sched.1.gz %{_mandir}/man1/rv.1.gz # with_tools %endif %if %{with_selftests} %files selftests-internal %{_libexecdir}/ksamples %{_libexecdir}/kselftests %endif # empty meta-package %if %{with_up_base} %ifnarch %nobuildarches noarch %files %endif %endif # This is %%{image_install_path} on an arch where that includes ELF files, # or empty otherwise. %define elf_image_install_path %{?kernel_image_elf:%{image_install_path}} # # This macro defines the %%files sections for a kernel package # and its devel and debuginfo packages. # %%kernel_variant_files [-k vmlinux] # %define kernel_variant_files(k:) \ %if %{2}\ %{expand:%%files %{?1:-f kernel-%{?3:%{3}-}ldsoconf.list} %{?3:%{3}-}core}\ %{!?_licensedir:%global license %%doc}\ %%license linux-%{KVERREL}/COPYING-%{version}-%{release}\ /lib/modules/%{KVERREL}%{?3:+%{3}}/%{?-k:%{-k*}}%{!?-k:vmlinuz}\ %ghost /%{image_install_path}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-%{KVERREL}%{?3:+%{3}}\ /lib/modules/%{KVERREL}%{?3:+%{3}}/.vmlinuz.hmac \ %ghost /%{image_install_path}/.vmlinuz-%{KVERREL}%{?3:+%{3}}.hmac \ %ifarch aarch64 riscv64\ /lib/modules/%{KVERREL}%{?3:+%{3}}/dtb \ %ghost /%{image_install_path}/dtb-%{KVERREL}%{?3:+%{3}} \ %endif\ /lib/modules/%{KVERREL}%{?3:+%{3}}/System.map\ %ghost /boot/System.map-%{KVERREL}%{?3:+%{3}}\ %dir /lib/modules\ %dir /lib/modules/%{KVERREL}%{?3:+%{3}}\ /lib/modules/%{KVERREL}%{?3:+%{3}}/symvers.%compext\ /lib/modules/%{KVERREL}%{?3:+%{3}}/config\ /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.builtin*\ %ghost %attr(0644, root, root) /boot/symvers-%{KVERREL}%{?3:+%{3}}.%compext\ %ghost %attr(0600, root, root) /boot/initramfs-%{KVERREL}%{?3:+%{3}}.img\ %ghost %attr(0644, root, root) /boot/config-%{KVERREL}%{?3:+%{3}}\ %{expand:%%files -f kernel-%{?3:%{3}-}modules-core.list %{?3:%{3}-}modules-core}\ %dir /lib/modules\ %dir /lib/modules/%{KVERREL}%{?3:+%{3}}\ %dir /lib/modules/%{KVERREL}%{?3:+%{3}}/kernel\ /lib/modules/%{KVERREL}%{?3:+%{3}}/build\ /lib/modules/%{KVERREL}%{?3:+%{3}}/source\ /lib/modules/%{KVERREL}%{?3:+%{3}}/updates\ /lib/modules/%{KVERREL}%{?3:+%{3}}/weak-updates\ /lib/modules/%{KVERREL}%{?3:+%{3}}/systemtap\ %{_datadir}/doc/kernel-keys/%{KVERREL}%{?3:+%{3}}\ %if %{1}\ /lib/modules/%{KVERREL}%{?3:+%{3}}/vdso\ %endif\ /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.block\ /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.drm\ /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.modesetting\ /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.networking\ /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.order\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.alias\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.alias.bin\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.builtin.alias.bin\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.builtin.bin\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.dep\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.dep.bin\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.devname\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.softdep\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.symbols\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.symbols.bin\ %ghost %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.weakdep\ %{expand:%%files -f kernel-%{?3:%{3}-}modules.list %{?3:%{3}-}modules}\ %{expand:%%files %{?3:%{3}-}devel}\ %defverify(not mtime)\ /usr/src/kernels/%{KVERREL}%{?3:+%{3}}\ %{expand:%%files %{?3:%{3}-}devel-matched}\ %{expand:%%files -f kernel-%{?3:%{3}-}modules-extra.list %{?3:%{3}-}modules-extra}\ %{expand:%%files -f kernel-%{?3:%{3}-}modules-internal.list %{?3:%{3}-}modules-internal}\ %if 0%{!?fedora:1}\ %{expand:%%files -f kernel-%{?3:%{3}-}modules-partner.list %{?3:%{3}-}modules-partner}\ %endif\ %if %{with_debuginfo}\ %ifnarch noarch\ %{expand:%%files -f debuginfo%{?3}.list %{?3:%{3}-}debuginfo}\ %endif\ %endif\ %if %{with_efiuki} && "%{3}" != "rt" && "%{3}" != "rt-debug" && "%{3}" != "rt-64k" && "%{3}" != "rt-64k-debug"\ %{expand:%%files %{?3:%{3}-}uki-virt}\ %dir /lib/modules\ %dir /lib/modules/%{KVERREL}%{?3:+%{3}}\ /lib/modules/%{KVERREL}%{?3:+%{3}}/System.map\ /lib/modules/%{KVERREL}%{?3:+%{3}}/symvers.%compext\ /lib/modules/%{KVERREL}%{?3:+%{3}}/config\ /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.builtin*\ %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-virt.efi\ %attr(0644, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/.%{?-k:%{-k*}}%{!?-k:vmlinuz}-virt.efi.hmac\ %ghost /%{image_install_path}/efi/EFI/Linux/%{?-k:%{-k*}}%{!?-k:*}-%{KVERREL}%{?3:+%{3}}.efi\ %{expand:%%files %{?3:%{3}-}uki-virt-addons}\ %dir /lib/modules/%{KVERREL}%{?3:+%{3}}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-virt.efi.extra.d/ \ /lib/modules/%{KVERREL}%{?3:+%{3}}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-virt.efi.extra.d/*.addon.efi\ %endif\ %if %{?3:1} %{!?3:0}\ %{expand:%%files %{3}}\ %endif\ %if %{with_gcov}\ %ifnarch %nobuildarches noarch\ %{expand:%%files -f kernel-%{?3:%{3}-}gcov.list %{?3:%{3}-}gcov}\ %endif\ %endif\ %endif\ %{nil} %kernel_variant_files %{_use_vdso} %{with_up_base} %if %{with_up} %kernel_variant_files %{_use_vdso} %{with_debug} debug %endif %if %{with_arm64_16k} %kernel_variant_files %{_use_vdso} %{with_debug} 16k-debug %endif %if %{with_arm64_64k} %kernel_variant_files %{_use_vdso} %{with_debug} 64k-debug %endif %kernel_variant_files %{_use_vdso} %{with_realtime_base} rt %if %{with_realtime} %kernel_variant_files %{_use_vdso} %{with_debug} rt-debug %endif %kernel_variant_files %{_use_vdso} %{with_automotive_base} automotive %if %{with_automotive} && !%{with_automotive_build} %kernel_variant_files %{_use_vdso} %{with_debug} automotive-debug %endif %if %{with_debug_meta} %files debug %files debug-core %files debug-devel %files debug-devel-matched %files debug-modules %files debug-modules-core %files debug-modules-extra %if %{with_arm64_16k} %files 16k-debug %files 16k-debug-core %files 16k-debug-devel %files 16k-debug-devel-matched %files 16k-debug-modules %files 16k-debug-modules-extra %endif %if %{with_arm64_64k} %files 64k-debug %files 64k-debug-core %files 64k-debug-devel %files 64k-debug-devel-matched %files 64k-debug-modules %files 64k-debug-modules-extra %endif %endif %kernel_variant_files %{_use_vdso} %{with_zfcpdump} zfcpdump %kernel_variant_files %{_use_vdso} %{with_arm64_16k_base} 16k %kernel_variant_files %{_use_vdso} %{with_arm64_64k_base} 64k %kernel_variant_files %{_use_vdso} %{with_realtime_arm64_64k_base} rt-64k %if %{with_realtime_arm64_64k} %kernel_variant_files %{_use_vdso} %{with_debug} rt-64k-debug %endif %ifnarch noarch %{nobuildarches} %files modules-extra-matched %endif # plz don't put in a version string unless you're going to tag # and build. # # %changelog * Wed Apr 15 2026 Enric Balletbo i Serra [6.12.0-221.erofs.el10iv] - fixup (Enric Balletbo i Serra) - fixup (Enric Balletbo i Serra) - init: support mixed cpio/erofs initrd layouts (Alberto Ruiz) - init: mount erofs initrd segments and assemble overlayfs root (Alberto Ruiz) - init: implement initrd segment scanning and erofs detection (Alberto Ruiz) - init: add Kconfig and data types for erofs initrd support (Alberto Ruiz) - init: add read-only RAM block device for initrd (Alberto Ruiz) - mfd: intel-lpss: Add Intel Nova Lake-S PCI IDs (Steve Best) [RHEL-117325] - tools/power cpupower: Show C0 in idle-info dump (Steve Best) [RHEL-133086] - tools/power cpupower: Reset errno before strtoull() (Steve Best) [RHEL-133086] - tools/cpupower: Use strcspn() to strip trailing newline (Steve Best) [RHEL-133086] - tools/cpupower: Fix inverted APERF capability check (Steve Best) [RHEL-133086] - cpupower: idle_monitor: fix incorrect value logged after stop (Steve Best) [RHEL-133086] - tools/cpupower: Fix incorrect size in cpuidle_state_disable() (Steve Best) [RHEL-133086] - tools/cpupower: fix error return value in cpupower_write_sysfs() (Steve Best) [RHEL-133086] - iio: pressure: bmp280: Fix bmp085 symbol namespace literal (Steve Dunnagan) [RHEL-120353] - iio: buffer: deprecated iio_push_to_buffers_with_timestamp() (Steve Dunnagan) [RHEL-120353] - iio: buffer: document iio_push_to_buffers_with_ts() (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: correct meas_time_us calculation (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use gpiod_set_value_cansleep() (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Remove noisy dev_info() (Steve Dunnagan) [RHEL-120353] - iio: pressure: Remove redundant pm_runtime_mark_last_busy() calls (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use IS_ERR() in bmp280_common_probe() (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280-spi: remove bits_per_word = 8 (Steve Dunnagan) [RHEL-120353] - iio: pressure: Use iio_push_to_buffers_with_ts() to provide length for runtime checks. (Steve Dunnagan) [RHEL-120353] - iio: introduced iio_push_to_buffers_with_ts() that takes a data_total_len argument. (Steve Dunnagan) [RHEL-120353] - iio: core: mark scan_timestamp as __private (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Make time vars intuitive and move to fsleep (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use sizeof() for denominator (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Move bmp085 interrupt to new configuration (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Add data ready trigger support (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use sleep and forced mode for oneshot captures (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Fix uninitialized variable (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use char instead of s32 for data buffer (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use unsigned type for raw values (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Remove config error check for IIR filter updates (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Add support for bmp280 soft reset (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use bulk read for humidity calibration data (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: use irq_get_trigger_type() (Steve Dunnagan) [RHEL-120353] - iommufd: Report ATS not supported status via IOMMU_GET_HW_INFO (Jerry Snitselaar) [RHEL-160188] - iommu: Add device ATS supported capability (Jerry Snitselaar) [RHEL-160188] - redhat/configs: automotive: enable CONFIG_INIT_STACK_ALL_ZERO (Joe Simmons-Talbott) [RHEL-164033] - watchdog: sbsa: Adjust keepalive timeout to avoid MediaTek WS0 race condition (Jiri Benc) [RHEL-163405] - redhat: allow genlog to exclude commits and issues based on ref pattern (Jan Stancek) - gpio: tegra186: Support multi-socket devices (Charles Mirabile) [RHEL-151653] - gpio: tegra186: Simplify GPIO line name prefix handling (Charles Mirabile) [RHEL-151653] - x86/CPU/AMD: Add CPUID faulting support (Steve Best) [RHEL-140358] - ALSA: update RHEL kconfigs for 6.19 upstream code (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt1011: Use component to get the dapm context in spk_mode_put (Jaroslav Kysela) [RHEL-152846] - Revert "ALSA: usb: Increase volume range that triggers a warning" (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_xcvr: Revert fix missing lock in fsl_xcvr_mode_put() (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Enable headset mic for Acer Nitro 5 (Jaroslav Kysela) [RHEL-152846] - ASoC: cs4271: Fix resource leak in cs4271_soc_resume() (Jaroslav Kysela) [RHEL-152846] - dt-bindings: mfd: da9055: Fix dead link to codec binding (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_xcvr: fix missing lock in fsl_xcvr_mode_put() (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: ti,tlv320aic3x: Add compatible string ti,tlv320aic23 (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: fix memory leak in acp3x pdm dma ops (Jaroslav Kysela) [RHEL-152846] {CVE-2026-23190} - ALSA: usb-audio: fix broken logic in snd_audigy2nx_led_update() (Jaroslav Kysela) [RHEL-152846] - ASoC: rt1320: fix intermittent no-sound issue (Jaroslav Kysela) [RHEL-152846] - ASoC: SOF: Intel: use hdev->info.link_mask directly (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6asm: drop DSP responses for closed data streams (Jaroslav Kysela) [RHEL-152846] - firmware: cs_dsp: rate-limit log messages in KUnit builds (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: yc: Add quirk for HP 200 G2a 16 (Jaroslav Kysela) [RHEL-152846] - ASoC: cs42l43: Correct handling of 3-pole jack load detection (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: sof_es8336: Add DMI quirk for Huawei BOD-WXX9 (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: sof_es8336: fix headphone GPIO logic inversion (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: yc: Add DMI quirk for Acer TravelMate P216-41-TCO (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add quirk for Inspur S14-G1 (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Really fix headset mic for TongFang X6AR55xU. (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek - fixed speaker no sound (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: ALC269 fixup for Lenovo Yoga Book 9i 13IRU8 audio (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add quirk for Samsung 730QED to fix headphone (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Use the right limit for PCM OOB check (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: yc: Add ASUS ExpertBook PM1503CDA to quirks list (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl: imx-card: Do not force slot width to sample width (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Fix use-after-free in snd_usb_mixer_free() (Jaroslav Kysela) [RHEL-152846] {CVE-2026-23089} - ALSA: hda/realtek: Fix headset mic for TongFang X6AR55xU (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: fsl,sai: Add support for i.MX952 platform (Jaroslav Kysela) [RHEL-152846] - ALSA: ctxfi: Fix potential OOB access in audio mixer handling (Jaroslav Kysela) [RHEL-152846] {CVE-2026-23076} - ALSA: usb-audio: Add delay quirk for MOONDROP Moonriver2 Ti (Jaroslav Kysela) [RHEL-152846] - ALSA: scarlett2: Fix buffer overflow in config retrieval (Jaroslav Kysela) [RHEL-152846] {CVE-2026-23078} - ALSA: usb: Increase volume range that triggers a warning (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/tas2781: Add newly-released HP laptop (Jaroslav Kysela) [RHEL-152846] - ASoC: rt5640: Fix duplicate clock properties in DT binding (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add quirk for HP Pavilion x360 to enable mute LED (Jaroslav Kysela) [RHEL-152846] - ASoC: tlv320adcx140: fix word length (Jaroslav Kysela) [RHEL-152846] - ASoC: tlv320adcx140: Propagate error codes during probe (Jaroslav Kysela) [RHEL-152846] - ASoC: tlv320adcx140: fix null pointer (Jaroslav Kysela) [RHEL-152846] {CVE-2026-23006} - ASoC: tlv320adcx140: invert DRE_ENABLE (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Prevent excessive number of frames (Jaroslav Kysela) [RHEL-152846] {CVE-2026-23208} - ALSA: hda/cirrus_scodec_test: Fix test suite name (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/cirrus_scodec_test: Fix incorrect setup of gpiochip (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add quirk for Asus Zephyrus G14 2025 using CS35L56, fix speakers (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: yc: Fix microphone on ASUS M6500RE (Jaroslav Kysela) [RHEL-152846] - ASoC: tegra: Revert fix for uninitialized flat cache warning in tegra210_ahub (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: rockchip-spdif: Allow "port" node (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: realtek,rt5640: Add missing properties/node (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: realtek,rt5640: Document port node (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: realtek,rt5640: Update jack-detect (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: realtek,rt5640: Document mclk (Jaroslav Kysela) [RHEL-152846] - ASoC: davinci-evm: Fix reference leak in davinci_evm_probe (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/tas2781: Skip UEFI calibration on ASUS ROG Xbox Ally X (Jaroslav Kysela) [RHEL-152846] - ALSA: pcm: Improve the fix for race of buffer access at PCM OSS layer (Jaroslav Kysela) [RHEL-152846] - ASoC: ops: fix pointer types to be big-endian (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: everest,es8316: Add interrupt support (Jaroslav Kysela) [RHEL-152846] - regmap: maple: free entry on mas_store_gfp() failure (Jaroslav Kysela) [RHEL-152846] - ASoC: simple-card-utils: Check device node before overwrite direction (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wsa883x: suppress variant printk (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wsa884x: fix codec initialisation (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wsa881x: fix unnecessary initialisation (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wsa883x: fix unnecessary initialisation (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: add HP Laptop 15s-eq1xxx mute LED quirk (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add quirk for Acer Nitro AN517-55 (Jaroslav Kysela) [RHEL-152846] - ALSA: ac97: fix a double free in snd_ac97_controller_register() (Jaroslav Kysela) [RHEL-152846] {CVE-2025-71192} - ASoC: sun4i-spdif: Add missing kerneldoc fields for sun4i_spdif_quirks (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: pm4125: clean up bind() device reference handling (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd937x: drop bogus container_of() error handling (Jaroslav Kysela) [RHEL-152846] - ASoC: SOF: Intel: add -bt tplg suffix if BT is present (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: fix PCI SSID for one of the HP 200 G2i laptop (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl-asoc-card: Use of_property_present() for non-boolean properties (Jaroslav Kysela) [RHEL-152846] - ASoC: rt1320: update VC blind write settings (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_sai: Add missing registers to cache default (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_xcvr: provide regmap names (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_asrc_dma: fix duplicate debugfs directory error (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_easrc: fix duplicate debugfs directory error (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add support for HP Clipper Laptop (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add support for HP Trekker Laptop (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: soc-acpi-intel-nvl-match: Drop rt722 l3 from the match table (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: audioreach: Fix confusing cleanup.h syntax (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6afe: Fix confusing cleanup.h syntax (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6apm: Fix confusing cleanup.h syntax (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6asm: Fix confusing cleanup.h syntax (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6prm: Fix confusing cleanup.h syntax (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: sdm845: set quaternary MI2S codec DAI to I2S format (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: yc: Add quirk for Honor MagicBook X16 2025 (Jaroslav Kysela) [RHEL-152846] - ASoC: tegra: Fix uninitialized flat cache warning in tegra210_ahub (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: enable woofer speakers on Medion NM14LNL (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Reorder USB mode selection quirk (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Update for native DSD support quirks (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Do not expose PCM and DSD on same altsetting unless DoP (Jaroslav Kysela) [RHEL-152846] - ALSA: hda: Remove unnecessary print function dev_err() (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/tas2781: Add new quirk for HP new project (Jaroslav Kysela) [RHEL-152846] - ALSA: hda: cix-ipbloq: Use modern PM ops (Jaroslav Kysela) [RHEL-152846] - soundwire: intel_ace2x: handle multi BPT sections (Jaroslav Kysela) [RHEL-152846] - ALSA: hda: intel-dsp-config: Prefer legacy driver as fallback (Jaroslav Kysela) [RHEL-152846] - soundwire: pass sdw_bpt_section to cdns BPT helpers (Jaroslav Kysela) [RHEL-152846] - soundwire: introduce BPT section (Jaroslav Kysela) [RHEL-152846] - soundwire: qcom: adding support for v3.1.0 (Jaroslav Kysela) [RHEL-152846] - soundwire: qcom: remove unused rd_fifo_depth (Jaroslav Kysela) [RHEL-152846] - soundwire: qcom: deprecate qcom,din/out-ports (Jaroslav Kysela) [RHEL-152846] - soundwire: qcom: prepare for v3.x (Jaroslav Kysela) [RHEL-152846] - soundwire: cadence_master: make frame index trace more readable (Jaroslav Kysela) [RHEL-152846] - soundwire: only compute BPT stream in sdw_compute_dp0_port_params (Jaroslav Kysela) [RHEL-152846] - soundwire: cadence_master: set data_per_frame as frame capability (Jaroslav Kysela) [RHEL-152846] - soundwire: cadence: export sdw_cdns_bpt_find_bandwidth (Jaroslav Kysela) [RHEL-152846] - ASoC: SOF: Intel: export hda_sdw_bpt_get_buf_size_aligment (Jaroslav Kysela) [RHEL-152846] - soundwire: intel_ace2x: add fake frame to BRA read command (Jaroslav Kysela) [RHEL-152846] - soundwire: cadence_master: add fake_size parameter to sdw_cdns_prepare_read_dma_buffer (Jaroslav Kysela) [RHEL-152846] - ALSA: hda: dt-bindings: add CIX IPBLOQ HDA controller support (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/core: add addr_offset field for bus address translation (Jaroslav Kysela) [RHEL-152846] - ALSA: hda: add CIX IPBLOQ HDA controller support (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add support for ASUS UM3406GA (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add support for HP Turbine Laptops (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Initialize status1 to fix uninitialized symbol errors (Jaroslav Kysela) [RHEL-152846] - ASoC: cros_ec_codec: Remove unnecessary selection of CRYPTO (Jaroslav Kysela) [RHEL-152846] - ASoc: qcom: q6afe: fix bad guard conversion (Jaroslav Kysela) [RHEL-152846] - ASoC: rockchip: Fix Wvoid-pointer-to-enum-cast warning (again) (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: cirrus,cs42xx8: Reference common DAI properties (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: Add PCI SSIDs to HP ProBook quirks (Jaroslav Kysela) [RHEL-152846] - ASoC: cs-amp-lib: Revert use of __free(kfree) back to normal C cleanup (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd939x: fix OF node leaks on probe failure (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd938x: fix OF node leaks on probe failure (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd937x: fix OF node leaks on probe failure (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Simplify with usb_endpoint_max_periodic_payload() (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/realtek: fix mute/micmute LEDs don't work for more HP laptops (Jaroslav Kysela) [RHEL-152846] - ALSA: rawmidi: Fix inconsistent indenting warning reported by smatch (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: Modify awinic amplifier dsp read and write functions (Jaroslav Kysela) [RHEL-152846] - ASoC: nau8325: Delete a stray tab (Jaroslav Kysela) [RHEL-152846] - firmware: cs_dsp: Add test cases for client_ops == NULL (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_micfil: Set channel range control (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_micfil: Add default quality for different platforms (Jaroslav Kysela) [RHEL-152846] - ASoC: cs-amp-lib: Use __free(kfree) instead of manual freeing (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: catpt: Do not block the system from suspending (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: catpt: Do not ignore errors on runtime resume (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: catpt: Fix probing order of driver components (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: catpt: Switch to resource_xxx() API (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: catpt: Fix offset checks (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8189: remove unnecessary NULL check (Jaroslav Kysela) [RHEL-152846] - ASoC: tegra: remove Kconfig dependency on TEGRA20_APB_DMA (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Implement jack detection for HP Thunderbolt Dock G2 (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Modularize realtek_add_jack in mixer_quirks (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_xcvr: use dev_err_probe() replacing dev_err() + return (Jaroslav Kysela) [RHEL-152846] - ALSA: ctxfi: Add support for Onkyo SE-300PCIE (OK0010) (Jaroslav Kysela) [RHEL-152846] - ASoC: stm32: sai: clean up probe error path (Jaroslav Kysela) [RHEL-152846] - ALSA: ctxfi: Add support for dedicated RCA switching (Jaroslav Kysela) [RHEL-152846] - ALSA: ctxfi: Add ADC helper functions for GPIO (Jaroslav Kysela) [RHEL-152846] - ALSA: ctxfi: Refactor resource alloc for sparse mappings (Jaroslav Kysela) [RHEL-152846] - ALSA: ctxfi: Use explicit output flag for DAIO resources (Jaroslav Kysela) [RHEL-152846] - ALSA: ctxfi: Add hw parameter to daio_mgr_dao_init() (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: Fix max bytes-per-interval calculation (Jaroslav Kysela) [RHEL-152846] - ALSA: usb-audio: #undef field_{get,prep}() before local definition (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: avs: Replace snprintf() with scnprintf() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd934x: add explicit soundwire depenency (Jaroslav Kysela) [RHEL-152846] - ALSA: pcm: Harden the spk_alloc assumption check (Jaroslav Kysela) [RHEL-152846] - ASoC: tas2781: Add tas2568/2574/5806m/5806md/5830 support (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: ti,tas2781: Add TAS2568/2574/5806M/5806MD/5830 support (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: arizona: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-rx-macro: fix mute_stream affecting all paths (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-wsa-macro: remove unused WSA_MACRO_RX_MIX enum (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-wsa-macro: remove main path event (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-wsa-macro: fix path clock dependencies (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-wsa-macro: add volume controls for mix path (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-wsa-macro: remove mix path event (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-wsa-macro: remove useless gain read/write sequence (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-wsa-macro: remove unnecessary bounds check (Jaroslav Kysela) [RHEL-152846] - ALSA: pcmtest: Replace deprecated strcpy with strscpy_pad in setup_patt_bufs (Jaroslav Kysela) [RHEL-152846] - ASoC: wsa883x: drop GPIOD_FLAGS_BIT_NONEXCLUSIVE flag from GPIO lookup (Jaroslav Kysela) [RHEL-152846] - ASoC: wsa881x: drop GPIOD_FLAGS_BIT_NONEXCLUSIVE flag from GPIO lookup (Jaroslav Kysela) [RHEL-152846] - ASoC: soc-core: Pre-check zero CPU/codec DAIs, handle early rtd->dais alloc failure (Jaroslav Kysela) [RHEL-152846] - ASoC: SOF: sof-client-probes: Replace snprintf() with scnprintf() (Jaroslav Kysela) [RHEL-152846] - ASoC: SOF: imx9: use SCMI API for LM management (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8189: add machine driver with nau8825 (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: mediatek,mt8189-nau8825: add mt8189-nau8825 document (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8189: add platform driver (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: mediatek,mt8189-afe-pcm: add audio afe document (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8189: support PCM in platform driver (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8189: support TDM in platform driver (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8189: support I2S in platform driver (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8189: support ADDA in platform driver (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8189: support audio clock control (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8189: add common header (Jaroslav Kysela) [RHEL-152846] - dt-bindings: Update Krzysztof Kozlowski's email (Jaroslav Kysela) [RHEL-152846] - dt-bindings: Remove extra blank lines (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: soc-acpi-intel-nvl-match: add rt722 l3 support (Jaroslav Kysela) [RHEL-152846] - ASoC: SOF: Intel: add initial support for NVL-S (Jaroslav Kysela) [RHEL-152846] - ALSA: hda: core: intel-dsp-config: Add support for NVL-S (Jaroslav Kysela) [RHEL-152846] - ALSA: hda: controllers: intel: add support for Nova Lake S (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/hdmi: intelhdmi: add HDMI codec ID for Intel NVL (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: soc-acpi: add NVL match tables (Jaroslav Kysela) [RHEL-152846] - PCI: Add Intel Nova Lake S audio Device ID (Jaroslav Kysela) [RHEL-152846] - ASoC: ux500: mop500_ab8500: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: ti: rx51: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: ti: omap3pandora: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: ti: omap-twl4030: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: ti: omap-abe-twl6040: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: ti: n810: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: ti: j721e-evm: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: ti: davinci-evm: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: ti: ams-delta: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: tegra: tegra_wm8903: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: tegra: tegra210_ahub: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: tegra: tegra_asoc_machine: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sunxi: sun8i-codec: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sunxi: sun8i-codec-analog: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sunxi: sun50i-codec-analog: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sunxi: sun4i-codec: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sof-client-probes: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: soc-topology: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: soc-pcm: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: soc-jack: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: soc-dapm: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: soc-core: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_rt_sdca_jack_common: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_ti_amp: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_rt_mf_sdca: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_rt_amp: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_rt711: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_rt700: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_rt5682: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_maxim: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_dmic: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_cs_amp: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_cs42l43: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_cs42l42: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdw_utils: soc_sdw_bridge_cs35l56: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: samsung: tobermory: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: sdca: sdca_asoc: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: samsung: tm2_wm5110: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: samsung: speyside: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: samsung: smdk_wm8994: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: samsung: midas_wm1811: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: samsung: lowland: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: samsung: littlemill: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: samsung: bells: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: samsung: aries_wm8994: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: rockchip: rockchip_max98090: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: rockchip: rk3288_hdmi_analog: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: sc7180: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6usb: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: topology: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6routing: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: pxa: spitz: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: meson: t9015: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: meson: g12a-tohdmitx: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: meson: g12a-toacodec: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: meson: axg-tdm-interface: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: meson: axg-spdifout: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: meson: aiu-codec-ctrl: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: meson: aiu-acodec-ctrl: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8365-afe-pcm: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8195-mt6359: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8186-mt6366: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8188-mt6359: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8186-mt6366-common: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mtk-dsp-sof-common: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mtk-afe-platform-driver: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_rt5682: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_realtek_common: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_pcm512x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_nuvoton_common: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_nau8825: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_maxim_common: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_es8336: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_cirrus_common: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_da7219: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: sof_board_helpers: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: cht_bsw_rt5672: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: cht_bsw_rt5645: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: cht_bsw_max98090_ti: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: bytcr_wm5102: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: bytcr_rt5651: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: bytcr_rt5640: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: bytcht_es8316: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: bytcht_cx2072x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: boards: bdw-rt5677: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: avs: pcm: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: avs: rt5640: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: avs: control: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: avs: rt5514: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: avs: rt274: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: avs: nau8825: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: avs: es8336: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: avs: da7219: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: atom: sst-atom-controls: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: generic: audio-graph-card: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl: imx-rpmsg: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl: fsl-asoc-card: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm_hubs: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm_adsp: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm9712: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm9713: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm9090: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm9081: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8998: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8997: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8996: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8995: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8994: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8993: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8991: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8990: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8988: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8985: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8978: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8983: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8974: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8971: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8962: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8961: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8960: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8955: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8940: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8904: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8903: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8900: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8804: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8776: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8753: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8770: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8750: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8737: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8731: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8728: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8711: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8580: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8523: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8510: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8400: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8350: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm5110: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm5102: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm0010: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm5100: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd937x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd934x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd9335: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: uda1380: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: twl6040: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: twl4030: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tlv320dac33: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tlv320aic3x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tlv320aic32x4: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tlv320aic31xx: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tlv320adc3xxx: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tas6424: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sta529: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tas571x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sta350: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sta32x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ssm4567: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ssm2602: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ssm2518: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sma1307: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sma1303: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: simple-mux: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt721-sdca: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt715: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt715-sdca: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt712-sdca-dmic: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt712-sdca: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt711: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt711-sdca: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt700: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5682s: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5682: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5677: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5670: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5668: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5665: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5663: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5660: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5659: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5645: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5651: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5640: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5631: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5516: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5514: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt298: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt286: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt274: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt1015: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt1011: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rk3308: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: pcm512x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: pcm186x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: nau8824: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: nau8825: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: nau8822: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: nau8821: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: nau8810: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: mt6359: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: mt6358: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: mt6357: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ml26124: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max9867: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max9850: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98396: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98390: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98095: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98373: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98090: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98088: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: madera: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-wsa-macro: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-va-macro: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-tx-macro: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-rx-macro: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lm49453: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: jz4770: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: jz4760: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: jz4740: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: hdmi-codec: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: hdac_hda: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: hdac_hdmi: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: hda: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: es8389: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: es8328: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: es8326: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: es8316: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: es8311: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: es7134: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da9055: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da732x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da7219: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da7219-aad: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da7213: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da7218: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs2072x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cx20442: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs53l30: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs530x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs48l32: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs47l92: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs47l90: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs47l85: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs47l35: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs47l24: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs47l15: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l73: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42xx8: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l56: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l52: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l51: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l43: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l43-jack: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs4234: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs35l56: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs35l45: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs35l41: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs35l33: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cpcap: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: aw88261: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: aw88395: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: audio-iio-aux: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: arizona-jack: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: alc5623: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: adav80x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ak4641: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: adau7118: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: adau1977: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: adau17x1: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: adau1781: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: adau1761: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ad193x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ad1836: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: 88pm860x: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ab8500: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: atmel: tse850-pcm5142: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: acp5x-mach: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: atmel: sam9g20_wm8731: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: acp3x-es83xx: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: acp-mach-common: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: soc.h: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: avs: Honor NHLT override when setting up a path (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: avs: Allow the topology to carry NHLT data (Jaroslav Kysela) [RHEL-152846] - MAINTAINERS: refer to trivial-codec.yaml in relevant sections (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-rx-macro: add SM6115 compatible (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-va-macro: add SM6115 compatible (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: qcom,lpass-va-macro: Add sm6115 LPASS VA (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: qcom,lpass-va-macro: re-arrange clock-names (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: qcom,lpass-rx-macro: Add sm6115 LPASS RX (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: atom: Replace strcpy() with strscpy() (Jaroslav Kysela) [RHEL-152846] - ALSA: gus: Remove unused declarations (Jaroslav Kysela) [RHEL-152846] - ASoC: Intel: sof_rt5682: Add quirk override support (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: consolidate simple audio codec to trivial-codec.yaml (Jaroslav Kysela) [RHEL-152846] - ALSA: au88x0: Fix array bounds warning in EQ drivers (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/senary: Replace magic numbers with defined constants (Jaroslav Kysela) [RHEL-152846] - ASoC: spacemit: fix incorrect error check for sspa clock (Jaroslav Kysela) [RHEL-152846] - regmap: sdw-mbq: Reorder regmap_mbq_context struct for better packing (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: pm4125: remove duplicate code (Jaroslav Kysela) [RHEL-152846] - ASoC: stm32: dfsdm: don't use %%pK through printk (Jaroslav Kysela) [RHEL-152846] - ASoC: soc-pcm: Preserve hw parameters from components in dpcm_runtime_setup_fe (Jaroslav Kysela) [RHEL-152846] - ALSA: ac97: Fix kernel-doc warning for snd_ac97_reset (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6asm: Use guard() for spin locks (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6asm-dai: Use guard() for spin locks (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6apm-dai: Use guard() for spin locks (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6afe: Use guard() for spin locks (Jaroslav Kysela) [RHEL-152846] - ASoc: qcom: q6asm: Use automatic cleanup of kfree() (Jaroslav Kysela) [RHEL-152846] - ASoc: qcom: q6prm: Use automatic cleanup of kfree() (Jaroslav Kysela) [RHEL-152846] - ASoc: qcom: q6afe: Use automatic cleanup of kfree() (Jaroslav Kysela) [RHEL-152846] - ASoc: qcom: q6apm: Use automatic cleanup of kfree() (Jaroslav Kysela) [RHEL-152846] - ASoc: qcom: q6adm: Use automatic cleanup of kfree() (Jaroslav Kysela) [RHEL-152846] - ASoc: qcom: audioreach: Use automatic cleanup of kfree() (Jaroslav Kysela) [RHEL-152846] - ASoc: qcom: audioreach: remove unused variables (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6asm: set runtime correctly for each stream (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6asm-dai: use q6asm_get_hw_pointer (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6asm: add q6asm_get_hw_pointer (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6asm-dai: schedule all available frames to avoid dsp under-runs (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: q6asm: handle the responses after closing (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: ti,pcm1862: convert to dtschema (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: ti,tas2781: Add TAS5822 support (Jaroslav Kysela) [RHEL-152846] - ASoC: tas2781: Add tas5822 support (Jaroslav Kysela) [RHEL-152846] - ASoC: tas2781: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: aw88261: pass pointer directly instead of passing the address (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: simplify aw87390_init() argument a bit (Jaroslav Kysela) [RHEL-152846] - ASoC: max98090/91: adding the two virtual Mux widgets in the routes (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_spdif: Constify some structures (Jaroslav Kysela) [RHEL-152846] - ASoC: max98090/91: adding two virtual Mux widgets for digital mics (Jaroslav Kysela) [RHEL-152846] - ALSA: line6: add support for POD HD Pro X (Jaroslav Kysela) [RHEL-152846] - regcache: maple: Split ->populate() from ->init() (Jaroslav Kysela) [RHEL-152846] - regcache: Add ->populate() callback to separate from ->init() (Jaroslav Kysela) [RHEL-152846] - ASoC: soc-core: check ops & auto_selectable_formats in snd_soc_dai_get_fmt() to prevent dereference error (Jaroslav Kysela) [RHEL-152846] - ASoC: codec: wm8400: replace printk() calls with dev_*() device aware logging (Jaroslav Kysela) [RHEL-152846] - ASoC: max98090/91: fixing the stream index (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: va-macro: fix revision checking (Jaroslav Kysela) [RHEL-152846] - ASoC: SOF: Intel: select SND_SOC_SDW_UTILS in SND_SOC_SOF_HDA_GENERIC (Jaroslav Kysela) [RHEL-152846] - ASoC: cs4271: Add support for the external mclk (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: cirrus,cs4271: Document mclk clock (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: sc7280: make use of common helpers (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: sdm845: make use of common helpers (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: sdw: remove redundant code (Jaroslav Kysela) [RHEL-152846] - ASoC: spacemit: use `depends on` instead of `select` (Jaroslav Kysela) [RHEL-152846] - ASoC: spacemit: add failure check for spacemit_i2s_init_dai() (Jaroslav Kysela) [RHEL-152846] - ASoC: sun4i-spdif: Support SPDIF output on A523 family (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: allwinner,sun4i-a10-spdif: Add compatible for A523 (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: allwinner,sun4i-a10-i2s: Add compatible for A523 (Jaroslav Kysela) [RHEL-152846] - ALSA: hda/cs35l56: Set cal_index to the amp index (Jaroslav Kysela) [RHEL-152846] - ASoC: renesas: fsi: Constify struct fsi_stream_handler (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Add SPI bus support for cs530x parts (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: sound: cirrus: cs530x: Add SPI bus support (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Rename i2c related structures (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Correct MCLK reference frequency values (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Check the DEVID matches the devtype (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Rename bitfield to reflect common use for ADC and DAC (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Add CODEC and DAC support (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: sound: cirrus: cs530x: Add cs530x (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Correct constant naming (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Remove unused struct members and constants (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Sort #include directives and tydy up whitespaces (Jaroslav Kysela) [RHEL-152846] - ASoC: cs530x: Update the copyright headers (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: sm8250: add qrb2210-sndcard compatible string (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: qcom,sm8250: add QRB2210 soundcard (Jaroslav Kysela) [RHEL-152846] - ALSA: maestro3: using vmalloc_array() to handle the code (Jaroslav Kysela) [RHEL-152846] - ASoC: max98090/91: adding DAPM routing for digital output for max98091 (Jaroslav Kysela) [RHEL-152846] - ASoC: max98090/91: fixing a space (Jaroslav Kysela) [RHEL-152846] - ASoC: SOF: Fix function topology name check in profile info output (Jaroslav Kysela) [RHEL-152846] - ASoC: max98090/91: added DAPM widget for digital output for max98091 (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl_aud2htx: add IEC958_SUBFRAME_LE format in supported list (Jaroslav Kysela) [RHEL-152846] - ASoC: rockchip: i2s-tdm: Omit a variable reassignment in rockchip_i2s_tdm_probe() (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: don't check node names (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: va-macro: Clean up on error path in probe() (Jaroslav Kysela) [RHEL-152846] - ASoC: soc.h: remove snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: uniphier: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: tegra: tegra210: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: tegra: tegra186: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: rockchip: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8195: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8192: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8188: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8186: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: mt8183: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: mediatek: common: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: catpt: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: intel: atom: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: fsl: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wsa884x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wsa883x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wsa881x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm_hubs: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm_adsp: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm9081: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8996: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8994: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8991: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8990: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8985: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8983: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8962: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8960: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8958: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8955: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8904: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8753: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8903: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8731: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8580: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8400: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm8350: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm5110: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm5102: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wm2000: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd939x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd938x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd937x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd934x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: wcd9335: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: uda1334: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: twl6040: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: twl4030: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tscs454: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tscs42xx: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tlv320dac33: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tlv320aic23: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tlv320adcx140: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tlv320adc3xxx: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tfa989x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tas5805m: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tas5720: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tas571x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tas5086: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tas2781: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: tas2562: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sta350: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sta32x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sma1307: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sma1303: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: sgtl5000: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt9123: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt711-sdca: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5670: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5665: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5659: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5631: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt1015: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt1318: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt1011: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: pm4125: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: peb2466: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: pcm6240: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: pcm512x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: pcm1681: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ntp8835: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: nau8822: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: nau8810: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: mt6660: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: mt6359: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: mt6358: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: msm8916-wcd-digital: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98925: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max9867: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98390: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98095: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98090: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max98088: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max9768: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: max9759: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: madera: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-wsa-macro: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-va-macro: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-tx-macro: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: lpass-rx-macro: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: idt821034: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: fs210x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: es8328: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da9055: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da732x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da7219: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da7218: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da7213: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: da7210: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs530x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs48l32: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs47l15: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs43130: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l84: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l51: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l43: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs42l42: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs4271: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs4270: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs4234: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs35l45: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cs35l36: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: cros_ec: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: bd28623: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: aw88399: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: aw88395: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: aw88261: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: aw88166: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: aw88081: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: aw87390: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: arizona: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ak4619: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ak4641: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ak4458: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: adav80x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: ab8500: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: 88pm860x: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: atmel: use snd_kcontrol_chip() instead of snd_soc_kcontrol_component() (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: Add bindings for SpacemiT K1 (Jaroslav Kysela) [RHEL-152846] - ASoC: spacemit: add i2s support for K1 SoC (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: amd_sdw: Propagate the PCI subsystem Vendor and Device IDs (Jaroslav Kysela) [RHEL-152846] - ASoC: amd: ps: Propagate the PCI subsystem Vendor and Device IDs (Jaroslav Kysela) [RHEL-152846] - ALSA: dice: add support for TASCAM IF-FW/DM MkII (Jaroslav Kysela) [RHEL-152846] - ALSA: firewire-tascam: reserve resources for transferred isochronous packets at S400 (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: qcom: Add Kaanapali LPASS macro codecs (Jaroslav Kysela) [RHEL-152846] - ASoC: qcom: sc8280xp: Add support for Kaanapali (Jaroslav Kysela) [RHEL-152846] - ASoC: dt-bindings: qcom,sm8250: Add kaanapali sound card (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: va-macro: Rework version checking (Jaroslav Kysela) [RHEL-152846] - ASoC: mxs-saif: support usage with simple-audio-card (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: rt5670: use SOC_VALUE_ENUM_SINGLE_DECL for DAC2 L/R MX-1B (Jaroslav Kysela) [RHEL-152846] - ASoC: replace use of system_wq with system_dfl_wq (Jaroslav Kysela) [RHEL-152846] - dt-bindings: sound: Update ADMAIF bindings for tegra264 (Jaroslav Kysela) [RHEL-152846] - ASoC: codecs: Fix the error of excessive semicolons (Jaroslav Kysela) [RHEL-152846] - ASoc: tas2783A: Remove unneeded variable assignment (Jaroslav Kysela) [RHEL-152846] - ALSA: Add definitions for the bits in IEC958 subframe (Jaroslav Kysela) [RHEL-152846] - ice: drop udp_tunnel_get_rx_info() call from ndo_open() (Mohammad Heib) [RHEL-143670] - i40e: drop udp_tunnel_get_rx_info() call from i40e_open() (Mohammad Heib) [RHEL-143670] - selftests/mm/charge_reserved_hugetlb.sh: add waits with timeout helper (Li Wang) [RHEL-130552] - selftests/mm/charge_reserved_hugetlb: drop mount size for hugetlbfs (Li Wang) [RHEL-130552] - selftests/mm/write_to_hugetlbfs: parse -s as size_t (Li Wang) [RHEL-130552] - selftests/mm: fix strncpy() length (Li Wang) [RHEL-130552] - ext4: fix dirtyclusters double decrement on fs shutdown (CKI Backport Bot) [RHEL-108931] - redhat/configs: automotive: enable j784s4evm DSP remoteproc configs (Jared Kangas) [RHEL-95437] - selftests/mm: fix comment for check_test_requirements (Chunyu Hu) [RHEL-134020] - selftests/mm: va_high_addr_switch return fail when either test failed (Chunyu Hu) [RHEL-134020] - selftests/mm: remove arm64 nr_hugepages setup for va_high_addr_switch test (Chunyu Hu) [RHEL-134020] - selftests/mm: allocate 6 hugepages in va_high_addr_switch.sh (Chunyu Hu) [RHEL-134020] - selftests/mm: fix va_high_addr_switch.sh return value (Chunyu Hu) [RHEL-134020] - smb: client: fix krb5 mount with username option (Paulo Alcantara) [RHEL-158991] - udp: call skb_orphan() before skb_attempt_defer_free() (Guillaume Nault) [RHEL-145977] - inet: frags: drop fraglist conntrack references (Guillaume Nault) [RHEL-145977] - udp: do not use skb_release_head_state() before skb_attempt_defer_free() (Guillaume Nault) [RHEL-145977] - Revert "net: group sk_backlog and sk_receive_queue" (Guillaume Nault) [RHEL-145977] - udp: use skb_attempt_defer_free() (Guillaume Nault) [RHEL-145977] - udp: make busylock per socket (Guillaume Nault) [RHEL-145977] - udp: add udp_drops_inc() helper (Guillaume Nault) [RHEL-145977] - net: group sk_backlog and sk_receive_queue (Guillaume Nault) [RHEL-145977] - udp: update sk_rmem_alloc before busylock acquisition (Guillaume Nault) [RHEL-145977] - udp: refine __udp_enqueue_schedule_skb() test (Guillaume Nault) [RHEL-145977] - ipv6: reorganise struct ipv6_pinfo (Guillaume Nault) [RHEL-145977] - ipv6: np->rxpmtu race annotation (Guillaume Nault) [RHEL-145977] - ipv6: make ipv6_pinfo.daddr_cache a boolean (Guillaume Nault) [RHEL-145977] - ipv6: make ipv6_pinfo.saddr_cache a boolean (Guillaume Nault) [RHEL-145977] - mlxbf-bootctl: use sysfs_emit_at() in secure_boot_fuse_state_show() (David Thompson) [RHEL-103899] - mlxbf-bootctl: Support sysfs entries for RTC battery status (David Thompson) [RHEL-103899] - platform/mellanox: mlxbf-bootctl: use sysfs_emit() instead of sprintf() (David Thompson) [RHEL-103899] - kabi: enable check-kabi (Čestmír Kalina) [RHEL-153673] - kabi: add symbols to stablelist (Čestmír Kalina) [RHEL-153673] - platform/mellanox: mlxbf-pmc: add sysfs_attr_init() to count_clock init (David Thompson) [RHEL-104053] - platform/mellanox: mlxbf-pmc: Use kstrtobool() to check 0/1 input (David Thompson) [RHEL-104053] - platform/mellanox: mlxbf-pmc: Validate event/enable input (David Thompson) [RHEL-104053] - platform/mellanox: mlxbf-pmc: Remove newline char from event name input (David Thompson) [RHEL-104053] - platform/mellanox: mlxbf-pmc: Fix duplicate event ID for CACHE_DATA1 (David Thompson) [RHEL-104053] - platform/mellanox: mlxbf-pmc: Support additional PMC blocks (David Thompson) [RHEL-104053] - platform/mellanox: mlxbf-pmc: Add support for clock_measure performance block (David Thompson) [RHEL-104053] - platform/mellanox: mlxbf-pmc: Add support for monitoring cycle count (David Thompson) [RHEL-104053] - platform/mellanox: mlxbf-pmc: incorrect type in assignment (David Thompson) [RHEL-104053] - iavf: fix PTP use-after-free during reset (Petr Oros) [RHEL-112270] - smb: client: fix oops due to uninitialised var in smb2_unlink() (Paulo Alcantara) [RHEL-154415] - cifs: some missing initializations on replay (Paulo Alcantara) [RHEL-154415] - bonding: fix use-after-free due to enslave fail after slave array update (Hangbin Liu) [RHEL-152392] {CVE-2026-23171} - ALSA: aloop: Fix racy access at PCM trigger (Jaroslav Kysela) [RHEL-150133] {CVE-2026-23191} - x86/fpu: Ensure shadow stack is active before "getting" registers (Oleg Nesterov) [RHEL-152371] - PCI: Validate window resource type in pbus_select_window_for_type() (Myron Stowe) [RHEL-139968] - PCI: Don't claim disabled bridge windows (Myron Stowe) [RHEL-139968] - PCI: Remove old_size limit from bridge window sizing (Myron Stowe) [RHEL-139968] - PCI: Stop over-estimating bridge window size (Myron Stowe) [RHEL-139968] - PCI: Rewrite bridge window head alignment function (Myron Stowe) [RHEL-139968] - PCI: Fix bridge window alignment with optional resources (Myron Stowe) [RHEL-139968] - sparc/PCI: Correct 64-bit non-pref -> pref BAR resources (Myron Stowe) [RHEL-139968] - PCI: meson: Fix parsing the DBI register region (Myron Stowe) [RHEL-139968] - PCI: Do not size non-existing prefetchable window (Myron Stowe) [RHEL-139968] - MIPS: Malta: Use pcibios_align_resource() to block io range (Myron Stowe) [RHEL-139968] - MIPS: Malta: Fix PCI southbridge legacy resource reservations (Myron Stowe) [RHEL-139968] - MIPS: Malta: Fix keyboard resource preventing i8042 driver from registering (Myron Stowe) [RHEL-139968] - PCI: dwc: Use custom pci_ops for root bus DBI vs ECAM config access (Myron Stowe) [RHEL-139968] - PCI: cadence: Search for MSI Capability with correct ID (Myron Stowe) [RHEL-139968] - PCI: Fix regression in pci_bus_distribute_available_resources() (Myron Stowe) [RHEL-139968] - PCI/sysfs: Expose PCI device serial number (Myron Stowe) [RHEL-139968] - PCI: xilinx-nwl: Fix ECAM programming (Myron Stowe) [RHEL-139968] - PCI: tegra194: Rename 'root_bus' to 'root_port_bus' in tegra_pcie_downstream_dev_to_D0() (Myron Stowe) [RHEL-139968] - PCI: tegra: Convert struct tegra_msi mask_lock into raw spinlock (Myron Stowe) [RHEL-139968] - PCI: tegra194: Fix duplicate PLL disable in pex_ep_event_pex_rst_assert() (Myron Stowe) [RHEL-139968] - PCI: tegra: Fix devm_kcalloc() argument order for port->phys allocation (Myron Stowe) [RHEL-139968] - PCI: cadence: Check for the existence of cdns_pcie::ops before using it (Myron Stowe) [RHEL-139968] - PCI: rcar-host: Convert struct rcar_msi mask_lock into raw spinlock (Myron Stowe) [RHEL-139968] - PCI: rcar-host: Drop PMSR spinlock (Myron Stowe) [RHEL-139968] - PCI: rcar-gen4: Fix inverted break condition in PHY initialization (Myron Stowe) [RHEL-139968] - PCI: rcar-gen4: Assure reset occurs before DBI access (Myron Stowe) [RHEL-139968] - PCI: rcar-gen4: Add missing 1ms delay after PWR reset assertion (Myron Stowe) [RHEL-139968] - PCI: rcar-gen4: Fix PHY initialization (Myron Stowe) [RHEL-139968] - PCI: dwc: Support ECAM mechanism by enabling iATU 'CFG Shift Feature' (Myron Stowe) [RHEL-139968] - PCI: dwc: Prepare the driver for enabling ECAM mechanism using iATU 'CFG Shift Feature' (Myron Stowe) [RHEL-139968] - PCI: dwc: Add support for ELBI resource mapping (Myron Stowe) [RHEL-139968] - PCI: qcom: Move host bridge 'phy' and 'reset' pointers to struct qcom_pcie_port (Myron Stowe) [RHEL-139968] - PCI: qcom: Fix macro typo for CURSOR (Myron Stowe) [RHEL-139968] - PCI: qcom: Add equalization settings for 8.0 GT/s and 32.0 GT/s (Myron Stowe) [RHEL-139968] - PCI: plda: Remove dev_err_probe() when the errno is -ENOMEM (Myron Stowe) [RHEL-139968] - PCI: mediatek-gen3: Add support for MediaTek MT8196 SoC (Myron Stowe) [RHEL-139968] - dt-bindings: PCI: mediatek-gen3: Add support for MT6991/MT8196 (Myron Stowe) [RHEL-139968] - PCI: mediatek-gen3: Implement sys clock ready time setting (Myron Stowe) [RHEL-139968] - PCI: keystone: Use devm_request_irq() to free "ks-pcie-error-irq" on exit (Myron Stowe) [RHEL-139968] - PCI: keystone: Use kcalloc() instead of kzalloc() (Myron Stowe) [RHEL-139968] - PCI: j721e: Fix incorrect error message in probe() (Myron Stowe) [RHEL-139968] - PCI: j721e: Fix programming sequence of "strap" settings (Myron Stowe) [RHEL-139968] - PCI: j721e: Fix module autoloading (Myron Stowe) [RHEL-139968] - PCI: imx6: Enable the Vaux supply if available (Myron Stowe) [RHEL-139968] - PCI: qcom-ep: Remove redundant edma.nr_irqs initialization (Myron Stowe) [RHEL-139968] - PCI: dwc: Verify the single eDMA IRQ in dw_pcie_edma_irq_verify() (Myron Stowe) [RHEL-139968] - PCI: dwc: Support 16-lane operation (Myron Stowe) [RHEL-139968] - PCI: tegra194: Handle errors in BPMP response (Myron Stowe) [RHEL-139968] - PCI: tegra194: Reset BARs when running in PCIe endpoint mode (Myron Stowe) [RHEL-139968] - PCI: tegra194: Set pci_epc_features::msi_capable to true (Myron Stowe) [RHEL-139968] - PCI: tegra194: Fix broken tegra_pcie_ep_raise_msi_irq() (Myron Stowe) [RHEL-139968] - PCI: endpoint: pci-epf-test: Add NULL check for DMA channels before release (Myron Stowe) [RHEL-139968] - PCI: endpoint: pci-epf-test: Limit PCIe BAR size for fixed BARs (Myron Stowe) [RHEL-139968] - selftests: pci_endpoint: Skip IRQ test if IRQ is out of range. (Myron Stowe) [RHEL-139968] - misc: pci_endpoint_test: Cleanup extra 0 initialization (Myron Stowe) [RHEL-139968] - misc: pci_endpoint_test: Skip IRQ tests if irq is out of range (Myron Stowe) [RHEL-139968] - PCI: endpoint: Drop superfluous pci_epc_features initialization (Myron Stowe) [RHEL-139968] - Documentation: PCI: endpoint: Document BAR assignment (Myron Stowe) [RHEL-139968] - dt-bindings: PCI: qcom,pcie-x1e80100: Set clocks minItems for the fifth Glymur PCIe Controller (Myron Stowe) [RHEL-139968] - dt-bindings: PCI: ti,am65: Extend for use with PVU (Myron Stowe) [RHEL-139968] - dt-bindings: PCI: qcom,pcie-sm8550: Add SM8750 compatible (Myron Stowe) [RHEL-139968] - PCI: cadence: Use cdns_pcie_find_*capability() to avoid hardcoding offsets (Myron Stowe) [RHEL-139968] - PCI: cadence: Implement capability search using PCI core APIs (Myron Stowe) [RHEL-139968] - PCI: dwc: ep: Implement capability search using PCI core APIs (Myron Stowe) [RHEL-139968] - PCI: Refactor extended capability search into PCI_FIND_NEXT_EXT_CAP() (Myron Stowe) [RHEL-139968] - PCI: Refactor capability search into PCI_FIND_NEXT_CAP() (Myron Stowe) [RHEL-139968] - PCI: Clean up __pci_find_next_cap_ttl() readability (Myron Stowe) [RHEL-139968] - PCI: switchtec: Replace manual locks with guard (Myron Stowe) [RHEL-139968] - PCI: Add lockdep assertion in pci_stop_and_remove_bus_device() (Myron Stowe) [RHEL-139968] - PCI/IOV: Fix race between SR-IOV enable/disable and hotplug (Myron Stowe) [RHEL-139968] - PCI: Don't print stale information about resource (Myron Stowe) [RHEL-139968] - PCI: Alter misleading recursion to pci_bus_release_bridge_resources() (Myron Stowe) [RHEL-139968] - PCI: Pass bridge window to pci_bus_release_bridge_resources() (Myron Stowe) [RHEL-139968] - PCI: Add pci_setup_one_bridge_window() (Myron Stowe) [RHEL-139968] - PCI: Refactor remove_dev_resources() to use pbus_select_window() (Myron Stowe) [RHEL-139968] - PCI: Refactor distributing available memory to use loops (Myron Stowe) [RHEL-139968] - PCI: Use pbus_select_window_for_type() during mem window sizing (Myron Stowe) [RHEL-139968] - PCI: Use pbus_select_window() in space available checker (Myron Stowe) [RHEL-139968] - PCI: Rename resource variable from r to res (Myron Stowe) [RHEL-139968] - PCI: Use pbus_select_window_for_type() during IO window sizing (Myron Stowe) [RHEL-139968] - PCI: Use pbus_select_window() during BAR resize (Myron Stowe) [RHEL-139968] - PCI: Warn if bridge window cannot be released when resizing BAR (Myron Stowe) [RHEL-139968] - PCI: Fix finding bridge window in pci_reassign_bridge_resources() (Myron Stowe) [RHEL-139968] - PCI: Add bridge window selection functions (Myron Stowe) [RHEL-139968] - PCI: Add defines for bridge window indexing (Myron Stowe) [RHEL-139968] - PCI: Preserve bridge window resource type flags (Myron Stowe) [RHEL-139968] - PCI: Enable bridge even if bridge window fails to assign (Myron Stowe) [RHEL-139968] - PCI: Use pci_release_resource() instead of release_resource() (Myron Stowe) [RHEL-139968] - PCI: Disable non-claimed bridge window (Myron Stowe) [RHEL-139968] - PCI: Always claim bridge window before its setup (Myron Stowe) [RHEL-139968] - PCI: Refactor find_bus_resource_of_type() logic checks (Myron Stowe) [RHEL-139968] - PCI: Move find_bus_resource_of_type() earlier (Myron Stowe) [RHEL-139968] - MIPS: PCI: Use pci_enable_resources() (Myron Stowe) [RHEL-139968] - sparc/PCI: Remove pcibios_enable_device() as they do nothing extra (Myron Stowe) [RHEL-139968] - m68k/PCI: Use pci_enable_resources() in pcibios_enable_device() (Myron Stowe) [RHEL-139968] - PCI: Fix failure detection during resource resize (Myron Stowe) [RHEL-139968] - PCI: Fix pdev_resources_assignable() disparity (Myron Stowe) [RHEL-139968] - PCI: Ensure relaxed tail alignment does not increase min_align (Myron Stowe) [RHEL-139968] - PCI/sysfs: Ensure devices are powered for config reads (Myron Stowe) [RHEL-139968] - PCI/PM: Skip resuming to D0 if device is disconnected (Myron Stowe) [RHEL-139968] - PCI/P2PDMA: Reduce scope of pci_has_p2pmem() (Myron Stowe) [RHEL-139968] - PCI/P2PDMA: Fix incorrect pointer usage in devm_kfree() call (Myron Stowe) [RHEL-139968] - PCI: of: Update parent unit address generation in of_pci_prop_intr_map() (Myron Stowe) [RHEL-139968] - PCI: Disable MSI on RDC PCI to PCIe bridges (Myron Stowe) [RHEL-139968] - PCI: hotplug: Clean up spaces in messages (Myron Stowe) [RHEL-139968] - PCI: Add Extended Tag + MRRS quirk for Xeon 6 (Myron Stowe) [RHEL-139968] - PCI: Clean up pci_scan_child_bus_extend() loop (Myron Stowe) [RHEL-139968] - PCI: Clean up early_dump_pci_device() (Myron Stowe) [RHEL-139968] - PCI: Use header type defines in pci_setup_device() (Myron Stowe) [RHEL-139968] - Documentation: PCI: Fix typos (Myron Stowe) [RHEL-139968] - Documentation: PCI: Tidy error recovery doc's PCIe nomenclature (Myron Stowe) [RHEL-139968] - Documentation: PCI: Amend error recovery doc with DPC/AER specifics (Myron Stowe) [RHEL-139968] - Documentation: PCI: Sync error recovery doc with code (Myron Stowe) [RHEL-139968] - Documentation: PCI: Sync AER doc with code (Myron Stowe) [RHEL-139968] - PCI/AER: Fix NULL pointer access by aer_info (Myron Stowe) [RHEL-139968] - PCI/AER: Print TLP Log for errors introduced since PCIe r1.1 (Myron Stowe) [RHEL-139968] - PCI/AER: Support errors introduced by PCIe r6.0 (Myron Stowe) [RHEL-139968] - powerpc/eeh: Use result of error_detected() in uevent (Myron Stowe) [RHEL-139968] - s390/pci: Use pci_uevent_ers() in PCI recovery (Myron Stowe) [RHEL-139968] - PCI/AER: Fix missing uevent on recovery when a reset is requested (Myron Stowe) [RHEL-139968] - PCI/ERR: Update device error_state already after reset (Myron Stowe) [RHEL-139968] - PCI/ERR: Notify drivers on failure to recover (Myron Stowe) [RHEL-139968] - PCI/ERR: Fix uevent on failure to recover (Myron Stowe) [RHEL-139968] - PCI/AER: Allow drivers to opt in to Bus Reset on Non-Fatal Errors (Myron Stowe) [RHEL-139968] - MIPS: pci-legacy: Override pci_address_to_pio (Myron Stowe) [RHEL-139968] - PCI: exynos: Switch to devm_clk_bulk_get_all_enabled() (Myron Stowe) [RHEL-139968] - smb: client: fix oops due to uninitialised var in smb2_unlink() (Paulo Alcantara) [RHEL-154397] - smb/client: remove unused SMB311_posix_query_info() (Paulo Alcantara) [RHEL-154397] - smb/client: fix buffer size for smb311_posix_qinfo in SMB311_posix_query_info() (Paulo Alcantara) [RHEL-154397] - smb/client: fix buffer size for smb311_posix_qinfo in smb2_compound_op() (Paulo Alcantara) [RHEL-154397] - ACPI: AGDI: Add interrupt signaling mode support (Charles Mirabile) [RHEL-111893] - add xxd to as BuildRequire for bpf selftests (Ines Qian) [RHEL-157473] - selftests/net: test ipip packets in gro.sh (Antoine Tenart) [RHEL-123213] - net: gro: remove unnecessary df checks (Antoine Tenart) [RHEL-123213] - net: gso: restore ids of outer ip headers correctly (Antoine Tenart) [RHEL-123213] - net: gro: only merge packets with incrementing or fixed outer ids (Antoine Tenart) [RHEL-123213] - net: gro: remove is_ipv6 from napi_gro_cb (Antoine Tenart) [RHEL-123213] - s390/dasd: Copy detected format information to secondary device (Mete Durlu) [RHEL-161531] - s390/dasd: Move quiesce state with pprc swap (Mete Durlu) [RHEL-161531] - net: hv_netvsc: reject RSS hash key programming without RX indirection table (Vinay Mulugund) [RHEL-145154] - allow finish_no_open(file, ERR_PTR(-E...)) (Roberto Bergantinos Corpas) [RHEL-155441] - RDMA/umad: Reject negative data_len in ib_umad_write (CKI Backport Bot) [RHEL-156881] {CVE-2026-23243} - iavf: fix incorrect reset handling in callbacks (Petr Oros) [RHEL-142546] - IB/IPoIB: Add support for hwtstamp get/set ndos (CKI Backport Bot) [RHEL-154278] - wifi: mac80211_hwsim: fix typo in frequency notification (CKI Backport Bot) [RHEL-148654] {CVE-2026-23040} - Add signing key for Nvidia Jetson and Bluefield GPU signing keys (Enrique Belarte Luque) [RHEL-145936] - Add NVIDIA Jetson signing key for OOT modules (Enrique Belarte Luque) [RHEL-145936] - redhat/configs: add CONFIG_DEBUG_NET_SMALL_RTNL (Antoine Tenart) [RHEL-150155] - net/sched: act_api: avoid dereferencing ERR_PTR in tcf_idrinfo_destroy (Antoine Tenart) [RHEL-150155] - mpls: Drop RTNL for RTM_NEWROUTE, RTM_DELROUTE, and RTM_GETROUTE. (Antoine Tenart) [RHEL-150155] - mpls: Protect net->mpls.platform_label with a per-netns mutex. (Antoine Tenart) [RHEL-150155] - mpls: Convert RTM_GETNETCONF to RCU. (Antoine Tenart) [RHEL-150155] - mpls: Convert mpls_dump_routes() to RCU. (Antoine Tenart) [RHEL-150155] - mpls: Use mpls_route_input() where appropriate. (Antoine Tenart) [RHEL-150155] - mpls: Add mpls_route_input(). (Antoine Tenart) [RHEL-150155] - mpls: Pass net to mpls_dev_get(). (Antoine Tenart) [RHEL-150155] - mpls: Add mpls_dev_rcu(). (Antoine Tenart) [RHEL-150155] - mpls: Use in6_dev_rcu() and dev_net_rcu() in mpls_forward() and mpls_xmit(). (Antoine Tenart) [RHEL-150155] - ipv6: Add in6_dev_rcu(). (Antoine Tenart) [RHEL-150155] - mpls: Unify return paths in mpls_dev_notify(). (Antoine Tenart) [RHEL-150155] - mpls: Hold dev refcnt for mpls_nh. (Antoine Tenart) [RHEL-150155] - mpls: Return early in mpls_label_ok(). (Antoine Tenart) [RHEL-150155] - neighbour: Convert rwlock of struct neigh_table to spinlock. (Antoine Tenart) [RHEL-150155] - neighbour: Convert RTM_SETNEIGHTBL to RCU. (Antoine Tenart) [RHEL-150155] - neighbour: Convert RTM_GETNEIGHTBL to RCU. (Antoine Tenart) [RHEL-150155] - neighbour: Annotate access to neigh_parms fields. (Antoine Tenart) [RHEL-150155] - neighbour: Use RCU list helpers for neigh_parms.list writers. (Antoine Tenart) [RHEL-150155] - sched_ext: Use rhashtable_lookup() instead of rhashtable_lookup_fast() (Antoine Tenart) [RHEL-150155] - rhashtable: Use rcu_dereference_all and rcu_dereference_all_check (Antoine Tenart) [RHEL-150155] - net_sched: add back BH safety to tcf_lock (Antoine Tenart) [RHEL-150155] - net_sched: act_skbmod: use RCU in tcf_skbmod_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_tunnel_key: use RCU in tunnel_key_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_vlan: use RCU in tcf_vlan_dump() (Antoine Tenart) [RHEL-150155] - net_sched: remove BH blocking in eight actions (Antoine Tenart) [RHEL-150155] - ipv6: add a retry logic in net6_rt_notify() (Antoine Tenart) [RHEL-150155] - net: s/dev_close_many/netif_close_many/ (Antoine Tenart) [RHEL-150155] - net: s/dev_get_flags/netif_get_flags/ (Antoine Tenart) [RHEL-150155] - net: s/__dev_set_mtu/__netif_set_mtu/ (Antoine Tenart) [RHEL-150155] - net: s/dev_pre_changeaddr_notify/netif_pre_changeaddr_notify/ (Antoine Tenart) [RHEL-150155] - net: s/dev_get_mac_address/netif_get_mac_address/ (Antoine Tenart) [RHEL-150155] - net: s/dev_get_port_parent_id/netif_get_port_parent_id/ (Antoine Tenart) [RHEL-150155] - neighbour: Update pneigh_entry in pneigh_create(). (Antoine Tenart) [RHEL-150155] - neighbour: Protect tbl->phash_buckets[] with a dedicated mutex. (Antoine Tenart) [RHEL-150155] - neighbour: Drop read_lock_bh(&tbl->lock) in pneigh_lookup(). (Antoine Tenart) [RHEL-150155] - neighbour: Remove __pneigh_lookup(). (Antoine Tenart) [RHEL-150155] - neighbour: Use rcu_dereference() in pneigh_get_{first,next}(). (Antoine Tenart) [RHEL-150155] - neighbour: Drop read_lock_bh(&tbl->lock) in pneigh_dump_table(). (Antoine Tenart) [RHEL-150155] - neighbour: Convert RTM_GETNEIGH to RCU. (Antoine Tenart) [RHEL-150155] - neighbour: Annotate access to struct pneigh_entry.{flags,protocol}. (Antoine Tenart) [RHEL-150155] - neighbour: Free pneigh_entry after RCU grace period. (Antoine Tenart) [RHEL-150155] - neighbour: Annotate neigh_table.phash_buckets and pneigh_entry.next with __rcu. (Antoine Tenart) [RHEL-150155] - neighbour: Split pneigh_lookup(). (Antoine Tenart) [RHEL-150155] - neighbour: Move neigh_find_table() to neigh_get(). (Antoine Tenart) [RHEL-150155] - neighbour: Allocate skb in neigh_get(). (Antoine Tenart) [RHEL-150155] - neighbour: Move two validations from neigh_get() to neigh_valid_get_req(). (Antoine Tenart) [RHEL-150155] - neighbour: Make neigh_valid_get_req() return ndmsg. (Antoine Tenart) [RHEL-150155] - net_sched: act_skbedit: use RCU in tcf_skbedit_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_police: use RCU in tcf_police_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_pedit: use RCU in tcf_pedit_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_nat: use RCU in tcf_nat_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_mpls: use RCU in tcf_mpls_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_ctinfo: use RCU in tcf_ctinfo_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_ctinfo: use atomic64_t for three counters (Antoine Tenart) [RHEL-150155] - net_sched: act_ct: use RCU in tcf_ct_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_csum: use RCU in tcf_csum_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act_connmark: use RCU in tcf_connmark_dump() (Antoine Tenart) [RHEL-150155] - net_sched: act: annotate data-races in tcf_lastuse_update() and tcf_tm_dump() (Antoine Tenart) [RHEL-150155] - net/sched: acp_api: no longer acquire RTNL in tc_action_net_exit() (Antoine Tenart) [RHEL-150155] - net: remove RTNL use for /proc/sys/net/core/rps_default_mask (Antoine Tenart) [RHEL-150155] - net/sched: fix use-after-free in taprio_dev_notifier (Antoine Tenart) [RHEL-150155] - ipv6: Move fib6_config_validate() to ip6_route_add(). (Antoine Tenart) [RHEL-150155] - net: annotate data-races around cleanup_net_task (Antoine Tenart) [RHEL-150155] - net: let lockdep compare instance locks (Antoine Tenart) [RHEL-150155] - ipv6: Revert two per-cpu var allocation for RTM_NEWROUTE. (Antoine Tenart) [RHEL-150155] - ipv6: Pass gfp_flags down to ip6_route_info_create_nh(). (Antoine Tenart) [RHEL-150155] - Revert "ipv6: Factorise ip6_route_multipath_add()." (Antoine Tenart) [RHEL-150155] - Revert "ipv6: sr: switch to GFP_ATOMIC flag to allocate memory during seg6local LWT setup" (Antoine Tenart) [RHEL-150155] - ipv6: Narrow down RCU critical section in inet6_rtm_newroute(). (Antoine Tenart) [RHEL-150155] - inet: Remove rtnl_is_held arg of lwtunnel_valid_encap_type(_attr)?(). (Antoine Tenart) [RHEL-150155] - ipv6: Remove rcu_read_lock() in fib6_get_table(). (Antoine Tenart) [RHEL-150155] - ipv6: Restore fib6_config validation for SIOCADDRT. (Antoine Tenart) [RHEL-150155] - ipv6: sr: switch to GFP_ATOMIC flag to allocate memory during seg6local LWT setup (Antoine Tenart) [RHEL-150155] - net: Fix wild-memory-access in __register_pernet_operations() when CONFIG_NET_NS=n. (Antoine Tenart) [RHEL-150155] - ipv6: Get rid of RTNL for SIOCADDRT and RTM_NEWROUTE. (Antoine Tenart) [RHEL-150155] - ipv6: Protect nh->f6i_list with spinlock and flag. (Antoine Tenart) [RHEL-150155] - ipv6: Defer fib6_purge_rt() in fib6_add_rt2node() to fib6_add(). (Antoine Tenart) [RHEL-150155] - ipv6: Protect fib6_link_table() with spinlock. (Antoine Tenart) [RHEL-150155] - ipv6: Factorise ip6_route_multipath_add(). (Antoine Tenart) [RHEL-150155] - ipv6: Rename rt6_nh.next to rt6_nh.list. (Antoine Tenart) [RHEL-150155] - ipv6: Don't pass net to ip6_route_info_append(). (Antoine Tenart) [RHEL-150155] - ipv6: Preallocate nhc_pcpu_rth_output in ip6_route_info_create(). (Antoine Tenart) [RHEL-150155] - ipv6: Preallocate rt->fib6_nh->rt6i_pcpu in ip6_route_info_create(). (Antoine Tenart) [RHEL-150155] - ipv6: Split ip6_route_info_create(). (Antoine Tenart) [RHEL-150155] - ipv6: Move nexthop_find_by_id() after fib6_info_alloc(). (Antoine Tenart) [RHEL-150155] - ipv6: Check GATEWAY in rtm_to_fib6_multipath_config(). (Antoine Tenart) [RHEL-150155] - ipv6: Move some validation from ip6_route_info_create() to rtm_to_fib6_config(). (Antoine Tenart) [RHEL-150155] - ipv6: Get rid of RTNL for SIOCDELRT and RTM_DELROUTE. (Antoine Tenart) [RHEL-150155] - ipv6: Validate RTA_GATEWAY of RTA_MULTIPATH in rtm_to_fib6_config(). (Antoine Tenart) [RHEL-150155] - net: Remove ->exit_batch_rtnl(). (Antoine Tenart) [RHEL-150155] - geneve: Convert geneve_exit_batch_rtnl() to ->exit_rtnl(). (Antoine Tenart) [RHEL-150155] - bareudp: Convert bareudp_exit_batch_rtnl() to ->exit_rtnl(). (Antoine Tenart) [RHEL-150155] - bonding: Convert bond_net_exit_batch_rtnl() to ->exit_rtnl(). (Antoine Tenart) [RHEL-150155] - bridge: Convert br_net_exit_batch_rtnl() to ->exit_rtnl(). (Antoine Tenart) [RHEL-150155] - xfrm: Convert xfrmi_exit_batch_rtnl() to ->exit_rtnl(). (Antoine Tenart) [RHEL-150155] - ipv6: Convert tunnel devices' ->exit_batch_rtnl() to ->exit_rtnl(). (Antoine Tenart) [RHEL-150155] - ipv4: ip_tunnel: Convert ip_tunnel_delete_nets() callers to ->exit_rtnl(). (Antoine Tenart) [RHEL-150155] - vxlan: Convert vxlan_exit_batch_rtnl() to ->exit_rtnl(). (Antoine Tenart) [RHEL-150155] - nexthop: Convert nexthop_net_exit_batch_rtnl() to ->exit_rtnl(). (Antoine Tenart) [RHEL-150155] - net: Add ->exit_rtnl() hook to struct pernet_operations. (Antoine Tenart) [RHEL-150155] - net: Add ops_undo_single for module load/unload. (Antoine Tenart) [RHEL-150155] - net: Factorise setup_net() and cleanup_net(). (Antoine Tenart) [RHEL-150155] - nexthop: Convert RTM_DELNEXTHOP to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - nexthop: Convert RTM_NEWNEXTHOP to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - nexthop: Remove redundant group len check in nexthop_create_group(). (Antoine Tenart) [RHEL-150155] - nexthop: Check NLM_F_REPLACE and NHA_ID in rtm_new_nexthop(). (Antoine Tenart) [RHEL-150155] - nexthop: Move NHA_OIF validation to rtm_to_nh_config_rtnl(). (Antoine Tenart) [RHEL-150155] - nexthop: Split nh_check_attr_group(). (Antoine Tenart) [RHEL-150155] - nexthop: Move nlmsg_parse() in rtm_to_nh_config() to rtm_new_nexthop(). (Antoine Tenart) [RHEL-150155] - net: devmem: do not WARN conditionally after netdev_rx_queue_restart() (Antoine Tenart) [RHEL-150155] - inet: fix lwtunnel_valid_encap_type() lock imbalance (Antoine Tenart) [RHEL-150155] - net: plumb extack in __dev_change_net_namespace() (Antoine Tenart) [RHEL-150155] - ipv4: fib: Convert RTM_NEWROUTE and RTM_DELROUTE to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config(). (Antoine Tenart) [RHEL-150155] - ipv4: fib: Hold rtnl_net_lock() in ip_rt_ioctl(). (Antoine Tenart) [RHEL-150155] - ipv4: fib: Hold rtnl_net_lock() for ip_fib_net_exit(). (Antoine Tenart) [RHEL-150155] - ipv4: fib: Namespacify fib_info hash tables. (Antoine Tenart) [RHEL-150155] - ipv4: fib: Add fib_info_hash_grow(). (Antoine Tenart) [RHEL-150155] - ipv4: fib: Remove fib_info_hash_size. (Antoine Tenart) [RHEL-150155] - ipv4: fib: Remove fib_info_laddrhash pointer. (Antoine Tenart) [RHEL-150155] - ipv4: fib: Make fib_info_hashfn() return struct hlist_head. (Antoine Tenart) [RHEL-150155] - ipv4: fib: Allocate fib_info_hash[] during netns initialisation. (Antoine Tenart) [RHEL-150155] - ipv4: fib: Allocate fib_info_hash[] and fib_info_laddrhash[] by kvcalloc(). (Antoine Tenart) [RHEL-150155] - ipv4: fib: Use cached net in fib_inetaddr_event(). (Antoine Tenart) [RHEL-150155] - net: Use rtnl_net_dev_lock() in register_netdevice_notifier_dev_net(). (Antoine Tenart) [RHEL-150155] - net-sysfs: restore behavior for not running devices (Antoine Tenart) [RHEL-150155] - dev: Use rtnl_net_dev_lock() in unregister_netdev(). (Antoine Tenart) [RHEL-150155] - net: Fix dev_net(dev) race in unregister_netdevice_notifier_dev_net(). (Antoine Tenart) [RHEL-150155] - net: Add net_passive_inc() and net_passive_dec(). (Antoine Tenart) [RHEL-150155] - arp: Convert SIOCDARP and SIOCSARP to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - net: fib_rules: Convert RTM_DELRULE to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - net: fib_rules: Add error_free label in fib_delrule(). (Antoine Tenart) [RHEL-150155] - net: fib_rules: Convert RTM_NEWRULE to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - net: fib_rules: Factorise fib_newrule() and fib_delrule(). (Antoine Tenart) [RHEL-150155] - ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure(). (Antoine Tenart) [RHEL-150155] - net: fib_rules: Split fib_nl2rule(). (Antoine Tenart) [RHEL-150155] - net: fib_rules: Pass net to fib_nl2rule() instead of skb. (Antoine Tenart) [RHEL-150155] - net: fib_rules: Don't check net in rule_exists() and rule_find(). (Antoine Tenart) [RHEL-150155] - rtnetlink: fix netns leak with rtnl_setlink() (Antoine Tenart) [RHEL-150155] - net-sysfs: remove rtnl_trylock from queue attributes (Antoine Tenart) [RHEL-150155] - net-sysfs: prevent uncleared queues from being re-added (Antoine Tenart) [RHEL-150155] - net-sysfs: move queue attribute groups outside the default groups (Antoine Tenart) [RHEL-150155] - net-sysfs: remove rtnl_trylock from device attributes (Antoine Tenart) [RHEL-150155] - net: revert RTNL changes in unregister_netdevice_many_notify() (Antoine Tenart) [RHEL-150155] - dev: Hold rtnl_net_lock() for dev_ifsioc(). (Antoine Tenart) [RHEL-150155] - dev: Remove devnet_rename_sem. (Antoine Tenart) [RHEL-150155] - ipv6: Convert inet6_rtm_deladdr() to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv6: Convert inet6_rtm_newaddr() to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv6: Move lifetime validation to inet6_rtm_newaddr(). (Antoine Tenart) [RHEL-150155] - ipv6: Set cfg.ifa_flags before device lookup in inet6_rtm_newaddr(). (Antoine Tenart) [RHEL-150155] - ipv6: Convert inet6_ioctl() to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv6: Hold rtnl_net_lock() in addrconf_init() and addrconf_cleanup(). (Antoine Tenart) [RHEL-150155] - ipv6: Hold rtnl_net_lock() in addrconf_dad_work(). (Antoine Tenart) [RHEL-150155] - ipv6: Hold rtnl_net_lock() in addrconf_verify_work(). (Antoine Tenart) [RHEL-150155] - ipv6: Convert net.ipv6.conf.${DEV}.XXX sysctl to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv6: Add __in6_dev_get_rtnl_net(). (Antoine Tenart) [RHEL-150155] - net: reduce RTNL hold duration in unregister_netdevice_many_notify() (part 2) (Antoine Tenart) [RHEL-150155] - net: reduce RTNL hold duration in unregister_netdevice_many_notify() (part 1) (Antoine Tenart) [RHEL-150155] - net: no longer hold RTNL while calling flush_all_backlogs() (Antoine Tenart) [RHEL-150155] - net: no longer assume RTNL is held in flush_all_backlogs() (Antoine Tenart) [RHEL-150155] - net: expedite synchronize_net() for cleanup_net() (Antoine Tenart) [RHEL-150155] - net: Hold rtnl_net_lock() in (un)?register_netdevice_notifier_dev_net(). (Antoine Tenart) [RHEL-150155] - net: Hold rtnl_net_lock() in (un)?register_netdevice_notifier_net(). (Antoine Tenart) [RHEL-150155] - net: Hold __rtnl_net_lock() in (un)?register_netdevice_notifier(). (Antoine Tenart) [RHEL-150155] - dev: Hold per-netns RTNL in (un)?register_netdev(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Add rtnl_net_lock_killable(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Try the outer netns attribute in rtnl_get_peer_net(). (Antoine Tenart) [RHEL-150155] - rtnetlink: fix error code in rtnl_newlink() (Antoine Tenart) [RHEL-150155] - rtnetlink: fix double call of rtnl_link_get_net_ifla() (Antoine Tenart) [RHEL-150155] - rtnetlink: fix rtnl_dump_ifinfo() error path (Antoine Tenart) [RHEL-150155] - rtnetlink: Register rtnl_dellink() and rtnl_setlink() with RTNL_FLAG_DOIT_PERNET_WIP. (Antoine Tenart) [RHEL-150155] - rtnetlink: Convert RTM_NEWLINK to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - netkit: Set IFLA_NETKIT_PEER_INFO to netkit_link_ops.peer_type. (Antoine Tenart) [RHEL-150155] - vxcan: Set VXCAN_INFO_PEER to vxcan_link_ops.peer_type. (Antoine Tenart) [RHEL-150155] - veth: Set VETH_INFO_PEER to veth_link_ops.peer_type. (Antoine Tenart) [RHEL-150155] - rtnetlink: Add peer_type in struct rtnl_link_ops. (Antoine Tenart) [RHEL-150155] - rtnetlink: Introduce struct rtnl_nets and helpers. (Antoine Tenart) [RHEL-150155] - rtnetlink: Remove __rtnl_link_register() (Antoine Tenart) [RHEL-150155] - rtnetlink: Protect link_ops by mutex. (Antoine Tenart) [RHEL-150155] - rtnetlink: Remove __rtnl_link_unregister(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Fix an error handling path in rtnl_newlink() (Antoine Tenart) [RHEL-150155] - rtnetlink: Fix kdoc of rtnl_af_register(). (Antoine Tenart) [RHEL-150155] - ipv4: Convert devinet_ioctl to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv4: Convert devinet_ioctl() to per-netns RTNL except for SIOCSIFFLAGS. (Antoine Tenart) [RHEL-150155] - ipv4: Convert devinet_sysctl_forward() to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - rtnetlink: Define rtnl_net_trylock(). (Antoine Tenart) [RHEL-150155] - ipv4: Convert check_lifetime() to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv4: Convert RTM_DELADDR to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv4: Use per-netns RTNL helpers in inet_rtm_newaddr(). (Antoine Tenart) [RHEL-150155] - ipv4: Convert RTM_NEWADDR to per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv4: Don't allocate ifa for 0.0.0.0 in inet_rtm_newaddr(). (Antoine Tenart) [RHEL-150155] - ipv4: Factorise RTM_NEWADDR validation to inet_validate_rtm(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Define RTNL_FLAG_DOIT_PERNET for per-netns RTNL doit(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Make per-netns RTNL dereference helpers to macro. (Antoine Tenart) [RHEL-150155] - rtnetlink: Remove rtnl_register() and rtnl_register_module(). (Antoine Tenart) [RHEL-150155] - can: gw: Use rtnl_register_many(). (Antoine Tenart) [RHEL-150155] - dcb: Use rtnl_register_many(). (Antoine Tenart) [RHEL-150155] - ipmr: Use rtnl_register_many(). (Antoine Tenart) [RHEL-150155] - ipv6: Use rtnl_register_many(). (Antoine Tenart) [RHEL-150155] - ipv4: Use rtnl_register_many(). (Antoine Tenart) [RHEL-150155] - net: Use rtnl_register_many(). (Antoine Tenart) [RHEL-150155] - neighbour: Use rtnl_register_many(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Use rtnl_register_many(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Panic when __rtnl_register_many() fails for builtin callers. (Antoine Tenart) [RHEL-150155] - rtnetlink: Protect struct rtnl_af_ops with SRCU. (Antoine Tenart) [RHEL-150155] - rtnetlink: Return int from rtnl_af_register(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Call rtnl_link_get_net_capable() in do_setlink(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Clean up rtnl_setlink(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Clean up rtnl_dellink(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Fetch IFLA_LINK_NETNSID in rtnl_newlink(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Call rtnl_link_get_net_capable() in rtnl_newlink(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Protect struct rtnl_link_ops with SRCU. (Antoine Tenart) [RHEL-150155] - rtnetlink: Move ops->validate to rtnl_newlink(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Move rtnl_link_ops_get() and retry to rtnl_newlink(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Move simple validation from __rtnl_newlink() to rtnl_newlink(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Factorise do_setlink() path from __rtnl_newlink(). (Antoine Tenart) [RHEL-150155] - rtnetlink: Allocate linkinfo[] as struct rtnl_newlink_tbs. (Antoine Tenart) [RHEL-150155] - net: do not acquire rtnl in fib_seq_sum() (Antoine Tenart) [RHEL-150155] - ipmr: use READ_ONCE() to read net->ipv[46].ipmr_seq (Antoine Tenart) [RHEL-150155] - ipv6: use READ_ONCE()/WRITE_ONCE() on fib6_table->fib_seq (Antoine Tenart) [RHEL-150155] - ipv4: use READ_ONCE()/WRITE_ONCE() on net->ipv4.fib_seq (Antoine Tenart) [RHEL-150155] - fib: rules: use READ_ONCE()/WRITE_ONCE() on ops->fib_rules_seq (Antoine Tenart) [RHEL-150155] - ipv4: Retire global IPv4 hash table inet_addr_lst. (Antoine Tenart) [RHEL-150155] - ipv4: Namespacify IPv4 address GC. (Antoine Tenart) [RHEL-150155] - ipv4: Use per-netns hash table in inet_lookup_ifaddr_rcu(). (Antoine Tenart) [RHEL-150155] - ipv4: Link IPv4 address to per-netns hash table. (Antoine Tenart) [RHEL-150155] - rtnetlink: Add assertion helpers for per-netns RTNL. (Antoine Tenart) [RHEL-150155] - rtnetlink: Add per-netns RTNL. (Antoine Tenart) [RHEL-150155] - ipv4: remove fib_info_devhash[] (Antoine Tenart) [RHEL-150155] - ipv4: remove fib_info_lock (Antoine Tenart) [RHEL-150155] - ipv4: use rcu in ip_fib_check_default() (Antoine Tenart) [RHEL-150155] - ipv4: remove fib_devindex_hashfn() (Antoine Tenart) [RHEL-150155] - ipv4: avoid quadratic behavior in FIB insertion of common address (Antoine Tenart) [RHEL-150155] - cgroup/dmem: avoid pool UAF (Waiman Long) [RHEL-113305] {CVE-2026-23195} - cgroup/dmem: avoid rcu warning when unregister region (Waiman Long) [RHEL-113305] - cgroup/dmem: fix NULL pointer dereference when setting max (Waiman Long) [RHEL-113305] {CVE-2026-23183} - cgroup: rstat: use LOCK CMPXCHG in css_rstat_updated (Waiman Long) [RHEL-113305] - cgroup/misc: fix misc_res_type kernel-doc warning (Waiman Long) [RHEL-113305] - selftests: cgroup: Use values_close_report in test_cpu (Waiman Long) [RHEL-113305] - selftests: cgroup: add values_close_report helper (Waiman Long) [RHEL-113305] - cgroup: Fix seqcount lockdep assertion in cgroup freezer (Waiman Long) [RHEL-113305] - cpuset: remove is_prs_invalid helper (Waiman Long) [RHEL-113305] - cpuset: remove impossible warning in update_parent_effective_cpumask (Waiman Long) [RHEL-113305] - cpuset: remove redundant special case for null input in node mask update (Waiman Long) [RHEL-113305] - cpuset: fix missing error return in update_cpumask (Waiman Long) [RHEL-113305] - cpuset: Use new excpus for nocpu error check when enabling root partition (Waiman Long) [RHEL-113305] - cpuset: fix failure to enable isolated partition when containing isolcpus (Waiman Long) [RHEL-113305] - Documentation: cgroup-v2: Sync manual toctree (Waiman Long) [RHEL-113305] - cpuset: use partition_cpus_change for setting exclusive cpus (Waiman Long) [RHEL-113305] - cpuset: use parse_cpulist for setting cpus.exclusive (Waiman Long) [RHEL-113305] - cpuset: introduce partition_cpus_change (Waiman Long) [RHEL-113305] - cpuset: refactor cpus_allowed_validate_change (Waiman Long) [RHEL-113305] - cpuset: refactor out validate_partition (Waiman Long) [RHEL-113305] - cpuset: introduce cpus_excl_conflict and mems_excl_conflict helpers (Waiman Long) [RHEL-113305] - cpuset: refactor CPU mask buffer parsing logic (Waiman Long) [RHEL-113305] - cpuset: Refactor exclusive CPU mask computation logic (Waiman Long) [RHEL-113305] - cpuset: change return type of is_partition_[in]valid to bool (Waiman Long) [RHEL-113305] - cpuset: remove unused assignment to trialcs->partition_root_state (Waiman Long) [RHEL-113305] - cpuset: move the root cpuset write check earlier (Waiman Long) [RHEL-113305] - cgroup/cpuset: Remove redundant rcu_read_lock/unlock() in spin_lock (Waiman Long) [RHEL-113305] - cgroup: Remove redundant rcu_read_lock/unlock() in spin_lock (Waiman Long) [RHEL-113305] - cgroup: replace global percpu_rwsem with per threadgroup resem when writing to cgroup.procs (Waiman Long) [RHEL-113305] - cgroup: relocate cgroup_attach_lock within cgroup_procs_write_start (Waiman Long) [RHEL-113305] - cgroup: refactor the cgroup_attach_lock code to make it clearer (Waiman Long) [RHEL-113305] - cgroup: WQ_PERCPU added to alloc_workqueue users (Waiman Long) [RHEL-113305] - cgroup: replace use of system_wq with system_percpu_wq (Waiman Long) [RHEL-113305] - cgroup: Remove unused local variables from cgroup_procs_write_finish() (Waiman Long) [RHEL-113305] - cgroup: Remove unused cgroup_subsys::post_attach (Waiman Long) [RHEL-113305] - cpuset: Defer flushing of the cpuset_migrate_mm_wq to task_work (Waiman Long) [RHEL-113305] - cpuset: Don't always flush cpuset_migrate_mm_wq in cpuset_write_resmask (Waiman Long) [RHEL-113305] - cgroup/cpuset: Prevent NULL pointer access in free_tmpmasks() (Waiman Long) [RHEL-113305] - selftests: cgroup: Make test_pids backwards compatible (Waiman Long) [RHEL-113305] - cpuset: add helpers for cpus read and cpuset_mutex locks (Waiman Long) [RHEL-113305] - cpuset: separate tmpmasks and cpuset allocation logic (Waiman Long) [RHEL-113305] - cpuset: decouple tmpmasks and cpumasks freeing in cgroup (Waiman Long) [RHEL-113305] - cgroup: Fix 64-bit division in cgroup.stat.local (Waiman Long) [RHEL-113305] - cgroup: selftests: Add tests for freezer time (Waiman Long) [RHEL-113305] - cgroup: cgroup.stat.local time accounting (Waiman Long) [RHEL-113305] - cpuset: remove redundant CS_ONLINE flag (Waiman Long) [RHEL-113305] - cgroup: Replace deprecated strcpy() with strscpy() (Waiman Long) [RHEL-113305] - cgroup: split cgroup_destroy_wq into 3 workqueues (Waiman Long) [RHEL-113305] {CVE-2025-39953} - docs: cgroup: fixed spelling mistakes in documentation (Waiman Long) [RHEL-113305] - cgroup: avoid null de-ref in css_rstat_exit() (Waiman Long) [RHEL-113305] - cgroup: Add compatibility option for content of /proc/cgroups (Waiman Long) [RHEL-113305] - selftests/cgroup: fix cpu.max tests (Waiman Long) [RHEL-113305] - cgroup: llist: avoid memory tears for llist_node (Waiman Long) [RHEL-113305] - selftests: cgroup: Fix missing newline in test_zswap_writeback_one (Waiman Long) [RHEL-113305] - selftests: cgroup: Allow longer timeout for kmem_dead_cgroups cleanup (Waiman Long) [RHEL-113305] - cgroup: remove per-cpu per-subsystem locks (Waiman Long) [RHEL-113305] - cgroup: make css_rstat_updated nmi safe (Waiman Long) [RHEL-113305] - cgroup: support to enable nmi-safe css_rstat_updated (Waiman Long) [RHEL-113305] - selftests: cgroup: Fix compilation on pre-cgroupns kernels (Waiman Long) [RHEL-113305] - selftests: cgroup: Optionally set up v1 environment (Waiman Long) [RHEL-113305] - selftests: cgroup: Add support for named v1 hierarchies in test_core (Waiman Long) [RHEL-113305] - selftests: cgroup_util: Add helpers for testing named v1 hierarchies (Waiman Long) [RHEL-113305] - Documentation: cgroup: add section explaining controller availability (Waiman Long) [RHEL-113305] - Revert "cgroup_freezer: cgroup_freezing: Check if not frozen" (Waiman Long) [RHEL-113305] - cgroup,freezer: fix incomplete freezing when attaching tasks (Waiman Long) [RHEL-113305] - llist: make llist_add_batch() a static inline (Waiman Long) [RHEL-113305] - sched_ext: Convert cgroup BPF support to use cgroup_lifetime_notifier (Waiman Long) [RHEL-113305] - sched_ext: Introduce cgroup_lifetime_notifier (Waiman Long) [RHEL-113305] - cgroup: Minor reorganization of cgroup_create() (Waiman Long) [RHEL-113305] - cgroup, docs: cpu controller's interaction with various scheduling policies (Waiman Long) [RHEL-113305] - cgroup, docs: convert space indentation to tab indentation (Waiman Long) [RHEL-113305] - cgroup: avoid per-cpu allocation of size zero rstat cpu locks (Waiman Long) [RHEL-113305] - cgroup, docs: be specific about bandwidth control of rt processes (Waiman Long) [RHEL-113305] - cgroup: document the rstat per-cpu initialization (Waiman Long) [RHEL-113305] - cgroup: helper for checking rstat participation of css (Waiman Long) [RHEL-113305] - cgroup: use subsystem-specific rstat locks to avoid contention (Waiman Long) [RHEL-113305] - cgroup: use separate rstat trees for each subsystem (Waiman Long) [RHEL-113305] - cgroup: compare css to cgroup::self in helper for distingushing css (Waiman Long) [RHEL-113305] - cgroup: warn on rstat usage by early init subsystems (Waiman Long) [RHEL-113305] - cgroup/rstat: Improve cgroup_rstat_push_children() documentation (Waiman Long) [RHEL-113305] - cgroup: fix goto ordering in cgroup_init() (Waiman Long) [RHEL-113305] - cgroup: fix pointer check in css_rstat_init() (Waiman Long) [RHEL-113305] - cgroup: add helper for checking when css is cgroup::self (Waiman Long) [RHEL-113305] - cgroup/cpuset-v1: Add missing support for cpuset_v2_mode (Waiman Long) [RHEL-113305] - cgroup: Fix compilation issue due to cgroup_mutex not being exported (Waiman Long) [RHEL-113305] - mm/memcg: Introduce css_stat_barrier() for freeing percpu stats (Waiman Long) [RHEL-113305] - cgroup: change rstat function signatures from cgroup-based to css-based (Waiman Long) [RHEL-113305] - cgroup: move rstat base stat objects into their own struct (Waiman Long) [RHEL-113305] - cgroup: rstat: call cgroup_rstat_updated_list with cgroup_rstat_lock (Waiman Long) [RHEL-113305] - cgroup: rstat: Cleanup flushing functions and locking (Waiman Long) [RHEL-113305] - mm: Fix a build breakage in memcontrol-v1.c (Waiman Long) [RHEL-113305] - blk-cgroup: Simplify policy files registration (Waiman Long) [RHEL-113305] - cgroup: Update file naming comment (Waiman Long) [RHEL-113305] - cgroup: Add deprecation message to legacy freezer controller (Waiman Long) [RHEL-113305] - mm: Add transformation message for per-memcg swappiness (Waiman Long) [RHEL-113305] - RFC cgroup/cpuset-v1: Add deprecation messages to sched_relax_domain_level (Waiman Long) [RHEL-113305] - cgroup/cpuset-v1: Add deprecation messages to memory_migrate (Waiman Long) [RHEL-113305] - cgroup/cpuset-v1: Add deprecation messages to mem_exclusive and mem_hardwall (Waiman Long) [RHEL-113305] - cgroup: Print message when /proc/cgroups is read on v2-only system (Waiman Long) [RHEL-113305] - cgroup/blkio: Add deprecation messages to reset_stats (Waiman Long) [RHEL-113305] - cgroup/cpuset-v1: Add deprecation messages to memory_spread_page and memory_spread_slab (Waiman Long) [RHEL-113305] - cgroup/cpuset-v1: Add deprecation messages to sched_load_balance and memory_pressure_enabled (Waiman Long) [RHEL-113305] - cgroup, docs: Be explicit about independence of RT_GROUP_SCHED and non-cpu controllers (Waiman Long) [RHEL-113305] - cgroup/rstat: Fix forceidle time in cpu.stat (Waiman Long) [RHEL-113305] - cgroup/misc: Remove unused misc_cg_res_total_usage (Waiman Long) [RHEL-113305] - cgroup: update comment about dropping cgroup kn refs (Waiman Long) [RHEL-113305] - firmware: arm_scmi: Fix NULL dereference on notify error path (Steve Dunnagan) [RHEL-120360] - redhat/configs: Enable ARM_SCMI_QUIRKS (Steve Dunnagan) [RHEL-120360] - redhat/configs: Disable IMX_SCMI_CPU_EXT (Steve Dunnagan) [RHEL-120360] - redhat/configs: Disable IMX_SCMI_LMM_EXT (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Fix premature SCMI_XFER_FLAG_IS_RAW clearing in raw mode (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Skip RAW initialization on failure (Steve Dunnagan) [RHEL-120360] - include: trace: Fix inflight count helper on failed initialization (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Account for failed debug initialization (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Simplify printks with pOF format (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: imx: Discover MISC board info from the system manager (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: imx: Support retrieving MISC protocol configuration info (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: imx: Discover MISC build info from the system manager (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: imx: Add documentation for MISC_BOARD_INFO (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: quirk: Prevent writes to string constants (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Fix function name typo in scmi_perf_proto_ops struct (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Mark VirtIO ready before registering scmi_virtio_driver (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Constify struct scmi_transport_ops (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Constify struct scmi_voltage_proto_ops (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Convert to SYSTEM_SLEEP_PM_OPS (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Avoid notifier registration for unsupported events (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: power_control: Ensure SCMI_SYSPOWER_IDLE is set early during resume (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Add power management operations to SCMI bus (Steve Dunnagan) [RHEL-120360] - include: trace: Add tracepoint support for inflight xfer count (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Track number of inflight SCMI transfers (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Add support for debug counter decrement (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Fix up turbo frequencies selection (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: quirk: Force perf level get fastchannel (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: quirk: Fix CLOCK_DESCRIBE_RATES triplet (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Add common framework to handle firmware quirks (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Ensure that the message-id supports fastchannel (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: imx: Add i.MX95 CPU Protocol (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: imx: Add i.MX95 LMM protocol (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: imx: Add LMM and CPU documentation (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Add polling support to raw mode (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Exclude transport devices from bus matching (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Assign correct parent to arm-scmi platform device (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Refactor error logging from SCMI device creation to single helper (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Refactor device matching logic to eliminate duplication (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Ensure scmi_devices are always matched by name as well (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Fix timeout checks on polling path (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Balance device refcount when destroying devices (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: use ioread64() instead of ioread64_hi_lo() (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Emit modalias for SCMI devices (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Add name and protocol id attributes (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Relax duplicate name constraint across protocol ids (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: imx: Correct tx size of scmi_imx_misc_ctrl_set (Steve Dunnagan) [RHEL-120360] - arm_scmi: don't mess with ->d_parent->d_name (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Add aliases to transport modules (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Add module aliases to i.MX vendor protocols (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Support vendor protocol modules autoloading (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Allow transport properties for multiple instances (Steve Dunnagan) [RHEL-120360] - firmware: Switch back to struct platform_driver::remove() (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Relocate atomic_threshold to scmi_desc (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Use max_msg and max_msg_size devicetree properties (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Calculate virtio PDU max size dynamically (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Account for SHMEM memory overhead (Steve Dunnagan) [RHEL-120360] - firmware: arm_scmi: Support 'reg-io-width' property for shared memory (Steve Dunnagan) [RHEL-120360] - x86/kvm: Avoid freeing stack-allocated node in kvm_async_pf_queue_task (Ryosuke Yasuoka) [RHEL-141540] - redhat: add a weak relationship between modules-internal and selftests (Jan Stancek) [RHEL-102523] - i2c: i801: Add support for Intel Nova Lake-S (Steve Best) [RHEL-129782] - i2c: i801: Fix the Intel Diamond Rapids features (Steve Best) [RHEL-129782] - i2c: i801: Add support for Intel Diamond Rapids (Steve Best) [RHEL-129782] - i2c: i801: Add support for Intel Wildcat Lake-U (Steve Best) [RHEL-129782] - s390/pci: Avoid deadlock between PCI error recovery and mlx5 crdump (Mete Durlu) [RHEL-157932] - tracing: Add NULL pointer check to trigger_data_free() (Jerome Marchand) [RHEL-151695] - tracing: Wake up poll waiters for hist files when removing an event (Jerome Marchand) [RHEL-151695] - tracing: Fix checking of freed trace_event_file for hist files (Jerome Marchand) [RHEL-151695] - fgraph: Do not call handlers direct when not using ftrace_ops (Jerome Marchand) [RHEL-151695] - tracing: ring-buffer: Fix to check event length before using (Jerome Marchand) [RHEL-151695] - function_graph: Restore direct mode when callbacks drop to one (Jerome Marchand) [RHEL-151695] - tracing: Fix to set write permission to per-cpu buffer_size_kb (Jerome Marchand) [RHEL-151695] - tracing: Fix false sharing in hwlat get_sample() (Jerome Marchand) [RHEL-151695] - x86/fgraph,bpf: Switch kprobe_multi program stack unwind to hw_regs path (Jerome Marchand) [RHEL-151695] - x86/fgraph: Fix return_to_handler regs.rsp value (Jerome Marchand) [RHEL-151695] - tracing: Remove duplicate ENABLE_EVENT_STR and DISABLE_EVENT_STR macros (Jerome Marchand) [RHEL-151695] - tracing: Properly process error handling in event_hist_trigger_parse() (Jerome Marchand) [RHEL-151695] - x86/fgraph,bpf: Fix stack ORC unwind from kprobe_multi return probe (Jerome Marchand) [RHEL-151695] - tracing: Fix the bug where bpf_get_stackid returns -EFAULT on the ARM64 (Jerome Marchand) [RHEL-151695] - tracing: Fix ftrace event field alignments (Jerome Marchand) [RHEL-151695] - tracing: Fix crash on synthetic stacktrace field usage (Jerome Marchand) [RHEL-151695] {CVE-2026-23088} - ring-buffer: Avoid softlockup in ring_buffer_resize() during memory free (Jerome Marchand) [RHEL-151695] - selftests/ftrace: traceonoff_triggers: strip off names (Jerome Marchand) [RHEL-151695] - tracing: Do not register unsupported perf events (Jerome Marchand) [RHEL-151695] {CVE-2025-71125} - tracing: Fix fixed array of synthetic event (Jerome Marchand) [RHEL-151695] - tracing: Fix enabling of tracing on file release (Jerome Marchand) [RHEL-151695] - fgraph: Check ftrace_pids_enabled on registration for early filtering (Jerome Marchand) [RHEL-151695] - fgraph: Initialize ftrace_ops->private for function graph ops (Jerome Marchand) [RHEL-151695] - ftrace: Avoid redundant initialization in register_ftrace_direct (Jerome Marchand) [RHEL-151695] - tracefs: fix a leak in eventfs_create_events_dir() (Jerome Marchand) [RHEL-151695] - tracing: Fix WARN_ON in tracing_buffers_mmap_close for split VMAs (Jerome Marchand) [RHEL-151695] {CVE-2025-68329} - selftests/tracing: Run sample events to clear page cache events (Jerome Marchand) [RHEL-151695] - tracing/tools: Fix incorrcet short option in usage text for --threads (Jerome Marchand) [RHEL-151695] - tracing: Fix memory leaks in create_field_var() (Jerome Marchand) [RHEL-151695] - ring-buffer: Do not warn in ring_buffer_map_get_reader() when reader catches up (Jerome Marchand) [RHEL-151695] {CVE-2025-68186} - ftrace: bpf: Fix IPMODIFY + DIRECT in modify_ftrace_direct() (Jerome Marchand) [RHEL-151695] - ftrace: Fix BPF fexit with livepatch (Jerome Marchand) [RHEL-151695] - tracing: Fix race condition in kprobe initialization causing NULL pointer dereference (Jerome Marchand) [RHEL-151695] {CVE-2025-40042} - ftrace: Fix softlockup in ftrace_module_enable (Jerome Marchand) [RHEL-151695] {CVE-2025-68173} - Documentation: trace: historgram-design: Separate sched_waking histogram section heading and the following diagram (Jerome Marchand) [RHEL-151695] - tracing: dynevent: Add a missing lockdown check on dynevent (Jerome Marchand) [RHEL-151695] {CVE-2025-40021} - ftrace/samples: Fix function size computation (Jerome Marchand) [RHEL-151695] - powerpc/thp: tracing: Hide hugepage events under CONFIG_PPC_BOOK3S_64 (Jerome Marchand) [RHEL-151695] - selftests/tracing: Fix false failure of subsystem event test (Jerome Marchand) [RHEL-151695] - selftests: tracing: Use mutex_unlock for testing glob filter (Jerome Marchand) [RHEL-151695] - tracing: PM: Remove unused clock events (Jerome Marchand) [RHEL-151695] - ring-buffer: Removed unnecessary if() goto out where out is the next line (Jerome Marchand) [RHEL-151695] - Documentation: trace: Refactor toctree (Jerome Marchand) [RHEL-151695] - arm64: Kconfig: Remove selecting replaced HAVE_FUNCTION_GRAPH_RETVAL (Jerome Marchand) [RHEL-151695] - atomic64: Use arch_spin_locks instead of raw_spin_locks (Jerome Marchand) [RHEL-151695] - tracing: Add ftrace_fill_perf_regs() for perf event (Jerome Marchand) [RHEL-151695] - tracing: Add ftrace_partial_regs() for converting ftrace_regs to pt_regs (Jerome Marchand) [RHEL-151695] - fgraph: Replace fgraph_ret_regs with ftrace_regs (Jerome Marchand) [RHEL-151695] - tracing/kprobes: Fix to free objects when failed to copy a symbol (Jerome Marchand) [RHEL-151695] - ftrace: Rename ftrace_regs_return_value to ftrace_regs_get_return_value (Jerome Marchand) [RHEL-151695] - ftrace: Use arch_ftrace_regs() for ftrace_regs_*() macros (Jerome Marchand) [RHEL-151695] - ftrace: Consolidate ftrace_regs accessor functions for archs using pt_regs (Jerome Marchand) [RHEL-151695] - ftrace: Make ftrace_regs abstract from direct use (Jerome Marchand) [RHEL-151695] - docs: fix WARNING document not included in any toctree (Jerome Marchand) [RHEL-151695] - tracing: Add a comment about ftrace_regs definition (Jerome Marchand) [RHEL-151695] - net: openvswitch: Avoid releasing netdev before teardown completes (Toke Høiland-Jørgensen) [RHEL-155383] - ucount: check for CAP_SYS_RESOURCE using ns_capable_noaudit() (Ondrej Mosnacek) [RHEL-145590] - ipc: don't audit capability check in ipc_permissions() (Ondrej Mosnacek) [RHEL-145590] - ALSA: aloop: Fix racy access at PCM trigger (CKI Backport Bot) [RHEL-150879] {CVE-2026-23191} - nilfs2: fix deadlock warnings caused by lock dependency in init_nilfs() (Ming Lei) [RHEL-153616] - md/raid0: convert raid0_make_request() to use bio_submit_split_bioset() (Ming Lei) [RHEL-122816] - md/md-linear: convert to use bio_submit_split_bioset() (Ming Lei) [RHEL-122816] - md/raid5: convert to use bio_submit_split_bioset() (Ming Lei) [RHEL-122816] - md/raid10: convert read/write to use bio_submit_split_bioset() (Ming Lei) [RHEL-122816] - md/raid10: add a new r10bio flag R10BIO_Returned (Ming Lei) [RHEL-122816] - md/raid1: convert to use bio_submit_split_bioset() (Ming Lei) [RHEL-122816] - md/raid0: convert raid0_handle_discard() to use bio_submit_split_bioset() (Ming Lei) [RHEL-122816] - nvme: fix admin queue leak on controller reset (Ming Lei) [RHEL-143907] - block: use trylock to avoid lockdep circular dependency in sysfs (Ming Lei) [RHEL-154184] - block: fix race between set_blocksize and read paths (Ming Lei) [RHEL-153616] - efivarfs: fix error propagation in efivar_entry_get() (CKI Backport Bot) [RHEL-150117] {CVE-2026-23156} - powerpc, perf: Check that current->mm is alive before getting user callchain (Michael Petlan) [RHEL-145265] - accel/qaic: enable drivers/accel/qaic configuration in RHEL. (John Wiele) [RHEL-149722] - accel/qaic: Merge from upstream v6.18..v6.19 (John Wiele) [RHEL-149722] - libceph: adapt ceph_x_challenge_blob hashing and msgr1 message signing (Ilya Dryomov) [RHEL-155461] - libceph: add support for CEPH_CRYPTO_AES256KRB5 (Ilya Dryomov) [RHEL-155461] - libceph: introduce ceph_crypto_key_prepare() (Ilya Dryomov) [RHEL-155461] - libceph: generalize ceph_x_encrypt_offset() and ceph_x_encrypt_buflen() (Ilya Dryomov) [RHEL-155461] - libceph: define and enforce CEPH_MAX_KEY_LEN (Ilya Dryomov) [RHEL-155461] - libceph: Remove unused ceph_crypto_key_encode (Ilya Dryomov) [RHEL-155461] - ice: Fix PTP NULL pointer dereference during VSI rebuild (CKI Backport Bot) [RHEL-150249] {CVE-2026-23210} - net/sched: cls_u32: use skb_header_pointer_careful() (Paolo Abeni) [RHEL-150408] {CVE-2026-23204} - net: add skb_header_pointer_careful() helper (Paolo Abeni) [RHEL-150408] - mm/damon/sysfs: cleanup attrs subdirs on context dir setup failure (Rafael Aquini) [RHEL-150482] {CVE-2026-23144} - arch_topology: Provide a stub topology_core_has_smt() for !CONFIG_GENERIC_ARCH_TOPOLOGY (Charles Mirabile) [RHEL-143323] - perf: arm_pmuv3: Don't use PMCCNTR_EL0 on SMT cores (Charles Mirabile) [RHEL-143323] - mshv: handle gpa intercepts for arm64 (Paolo Bonzini) [RHEL-146632] - mshv: add definitions for arm64 gpa intercepts (Paolo Bonzini) [RHEL-146632] - mshv: Add __user attribute to argument passed to access_ok() (Paolo Bonzini) [RHEL-146632] - mshv: Store the result of vfs_poll in a variable of type __poll_t (Paolo Bonzini) [RHEL-146632] - mshv: Align huge page stride with guest mapping (Paolo Bonzini) [RHEL-146632] - mshv: release mutex on region invalidation failure (Paolo Bonzini) [RHEL-146632] - mshv: hide x86-specific functions on arm64 (Paolo Bonzini) [RHEL-146632] - mshv: Initialize local variables early upon region invalidation (Paolo Bonzini) [RHEL-146632] - mshv: Use PMD_ORDER instead of HPAGE_PMD_ORDER when processing regions (Paolo Bonzini) [RHEL-146632] - mshv: Cleanly shutdown root partition with MSHV (Paolo Bonzini) [RHEL-146632] - mshv: Use reboot notifier to configure sleep state (Paolo Bonzini) [RHEL-146632] - mshv: Add definitions for MSHV sleep state configuration (Paolo Bonzini) [RHEL-146632] - mshv: Add support for movable memory regions (Paolo Bonzini) [RHEL-146632] - mshv: Add refcount and locking to mem regions (Paolo Bonzini) [RHEL-146632] - mshv: Fix huge page handling in memory region traversal (Paolo Bonzini) [RHEL-146632] - mshv: Move region management to mshv_regions.c (Paolo Bonzini) [RHEL-146632] - mshv: Centralize guest memory region destruction (Paolo Bonzini) [RHEL-146632] - mshv: Refactor and rename memory region handling functions (Paolo Bonzini) [RHEL-146632] - mshv: adjust interrupt control structure for ARM64 (Paolo Bonzini) [RHEL-146632] - mshv: Add ioctl for self targeted passthrough hvcalls (Paolo Bonzini) [RHEL-146632] - mshv: Extend create partition ioctl to support cpu features (Paolo Bonzini) [RHEL-146632] - mshv: Allow mappings that overlap in uaddr (Paolo Bonzini) [RHEL-146632] - mshv: Fix create memory region overlap check (Paolo Bonzini) [RHEL-146632] - mshv: add WQ_PERCPU to alloc_workqueue users (Paolo Bonzini) [RHEL-146632] - hyperv: Add two new hypercall numbers to guest ABI public header (Paolo Bonzini) [RHEL-146632] - mshv: Introduce new hypercall to map stats page for L1VH partitions (Paolo Bonzini) [RHEL-146632] - mshv: Allocate vp state page for HVCALL_MAP_VP_STATE_PAGE on L1VH (Paolo Bonzini) [RHEL-146632] - mshv: Get the vmm capabilities offered by the hypervisor (Paolo Bonzini) [RHEL-146632] - mshv: Add the HVCALL_GET_PARTITION_PROPERTY_EX hypercall (Paolo Bonzini) [RHEL-146632] - mshv: Only map vp->vp_stats_pages if on root scheduler (Paolo Bonzini) [RHEL-146632] - mshv: Fix deposit memory in MSHV_ROOT_HVCALL (Paolo Bonzini) [RHEL-146632] - mshv: Fix VpRootDispatchThreadBlocked value (Paolo Bonzini) [RHEL-146632] - ixgbevf: add missing negotiate_features op to Hyper-V ops table (Michal Schmidt) [RHEL-155353] - io_uring: graduate to full support (Jeff Moyer) [RHEL-120700] - netfilter: nf_tables: fix use-after-free in nf_tables_addchain() (Florian Westphal) [RHEL-153273] {CVE-2026-23231} - netfilter: nf_tables: fix inverted genmask check in nft_map_catchall_activate() (CKI Backport Bot) [RHEL-149753] {CVE-2026-23111} - macvlan: observe an RCU grace period in macvlan_common_newlink() error path (Hangbin Liu) [RHEL-150231] - macvlan: fix error recovery in macvlan_common_newlink() (Hangbin Liu) [RHEL-150231] {CVE-2026-23209} - smb: client: fix broken multichannel with krb5+signing (Paulo Alcantara) [RHEL-152652] - smb: client: fix regression with signing (Paulo Alcantara) [RHEL-152652] - spi: tegra210-quad: Protect curr_xfer check in IRQ handler (Charles Mirabile) [RHEL-145815] - spi: tegra210-quad: Protect curr_xfer clearing in tegra_qspi_non_combined_seq_xfer (Charles Mirabile) [RHEL-145815] - spi: tegra210-quad: Protect curr_xfer in tegra_qspi_combined_seq_xfer (Charles Mirabile) [RHEL-145815] - spi: tegra210-quad: Protect curr_xfer assignment in tegra_qspi_setup_transfer_one (Charles Mirabile) [RHEL-145815] - spi: tegra210-quad: Move curr_xfer read inside spinlock (Charles Mirabile) [RHEL-145815] - spi: tegra210-quad: Return IRQ_HANDLED when timeout already processed transfer (Charles Mirabile) [RHEL-145815] - migrate: correct lock ordering for hugetlb file folios (Luiz Capitulino) [RHEL-147272] {CVE-2026-23097} - selftests/memfd: use IPC semaphore instead of SIGSTOP/SIGCONT (Aristeu Rozanski) [RHEL-132213] - tcp: reclaim 8 bytes in struct request_sock_queue (Guillaume Nault) [RHEL-123211] - tcp: move mtu_info to remove two 32bit holes (Guillaume Nault) [RHEL-123211] - tcp: move tcp_clean_acked to tcp_sock_read_tx group (Guillaume Nault) [RHEL-123211] - tcp: move recvmsg_inq to tcp_sock_read_txrx (Guillaume Nault) [RHEL-123211] - tcp: move tcp->rcv_tstamp to tcp_sock_write_txrx group (Guillaume Nault) [RHEL-123211] - tcp: remove CACHELINE_ASSERT_GROUP_SIZE() uses (Guillaume Nault) [RHEL-123211] - net: move sk->sk_err_soft and sk->sk_sndbuf (Guillaume Nault) [RHEL-123211] - net: move sk_uid and sk_protocol to sock_read_tx (Guillaume Nault) [RHEL-123211] - tcp: move icsk_clean_acked to a better location (Guillaume Nault) [RHEL-123211] - x86/boot: Handle relative CONFIG_EFI_SBAT_FILE file paths (Jan Stancek) [RHEL-132871] - timekeeping: Fix timex status validation for auxiliary clocks (Waiman Long) [RHEL-152433] - time/sched_clock: Use ACCESS_PRIVATE() to evaluate hrtimer::function (Waiman Long) [RHEL-152433] - hrtimer: Fix trace oddity (Waiman Long) [RHEL-152433] - clocksource: Reduce watchdog readout delay limit to prevent false positives (Waiman Long) [RHEL-152433] - timekeeping: Adjust the leap state for the correct auxiliary timekeeper (Waiman Long) [RHEL-152433] {CVE-2026-23106} - hrtimer: Fix softirq base check in update_needs_ipi() (Waiman Long) [RHEL-152433] - time: Fix a few typos in time[r] related code comments (Waiman Long) [RHEL-152433] - timers/migration: Remove dead code handling idle CPU checking for remote timers (Waiman Long) [RHEL-152433] - timers/migration: Remove unused "cpu" parameter from tmigr_get_group() (Waiman Long) [RHEL-152433] - timers/migration: Assert that hotplug preparing CPU is part of stable active hierarchy (Waiman Long) [RHEL-152433] - timers/migration: Fix imbalanced NUMA trees (Waiman Long) [RHEL-152433] - timers/migration: Remove locking on group connection (Waiman Long) [RHEL-152433] - timers/migration: Convert "while" loops to use "for" (Waiman Long) [RHEL-152433] - timekeeping: Fix error code in tk_aux_sysfs_init() (Waiman Long) [RHEL-152433] - timers: Fix NULL function pointer race in timer_shutdown_sync() (Waiman Long) [RHEL-152433] {CVE-2025-68214} - timekeeping: Fix resource leak in tk_aux_sysfs_init() error paths (Waiman Long) [RHEL-152433] - tick/sched: Fix bogus condition in report_idle_softirq() (Waiman Long) [RHEL-152433] - timekeeping: Fix aux clocks sysfs initialization loop bound (Waiman Long) [RHEL-152433] - time: export timespec64_add_safe() symbol (Waiman Long) [RHEL-152433] - time: Build generic update_vsyscall() only with generic time vDSO (Waiman Long) [RHEL-152433] - time/sched_clock: Export symbol for sched_clock register function (Waiman Long) [RHEL-152433] - time: Fix spelling mistakes in comments (Waiman Long) [RHEL-152433] - clocksource: Print durations for sync check unconditionally (Waiman Long) [RHEL-152433] - hrtimer: Reorder branches in hrtimer_clockid_to_base() (Waiman Long) [RHEL-152433] - hrtimer: Remove hrtimer_clock_base:: Get_time (Waiman Long) [RHEL-152433] - hrtimer: Use hrtimer_cb_get_time() helper (Waiman Long) [RHEL-152433] - media: pwm-ir-tx: Avoid direct access to hrtimer clockbase (Waiman Long) [RHEL-152433] - lib: test_objpool: Avoid direct access to hrtimer clockbase (Waiman Long) [RHEL-152433] - sched/core: Avoid direct access to hrtimer clockbase (Waiman Long) [RHEL-152433] - timers/itimer: Avoid direct access to hrtimer clockbase (Waiman Long) [RHEL-152433] - posix-timers: Avoid direct access to hrtimer clockbase (Waiman Long) [RHEL-152433] - jiffies: Remove obsolete SHIFTED_HZ comment (Waiman Long) [RHEL-152433] - copy_process: pass clone_flags as u64 across calltree (Waiman Long) [RHEL-152433] - hrtimers: Unconditionally update target CPU base after offline timer migration (Waiman Long) [RHEL-152433] - vdso/vsyscall: Avoid slow division loop in auxiliary clock update (Waiman Long) [RHEL-152433] - clocksource: Improve randomness in clocksource_verify_choose_cpus() (Waiman Long) [RHEL-152433] - cpumask: introduce cpumask_random() (Waiman Long) [RHEL-152433] - bitmap: generalize node_random() (Waiman Long) [RHEL-152433] - vdso/vsyscall: Update auxiliary clock data in the datapage (Waiman Long) [RHEL-152433] - vdso: Introduce aux_clock_resolution_ns() (Waiman Long) [RHEL-152433] - vdso/vsyscall: Split up __arch_update_vsyscall() into __arch_update_vdso_clock() (Waiman Long) [RHEL-152433] - vdso/vsyscall: Introduce a helper to fill clock configurations (Waiman Long) [RHEL-152433] - timekeeping: Remove the temporary CLOCK_AUX workaround (Waiman Long) [RHEL-152433] - timekeeping: Provide ktime_get_clock_ts64() (Waiman Long) [RHEL-152433] - timekeeping: Provide interface to control auxiliary clocks (Waiman Long) [RHEL-152433] - timekeeping: Provide update for auxiliary timekeepers (Waiman Long) [RHEL-152433] - timekeeping: Provide adjtimex() for auxiliary clocks (Waiman Long) [RHEL-152433] - timekeeping: Prepare do_adtimex() for auxiliary clocks (Waiman Long) [RHEL-152433] - timekeeping: Make do_adjtimex() reusable (Waiman Long) [RHEL-152433] - timekeeping: Add auxiliary clock support to __timekeeping_inject_offset() (Waiman Long) [RHEL-152433] - timekeeping: Make timekeeping_inject_offset() reusable (Waiman Long) [RHEL-152433] - timekeeping: Provide time setter for auxiliary clocks (Waiman Long) [RHEL-152433] - timekeeping: Add minimal posix-timers support for auxiliary clocks (Waiman Long) [RHEL-152433] - timekeeping: Provide time getters for auxiliary clocks (Waiman Long) [RHEL-152433] - timekeeping: Update auxiliary timekeepers on clocksource change (Waiman Long) [RHEL-152433] - timekeeping: Add AUX offset to struct timekeeper (Waiman Long) [RHEL-152433] - ntp: Use ktime_get_ntp_seconds() (Waiman Long) [RHEL-152433] - timekeeping: Provide ktime_get_ntp_seconds() (Waiman Long) [RHEL-152433] - timekeeping: Introduce auxiliary timekeepers (Waiman Long) [RHEL-152433] - timekeeping: Add clock_valid flag to timekeeper (Waiman Long) [RHEL-152433] - timekeeping: Prepare timekeeping_update_from_shadow() (Waiman Long) [RHEL-152433] - timekeeping: Make __timekeeping_advance() reusable (Waiman Long) [RHEL-152433] - ntp: Rename __do_adjtimex() to ntp_adjtimex() (Waiman Long) [RHEL-152433] - ntp: Add timekeeper ID arguments to public functions (Waiman Long) [RHEL-152433] - ntp: Add support for auxiliary timekeepers (Waiman Long) [RHEL-152433] - redhat/configs: Add CONFIG_POSIX_AUX_CLOCKS=n (Waiman Long) [RHEL-152433] - time: Introduce auxiliary POSIX clocks (Waiman Long) [RHEL-152433] - timekeeping: Introduce timekeeper ID (Waiman Long) [RHEL-152433] - timekeeping: Avoid double notification in do_adjtimex() (Waiman Long) [RHEL-152433] - timekeeping: Cleanup kernel doc of __ktime_get_real_seconds() (Waiman Long) [RHEL-152433] - timekeeping: Remove hardcoded access to tk_core (Waiman Long) [RHEL-152433] - clocksource: Use cpumask_next_wrap() in clocksource_watchdog() (Waiman Long) [RHEL-152433] - clocksource: Use cpumask_any_but() in clocksource_verify_choose_cpus() (Waiman Long) [RHEL-152433] - timers/migration: Clean up the loop in tmigr_quick_check() (Waiman Long) [RHEL-152433] - PCI: Add PCI_BRIDGE_NO_ALIAS quirk for ASPEED AST1150 (Myron Stowe) [RHEL-143320] - PCI: Add ASPEED vendor ID to pci_ids.h (Myron Stowe) [RHEL-143320] - PCI/MSI: Add an option to write MSIX ENTRY_DATA before any reads (Myron Stowe) [RHEL-143320] - s390/ap: Expose ap_bindings_complete_count counter via sysfs (Mete Durlu) [RHEL-155896] - RDMA/bnxt_re: convert timeouts to secs_to_jiffies() (Sreekanth Reddy) [RHEL-108694] - RDMA/bnxt_re: Fix return code of bnxt_re_configure_cc (Sreekanth Reddy) [RHEL-108694] - RDMA/bnxt_re: Fix missing error handling for tx_queue (Sreekanth Reddy) [RHEL-108694] - RDMA/bnxt_re: Fix incorrect display of inactivity_cp in debugfs output (Sreekanth Reddy) [RHEL-108694] - RDMA/bnxt_re: Use macro instead of hard coded value (Sreekanth Reddy) [RHEL-108694] - RDMA/bnxt_re: Support 2G message size (Sreekanth Reddy) [RHEL-108694] - RDMA/bnxt_re: Fix size of uverbs_copy_to() in BNXT_RE_METHOD_GET_TOGGLE_MEM (Sreekanth Reddy) [RHEL-108694] - RDMA/bnxt_re: Support extended stats for Thor2 VF (Sreekanth Reddy) [RHEL-108694] - selftests: net: tests for add double tunneling GRO/GSO (Guillaume Nault) [RHEL-145367] - geneve: use GRO hint option in the RX path (Guillaume Nault) [RHEL-145367] - geneve: extract hint option at GRO stage (Guillaume Nault) [RHEL-145367] - geneve: add GRO hint output path (Guillaume Nault) [RHEL-145367] - geneve: pass the geneve device ptr to geneve_build_skb() (Guillaume Nault) [RHEL-145367] - geneve: constify geneve_hlen() (Guillaume Nault) [RHEL-145367] - geneve: add netlink support for GRO hint (Guillaume Nault) [RHEL-145367] - vxlan: expose gso partial features for tunnel offload (Guillaume Nault) [RHEL-145367] - geneve: expose gso partial features for tunnel offload (Guillaume Nault) [RHEL-145367] - net: introduce mangleid_features (Guillaume Nault) [RHEL-145367] - geneve, specs: Add port range to rt_link specification (Guillaume Nault) [RHEL-145367] - geneve: Allow users to specify source port range (Guillaume Nault) [RHEL-145367] - selftests: forwarding: lib: Move require_command to net, generalize (Guillaume Nault) [RHEL-145367] - USB: storage: Remove subclass and protocol overrides from Novatek quirk (Desnes Nunes) [RHEL-147788] - usb: uas: fix urb unmapping issue when the uas device is remove during ongoing data transfer (Desnes Nunes) [RHEL-147788] {CVE-2025-68331} - xhci: dbgtty: fix device unregister: fixup (Desnes Nunes) [RHEL-147788] - xhci: dbgtty: fix device unregister (Desnes Nunes) [RHEL-147788] - usb: storage: sddr55: Reject out-of-bound new_pba (Desnes Nunes) [RHEL-147788] {CVE-2025-40345} - USB: serial: option: add support for Rolling RW101R-GL (Desnes Nunes) [RHEL-147788] - usb: typec: ucsi: psy: Set max current to zero when disconnected (Desnes Nunes) [RHEL-147788] - usb: dwc3: pci: Sort out the Intel device IDs (Desnes Nunes) [RHEL-147788] - usb: dwc3: pci: add support for the Intel Nova Lake -S (Desnes Nunes) [RHEL-147788] - drivers/usb/dwc3: fix PCI parent check (Desnes Nunes) [RHEL-147788] - xhci: sideband: Fix race condition in sideband unregister (Desnes Nunes) [RHEL-147788] - xhci: dbgtty: Fix data corruption when transmitting data form DbC to host (Desnes Nunes) [RHEL-147788] - xhci: fix stale flag preventig URBs after link state error is cleared (Desnes Nunes) [RHEL-147788] - USB: serial: ftdi_sio: add support for u-blox EVK-M101 (Desnes Nunes) [RHEL-147788] - usb: cdns3: Fix double resource release in cdns3_pci_probe (Desnes Nunes) [RHEL-147788] - usb: gadget: udc: fix use-after-free in usb_gadget_state_work (Desnes Nunes) [RHEL-147788] {CVE-2025-68282} - USB: serial: option: add Telit FN920C04 ECM compositions (Desnes Nunes) [RHEL-147788] - USB: serial: option: add Quectel RG255C (Desnes Nunes) [RHEL-147788] - tcpm: allow looking for role_sw device in the main node (Desnes Nunes) [RHEL-147788] - tcpm: switch check for role_sw device with fw_node (Desnes Nunes) [RHEL-147788] - usb/core/quirks: Add Huawei ME906S to wakeup quirk (Desnes Nunes) [RHEL-147788] - USB: serial: option: add UNISOC UIS7720 (Desnes Nunes) [RHEL-147788] - xhci: dbc: enable back DbC in resume if it was enabled before suspend (Desnes Nunes) [RHEL-147788] - xhci: dbc: fix bogus 1024 byte prefix if ttyDBC read races with stall event (Desnes Nunes) [RHEL-147788] - usb: xhci-pci: Fix USB2-only root hub registration (Desnes Nunes) [RHEL-147788] - dt-bindings: usb: qcom,snps-dwc3: Fix bindings for X1E80100 (Desnes Nunes) [RHEL-147788] - dt-bindings: usb: switch: split out ports definition (Desnes Nunes) [RHEL-147788] - dt-bindings: phy: samsung,usb3-drd-phy: gs101: require Type-C properties (Desnes Nunes) [RHEL-147788] - dt-bindings: phy: samsung,usb3-drd-phy: add blank lines between DT properties (Desnes Nunes) [RHEL-147788] - usb: dwc3: Don't call clk_bulk_disable_unprepare() twice (Desnes Nunes) [RHEL-147788] - dt-bindings: usb: dwc3-imx8mp: dma-range is required only for imx8mp (Desnes Nunes) [RHEL-147788] - usb: vhci-hcd: Prevent suspending virtually attached devices (Desnes Nunes) [RHEL-147788] - USB: serial: option: add SIMCom 8230C compositions (Desnes Nunes) [RHEL-147788] - thunderbolt: Fix use-after-free in tb_dp_dprx_work (Desnes Nunes) [RHEL-147788] {CVE-2025-40002} - docs: driver-api: fix spelling of "buses". (Desnes Nunes) [RHEL-147788] - usb: xhci: align PORTSC trace with one-based port numbering (Desnes Nunes) [RHEL-147788] - usb: xhci: correct indentation for PORTSC tracing function (Desnes Nunes) [RHEL-147788] - usb: xhci: improve TR Dequeue Pointer mask (Desnes Nunes) [RHEL-147788] - usb: xhci-pci: add support for hosts with zero USB3 ports (Desnes Nunes) [RHEL-147788] - usb: xhci: Update a comment about Stop Endpoint retries (Desnes Nunes) [RHEL-147788] - Revert "usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running" (Desnes Nunes) [RHEL-147788] - USB: gadget: Use str_enable_disable-like helpers (Desnes Nunes) [RHEL-147788] - usb: gadget: Introduce free_usb_request helper (Desnes Nunes) [RHEL-147788] - usb: gadget: Store endpoint pointer in usb_request (Desnes Nunes) [RHEL-147788] - usb: host: xhci-rcar: Add Renesas RZ/G3E USB3 Host driver support (Desnes Nunes) [RHEL-147788] - usb: host: xhci-plat: Add .post_resume_quirk for struct xhci_plat_priv (Desnes Nunes) [RHEL-147788] - usb: host: xhci-rcar: Move R-Car reg definitions (Desnes Nunes) [RHEL-147788] - dt-bindings: usb: Document Renesas RZ/G3E USB3HOST (Desnes Nunes) [RHEL-147788] - phy: fsl-imx8mq-usb: fix typec orientation switch when built as module (Desnes Nunes) [RHEL-147788] - usb: typec: Stub out typec_switch APIs when CONFIG_TYPEC=n (Desnes Nunes) [RHEL-147788] - usb: mon: Increase BUFF_MAX to 64 MiB to support multi-MB URBs (Desnes Nunes) [RHEL-147788] - usb: xhci: plat: Facilitate using autosuspend for xhci plat devices (Desnes Nunes) [RHEL-147788] - redhat/configs: configs: riscv: Enable dwc3 on riscv for RHEL (Desnes Nunes) [RHEL-147788] - redhat/configs: Enable DWC3 Generic Platform Driver on RHEL automotive (Desnes Nunes) [RHEL-147788] - usb: dwc3: add generic driver to support flattened (Desnes Nunes) [RHEL-147788] - clk: Provide devm_clk_bulk_get_all_enabled() helper (Desnes Nunes) [RHEL-147788] - dt-bindings: usb: dwc3: add support for SpacemiT K1 (Desnes Nunes) [RHEL-147788] - thunderbolt: Update thunderbolt.h header file (Desnes Nunes) [RHEL-147788] - thunderbolt: Update xdomain.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update usb4_port.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update usb4.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update tunnel.h function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update tunnel.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update tmu.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Add missing documentation in tb.h (Desnes Nunes) [RHEL-147788] - thunderbolt: Update tb.h function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update tb.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update switch.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update retimer.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update property.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update path.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update nvm.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Add missing documentation in nhi_regs.h ring_desc structure (Desnes Nunes) [RHEL-147788] - thunderbolt: Update nhi.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update lc.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update eeprom.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update domain.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update dma_port.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Add missing documentation in ctl.h tb_cfg_request struct (Desnes Nunes) [RHEL-147788] - thunderbolt: Update ctl.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update clx.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update cap.c function documentation (Desnes Nunes) [RHEL-147788] - thunderbolt: Update acpi.c function documentation (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Handle mode transitions for CD321x (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Read data status in probe and cache its value (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Use read_power_status function in probe (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Update partner identity when power status was updated (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Register DisplayPort and Thunderbolt altmodes for cd321x (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Read USB4, Thunderbolt and DisplayPort status for cd321x (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Add cd321x struct with separate size (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Trace data status for CD321x correctly (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Move switch_power_state to tipd_data (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Move initial irq mask to tipd_data (Desnes Nunes) [RHEL-147788] - usb: typec: tipd: Clear interrupts first (Desnes Nunes) [RHEL-147788] - usb: host: enable USB offload during system sleep (Desnes Nunes) [RHEL-147788] - xhci: sideband: add api to trace sideband usage (Desnes Nunes) [RHEL-147788] - usb: offload: add apis for offload usage tracking (Desnes Nunes) [RHEL-147788] - usb: xhci-plat: separate dev_pm_ops for each pm_event (Desnes Nunes) [RHEL-147788] - usb: dwc3: qcom: Implement glue callbacks to facilitate runtime suspend (Desnes Nunes) [RHEL-147788] - usb: dwc3: core: Introduce glue callbacks for flattened implementations (Desnes Nunes) [RHEL-147788] - usb: host: tegra: Remove manual wake IRQ disposal (Desnes Nunes) [RHEL-147788] - usb: host: xhci-tegra: Use platform_get_irq_optional() for wake IRQs (Desnes Nunes) [RHEL-147788] - usb: xhci: tegra: Support USB wakeup function for Tegra234 (Desnes Nunes) [RHEL-147788] - usb: udc: Add trace event for usb_gadget_set_state (Desnes Nunes) [RHEL-147788] - usb: dwc2: Add support for 'maximum-speed' property (Desnes Nunes) [RHEL-147788] - usb: typec: tcpci: add wakeup support (Desnes Nunes) [RHEL-147788] - dt-bindings: extcon: linux,extcon-usb-gpio: GPIO must be provided (Desnes Nunes) [RHEL-147788] - redhat/configs: Adding CONFIG_EXTCON_MAX14526 (Desnes Nunes) [RHEL-147788] - extcon: max14526: depends on I2C to prevent build warning/errors (Desnes Nunes) [RHEL-147788] - extcon: Add basic support for Maxim MAX14526 MUIC (Desnes Nunes) [RHEL-147788] - dt-bindings: extcon: Document Maxim MAX14526 MUIC (Desnes Nunes) [RHEL-147788] - usb: core: support eUSB2 double bandwidth large isoc URB frames (Desnes Nunes) [RHEL-147788] - usb: xhci: Add host support for eUSB2 double isochronous bandwidth devices (Desnes Nunes) [RHEL-147788] - usb: core: Introduce usb_endpoint_is_hs_isoc_double() (Desnes Nunes) [RHEL-147788] - usb: xhci: Use usb_endpoint_max_periodic_payload() (Desnes Nunes) [RHEL-147788] - usb: core: Add a function to get USB version independent periodic payload (Desnes Nunes) [RHEL-147788] - usb: core: eUSB2 companion descriptor is for isoc IN endpoints only (Desnes Nunes) [RHEL-147788] - usb: core: Parse eUSB2 companion descriptors for high speed devices only (Desnes Nunes) [RHEL-147788] - usb: core: Use le16_to_cpu() to read __le16 value in usb_parse_endpoint() (Desnes Nunes) [RHEL-147788] - usb: typec: ucsi: Add check for UCSI version (Desnes Nunes) [RHEL-147788] - usb: cdns3: gadget: Use-after-free during failed initialization and exit of cdnsp gadget (Desnes Nunes) [RHEL-147788] {CVE-2025-40314} - usb: host: xhci-tegra: Remove redundant ternary operators (Desnes Nunes) [RHEL-147788] - cdnsp: Remove unused tracepoints (Desnes Nunes) [RHEL-147788] - cdns3: Remove unused tracepoints (Desnes Nunes) [RHEL-147788] - cdns2: Remove unused tracepoints (Desnes Nunes) [RHEL-147788] - usb: gadget: configfs: Correctly set use_os_string at bind (Desnes Nunes) [RHEL-147788] - tools/usb/usbip: fix spelling mistakes in usbipd.c (Desnes Nunes) [RHEL-147788] - dt-bindings: usb: IXP4xx UDC bindings (Desnes Nunes) [RHEL-147788] - usb: dwc3: Refactor dwc3_mode_show (Desnes Nunes) [RHEL-147788] - usb: dwc3: Add trace event for dwc3_set_prtcap (Desnes Nunes) [RHEL-147788] - usb: storage: realtek_cr: Simplify residue calculation in rts51x_bulk_transport() (Desnes Nunes) [RHEL-147788] - usb: misc: Update link to EHSET pdf doc (Desnes Nunes) [RHEL-147788] - usb: usblp: Use min_t() to improve usblp_read() (Desnes Nunes) [RHEL-147788] - USB: serial: oti6858: remove extranenous ; after comment (Desnes Nunes) [RHEL-147788] - thunderbolt: Use string choices helpers (Desnes Nunes) [RHEL-147788] - mmc: rtsx_usb_sdmmc: use modern PM macros (Desnes Nunes) [RHEL-147788] - mmc: rtsx_usb_sdmmc: Fix uninitialized variable issue (Desnes Nunes) [RHEL-147788] - Documentation: driver-api: usb: Limit toctree depth (Desnes Nunes) [RHEL-147788] - phy: qcom: qmp-combo: register a typec mux to change the QMPPHY_MODE (Desnes Nunes) [RHEL-147788] - phy: qcom: qmp-combo: introduce QMPPHY_MODE (Desnes Nunes) [RHEL-147788] - phy: qcom: qmp-combo: store DP phy power state (Desnes Nunes) [RHEL-147788] - phy: qcom: qmp-combo: Rename 'mode' to 'phy_mode' (Desnes Nunes) [RHEL-147788] - dt-bindings: phy: qcom,sc8280xp-qmp-usb43dp: Reference usb-switch.yaml to allow mode-switch (Desnes Nunes) [RHEL-147788] - phy: remove unneeded 'fast_io' parameter in regmap_config (Desnes Nunes) [RHEL-147788] - misc: rtsx: usb card reader: add OCP support (Desnes Nunes) [RHEL-147788] - misc: rtsx: usb: Ensure mmc child device is active when card is present (Desnes Nunes) [RHEL-147788] - memstick: Add timeout to prevent indefinite waiting (Desnes Nunes) [RHEL-147788] - misc: rtsx_pci: Add separate CD/WP pin polarity reversal support (Desnes Nunes) [RHEL-147788] - phy: qcom-qmp-pcie: add dual lane PHY support for SM8750 (Desnes Nunes) [RHEL-147788] - dt-bindings: phy: qcom,sc8280xp-qmp-pcie-phy: Document the SM8750 QMP PCIe PHY Gen3 x2 (Desnes Nunes) [RHEL-147788] - usb: gadget: f_ncm: Fix MAC assignment NCM ethernet (Desnes Nunes) [RHEL-147788] - USB: Check no positive return values from pm_runtime_resume_and_get() (Desnes Nunes) [RHEL-147788] - usb: typec: ucsi: Add support for READ_POWER_LEVEL command (Desnes Nunes) [RHEL-147788] - thunderbolt: Use is_pciehp instead of is_hotplug_bridge (Desnes Nunes) [RHEL-147788] - dt-bindings: usb: Drop duplicate nvidia,tegra20-ehci.txt (Desnes Nunes) [RHEL-147788] - usb: dwc3: qcom: Remove extcon functionality from glue layer (Desnes Nunes) [RHEL-147788] - USB: lower "Device is not authorized for usage" message to info (Desnes Nunes) [RHEL-147788] - usb: dwc3: qcom: Add shutdown handler (Desnes Nunes) [RHEL-147788] - thunderbolt: Use Linux Foundation IDs for XDomain discovery (Desnes Nunes) [RHEL-147788] - phy: ti: omap-usb2: drop unused module alias (Desnes Nunes) [RHEL-147788] - phy: hisilicon: hi6220-usb: drop unused module alias (Desnes Nunes) [RHEL-147788] - phy: ti: omap-usb2: enable compile testing (Desnes Nunes) [RHEL-147788] - dt-bindings: phy: fsl,imx8mq-usb: Drop 'db' suffix duplicating dtschema (Desnes Nunes) [RHEL-147788] - thunderbolt: Compare HMAC values in constant time (Desnes Nunes) [RHEL-147788] - phy: starfive: jh7110-usb: Fix USB 2.0 host occasional detection failure (Desnes Nunes) [RHEL-147788] - pNFS: fix a missing wake up while waiting on NFS_LAYOUT_DRAIN (Olga Kornievskaia) [RHEL-157444] - ALSA: hda/tas2781: Ignore reset check for SPI device (CKI Backport Bot) [RHEL-148197] - platform/x86/intel/hid: Add Nova Lake support (Steve Best) [RHEL-117305] - redhat: genlog: add new JIRA cloud server hostname (Jan Stancek) - redhat/configs: enable keyboard GPIO for x86 (Mark Langsdorf) [RHEL-147908] - redhat/configs: enable CONFIG_INPUT_SOC_BUTTON_ARRAY on x86 (Mark Langsdorf) [RHEL-135367] - perf/amd/ibs: Avoid calling perf_allow_kernel() from the IBS NMI handler (Michael Petlan) [RHEL-145800] - selftests/bpf: Use the correct destructor kfunc type (Viktor Malik) [RHEL-113714] - bpf: crypto: Use the correct destructor kfunc type (Viktor Malik) [RHEL-113714] - PCI: vmd: Override irq_startup()/irq_shutdown() in vmd_init_dev_msi_info() (Myron Stowe) [RHEL-143521] - PCI: vmd: Add VMD Device ID Support for Panther Lake (PTL)-H/P/U (Myron Stowe) [RHEL-143521] - net: vlan: don't propagate flags on open (Hangbin Liu) [RHEL-149691] - selftests: kvm: Verify TILELOADD actually #NM faults when XFD[18]=1 (Maxim Levitsky) [RHEL-148618] - selftests: kvm: try getting XFD and XSAVE state out of sync (Maxim Levitsky) [RHEL-148618] - selftests: kvm: replace numbered sync points with actions (Maxim Levitsky) [RHEL-148618] - x86/fpu: Clear XSTATE_BV[i] in guest XSAVE state whenever XFD[i]=1 (Maxim Levitsky) [RHEL-148618] - KVM: selftests: Add ex_str() to print human friendly name of exception vectors (Maxim Levitsky) [RHEL-148618] - KVM: x86: Define AMD's #HV, #VC, and #SX exception vectors (Maxim Levitsky) [RHEL-148618] - KVM: x86: Define Control Protection Exception (#CP) vector (Maxim Levitsky) [RHEL-148618] - KVM: x86: Add human friendly formatting for #XM, and #VE (Maxim Levitsky) [RHEL-148618] - KVM: selftests: Add support for #DE exception fixup (Maxim Levitsky) [RHEL-148618] - idpf: export RX hardware timestamping information to XDP (Michal Schmidt) [RHEL-136674] - autofs: dont trigger mount if it cant succeed (Ian Kent) [RHEL-134674] - vdpa/mlx5: update MAC address handling in mlx5_vdpa_set_attr() (Cindy Lu) [RHEL-127007] - vdpa/mlx5: reuse common function for MAC address updates (Cindy Lu) [RHEL-127007] - vdpa/mlx5: update mlx_features with driver state check (Cindy Lu) [RHEL-127007] - redhat/configs: enable CONFIG_AQTION on all archs (Michal Schmidt) [RHEL-150852] - mm/migrate: fix sleep in atomic for large folios and buffer heads (Ming Lei) [RHEL-144763] - fs/ext4: use sleeping version of sb_find_get_block() (Ming Lei) [RHEL-144763] - fs/jbd2: use sleeping version of __find_get_block() (Ming Lei) [RHEL-144763] - fs/ocfs2: use sleeping version of __find_get_block() (Ming Lei) [RHEL-144763] - fs/buffer: use sleeping version of __find_get_block() (Ming Lei) [RHEL-144763] - fs/buffer: introduce sleeping flavors for pagecache lookups (Ming Lei) [RHEL-144763] - fs/buffer: split locking for pagecache lookups (Ming Lei) [RHEL-144763] - fscrypt: fix left shift underflow when inode->i_blkbits > PAGE_SHIFT (Ming Lei) [RHEL-144763] - block: reject bs > ps block devices when THP is disabled (Ming Lei) [RHEL-144763] - md: init queue_limits->max_hw_wzeroes_unmap_sectors parameter (Ming Lei) [RHEL-144763] - block: don't silently ignore metadata for sync read/write (Ming Lei) [RHEL-144763] - bio: use memzero_page() in bio_truncate() (Ming Lei) [RHEL-144763] - drbd: init queue_limits->max_hw_wzeroes_unmap_sectors parameter (Ming Lei) [RHEL-144763] - ext4: add FALLOC_FL_WRITE_ZEROES support (Ming Lei) [RHEL-144763] - block: add FALLOC_FL_WRITE_ZEROES support (Ming Lei) [RHEL-144763] - block: factor out common part in blkdev_fallocate() (Ming Lei) [RHEL-144763] - fs: introduce FALLOC_FL_WRITE_ZEROES to fallocate (Ming Lei) [RHEL-144763] - dm: clear unmap write zeroes limits when disabling write zeroes (Ming Lei) [RHEL-144763] - scsi: sd: set max_hw_wzeroes_unmap_sectors if device supports SD_ZERO_*_UNMAP (Ming Lei) [RHEL-144763] - nvmet: set WZDS and DRB if device enables unmap write zeroes operation (Ming Lei) [RHEL-144763] - nvme: set max_hw_wzeroes_unmap_sectors if device supports DEAC bit (Ming Lei) [RHEL-144763] - block: introduce max_{hw|user}_wzeroes_unmap_sectors to queue limits (Ming Lei) [RHEL-144763] - ublk: use READ_ONCE() to read struct ublksrv_ctrl_cmd (Ming Lei) [RHEL-144763] - block: don't use strcpy to copy blockdev name (Ming Lei) [RHEL-144763] - block: allow IOC_PR_READ_* ioctls with BLK_OPEN_READ (Ming Lei) [RHEL-144763] - block: fix EOD return for device with nr_sectors == 0 (Ming Lei) [RHEL-144763] - block: change blk_get_meta_cap() stub return -ENOIOCTLCMD (Ming Lei) [RHEL-144763] - block: fix lbmd_guard_tag_type assignment in FS_IOC_GETLBMD_CAP (Ming Lei) [RHEL-144763] - block: fix FS_IOC_GETLBMD_CAP parsing in blkdev_common_ioctl() (Ming Lei) [RHEL-144763] - ata: libata-core: Quirk INTEL SSDSC2KG480G8 max_sectors (Ming Lei) [RHEL-144763] - ata: libata: Add libata.force parameter max_sec (Ming Lei) [RHEL-144763] - ata: libata: Add support to parse equal sign in libata.force (Ming Lei) [RHEL-144763] - ata: libata: Change libata.force to use the generic ATA_QUIRK_MAX_SEC quirk (Ming Lei) [RHEL-144763] - ata: libata: Add ata_force_get_fe_for_dev() helper (Ming Lei) [RHEL-144763] - ata: libata: Add ATA_QUIRK_MAX_SEC and convert all device quirks (Ming Lei) [RHEL-144763] - ata: libata-core: Quirk DELLBOSS VD max_sectors (Ming Lei) [RHEL-144763] - loop: revert exclusive opener loop status change (Ming Lei) [RHEL-144763] - nvmet-tcp: add bounds checks in nvmet_tcp_build_pdu_iovec (Ming Lei) [RHEL-144763] - nvme-pci: handle changing device dma map requirements (Ming Lei) [RHEL-144763] - nvme-pci: DMA unmap the correct regions in nvme_free_sgls (Ming Lei) [RHEL-144763] - Revert "rnbd-clt: fix refcount underflow in device unmap path" (Ming Lei) [RHEL-144763] - blk-mq: use BLK_POLL_ONESHOT for synchronous poll completion (Ming Lei) [RHEL-144763] - selftests/ublk: fix garbage output in foreground mode (Ming Lei) [RHEL-144763] - selftests/ublk: fix error handling for starting device (Ming Lei) [RHEL-144763] - selftests/ublk: fix IO thread idle check (Ming Lei) [RHEL-144763] - block: make the new blkzoned UAPI constants discoverable (Ming Lei) [RHEL-144763] - ublk: fix ublksrv pid handling for pid namespaces (Ming Lei) [RHEL-144763] - block: Fix an error path in disk_update_zone_resources() (Ming Lei) [RHEL-144763] - rnbd-clt: fix refcount underflow in device unmap path (Ming Lei) [RHEL-144763] - nvmet: do not copy beyond sybsysnqn string length (Ming Lei) [RHEL-144763] - null_blk: fix kmemleak by releasing references to fault configfs items (Ming Lei) [RHEL-144763] - block: zero non-PI portion of auto integrity buffer (Ming Lei) [RHEL-144763] - nvme-fc: release admin tagset if init fails (Ming Lei) [RHEL-144763] - nvme-pci: disable secondary temp for Wodposit WPBSNM8 (Ming Lei) [RHEL-144763] - ublk: fix use-after-free in ublk_partition_scan_work (Ming Lei) [RHEL-144763] - blk-mq: avoid stall during boot due to synchronize_rcu_expedited (Ming Lei) [RHEL-144763] - loop: add missing bd_abort_claiming in loop_set_status (Ming Lei) [RHEL-144763] - block: don't merge bios with different app_tags (Ming Lei) [RHEL-144763] - blk-rq-qos: Remove unlikely() hints from QoS checks (Ming Lei) [RHEL-144763] - loop: don't change loop device under exclusive opener in loop_set_status (Ming Lei) [RHEL-144763] - block, bfq: update outdated comment (Ming Lei) [RHEL-144763] - selftests/ublk: fix Makefile to rebuild on header changes (Ming Lei) [RHEL-144763] - selftests/ublk: add test for async partition scan (Ming Lei) [RHEL-144763] - ublk: scan partition in async way (Ming Lei) [RHEL-144763] - block,bfq: fix aux stat accumulation destination (Ming Lei) [RHEL-144763] - block: rnbd-clt: Fix signedness bug in init_dev() (Ming Lei) [RHEL-144763] - ublk: clean up user copy references on ublk server exit (Ming Lei) [RHEL-144763] - block: validate interval_exp integrity limit (Ming Lei) [RHEL-144763] - block: validate pi_offset integrity limit (Ming Lei) [RHEL-144763] - block: rnbd-clt: Fix leaked ID in init_dev() (Ming Lei) [RHEL-144763] - ublk: fix deadlock when reading partition table (Ming Lei) [RHEL-144763] - block: add allocation size check in blkdev_pr_read_keys() (Ming Lei) [RHEL-144763] - Documentation: admin-guide: blockdev: replace zone_capacity with zone_capacity_mb when creating devices (Ming Lei) [RHEL-144763] - zloop: use READ_ONCE() to read lo->lo_state in queue_rq path (Ming Lei) [RHEL-144763] - loop: use READ_ONCE() to read lo->lo_state without locking (Ming Lei) [RHEL-144763] - selftests: ublk: add user copy test cases (Ming Lei) [RHEL-144763] - selftests: ublk: add support for user copy to kublk (Ming Lei) [RHEL-144763] - selftests: ublk: forbid multiple data copy modes (Ming Lei) [RHEL-144763] - selftests: ublk: don't share backing files between ublk servers (Ming Lei) [RHEL-144763] - selftests: ublk: use auto_zc for PER_IO_DAEMON tests in stress_04 (Ming Lei) [RHEL-144763] - selftests: ublk: fix fio arguments in run_io_and_recover() (Ming Lei) [RHEL-144763] - selftests: ublk: remove unused ios map in seq_io.bt (Ming Lei) [RHEL-144763] - selftests: ublk: correct last_rw map type in seq_io.bt (Ming Lei) [RHEL-144763] - selftests: ublk: fix overflow in ublk_queue_auto_zc_fallback() (Ming Lei) [RHEL-144763] - block: move around bio flagging helpers (Ming Lei) [RHEL-144763] - blk-mq-dma: always initialize dma state (Ming Lei) [RHEL-144763] - blk-mq: delete task running check in blk_hctx_poll() (Ming Lei) [RHEL-144763] - block: fix cached zone reports on devices with native zone append (Ming Lei) [RHEL-144763] - ublk: don't mutate struct bio_vec in iteration (Ming Lei) [RHEL-144763] - block: prohibit calls to bio_chain_endio (Ming Lei) [RHEL-144763] - ublk: allow non-blocking ctrl cmds in IO_URING_F_NONBLOCK issue (Ming Lei) [RHEL-144763] - nvme-fabrics: add ENOKEY to no retry criteria for authentication failures (Ming Lei) [RHEL-144763] - nvme-auth: use kvfree() for memory allocated with kvcalloc() (Ming Lei) [RHEL-144763] - nvmet-tcp: use kvcalloc for commands array (Ming Lei) [RHEL-144763] - nvmet-rdma: use kvcalloc for commands and responses arrays (Ming Lei) [RHEL-144763] - nvme: fix typo error in nvme target (Ming Lei) [RHEL-144763] - nvmet-fc: use pr_* print macros instead of dev_* (Ming Lei) [RHEL-144763] - nvmet-fcloop: remove unused lsdir member. (Ming Lei) [RHEL-144763] - nvmet-fcloop: check all request and response have been processed (Ming Lei) [RHEL-144763] - nvme-fc: check all request and response have been processed (Ming Lei) [RHEL-144763] - block: fix comment for op_is_zone_mgmt() to include RESET_ALL (Ming Lei) [RHEL-144763] - block: Clear BLK_ZONE_WPLUG_PLUGGED when aborting plugged BIOs (Ming Lei) [RHEL-144763] - blk-mq: add blk_rq_nr_bvec() helper (Ming Lei) [RHEL-144763] - block: add IOC_PR_READ_RESERVATION ioctl (Ming Lei) [RHEL-144763] - block: add IOC_PR_READ_KEYS ioctl (Ming Lei) [RHEL-144763] - nvme: reject invalid pr_read_keys() num_keys values (Ming Lei) [RHEL-144763] - scsi: sd: reject invalid pr_read_keys() num_keys values (Ming Lei) [RHEL-144763] - block: enable per-cpu bio cache by default (Ming Lei) [RHEL-144763] - block: use bio_alloc_bioset for passthru IO by default (Ming Lei) [RHEL-144763] - nvme-fc: don't hold rport lock when putting ctrl (Ming Lei) [RHEL-144763] - nvme-pci: add debug message on fail to read CSTS (Ming Lei) [RHEL-144763] - nvme-pci: print error message on failure in nvme_probe (Ming Lei) [RHEL-144763] - nvmet: pci-epf: fix DMA channel debug print (Ming Lei) [RHEL-144763] - nvmet: pci-epf: move DMA initialization to EPC init callback (Ming Lei) [RHEL-144763] - nvmet: remove redundant subsysnqn field from ctrl (Ming Lei) [RHEL-144763] - nvmet: add sanity checks when freeing subsystem (Ming Lei) [RHEL-144763] - block/rnbd: correct all kernel-doc complaints (Ming Lei) [RHEL-144763] - blk-mq: use queue_hctx in blk_mq_map_queue_type (Ming Lei) [RHEL-144763] - sbitmap: fix all kernel-doc warnings (Ming Lei) [RHEL-144763] - ublk: add helper of __ublk_fetch() (Ming Lei) [RHEL-144763] - ublk: pass const pointer to ublk_queue_is_zoned() (Ming Lei) [RHEL-144763] - ublk: refactor auto buffer register in ublk_dispatch_req() (Ming Lei) [RHEL-144763] - ublk: add `union ublk_io_buf` with improved naming (Ming Lei) [RHEL-144763] - ublk: add parameter `struct io_uring_cmd *` to ublk_prep_auto_buf_reg() (Ming Lei) [RHEL-144763] - kfifo: add kfifo_alloc_node() helper for NUMA awareness (Ming Lei) [RHEL-144763] - blk-mq: fix potential uaf for 'queue_hw_ctx' (Ming Lei) [RHEL-144763] - blk-mq: use array manage hctx map instead of xarray (Ming Lei) [RHEL-144763] - ublk: prevent invalid access with DEBUG (Ming Lei) [RHEL-144763] - s390/dasd: Use scnprintf() instead of sprintf() (Ming Lei) [RHEL-144763] - s390/dasd: Move device name formatting into separate function (Ming Lei) [RHEL-144763] - s390/dasd: Remove unnecessary debugfs_create() return checks (Ming Lei) [RHEL-144763] - s390/dasd: Fix gendisk parent after copy pair swap (Ming Lei) [RHEL-144763] - block: ignore __blkdev_issue_discard() return value (Ming Lei) [RHEL-144763] - block: fix typos in comments and strings in blk-core (Ming Lei) [RHEL-144763] - block: Remove references to __device_add_disk() (Ming Lei) [RHEL-144763] - Revert "Merge branch 'loop-aio-nowait' into for-6.19/block" (Ming Lei) [RHEL-144763] - block: use min() instead of min_t() (Ming Lei) [RHEL-144763] - zloop: clear nowait flag in workqueue context (Ming Lei) [RHEL-144763] - loop: clear nowait flag in workqueue context (Ming Lei) [RHEL-144763] - zloop: fix zone append check in zloop_rw() (Ming Lei) [RHEL-144763] - MAINTAINERS: add a maintainer for zoned block device support (Ming Lei) [RHEL-144763] - MAINTAINERS: add missing block layer user API header files (Ming Lei) [RHEL-144763] - block: remove the declaration of elevator_init_mq function (Ming Lei) [RHEL-144763] - Revert "block: consider discard merge last" (Ming Lei) [RHEL-144763] - fs: Add the __data_racy annotation to backing_dev_info.ra_pages (Ming Lei) [RHEL-144763] - block: plug attempts to batch allocate tags multiple times (Ming Lei) [RHEL-144763] - loop: add hint for handling aio via IOCB_NOWAIT (Ming Lei) [RHEL-144763] - loop: try to handle loop aio command via NOWAIT IO first (Ming Lei) [RHEL-144763] - loop: move command blkcg/memcg initialization into loop_queue_work (Ming Lei) [RHEL-144763] - loop: add lo_submit_rw_aio() (Ming Lei) [RHEL-144763] - loop: add helper lo_rw_aio_prep() (Ming Lei) [RHEL-144763] - loop: add helper lo_cmd_nr_bvec() (Ming Lei) [RHEL-144763] - drbd: turn bitmap I/O comments into regular block comments (Ming Lei) [RHEL-144763] - block: rate-limit capacity change info log (Ming Lei) [RHEL-144763] - Documentation: admin-guide: blockdev: update zloop parameters (Ming Lei) [RHEL-144763] - zloop: introduce the ordered_zone_append configuration parameter (Ming Lei) [RHEL-144763] - zloop: introduce the zone_append configuration parameter (Ming Lei) [RHEL-144763] - zloop: simplify checks for writes to sequential zones (Ming Lei) [RHEL-144763] - zloop: fail zone append operations that are targeting full zones (Ming Lei) [RHEL-144763] - zloop: make the write pointer of full zones invalid (Ming Lei) [RHEL-144763] - block/blk-throttle: Remove throtl_slice from struct throtl_data (Ming Lei) [RHEL-144763] - block/blk-throttle: drop unneeded blk_stat_enable_accounting (Ming Lei) [RHEL-144763] - block/blk-throttle: Fix throttle slice time for SSDs (Ming Lei) [RHEL-144763] - block: consider discard merge last (Ming Lei) [RHEL-144763] - floppy: fix for PAGE_SIZE != 4KB (Ming Lei) [RHEL-144763] - ps3disk: use memcpy_{from,to}_bvec index (Ming Lei) [RHEL-144763] - block-dma: properly take MMIO path (Ming Lei) [RHEL-144763] - nvme-pci: migrate to dma_map_phys instead of map_page (Ming Lei) [RHEL-144763] - block: define alloc_sched_data and free_sched_data methods for kyber (Ming Lei) [RHEL-144763] - block: use {alloc|free}_sched data methods (Ming Lei) [RHEL-144763] - block: introduce alloc_sched_data and free_sched_data elevator methods (Ming Lei) [RHEL-144763] - block: move elevator tags into struct elevator_resources (Ming Lei) [RHEL-144763] - block: unify elevator tags and type xarrays into struct elv_change_ctx (Ming Lei) [RHEL-144763] - dm: fix zone reset all operation processing (Ming Lei) [RHEL-144763] - block: fix NULL pointer dereference in disk_report_zones() (Ming Lei) [RHEL-144763] - block: fix NULL pointer dereference in blk_zone_reset_all_bio_endio() (Ming Lei) [RHEL-144763] - blk-zoned: Move code from disk_zone_wplug_add_bio() into its caller (Ming Lei) [RHEL-144763] - blk-zoned: Document disk_zone_wplug_schedule_bio_work() locking (Ming Lei) [RHEL-144763] - blk-zoned: Fix a typo in a source code comment (Ming Lei) [RHEL-144763] - null_blk: fix zone read length beyond write pointer (Ming Lei) [RHEL-144763] - blk-mq-dma: fix kernel-doc function name for integrity DMA iterator (Ming Lei) [RHEL-144763] - block: fix merging data-less bios (Ming Lei) [RHEL-144763] - ublk: return unsigned from ublk_{,un}map_io() (Ming Lei) [RHEL-144763] - ublk: remove unnecessary checks in ublk_check_and_get_req() (Ming Lei) [RHEL-144763] - block: add lockdep to queue_limits_commit_update() (Ming Lei) [RHEL-144763] - nbd: defer config unlock in nbd_genl_connect (Ming Lei) [RHEL-144763] - block: clean up indentation in blk_rq_map_iter_init() (Ming Lei) [RHEL-144763] - nbd: defer config put in recv_work (Ming Lei) [RHEL-144763] - block: introduce bdev_zone_start() (Ming Lei) [RHEL-144763] - block: refactor disk_zone_wplug_sync_wp_offset() (Ming Lei) [RHEL-144763] - block: improve blk_zone_wp_offset() (Ming Lei) [RHEL-144763] - block: don't return 1 for the fallback case in blkdev_get_zone_info (Ming Lei) [RHEL-144763] - nvme: remove virtual boundary for sgl capable devices (Ming Lei) [RHEL-144763] - block: accumulate memory segment gaps per bio (Ming Lei) [RHEL-144763] - virtio_blk: NULL out vqs to avoid double free on failed resume (Ming Lei) [RHEL-144763] - null_blk: allow byte aligned memory offsets (Ming Lei) [RHEL-144763] - null_blk: single kmap per bio segment (Ming Lei) [RHEL-144763] - null_blk: use memzero_page() (Ming Lei) [RHEL-144763] - null_blk: consistently use blk_status_t (Ming Lei) [RHEL-144763] - null_blk: simplify copy_from_nullb (Ming Lei) [RHEL-144763] - ublk: use rq_for_each_segment() for user copy (Ming Lei) [RHEL-144763] - ublk: use copy_{to,from}_iter() for user copy (Ming Lei) [RHEL-144763] - block: fix cached zone reporting after zone append was used (Ming Lei) [RHEL-144763] - block: don't leak disk->zones_cond for !disk_need_zone_resources (Ming Lei) [RHEL-144763] - xfs: use blkdev_report_zones_cached() (Ming Lei) [RHEL-144763] - block: add zone write plug condition to debugfs zone_wplugs (Ming Lei) [RHEL-144763] - block: improve zone_wplugs debugfs attribute output (Ming Lei) [RHEL-144763] - block: introduce BLKREPORTZONESV2 ioctl (Ming Lei) [RHEL-144763] - block: introduce blkdev_report_zones_cached() (Ming Lei) [RHEL-144763] - block: introduce blkdev_get_zone_info() (Ming Lei) [RHEL-144763] - block: refactor blkdev_report_zones() code (Ming Lei) [RHEL-144763] - block: track zone conditions (Ming Lei) [RHEL-144763] - block: use zone condition to determine conventional zones (Ming Lei) [RHEL-144763] - block: reorganize struct blk_zone_wplug (Ming Lei) [RHEL-144763] - block: introduce disk_report_zone() (Ming Lei) [RHEL-144763] - block: cleanup blkdev_report_zones() (Ming Lei) [RHEL-144763] - block: freeze queue when updating zone resources (Ming Lei) [RHEL-144763] - block: handle zone management operations completions (Ming Lei) [RHEL-144763] - block: make bio auto-integrity deadlock safe (Ming Lei) [RHEL-144763] - block: blocking mempool_alloc doesn't fail (Ming Lei) [RHEL-144763] - selftests: ublk: make ublk_thread thread-local variable (Ming Lei) [RHEL-144763] - selftests: ublk: set CPU affinity before thread initialization (Ming Lei) [RHEL-144763] - ublk: use struct_size() for allocation (Ming Lei) [RHEL-144763] - ublk: implement NUMA-aware memory allocation (Ming Lei) [RHEL-144763] - ublk: reorder tag_set initialization before queue allocation (Ming Lei) [RHEL-144763] - blktrace: add support for REQ_OP_WRITE_ZEROES tracing (Ming Lei) [RHEL-144763] - drbd: replace kmap() with kmap_local_page() in receiver path (Ming Lei) [RHEL-144763] - blktrace: for ftrace use correct trace format ver (Ming Lei) [RHEL-144763] - blktrace: use debug print to report dropped events (Ming Lei) [RHEL-144763] - blktrace: handle BLKTRACESETUP2 ioctl (Ming Lei) [RHEL-144763] - blktrace: trace zone write plugging operations (Ming Lei) [RHEL-144763] - blktrace: expose ZONE APPEND completions to blktrace (Ming Lei) [RHEL-144763] - blktrace: add block trace commands for zone operations (Ming Lei) [RHEL-144763] - blktrace: move ftrace blk_io_tracer to blk_io_trace2 (Ming Lei) [RHEL-144763] - blktrace: move trace_note to blk_io_trace2 (Ming Lei) [RHEL-144763] - blktrace: differentiate between blk_io_trace versions (Ming Lei) [RHEL-144763] - blktrace: add definitions for struct blk_io_trace2 (Ming Lei) [RHEL-144763] - blktrace: pass blk_user_trace2 to setup functions (Ming Lei) [RHEL-144763] - blktrace: add definitions for blk_user_trace_setup2 (Ming Lei) [RHEL-144763] - blktrace: split do_blk_trace_setup into two functions (Ming Lei) [RHEL-144763] - blktrace: change the internal action to 64bit (Ming Lei) [RHEL-144763] - blktrace: untangle if/else sequence in __blk_add_trace (Ming Lei) [RHEL-144763] - blktrace: split out relaying a blktrace event (Ming Lei) [RHEL-144763] - blktrace: factor out recording a blktrace event (Ming Lei) [RHEL-144763] - blktrace: only calculate trace length once (Ming Lei) [RHEL-144763] - block: rename min_segment_size (Ming Lei) [RHEL-144763] - blk-mq: use struct_size() in kmalloc() (Ming Lei) [RHEL-144763] - block/mq-deadline: Switch back to a single dispatch list (Ming Lei) [RHEL-144763] - block/mq-deadline: Introduce dd_start_request() (Ming Lei) [RHEL-144763] - nvme-multipath: fix lockdep WARN due to partition scan work (Ming Lei) [RHEL-144763] - MAINTAINERS: correct git location for block layer tree (Ming Lei) [RHEL-144763] - null_blk: set dma alignment to logical block size (Ming Lei) [RHEL-144763] - blk-crypto: use BLK_STS_INVAL for alignment errors (Ming Lei) [RHEL-144763] - block: make REQ_OP_ZONE_OPEN a write operation (Ming Lei) [RHEL-144763] - block: fix op_is_zone_mgmt() to handle REQ_OP_ZONE_RESET_ALL (Ming Lei) [RHEL-144763] - nvme-pci: use blk_map_iter for p2p metadata (Ming Lei) [RHEL-144763] - block: require LBA dma_alignment when using PI (Ming Lei) [RHEL-144763] - block: Remove elevator_lock usage from blkg_conf frozen operations (Ming Lei) [RHEL-144763] - blk-mq: fix stale tag depth for shared sched tags in blk_mq_update_nr_requests() (Ming Lei) [RHEL-144763] - loop: remove redundant __GFP_NOWARN flag (Ming Lei) [RHEL-144763] - block: move bio_iov_iter_get_bdev_pages to block/fops.c (Ming Lei) [RHEL-144763] - iomap: open code bio_iov_iter_get_bdev_pages (Ming Lei) [RHEL-144763] - block: rename bio_iov_iter_get_pages_aligned to bio_iov_iter_get_pages (Ming Lei) [RHEL-144763] - block: remove bio_iov_iter_get_pages (Ming Lei) [RHEL-144763] - block: Update a comment of disk statistics (Ming Lei) [RHEL-144763] - s390/dasd: enforce dma_alignment to ensure proper buffer validation (Ming Lei) [RHEL-144763] - s390/dasd: Return BLK_STS_INVAL for EINVAL from do_dasd_request (Ming Lei) [RHEL-144763] - ublk: remove redundant zone op check in ublk_setup_iod() (Ming Lei) [RHEL-144763] - nvme: Use non zero KATO for persistent discovery connections (Ming Lei) [RHEL-144763] - nvmet: add safety check for subsys lock (Ming Lei) [RHEL-144763] - nvme-core: use nvme_is_io_ctrl() for I/O controller check (Ming Lei) [RHEL-144763] - nvme-core: do ioccsz/iorcsz validation only for I/O controllers (Ming Lei) [RHEL-144763] - nvme-core: add method to check for an I/O controller (Ming Lei) [RHEL-144763] - blk-mq: Fix more tag iteration function documentation (Ming Lei) [RHEL-144763] - selftests: ublk: fix behavior when fio is not installed (Ming Lei) [RHEL-144763] - ublk: don't access ublk_queue in ublk_unmap_io() (Ming Lei) [RHEL-144763] - ublk: pass ublk_io to __ublk_complete_rq() (Ming Lei) [RHEL-144763] - ublk: don't access ublk_queue in ublk_need_complete_req() (Ming Lei) [RHEL-144763] - ublk: don't access ublk_queue in ublk_check_commit_and_fetch() (Ming Lei) [RHEL-144763] - ublk: don't pass ublk_queue to ublk_fetch() (Ming Lei) [RHEL-144763] - ublk: don't access ublk_queue in ublk_config_io_buf() (Ming Lei) [RHEL-144763] - ublk: don't access ublk_queue in ublk_check_fetch_buf() (Ming Lei) [RHEL-144763] - ublk: pass q_id and tag to __ublk_check_and_get_req() (Ming Lei) [RHEL-144763] - ublk: don't access ublk_queue in ublk_daemon_register_io_buf() (Ming Lei) [RHEL-144763] - ublk: don't access ublk_queue in ublk_register_io_buf() (Ming Lei) [RHEL-144763] - ublk: pass ublk_device to ublk_register_io_buf() (Ming Lei) [RHEL-144763] - ublk: don't dereference ublk_queue in ublk_check_and_get_req() (Ming Lei) [RHEL-144763] - ublk: don't dereference ublk_queue in ublk_ch_uring_cmd_local() (Ming Lei) [RHEL-144763] - ublk: add helpers to check ublk_device flags (Ming Lei) [RHEL-144763] - ublk: don't pass ublk_queue to __ublk_fail_req() (Ming Lei) [RHEL-144763] - ublk: don't pass q_id to ublk_queue_cmd_buf_size() (Ming Lei) [RHEL-144763] - ublk: remove ubq check in ublk_check_and_get_req() (Ming Lei) [RHEL-144763] - selftests: ublk: add test to verify that feat_map is complete (Ming Lei) [RHEL-144763] - selftests: ublk: kublk: add UBLK_F_BUF_REG_OFF_DAEMON to feat_map (Ming Lei) [RHEL-144763] - selftests: ublk: kublk: simplify feat_map definition (Ming Lei) [RHEL-144763] - blk-throttle: fix throtl_data leak during disk release (Ming Lei) [RHEL-144763] - blk-mq: Fix the blk_mq_tagset_busy_iter() documentation (Ming Lei) [RHEL-144763] - nvme-pci: Add TUXEDO IBS Gen8 to Samsung sleep quirk (Ming Lei) [RHEL-144763] - block/mq-deadline: Remove the redundant rb_entry_rq in the deadline_from_pos(). (Ming Lei) [RHEL-144763] - nvme-fc: use lock accessing port_state and rport state (Ming Lei) [RHEL-144763] - nvmet-fcloop: call done callback even when remote port is gone (Ming Lei) [RHEL-144763] - nvmet-fc: avoid scheduling association deletion twice (Ming Lei) [RHEL-144763] - nvmet-fc: move lsop put work to nvmet_fc_ls_req_op (Ming Lei) [RHEL-144763] - blk-mq: fix stale nr_requests documentation (Ming Lei) [RHEL-144763] - blk-mq: remove blk_mq_tag_update_depth() (Ming Lei) [RHEL-144763] - blk-mq: fix potential deadlock while nr_requests grown (Ming Lei) [RHEL-144763] - blk-mq-sched: add new parameter nr_requests in blk_mq_alloc_sched_tags() (Ming Lei) [RHEL-144763] - blk-mq: split bitmap grow and resize case in blk_mq_update_nr_requests() (Ming Lei) [RHEL-144763] - blk-mq: cleanup shared tags case in blk_mq_update_nr_requests() (Ming Lei) [RHEL-144763] - blk-mq: convert to serialize updating nr_requests with update_nr_hwq_lock (Ming Lei) [RHEL-144763] - blk-mq: check invalid nr_requests in queue_requests_store() (Ming Lei) [RHEL-144763] - blk-mq: remove useless checkings in blk_mq_update_nr_requests() (Ming Lei) [RHEL-144763] - blk-mq: remove useless checking in queue_requests_store() (Ming Lei) [RHEL-144763] - ublk: consolidate nr_io_ready and nr_queues_ready (Ming Lei) [RHEL-144763] - block: fix ordering of recursive split IO (Ming Lei) [RHEL-144763] - block: skip unnecessary checks for split bio (Ming Lei) [RHEL-144763] - blk-crypto: convert to use bio_submit_split_bioset() (Ming Lei) [RHEL-144763] - block: factor out a helper bio_submit_split_bioset() (Ming Lei) [RHEL-144763] - blk-crypto: fix missing blktrace bio split events (Ming Lei) [RHEL-144763] - blk-mq: add QUEUE_FLAG_BIO_ISSUE_TIME (Ming Lei) [RHEL-144763] - block: initialize bio issue time in blk_mq_submit_bio() (Ming Lei) [RHEL-144763] - block: cleanup bio_issue (Ming Lei) [RHEL-144763] - blk-map: provide the bdev to bio if one exists (Ming Lei) [RHEL-144763] - blk-mq-dma: bring back p2p request flags (Ming Lei) [RHEL-144763] - blk-integrity: enable p2p source and destination (Ming Lei) [RHEL-144763] - iov_iter: remove iov_iter_is_aligned (Ming Lei) [RHEL-144763] - blk-integrity: use simpler alignment check (Ming Lei) [RHEL-144763] - block: remove bdev_iter_is_aligned (Ming Lei) [RHEL-144763] - iomap: simplify direct io validity check (Ming Lei) [RHEL-144763] - block: simplify direct io validity check (Ming Lei) [RHEL-144763] - block: align the bio after building it (Ming Lei) [RHEL-144763] - block: add size alignment to bio_iov_iter_get_pages (Ming Lei) [RHEL-144763] - block: check for valid bio while splitting (Ming Lei) [RHEL-144763] - drivers/block: WQ_PERCPU added to alloc_workqueue users (Ming Lei) [RHEL-144763] - drivers/block: replace use of system_unbound_wq with system_dfl_wq (Ming Lei) [RHEL-144763] - drivers/block: replace use of system_wq with system_percpu_wq (Ming Lei) [RHEL-144763] - block: floppy: Replace kmalloc() + copy_from_user() with memdup_user() (Ming Lei) [RHEL-144763] - block: remove the bi_inline_vecs variable sized array from struct bio (Ming Lei) [RHEL-144763] - block: add a bio_init_inline helper (Ming Lei) [RHEL-144763] - blk-throttle: fix access race during throttle policy activation (Ming Lei) [RHEL-144763] - null_blk: Fix the description of the cache_size module argument (Ming Lei) [RHEL-144763] - ublk: inline __ublk_ch_uring_cmd() (Ming Lei) [RHEL-144763] - block: use int to store blk_stack_limits() return value (Ming Lei) [RHEL-144763] - blk-mq: check kobject state_in_sysfs before deleting in blk_mq_unregister_hctx (Ming Lei) [RHEL-144763] - floppy: Sort headers alphabetically (Ming Lei) [RHEL-144763] - floppy: Replace custom SZ_64K constant (Ming Lei) [RHEL-144763] - floppy: Remove unused CROSS_64KB() macro from arch/ code (Ming Lei) [RHEL-144763] - block: Move a misplaced comment in queue_wb_lat_store() (Ming Lei) [RHEL-144763] - nvme-pci: convert metadata mapping to dma iter (Ming Lei) [RHEL-144763] - nvme-pci: create common sgl unmapping helper (Ming Lei) [RHEL-144763] - blk-integrity: use iterator for mapping sg (Ming Lei) [RHEL-144763] - blk-mq-dma: add scatter-less integrity data DMA mapping (Ming Lei) [RHEL-144763] - blk-mq-dma: move common dma start code to a helper (Ming Lei) [RHEL-144763] - blk-mq: remove REQ_P2PDMA flag (Ming Lei) [RHEL-144763] - blk-mq-dma: require unmap caller provide p2p map type (Ming Lei) [RHEL-144763] - blk-mq-dma: provide the bio_vec array being iterated (Ming Lei) [RHEL-144763] - blk-mq-dma: create blk_map_iter type (Ming Lei) [RHEL-144763] - block: switch ->getgeo() to struct gendisk (Ming Lei) [RHEL-144763] - scsi: switch ->bios_param() to passing gendisk (Ming Lei) [RHEL-144763] - scsi: switch scsi_bios_ptable() and scsi_partsize() to gendisk (Ming Lei) [RHEL-144763] - nvme: fix PI insert on write (Ming Lei) [RHEL-144763] - blk-zoned: Fix a lockdep complaint about recursive locking (Ming Lei) [RHEL-144763] - loop: fix zero sized loop for block special file (Ming Lei) [RHEL-144763] - block: tone down bio_check_eod (Ming Lei) [RHEL-144763] - loop: use vfs_getattr_nosec for accurate file size (Ming Lei) [RHEL-144763] - loop: Consolidate size calculation logic into lo_calculate_size() (Ming Lei) [RHEL-144763] - block: remove newlines from the warnings in blk_validate_integrity_limits (Ming Lei) [RHEL-144763] - block: handle pi_tuple_size in queue_limits_stack_integrity (Ming Lei) [RHEL-144763] - fs: add ioctl to query metadata and protection info capabilities (Ming Lei) [RHEL-144763] - nvme: set pi_offset only when checksum type is not BLK_INTEGRITY_CSUM_NONE (Ming Lei) [RHEL-144763] - block: introduce pi_tuple_size field in blk_integrity (Ming Lei) [RHEL-144763] - block: rename tuple_size field in blk_integrity to metadata_size (Ming Lei) [RHEL-144763] - block: always allocate integrity buffer when required (Ming Lei) [RHEL-144763] - Docs: admin-guide: Correct spelling mistake (Ming Lei) [RHEL-144763] - blk-wbt: doc: Update the doc of the wbt_lat_usec interface (Ming Lei) [RHEL-144763] - blk-wbt: Eliminate ambiguity in the comments of struct rq_wb (Ming Lei) [RHEL-144763] - blk-wbt: Optimize wbt_done() for non-throttled writes (Ming Lei) [RHEL-144763] - blk-cgroup: remove redundant __GFP_NOWARN (Ming Lei) [RHEL-144763] - block, bfq: remove redundant __GFP_NOWARN (Ming Lei) [RHEL-144763] - drbd: Remove the open-coded page pool (Ming Lei) [RHEL-144763] - nvmet: exit debugfs after discovery subsystem exits (Ming Lei) [RHEL-144763] - block, bfq: Reorder struct bfq_iocq_bfqq_data (Ming Lei) [RHEL-144763] - block: ensure discard_granularity is zero when discard is not supported (Ming Lei) [RHEL-144763] - block: Fix default IO priority if there is no IO context (Ming Lei) [RHEL-144763] - nvme: fix various comment typos (Ming Lei) [RHEL-144763] - nvme-pci: fix leak on sgl setup error (Ming Lei) [RHEL-144763] - nvmet: initialize discovery subsys after debugfs is initialized (Ming Lei) [RHEL-144763] - nvme: add capability to connect to an administrative controller (Ming Lei) [RHEL-144763] - nvmet: add support for FDP in fabrics passthru path (Ming Lei) [RHEL-144763] - blk-ioc: don't hold queue_lock for ioc_lookup_icq() (Ming Lei) [RHEL-144763] - block: Enforce power-of-2 physical block size (Ming Lei) [RHEL-144763] - block: avoid possible overflow for chunk_sectors check in blk_stack_limits() (Ming Lei) [RHEL-144763] - block: Improve read ahead size for rotational devices (Ming Lei) [RHEL-144763] - cdrom: Call cdrom_mrw_exit from cdrom_release function (Ming Lei) [RHEL-144763] - sunvdc: Balance device refcount in vdc_port_mpgroup_check (Ming Lei) [RHEL-144763] - nvme-pci: try function level reset on init failure (Ming Lei) [RHEL-144763] - nvmet: pci-epf: Do not complete commands twice if nvmet_req_init() fails (Ming Lei) [RHEL-144763] - nvme: fix typo in status code constant for self-test in progress (Ming Lei) [RHEL-144763] - nvmet: remove redundant assignment of error code in nvmet_ns_enable() (Ming Lei) [RHEL-144763] - nvme: fix incorrect variable in io cqes error message (Ming Lei) [RHEL-144763] - nvme: fix multiple spelling and grammar issues in host drivers (Ming Lei) [RHEL-144763] - block: fix blk_zone_append_update_request_bio() kernel-doc (Ming Lei) [RHEL-144763] - block: add trace messages to zone write plugging (Ming Lei) [RHEL-144763] - block: add tracepoint for blkdev_zone_mgmt (Ming Lei) [RHEL-144763] - block: add tracepoint for blk_zone_update_request_bio (Ming Lei) [RHEL-144763] - block: split blk_zone_update_request_bio into two functions (Ming Lei) [RHEL-144763] - blktrace: add zoned block commands to blk_fill_rwbs (Ming Lei) [RHEL-144763] - block: floppy: Fix uninitialized use of outparam (Ming Lei) [RHEL-144763] - loop: Avoid updating block size under exclusive owner (Ming Lei) [RHEL-144763] - nvme-pci: don't allocate dma_vec for IOVA mappings (Ming Lei) [RHEL-144763] - drbd: add missing kref_get in handle_write_conflicts (Ming Lei) [RHEL-144763] - block: mtip32xx: Fix usage of dma_map_sg() (Ming Lei) [RHEL-144763] - nvme-pci: fix dma unmapping when using PRPs and not using the IOVA mapping (Ming Lei) [RHEL-144763] - zram: pass buffer offset to zcomp_available_show() (Ming Lei) [RHEL-144763] - block: zram: replace scnprintf() with sysfs_emit() in *_show() functions (Ming Lei) [RHEL-144763] - virtio: blk/scsi: use block layer helpers to calculate num of queues (Ming Lei) [RHEL-144763] - scsi: use block layer helpers to calculate num of queues (Ming Lei) [RHEL-144763] - nvme-pci: use block layer helpers to calculate num of queues (Ming Lei) [RHEL-144763] - lib/group_cpus: Let group_cpu_evenly() return the number of initialized masks (Ming Lei) [RHEL-144763] - nvme-pci: rework the build time assert for NVME_MAX_NR_DESCRIPTORS (Ming Lei) [RHEL-144763] - nvme-pci: replace NVME_MAX_KB_SZ with NVME_MAX_BYTE (Ming Lei) [RHEL-144763] - nvme-pci: convert the data mapping to blk_rq_dma_map (Ming Lei) [RHEL-144763] - nvme-pci: remove superfluous arguments (Ming Lei) [RHEL-144763] - nvme-pci: merge the simple PRP and SGL setup into a common helper (Ming Lei) [RHEL-144763] - nvme-pci: refactor nvme_pci_use_sgls (Ming Lei) [RHEL-144763] - block: add scatterlist-less DMA mapping helpers (Ming Lei) [RHEL-144763] - block: don't merge different kinds of P2P transfers in a single bio (Ming Lei) [RHEL-144763] - block: Increase BLK_DEF_MAX_SECTORS_CAP (Ming Lei) [RHEL-144763] - block/bdev: lift block size restrictions to 64k (Ming Lei) [RHEL-144763] - block/bdev: enable large folio support for large logical block sizes (Ming Lei) [RHEL-144763] - fs/buffer fs/mpage: remove large folio restriction (Ming Lei) [RHEL-144763] - fs/mpage: use blocks_per_folio instead of blocks_per_page (Ming Lei) [RHEL-144763] - fs/mpage: avoid negative shift for large blocksize (Ming Lei) [RHEL-144763] - fs/buffer: remove batching from async read (Ming Lei) [RHEL-144763] - fs/buffer: simplify block_read_full_folio() with bh_offset() (Ming Lei) [RHEL-144763] - block: don't autoload drivers on stat (Ming Lei) [RHEL-144763] - platform/x86/amd/pmf: Use ring buffer to store custom BIOS input values (Steve Best) [RHEL-130539] - platform/x86/amd/pmf: Add BIOS_INPUTS_MAX macro to replace hardcoded array size (Steve Best) [RHEL-130539] - platform/x86/amd/pmf: Use explicit SET_CMD/GET_CMD flags in amd_pmf_send_cmd() (Steve Best) [RHEL-130539] - crypto: ccp - Send PSP_CMD_TEE_RING_DESTROY when PSP_CMD_TEE_RING_INIT fails (Steve Best) [RHEL-130538] - crypto: ccp - Factor out ring destroy handling to a helper (Steve Best) [RHEL-130538] - crypto: ccp - Add an S4 restore flow (Steve Best) [RHEL-130538] - crypto: ccp - Declare PSP dead if PSP_CMD_TEE_RING_INIT fails (Steve Best) [RHEL-130538] - platform/x86/amd/pmf: Prevent TEE errors after hibernate (Steve Best) [RHEL-130538] - redhat: genlog: add new JIRA cloud server hostname (Jan Stancek) - nfsd: use correct loop termination in nfsd4_revoke_states() (Olga Kornievskaia) [RHEL-152916] - nfsd: check that server is running in unlock_filesystem (Olga Kornievskaia) [RHEL-152916] - powerpc/smp: Expose die_id and die_cpumask (Mamatha Inamdar) [RHEL-138728] - smb: client: fix broken multichannel with krb5+signing (Paulo Alcantara) [RHEL-151838] - smb: client: fix regression with signing (Paulo Alcantara) [RHEL-151838] - allow finish_no_open(file, ERR_PTR(-E...)) (Roberto Bergantinos Corpas) [RHEL-153335] - redhat/configs: automotive: enable NVMEM_S32G_OCOTP (Jared Kangas) [RHEL-152643] - arm64: dts: s32g: Add device tree information for the OCOTP driver (Jared Kangas) [RHEL-152643] - nvmem: s32g-ocotp: Add driver for S32G OCOTP (Jared Kangas) [RHEL-152643] - dt-bindings: nvmem: Add the nxp,s32g-ocotp yaml file (Jared Kangas) [RHEL-152643] - redhat/scripts: remove remnants of git notes usage and dead code (Jan Stancek) - vsock: document write-once behavior of the child_ns_mode sysctl (Stefano Garzarella) [RHEL-151754] - vsock: lock down child_ns_mode as write-once (Stefano Garzarella) [RHEL-151754] - vsock: Use container_of() to get net namespace in sysctl handlers (Stefano Garzarella) [RHEL-151754] - vsock: document namespace mode sysctls (Stefano Garzarella) [RHEL-151754] - nvme: fix memory leak in quirks_param_set() (Maurizio Lombardi) [RHEL-148483] - ice: dpll: fix rclk pin state get and misplaced header macros (Ivan Vecera) [RHEL-146369] - ice: dpll: Support E825-C SyncE and dynamic pin discovery (Ivan Vecera) [RHEL-146369] - drivers: Add support for DPLL reference count tracking (Ivan Vecera) [RHEL-146369] - redhat: configs: Enable CONFIG_DPLL_REFCNT_TRACKER for debug (Ivan Vecera) [RHEL-146369] - dpll: Add reference count tracking support (Ivan Vecera) [RHEL-146369] - dpll: Enhance and consolidate reference counting logic (Ivan Vecera) [RHEL-146369] - dpll: zl3073x: Add support for mux pin type (Ivan Vecera) [RHEL-146369] - dpll: Support dynamic pin index allocation (Ivan Vecera) [RHEL-146369] - dpll: Add notifier chain for dpll events (Ivan Vecera) [RHEL-146369] - dpll: zl3073x: Associate pin with fwnode handle (Ivan Vecera) [RHEL-146369] - dpll: Allow associating dpll pin with a firmware node (Ivan Vecera) [RHEL-146369] - dpll: zl3073x: Fix output pin phase adjustment sign (Ivan Vecera) [RHEL-146257] - redhat: set defaults for RHEL 10.2 (Scott Weaver) - cifs: some missing initializations on replay (Paulo Alcantara) [RHEL-150776] - cifs: remove unnecessary tracing after put tcon (Paulo Alcantara) [RHEL-150776] - smb: client: fix data corruption due to racy lease checks (Paulo Alcantara) [RHEL-150776] - smb: client: fix regression with mount options parsing (Paulo Alcantara) [RHEL-150776] - redhat: bump RHEL_MINOR for 10.3 (Alexandra Hájková) - net: use NUMA drop counters for softnet_data.dropped (Guillaume Nault) [RHEL-145975] - inet: raw: add drop_counters to raw sockets (Guillaume Nault) [RHEL-145975] - udp: add drop_counters to udp socket (Guillaume Nault) [RHEL-145975] - net: add sk->sk_drop_counters (Guillaume Nault) [RHEL-145975] - net: add sk_drops_skbadd() helper (Guillaume Nault) [RHEL-145975] - net: add sk_drops_read(), sk_drops_inc() and sk_drops_reset() helpers (Guillaume Nault) [RHEL-145975] - NFSD: Fix permission check for read access to executable-only files (Scott Mayhew) [RHEL-135095] - fs/proc/task_mmu: fix PAGE_IS_PFNZERO detection for the huge zero folio (Audra Mitchell) [RHEL-97168] - configs: riscv: Enable StarFive and ESWIN drivers (Jennifer Berringer) [RHEL-129062] - riscv: Fix memory leak in module_frob_arch_sections() (Jennifer Berringer) [RHEL-129062] - reset: eswin: Add eic7700 reset driver (Jennifer Berringer) [RHEL-129062] - dt-bindings: reset: eswin: Documentation for eic7700 SoC (Jennifer Berringer) [RHEL-129062] - riscv: dts: eswin: add HiFive Premier P550 board device tree (Jennifer Berringer) [RHEL-129062] - riscv: dts: add initial support for EIC7700 SoC (Jennifer Berringer) [RHEL-129062] - dt-bindings: riscv: Add SiFive HiFive Premier P550 board (Jennifer Berringer) [RHEL-129062] - riscv: Add Kconfig option for ESWIN platforms (Jennifer Berringer) [RHEL-129062] - riscv: add Andes SoC family Kconfig support (Jennifer Berringer) [RHEL-129062] - pinctrl: eswin: Fix regulator error check and Kconfig dependency (Jennifer Berringer) [RHEL-129062] - pinctrl: eswin: Fix unsigned comparison to less than zero issue (Jennifer Berringer) [RHEL-129062] - pinctrl: eswin: Add EIC7700 pinctrl driver (Jennifer Berringer) [RHEL-129062] - riscv: module: Optimize PLT/GOT entry counting (Jennifer Berringer) [RHEL-129062] - riscv: module: Allocate PLT entries for R_RISCV_PLT32 (Jennifer Berringer) [RHEL-129062] - riscv: module: Fix out-of-bounds relocation access (Jennifer Berringer) [RHEL-129062] {CVE-2025-37975} - cache: sifive_ccache: Add ESWIN EIC7700 support (Jennifer Berringer) [RHEL-129062] - vsock: prevent child netns mode switch from local to global (Stefano Garzarella) [RHEL-150361] - vsock: fix child netns mode initialization (Stefano Garzarella) [RHEL-150361] - gpio: tegra186: Fix GPIO name collisions for Tegra410 (Jennifer Berringer) [RHEL-135122] - gpio: tegra186: Add support for Tegra410 (Jennifer Berringer) [RHEL-135122] - gpio: tegra186: Use generic macro for port definitions (Jennifer Berringer) [RHEL-135122] - gpio: tegra186: Add support for Tegra256 (Jennifer Berringer) [RHEL-135122] - dt-bindings: gpio: Add Tegra256 support (Jennifer Berringer) [RHEL-135122] - gpio: tegra186: fix resource handling in ACPI probe path (Jennifer Berringer) [RHEL-135122] - perf/arm_cspmu: nvidia: Add pmevfiltr2 support (Charles Mirabile) [RHEL-121677] - perf/arm_cspmu: nvidia: Add revision id matching (Charles Mirabile) [RHEL-121677] - perf/arm_cspmu: Add pmpidr support (Charles Mirabile) [RHEL-121677] - perf/arm_cspmu: Add callback to reset filter config (Charles Mirabile) [RHEL-121677] - tools headers arm64: Add NVIDIA Olympus part (Charles Mirabile) [RHEL-138474] - perf arm-spe: Add NVIDIA Olympus to neoverse list (Charles Mirabile) [RHEL-138474] - bpf: Fix bpf_xdp_store_bytes proto for read-only arg (Felix Maurer) [RHEL-133468] - bpf: Fix invalid prog->stats access when update_effective_progs fails (Felix Maurer) [RHEL-133468] - bpf/arm64: Fix BPF_ST into arena memory (Felix Maurer) [RHEL-133468] - xsk: Harden userspace-supplied xdp_desc validation (Felix Maurer) [RHEL-133468] - bpf, cpumap: Disable page_pool direct xdp_return need larger scope (Felix Maurer) [RHEL-133468] - bpf, sockmap: Fix panic when calling skb_linearize (Felix Maurer) [RHEL-133468] - bpf, sockmap: fix duplicated data transmission (Felix Maurer) [RHEL-133468] - xsk: Fix race condition in AF_XDP generic RX path (Felix Maurer) [RHEL-133468] - macvlan: fix possible UAF in macvlan_forward_source() (CKI Backport Bot) [RHEL-144130] {CVE-2026-23001} - soc/tegra: fuse: Do not register SoC device on ACPI boot (Jennifer Berringer) [RHEL-135124] - cpuidle: menu: Use residency threshold in polling state override decisions (Mark Langsdorf) [RHEL-136089] - wifi: mt76: mt7925: disable auto regd changes after user set (Jose Ignacio Tornos Martinez) [RHEL-129847] - wifi: mt76: mt7925: add auto regdomain switch support (Jose Ignacio Tornos Martinez) [RHEL-129847] - wifi: mt76: mt7925: improve EHT capability control in regulatory flow (Jose Ignacio Tornos Martinez) [RHEL-129847] - wifi: mt76: mt7925: refactor regulatory notifier flow (Jose Ignacio Tornos Martinez) [RHEL-129847] - wifi: mt76: mt7925: refactor CLC support check flow (Jose Ignacio Tornos Martinez) [RHEL-129847] - wifi: mt76: mt7925: refactor regulatory domain handling to regd.[ch] (Jose Ignacio Tornos Martinez) [RHEL-129847] - redhat: enabled configs for amd isp platform for x86 (Krzysztof Pawlinski) [RHEL-124085] - platform/x86: Update swnode graph for amd isp4 (Krzysztof Pawlinski) [RHEL-124085] - platform/x86: Use i2c adapter name to fix build errors (Krzysztof Pawlinski) [RHEL-124085] - platform/x86: Add AMD ISP platform config for OV05C10 (Krzysztof Pawlinski) [RHEL-124085] - redhat: enabled configs for amd isp on x86 (Krzysztof Pawlinski) [RHEL-124084] - i2c: I2C_DESIGNWARE_AMDISP should depend on DRM_AMD_ISP (Krzysztof Pawlinski) [RHEL-124084] - i2c: amd-isp: Initialize unique adapter name (Krzysztof Pawlinski) [RHEL-124084] - i2c: designware: Initialize adapter name only when not set (Krzysztof Pawlinski) [RHEL-124084] - i2c: amd-isp: Add ISP i2c-designware driver (Krzysztof Pawlinski) [RHEL-124084] - ALSA: update RHEL kconfigs for SoundWire upstream code (Jaroslav Kysela) [RHEL-85740] - ASoC: sdw_utils: add name_prefix for rt1321 part id (Jaroslav Kysela) [RHEL-85740] - ASoC: tas2783: Fix build for SoundWire API update (Jaroslav Kysela) [RHEL-85740] - regmap: sdw-mbq: Don't assume the regmap device is the SoundWire slave (Jaroslav Kysela) [RHEL-85740] - soundwire: bus: fix off-by-one when allocating slave IDs (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: pcm: Set the PCM device name for HDMI (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add NO_DIRECT_COMPLETE flag to class driver (Jaroslav Kysela) [RHEL-85740] - ASoC: sdw_utils: cs42l43: Enable Headphone pin for LINEOUT jack type (Jaroslav Kysela) [RHEL-85740] - ASoC: soc-acpi-intel-ptl-match: fix name_prefix of rt1320-2 (Jaroslav Kysela) [RHEL-85740] - ASoC: sof_sdw: Add a quirk for Lenovo laptop using sidecar amps with cs42l43 (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56-test: Fix missing module namespace import (Jaroslav Kysela) [RHEL-85740] - soundwire: Add missing EXPORT for sdw_slave_type (Jaroslav Kysela) [RHEL-85740] - ASoC: sdw_utils: remove dai registered check (Jaroslav Kysela) [RHEL-85740] - ASoC: sdw_utils: Call init callbacks on the correct codec DAI (Jaroslav Kysela) [RHEL-85740] - ASoC: soc_sdw_utils: drop bogus container_of() error handling (Jaroslav Kysela) [RHEL-85740] - ASoC: intel: sof_sdw: Add codec_info for cs42l45 (Jaroslav Kysela) [RHEL-85740] - ASoC: sdw_utils: Move codec_name to dai info (Jaroslav Kysela) [RHEL-85740] - ASoC: sdw_utils: soc_sdw_utils: convert to snd_soc_dapm_xxx() (Jaroslav Kysela) [RHEL-85740] - ASoC: soc_sdw_utils: add cs35l57 support (Jaroslav Kysela) [RHEL-85740] - ASoC: tas2783A: sdw_utils: support ch 3 & 4 (Jaroslav Kysela) [RHEL-85740] - ASoC: sdw_utils: Add cs42l45 support functions (Jaroslav Kysela) [RHEL-85740] - ASoC: sdw_utils: subtract the endpoint that is not present (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Fix incorrect select SND_SOC_CS35L56_CAL_SYSFS_COMMON (Jaroslav Kysela) [RHEL-85740] - ASoC: soc.h: Add SND_SOC_BYTES_E_ACC() to allow setting access flags (Jaroslav Kysela) [RHEL-85740] - ASoC: soc.h: Add SOC_ENUM_EXT_ACC() to allow setting access flags (Jaroslav Kysela) [RHEL-85740] - soundwire: dmi-quirks: add mapping for Avell B.ON (OEM rebranded of NUC15) (Jaroslav Kysela) [RHEL-85740] - ASoC: soc-acpi-intel-ptl-match: use aggregated endpoint in ptl_rt722_l0_rt1320_l23 (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: soc-acpi-ptl-match: add cs42l43_agg_l3_cs35l56_2 support (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: soc-acpi-intel-ptl-match: Add support for rt722_l0_rt1320_l23 (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: soc-acpi-intel-mtl-match: Add 6 amp CS35L63 with feedback (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: soc-acpi-intel-mtl-match: Add 6 amp CS35L56 with feedback (Jaroslav Kysela) [RHEL-85740] - ASoc: tas2783A: acpi match for 4 channel for mtl (Jaroslav Kysela) [RHEL-85740] - ASoC: soc-acpi-intel-arl-match: change rt722 amp endpoint to aggregated (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: sof_sdw: shift SSP BT mask bits. (Jaroslav Kysela) [RHEL-85740] - ASoC: intel: sof_sdw: Add ability to have auxiliary devices (Jaroslav Kysela) [RHEL-85740] - ASoC: sdw_utils: Add codec_conf for every DAI (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: sof_sdw: add codec speaker support for the SKU (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: sof_sdw: create BT dai link if bt_link_mask is set (Jaroslav Kysela) [RHEL-85740] - ASOC: Intel: sof_sdw: add quirk for Avell B.ON (OEM rebranded NUC15) (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: sof_sdw: Add quirk to exclude RT722 speaker (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: boards: fix HDMI playback lookup when HDMI-In capture used (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: topology: Add context when sink or source widget is missing (Jaroslav Kysela) [RHEL-85740] - ASoC: soc-acpi / SOF: Add best_effort flag to get_function_tplg_files op (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: ipc4-topology: set playback channel mask (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: ipc4-control: Keep the payload size up to date (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: ipc4-control: Use the correct size for scontrol->ipc_control_data (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: ipc4-control: If there is no data do not send bytes update (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: Intel: pci-mtl: Change the topology path to intel/sof-ipc4-tplg (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: Intel: hda: Only check SSP MCLK mask in case of IPC3 (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: mock_bin: Add function to create long-offset patches (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: mock_bin: Pass offset32 to cs_dsp_mock_bin_add_raw_block() (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Handle long-offset data blocks (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Remove __free() from cs_dsp_debugfs_string_read() (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Don't use __free() in cs_dsp_load() and cs_dsp_load_coeff() (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Don't require client to provide a struct cs_dsp_client_ops (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Take pwr_lock around reading controls debugfs (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Use kvzalloc() to allocate control caches (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Remove redundant download buffer allocator (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Store control length as 32-bit (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Append \n to debugfs string during read (Jaroslav Kysela) [RHEL-85740] - firmware: cs_dsp: Factor out common debugfs string read (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l45: Corrects ASP_TX5 DAPM widget channel (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Add KUnit testing of cs35l56_set_fw_suffix() (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Use vendor-specific qualifier in firmware file search (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Log a message if firmware is missing (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Use SND_SOC_BYTES_E_ACC() for CAL_DATA_RB control (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Use SOC_ENUM_EXT_ACC() for CAL_SET_STATUS control (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Allow restoring factory calibration through ALSA control (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Create debugfs files for factory calibration (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Add control to read CAL_SET_STATUS (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Alter error codes for calibration routine (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Add calibration command to store into UEFI (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Add common code for factory calibration (Jaroslav Kysela) [RHEL-85740] - ASoC: cs35l56: Read silicon ID during initialization and save it (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib: Replace __free(kfree) with normal kfree() cleanup (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib: Add a Kconfig symbol for enabling test hooks (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib: Support Dell SSIDExV2 UEFI variable (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib: Add function to write calibration to UEFI (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib-test: Tests for reading SSIDExV2 (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib-test: Add test cases for cs_amp_set_efi_calibration_data() (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib: Return attributes from cs_amp_get_efi_variable() (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib: Add helpers for factory calibration (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib: Remove redundant calls to kunit_deactivate_static_stub() (Jaroslav Kysela) [RHEL-85740] - ASoC: cs-amp-lib-test: Add cases for factory calibration helpers (Jaroslav Kysela) [RHEL-85740] - ACPICA: Add SoundWire File Table (SWFT) signature (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: functions: Fix confusing cleanup.h syntax (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Move most of the messages from info to debug (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Fix NULL vs IS_ERR() bug in sdca_dev_register_functions() (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Correct FDL locking in sdca_fdl_process() (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add companion amp Function (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Parse XU Entity properties (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add stubs for FDL helper functions (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add UMP timeout handling for FDL (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add completion for FDL start and stop (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add helper to write initialization writes (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Populate regmap cache for readable Controls (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Factor out helper to process Control defaults (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Force some SDCA Controls to be volatile (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add comment for function reset polling (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Allow sample width wild cards in set_usage() (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add terminal type into input/output widget name (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Align mute controls to ALSA expectations (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Fixup some more Kconfig issues (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add ASoC jack hookup in class driver (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add ability to connect SDCA jacks to ASoC jacks (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Factor out jack handling into new c file (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: add function devices (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add missing forward declaration in header (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add SDCA FDL data parsing (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Parse Function Reset max delay (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add lock to serialise the Function initialisation (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Device boot into the system suspend process (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add basic system suspend support (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add SDCA IRQ enable/disable helpers (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Use helper macros for control identification (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add HID button IRQ (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Pass SoundWire slave to HID (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add early IRQ handling (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add FDL-specific IRQ processing (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Rely less on the ASoC component in IRQ handling (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Factor out a helper to find SDCA IRQ data (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Update externally_requested flag to cover all requests (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Pass device register map from IRQ alloc to handlers (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add manual PM runtime gets to IRQ handlers (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Rename SoundWire struct device variables (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add basic SDCA function driver (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add basic SDCA class driver (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add FDL library for XU entities (Jaroslav Kysela) [RHEL-85740] - ASoC: SDCA: Add UMP buffer helper functions (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: Intel: remove hyphen from AMP name_prexix (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: Intel: add hyphen between name and index to amp name_prefix (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: don't check the existence of dummy topology (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: Don't print the monolithic topology name if function topology may be used (Jaroslav Kysela) [RHEL-85740] - ASoC: soc-acpi: make some variables of acpi adr and link adr non-const (Jaroslav Kysela) [RHEL-85740] - ASoC: soc_sdw_utils: add name_prefix to asoc_sdw_codec_info struct (Jaroslav Kysela) [RHEL-85740] - ASoC: Intel: export sof_sdw_get_tplg_files (Jaroslav Kysela) [RHEL-85740] - ASoC: soc_sdw_utils: export asoc_sdw_get_dai_type (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: add platform name into sof_intel_dsp_desc (Jaroslav Kysela) [RHEL-85740] - ASoC: SOF: Intel: use sof_sdw as default SDW machine driver (Jaroslav Kysela) [RHEL-85740] - ASoC: sof-function-topology-lib: escalate the log when missing function topoplogy (Jaroslav Kysela) [RHEL-85740] - r8169: fix RTL8117 Wake-on-Lan in DASH mode (Izabela Bakollari) [RHEL-96436] - r8169: improve MAC EEE handling (Izabela Bakollari) [RHEL-96436] - r8169: add support for RTL9151A (Izabela Bakollari) [RHEL-96436] - r8169: bail out from probe if fiber mode is detected on RTL8127AF (Izabela Bakollari) [RHEL-96436] - r8169: add support for RTL8125K (Izabela Bakollari) [RHEL-96436] - r8169: reconfigure rx unconditionally before chip reset when resuming (Izabela Bakollari) [RHEL-96436] - eth: 8139too: Make 8139TOO_PIO depend on !NO_IOPORT_MAP (Izabela Bakollari) [RHEL-96436] - r8169: enable EEE at 5Gbps on RTL8126 (Izabela Bakollari) [RHEL-96436] - r8169: fix RTL8127 hang on suspend/shutdown (Izabela Bakollari) [RHEL-96436] - r8169: fix packet truncation after S4 resume on RTL8168H/RTL8111H (Izabela Bakollari) [RHEL-96436] - r8169: set EEE speed down ratio to 1 (Izabela Bakollari) [RHEL-96436] - r8169: log that system vendor flags ASPM as safe (Izabela Bakollari) [RHEL-96436] - r8169: remove redundant pci_tbl entry (Izabela Bakollari) [RHEL-96436] - r8169: add support for RTL8127A (Izabela Bakollari) [RHEL-96436] - r8169: merge chip versions 52 and 53 (RTL8117) (Izabela Bakollari) [RHEL-96436] - r8169: merge chip versions 64 and 65 (RTL8125D) (Izabela Bakollari) [RHEL-96436] - r8169: merge chip versions 70 and 71 (RTL8126A) (Izabela Bakollari) [RHEL-96436] - r8169: refactor chip version detection (Izabela Bakollari) [RHEL-96436] - r8169: use pci_prepare_to_sleep in rtl_shutdown (Izabela Bakollari) [RHEL-96436] - r8169: add RTL_GIGA_MAC_VER_LAST to facilitate adding support for new chip versions (Izabela Bakollari) [RHEL-96436] - r8169: add helper rtl8125_phy_param (Izabela Bakollari) [RHEL-96436] - r8169: add helper rtl_csi_mod for accessing extended config space (Izabela Bakollari) [RHEL-96436] - Merge: qaic driver from upstream v6.12..v6.18 (John Wiele) [RHEL-138457] - lib/interval_tree: skip the check before go to the right subtree (Joe Lawrence) [RHEL-147274] - ALSA: update RHEL kconfigs for 6.18 upstream code (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: fix micmute LED reversed on HP Abe and Bantie (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: pm4125: drop bogus container_of() error handling (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: qdsp6: q6asm-dai: set 10 ms period and buffer alignment. (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: q6adm: the the copp device only during last instance (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: q6asm-dai: perform correct state check before closing (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: q6apm-dai: set flags to reflect correct operation of appl_ptr (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: sdw: fix memory leak for sdw_stream_runtime (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: lpass-tx-macro: fix SM6115 support (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: rz-ssi: Fix rz_ssi_priv::hw_params_cache::sample_width (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: rz-ssi: Fix channel swap issue in full duplex mode (Jaroslav Kysela) [RHEL-118910] - ASoC: stm32: sai: fix OF node leak on probe (Jaroslav Kysela) [RHEL-118910] - ASoC: stm32: sai: fix clk prepare imbalance on probe failure (Jaroslav Kysela) [RHEL-118910] - ASoC: stm32: sai: fix device leak on probe (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd939x: fix regmap leak on probe failure (Jaroslav Kysela) [RHEL-118910] - ASoC: ak4458: remove the reset operation in probe and remove (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-mixer: us16x08: validate meter packet indices (Jaroslav Kysela) [RHEL-118910] - ALSA: pcmcia: Fix resource leak in snd_pdacf_probe error path (Jaroslav Kysela) [RHEL-118910] - ALSA: vxpocket: Fix resource leak in vxpocket_probe error path (Jaroslav Kysela) [RHEL-118910] - ASoC: fsl_sai: Constrain sample rates from audio PLLs only in master mode (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek - Enable Mute LED for Lenovo platform (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: fix mute/micmute LEDs don't work for HP 200 G2i (Jaroslav Kysela) [RHEL-118910] - ALSA: realtek/alc288 fix headphone for MS Surface 2/3 (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/tas2781: properly initialize speaker_id for TAS2563 (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: sof_sdw: Add new quirks for PTL on Dell with CS42L43 (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Add Asus quirk for TAS amplifiers (Jaroslav Kysela) [RHEL-118910] - regmap: slimbus: fix bus_context pointer in regmap init calls (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40317} - ASoC: ops: fix snd_soc_get_volsw for sx controls (Jaroslav Kysela) [RHEL-118910] - ASoC: SDCA: support Q7.8 volume format (Jaroslav Kysela) [RHEL-118910] - ASoC: cs35l41: Always return 0 when a subsystem ID is found (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd937x: Fix error handling in wcd937x codec driver (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: pm4125: Fix potential conflict when probing two devices (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: pm4125: Remove irq_chip on component unbind (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: Fix error handling in pm4125 audio codec driver (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc4-topology: Convert FLOAT to S32 during blob selection (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc4-topology: Prefer 32-bit DMIC blobs for 8-bit formats as well (Jaroslav Kysela) [RHEL-118910] - slimbus: ngd: Fix reference count leak in qcom_slim_ngd_notify_slaves (Jaroslav Kysela) [RHEL-118910] - ASoC: SDCA: Remove duplicated module macros (Jaroslav Kysela) [RHEL-118910] - ALSA: wavefront: Fix integer overflow in sample size validation (Jaroslav Kysela) [RHEL-118910] {CVE-2025-68344} - ALSA: wavefront: Clear substream pointers on close (Jaroslav Kysela) [RHEL-118910] - ALSA: hda: cs35l41: Fix NULL pointer dereference in cs35l41_hda_read_acpi() (Jaroslav Kysela) [RHEL-118910] {CVE-2025-68345} - ALSA: hda/tas2781: fix speaker id retrieval for multiple probes (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Add match for ASUS Xbox Ally projects (Jaroslav Kysela) [RHEL-118910] - ALSA: dice: fix buffer overflow in detect_stream_formats() (Jaroslav Kysela) [RHEL-118910] {CVE-2025-68346} - ASoC: amd: acp: update tdm channels for specific DAI (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire-motu: add bounds check in put_user loop for DSP events (Jaroslav Kysela) [RHEL-118910] - ALSA: uapi: Fix typo in asound.h comment (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire-motu: fix buffer overflow in hwdep read for DSP events (Jaroslav Kysela) [RHEL-118910] {CVE-2025-68347} - ASoC: ak5558: Disable regulator when error happens (Jaroslav Kysela) [RHEL-118910] - ASoC: ak4458: Disable regulator when error happens (Jaroslav Kysela) [RHEL-118910] - ASoC: amd: acp: Audio is not resuming after s0ix (Jaroslav Kysela) [RHEL-118910] - ASoC: bcm: bcm63xx-pcm-whistler: Check return value of of_dma_configure() (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: catpt: Fix error path in hw_params() (Jaroslav Kysela) [RHEL-118910] - ASoC: fsl_xcvr: clear the channel status control memory (Jaroslav Kysela) [RHEL-118910] - ASoC: nau8325: add missing build config (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: nau8325: Silence uninitialized variables warnings (Jaroslav Kysela) [RHEL-118910] - ASoC: nau8325: use simple i2c probe function (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2781: correct the wrong period (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2781: Correct the wrong chip ID for reset variable check (Jaroslav Kysela) [RHEL-118910] - ASoC: SDCA: Fix missing dash in HIDE DisCo property (Jaroslav Kysela) [RHEL-118910] - soundwire: intel_auxdevice: add cs42l45 codec to wake_capable_list (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek - Enable Mute LED for HP ZBook X G2i platform (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek - Enable Mute LED and Tas2781 for HP platform (Jaroslav Kysela) [RHEL-118910] - platform/x86: serial-multi-instantiate: Add IRQ_RESOURCE_OPT for IRQ missing projects (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Add quirk for HP ProBook 450 G8 (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: fix uac2 clock source at terminal parser (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: add quirk for HP pavilion aero laptop 13z-be200 (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/cirrus fix cs420x MacPro 6,1 inverted jack detection (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Add DSD quirk for LEAK Stereo 230 (Jaroslav Kysela) [RHEL-118910] - ALSA: au88x0: Fix incorrect error handling for PCI config reads (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Add native DSD quirks for PureAudio DAC series (Jaroslav Kysela) [RHEL-118910] - ASoC: rsnd: fix OF node reference leak in rsnd_ssiu_probe() (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/tas2781: Correct the wrong project ID (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Fix NULL pointer dereference in snd_usb_mixer_controls_badd (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40275} - ASoC: SDCA: bug fix while parsing mipi-sdca-control-cn-list (Jaroslav Kysela) [RHEL-118910] {CVE-2025-68281} - ALSA: usb-audio: Fix potential overflow of PCM transfer buffer (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40269} - ALSA: hda/tas2781: Add new quirk for HP new projects (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2781: fix getting the wrong device number (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: va-macro: fix resource leak in probe error path (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2783A: Fix issues in firmware parsing (Jaroslav Kysela) [RHEL-118910] - ASoC: sdw_utils: fix device reference leak in is_sdca_endpoint_present() (Jaroslav Kysela) [RHEL-118910] - ASoC: cs4271: Fix regulator leak on probe failure (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/hdmi: Fix breakage at probing nvhdmi-mcp driver (Jaroslav Kysela) [RHEL-118910] {CVE-2025-68205} - ASoC: da7213: Use component driver suspend/resume (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: add min_mute quirk for SteelSeries Arctis (Jaroslav Kysela) [RHEL-118910] - ASoC: doc: cs35l56: Update firmware filename description for B0 silicon (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Enable mic on Vaio RPL (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: pm4125-sdw: correct number of soundwire ports (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: rz-ssi: Use proper dma_buffer_pos after resume (Jaroslav Kysela) [RHEL-118910] - ASoC: fsl_sai: Fix sync error in consumer mode (Jaroslav Kysela) [RHEL-118910] - ASoC: Fix build for sdw_utils (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Fix mute led for HP Victus 15-fa1xxx (MB 8C2D) (Jaroslav Kysela) [RHEL-118910] - ASoC: rt721: fix prepare clock stop failed (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: don't log messages meant for 1810c when initializing 1824c (Jaroslav Kysela) [RHEL-118910] - ASoC: mediatek: Fix double pm_runtime_disable in remove functions (Jaroslav Kysela) [RHEL-118910] - ASoC: fsl_micfil: correct the endian format for DSD (Jaroslav Kysela) [RHEL-118910] - ASoC: fsl_sai: fix bit order for DSD format (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Use snd_codec format when initializing probe (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Disable periods-elapsed work when closing PCM (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40344} - ASoC: Intel: avs: Unprepare a stream when XRUN occurs (Jaroslav Kysela) [RHEL-118910] - ASoC: sdw_utils: add name_prefix for rt1321 part id (Jaroslav Kysela) [RHEL-118910] - ASoC: qdsp6: q6asm: do not sleep while atomic (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: soc-acpi-intel-ptl-match: Remove cs42l43 match from sdw link3 (Jaroslav Kysela) [RHEL-118910] - ASOC: max98090/91: fix for filter configuration: AHPF removed DMIC2_HPF added (Jaroslav Kysela) [RHEL-118910] - ASoC: amd: acp: Add ACP7.0 match entries for cs35l56 and cs42l43 (Jaroslav Kysela) [RHEL-118910] - ASoC: cs-amp-lib-test: Fix missing include of kunit/test-bug.h (Jaroslav Kysela) [RHEL-118910] - ASoC: cs530x: Correct log message with expected variable (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: fix control pipe direction (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Add quirk for Lenovo Yoga 7 2-in-1 14AKP10 (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Fix mute led for HP Omen 17-cb0xxx (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: fix vendor quirk for Logitech H390 (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: add volume quirks for MS LifeChat LX-3000 (Jaroslav Kysela) [RHEL-118910] - ASoC: amd/sdw_utils: avoid NULL deref when devm_kasprintf() fails (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40162} - ASoC: max98090/91: fixed max98091 ALSA widget powering up/down (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: Add compatible string fsl,imx-audio-tlv320 (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd938x-sdw: remove redundant runtime pm calls (Jaroslav Kysela) [RHEL-118910] - ASoC: sdw_utils: add rt1321 part id to codec_info_list (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Fix NULL pointer deference in try_to_register_card (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40085} - ALSA: firewire: amdtp-stream: fix enum kernel-doc warnings (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: add mixer_playback_min_mute quirk for Logitech H390 (Jaroslav Kysela) [RHEL-118910] - ASoC: nau8821: Avoid unnecessary blocking in IRQ handler (Jaroslav Kysela) [RHEL-118910] - ASoC: nau8821: Add DMI quirk to bypass jack debounce circuit (Jaroslav Kysela) [RHEL-118910] - ASoC: nau8821: Consistently clear interrupts before unmasking (Jaroslav Kysela) [RHEL-118910] - ASoC: nau8821: Generalize helper to clear IRQ status (Jaroslav Kysela) [RHEL-118910] - ASoC: nau8821: Cancel jdet_work before handling jack ejection (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: Fix gain setting ranges for Renesas IDT821034 codec (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2781: Update ti,tas2781.yaml for adding tas58xx (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2781: Support more newly-released amplifiers tas58xx in the driver (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: sc8280xp: Add support for QCS615 (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: qcom,sm8250: Add QCS615 sound card (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/tas2781: Set tas2781_hda::tasdevice_priv::chip_id as TAS5825 in case of tas5825 (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Add quirk entry for HP ZBook 17 G6 (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: apply quirk for Huawei Technologies Co., Ltd. CM-Q3 (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/intel: Add MSI X870E Tomahawk to denylist (Jaroslav Kysela) [RHEL-118910] - ALSA: hda: Fix missing pointer check in hda_component_manager_init function (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40097} - ALSA: hda: cs35l41: Fix NULL pointer dereference in cs35l41_get_acpi_mute_state() (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40098} - ASoC: rt722: add settings for rt722VB (Jaroslav Kysela) [RHEL-118910] - ASoC: meson: aiu-encoder-i2s: fix bit clock polarity (Jaroslav Kysela) [RHEL-118910] - ALSA: usb: fpc: replace kmalloc_array followed by copy_from_user with memdup_array_user (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/tas2781: Enable init_profile_id for device initialization (Jaroslav Kysela) [RHEL-118910] - ALSA: emu10k1: Fix typo in docs (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Add quirk for ASUS ROG Zephyrus Duo (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: Intel: Read the LLP via the associated Link DMA channel (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc4-pcm: do not report invalid delay values (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: sof-audio: add dev_dbg_ratelimited wrapper (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: Intel: hda-pcm: Place the constraint on period time instead of buffer time (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc4-topology: Account for different ChainDMA host buffer size (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc4-topology: Correct the minimum host DMA buffer size (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc3-topology: Fix multi-core and static pipelines tear down (Jaroslav Kysela) [RHEL-118910] - mfd: cs42l43: Remove IRQ masking in suspend (Jaroslav Kysela) [RHEL-118910] - mfd: cs42l43: Move IRQ enable/disable to encompass force suspend (Jaroslav Kysela) [RHEL-118910] - mfd: arizona: Make legacy gpiolib interface optional (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/hdmi: Add pin fix for HP ProDesk model (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: don't hardcode gain for output channel of Presonus Studio (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: add the initial mix for Presonus Studio 1824c (Jaroslav Kysela) [RHEL-118910] - ALSA: doc: improved docs about quirk_flags in snd-usb-audio (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: make param quirk_flags change-able in runtime (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: improve module param quirk_flags (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: add two-way convert between name and bit for QUIRK_FLAG_* (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: fix race condition to UAF in snd_usbmidi_free (Jaroslav Kysela) [RHEL-118910] {CVE-2025-39997} - ALSA: usb-audio: add mono main switch to Presonus S1824c (Jaroslav Kysela) [RHEL-118910] - ALSA: compress: document 'chan_map' member in snd_dec_opus (Jaroslav Kysela) [RHEL-118910] - ASoC: cs35l56: Add support for CS35L56 B2 silicon (Jaroslav Kysela) [RHEL-118910] - ASoC: cs35l56: Set fw_regs table after getting REVID (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Add quirk for HP Spectre 14t-ea100 (Jaroslav Kysela) [RHEL-118910] - ASoc: tas2783A: Fix an error code in probe() (Jaroslav Kysela) [RHEL-118910] - ASoC: tlv320aic3x: Fix class-D initialization for tlv320aic3007 (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: sc8280xp: use sa8775p/ subdir for QCS9100 / QCS9075 (Jaroslav Kysela) [RHEL-118910] - ASoC: stm32: sai: manage context in set_sysclk callback (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: ignore 1st FSERR (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: Add note for The possibility of R/L opposite Capture (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: setup both (Playback/Capture) in the same time (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: tidyup DMAC stop timing (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: add .symmetric_xxx on snd_soc_dai_driver (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: set SIFCTR register (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: use reset controller (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: add unique NOTE name (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd-common: fix signedness bug in wcd_dt_parse_micbias_info() (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-binding: Convert MediaTek mt8183-mt6358 to DT schema (Jaroslav Kysela) [RHEL-118910] - ASoC: Convert MT8183 DA7219 sound card to DT schema (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-binding: Convert mt8183-afe-pcm to dt-schema (Jaroslav Kysela) [RHEL-118910] - ASoc: tas2783A: Fix spelling mistake "Perifpheral" -> "Peripheral" (Jaroslav Kysela) [RHEL-118910] - ASoc: tas2783A: Remove unneeded semicolon (Jaroslav Kysela) [RHEL-118910] - ASoC: wcd934x: fix error handling in wcd934x_codec_parse_data() (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: don't apply interface quirk to Presonus S1824c (Jaroslav Kysela) [RHEL-118910] - tas2783A: Add acpi match changes for Intel MTL (Jaroslav Kysela) [RHEL-118910] - ASoc: tas2783A: add machine driver changes (Jaroslav Kysela) [RHEL-118910] - ASoc: tas2783A: machine driver amp utility for TI devices (Jaroslav Kysela) [RHEL-118910] - ASoc: tas2783A: Add soundwire based codec driver (Jaroslav Kysela) [RHEL-118910] - ASoC: ops: improve snd_soc_get_volsw (Jaroslav Kysela) [RHEL-118910] - ASoC: cs35l41: Fallback to reading Subsystem ID property if not ACPI (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: cirrus,cs35l41: Document the cirrus,subsystem-id property (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2781: Correct the wrong description and register address on tas2781 (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: sof_sdw: Prevent jump to NULL add_sidecar callback (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40132} - ASoC: qcom: qdsp6/audioreach: add support for offloading raw opus playback (Jaroslav Kysela) [RHEL-118910] - ALSA: compress_offload: increase SNDRV_COMPRESS_VERSION minor version by 1 (Jaroslav Kysela) [RHEL-118910] - ALSA: compress: add raw opus codec define and opus decoder structs (Jaroslav Kysela) [RHEL-118910] - ASoC: fsl: fsl_qmc_audio: Drop struct qmc_dai_chan (Jaroslav Kysela) [RHEL-118910] - ASoC: fsl: fsl_qmc_audio: Only request completion on last channel (Jaroslav Kysela) [RHEL-118910] - ASoC: fsl: fsl_qmc_audio: Ensure audio channels are ordered in TDM bus (Jaroslav Kysela) [RHEL-118910] - ASoC: da7213: Convert to DEFINE_RUNTIME_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: sc8280xp: explicitly set S16LE format in sc8280xp_be_hw_params_fixup() (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc3-dtrace: fix potential integer overflow in allocation (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd937x: get regmap directly (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd938x: get regmap directly (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd-common: move status_update callback to common (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd939x: get regmap directly (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd-common: move component ops to common (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd-common: move WCD_SDW_CH to common (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd: add common helper for wcd codecs (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcdxxxx: use sdw_slave_get_current_bank helper (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcdxxxx: use of_sdw_find_device_by_node helper (Jaroslav Kysela) [RHEL-118910] - soundwire: bus: add sdw_slave_get_current_bank helper (Jaroslav Kysela) [RHEL-118910] - soundwire: bus: add of_sdw_find_device_by_node helper (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd937x: make stub functions inline (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wcd937x: set the comp soundwire port correctly (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40045} - ASoC: soc-dapm: add snd_soc_dapm_set_idle_bias() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: add snd_soc_dapm_get_bias_level() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: tidyup idle_bias handling - step2 (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: tidyup idle_bias handling - step1 (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: remove suspend_bias_off from snd_soc_dapm_context (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-card: add snd_soc_card_to_dapm() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-component: add snd_soc_component_to_dapm() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: use dapm->component instead of container_of() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: add snd_soc_dapm_to_card() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: add snd_soc_dapm_to_dev() (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: Fix KCSAN data-race warning at snd_seq_fifo_poll_wait() (Jaroslav Kysela) [RHEL-118910] - ALSA: spi/at73c213: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: add bindings for pm4125 audio codec (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: add new pm4125 audio codec driver (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: asahi-kasei,ak4458: Reference common DAI properties (Jaroslav Kysela) [RHEL-118910] - ALSA: pcm: Disable bottom softirqs as part of spin_lock_irq() on PREEMPT_RT (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40142} - ASoC: Intel: hda-sdw-bpt: set persistent_buffer false (Jaroslav Kysela) [RHEL-118910] - ALSA: serial-generic: remove shared static buffer (Jaroslav Kysela) [RHEL-118910] - ALSA: asihpi: Simplify error handling in PCM substream setup (Jaroslav Kysela) [RHEL-118910] - ASoC: apple: mca: Add "apple,t8103-mca" compatible (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: apple,mca: Add t6020-mca compatible (Jaroslav Kysela) [RHEL-118910] - ALSA: aoa: Remove redundant size arguments from strscpy() (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: linux,spdif: Add "port" node (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: pcm1754: add pcm1754 dac driver (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: ti,pcm1754: add binding documentation (Jaroslav Kysela) [RHEL-118910] - ALSA: sparc/dbri: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sparc/cs4231: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sparc/amd7930: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: usb: fcp: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: line6: fix scoped_guard done variable misuse (Jaroslav Kysela) [RHEL-118910] - ALSA: line6: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ppc: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: snd_ps3: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: parisc: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: snd-n64: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sgio2audio: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: arm: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: aoa: Don't split string across lines (Jaroslav Kysela) [RHEL-118910] - ALSA: aoa: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ASoC: cs-amp-lib-test: Add test for getting cal data from HP EFI (Jaroslav Kysela) [RHEL-118910] - ASoC: cs-amp-lib: Add HP-specific EFI variable for calibration data (Jaroslav Kysela) [RHEL-118910] - ASoC: cs-amp-lib-test: Add tests for cs_amp_get_vendor_spkid() (Jaroslav Kysela) [RHEL-118910] - ASoC: cs35l56: Check for vendor-specific speaker ID value (Jaroslav Kysela) [RHEL-118910] - ASoC: cs-amp-lib: Add handling for Lenovo and HP UEFI speaker ID (Jaroslav Kysela) [RHEL-118910] - ASoC: cs-amp-lib: Rename defines for Cirrus Logic EFI (Jaroslav Kysela) [RHEL-118910] - ALSA: hrtimer: Avoid direct access to hrtimer clockbase (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2781: Add tas2118, tas2x20, tas5825 support (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2781: Add tas2118, tas2x20, tas5825 support (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: bytcr_rt5651: Fix invalid quirk input mapping (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40121} - ASoC: Intel: bytcht_es8316: Fix invalid quirk input mapping (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: tlv320dac33: Convert to use gpiod api (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: tlv320dac33: Add default value for burst_bclkdiv (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: tlv320dac33: Remove unused struct tlv320dac33_platform_data and header file tlv320dac33-plat.h (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: rz-ssi: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: fsi: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: rsnd: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: compress_offload: Add SNDRV_COMPRESS_AVAIL64 ioctl (Jaroslav Kysela) [RHEL-118910] - ALSA: compress_offload: Add SNDRV_COMPRESS_TSTAMP64 ioctl (Jaroslav Kysela) [RHEL-118910] - ALSA: compress_offload: Add 64-bit safe timestamp infrastructure (Jaroslav Kysela) [RHEL-118910] - ALSA: scarlett2: Add Vocaster speaker/headphone mute controls (Jaroslav Kysela) [RHEL-118910] - ALSA: cs4281: Send the PCM period elapsed notification properly (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: fs210x: Add NULL check in fs210x_register_snd_component (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: apply quirk for MOONDROP Quark2 (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: apply "mixer_min_mute" quirks on some devices (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: add quirk QUIRK_FLAG_MIXER_CAPTURE_MIN_MUTE (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: rename QUIRK_FLAG_MIXER_MIN_MUTE to QUIRK_FLAG_MIXER_PLAYBACK_MIN_MUTE (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: qcom,lpass-va-macro: Update bindings for clocks to support ADSP (Jaroslav Kysela) [RHEL-118910] - ASoC: cs42l43: Shutdown jack detection on suspend (Jaroslav Kysela) [RHEL-118910] - ASoC: cs42l43: Disable IRQs in system suspend (Jaroslav Kysela) [RHEL-118910] - ASoC: cs42l43: Store IRQ domain in codec private data (Jaroslav Kysela) [RHEL-118910] - ASoC: cs42l43: Rename system suspend callback and fix debug print (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: wlf,wm8960: Document routing strings (pin names) (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: nuvoton,nau8825: Document routing strings (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: everest,es8316: Document routing strings (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: lpass-wsa-macro: add Codev version 2.9 (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: lpass-macro: add Codec version 2.9 (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: qcom: Add Glymur LPASS wsa and va macro codecs (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: x1e80100: add compatible for glymur SoC (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: qcom,sm8250: Add glymur sound card (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: x1e80100: set card driver name from match data (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: ssm4567: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: rt5682: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: rt5663: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: rt5514: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: rt298: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: rt286: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: rt274: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: probe: Refactor dai_link creation (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: nau8825: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: max98927: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: max98373: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: max98357a: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: i2stest: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: es8336: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: dmic: Refactor dai_link creation (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: da7219: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: hda: Adjust platform name (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/conexant: Fix typos in comments (Jaroslav Kysela) [RHEL-118910] - ALSA: rme32: Fix serialization in snd_rme32_capture_adat_open() (Jaroslav Kysela) [RHEL-118910] - ASoC: rockchip: i2s-tdm: switch to FIELD_PREP_WM16_CONST macro (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc4-topology: Fix a less than zero check on a u32 (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Use is_s4_resume() macro (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: audioreach: convert to cpu endainess type before accessing (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: topology: convert to cpu endainess type before accessing (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: audioreach: fix potential null pointer dereference (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40013} - soundwire: Use min() to improve code (Jaroslav Kysela) [RHEL-118910] - soundwire: bus: Drop dev_pm_domain_detach() call (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: rename snd_soc_kcontrol_component() to snd_soc_kcontrol_to_component() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: rename dapm_kcontrol_get_value() to snd_soc_dapm_kcontrol_get_value() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: rename snd_soc_dapm_kcontrol_dapm() to snd_soc_dapm_kcontrol_to_dapm() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: rename snd_soc_dapm_kcontrol_widget() to snd_soc_dapm_kcontrol_to_widget() (Jaroslav Kysela) [RHEL-118910] - ALSA: misc: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: virtio: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ac97bus: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: atmel: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: pxa2xx: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: aaci: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: aoa: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sparc: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: vxpocket: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: pdaudiocf: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: at73c213: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: xen: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: x86: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: x86: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: synth: Use guard() for preset locks (Jaroslav Kysela) [RHEL-118910] - ALSA: synth: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: synth: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: i2c: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: i2c: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: caiaq: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: bcd2000: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: usb: qcom: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: line6: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hiface: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hiface: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: usx2y: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ua101: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ua101: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: serial-u16550: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: portman2x4: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: mts64: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: mtpav: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: mpu401: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: dummy: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: vx: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: opl4: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: opl4: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: opl3: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: opl3: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: aloop: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: aloop: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: wavefront: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: wss: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: wss: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sscape: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: emu8000: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sb: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sb: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: opti9xx: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: opl3sa2: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: msnd: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: gus: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: gus: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: es18xx: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: es1688: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: cs423x: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: cs423x: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: cmi8330: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ad1816a: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ymfpci: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: vx222: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: via82xx: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: trident: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: trident: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sonicvibes: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sis7019: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: sis7019: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: rme9652: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hdspm: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hdsp: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: rme96: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: rme32: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: pcxhr: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: oxygen: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: oxygen: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: nm256: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: nm256: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: mixart: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: maestro3: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: lx6464es: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: lola: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: lola: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: korg1212: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: korg1212: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: intel8x0: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ice1712: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ice1712: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: fm801: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: es1968: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: es1968: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: es1938: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: emu10k1x: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: emu10k1: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: emu10k1: Use guard() for emu1010 FPGA locking (Jaroslav Kysela) [RHEL-118910] - ALSA: emu10k1: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: echoaudio: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: echoaudio: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ctxfi: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ctxfi: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: cs5535audio: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: cs46xx: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: cs46xx: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: cs4281: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: cmipci: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: cmipci: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ca0106: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: bt87x: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: aw2: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: aw2: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: atiixp: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: atiixp: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ad1889: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: als4000: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: als300: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ens137x: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ens137x: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: azt3328: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ali5451: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ac97: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: ac97: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: motu: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: lib: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: tascam: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: oxfw: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: fireworks: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: fireface: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: digi00x: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: dice: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: bebob: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: lib: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: isight: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: fireface: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: tascam: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: oxfw: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: motu: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: fireworks: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: digi00x: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: dice: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: firewire: bebob: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ASoC: sof: ipc4-topology: Add support to sched_domain attribute (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: sof-client: Introduce sof_client_dev_entry structure (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: sof-client: Convert sof_client_dev_to_sof_dev into function (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: sof-client-probes: Add available points_info(), IPC4 only (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: sof-client-probes-ipc4: Human readable debugfs "probe_points" (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: sof-client: Add sof_client_ipc4_find_swidget_by_id() (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: IPC4: Add GET macros for module id and module instance id (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: sof-client-probes-ipc4: Implement ipc4_probes_points_info (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc4-topology: Add support for float sample type (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc4-topology: Add support for 8-bit formats (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: ipc4-pcm: Add fixup for channels (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: oss/rw: Cleanup with guard (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: oss/synth: Clean up with guard and auto cleanup (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: oss/midi: Cleanup with guard and auto-cleanup (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: oss: Clean up core code with guard() (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: Clean up fifo locking with guard (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: Clean up queue locking with auto cleanup (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: Clean up port locking with auto cleanup (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: Use auto-cleanup for client refcounting (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: Use guard() for mutex and rwsem locks (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: Clean up spin lock with guard() (Jaroslav Kysela) [RHEL-118910] - ALSA: seq: Simplify internal command operation from OSS layer (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/intel: Use guard() for spinlocks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/common: Use guard() for spinlocks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/core: Use guard() for spinlocks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/ext: Use guard() for spinlocks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/generic: Use auto cleanup for temporary buffers (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Use auto cleanup for temporary buffers (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/common: Use auto cleanup for temporary buffers (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/intel: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/analog: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/generic: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/component: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/cs8409: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/tas2781: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/cs35l41: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Use guard() for mutex locks and COEF locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/hdmi: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/ca0132: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/core: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/common: Use guard() for mutex locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda: Use auto cleanup macros for DSP loader locks (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/common: Use cleanup macros for PM controls (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/realtek: Use cleanup macros for PM controls (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/hdmi: Use cleanup macros for PM controls (Jaroslav Kysela) [RHEL-118910] - ALSA: hda/ca0132: Use cleanup macros for PM controls (Jaroslav Kysela) [RHEL-118910] - ALSA: hda: Introduce auto cleanup macros for PM (Jaroslav Kysela) [RHEL-118910] - ASoC: doc: Internally link to Writing an ALSA Driver docs (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: Intel: only detect codecs when HDA DSP probe (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: Intel: split codec mask detect and programming UNSOL (Jaroslav Kysela) [RHEL-118910] - ASoC: amd: acp: Remove (explicitly) unused header (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: use int type to store negative error codes (Jaroslav Kysela) [RHEL-118910] - ASoC: adau1977: use int type to store negative error codes (Jaroslav Kysela) [RHEL-118910] - ASoC: amd: use int type to store negative error codes (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Allow i2s test and non-test boards to coexist (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Simplify avs_get_i2s_boards() (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Simplify dmi_match_quirk() (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Cleanup duplicate members (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: New board registration routines (Jaroslav Kysela) [RHEL-118910] - ASoC: mediatek: common: Switch to for_each_available_child_of_node_scoped() (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: start DMAC first (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: cleanup status clear method (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: tidyup error message (Jaroslav Kysela) [RHEL-118910] - ASoC: renesas: msiof: msiof_update_and_wait() checks whether reg was updated (Jaroslav Kysela) [RHEL-118910] - ALSA: lx_core: use int type to store negative error codes (Jaroslav Kysela) [RHEL-118910] - ALSA: pcm: oss: Use guard() for spin locks (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: us144mkii: Fixes for handshake, MIDI out and cleanup (Jaroslav Kysela) [RHEL-118910] - ASoC: tlv320aic32x4: use dev_err_probe() for regulators (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: imx: Remove the use of dev_err_probe() (Jaroslav Kysela) [RHEL-118910] - ASoC: imx-hdmi: remove cpu_pdev related code (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Add validation of UAC2/UAC3 effect units (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: omap-twl4030: convert to DT schema (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: ti,twl4030-audio: convert to DT schema (Jaroslav Kysela) [RHEL-118910] - ASoC: test-component: Use kcalloc() instead of kzalloc() (Jaroslav Kysela) [RHEL-118910] - ASoC: fsl: Use kcalloc() instead of kzalloc() (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: Use kcalloc() instead of kzalloc() (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: us144mkii: Fix null-deref in tascam_midi_in_urb_complete() (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: audioreach: add support for SMECNS module (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: audioreach: sort modules based on hex ids (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: audioreach: fix typos in I2S_INTF_TYPE (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: audioreach: add support for static calibration (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: audioreach: add documentation for i2s interface type (Jaroslav Kysela) [RHEL-118910] - ASoC: qcom: audioreach: deprecate AR_TKN_U32_MODULE_[IN/OUT]_PORTS (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: us144mkii: Use le16_to_cpu() for product ID comparison (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: wsa883x: Handle shared reset GPIO for WSA883x speakers (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: qcom,wsa8830: Add reset-gpios for shared line (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Streamline register-component function names (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Do not share the name pointer between components (Jaroslav Kysela) [RHEL-118910] {CVE-2025-40338} - ASoC: Intel: avs: Drop pcm.h dependency for probes (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Separate debug symbols (Jaroslav Kysela) [RHEL-118910] - ASoC: es8323: add proper left/right mixer controls via DAPM (Jaroslav Kysela) [RHEL-118910] - ASoC: es8323: remove DAC enablement write from es8323_probe (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Add infrastructure for TASCAM US-144MKII (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: us144mkii: Add deep sleep command (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: us144mkii: Add MIDI support and mixer controls (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: us144mkii: Implement audio capture and decoding (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: us144mkii: Implement audio playback and feedback (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: us144mkii: Add PCM core infrastructure (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Add initial driver for TASCAM US-144MKII (Jaroslav Kysela) [RHEL-118910] - ASoC: wl1273: Remove (Jaroslav Kysela) [RHEL-118910] - ASoC: es8323: enable DAPM power widgets for playback DAC and output (Jaroslav Kysela) [RHEL-118910] - ASoC: remove unneeded 'fast_io' parameter in regmap_config (Jaroslav Kysela) [RHEL-118910] - ASoC: rt1321: Add RT1321 amplifier support (Jaroslav Kysela) [RHEL-118910] - ALSA: hda: Improve local variable data type in print_device_list() (Jaroslav Kysela) [RHEL-118910] - ALSA: hda: Use min() to simplify snd_hda_get_devices() (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: sst: Remove redundant semicolons (Jaroslav Kysela) [RHEL-118910] - ALSA: hda: Improve local variable data type in snd_hda_get_num_devices() (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Use auto-cleanup for shutdown locks (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: Convert brcm,bcm2835-i2s to DT schema (Jaroslav Kysela) [RHEL-118910] - soundwire: debugfs: add SCP_SDCA_IntStatX and SCP_SDCA_IntMaskX registers (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: realtek,alc5623: convert to DT schema (Jaroslav Kysela) [RHEL-118910] - ASoC: fix "dependant"->"dependent" (Jaroslav Kysela) [RHEL-118910] - ALSA: usb-audio: Replace manual mutex/spinlock with guard() (Jaroslav Kysela) [RHEL-118910] - ALSA: 6fire: Clean ups with guard() (Jaroslav Kysela) [RHEL-118910] - ALSA: usb: scarlett2: Clean ups with guard() and __free() (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: Add FourSemi FS2104/5S audio amplifier driver (Jaroslav Kysela) [RHEL-118910] - ASoC: codecs: Add library for FourSemi audio amplifiers (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: Add FS2104/5S audio amplifiers (Jaroslav Kysela) [RHEL-118910] - ALSA: hda: Add TAS5825 support (Jaroslav Kysela) [RHEL-118910] - ALSA: hda: Fix spelling mistake "dismatch" -> "mismatch" (Jaroslav Kysela) [RHEL-118910] - ASoC: cs48l32: Use PTR_ERR_OR_ZERO() to simplify code (Jaroslav Kysela) [RHEL-118910] - ASoC: rt721: add some vendor registers (Jaroslav Kysela) [RHEL-118910] - ASoC: SOF: imx: Remove error print for devm_add_action_or_reset() (Jaroslav Kysela) [RHEL-118910] - ASoC: mediatek: Use SND_JACK_AVOUT for HDMI/DP jacks (Jaroslav Kysela) [RHEL-118910] - ASoC: tas2781: Add keyword "init" in profile section (Jaroslav Kysela) [RHEL-118910] - ASoC: dmaengine_pcm: Add port_window_size to DAI dma data struct (Jaroslav Kysela) [RHEL-118910] - ASoC: dt-bindings: Drop imx-audio-sgtl5000.txt (Jaroslav Kysela) [RHEL-118910] - ASoC: pxa: add GPIOLIB_LEGACY dependency (Jaroslav Kysela) [RHEL-118910] - ASoC: add GPIOLIB_LEGACY dependency where needed (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-component: unpack snd_soc_component_init_bias_level() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-component: unpack snd_soc_component_get_bias_level() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-component: unpack snd_soc_component_force_bias_level() (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: move snd_soc_dapm_init_bias_level() to soc-dpcm (Jaroslav Kysela) [RHEL-118910] - ASoC: soc-dapm: move snd_soc_dapm_get_bias_level() to soc-dpcm (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Conditional-path support (Jaroslav Kysela) [RHEL-118910] - ASoC: Intel: avs: Parse conditional path tuples (Jaroslav Kysela) [RHEL-118910] - redhat/configs: new config in phy (Izabela Bakollari) [RHEL-121399] - net: phy: Don't register LEDs for genphy (Izabela Bakollari) [RHEL-121399] - net: sfp: return the number of written bytes for smbus single byte access (Izabela Bakollari) [RHEL-121399] - net: phy: mxl-86110: Add power management and soft reset support (Izabela Bakollari) [RHEL-121399] - net: phy: mediatek: fix nvmem cell reference leak in mt798x_phy_calibration (Izabela Bakollari) [RHEL-121399] - net: sfp: extend Potron XGSPON quirk to cover additional EEPROM variant (Izabela Bakollari) [RHEL-121399] - net: phy: marvell-88q2xxx: Fix clamped value in mv88q2xxx_hwmon_write (Izabela Bakollari) [RHEL-121399] - net: phy: microchip_t1s: add SQI support for LAN867x Rev.D0 PHYs (Izabela Bakollari) [RHEL-121399] - net: phy: phy-c45: add SQI and SQI+ support for OATC14 10Base-T1S PHYs (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: check for NVMEM deferral (Izabela Bakollari) [RHEL-121399] - net: phy: Add MDIO_PMA_CTRL1_SPEED for 2.5G and 5G to reflect PMA values (Izabela Bakollari) [RHEL-121399] - net: phy: dp83867: implement configurability for SGMII in-band auto-negotiation (Izabela Bakollari) [RHEL-121399] - net: phy: nxp-c45-tja11xx: add HW timestamp configuration reporting (Izabela Bakollari) [RHEL-121399] - phy: mscc: add HW timestamp configuration reporting (Izabela Bakollari) [RHEL-121399] - net: phy: dp83640: add HW timestamp configuration reporting (Izabela Bakollari) [RHEL-121399] - net: phy: broadcom: add HW timestamp configuration reporting (Izabela Bakollari) [RHEL-121399] - phy: add hwtstamp_get callback to phy drivers (Izabela Bakollari) [RHEL-121399] - phy: rename hwtstamp callback to hwtstamp_set (Izabela Bakollari) [RHEL-121399] - net: phy: mxl-gpy: add support for MxL86252 and MxL86282 (Izabela Bakollari) [RHEL-121399] - net: phy: mxl-gpy: add support for MxL86211C (Izabela Bakollari) [RHEL-121399] - net: mdio: eliminate kdoc warnings in mdio_device.c and mdio_bus.c (Izabela Bakollari) [RHEL-121399] - net: phy: mxl-gpy: fix link properties on USXGMII and internal PHYs (Izabela Bakollari) [RHEL-121399] - net: phy: mxl-gpy: fix bogus error on USXGMII and integrated PHY (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: remove not needed initialization of phy_device members (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: fix missing initialization of fixed phy link (Izabela Bakollari) [RHEL-121399] - net: phy: adin1100: Simplify register value passing (Izabela Bakollari) [RHEL-121399] - net: phy: adin1100: Fix software power-down ready condition (Izabela Bakollari) [RHEL-121399] - net: mdio: improve reset handling in mdio_device.c (Izabela Bakollari) [RHEL-121399] - net: mdio: common handling of phy device reset properties (Izabela Bakollari) [RHEL-121399] - net: mdiobus: release reset_gpio in mdiobus_unregister_device() (Izabela Bakollari) [RHEL-121399] - net: mdio: move device reset functions to mdio_device.c (Izabela Bakollari) [RHEL-121399] - net: phylink: add missing supported link modes for the fixed-link (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: lan8814: Enable in-band auto-negotiation (Izabela Bakollari) [RHEL-121399] - net: phy: Add helper for fixing RGMII PHY mode based on internal mac delay (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: remove setting supported/advertised modes from fixed_phy_register (Izabela Bakollari) [RHEL-121399] - net: phy: mscc: Handle devm_phy_package_join() failure in vsc85xx_probe_common() (Izabela Bakollari) [RHEL-121399] - net: phy: mscc: Add support for PHY LED control (Izabela Bakollari) [RHEL-121399] - net: phy: mscc: Consolidate probe functions into a common helper (Izabela Bakollari) [RHEL-121399] - net: phy: mscc: Simplify LED mode update using phy_modify() (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: initialize the link status as up (Izabela Bakollari) [RHEL-121399] - net: mdio: fix resource leak in mdiobus_register_device() (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: lan8814 fix reset of the QSGMII interface (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: shrink size of struct fixed_phy_status (Izabela Bakollari) [RHEL-121399] - net: phy: microchip_t1s:: add cable diagnostic support for LAN867x Rev.D0 (Izabela Bakollari) [RHEL-121399] - net: phy: phy-c45: add OATC14 10BASE-T1S PHY cable diagnostic support (Izabela Bakollari) [RHEL-121399] - net: phy: qt2025: Wait until PHY becomes ready (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: remove fixed_phy_add (Izabela Bakollari) [RHEL-121399] - MIPS: BCM47XX: remove creating a fixed phy (Izabela Bakollari) [RHEL-121399] - net: b44: register a fixed phy using fixed_phy_register_100fd if needed (Izabela Bakollari) [RHEL-121399] - m68k: coldfire: remove creating a fixed phy (Izabela Bakollari) [RHEL-121399] - net: fec: register a fixed phy using fixed_phy_register_100fd if needed (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: add helper fixed_phy_register_100fd (Izabela Bakollari) [RHEL-121399] - net: phy: make phy_device members pause and asym_pause bitfield bits (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: add MSE interface support for KSZ9477 family (Izabela Bakollari) [RHEL-121399] - net: phy: introduce internal API for PHY MSE diagnostics (Izabela Bakollari) [RHEL-121399] - net: phy: microchip_t1s: add support for Microchip LAN867X Rev.D0 PHY (Izabela Bakollari) [RHEL-121399] - net: phy: use new iterator mdiobus_for_each_phy in mdiobus_prevent_c45_scan (Izabela Bakollari) [RHEL-121399] - net: phy: add iterator mdiobus_for_each_phy (Izabela Bakollari) [RHEL-121399] - net: phy: dp83869: fix STRAP_OPMODE bitmask (Izabela Bakollari) [RHEL-121399] - net: phy: motorcomm: Add support for PHY LEDs on YT8531 (Izabela Bakollari) [RHEL-121399] - phy: mscc: Fix PTP for VSC8574 and VSC8572 (Izabela Bakollari) [RHEL-121399] - phy: mscc: Use PHY_ID_MATCH_EXACT for VSC8584, VSC8582, VSC8575, VSC856X (Izabela Bakollari) [RHEL-121399] - net: phy: dp83867: Disable EEE support as not implemented (Izabela Bakollari) [RHEL-121399] - net: phylink: add phylink managed wake-on-lan PHY speed control (Izabela Bakollari) [RHEL-121399] - net: phylink: add phylink managed MAC Wake-on-Lan support (Izabela Bakollari) [RHEL-121399] - net: phy: add phy_may_wakeup() (Izabela Bakollari) [RHEL-121399] - net: phy: add phy_can_wakeup() (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Add support for non PTP SKUs for lan8814 (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: fix typos in comments (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: simplify return in ksz9477_phy_errata() (Izabela Bakollari) [RHEL-121399] - net: mdio: use macro module_driver to avoid boilerplate code (Izabela Bakollari) [RHEL-121399] - net: phy: RTL8211FVD: Restore disabling of PHY-mode EEE (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: create rtl8211f_config_phy_eee() helper (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: eliminate priv->phycr1 variable (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: allow CLKOUT to be disabled on RTL8211F(D)(I)-VD-CG (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: eliminate has_phycr2 variable (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: eliminate priv->phycr2 variable (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: create rtl8211f_config_rgmii_delay() (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: add interrupt support for RTL8221B (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: Add RTL8224 cable testing support (Izabela Bakollari) [RHEL-121399] - net: phy: motorcomm: fix duplex setting error for phy leds (Izabela Bakollari) [RHEL-121399] - net: mdio: rtl9300: use scoped for loops (Izabela Bakollari) [RHEL-121399] - of: mdio: warn if deprecated fixed-link binding is used (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: lan8842 errata (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: lan8842 errata (Izabela Bakollari) [RHEL-121399] - net: phy: add Kconfig symbol PHY_PACKAGE (Izabela Bakollari) [RHEL-121399] - net: phy: make phy_package a separate module (Izabela Bakollari) [RHEL-121399] - net: phy: make mdio consumer / device layer a separate module (Izabela Bakollari) [RHEL-121399] - net: phy: remove Kconfig symbol MDIO_DEVRES (Izabela Bakollari) [RHEL-121399] - net: phy: factor out provider part from mdio_bus.c (Izabela Bakollari) [RHEL-121399] - mdio: fix CONFIG_MDIO_DEVRES selects (Izabela Bakollari) [RHEL-121399] - net: mdio: Add RTL9300 MDIO driver (Izabela Bakollari) [RHEL-121399] - dt-bindings: ethernet-phy: add MII-Lite phy interface type (Izabela Bakollari) [RHEL-121399] - dt-bindings: net: qca,ar803x: Add IPQ5018 Internal GE PHY support (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: always set shared->phydev for LAN8814 (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: fix rtl8221b-vm-cg name (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: Avoid PHYCR2 access if PHYCR2 not present (Izabela Bakollari) [RHEL-121399] - net: phy: bcm54811: Fix GMII/MII/MII-Lite selection (Izabela Bakollari) [RHEL-121399] - net: doc: Fix typos in docs (Izabela Bakollari) [RHEL-121399] - net: sfp: improve poll interval handling (Izabela Bakollari) [RHEL-121399] - net: sfp: don't include swphy.h (Izabela Bakollari) [RHEL-121399] - net: phy: annotate linkmode initializers as not used after init phase (Izabela Bakollari) [RHEL-121399] - net: phy: stop exporting phy_driver_unregister (Izabela Bakollari) [RHEL-121399] - docs: networking: phy: clarify abbreviation "PAL" (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Fix lan8814_config_init (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Fix default LED behaviour (Izabela Bakollari) [RHEL-121399] - net: phy: stop exporting phy_driver_register (Izabela Bakollari) [RHEL-121399] - net: phy: dp83640: improve phydev and driver removal handling (Izabela Bakollari) [RHEL-121399] - net: phy: ax88796b: Replace hard-coded values with PHY_ID_MATCH_MODEL() (Izabela Bakollari) [RHEL-121399] - net: sfp: remove old sfp_parse_* functions (Izabela Bakollari) [RHEL-121399] - net: phy: update all PHYs to use sfp_get_module_caps() (Izabela Bakollari) [RHEL-121399] - net: phylink: use sfp_get_module_caps() (Izabela Bakollari) [RHEL-121399] - net: sfp: provide sfp_get_module_caps() (Izabela Bakollari) [RHEL-121399] - net: sfp: convert sfp quirks to modify struct sfp_module_support (Izabela Bakollari) [RHEL-121399] - net: sfp: pre-parse the module support (Izabela Bakollari) [RHEL-121399] - net: phy: add phy_interface_copy() (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: use %%pe in print format (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Add Fast link failure support for lan8842 (Izabela Bakollari) [RHEL-121399] - net: phy: clear link parameters on admin link down (Izabela Bakollari) [RHEL-121399] - net: phy: nxp-c45-tja11xx: use bitmap_empty() where appropriate (Izabela Bakollari) [RHEL-121399] - net: phylink: warn if deprecated array-style fixed-link binding is used (Izabela Bakollari) [RHEL-121399] - net: phy: clear EEE runtime state in PHY_HALTED/PHY_ERROR (Izabela Bakollari) [RHEL-121399] - net: phy: broadcom: Convert to PHY_ID_MATCH_MODEL macro (Izabela Bakollari) [RHEL-121399] - net: phy: broadcom: Convert to phy_id_compare_model() (Izabela Bakollari) [RHEL-121399] - net: phy: introduce phy_id_compare_model() PHY ID helper (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Update Kconfig help text (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: remove two function stubs (Izabela Bakollari) [RHEL-121399] - net: phy: marvell: Fix 88e1510 downshift counter errata (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: delete aqr_firmware_read_fingerprint() prototype (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: remove struct fixed_mdio_bus (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: add helper fixed_phy_find (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: remove member no_carrier from struct fixed_phy (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: remove unused interrupt support (Izabela Bakollari) [RHEL-121399] - net: phy: fix phy_uses_state_machine() (Izabela Bakollari) [RHEL-121399] - net: phy: NXP_TJA11XX: Update Kconfig with TJA1102 support (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: support phy-mode = "10g-qxgmii" on NXP SPF-30841 (AQR412C) (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: create and store a 64-bit firmware image fingerprint (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: report and configure in-band autoneg capabilities (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: print global syscfg registers (Izabela Bakollari) [RHEL-121399] - net: phy: transfer phy_config_inband() locking responsibility to phylink (Izabela Bakollari) [RHEL-121399] - net: phylink: add lock for serializing concurrent pl->phydev writes with resolver (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: remove link gpio support (Izabela Bakollari) [RHEL-121399] - phy: mscc: Stop taking ts_lock for tx_queue and use its own lock (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Add PTP support for lan8842 (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Introduce function __lan8814_ptp_probe_once (Izabela Bakollari) [RHEL-121399] - net: phylink: move PHY interrupt request to non-fail path (Izabela Bakollari) [RHEL-121399] - net: phylink: disable autoneg for interfaces that have no inband (Izabela Bakollari) [RHEL-121399] - net: phylink: provide phylink_get_inband_type() (Izabela Bakollari) [RHEL-121399] - net: phy: add phy_interface_weight() (Izabela Bakollari) [RHEL-121399] - net: sfp: add quirk for FLYPRO copper SFP+ module (Izabela Bakollari) [RHEL-121399] - net: phy: mtk-2p5ge: Add LED support for MT7988 (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: simplify fixed_mdio_read (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: support for TRIGGER_NETDEV_LINK on RTL8211E and RTL8211F (Izabela Bakollari) [RHEL-121399] - net: phy: fixed_phy: let fixed_phy_unregister free the phy_device (Izabela Bakollari) [RHEL-121399] - net: phy: fixed: let fixed_phy_add always use addr 0 and remove return value (Izabela Bakollari) [RHEL-121399] - phy: mscc: Fix when PTP clock is register and unregister (Izabela Bakollari) [RHEL-121399] - net: phy: as21xxx: better handle PHY HW reset on soft-reboot (Izabela Bakollari) [RHEL-121399] - net: phy: introduce phy_id_compare_vendor() PHY ID helper (Izabela Bakollari) [RHEL-121399] - net: phy: mxl-86110: add basic support for MxL86111 PHY (Izabela Bakollari) [RHEL-121399] - net: phy: mxl-86110: fix indentation in struct phy_driver (Izabela Bakollari) [RHEL-121399] - net: phy: mxl-86110: add basic support for led_brightness_set op (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: add support for AQR115 (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: promote AQR813 and AQR114C to aqr_gen4_config_init() (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: rename aqr113c_config_init() to aqr_gen4_config_init() (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: reimplement aqcs109_config_init() as aqr_gen2_config_init() (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: call aqr_gen3_config_init() for AQR112 and AQR412(C) (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: call aqr_gen2_fill_interface_modes() for AQCS109 (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: merge and rename aqr105_read_status() and aqr107_read_status() (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: use cached GLOBAL_CFG registers in aqr107_read_rate() (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: remove handling for get_rate_matching(PHY_INTERFACE_MODE_NA) (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: save a local shadow of GLOBAL_CFG register values (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: fill supported_interfaces for all aqr_gen2_config_init() callers (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: rename some aqr107 functions according to generation (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: reorder AQR113C PMD Global Transmit Disable bit clearing with supported_interfaces (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: merge aqr113c_fill_interface_modes() into aqr107_fill_interface_modes() (Izabela Bakollari) [RHEL-121399] - net: phy: aquantia: rename AQR412 to AQR412C and add real AQR412 (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Add support for lan8842 (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Replace hardcoded pages with defines (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Introduce lanphy_modify_page_reg (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Start using PHY_ID_MATCH_MODEL (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: enable serdes option mode for RTL8226-CG (Izabela Bakollari) [RHEL-121399] - phy: mscc: Fix timestamping for vsc8584 (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: fix RTL8211F wake-on-lan support (Izabela Bakollari) [RHEL-121399] - net: phy: fixed: remove usage of a faux device (Izabela Bakollari) [RHEL-121399] - net: phy: mscc: report and configure in-band auto-negotiation for SGMII/QSGMII (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: convert RTL8226-CG to c45 only (Izabela Bakollari) [RHEL-121399] - net: phy: motorcomm: Add support for PHY LEDs on YT8521 (Izabela Bakollari) [RHEL-121399] - net: phy: nxp-c45-tja11xx: fix the PHY ID mismatch issue when using C45 (Izabela Bakollari) [RHEL-121399] - net: phy: smsc: add proper reset flags for LAN8710A (Izabela Bakollari) [RHEL-121399] - phy: mscc: Fix parsing of unicast frames (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: fix KSZ8081/KSZ8091 cable test (Izabela Bakollari) [RHEL-121399] - net: phy: qcom: qca807x: Enable WoL support using shared library (Izabela Bakollari) [RHEL-121399] - net: phy: qcom: qca807x: Support PHY counter (Izabela Bakollari) [RHEL-121399] - net: phy: qcom: qca808x: Support PHY counter (Izabela Bakollari) [RHEL-121399] - net: phy: qcom: Add PHY counter support (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Add ksz9131_resume() (Izabela Bakollari) [RHEL-121399] - net: phy: bcm54811: PHY initialization (Izabela Bakollari) [RHEL-121399] - net: phy: bcm5481x: MII-Lite activation (Izabela Bakollari) [RHEL-121399] - net: phy: MII-Lite PHY interface mode (Izabela Bakollari) [RHEL-121399] - net: phy: smsc: Fix link failure in forced mode with Auto-MDIX (Izabela Bakollari) [RHEL-121399] - net: phy: smsc: Force predictable MDI-X state on LAN87xx (Izabela Bakollari) [RHEL-121399] - net: phy: smsc: Fix Auto-MDIX configuration when disabled by strap (Izabela Bakollari) [RHEL-121399] - net: phy: declare package-related struct members only if CONFIG_PHY_PACKAGE is enabled (Izabela Bakollari) [RHEL-121399] - net: phylink: add phylink_sfp_select_interface_speed() (Izabela Bakollari) [RHEL-121399] - net: phylink: clear SFP interfaces when not in use (Izabela Bakollari) [RHEL-121399] - net: phylink: restrict SFP interfaces to those that are supported (Izabela Bakollari) [RHEL-121399] - net: phy: qcom: qca808x: Fix WoL issue by utilizing at8031_set_wol() (Izabela Bakollari) [RHEL-121399] - net: phy: qcom: move the WoL function to shared library (Izabela Bakollari) [RHEL-121399] - net: phy: air_en8811h: Introduce resume/suspend and clk_restore_context to ensure correct CKO settings after network interface reinitialization. (Izabela Bakollari) [RHEL-121399] - phy: micrel: add Signal Quality Indicator (SQI) support for KSZ9477 switch PHYs (Izabela Bakollari) [RHEL-121399] - net: phy: realtek: add error handling to rtl8211f_get_wol (Izabela Bakollari) [RHEL-121399] - net: phy: Add interface types for 50G and 100G (Izabela Bakollari) [RHEL-121399] - net: phy: qcom: at803x: Add Qualcomm IPQ5018 Internal PHY support (Izabela Bakollari) [RHEL-121399] - net: sfp: add quirk for Potron SFP+ XGSPON ONU Stick (Izabela Bakollari) [RHEL-121399] - net: phy: Add c45_phy_ids sysfs directory entry (Izabela Bakollari) [RHEL-121399] - net: phy: remove phy_driver_is_genphy_10g (Izabela Bakollari) [RHEL-121399] - net: phy: improve phy_driver_is_genphy (Izabela Bakollari) [RHEL-121399] - net: phy: add flag is_genphy_driven to struct phy_device (Izabela Bakollari) [RHEL-121399] - net: phy: move __phy_package_[read|write]_mmd to phy_package.c (Izabela Bakollari) [RHEL-121399] - net: phy: improve rgmii_clock() documentation (Izabela Bakollari) [RHEL-121399] - net: phy: dp83tg720: switch to adaptive polling and remove random delays (Izabela Bakollari) [RHEL-121399] - net: phy: dp83tg720: remove redundant 600ms post-reset delay (Izabela Bakollari) [RHEL-121399] - net: phy: dp83tg720: implement soft reset with asymmetric delay (Izabela Bakollari) [RHEL-121399] - net: phy: directly copy struct mdio_board_info in mdiobus_register_board_info (Izabela Bakollari) [RHEL-121399] - net: phy: improve mdio-boardinfo.h (Izabela Bakollari) [RHEL-121399] - net: phy: move definition of struct mdio_board_entry to mdio-boardinfo.c (Izabela Bakollari) [RHEL-121399] - net: phy: simplify mdiobus_setup_mdiodev_from_board_info (Izabela Bakollari) [RHEL-121399] - net: phy: simplify phy_get_internal_delay() (Izabela Bakollari) [RHEL-121399] - net: phy: move definition of genphy_c45_driver to phy_device.c (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: add cable test support for KSZ9477-class PHYs (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: Add RX error counter support for KSZ9477 switch-integrated PHYs (Izabela Bakollari) [RHEL-121399] - net: phy: micrel: add MDI/MDI-X control support for KSZ9477 switch-integrated PHYs (Izabela Bakollari) [RHEL-121399] - net/mdiobus: Fix potential out-of-bounds read/write access (Izabela Bakollari) [RHEL-121399] - x86/vmware: Fix hypercall clobbers (Jose Ignacio Tornos Martinez) [RHEL-149126] - Bluetooth: MGMT: Fix memory leak in set_ssp_complete (David Marlin) [RHEL-147676] - Bluetooth: hci_uart: fix null-ptr-deref in hci_uart_write_work (David Marlin) [RHEL-147676] - Bluetooth: btusb: revert use of devm_kzalloc in btusb (David Marlin) [RHEL-147676] - net: wwan: mhi: Keep modem name match with Foxconn T99W640 (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: t7xx: add support for HP DRMR-H01 (Jose Ignacio Tornos Martinez) [RHEL-137273 RHEL-146587] - net: wwan: iosm: use int type to store negative error codes (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: mhi_wwan_mbim: use correct mux_id for multiplexing (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: t7xx: Fix napi rx poll issue (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: mhi_wwan_mbim: Silence sequence number glitch errors (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: t7xx: don't include '' directly (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: iosm: Fix hibernation by re-binding the driver around it (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: iosm: Properly check for valid exec stage in ipc_mmio_init() (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: t7xx: Fix FSM command timeout issue (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: t7xx: Replace deprecated PCI functions (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: t7xx: Change PM_AUTOSUSPEND_MS to 5000 (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: t7xx: Unify documentation column width (Jose Ignacio Tornos Martinez) [RHEL-146587] - net: wwan: t7xx: Add debug ports (Jose Ignacio Tornos Martinez) [RHEL-146587] - wwan: core: Add WWAN ADB and MIPC port type (Jose Ignacio Tornos Martinez) [RHEL-146587] - wwan: core: Pass string literal as format argument of dev_set_name() (Jose Ignacio Tornos Martinez) [RHEL-146587] - perf/x86/amd/uncore: Prevent UMC counters from saturating (Michael Petlan) [RHEL-106949] - perf/x86/amd/uncore: Add parameter to configure hrtimer (Michael Petlan) [RHEL-106949] - perf/x86/amd/uncore: Use hrtimer for handling overflows (Michael Petlan) [RHEL-106949] - perf/x86/intel/uncore: Use HRTIMER_MODE_HARD for detecting overflows (Michael Petlan) [RHEL-106949] - net/mlx5e: Skip ESN replay window setup for IPsec crypto offload (Benjamin Poirier) [RHEL-98257] - net/mlx5: Fix vhca_id access call trace use before alloc (Benjamin Poirier) [RHEL-98257] - net/mlx5: fs, Fix inverted cap check in tx flow table root disconnect (Benjamin Poirier) [RHEL-98257] - net/mlx5e: Account for netdev stats in ndo_get_stats64 (Michal Schmidt) [RHEL-98257] - net/mlx5e: TC, delete flows only for existing peers (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix Unbinding uplink-netdev in switchdev mode (Benjamin Poirier) [RHEL-98257] - net/mlx5: Fix return type mismatch in mlx5_esw_vport_vhca_id() (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix memory leak in esw_acl_ingress_lgcy_setup() (Michal Schmidt) [RHEL-98257] - net/mlx5e: Restore destroying state bit after profile cleanup (Michal Schmidt) [RHEL-98257] - net/mlx5e: Pass netdev to mlx5e_destroy_netdev instead of priv (Michal Schmidt) [RHEL-98257] - net/mlx5e: Don't store mlx5e_priv in mlx5e_dev devlink priv (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix crash on profile change rollback failure (Michal Schmidt) [RHEL-98257] - net/mlx5e: Don't print error message due to invalid module (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix NULL pointer dereference in ioctl module EEPROM query (Michal Schmidt) [RHEL-98257] - net/mlx5e: Don't gate FEC histograms on ppcnt_statistical_group (Michal Schmidt) [RHEL-98257] - net/mlx5: Lag, multipath, give priority for routes with smaller network prefix (Michal Schmidt) [RHEL-98257] - net/mlx5e: Do not update BQL of old txqs during channel reconfiguration (Michal Schmidt) [RHEL-98257] - net/mlx5e: Trigger neighbor resolution for unresolved destinations (Michal Schmidt) [RHEL-98257] - net/mlx5e: Use ip6_dst_lookup instead of ipv6_dst_lookup_flow for MAC init (Michal Schmidt) [RHEL-98257] - net/mlx5: Serialize firmware reset with devlink (Michal Schmidt) [RHEL-98257] - net/mlx5: fw_tracer, Handle escaped percent properly (Michal Schmidt) [RHEL-98257] - net/mlx5: fw_tracer, Validate format string parameters (Michal Schmidt) [RHEL-98257] - net/mlx5: Drain firmware reset in shutdown callback (Michal Schmidt) [RHEL-98257] - net/mlx5: fw reset, clear reset requested on drain_fw_reset (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix double unregister of HCA_PORTS component (Michal Schmidt) [RHEL-98257] - net/mlx5: make enable_mpesw idempotent (Michal Schmidt) [RHEL-98257] - net/mlx5e: Support XDP target xmit with dummy program (Michal Schmidt) [RHEL-98257] - net/mlx5e: Update XDP features in switch channels (Michal Schmidt) [RHEL-98257] - net/mlx5e: Use standard unit definitions for bandwidth conversion (Michal Schmidt) [RHEL-98257] - net/mlx5e: Use U8_MAX instead of hard coded magic number (Michal Schmidt) [RHEL-98257] - net/mlx5e: Rename upper_limit_mbps to upper_limit_100mbps (Michal Schmidt) [RHEL-98257] - net/mlx5e: Use u64 instead of __u64 in ieee_setmaxrate (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix validation logic in rate limiting (Michal Schmidt) [RHEL-98257] - IB/mlx5: Reduce IMR KSM size when 5-level paging is enabled (Michal Schmidt) [RHEL-98257] - net/mlx5: Move SF dev table notifier registration outside the PF devlink lock (Michal Schmidt) [RHEL-98257] - net/mlx5: Move the SF table notifiers outside the devlink lock (Michal Schmidt) [RHEL-98257] - net/mlx5: Move the SF HW table notifier outside the devlink lock (Michal Schmidt) [RHEL-98257] - net/mlx5: Move the vhca event notifier outside of the devlink lock (Michal Schmidt) [RHEL-98257] - net/mlx5: Move the esw mode notifier chain outside the devlink lock (Michal Schmidt) [RHEL-98257] - net/mlx5: Initialize events outside devlink lock (Michal Schmidt) [RHEL-98257] - net/mlx5: Use EOPNOTSUPP instead of ENOTSUPP (Michal Schmidt) [RHEL-98257] - net/mlx5: Abort new commands if all command slots are stalled (Michal Schmidt) [RHEL-98257] - net/mlx5: Remove redundant bw_share minimal value assignment (Michal Schmidt) [RHEL-98257] - net/mlx5e: Recover SQ on excessive PTP TX timestamp delta (Michal Schmidt) [RHEL-98257] - net/mlx5: Refactor EEPROM query error handling to return status separately (Michal Schmidt) [RHEL-98257] - net/mlx5: Clean up only new IRQ glue on request_irq() failure (Michal Schmidt) [RHEL-98257] - mlx5: extract GRXRINGS from .get_rxnfc (Michal Schmidt) [RHEL-98257] - net/mlx5: Expose definition for 1600Gbps link mode (Michal Schmidt) [RHEL-98257] - mlx5: Fix default values in create CQ (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix potentially misleading debug message (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix wraparound in rate limiting for values above 255 Gbps (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix maxrate wraparound in threshold between units (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix missing error assignment in mlx5e_xfrm_add_state() (Michal Schmidt) [RHEL-98257] - net/mlx5: E-Switch, support eswitch inactive mode (Michal Schmidt) [RHEL-98257] - net/mlx5: MPFS, add support for dynamic enable/disable (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Add other eswitch support to userspace tables (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Refactor _get_prio() function (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Add other_eswitch support for devx destruction (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Change default device for LAG slaves in RDMA TRANSPORT namespaces (Michal Schmidt) [RHEL-98257] - net/mlx5: fs, set non default device per namespace (Michal Schmidt) [RHEL-98257] - net/mlx5: fs, Add other_eswitch support for steering tables (Michal Schmidt) [RHEL-98257] - net/mlx5: Add OTHER_ESWITCH HW capabilities (Michal Schmidt) [RHEL-98257] - RDMA/core: RDMA/mlx5: replace use of system_unbound_wq with system_dfl_wq (Michal Schmidt) [RHEL-98257] - net/mlx5e: SHAMPO, Fix header formulas for higher MTUs and 64K pages (Benjamin Poirier) [RHEL-98257] - net/mlx5e: SHAMPO, Fix skb size check for 64K pages (Michal Schmidt) [RHEL-98257] - net/mlx5e: SHAMPO, Fix header mapping for 64K pages (Benjamin Poirier) [RHEL-98257] - net/mlx5e: Fix return value in case of module EEPROM read error (Michal Schmidt) [RHEL-98257] - net/mlx5e: Defer channels closure to reduce interface down time (Michal Schmidt) [RHEL-98257] - net/mlx5e: Pass old channels as argument to mlx5e_switch_priv_channels (Michal Schmidt) [RHEL-98257] - net/mlx5e: Do not re-apply TIR loopback configuration if not necessary (Michal Schmidt) [RHEL-98257] - net/mlx5: IPoIB, set self loopback prevention in TIR init (Michal Schmidt) [RHEL-98257] - net/mlx5e: Allow setting self loopback prevention bits on TIR init (Michal Schmidt) [RHEL-98257] - net/mlx5e: Use TIR API in mlx5e_modify_tirs_lb() (Michal Schmidt) [RHEL-98257] - net/mlx5e: Enhance function structures for self loopback prevention application (Michal Schmidt) [RHEL-98257] - net/mlx5e: Convert to new hwtstamp_get/set interface (Michal Schmidt) [RHEL-98257] - net/mlx5e: Rename timestamp fields to hwtstamp_config (Michal Schmidt) [RHEL-98257] - net/mlx5e: Rename hwstamp functions to hwtstamp (Michal Schmidt) [RHEL-98257] - net/mlx5e: Remove unnecessary tstamp local variable in mlx5i_complete_rx_cqe (Michal Schmidt) [RHEL-98257] - net/mlx5e: Remove redundant tstamp pointer from channel structures (Michal Schmidt) [RHEL-98257] - net/mlx5e: kTLS, Cancel RX async resync request in error flows (Michal Schmidt) [RHEL-98257] - net/mlx5: Don't zero user_count when destroying FDB tables (Michal Schmidt) [RHEL-98257] - net/mlx5: Add balance ID support for LAG multiplane groups (Michal Schmidt) [RHEL-98257] - net/mlx5: Refactor HCA cap 2 setting (Michal Schmidt) [RHEL-98257] - net/mlx5: Refactor PTP clock devcom pairing (Michal Schmidt) [RHEL-98257] - net/mlx5: Add software system image GUID infrastructure (Michal Schmidt) [RHEL-98257] - net/mlx5: Use common mlx5_same_hw_devs function (Michal Schmidt) [RHEL-98257] - {rdma,net}/mlx5: Query vports mac address from device (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix IPsec cleanup over MPV device (Michal Schmidt) [RHEL-98257] - net/mlx5: Refactor devcom to return NULL on failure (Michal Schmidt) [RHEL-98257] - net/mlx5e: Skip PPHCR register query if not supported by the device (Michal Schmidt) [RHEL-98257] - net/mlx5: Add PPHCR to PCAM supported registers mask (Michal Schmidt) [RHEL-98257] - net/mlx5e: RX, Fix generating skb from non-linear xdp_buff for striding RQ (Michal Schmidt) [RHEL-98257] - net/mlx5e: RX, Fix generating skb from non-linear xdp_buff for legacy RQ (Michal Schmidt) [RHEL-98257] - net/mlx5e: Return 1 instead of 0 in invalid case in mlx5e_mpwrq_umr_entry_size() (Michal Schmidt) [RHEL-98257] - net/mlx5: fix pre-2.40 binutils assembler error (Michal Schmidt) [RHEL-98257] - net/mlx5e: Prevent tunnel reformat when tunnel mode not allowed (Michal Schmidt) [RHEL-98257] - net/mlx5: Prevent tunnel mode conflicts between FDB and NIC IPsec tables (Michal Schmidt) [RHEL-98257] - net/mlx5e: Use extack in set rxfh callback (Michal Schmidt) [RHEL-98257] - net/mlx5e: Introduce mlx5e_rss_params for RSS configuration (Michal Schmidt) [RHEL-98257] - net/mlx5e: Introduce mlx5e_rss_init_params (Michal Schmidt) [RHEL-98257] - net/mlx5e: Remove unused mdev param from RSS indir init (Michal Schmidt) [RHEL-98257] - net/mlx5: Improve QoS error messages with actual depth values (Michal Schmidt) [RHEL-98257] - net/mlx5e: Prevent entering switchdev mode with inconsistent netns (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Generalize complex matchers (Michal Schmidt) [RHEL-98257] - net/mlx5: Improve write-combining test reliability for ARM64 Grace CPUs (Michal Schmidt) [RHEL-98257] - Revert "net/mlx5e: Update and set Xon/Xoff upon MTU set" (Michal Schmidt) [RHEL-98257] - fwctl/mlx5: Add Adjacent function query commands and their scope (Benjamin Poirier) [RHEL-98257] - fwctl/mlx5: Allow MODIFY_CONG_STATUS command (Benjamin Poirier) [RHEL-98257] - fwctl/mlx5: Fix memory alloc/free in mlx5ctl_fw_rpc() (Benjamin Poirier) [RHEL-98257] - net/mlx5: fw reset, add reset timeout work (Michal Schmidt) [RHEL-98257] - net/mlx5: pagealloc: Fix reclaim race during command interface teardown (Michal Schmidt) [RHEL-98257] - net/mlx5: Stop polling for command response if interface goes down (Michal Schmidt) [RHEL-98257] - net/mlx5: IFC add balance ID and LAG per MP group bits (Michal Schmidt) [RHEL-98257] - net/mlx5: Add IFC bit for TIR/SQ order capability (Michal Schmidt) [RHEL-98257] - net/mlx5: Expose uar access and odp page fault counters (Michal Schmidt) [RHEL-98257] - net/mlx5e: Report RS-FEC histogram statistics via ethtool (Michal Schmidt) [RHEL-98257] - net/mlx5e: Add logic to read RS-FEC histogram bin ranges from PPHCR (Michal Schmidt) [RHEL-98257] - net/mlx5e: Don't query FEC statistics when FEC is disabled (Michal Schmidt) [RHEL-98257] - net/mlx5: Use %%pe format specifier for error pointers (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix missing FEC RS stats for RS_544_514_INTERLEAVED_QUAD (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, ignore flow level for multi-dest table (Michal Schmidt) [RHEL-98257] - net/mlx5: Remove dead code from total_vfs setter (Michal Schmidt) [RHEL-98257] - net/mlx5e: Add flow rules for the decrypted ESP packets (Michal Schmidt) [RHEL-98257] - net/mlx5e: Add flow groups for the packets decrypted by crypto offload (Michal Schmidt) [RHEL-98257] - net/mlx5e: Recirculate decrypted packets into TTC table (Michal Schmidt) [RHEL-98257] - net/mlx5: Change TTC rules to match on undecrypted ESP packets (Michal Schmidt) [RHEL-98257] - Revert "net/mlx5e: Update and set Xon/Xoff upon port speed set" (Michal Schmidt) [RHEL-98257] - net/mlx5: Add uar access and odp page fault counters (Michal Schmidt) [RHEL-98257] - net/mlx5e: Use multiple CQ doorbells (Michal Schmidt) [RHEL-98257] - net/mlx5e: Use multiple TX doorbells (Michal Schmidt) [RHEL-98257] - net/mlx5e: Prepare for using different CQ doorbells (Michal Schmidt) [RHEL-98257] - net/mlx5e: Prepare for using multiple TX doorbells (Michal Schmidt) [RHEL-98257] - net/mlx5: Store the global doorbell in mlx5_priv (Michal Schmidt) [RHEL-98257] - net/mlx5e: Remove unused 'xsk' param of mlx5e_build_xdpsq_param (Michal Schmidt) [RHEL-98257] - net/mlx5: Remove unused 'offset' field from mlx5_sq_bfreg (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix typo of MLX5_EQ_DOORBEL_OFFSET (Michal Schmidt) [RHEL-98257] - net/mlx5e: Prevent WQE metadata conflicts between timestamping and offloads (Michal Schmidt) [RHEL-98257] - net/mlx5: Refactor MACsec WQE metadata shifts (Michal Schmidt) [RHEL-98257] - net/mlx5: Remove VLAN insertion fields from WQE Ether segment (Michal Schmidt) [RHEL-98257] - net/mlx5: Lag, add net namespace support (Michal Schmidt) [RHEL-98257] - net/mlx5: Add net namespace support to devcom (Michal Schmidt) [RHEL-98257] - net/mlx5: Lag, move devcom registration to LAG layer (Michal Schmidt) [RHEL-98257] - net/mlx5: Refactor devcom to use match attributes (Michal Schmidt) [RHEL-98257] - net/mlx5e: Add a miss level for ipsec crypto offload (Michal Schmidt) [RHEL-98257] - net/mlx5e: Harden uplink netdev access against device unbind (Michal Schmidt) [RHEL-98257] - net/mlx5: fix typo in pci_irq.c comment (Michal Schmidt) [RHEL-98257] - RDMA: Use %%pe format specifier for error pointers (Benjamin Poirier) [RHEL-98257] - RDMA/mlx5: Fix page size bitmap calculation for KSM mode (Michal Schmidt) [RHEL-98257] - net/mlx5e: Add stale counter for PCIe congestion events (Michal Schmidt) [RHEL-98257] - net/mlx5e: Make PCIe congestion event thresholds configurable (Michal Schmidt) [RHEL-98257] - net/mlx5: Implement devlink total_vfs parameter (Michal Schmidt) [RHEL-98257] - net/mlx5: Implement devlink enable_sriov parameter (Michal Schmidt) [RHEL-98257] - net/mlx5: Implement cqe_compress_type via devlink params (Michal Schmidt) [RHEL-98257] - net/mlx5: Add RS FEC histogram infrastructure (Michal Schmidt) [RHEL-98257] - net/mlx5: Support getcyclesx and getcrosscycles (Michal Schmidt) [RHEL-98257] - net/mlx5: Extract MTCTR register read logic into helper function (Michal Schmidt) [RHEL-98257] - net/mlx5: Add PSP capabilities structures and bits (Michal Schmidt) [RHEL-98257] - net/mlx5: {DR,HWS}, Use the cached vhca_id for this device (Michal Schmidt) [RHEL-98257] - net/mlx5: E-switch, Set representor attributes for adjacent VFs (Michal Schmidt) [RHEL-98257] - net/mlx5: E-Switch, Register representors for adjacent vports (Michal Schmidt) [RHEL-98257] - net/mlx5: E-Switch, Create acls root namespace for adjacent vports (Michal Schmidt) [RHEL-98257] - net/mlx5: E-Switch, Add support for adjacent functions vports discovery (Michal Schmidt) [RHEL-98257] - net/mlx5: E-Switch, Move vport acls root namespaces creation to eswitch (Michal Schmidt) [RHEL-98257] - net/mlx5: FS, Convert vport acls root namespaces to xarray (Michal Schmidt) [RHEL-98257] - eth: mlx5: remove Kconfig co-dependency with VXLAN (Michal Schmidt) [RHEL-98257] - net/mlx5e: Set local Xoff after FW update (Michal Schmidt) [RHEL-98257] - net/mlx5e: Update and set Xon/Xoff upon port speed set (Michal Schmidt) [RHEL-98257] - net/mlx5e: Update and set Xon/Xoff upon MTU set (Michal Schmidt) [RHEL-98257] - net/mlx5: Prevent flow steering mode changes in switchdev mode (Michal Schmidt) [RHEL-98257] - net/mlx5: Nack sync reset when SFs are present (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix lockdep assertion on sync reset unload event (Michal Schmidt) [RHEL-98257] - net/mlx5: Reload auxiliary drivers on fw_activate (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Fix pattern destruction in mlx5hws_pat_get_pattern error path (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Fix uninitialized variables in mlx5hws_pat_calc_nop error flow (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Fix memory leak in hws_action_get_shared_stc_nic error flow (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Fix memory leak in hws_pool_buddy_init error path (Michal Schmidt) [RHEL-98257] - net/mlx5e: Set default burst period for TX and RX reporters (Michal Schmidt) [RHEL-98257] - IB/mlx5: Fix obj_type mismatch for SRQ event subscriptions (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Fix vport loopback forcing for MPV device (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Better estimate max_qp_wr to reflect WQE count (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Enable Data-Direct with Relaxed Ordering (Michal Schmidt) [RHEL-98257] - net/mlx5e: Preserve shared buffer capacity during headroom updates (Michal Schmidt) [RHEL-98257] - net/mlx5e: Query FW for buffer ownership (Michal Schmidt) [RHEL-98257] - net/mlx5: Restore missing scheduling node cleanup on vport enable failure (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix QoS reference leak in vport enable error path (Michal Schmidt) [RHEL-98257] - net/mlx5: Destroy vport QoS element when no configuration remains (Michal Schmidt) [RHEL-98257] - net/mlx5e: Preserve tc-bw during parent changes (Michal Schmidt) [RHEL-98257] - net/mlx5: Remove default QoS group and attach vports directly to root TSAR (Michal Schmidt) [RHEL-98257] - net/mlx5: Base ECVF devlink port attrs from 0 (Michal Schmidt) [RHEL-98257] - net/mlx5: CT: Use the correct counter offset (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Fix table creation UID (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, don't rehash on every kind of insertion failure (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, prevent rehash from filling up the queues (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, fix complex rules rehash error flow (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, fix simple rules rehash error flow (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, fix bad parameter in CQ creation (Michal Schmidt) [RHEL-98257] - net/mlx5: Support disabling host PFs (Benjamin Poirier) [RHEL-98257] - net/mlx5: Query to see if host PF is disabled (Michal Schmidt) [RHEL-98257] - {rdma,net}/mlx5: export mlx5_vport_get_vhca_id (Michal Schmidt) [RHEL-98257] - net/mlx5: E-Switch, Set/Query hca cap via vhca id (Michal Schmidt) [RHEL-98257] - net/mlx5: E-Switch, Cache vport vhca id on first cap query (Michal Schmidt) [RHEL-98257] - net/mlx5: mlx5_ifc, Add hardware definitions needed for adjacent vports (Michal Schmidt) [RHEL-98257] - net/mlx5: Don't use %%pK through tracepoints (Michal Schmidt) [RHEL-98257] - net/mlx5: Correctly set gso_segs when LRO is used (Michal Schmidt) [RHEL-98257] - net/mlx5e: Expose TIS via devlink tx reporter diagnose (Michal Schmidt) [RHEL-98257] - net/mlx5e: Support routed networks during IPsec MACs initialization (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix potential deadlock by deferring RX timeout recovery (Michal Schmidt) [RHEL-98257] - net/mlx5e: Remove skb secpath if xfrm state is not found (Michal Schmidt) [RHEL-98257] - net/mlx5e: Clear Read-Only port buffer size in PBMC before update (Michal Schmidt) [RHEL-98257] - net: Fix typos (Benjamin Poirier) [RHEL-98257] - net/mlx5: Fix build -Wframe-larger-than warnings (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Refactor optional counters steering code (Michal Schmidt) [RHEL-98257] - net/mlx5: Expose IFC bits for TPH (Michal Schmidt) [RHEL-98257] - net/mlx5e: Remove duplicate mkey from SHAMPO header (Michal Schmidt) [RHEL-98257] - net/mlx5e: SHAMPO, Remove mlx5e_shampo_get_log_hd_entry_size() (Michal Schmidt) [RHEL-98257] - net/mlx5e: SHAMPO, Cleanup reservation size formula (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Fix incorrect MKEY masking (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Fix returned type from _mlx5r_umr_zap_mkey() (Michal Schmidt) [RHEL-98257] - net/mlx5: Expose cable_length field in PFCC register (Michal Schmidt) [RHEL-98257] - net/mlx5: Add IFC bits and enums for buf_ownership (Michal Schmidt) [RHEL-98257] - net/mlx5: Add IFC bits to support RSS for IPSec offload (Michal Schmidt) [RHEL-98257] - net/mlx5: E-Switch, Fix peer miss rules to use peer eswitch (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix memory leak in cmd_exec() (Michal Schmidt) [RHEL-98257] - net/mlx5e: Properly access RCU protected qdisc_sleeping variable (Michal Schmidt) [RHEL-98257] - net/mlx5e: fix kdoc warning on eswitch.h (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Enable IPSec hardware offload in legacy mode (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix an IS_ERR() vs NULL bug in esw_qos_move_node() (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: remove redundant check on err on return expression (Michal Schmidt) [RHEL-98257] - net/mlx5e: Add device PCIe congestion ethtool stats (Michal Schmidt) [RHEL-98257] - net/mlx5e: Create/destroy PCIe Congestion Event object (Michal Schmidt) [RHEL-98257] - net/mlx5: Correctly set gso_size when LRO is used (Michal Schmidt) [RHEL-98257] - net/mlx5: IFC updates for disabled host PF (Michal Schmidt) [RHEL-98257] - net/mlx5: Expose disciplined_fr_counter through HCA capabilities in mlx5_ifc (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Optimize DMABUF mkey page size (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Align mkc page size capability check to PRM (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Fix UMR modifying of mkey page size (Michal Schmidt) [RHEL-98257] - net/mlx5: Expose HCA capability bits for mkey max page size (Michal Schmidt) [RHEL-98257] - net/mlx5e: Add new prio for promiscuous mode (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix race between DIM disable and net_dim() (Michal Schmidt) [RHEL-98257] - net/mlx5e: RX, Remove unnecessary RQT redirects (Michal Schmidt) [RHEL-98257] - net/mlx5: Warn when write combining is not supported (Michal Schmidt) [RHEL-98257] - net/mlx5e: Replace recursive VLAN push handling with an iterative loop (Michal Schmidt) [RHEL-98257] - net/mlx5e: CT: extract a memcmp from a spinlock section (Michal Schmidt) [RHEL-98257] - net/mlx5e: Remove unused VLAN insertion logic in TX path (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix spelling mistake "disabliing" -> "disabling" (Michal Schmidt) [RHEL-98257] - net/mlx5: Add HWS as secondary steering mode (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Shrink empty matchers (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Rearrange to prevent forward declaration (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Track matcher sizes individually (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Decouple matcher RX and TX sizes (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Create STEs directly from matcher (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Refactor rule skip logic (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Export rule skip logic (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, remove incorrect comment (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, remove unused create_dest_array parameter (Michal Schmidt) [RHEL-98257] - net/mlx5: Manage TC arbiter nodes and implement full support for tc-bw (Michal Schmidt) [RHEL-98257] - net/mlx5: Add traffic class scheduling support for vport QoS (Michal Schmidt) [RHEL-98257] - net/mlx5: Add support for setting tc-bw on nodes (Michal Schmidt) [RHEL-98257] - net/mlx5: Add no-op implementation for setting tc-bw on rate objects (Michal Schmidt) [RHEL-98257] - net/mlx5: Check device memory pointer before usage (Michal Schmidt) [RHEL-98257] - net/mlx5: fs, fix RDMA TRANSPORT init cleanup flow (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Check CAP_NET_RAW in user namespace for devx create (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Check CAP_NET_RAW in user namespace for anchor create (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Check CAP_NET_RAW in user namespace for flow create (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix error handling in RQ memory model registration (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Allocate IB device with net namespace supplied from core dev (Michal Schmidt) [RHEL-98257] - net/mlx5: Add IFC bits for PCIe Congestion Event object (Michal Schmidt) [RHEL-98257] - net/mlx5: Small refactor for general object capabilities (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Add multiple priorities support to RDMA TRANSPORT userspace tables (Michal Schmidt) [RHEL-98257] - net/mlx5: fs, add multiple prios to RDMA TRANSPORT steering domain (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Support driver APIs pre_destroy_cq and post_destroy_cq (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Fix vport loopback for MPV device (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Fix CC counters query for MPV (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Fix HW counters query for non-representor devices (Michal Schmidt) [RHEL-98257] - net/mlx5e: Support ethtool tcp-data-split settings (Michal Schmidt) [RHEL-98257] - net/mlx5e: Implement queue mgmt ops and single channel swap (Michal Schmidt) [RHEL-98257] - net/mlx5e: SHAMPO: Separate pool for headers (Michal Schmidt) [RHEL-98257] - net/mlx5e: SHAMPO: Improve hw gro capability checking (Michal Schmidt) [RHEL-98257] - net/mlx5e: SHAMPO: Remove redundant params (Michal Schmidt) [RHEL-98257] - net/mlx5e: SHAMPO: Reorganize mlx5_rq_shampo_alloc (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Initialize obj_event->obj_sub_list before xa_insert (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Add error checking to hws_bwc_rule_complex_hash_node_get() (Michal Schmidt) [RHEL-98257] - net/mlx5e: Fix leak of Geneve TLV option object (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, make sure the uplink is the last destination (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, fix missing ip_version handling in definer (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Init mutex on the correct path (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix return value when searching for existing flow group (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix ECVF vports unload on shutdown flow (Michal Schmidt) [RHEL-98257] - net/mlx5: Ensure fw pages are always allocated on same NUMA (Michal Schmidt) [RHEL-98257] - net/mlx5: Expose serial numbers in devlink info (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Fix an error code in mlx5hws_bwc_rule_create_complex() (Michal Schmidt) [RHEL-98257] - net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid() (Michal Schmidt) [RHEL-98257] - net/mlx5e: Allow setting MAC address of representors (Michal Schmidt) [RHEL-98257] - net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr() (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Avoid flexible array warning (Michal Schmidt) [RHEL-98257] - net/mlx5e: Convert mlx5 netdevs to instance locking (Michal Schmidt) [RHEL-98257] - net/mlx5e: Don't drop RTNL during firmware flash (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, handle modify header actions dependency (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, fix typo - 'nope' to 'nop' (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, register reformat actions with fw (Michal Schmidt) [RHEL-98257] - net/mlx5: SWS, fix reformat id error handling (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Add support for 200Gbps per lane speeds (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Remove the redundant MLX5_IB_STAGE_UAR stage (Michal Schmidt) [RHEL-98257] - net/mlx5: Use to_delayed_work() (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, dump bad completion details (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, rework rehash loop (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, fix redundant extension of action templates (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, fix counting of rules in the matcher (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, force rehash when rule insertion failed (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, support complex matchers (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, introduce isolated matchers (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, expose polling function in header file (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, add definer function to get field name str (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, expose function mlx5hws_table_ft_set_next_ft in header (Michal Schmidt) [RHEL-98257] - net/mlx5: support software TX timestamp (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: Fix error flow upon firmware failure for RQ destruction (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Disallow matcher IP version mixing (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Harden IP version definer checks (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Fix IP version decision (Michal Schmidt) [RHEL-98257] - net/mlx5: Fix spelling mistakes in mlx5_core_dbg message and comments (Michal Schmidt) [RHEL-98257] - net/mlx5e: ethtool: Fix formatting of ptp_rq0_csum_complete_tail_slow (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Export action STE tables to debugfs (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Free unused action STE tables (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Cleanup matcher action STE table (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Use the new action STE pool (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Implement action STE pool (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Fix pool size optimization (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Add fullness tracking to pool (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Cleanup after pool refactoring (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Refactor pool implementation (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Make pool single resource (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Remove unused element array (Michal Schmidt) [RHEL-98257] - net/mlx5: HWS, Fix matcher action template attach (Michal Schmidt) [RHEL-98257] - RDMA/mlx5: convert timeouts to secs_to_jiffies() (Michal Schmidt) [RHEL-98257] - ice: PTP: fix missing timestamps on E825 hardware (Michal Schmidt) [RHEL-145127] - perf: arm_v7_pmu: Don't disable counter in (armv7|krait_|scorpion_)pmu_enable_event() (Anubhav Shelat) [RHEL-111336] - perf: arm_v7_pmu: Drop obvious comments for enabling/disabling counters and interrupts (Anubhav Shelat) [RHEL-111336] - perf: apple_m1: Don't disable counter in m1_pmu_enable_event() (Anubhav Shelat) [RHEL-111336] - KVM: x86: Apply runtime updates to current CPUID during KVM_SET_CPUID{,2} (Igor Mammedov) [RHEL-109452] - audit: record fanotify event regardless of presence of rules (Richard Guy Briggs) [RHEL-106925] - audit: record AUDIT_ANOM_* events regardless of presence of rules (Richard Guy Briggs) [RHEL-106925] - bnxt_en: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set() (Shruti Parab) [RHEL-108693] - bnxt_en: correct offset handling for IPv6 destination address (Shruti Parab) [RHEL-108693] - bnxt_en: Implement ethtool .set_tunable() for ETHTOOL_PFC_PREVENTION_TOUT (Shruti Parab) [RHEL-108693] - bnxt_en: Implement ethtool .get_tunable() for ETHTOOL_PFC_PREVENTION_TOUT (Shruti Parab) [RHEL-108693] - bnxt_en: Use VLAN_ETH_HLEN when possible (Shruti Parab) [RHEL-108693] - bnxt_en: Support for RoCE resources dynamically shared within VFs. (Shruti Parab) [RHEL-108693] - bnxt_en: Add err_qpc backing store handling (Shruti Parab) [RHEL-108693] - bnxt_en: hsi: Update FW interface to 1.10.3.133 (Shruti Parab) [RHEL-108693] - bnxt_en: Add fw log trace support for 5731X/5741X chips (Shruti Parab) [RHEL-108693] - bnxt_en: Improve bnxt_backing_store_cfg_v2() (Shruti Parab) [RHEL-108693] - bnxt_en: Optimize bnxt_sriov_disable() (Shruti Parab) [RHEL-108693] - bnxt_en: Remove unnecessary VF check in bnxt_hwrm_nvm_req() (Shruti Parab) [RHEL-108693] - bnxt_en: Drop redundant if block in bnxt_dl_flash_update() (Shruti Parab) [RHEL-108693] - bnxt_en: fix incorrect page count in RX aggr ring log (Shruti Parab) [RHEL-108693] - bnxt_en: Fix stats context reservation logic (Shruti Parab) [RHEL-108693] - bnxt_en: Adjust TX rings if reservation is less than requested (Shruti Parab) [RHEL-108693] - bnxt_en: Fix memory corruption when FW resources change during ifdown (Shruti Parab) [RHEL-108693] - bnxt_en: Add Hyper-V VF ID (Shruti Parab) [RHEL-108693] - bnxt_en: Add pcie_ctx_v2 support for ethtool -d (Shruti Parab) [RHEL-108693] - bnxt_en: Add pcie_stat_len to struct bp (Shruti Parab) [RHEL-108693] - bnxt_en: Refactor bnxt_get_regs() (Shruti Parab) [RHEL-108693] - bnxt: move bnxt_hsi.h to include/linux/bnxt/hsi.h (Shruti Parab) [RHEL-108693] - bnxt_en: Set DMA unmap len correctly for XDP_REDIRECT (Shruti Parab) [RHEL-108693] - bnxt_en: Fix DCB ETS validation (Shruti Parab) [RHEL-108693] - bnxt_en: eliminate the compile warning in bnxt_request_irq due to CONFIG_RFS_ACCEL (Shruti Parab) [RHEL-108693] - bnxt: properly flush XDP redirect lists (Shruti Parab) [RHEL-108693] - bnxt_en: Improve comment wording and error return code (Shruti Parab) [RHEL-108693] - bnxt_en: Update MRU and RSS table of RSS contexts on queue reset (Shruti Parab) [RHEL-108693] - bnxt_en: Add a helper function to configure MRU and RSS (Shruti Parab) [RHEL-108693] - bnxt_en: Fix double invocation of bnxt_ulp_stop()/bnxt_ulp_start() (Shruti Parab) [RHEL-108693] - bnxt_en: Add TPH support in BNXT driver (Shruti Parab) [RHEL-108693] - selftests: hsr: Add more link fault tests for HSR (Felix Maurer) [RHEL-148239] - hsr: Implement more robust duplicate discard for HSR (Felix Maurer) [RHEL-148239] - selftests: hsr: Add tests for more link faults with PRP (Felix Maurer) [RHEL-104304] - hsr: Implement more robust duplicate discard for PRP (Felix Maurer) [RHEL-104304] - selftests: hsr: Add tests for faulty links (Felix Maurer) [RHEL-104304] - selftests: hsr: Check duplicates on HSR with VLAN (Felix Maurer) [RHEL-104304] - selftests: hsr: Add ping test for PRP (Felix Maurer) [RHEL-104304] - selftests: net: unify the Makefile formats [net/hsr only] (Felix Maurer) [RHEL-104304] - exfat: fix double free in delayed_free (CKI Backport Bot) [RHEL-146409] {CVE-2025-38206} - gpio: cdev: Fix resource leaks on errors in lineinfo_changed_notify() (David Arcari) [RHEL-145598] - gpio: cdev: make sure the cdev fd is still active before emitting events (CKI Backport Bot) [RHEL-145598] {CVE-2025-40249} - mm/hugetlb: ignore hugepage kernel args if hugepages are unsupported (Luiz Capitulino) [RHEL-142429] - wifi: ath12k: workaround to use VMs (Jose Ignacio Tornos Martinez) [RHEL-141347] - wifi: ath11k: workaround to use VMs (Jose Ignacio Tornos Martinez) [RHEL-141347] - ice: fix crash in ethtool offline loopback test (Michal Schmidt) [RHEL-118528 RHEL-131333] - idpf: Fix data race in idpf_net_dim (Michal Schmidt) [RHEL-131333] - idpf: read lower clock bits inside the time sandwich (Michal Schmidt) [RHEL-131333] - ice: fix devlink reload call trace (Michal Schmidt) [RHEL-131333] - ice: add missing ice_deinit_hw() in devlink reinit path (Michal Schmidt) [RHEL-131333] - ice: Fix persistent failure in ice_get_rxfh (Michal Schmidt) [RHEL-131333] - igc: Reduce TSN TX packet buffer from 7KB to 5KB per queue (Michal Schmidt) [RHEL-131333] - igc: fix race condition in TX timestamp read for register 0 (Michal Schmidt) [RHEL-131333] - igc: Restore default Qbv schedule when changing channels (Michal Schmidt) [RHEL-131333] - ice: Fix incorrect timeout ice_release_res() (Michal Schmidt) [RHEL-131333] - ice: Avoid detrimental cleanup for bond during interface stop (Michal Schmidt) [RHEL-131333] - ice: initialize ring_stats->syncp (Michal Schmidt) [RHEL-131333] - idpf: fix aux device unplugging when rdma is not supported by vport (Michal Schmidt) [RHEL-131333] - idpf: cap maximum Rx buffer size (Michal Schmidt) [RHEL-131333] - idpf: Fix error handling in idpf_vport_open() (Michal Schmidt) [RHEL-131333] - idpf: Fix RSS LUT NULL ptr issue after soft reset (Michal Schmidt) [RHEL-131333] - idpf: Fix RSS LUT configuration on down interfaces (Michal Schmidt) [RHEL-131333] - idpf: Fix RSS LUT NULL pointer crash on early ethtool operations (Michal Schmidt) [RHEL-131333] - idpf: fix issue with ethtool -n command display (Michal Schmidt) [RHEL-131333] - idpf: fix memory leak of flow steer list on rmmod (Michal Schmidt) [RHEL-131333] - idpf: fix error handling in the init_task on load (Michal Schmidt) [RHEL-131333] - idpf: fix memory leak in idpf_vc_core_deinit() (Michal Schmidt) [RHEL-131333] - idpf: fix memory leak in idpf_vport_rel() (Michal Schmidt) [RHEL-131333] - idpf: detach and close netdevs while handling a reset (Michal Schmidt) [RHEL-131333] - idpf: keep the netdev when a reset fails (Michal Schmidt) [RHEL-131333] - ice: add ice driver PTP pin documentation (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - e1000: fix OOB in e1000_tbi_should_accept() (Michal Schmidt) [RHEL-131333] {CVE-2025-71093} - idpf: reduce mbx_task schedule delay to 300us (Michal Schmidt) [RHEL-131333] - iavf: fix off-by-one issues in iavf_config_rss_reg() (Michal Schmidt) [RHEL-131333 RHEL-99253] {CVE-2025-71087} - i40e: validate ring_len parameter against hardware-specific values (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - i40e: fix scheduling in set_rx_mode (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - iavf: clarify VLAN add/delete log messages and lower log level (Michal Schmidt) [RHEL-131333 RHEL-99253] - ice: fix comment typo and correct module format string (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - idpf: correct queue index in Rx allocation error messages (Michal Schmidt) [RHEL-131333] - idpf: use desc_ring when checking completion queue DMA allocation (Michal Schmidt) [RHEL-131333] - ixgbe: avoid redundant call to ixgbe_non_sfp_link_config() (Michal Schmidt) [RHEL-131333 RHEL-99223] - e1000e: Remove unneeded checks (Michal Schmidt) [RHEL-131333 RHEL-134991] - idpf: convert vport state to bitmap (Michal Schmidt) [RHEL-131333] - ixgbevf: ixgbevf_q_vector clean up (Michal Schmidt) [RHEL-131333 RHEL-99221] - iavf: Implement settime64 with -EOPNOTSUPP (Michal Schmidt) [RHEL-131142 RHEL-131333 RHEL-99253] {CVE-2025-68752} - fm10k: extract GRXRINGS from .get_rxnfc (Michal Schmidt) [RHEL-131333] - ixgbevf: extract GRXRINGS from .get_rxnfc (Michal Schmidt) [RHEL-131333 RHEL-99221] - igc: extract GRXRINGS from .get_rxnfc (Michal Schmidt) [RHEL-131333 RHEL-99198] - igb: extract GRXRINGS from .get_rxnfc (Michal Schmidt) [RHEL-131333 RHEL-99220] - idpf: extract GRXRINGS from .get_rxnfc (Michal Schmidt) [RHEL-131333] - ice: extract GRXRINGS from .get_rxnfc (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - iavf: extract GRXRINGS from .get_rxnfc (Michal Schmidt) [RHEL-131333 RHEL-99253] - i40e: extract GRXRINGS from .get_rxnfc (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - ice: fix broken Rx on VFs (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - i40e: delete a stray tab (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - net: ixgbe: convert to use .get_rx_ring_count (Michal Schmidt) [RHEL-131333 RHEL-99223] - iavf: add RSS support for GTP protocol via ethtool (Michal Schmidt) [RHEL-131333 RHEL-99253] - ice: Extend PTYPE bitmap coverage for GTP encapsulated flows (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: improve TCAM priority handling for RSS profiles (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: implement GTP RSS context tracking and configuration (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add virtchnl definitions and static data for GTP RSS (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add flow parsing for GTP and new protocol field support (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - i40e: support generic devlink param "max_mac_per_vf" (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - idpf: add support for IDPF PCI programming interface (Michal Schmidt) [RHEL-131333] - igbvf: fix misplaced newline in VLAN add warning message (Michal Schmidt) [RHEL-131333 RHEL-99238] - ixgbe: fix typos in ixgbe driver comments (Michal Schmidt) [RHEL-131333 RHEL-99223] - idpf: remove duplicate defines in IDPF_CAP_RSS (Michal Schmidt) [RHEL-131333] - i40e: avoid redundant VF link state updates (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - ice: Allow 100M speed for E825C SGMII device (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: implement configurable header split for regular Rx (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: switch to Page Pool (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: drop page splitting and recycling (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: remove legacy Rx and construct SKB (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: remove duplicate call to ice_deinit_hw() on error paths (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move ice_deinit_dev() to the end of deinit paths (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: extract ice_init_dev() from ice_init() (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move ice_init_pf() out of ice_init_dev() (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move udp_tunnel_nic and misc IRQ setup into ice_init_pf() (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: ice_init_pf: destroy mutexes and xarrays on memory alloc failure (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move ice_init_interrupt_scheme() prior ice_init_pf() (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move service task start out of ice_init_pf() (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: enforce RTNL assumption of queue NAPI manipulation (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - e1000e: Introduce private flag to disable K1 (Michal Schmidt) [RHEL-131333 RHEL-134991] - ice: refactor to use helpers (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: implement transmit hardware timestamp statistics (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add tracking of good transmit timestamps (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: implement ethtool standard stats (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: fix PTP cleanup on driver removal in error path (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] {CVE-2025-68215} - libie: depend on DEBUG_FS when building LIBIE_FWLOG (Michal Schmidt) [RHEL-122279 RHEL-131333 RHEL-99223] - ixgbe: use EOPNOTSUPP instead of ENOTSUPP in ixgbe_ptp_feature_enable() (Michal Schmidt) [RHEL-131333 RHEL-99223] - igc: use EOPNOTSUPP instead of ENOTSUPP in igc_ethtool_get_sset_count() (Michal Schmidt) [RHEL-131333 RHEL-99198] - igb: use EOPNOTSUPP instead of ENOTSUPP in igb_get_sset_count() (Michal Schmidt) [RHEL-131333 RHEL-99220] - igc: power up the PHY before the link test (Michal Schmidt) [RHEL-131333 RHEL-99198] - ixgbe: fix memory leak and use-after-free in ixgbe_recovery_probe() (Michal Schmidt) [RHEL-131333 RHEL-99223] - ice: fix usage of logical PF id (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: fix destination CGU for dual complex E825 (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: fix lane number calculation (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ixgbe: fix too early devlink_free() in ixgbe_remove() (Michal Schmidt) [RHEL-131333 RHEL-99223] {CVE-2025-40091} - ixgbe: handle IXGBE_VF_FEATURES_NEGOTIATE mbox cmd (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbevf: fix mailbox API compatibility by negotiating supported features (Michal Schmidt) [RHEL-131333 RHEL-99221] {CVE-2025-40104} - ixgbe: handle IXGBE_VF_GET_PF_LINK_STATE mailbox operation (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbevf: fix getting link speed data for E610 devices (Michal Schmidt) [RHEL-131333 RHEL-99221] - ixgbe: fix typos and docstring inconsistencies (Michal Schmidt) [RHEL-131333 RHEL-99223] - libie: fix string names for AQ error codes (Michal Schmidt) [RHEL-122279 RHEL-131333] - net: intel: fm10k: Fix parameter idx set but not used (Michal Schmidt) [RHEL-131333] - ixgbevf: fix proper type for error code in ixgbevf_resume() (Michal Schmidt) [RHEL-131333 RHEL-99221] - iavf: fix proper type for error code in iavf_resume() (Michal Schmidt) [RHEL-131333 RHEL-99253] - ice: Remove deprecated ice_lag_move_new_vf_nodes() call (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add E830 Earliest TxTime First Offload support (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move ice_qp_[ena|dis] for reuse (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - i40e: improve VF MAC filters accounting (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - libie: fix linking with libie_{adminq,fwlog} when CONFIG_LIBIE=n (Michal Schmidt) [RHEL-131333] - igc: don't fail igc_probe() on LED setup error (Michal Schmidt) [RHEL-131333 RHEL-99198] {CVE-2025-39956} - ixgbe: destroy aci.lock later within ixgbe_remove path (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: initialize aci.lock before it's used (Michal Schmidt) [RHEL-131333 RHEL-99223] - i40e: remove redundant memory barrier when cleaning Tx descs (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - ixgbe: fwlog support for e610 (Michal Schmidt) [RHEL-131333 RHEL-99223] - ice, libie: move fwlog code to libie (Michal Schmidt) [RHEL-118528 RHEL-122279 RHEL-131333 RHEL-99197] - ice: reregister fwlog after driver reinit (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: prepare for moving file to libie (Michal Schmidt) [RHEL-118528 RHEL-122279 RHEL-131333 RHEL-99197] - ice: move debugfs code to fwlog (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - libie, ice: move fwlog admin queue to libie (Michal Schmidt) [RHEL-118528 RHEL-122279 RHEL-131333 RHEL-99197] - ice: drop driver specific structure from fwlog code (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: check for PF number outside the fwlog code (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move out debugfs init from fwlog (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: allow calling custom send function in fwlog (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add pdev into fwlog structure and use it for logging (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: introduce ice_fwlog structure (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: drop ice_pf_fwlog_update_module() (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move get_fwlog_data() to fwlog file (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: make fwlog functions static (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - i40e: fix Jumbo Frame support after iPXE boot (Michal Schmidt) [RHEL-101966 RHEL-123770 RHEL-131333 RHEL-99236] - igb: fix link test skipping when interface is admin down (Michal Schmidt) [RHEL-131333 RHEL-99220] - igb: Fix NULL pointer dereference in ethtool loopback test (Michal Schmidt) [RHEL-131333 RHEL-99220] {CVE-2025-39875} - ixgbe: fix typo in function comment for ixgbe_get_num_per_func() (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: drop unnecessary casts to u16 / int (Michal Schmidt) [RHEL-131333 RHEL-99223] - igc: drop unnecessary constant casts to u16 (Michal Schmidt) [RHEL-131333 RHEL-99198] - igb: drop unnecessary constant casts to u16 (Michal Schmidt) [RHEL-131333 RHEL-99220] - e1000e: drop unnecessary constant casts to u16 (Michal Schmidt) [RHEL-131333 RHEL-134991] - e1000: drop unnecessary constant casts to u16 (Michal Schmidt) [RHEL-131333] - igbvf: remove redundant counter rx_long_byte_count from ethtool statistics (Michal Schmidt) [RHEL-131333 RHEL-99238] - igbvf: add lbtx_packets and lbtx_bytes to ethtool statistics (Michal Schmidt) [RHEL-131333 RHEL-99238] - ixgbe: reduce number of reads when getting OROM data (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: add the 2.5G and 5G speeds in auto-negotiation for E610 (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: fix incorrect map used in eee linkmode (Michal Schmidt) [RHEL-131333 RHEL-99223] {CVE-2025-39922} - i40e: Fix potential invalid access when MAC list is empty (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] {CVE-2025-39853} - i40e: remove read access to debugfs files (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] {CVE-2025-39901} - ice: finish virtchnl.c split into rss.c (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: extract virt/rss.c: cleanup - p2 (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: extract virt/rss.c: cleanup - p1 (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: split RSS stuff out of virtchnl.c - copy back (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: split RSS stuff out of virtchnl.c - tmp rename (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: finish virtchnl.c split into queues.c (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: extract virt/queues.c: cleanup - p3 (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: extract virt/queues.c: cleanup - p2 (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: extract virt/queues.c: cleanup - p1 (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: split queue stuff out of virtchnl.c - copy back (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: split queue stuff out of virtchnl.c - tmp rename (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: fix incorrect counter for buffer allocation failures (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add virt/ and move ice_virtchnl* files there (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - igc: fix disabling L1.2 PCI-E link substate on I226 on init (Michal Schmidt) [RHEL-131333 RHEL-99198] - ixgbe: fix ndo_xdp_xmit() workloads (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: xsk: resolve the negative overflow of budget in ixgbe_xmit_zc (Michal Schmidt) [RHEL-131333 RHEL-99223] - eth: intel: use vmalloc_array() to simplify code (Michal Schmidt) [RHEL-131333 RHEL-99198 RHEL-99220 RHEL-99221 RHEL-99223] - ice: Implement support for SRIOV VFs across Active/Active bonds (Michal Schmidt) [RHEL-118528 RHEL-122279 RHEL-131333 RHEL-99197] - ice: cleanup capabilities evaluation (Michal Schmidt) [RHEL-122279 RHEL-131333] - ice: Cleanup variable initialization in LAG code (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move LAG function in code to prepare for Active-Active (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: Add driver specific prefix to LAG defines (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: replace u8 elements with bool where appropriate (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: Remove casts on void pointers in LAG code (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: Don't use %%pK through printk or tracepoints (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - i40e: use libie_aq_str (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - iavf: use libie_aq_str (Michal Schmidt) [RHEL-131333 RHEL-99253] - ice: use libie_aq_str (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - libie: add adminq helper for converting err to str (Michal Schmidt) [RHEL-122279 RHEL-131333] - iavf: use libie adminq descriptors (Michal Schmidt) [RHEL-131333 RHEL-99253] - i40e: use libie adminq descriptors (Michal Schmidt) [RHEL-101966 RHEL-118528 RHEL-122279 RHEL-131333 RHEL-99197 RHEL-99236] - ixgbe: use libie adminq descriptors (Michal Schmidt) [RHEL-122279 RHEL-131333 RHEL-99223] - ice, libie: move generic adminq descriptors to lib (Michal Schmidt) [RHEL-118528 RHEL-122279 RHEL-131333 RHEL-99197] - net: Fix typos [intel] (Michal Schmidt) [RHEL-101966 RHEL-118528 RHEL-131333 RHEL-99197 RHEL-99198 RHEL-99221 RHEL-99236] - e1000e: ignore uninitialized checksum word on tgp (Michal Schmidt) [RHEL-131333 RHEL-134991] - e1000e: disregard NVM checksum on tgp when valid checksum bit is not set (Michal Schmidt) [RHEL-131333 RHEL-134991] - ice: Fix a null pointer dereference in ice_copy_and_init_pkg() (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] {CVE-2025-38664} - ixgbevf: remove unused fields from struct ixgbevf_adapter (Michal Schmidt) [RHEL-131333 RHEL-99221] - igbvf: remove unused fields from struct igbvf_adapter (Michal Schmidt) [RHEL-131333 RHEL-99238] - igc: Add wildcard rule support to ethtool NFC using Default Queue (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: Relocate RSS field definitions to igc_defines.h (Michal Schmidt) [RHEL-131333 RHEL-99198] - ice: breakout common LAG code into helpers (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: convert ice_add_prof() to bitmap (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add E835 device IDs (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add 40G speed to Admin Command GET PORT OPTION (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: check correct pointer in fwlog debugfs (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add NULL check in eswitch lag check (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] {CVE-2025-38526} - ethernet: intel: fix building with large NR_CPUS (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99223 RHEL-99236] - ice: introduce ice_get_vf_by_dev() wrapper (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: avoid rebuilding if MSI-X vector count is unchanged (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: use pci_iov_vf_id() to get VF ID (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: expose VF functions used by live migration (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: move ice_vsi_update_l2tsel to ice_lib.c (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: save RSS hash configuration for migration (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add functions to get and set Tx queue context (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add support for reading and unpacking Rx queue context (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - igbvf: add tx_timeout_count to ethtool statistics (Michal Schmidt) [RHEL-131333 RHEL-99238] - igbvf: remove unused interrupt counter fields from struct igbvf_adapter (Michal Schmidt) [RHEL-131333 RHEL-99238] - ixgbe: spelling corrections (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: turn off MDD while modifying SRRCTL (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: add Tx hang detection unhandled MDD (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: check for MDD events (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: add MDD support (Michal Schmidt) [RHEL-131333 RHEL-99223] - i40e: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set() (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - ixgbe: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set() (Michal Schmidt) [RHEL-131333 RHEL-99223] - igb: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set() (Michal Schmidt) [RHEL-131333 RHEL-99220] - igc: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set() (Michal Schmidt) [RHEL-131333 RHEL-99198] - ice: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set() (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - igc: disable L1.2 PCI-E link substate to avoid performance issue (Michal Schmidt) [RHEL-131333 RHEL-99198] - ice: add ref-sync dpll pins (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - igc: Make the const read-only array supported_sizes static (Michal Schmidt) [RHEL-131333 RHEL-99198] - e1000e: set fixed clock frequency indication for Nahum 11 and Nahum 13 (Michal Schmidt) [RHEL-131333 RHEL-134991] - net: ice: Perform accurate aRFS flow match (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: add phase offset monitor for all PPS dpll inputs (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - igc: add preemptible queue support in mqprio (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: add preemptible queue support in taprio (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: add private flag to reverse TX queue priority in TSN mode (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: assign highest TX queue number as highest priority in mqprio (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: refactor TXDCTL macros to use FIELD_PREP and GEN_MASK (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: add DCTL prefix to related macros (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: move TXDCTL and RXDCTL related macros (Michal Schmidt) [RHEL-131333 RHEL-99198] - e1000: Move cancel_work_sync to avoid deadlock (Michal Schmidt) [RHEL-131333] {CVE-2025-38114} - i40e: retry VFLR handling if there is ongoing VF reset (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - i40e: return false from i40e_reset_vf if reset is in progress (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - ixgbe: Fix typos and clarify comments in X550 driver code (Michal Schmidt) [RHEL-131333 RHEL-99223] - iavf: convert to NAPI IRQ affinity API (Michal Schmidt) [RHEL-131333 RHEL-99253] - ice: add a separate Rx handler for flow director commands (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: change SMA pins to SDP in PTP API (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: redesign dpll sma/u.fl pins control (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ixgbe: add link_down_events statistic (Michal Schmidt) [RHEL-131333 RHEL-99223] - i40e: add link_down_events statistic (Michal Schmidt) [RHEL-101966 RHEL-131333 RHEL-99236] - ice: add link_down_events statistic (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - net: intel: move RSS packet classifier types to libie (Michal Schmidt) [RHEL-101966 RHEL-118528 RHEL-122279 RHEL-131333 RHEL-99197 RHEL-99236 RHEL-99253] - net: intel: rename 'hena' to 'hashcfg' for clarity (Michal Schmidt) [RHEL-101966 RHEL-118528 RHEL-131333 RHEL-99197 RHEL-99236 RHEL-99253] - ixgbe: devlink: add devlink region support for E610 (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: add E610 .set_phys_id() callback implementation (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: apply different rules for setting FC on E610 (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: add support for ACPI WOL for E610 (Michal Schmidt) [RHEL-131333 RHEL-99223] - eth: ixgbe: migrate to new RXFH callbacks [partial:e610] (Michal Schmidt) [RHEL-131333 RHEL-99223] - ixgbe: create E610 specific ethtool_ops structure (Michal Schmidt) [RHEL-131333 RHEL-99223] - igc: Change Tx mode for MQPRIO offloading (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: Limit netdev_tc calls to MQPRIO (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: add support to get frame preemption statistics via ethtool (Michal Schmidt) [RHEL-131333 RHEL-99198] - ice: support egress drop rules on PF (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - igc: add support to get MAC Merge data via ethtool (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: block setting preemptible traffic class in taprio (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: add support to set tx-min-frag-size (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: add support for frame preemption verification (Michal Schmidt) [RHEL-131333 RHEL-99198] - ice: make const read-only array dflt_rules static (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: improve error message for insufficient filter space (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: enable LLDP TX for VFs through tc (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: remove headers argument from ice_tc_count_lkups (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: receive LLDP on trusted VFs (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: do not add LLDP-specific filter if not necessary (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: fix check for existing switch rule (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - igc: Fix TX drops in XDP ZC (Michal Schmidt) [RHEL-131333 RHEL-99198] - idpf: use napi's irq affinity (Michal Schmidt) [RHEL-131333] - ice: use napi's irq affinity and rmap IRQ notifiers (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - ice: clear NAPI's IRQ numbers in ice_vsi_clear_napi_queues() (Michal Schmidt) [RHEL-118528 RHEL-131333 RHEL-99197] - igc: Add launch time support to XDP ZC (Michal Schmidt) [RHEL-131333 RHEL-99198] - igc: Refactor empty frame insertion for launch time support (Michal Schmidt) [RHEL-131333 RHEL-99198] - intel/fm10k: Remove unused fm10k_iov_msg_mac_vlan_pf (Michal Schmidt) [RHEL-131333] - ixgbevf: stop attempting IPSEC offload on Mailbox API 1.5 (Michal Schmidt) [RHEL-131333 RHEL-99221] - e1000: Hold RTNL when e1000_down can be called (Michal Schmidt) [RHEL-131333] - e1000: Link NAPI instances to queues and IRQs (Michal Schmidt) [RHEL-131333] - igb: Cleanup unused declarations (Michal Schmidt) [RHEL-131333 RHEL-99220] - Reapply "e1000e: change k1 configuration on MTP and later platforms" (Michal Schmidt) [RHEL-134991] - net: WQ_PERCPU added to alloc_workqueue users (Ivan Vecera) [RHEL-134727] - net: replace use of system_wq with system_percpu_wq (CKI Backport Bot) [RHEL-134727] - net: replace use of system_unbound_wq with system_dfl_wq (CKI Backport Bot) [RHEL-134727] - Octeontx2-pf: Update xdp features (Kamal Heib) [RHEL-127305] - Octeontx2-af: Add proper checks for fwdata (Kamal Heib) [RHEL-127305] - redhat/configs: enable CONFIG_RVU_ESWITCH on RHEL (Kamal Heib) [RHEL-127305] - octeontx2-pf: Fix devm_kcalloc() error checking (Kamal Heib) [RHEL-127305] - Octeontx2-af: Fix missing error code in cgx_probe() (Kamal Heib) [RHEL-127305] - octeontx2-pf: fix bitmap leak (Kamal Heib) [RHEL-127305] - octeontx2-vf: fix bitmap leak (Kamal Heib) [RHEL-127305] - octeontx2-pf: Fix potential use after free in otx2_tc_add_flow() (Kamal Heib) [RHEL-127305] - ethernet: rvu-af: Remove slash from the driver name (Kamal Heib) [RHEL-127305] - octeontx2-pf: Fix use-after-free bugs in otx2_sync_tstamp() (Kamal Heib) [RHEL-127305] - octeontx2-af: Remove unused declarations (Kamal Heib) [RHEL-127305] - Octeontx2-af: Fix NIX X2P calibration failures (Kamal Heib) [RHEL-127305] - Octeontx2-vf: Fix max packet length errors (Kamal Heib) [RHEL-127305] - Octeontx2-af: Broadcast XON on all channels (Kamal Heib) [RHEL-127305] - Octeontx2-af: Skip overlap check for SPI field (Kamal Heib) [RHEL-127305] - octeontx2-af: use unsigned int as iterator for unsigned values (Kamal Heib) [RHEL-127305] - Octeontx2-af: Debugfs support for firmware data (Kamal Heib) [RHEL-127305] - Octeontx2-af: RPM: Update DMA mask (Kamal Heib) [RHEL-127305] - Octeontx2-af: Disable stale DMAC filters (Kamal Heib) [RHEL-127305] - Octeontx2-af: Add programmed macaddr to RVU pfvf (Kamal Heib) [RHEL-127305] - octeontx2-af: Fix error code in rvu_mbox_init() (Kamal Heib) [RHEL-127305] - Octeontx2-pf: ethtool: support multi advertise mode (Kamal Heib) [RHEL-127305] - Octeontx2-af: Introduce mode group index (Kamal Heib) [RHEL-127305] - Octeontx-pf: Update SGMII mode mapping (Kamal Heib) [RHEL-127305] - octeontx2-af: Fix rvu_mbox_init return path (Kamal Heib) [RHEL-127305] - Octeontx2-pf: Fix Backpresure configuration (Kamal Heib) [RHEL-127305] - octeontx2-pf: CN20K mbox implementation between PF-VF (Kamal Heib) [RHEL-127305] - octeontx2-af: CN20K mbox implementation for AF's VF (Kamal Heib) [RHEL-127305] - octeontx2-pf: CN20K mbox REQ/ACK implementation for NIC PF (Kamal Heib) [RHEL-127305] - octeontx2-af: CN20k mbox to support AF REQ/ACK functionality (Kamal Heib) [RHEL-127305] - octeontx2-af: CN20k basic mbox operations and structures (Kamal Heib) [RHEL-127305] - octeontx2: Set appropriate PF, VF masks and shifts based on silicon (Kamal Heib) [RHEL-127305] - octeontx2-pf: Avoid typecasts by simplifying otx2_atomic64_add macro (Kamal Heib) [RHEL-127305] - octeontx2: Annotate mmio regions as __iomem (Kamal Heib) [RHEL-127305] - octeontx2-pf: QOS: Refactor TC_HTB_LEAF_DEL_LAST callback (Kamal Heib) [RHEL-127305] - octeontx2-pf: QOS: Perform cache sync on send queue teardown (Kamal Heib) [RHEL-127305] - octeontx2-pf: macsec: Get MACSEC capability flag from AF (Kamal Heib) [RHEL-127305] - octeontx2-af: Add MACSEC capability flag (Kamal Heib) [RHEL-127305] - octeontx2-af: Send Link events one by one (Kamal Heib) [RHEL-127305] - octeontx2-af: NPC: Clear Unicast rule on nixlf detach (Kamal Heib) [RHEL-127305] - octeontx2-af: Fix APR entry mapping based on APR_LMT_CFG (Kamal Heib) [RHEL-127305] - octeontx2-af: Set LMT_ENA bit for APR table entries (Kamal Heib) [RHEL-127305] - octeontx2-pf: Avoid adding dcbnl_ops for LBK and SDP vf (Kamal Heib) [RHEL-127305] - octeontx2-pf: Add tracepoint for NIX_PARSE_S (Kamal Heib) [RHEL-127305] - octeontx2: Add new tracepoint otx2_msg_status (Kamal Heib) [RHEL-127305] - octeontx2: Add pcifunc also to mailbox tracepoints (Kamal Heib) [RHEL-127305] - octeontx2-af: Display names for CPT and UP messages (Kamal Heib) [RHEL-127305] - octeontx2-af: convert dev_dbg to tracepoint in mbox (Kamal Heib) [RHEL-127305] - octeontx2-pf: Do not reallocate all ntuple filters (Kamal Heib) [RHEL-127305] - octeontx2-af: Fix CGX Receive counters (Kamal Heib) [RHEL-127305] - octeontx2-pf: macsec: Fix incorrect max transmit size in TX secy (Kamal Heib) [RHEL-127305] - octeontx2-pf: Fix ethtool support for SDP representors (Kamal Heib) [RHEL-127305] - net: octeontx2: Use pure PCI devres API (Kamal Heib) [RHEL-127305] - octeontx2-pf: AF_XDP: code clean up (Kamal Heib) [RHEL-127305] - octeontx2-af: Remove unused rvu_npc_enable_bcast_entry (Kamal Heib) [RHEL-127305] - octeontx2-pf: handle otx2_mbox_get_rsp errors (Kamal Heib) [RHEL-127305] - octeontx2-pf: Add error log forcn10k_map_unmap_rq_policer() (Kamal Heib) [RHEL-127305] - octeontx2-pf: qos: fix VF root node parent queue index (Kamal Heib) [RHEL-127305] - net: octeontx2: Handle XDP_ABORTED and XDP invalid as XDP_DROP (Kamal Heib) [RHEL-127305] - octeontx2-af: Free NIX_AF_INT_VEC_GEN irq (Kamal Heib) [RHEL-127305] - octeontx2-af: Fix mbox INTR handler when num VFs > 64 (Kamal Heib) [RHEL-127305] - octeontx2-af: mcs: Remove redundant 'flush_workqueue()' calls (Kamal Heib) [RHEL-127305] - net: octeontx2: Add metadata support for xdp mode (Kamal Heib) [RHEL-127305] - Octeontx2-af: RPM: Register driver with PCI subsys IDs (Kamal Heib) [RHEL-127305] - octeontx2: hide unused label (Kamal Heib) [RHEL-127305] - octeontx2-pf: AF_XDP zero copy transmit support (Kamal Heib) [RHEL-127305] - octeontx2-pf: Prepare for AF_XDP (Kamal Heib) [RHEL-127305] - octeontx2-pf: Reconfigure RSS table after enabling AF_XDP zerocopy on rx queue (Kamal Heib) [RHEL-127305] - octeontx2-pf: AF_XDP zero copy receive support (Kamal Heib) [RHEL-127305] - octeontx2-pf: Add AF_XDP non-zero copy support (Kamal Heib) [RHEL-127305] - octeontx2-pf: use xdp_return_frame() to free xdp buffers (Kamal Heib) [RHEL-127305] - octeontx2: don't mess with ->d_parent or ->d_parent->d_name (Kamal Heib) [RHEL-127305] - octeontx2-pf: mcs: Remove dead code and semi-colon from rsrc_name() (Kamal Heib) [RHEL-127305] - octeontx2-pf: fix error handling of devlink port in rvu_rep_create() (Kamal Heib) [RHEL-127305] - octeontx2-pf: fix netdev memory leak in rvu_rep_create() (Kamal Heib) [RHEL-127305] - octeontx2-af: fix build regression without CONFIG_DCB (Kamal Heib) [RHEL-127305] - cn10k-ipsec: Fix compilation error when CONFIG_XFRM_OFFLOAD disabled (Kamal Heib) [RHEL-127305] - octeontx2-af: Fix installation of PF multicast rule (Kamal Heib) [RHEL-127305] - cn10k-ipsec: Enable outbound ipsec crypto offload (Kamal Heib) [RHEL-127305] - cn10k-ipsec: Allow ipsec crypto offload for skb with SA (Kamal Heib) [RHEL-127305] - cn10k-ipsec: Process outbound ipsec crypto offload (Kamal Heib) [RHEL-127305] - cn10k-ipsec: Add SA add/del support for outb ipsec crypto offload (Kamal Heib) [RHEL-127305] - cn10k-ipsec: Init hardware for outbound ipsec crypto offload (Kamal Heib) [RHEL-127305] - octeontx2-af: Disable backpressure between CPT and NIX (Kamal Heib) [RHEL-127305] - octeontx2-pf: Move skb fragment map/unmap to common code (Kamal Heib) [RHEL-127305] - octeontx2-pf: map skb data as device writeable (Kamal Heib) [RHEL-127305] - octeontx2-af: Fix SDP MAC link credits configuration (Kamal Heib) [RHEL-127305] - octeontx2-af: Quiesce traffic before NIX block reset (Kamal Heib) [RHEL-127305] - octeontx2-af: RPM: fix stale FCFEC counters (Kamal Heib) [RHEL-127305] - octeontx2-af: RPM: fix stale RSFEC counters (Kamal Heib) [RHEL-127305] - octeontx2-af: RPM: Fix low network performance (Kamal Heib) [RHEL-127305] - octeontx2-af: RPM: Fix mismatch in lmac type (Kamal Heib) [RHEL-127305] - octeontx2-pf: Fix spelling mistake "reprentator" -> "representor" (Kamal Heib) [RHEL-127305] - octeontx2-pf: Adds TC offload support (Kamal Heib) [RHEL-127305] - octeontx2-pf: Implement offload stats ndo for representors (Kamal Heib) [RHEL-127305] - octeontx2-pf: Add devlink port support (Kamal Heib) [RHEL-127305] - octeontx2-pf: Add representors for sdp MAC (Kamal Heib) [RHEL-127305] - octeontx2-pf: Configure VF mtu via representor (Kamal Heib) [RHEL-127305] - octeontx2-pf: Add support to sync link state between representor and VFs (Kamal Heib) [RHEL-127305] - octeontx2-pf: Get VF stats via representor (Kamal Heib) [RHEL-127305] - octeontx2-af: Add packet path between representor and VF (Kamal Heib) [RHEL-127305] - octeontx2-pf: Add basic net_device_ops (Kamal Heib) [RHEL-127305] - octeontx2-pf: Create representor netdev (Kamal Heib) [RHEL-127305] - octeontx2-pf: RVU representor driver (Kamal Heib) [RHEL-127305] - octeontx2-af: Knobs for NPC default rule counters (Kamal Heib) [RHEL-127305] - octeontx2-af: Refactor few NPC mcam APIs (Kamal Heib) [RHEL-127305] - octeontx2-pf: Move shared APIs to header file (Kamal Heib) [RHEL-127305] - octeontx2-pf: Reuse PF max mtu value (Kamal Heib) [RHEL-127305] - octeontx2-pf: Add new APIs for queue memory alloc/free. (Kamal Heib) [RHEL-127305] - octeontx2-pf: Define common API for HW resources configuration (Kamal Heib) [RHEL-127305] - net: marvell: use ethtool string helpers (Kamal Heib) [RHEL-127305] - octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_dcbnl.c (Kamal Heib) [RHEL-127305] - octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_dmac_flt.c (Kamal Heib) [RHEL-127305] - octeontx2-pf: handle otx2_mbox_get_rsp errors in cn10k.c (Kamal Heib) [RHEL-127305] - octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_flows.c (Kamal Heib) [RHEL-127305] - octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_ethtool.c (Kamal Heib) [RHEL-127305] - octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_common.c (Kamal Heib) [RHEL-127305] - octeontx2-af: Change block parameter to const pointer in get_lf_str_list (Kamal Heib) [RHEL-127305] - redhat/dracut-virt.conf: remove erroneous spaces in omit_dracutmodules (Li Tian) - configs: enable Freescale MXS DMA engine (Jiri Benc) [RHEL-148497] - smb: client: prevent races in ->query_interfaces() (Paulo Alcantara) [RHEL-148417] - smb: client: add proper locking around ses->iface_last_update (Paulo Alcantara) [RHEL-148417] - smb: client: split cached_fid bitfields to avoid shared-byte RMW races (Paulo Alcantara) [RHEL-148417] - cifs: Fix locking usage for tcon fields (Paulo Alcantara) [RHEL-148417] - cifs: Corrections to lock ordering notes (Paulo Alcantara) [RHEL-148417] - cifs: make retry logic in read/write path consistent with other paths (Paulo Alcantara) [RHEL-148417] - cifs: on replayable errors back-off before replay, not after (Paulo Alcantara) [RHEL-148417] - smb: client: fix potential UAF and double free in smb2_open_file() (Paulo Alcantara) [RHEL-148417] - smb/client: fix memory leak in SendReceive() (Paulo Alcantara) [RHEL-148417] - smb/client: fix memory leak in smb2_open_file() (Paulo Alcantara) [RHEL-148417] - netfs: avoid double increment of retry_count in subreq (Paulo Alcantara) [RHEL-148417] - netfs: when subreq is marked for retry, do not check if it faced an error (Paulo Alcantara) [RHEL-148417] - netfs: Fix early read unlock of page with EOF in middle (Paulo Alcantara) [RHEL-148417] - scsi: core: Fix the unit attention counter implementation (John Meneghini) [RHEL-147942] - perf/x86/intel/cstate: Add Pantherlake support (Michael Petlan) [RHEL-74192] - vsock: add netns support to virtio transports (Stefano Garzarella) [RHEL-144003] - virtio: set skb owner of virtio_transport_reset_no_sock() reply (Stefano Garzarella) [RHEL-144003] - vsock: add netns to vsock core (Stefano Garzarella) [RHEL-144003] - vhost/vsock: improve RCU read sections around vhost_vsock_get() (Stefano Garzarella) [RHEL-144003] - vsock: fix lock inversion in vsock_assign_transport() (Stefano Garzarella) [RHEL-144003] - vsock: Do not allow binding to VMADDR_PORT_ANY (Stefano Garzarella) [RHEL-144003] - vsock: reset socket state when de-assigning the transport (Stefano Garzarella) [RHEL-144003] - vsock/virtio: cancel close work in the destructor (Stefano Garzarella) [RHEL-144003] - Disable CET when calling tboot shutdown procedure. (Tony Camuso) [RHEL-109479] - docs: perf: Fujitsu: Fix htmldocs build warnings and errors (Mark Salter) [RHEL-132203] - arm64: proton-pack: Fix hard lockup when !MITIGATE_SPECTRE_BRANCH_HISTORY (Mark Salter) [RHEL-132203] - arm64: Reject modules with internal alternative callbacks (Mark Salter) [RHEL-132203] - arm64: Fail module loading if dynamic SCS patching fails (Mark Salter) [RHEL-132203] - arm64: proton-pack: Fix hard lockup due to print in scheduler context (Mark Salter) [RHEL-132203] - arm64: proton-pack: Drop print when !CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY (Mark Salter) [RHEL-132203] - arm64: acpi: Drop message logging SPCR default console (Mark Salter) [RHEL-132203] - Revert "ACPI: Suppress misleading SPCR console message when SPCR table is absent" (Mark Salter) [RHEL-132203] - arm64: Use load LSE atomics for the non-return per-CPU atomic operations (Mark Salter) [RHEL-132203] - arm64: mte: Do not warn if the page is already tagged in copy_highpage() (Mark Salter) [RHEL-132203] - arm64, mm: avoid always making PTE dirty in pte_mkwrite() (Mark Salter) [RHEL-132203] - arm64: enable Guarded Control Stacks (Mark Salter) [RHEL-132203] - arm64: Kconfig: Spell out "ARMv9.4" in menuconfig text (Mark Salter) [RHEL-132203] - arm64/fpsimd: simplify sme_setup() (Mark Salter) [RHEL-132203] - Enable Fujitsu Uncore PMU (Mark Salter) [RHEL-132203] - perf: Fujitsu: Add the Uncore PMU driver (Mark Salter) [RHEL-132203] - arm64: cpufeature: add Neoverse-V3AE to BBML2 allow list (Mark Salter) [RHEL-132203] - arm64: errata: Apply workarounds for Neoverse-V3AE (Mark Salter) [RHEL-132203] - arm64: cputype: Add Neoverse-V3AE definitions (Mark Salter) [RHEL-132203] - arm64: probes: Fix incorrect bl/blr address and register usage (Mark Salter) [RHEL-132203] - uprobes: uprobe_warn should use passed task (Mark Salter) [RHEL-132203] - arm64: Kconfig: Remove GCS restrictions on UPROBES (Mark Salter) [RHEL-132203] - arm64: uprobes: Add GCS support to uretprobes (Mark Salter) [RHEL-132203] - arm64: probes: Add GCS support to bl/blr/ret (Mark Salter) [RHEL-132203] - arm64: uaccess: Add additional userspace GCS accessors (Mark Salter) [RHEL-132203] - arm64: uaccess: Move existing GCS accessors definitions to gcs.h (Mark Salter) [RHEL-132203] - arm64: probes: Break ret out from bl/blr (Mark Salter) [RHEL-132203] - arm64: Remove tautological LLVM Kconfig conditions (Mark Salter) [RHEL-132203] - arm64/sme: Drop inaccurate documentation of streaming mode switches (Mark Salter) [RHEL-132203] - wifi: enable rtw8922ae (Jose Ignacio Tornos Martinez) [RHEL-111098] - wifi: rtw89: 8922a: set random mac if efuse contains zeroes (Jose Ignacio Tornos Martinez) [RHEL-111098] - netlink: avoid infinite retry looping in netlink_unicast() (Paolo Abeni) [RHEL-133487] {CVE-2025-38727} - netlink: make sure we allow at least one dump skb (Paolo Abeni) [RHEL-133487] - netlink: Fix rmem check in netlink_broadcast_deliver(). (Paolo Abeni) [RHEL-133487] - netlink: Fix wraparounds of sk->sk_rmem_alloc. (Paolo Abeni) [RHEL-133487] - genetlink: fix genl_bind() invoking bind() after -EPERM (Paolo Abeni) [RHEL-133487] {CVE-2025-39926} - nvme: add support for dynamic quirk configuration via module parameter (Maurizio Lombardi) [RHEL-126507] - nvme: expose active quirks in sysfs (Maurizio Lombardi) [RHEL-141683] - block: fix memory leak in __blkdev_issue_zero_pages (Ming Lei) [RHEL-137852] - virtio: clean up features qword/dword terms (Laurent Vivier) [RHEL-111004] - virtio-net: avoid unnecessary checksum calculation on guest RX (Laurent Vivier) [RHEL-111004] - virtio_net: fix alignment for virtio_net_hdr_v1_hash (Laurent Vivier) [RHEL-111004] - virtio-net: zero unused hash fields (Laurent Vivier) [RHEL-111004] - vhost/net: enable gso over UDP tunnel support. (Laurent Vivier) [RHEL-111004] - tun: enable gso over UDP tunnel support. (Laurent Vivier) [RHEL-111004] - virtio_net: enable gso over UDP tunnel support. (Laurent Vivier) [RHEL-111004] - net: implement virtio helpers to handle UDP GSO tunneling. (Laurent Vivier) [RHEL-111004] - virtio_net: add supports for extended offloads (Laurent Vivier) [RHEL-111004] - vhost-net: allow configuring extended features (Laurent Vivier) [RHEL-111004] - virtio_pci_modern: allow configuring extended features (Laurent Vivier) [RHEL-111004] - virtio: introduce extended features (Laurent Vivier) [RHEL-111004] - fou: Don't allow 0 for FOU_ATTR_IPPROTO. (Xin Long) [RHEL-142435] - tools: ynl: Specify --no-line-number in ynl-regen.sh. (Xin Long) [RHEL-142435] - gue: Fix skb memleak with inner IP protocol 0. (Xin Long) [RHEL-142435] - netlink: specs: fou: replace underscores with dashes in names (Xin Long) [RHEL-142435] - redhat: enable FOU modules in kernel-modules-extra (Xin Long) [RHEL-142435] - xfs: set max_agbno to allow sparse alloc of last full inode chunk (CKI Backport Bot) [RHEL-141684] - redhat/configs: Enable CONFIG_PM_DEVFREQ for aarch64 (Nick Cao) [RHEL-140756] - mlxbf_gige: emit messages during open and probe failures (David Thompson) [RHEL-104014] - mlxbf_gige: return EPROBE_DEFER if PHY IRQ is not available (David Thompson) [RHEL-104014] - redhat/configs: enable ACPI_DEBUG on non-debug kernels (Mark Langsdorf) [RHEL-88729 RHEL-89376] - nouveau/gsp: fix suspend/resume regression on r570 firmware (José Expósito) [RHEL-141658] - nouveau: add a third state to the fini handler. (José Expósito) [RHEL-141658] - nouveau/gsp: use rpc sequence numbers properly. (José Expósito) [RHEL-141658] - redhat/dracut-virt.conf: omit drm drivers in UKI initrd (Li Tian) [RHEL-146125] - scsi: storvsc: Process unsupported MODE_SENSE_10 (Li Tian) [RHEL-147285] - dpll: expose fractional frequency offset in ppt (Ivan Vecera) [RHEL-129484] - dpll: zl3073x: Implement device mode setting support (Ivan Vecera) [RHEL-140641] - dpll: add dpll_device op to set working mode (Ivan Vecera) [RHEL-140641] - dpll: add dpll_device op to get supported modes (Ivan Vecera) [RHEL-140641] - mei: me: add wildcat lake P DID (Steve Best) [RHEL-95680] - redhat/configs: ftrace: enable FUNCTION_GRAPH_RETVAL (Jerome Marchand) [RHEL-105766] - KVM: x86: Don't clear async #PF queue when CR0.PG is disabled (e.g. on #SMI) (Maxim Levitsky) [RHEL-127414] - KVM: x86: Fix a semi theoretical bug in kvm_arch_async_page_present_queued() (Maxim Levitsky) [RHEL-127414] - cpufreq: scmi: Account for malformed DT in scmi_dev_used_by_cpus() (Mark Langsdorf) [RHEL-120319] - cpufreq: Initialize cpufreq-based invariance before subsys (Mark Langsdorf) [RHEL-120319] - cpufreq: CPPC: Mark driver with NEED_UPDATE_LIMITS flag (Mark Langsdorf) [RHEL-120319] - PM: cpufreq: powernv/tracing: Move powernv_throttle trace event (Mark Langsdorf) [RHEL-120319] - drivers: cpufreq: add Tegra114 support (Mark Langsdorf) [RHEL-120319] - cpufreq: Exit governor when failed to start old governor (Mark Langsdorf) [RHEL-120319] - cpufreq: Move the check of cpufreq_driver->get into cpufreq_verify_current_freq() (Mark Langsdorf) [RHEL-120319] - cpufreq: Init policy->rwsem before it may be possibly used (Mark Langsdorf) [RHEL-120319] - cpufreq: Initialize cpufreq-based frequency-invariance later (Mark Langsdorf) [RHEL-120319] - cpufreq: Remove duplicate check in __cpufreq_offline() (Mark Langsdorf) [RHEL-120319] - cpufreq: Contain scaling_cur_freq.attr in cpufreq_attrs (Mark Langsdorf) [RHEL-120319] - cpufreq: tegra124: Allow building as a module (Mark Langsdorf) [RHEL-120319] - cpufreq: dt: Add register helper (Mark Langsdorf) [RHEL-120319] - cpufreq: Export disable_cpufreq() (Mark Langsdorf) [RHEL-120319] - cpufreq: brcmstb-avs: Fully open-code compatible for grepping (Mark Langsdorf) [RHEL-120319] - cpufreq: apple: drop default ARCH_APPLE in Kconfig (Mark Langsdorf) [RHEL-120319] - cpufreq: userspace: set CPUFREQ_GOV_STRICT_TARGET flag (Mark Langsdorf) [RHEL-120319] - cpufreq: CPPC: Remove forward declaration of cppc_cpufreq_register_em() (Mark Langsdorf) [RHEL-120319] - cpufreq: CPPC: Do not return a value from populate_efficiency_class() (Mark Langsdorf) [RHEL-120319] - cpufreq: CPPC: Remove cpu_data_list (Mark Langsdorf) [RHEL-120319] - cpufreq: CPPC: Add support for autonomous selection (Mark Langsdorf) [RHEL-120319] - cpufreq: Update sscanf() to kstrtouint() (Mark Langsdorf) [RHEL-120319] - cpufreq: Replace magic number (Mark Langsdorf) [RHEL-120319] - cpufreq: scmi: Skip SCMI devices that aren't used by the CPUs (Mark Langsdorf) [RHEL-120319] - cpufreq: Add Rust-based cpufreq-dt driver (Mark Langsdorf) [RHEL-120319] - cpufreq: drop redundant cpus_read_lock() from store_local_boost() (Mark Langsdorf) [RHEL-120319] - cpufreq: Drop policy locking from cpufreq_policy_is_good_for_eas() (Mark Langsdorf) [RHEL-120319] - powernow: use pr_info_once (Mark Langsdorf) [RHEL-120319] - cpufreq/sched: Move cpufreq-specific EAS checks to cpufreq (Mark Langsdorf) [RHEL-120319] - cpufreq/sched: schedutil: Add helper for governor checks (Mark Langsdorf) [RHEL-120319] - cpufreq: Force sync policy boost with global boost on sysfs update (Mark Langsdorf) [RHEL-120319] - cpufreq: Preserve policy's boost state after resume (Mark Langsdorf) [RHEL-120319] - cpufreq: Introduce policy_set_boost() (Mark Langsdorf) [RHEL-120319] - cpufreq: Don't unnecessarily call set_boost() (Mark Langsdorf) [RHEL-120319] - cpufreq: Drop unused cpufreq_get_policy() (Mark Langsdorf) [RHEL-120319] - cpufreq: Introduce cpufreq_policy_refresh() (Mark Langsdorf) [RHEL-120319] - cpufreq: Use __free() for policy reference counting cleanup (Mark Langsdorf) [RHEL-120319] - cpufreq: Drop cpufreq_cpu_acquire() and cpufreq_cpu_release() (Mark Langsdorf) [RHEL-120319] - cpufreq: Use locking guard and __free() in cpufreq_update_policy() (Mark Langsdorf) [RHEL-120319] - cpufreq: Add and use cpufreq policy locking guards (Mark Langsdorf) [RHEL-120319] - cpufreq: Split cpufreq_online() (Mark Langsdorf) [RHEL-120319] - cpufreq: Consolidate some code in cpufreq_online() (Mark Langsdorf) [RHEL-120319] - cpufreq: intel_pstate: Rearrange max frequency updates handling code (Mark Langsdorf) [RHEL-120319] - cpufreq: airoha: modify CONFIG_OF dependency (Mark Langsdorf) [RHEL-120319] - cpufreq: airoha: Depends on OF (Mark Langsdorf) [RHEL-120319] - cpufreq: airoha: Add EN7581 CPUFreq SMCCC driver (Mark Langsdorf) [RHEL-120319] - net: bridge: annotate data-races around fdb->{updated,used} (Mohammad Heib) [RHEL-123945] - bridge: fix C-VLAN preservation in 802.1ad vlan_tunnel egress (Mohammad Heib) [RHEL-123945] - net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct (Mohammad Heib) [RHEL-123945] - net: bridge: fix MST static key usage (Mohammad Heib) [RHEL-123945] - net: bridge: fix use-after-free due to MST port state bypass (Mohammad Heib) [RHEL-123945] - selftests: bridge_mdb: Add a test for MDB flush on snooping disable (Mohammad Heib) [RHEL-123945] - net: bridge: Flush multicast groups when snooping is disabled (Mohammad Heib) [RHEL-123945] - net: bridge: use common function to compute the features (Mohammad Heib) [RHEL-123945] - net: add a common function to compute features for upper devices (Mohammad Heib) [RHEL-123945] - net: bridge: correct debug message function name in br_fill_ifinfo (Mohammad Heib) [RHEL-123945] - bridge: br_vlan_fill_forward_path_pvid: use br_vlan_group_rcu() (Mohammad Heib) [RHEL-123945] - selftests: bridge_fdb_local_vlan_0: Test FDB vs. NET_ADDR_SET behavior (Mohammad Heib) [RHEL-123945] - net: bridge: Install FDB for bridge MAC on VLAN 0 (Mohammad Heib) [RHEL-123945] - selftests: forwarding: Add test for BR_BOOLOPT_FDB_LOCAL_VLAN_0 (Mohammad Heib) [RHEL-123945] - selftests: net: lib.sh: Don't defer failed commands (Mohammad Heib) [RHEL-123945] - selftests: defer: Introduce DEFER_PAUSE_ON_FAIL (Mohammad Heib) [RHEL-123945] - selftests: defer: Allow spaces in arguments of deferred commands (Mohammad Heib) [RHEL-123945] - net: bridge: Introduce UAPI for BR_BOOLOPT_FDB_LOCAL_VLAN_0 (Mohammad Heib) [RHEL-123945] - net: bridge: BROPT_FDB_LOCAL_VLAN_0: Skip local FDBs on VLAN creation (Mohammad Heib) [RHEL-123945] - net: bridge: BROPT_FDB_LOCAL_VLAN_0: On bridge changeaddr, skip per-VLAN FDBs (Mohammad Heib) [RHEL-123945] - net: bridge: BROPT_FDB_LOCAL_VLAN_0: On port changeaddr, skip per-VLAN FDBs (Mohammad Heib) [RHEL-123945] - net: bridge: BROPT_FDB_LOCAL_VLAN_0: Look up FDB on VLAN 0 on miss (Mohammad Heib) [RHEL-123945] - net: bridge: Introduce BROPT_FDB_LOCAL_VLAN_0 (Mohammad Heib) [RHEL-123945] - net: bridge: Bounce invalid boolopts (Mohammad Heib) [RHEL-123945] - net: bridge: remove unused argument of br_multicast_query_expired() (Mohammad Heib) [RHEL-123945] - net: bridge: fix soft lockup in br_multicast_query_expired() (Mohammad Heib) [RHEL-123945] - selftests: net: Test bridge backup port when port is administratively down (Mohammad Heib) [RHEL-123945] - bridge: Redirect to backup port when port is administratively down (Mohammad Heib) [RHEL-123945] - selftests: net: bridge_vlan_aware: test untagged/8021p-tagged with and without PVID (Mohammad Heib) [RHEL-123945] - redhat: export FLAVOR (George Jacob) [RHEL-109549] - redhat: export only selected variables (George Jacob) [RHEL-109549] - vfio: Prevent from pinned DMABUF importers to attach to VFIO DMABUF (Cédric Le Goater) [RHEL-144911] - r8152: Advertise software timestamp information. (Jose Ignacio Tornos Martinez) [RHEL-124653] - mlxsw: spectrum_mr: Fix use-after-free when updating multicast route stats (CKI Backport Bot) [RHEL-143197] {CVE-2025-68800} - RDMA/efa: Remove possible negative shift (Kamal Heib) [RHEL-140846] - RDMA/efa: Extend admin timeout error print (Kamal Heib) [RHEL-140846] - RDMA/efa: Add Network HW statistics counters (Kamal Heib) [RHEL-140846] - io_uring/io-wq: fix incorrect io_wq_for_each_worker() termination logic (Jeff Moyer) [RHEL-140845] - io_uring/rw: cast rw->flags assignment to rwf_t (Jeff Moyer) [RHEL-140845] - io_uring/sqpoll: don't put task_struct on tctx setup failure (Jeff Moyer) [RHEL-140845] - io_uring: consistently use rcu semantics with sqpoll thread (Jeff Moyer) [RHEL-140845] - io_uring: fix filename leak in __io_openat_prep() (Jeff Moyer) [RHEL-140845] - io_uring: fix nr_segs calculation in io_import_kbuf (Jeff Moyer) [RHEL-140845] - io_uring: fix min_wait wakeups for SQPOLL (Jeff Moyer) [RHEL-140845] - io_uring/kbuf: use READ_ONCE() for userspace-mapped memory (Jeff Moyer) [RHEL-140845] - io_uring/rsrc: fix lost entries after cloned range (Jeff Moyer) [RHEL-140845] - io_uring/poll: correctly handle io_poll_add() return value on update (Jeff Moyer) [RHEL-140845] - io_uring/rsrc: don't use blk_rq_nr_phys_segments() as number of bvecs (Jeff Moyer) [RHEL-140845] - io_uring/rw: ensure allocated iovec gets cleared for early failure (Jeff Moyer) [RHEL-140845] - io_uring: fix regbuf vector size truncation (Jeff Moyer) [RHEL-140845] - io_uring: use WRITE_ONCE for user shared memory (Jeff Moyer) [RHEL-140845] - io_uring: fix types for region size calulation (Jeff Moyer) [RHEL-140845] - io_uring: correct __must_hold annotation in io_install_fixed_file (Jeff Moyer) [RHEL-140845] - io_uring/sqpoll: be smarter on when to update the stime usage (Jeff Moyer) [RHEL-140845] - io_uring/sqpoll: switch away from getrusage() for CPU accounting (Jeff Moyer) [RHEL-140845] - io_uring: fix use-after-free of sq->thread in __io_uring_show_fdinfo() (Jeff Moyer) [RHEL-140845] - io_uring/fdinfo: get rid of dumping credentials (Jeff Moyer) [RHEL-140845] - io_uring/fdinfo: only compile if CONFIG_PROC_FS is set (Jeff Moyer) [RHEL-140845] - io_uring: fix incorrect unlikely() usage in io_waitid_prep() (Jeff Moyer) [RHEL-140845] - io_uring: protect mem region deregistration (Jeff Moyer) [RHEL-140845] - Revert "io_uring/rw: drop -EOPNOTSUPP check in __io_complete_rw_common()" (Jeff Moyer) [RHEL-140845] - io_uring: fix incorrect io_kiocb reference in io_link_skb (Jeff Moyer) [RHEL-140845] - io_uring/msg_ring: kill alloc_cache for io_kiocb allocations (Jeff Moyer) [RHEL-140845] - io_uring: include dying ring in task_work "should cancel" state (Jeff Moyer) [RHEL-140845] - fs: add a FMODE_ flag to indicate IOCB_HAS_METADATA availability (Jeff Moyer) [RHEL-140845] - io_uring/net: commit partial buffers on retry (Jeff Moyer) [RHEL-140845] - io_uring: export io_[un]account_mem (Jeff Moyer) [RHEL-140845] - io_uring: don't use int for ABI (Jeff Moyer) [RHEL-140845] - tools headers UAPI: sync linux/stat.h linux/fs.h with tools (Olga Kornievskaia) [RHEL-134733] - NFS: Fix size read races in truncate, fallocate and copy offload (Olga Kornievskaia) [RHEL-134733] - NFS/localio: Deal with page bases that are > PAGE_SIZE (Olga Kornievskaia) [RHEL-134733] - NFS/localio: Stop further I/O upon hitting an error (Olga Kornievskaia) [RHEL-134733] - pnfs/blocklayout: Fix memory leak in bl_parse_scsi() (Olga Kornievskaia) [RHEL-134733] - pnfs/flexfiles: Fix memory leak in nfs4_ff_alloc_deviceid_node() (Olga Kornievskaia) [RHEL-134733] - NFS: Fix a deadlock involving nfs_release_folio() (Olga Kornievskaia) [RHEL-134733] - pNFS: Fix a deadlock when returning a delegation during open() (Olga Kornievskaia) [RHEL-134733] - nfsd: Drop the client reference in client_states_open() (Olga Kornievskaia) [RHEL-134733] - nfsd: fix nfsd_file reference leak in nfsd4_add_rdaccess_to_wrdeleg() (Olga Kornievskaia) [RHEL-134733] - lockd: fix vfs_test_lock() calls (Olga Kornievskaia) [RHEL-134733] - NFSD: Clear TIME_DELEG in the suppattr_exclcreat bitmap (Olga Kornievskaia) [RHEL-134733] - nfsd: fix memory leak in nfsd_create_serv error paths (Olga Kornievskaia) [RHEL-134733] - net/handshake: restore destructor on submit failure (Olga Kornievskaia) [RHEL-134733] - nfsd: Mark variable __maybe_unused to avoid W=1 build break (Olga Kornievskaia) [RHEL-134733] - svcrdma: bound check rq_pages index in inline path (Olga Kornievskaia) [RHEL-134733] - svcrdma: return 0 on success from svc_rdma_copy_inline_range (Olga Kornievskaia) [RHEL-134733] - svcrdma: use rc_pageoff for memcpy byte offset (Olga Kornievskaia) [RHEL-134733] - SUNRPC: svcauth_gss: avoid NULL deref on zero length gss_token in gss_read_proxy_verf (Olga Kornievskaia) [RHEL-134733] - net/handshake: duplicate handshake cancellations leak socket (Olga Kornievskaia) [RHEL-134733] - nfs/localio: fix regression due to out-of-order __put_cred (Olga Kornievskaia) [RHEL-134733] - nfs/localio: remove 61 byte hole from needless ____cacheline_aligned (Olga Kornievskaia) [RHEL-134733] - nfs/localio: remove alignment size checking in nfs_is_local_dio_possible (Olga Kornievskaia) [RHEL-134733] - NFS: Fix inheritance of the block sizes when automounting (Olga Kornievskaia) [RHEL-134733] - NFS: Automounted filesystems should inherit ro,noexec,nodev,sync flags (Olga Kornievskaia) [RHEL-134733] {CVE-2025-68764} - Revert "nfs: ignore SB_RDONLY when mounting nfs" (Olga Kornievskaia) [RHEL-134733] - Revert "nfs: clear SB_RDONLY before getting superblock" (Olga Kornievskaia) [RHEL-134733] - Revert "nfs: ignore SB_RDONLY when remounting nfs" (Olga Kornievskaia) [RHEL-134733] - NFSv4/pNFS: Clear NFS_INO_LAYOUTCOMMIT in pnfs_mark_layout_stateid_invalid (Olga Kornievskaia) [RHEL-134733] {CVE-2025-68349} - NFSv4.1: protect destroying and nullifying bc_serv structure (Olga Kornievskaia) [RHEL-134733] - SUNRPC: new helper function for stopping backchannel server (Olga Kornievskaia) [RHEL-134733] - SUNRPC: cleanup common code in backchannel request (Olga Kornievskaia) [RHEL-134733] - NFSv4.1: pass transport for callback shutdown (Olga Kornievskaia) [RHEL-134733] - NFSv4: ensure the open stateid seqid doesn't go backwards (Olga Kornievskaia) [RHEL-134733] - NFS: Initialise verifiers for visible dentries in _nfs4_open_and_get_state (Olga Kornievskaia) [RHEL-134733] - NFS: Initialise verifiers for visible dentries in nfs_atomic_open() (Olga Kornievskaia) [RHEL-134733] - NFS: Initialise verifiers for visible dentries in readdir and lookup (Olga Kornievskaia) [RHEL-134733] - NFS: Avoid changing nlink when file removes and attribute updates race (Olga Kornievskaia) [RHEL-134733] - NFSD: Make FILE_SYNC WRITEs comply with spec (Olga Kornievskaia) [RHEL-134733] - NFSD: use correct reservation type in nfsd4_scsi_fence_client (Olga Kornievskaia) [RHEL-134733] - NFSD: don't start nfsd if sv_permsocks is empty (Olga Kornievskaia) [RHEL-134733] - lockd: don't allow locking on reexported NFSv2/3 (Olga Kornievskaia) [RHEL-134733] - NFSD/blocklayout: Extract extent mapping from proc_layoutget (Olga Kornievskaia) [RHEL-134733] - NFSD/blocklayout: Fix minlength check in proc_layoutget (Olga Kornievskaia) [RHEL-134733] - svcrdma: Release transport resources synchronously (Olga Kornievskaia) [RHEL-134733] - net/handshake: Fix memory leak in tls_handshake_accept() (Olga Kornievskaia) [RHEL-134733] - NFS: Fix LTP test failures when timestamps are delegated (Olga Kornievskaia) [RHEL-134733] {CVE-2025-68242} - NFSv4: Fix an incorrect parameter when calling nfs4_call_sync() (Olga Kornievskaia) [RHEL-134733] - NFS: sysfs: fix leak when nfs_client kobject add fails (Olga Kornievskaia) [RHEL-134733] - NFSv2/v3: Fix error handling in nfs_atomic_open_v23() (Olga Kornievskaia) [RHEL-134733] - nfs/localio: do not issue misaligned DIO out-of-order (Olga Kornievskaia) [RHEL-134733] - nfs/localio: Ensure DIO WRITE's IO on stable storage upon completion (Olga Kornievskaia) [RHEL-134733] - nfs/localio: backfill missing partial read support for misaligned DIO (Olga Kornievskaia) [RHEL-134733] - nfs/localio: add refcounting for each iocb IO associated with NFS pgio header (Olga Kornievskaia) [RHEL-134733] - nfs/localio: remove unecessary ENOTBLK handling in DIO WRITE support (Olga Kornievskaia) [RHEL-134733] - NFS: Check the TLS certificate fields in nfs_match_client() (Olga Kornievskaia) [RHEL-134733] {CVE-2025-68243} - pnfs: Set transport security policy to RPC_XPRTSEC_NONE unless using TLS (Olga Kornievskaia) [RHEL-134733] - pnfs: Fix TLS logic in _nfs4_pnfs_v4_ds_connect() (Olga Kornievskaia) [RHEL-134733] - pnfs: Fix TLS logic in _nfs4_pnfs_v3_ds_connect() (Olga Kornievskaia) [RHEL-134733] - Revert "SUNRPC: Make RPCSEC_GSS_KRB5 select CRYPTO instead of depending on it" (Olga Kornievskaia) [RHEL-134733] - nfsd: ensure SEQUENCE replay sends a valid reply. (Olga Kornievskaia) [RHEL-134733] - NFSD: Never cache a COMPOUND when the SEQUENCE operation fails (Olga Kornievskaia) [RHEL-134733] - NFSD: Skip close replay processing if XDR encoding fails (Olga Kornievskaia) [RHEL-134733] - NFSD: free copynotify stateid in nfs4_free_ol_stateid() (Olga Kornievskaia) [RHEL-134733] {CVE-2025-40273} - nfsd: add missing FATTR4_WORD2_CLONE_BLKSIZE from supported attributes (Olga Kornievskaia) [RHEL-134733] - nfsd: fix refcount leak in nfsd_set_fh_dentry() (Olga Kornievskaia) [RHEL-134733] {CVE-2025-40212} - nfsd: Avoid strlen conflict in nfsd4_encode_components_esc() (Olga Kornievskaia) [RHEL-134733] - NFSD: Fix crash in nfsd4_read_release() (Olga Kornievskaia) [RHEL-134733] {CVE-2025-40324} - NFS4: Fix state renewals missing after boot (Olga Kornievskaia) [RHEL-134733] - NFS: check if suid/sgid was cleared after a write as needed (Olga Kornievskaia) [RHEL-134733] - NFS4: Apply delay_retrans to async operations (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: fix to allocate mirror->dss before use (Olga Kornievskaia) [RHEL-134733] - NFSD: Define a proc_layoutcommit for the FlexFiles layout type (Olga Kornievskaia) [RHEL-134733] {CVE-2025-40087} - nfsd: discard nfserr_dropit (Olga Kornievskaia) [RHEL-134733] - SUNRPC: Make RPCSEC_GSS_KRB5 select CRYPTO instead of depending on it (Olga Kornievskaia) [RHEL-134733] - NFSD: Add io_cache_{read,write} controls to debugfs (Olga Kornievskaia) [RHEL-134733] - NFSD: Do the grace period check in ->proc_layoutget (Olga Kornievskaia) [RHEL-134733] - nfsd: delete unnecessary NULL check in __fh_verify() (Olga Kornievskaia) [RHEL-134733] - NFS: add basic STATX_DIOALIGN and STATX_DIO_READ_ALIGN support (Olga Kornievskaia) [RHEL-134733] - nfs/localio: add tracepoints for misaligned DIO READ and WRITE support (Olga Kornievskaia) [RHEL-134733] - nfs/localio: add proper O_DIRECT support for READ and WRITE (Olga Kornievskaia) [RHEL-134733] - nfs/localio: refactor iocb initialization (Olga Kornievskaia) [RHEL-134733] - nfs/localio: refactor iocb and iov_iter_bvec initialization (Olga Kornievskaia) [RHEL-134733] - nfs/localio: avoid issuing misaligned IO using O_DIRECT (Olga Kornievskaia) [RHEL-134733] - nfs/localio: make trace_nfs_local_open_fh more useful (Olga Kornievskaia) [RHEL-134733] - NFSD: filecache: add STATX_DIOALIGN and STATX_DIO_READ_ALIGN support (Olga Kornievskaia) [RHEL-134733] - fs: add STATX_DIO_READ_ALIGN (Olga Kornievskaia) [RHEL-134733] - fs: reformat the statx definition (Olga Kornievskaia) [RHEL-134733] - sunrpc: unexport rpc_malloc() and rpc_free() (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: Add support for striped layouts (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: Update layout stats & error paths for striped layouts (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: Write path updates for striped layouts (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: Commit path updates for striped layouts (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: Read path updates for striped layouts (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: Update low level helper functions to be DS stripe aware. (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: Add data structure support for striped layouts (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: Use ds_commit_idx when marking a write commit (Olga Kornievskaia) [RHEL-134733] - NFSv4/flexfiles: Remove cred local variable dependency (Olga Kornievskaia) [RHEL-134733] - NFSD: Disallow layoutget during grace period (Olga Kornievskaia) [RHEL-134733] - nfs4_setup_readdir(): insufficient locking for ->d_parent->d_inode dereferencing (Olga Kornievskaia) [RHEL-134733] {CVE-2025-68185} - fs: add RWF_DONTCACHE iocb and FOP_DONTCACHE file_operations flag (Olga Kornievskaia) [RHEL-134733] - SUNRPC: Update gssx_accept_sec_context() to use xdr_set_scratch_folio() (Olga Kornievskaia) [RHEL-134733] - SUNRPC: Update svcxdr_init_decode() to call xdr_set_scratch_folio() (Olga Kornievskaia) [RHEL-134733] - NFS: Update the flexfilelayout driver to use xdr_set_scratch_folio() (Olga Kornievskaia) [RHEL-134733] - NFS: Update the filelayout to use xdr_set_scratch_folio() (Olga Kornievskaia) [RHEL-134733] - NFS: Update the blocklayout to use xdr_set_scratch_folio() (Olga Kornievskaia) [RHEL-134733] - NFS: Update listxattr to use xdr_set_scratch_folio() (Olga Kornievskaia) [RHEL-134733] - NFS: Update getacl to use xdr_set_scratch_folio() (Olga Kornievskaia) [RHEL-134733] - NFS: Update readdir to use a scratch folio (Olga Kornievskaia) [RHEL-134733] - SUNRPC: Introduce xdr_set_scratch_folio() (Olga Kornievskaia) [RHEL-134733] - SUNRPC: Remove redundant __GFP_NOWARN (Olga Kornievskaia) [RHEL-134733] - nfs: remove NFS_WBACK_BUSY() (Olga Kornievskaia) [RHEL-134733] - NFSv4.1: fix mount hang after CREATE_SESSION failure (Olga Kornievskaia) [RHEL-134733] - NFSv4.1: fix backchannel max_resp_sz verification check (Olga Kornievskaia) [RHEL-134733] - NFSv4: fix "prefered"->"preferred" (Olga Kornievskaia) [RHEL-134733] - sunrpc: add a Kconfig option to redirect dfprintk() output to trace buffer (Olga Kornievskaia) [RHEL-134733] - redhat/configs: Add CONFIG_SUNRPC_DEBUG_TRACE (Olga Kornievskaia) [RHEL-134733] - sunrpc: remove dfprintk_cont() and dfprintk_rcu_cont() (Olga Kornievskaia) [RHEL-134733] - nfs: cleanup tracepoint declarations (Olga Kornievskaia) [RHEL-134733] - nfs: add tracepoints to nfs_writepages() (Olga Kornievskaia) [RHEL-134733] - nfs: more in-depth tracing of writepage events (Olga Kornievskaia) [RHEL-134733] - nfs: new tracepoints around write handling (Olga Kornievskaia) [RHEL-134733] - nfs: add tracepoints to nfs_file_read() and nfs_file_write() (Olga Kornievskaia) [RHEL-134733] - sunrpc: fix "occurence"->"occurrence" (Olga Kornievskaia) [RHEL-134733] - nfsd: Don't force CRYPTO_LIB_SHA256 to be built-in (Olga Kornievskaia) [RHEL-134733] - NFSD: Reduce DRC bucket size (Olga Kornievskaia) [RHEL-134733] - NFSD: Delay adding new entries to LRU (Olga Kornievskaia) [RHEL-134733] - SUNRPC: Move the svc_rpcb_cleanup() call sites (Olga Kornievskaia) [RHEL-134733] - NFS: Remove rpcbind cleanup for NFSv4.0 callback (Olga Kornievskaia) [RHEL-134733] - NFSD: Drop redundant conversion to bool (Olga Kornievskaia) [RHEL-134733] - sunrpc: eliminate return pointer in svc_tcp_sendmsg() (Olga Kornievskaia) [RHEL-134733] - sunrpc: fix pr_notice in svc_tcp_sendto() to show correct length (Olga Kornievskaia) [RHEL-134733] - NFSD: Fix destination buffer size in nfsd4_ssc_setup_dul() (Olga Kornievskaia) [RHEL-134733] - nfsd: Eliminate an allocation in nfs4_make_rec_clidname() (Olga Kornievskaia) [RHEL-134733] - nfsd: Replace open-coded conversion of bytes to hex (Olga Kornievskaia) [RHEL-134733] - lockd: Remove space before newline (Olga Kornievskaia) [RHEL-134733] - nfsd: fix timestamp updates in CB_GETATTR (Olga Kornievskaia) [RHEL-134733] - nfsd: fix SETATTR updates for delegated timestamps (Olga Kornievskaia) [RHEL-134733] - nfsd: track original timestamps in nfs4_delegation (Olga Kornievskaia) [RHEL-134733] - nfsd: use ATTR_CTIME_SET for delegated ctime updates (Olga Kornievskaia) [RHEL-134733] - vfs: add ATTR_CTIME_SET flag (Olga Kornievskaia) [RHEL-134733] - nfsd: ignore ATTR_DELEG when checking ia_valid before notify_change() (Olga Kornievskaia) [RHEL-134733] - nfsd: fix assignment of ia_ctime.tv_nsec on delegated mtime update (Olga Kornievskaia) [RHEL-134733] - NFSD: Fix last write offset handling in layoutcommit (Olga Kornievskaia) [RHEL-134733] - NFSD: Implement large extent array support in pNFS (Olga Kornievskaia) [RHEL-134733] - NFSD: Minor cleanup in layoutcommit decoding (Olga Kornievskaia) [RHEL-134733] - NFSD: Minor cleanup in layoutcommit processing (Olga Kornievskaia) [RHEL-134733] - NFSD: Rework encoding and decoding of nfsd4_deviceid (Olga Kornievskaia) [RHEL-134733] - sunrpc: Change ret code of xdr_stream_decode_opaque_fixed (Olga Kornievskaia) [RHEL-134733] - sunrpc: delay pc_release callback until after the reply is sent (Olga Kornievskaia) [RHEL-134733] - NFSD: Move the fh_getattr() helper (Olga Kornievskaia) [RHEL-134733] - NFSD: Relocate the fh_want_write() and fh_drop_write() helpers (Olga Kornievskaia) [RHEL-134733] - sunrpc: fix null pointer dereference on zero-length checksum (Olga Kornievskaia) [RHEL-134733] {CVE-2025-40129} - nfsctl: symlink has no business bumping link count of parent directory (Olga Kornievskaia) [RHEL-134733] - slightly simplify nfs_atomic_open() (Olga Kornievskaia) [RHEL-134733] - simplify nfs_atomic_open_v23() (Olga Kornievskaia) [RHEL-134733] - check_export(): constify path argument (Olga Kornievskaia) [RHEL-134733] - rqst_exp_get_by_name(): constify path argument (Olga Kornievskaia) [RHEL-134733] - nfs: constify path argument of __vfs_getattr() (Olga Kornievskaia) [RHEL-134733] - ipv4: route: Prevent rt_bind_exception() from rebinding stale fnhe (Guillaume Nault) [RHEL-133462] - inet: Avoid ehash lookup race in inet_twsk_hashdance_schedule() (Guillaume Nault) [RHEL-133462] - inet: Avoid ehash lookup race in inet_ehash_insert() (Guillaume Nault) [RHEL-133462] - rculist: Add hlist_nulls_replace_rcu() and hlist_nulls_replace_init_rcu() (Guillaume Nault) [RHEL-133462] - nvmet: fix race in nvmet_bio_done() leading to NULL pointer dereference (Ming Lei) [RHEL-143329] - iommufd/selftest: Add missing kconfig for DMA_SHARED_BUFFER (Cédric Le Goater) [RHEL-111742] - iommufd: Fix building without dmabuf (Cédric Le Goater) [RHEL-111742] - iommu/arm-smmu-v3-iommufd: Allow attaching nested domain for GBPA cases (Cédric Le Goater) [RHEL-111742] - iommufd/selftest: Add some tests for the dmabuf flow (Cédric Le Goater) [RHEL-111742] - iommufd: Accept a DMABUF through IOMMU_IOAS_MAP_FILE (Cédric Le Goater) [RHEL-111742] - iommufd: Have iopt_map_file_pages convert the fd to a file (Cédric Le Goater) [RHEL-111742] - iommufd: Have pfn_reader process DMABUF iopt_pages (Cédric Le Goater) [RHEL-111742] - iommufd: Allow MMIO pages in a batch (Cédric Le Goater) [RHEL-111742] - iommufd: Allow a DMABUF to be revoked (Cédric Le Goater) [RHEL-111742] - iommufd: Do not map/unmap revoked DMABUFs (Cédric Le Goater) [RHEL-111742] - iommufd: Add DMABUF to iopt_pages (Cédric Le Goater) [RHEL-111742] - vfio/pci: Add vfio_pci_dma_buf_iommufd_map() (Cédric Le Goater) [RHEL-111742] - module: Provide EXPORT_SYMBOL_GPL_FOR_MODULES() helper (Cédric Le Goater) [RHEL-111742] - dma-direct: Fix missing sg_dma_len assignment in P2PDMA bus mappings (Cédric Le Goater) [RHEL-132423] - vfio/pds: Fix memory leak in pds_vfio_dirty_enable() (Cédric Le Goater) [RHEL-132423] - vfio/pci: Disable qword access to the VGA region (Cédric Le Goater) [RHEL-132423] - vfio/pci: Disable qword access to the PCI ROM bar (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Add vfio_pci_device_init_perf_test (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Eliminate INVALID_IOVA (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Split libvfio.h into separate header files (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Move vfio_selftests_*() helpers into libvfio.c (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Rename vfio_util.h to libvfio.h (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Stop passing device for IOMMU operations (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Move IOVA allocator into iova_allocator.c (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Move IOMMU library code into iommu.c (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Rename struct vfio_dma_region to dma_region (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Upgrade driver logging to dev_err() (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Prefix logs with device BDF where relevant (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Eliminate overly chatty logging (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Support multiple devices in the same container/iommufd (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Introduce struct iommu (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Rename struct vfio_iommu_mode to iommu_mode (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Allow passing multiple BDFs on the command line (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Split run.sh into separate scripts (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Move run.sh into scripts directory (Cédric Le Goater) [RHEL-132423] - vfio/nvgrace-gpu: wait for the GPU mem to be ready (Cédric Le Goater) [RHEL-132423] - vfio/nvgrace-gpu: Inform devmem unmapped after reset (Cédric Le Goater) [RHEL-132423] - vfio/nvgrace-gpu: split the code to wait for GPU ready (Cédric Le Goater) [RHEL-132423] - vfio: use vfio_pci_core_setup_barmap to map bar in mmap (Cédric Le Goater) [RHEL-132423] - vfio/nvgrace-gpu: Add support for huge pfnmap (Cédric Le Goater) [RHEL-132423] - vfio: refactor vfio_pci_mmap_huge_fault function (Cédric Le Goater) [RHEL-132423] - dma-buf: fix integer overflow in fill_sg_entry() for buffers >= 8GiB (Cédric Le Goater) [RHEL-132423] - vfio/pci: Use RCU for error/request triggers to avoid circular locking (Cédric Le Goater) [RHEL-132423] - vfio/nvgrace: Support get_dmabuf_phys (Cédric Le Goater) [RHEL-132423] - vfio/pci: Add dma-buf export support for MMIO regions (Cédric Le Goater) [RHEL-132423] - vfio/pci: Enable peer-to-peer DMA transactions by default (Cédric Le Goater) [RHEL-132423] - vfio/pci: Share the core device pointer while invoking feature functions (Cédric Le Goater) [RHEL-132423] - vfio: Export vfio device get and put registration helpers (Cédric Le Goater) [RHEL-132423] - dma-buf: provide phys_vec to scatter-gather mapping routine (Cédric Le Goater) [RHEL-132423] - PCI/P2PDMA: Document DMABUF model (Cédric Le Goater) [RHEL-132423] - PCI/P2PDMA: Provide an access to pci_p2pdma_map_type() function (Cédric Le Goater) [RHEL-132423] - PCI/P2PDMA: Refactor to separate core P2P functionality from memory allocation (Cédric Le Goater) [RHEL-132423] - PCI/P2PDMA: Simplify bus address mapping API (Cédric Le Goater) [RHEL-132423] - PCI/P2PDMA: Separate the mmap() support from the core logic (Cédric Le Goater) [RHEL-132423] - vfio: Remove the get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio: Move the remaining drivers to get_region_info_caps (Cédric Le Goater) [RHEL-132423] - vfio/platform: Convert to get_region_info_caps (Cédric Le Goater) [RHEL-132423] - vfio/pci: Convert all PCI drivers to get_region_info_caps (Cédric Le Goater) [RHEL-132423] - vfio/ccw: Convert to get_region_info_caps (Cédric Le Goater) [RHEL-132423] - vfio/gvt: Convert to get_region_info_caps (Cédric Le Goater) [RHEL-132423] - vfio/mbochs: Convert mbochs to use vfio_info_add_capability() (Cédric Le Goater) [RHEL-132423] - vfio: Add get_region_info_caps op (Cédric Le Goater) [RHEL-132423] - vfio: Require drivers to implement get_region_info (Cédric Le Goater) [RHEL-132423] - vfio/gvt: Provide a get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/ccw: Provide a get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/cdx: Provide a get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/fsl: Provide a get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/platform: Provide a get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/mbochs: Provide a get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/mdpy: Provide a get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/mtty: Provide a get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/pci: Fill in the missing get_region_info ops (Cédric Le Goater) [RHEL-132423] - vfio/nvgrace: Convert to the get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/virtio: Convert to the get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio/hisi: Convert to the get_region_info op (Cédric Le Goater) [RHEL-132423] - vfio: Provide a get_region_info op (Cédric Le Goater) [RHEL-132423] - hisi_acc_vfio_pci: Add .match_token_uuid callback in hisi_acc_vfio_pci_migrn_ops (Cédric Le Goater) [RHEL-132423] - vfio: Fix ksize arg while copying user struct in vfio_df_ioctl_bind_iommufd() (Cédric Le Goater) [RHEL-132423] - hisi_acc_vfio_pci: adapt to new migration configuration (Cédric Le Goater) [RHEL-132423] - crypto: hisilicon - qm updates BAR configuration (Cédric Le Goater) [RHEL-132423] - vfio/mtty: Fix spelling typo in samples/vfio-mdev (Cédric Le Goater) [RHEL-132423] - vfio: selftests: Store libvfio build outputs in $(OUTPUT)/libvfio (Cédric Le Goater) [RHEL-132423] - iommu/dma: add missing support for DMA_ATTR_MMIO for dma_iova_unlink() (Cédric Le Goater) [RHEL-116969] - kmsan: fix kmsan_handle_dma() to avoid false positives (Cédric Le Goater) [RHEL-116969] - kmsan: fix missed kmsan_handle_dma() signature conversion (Cédric Le Goater) [RHEL-116969] - mm/hmm: properly take MMIO path (Cédric Le Goater) [RHEL-116969] - mm/hmm: migrate to physical address-based DMA mapping API (Cédric Le Goater) [RHEL-116969] - dma-mapping: export new dma_*map_phys() interface (Cédric Le Goater) [RHEL-116969] - dma-mapping: implement DMA_ATTR_MMIO for dma_(un)map_page_attrs() (Cédric Le Goater) [RHEL-116969] - kmsan: convert kmsan_handle_dma to use physical addresses (Cédric Le Goater) [RHEL-116969] - dma-mapping: convert dma_direct_*map_page to be phys_addr_t based (Cédric Le Goater) [RHEL-116969] - iommu/dma: implement DMA_ATTR_MMIO for iommu_dma_(un)map_phys() (Cédric Le Goater) [RHEL-116969] - iommu/dma: rename iommu_dma_*map_page to iommu_dma_*map_phys (Cédric Le Goater) [RHEL-116969] - dma-mapping: rename trace_dma_*map_page to trace_dma_*map_phys (Cédric Le Goater) [RHEL-116969] - dma-debug: refactor to use physical addresses for page mapping (Cédric Le Goater) [RHEL-116969] - iommu/dma: implement DMA_ATTR_MMIO for dma_iova_link(). (Cédric Le Goater) [RHEL-116969] - dma-mapping: introduce new DMA attribute to indicate MMIO memory (Cédric Le Goater) [RHEL-116969] - objtool: Support Clang AUTOFDO .cold functions (Joe Lawrence) [RHEL-114919] - objtool: Fix skip_alt_group() for non-alternative STAC/CLAC (Joe Lawrence) [RHEL-114919] - objtool/LoongArch: Get table size correctly if LTO is enabled (Joe Lawrence) [RHEL-114919] - objtool/klp: Only enable --checksum when needed (partial) (Joe Lawrence) [RHEL-114916] - objtool: Set minimum xxhash version to 0.8 (Joe Lawrence) [RHEL-114916] - objtool/klp: Add the debian-based package name of xxhash to the hint (Joe Lawrence) [RHEL-114916] - Revert "objtool: Warn on functions with ambiguous -ffunction-sections section names" (Joe Lawrence) [RHEL-114916] - kbuild: Check for functions with ambiguous -ffunction-sections section names (Joe Lawrence) [RHEL-114916] - objtool: Warn on functions with ambiguous -ffunction-sections section names (Joe Lawrence) [RHEL-114916] - tty: synclink_gt: Fix namespace collision and startup() section placement with -ffunction-sections (Joe Lawrence) [RHEL-114916] - tty: amiserial: Fix namespace collision and startup() section placement with -ffunction-sections (Joe Lawrence) [RHEL-114916] - media: atomisp: gc2235: Fix namespace collision and startup() section placement with -ffunction-sections (Joe Lawrence) [RHEL-114916] - serial: icom: Fix namespace collision and startup() section placement with -ffunction-sections (Joe Lawrence) [RHEL-114916] - drivers/xen/xenbus: Fix namespace collision and split() section placement with AutoFDO (Joe Lawrence) [RHEL-114916] - media: atomisp: Fix namespace collision and startup() section placement with -ffunction-sections (Joe Lawrence) [RHEL-114916] - vmlinux.lds: Fix TEXT_MAIN to include .text.start and friends (Joe Lawrence) [RHEL-114916] - vmlinux.lds: Exclude .text.startup and .text.exit from TEXT_MAIN (Joe Lawrence) [RHEL-114916] - tools/objtool: Copy the __cleanup unused variable fix for older clang (Joe Lawrence) [RHEL-114916] - livepatch: Introduce source code helpers for livepatch modules (Joe Lawrence) [RHEL-114916] - livepatch/klp-build: Add --show-first-changed option to show function divergence (Joe Lawrence) [RHEL-114916] - livepatch/klp-build: Add --debug option to show cloning decisions (Joe Lawrence) [RHEL-114916] - livepatch/klp-build: Introduce klp-build script for generating livepatch modules (Joe Lawrence) [RHEL-114916] - livepatch/klp-build: Add stub init code for livepatch modules (Joe Lawrence) [RHEL-114916] - livepatch/klp-build: Introduce fix-patch-lines script to avoid __LINE__ diff noise (Joe Lawrence) [RHEL-114916] - kbuild,objtool: Defer objtool validation step for CONFIG_KLP_BUILD (Joe Lawrence) [RHEL-114916] - livepatch: Add CONFIG_KLP_BUILD (Joe Lawrence) [RHEL-114916] - objtool: Add base objtool support for livepatch modules (Joe Lawrence) [RHEL-114916] - objtool: Refactor prefix symbol creation code (Joe Lawrence) [RHEL-114916] - objtool/klp: Add post-link subcommand to finalize livepatch modules (Joe Lawrence) [RHEL-114916] - objtool/klp: Add --debug option to show cloning decisions (Joe Lawrence) [RHEL-114916] - objtool/klp: Introduce klp diff subcommand for diffing object files (Joe Lawrence) [RHEL-114916] - objtool/klp: Add --debug-checksum= to show per-instruction checksums (Joe Lawrence) [RHEL-114916] - objtool/klp: Add --checksum option to generate per-function checksums (Joe Lawrence) [RHEL-114916] - objtool: Unify STACK_FRAME_NON_STANDARD entry sizes (Joe Lawrence) [RHEL-114916] - x86/asm: Annotate special section entries (Joe Lawrence) [RHEL-114916] - x86/bug: Add ARCH_WARN_ASM macro for BUG/WARN asm code sharing with Rust (Joe Lawrence) [RHEL-114916] - objtool: Add ANNOTATE_DATA_SPECIAL (Joe Lawrence) [RHEL-114916] - objtool: Move ANNOTATE* macros to annotate.h (Joe Lawrence) [RHEL-114916] - objtool: Add annotype() helper (Joe Lawrence) [RHEL-114916] - objtool: Add elf_create_file() (Joe Lawrence) [RHEL-114916] - objtool: Add elf_create_reloc() and elf_init_reloc() (Joe Lawrence) [RHEL-114916] - objtool: Add elf_create_data() (Joe Lawrence) [RHEL-114916] - objtool: Generalize elf_create_section() (Joe Lawrence) [RHEL-114916] - objtool: Generalize elf_create_symbol() (Joe Lawrence) [RHEL-114916] - objtool: Simplify special symbol handling in elf_update_symbol() (Joe Lawrence) [RHEL-114916] - objtool: Refactor add_jump_destinations() (Joe Lawrence) [RHEL-114916] - objtool: Reindent check_options[] (Joe Lawrence) [RHEL-114916] - objtool: Resurrect --backup option (Joe Lawrence) [RHEL-114916] - objtool: Rename --Werror to --werror (Joe Lawrence) [RHEL-114916] - objtool: Avoid emptying lists for duplicate sections (Joe Lawrence) [RHEL-114916] - objtool: Simplify reloc offset calculation in unwind_read_hints() (Joe Lawrence) [RHEL-114916] - objtool: Mark prefix functions (Joe Lawrence) [RHEL-114916] - objtool: Fix weak symbol hole detection for .cold functions (Joe Lawrence) [RHEL-114916] - objtool: Mark .cold subfunctions (Joe Lawrence) [RHEL-114916] - objtool: Add section/symbol type helpers (Joe Lawrence) [RHEL-114916] - objtool: Convert elf iterator macros to use 'struct elf' (Joe Lawrence) [RHEL-114916] - objtool: Fix failure when being compiled on x32 system (Joe Lawrence) [RHEL-114916] - objtool: Add action to check for absence of absolute relocations (Joe Lawrence) [RHEL-114916] - objtool: Remove .parainstructions reference (Joe Lawrence) [RHEL-114916] - objtool: Clean up compiler flag usage (Joe Lawrence) [RHEL-114916] - objtool: Const string cleanup (Joe Lawrence) [RHEL-114916] - objtool: Check for missing annotation entries in read_annotate() (Joe Lawrence) [RHEL-114916] - objtool: Fix "unexpected end of section" warning for alternatives (Joe Lawrence) [RHEL-114916] - objtool: Fix __pa_symbol() relocation handling (Joe Lawrence) [RHEL-114916] - objtool: Fix x86 addend calculation (Joe Lawrence) [RHEL-114916] - objtool: Fix weak symbol detection (Joe Lawrence) [RHEL-114916] - objtool: Fix interval tree insertion for zero-length symbols (Joe Lawrence) [RHEL-114916] - objtool: Add empty symbols to the symbol tree again (Joe Lawrence) [RHEL-114916] - objtool: Remove error handling boilerplate (Joe Lawrence) [RHEL-114916] - objtool: Fix standalone --hacks=jump_label (Joe Lawrence) [RHEL-114916] - objtool: Propagate elf_truncate_section() error in elf_write() (Joe Lawrence) [RHEL-114916] - objtool: Fix broken error handling in read_symbols() (Joe Lawrence) [RHEL-114916] - objtool: Make find_symbol_containing() less arbitrary (Joe Lawrence) [RHEL-114916] - interval_tree: Sync interval_tree_generic.h with tools (Joe Lawrence) [RHEL-114916] - x86/alternative: Refactor INT3 call emulation selftest (Joe Lawrence) [RHEL-114916] - modpost: Ignore unresolved section bounds symbols (Joe Lawrence) [RHEL-114916] - kbuild: Remove 'kmod_' prefix from __KBUILD_MODNAME (Joe Lawrence) [RHEL-114916] - elfnote: Change ELFNOTE() to use __UNIQUE_ID() (Joe Lawrence) [RHEL-114916] - compiler.h: Make addressable symbols less of an eyesore (Joe Lawrence) [RHEL-114916] - compiler: Tweak __UNIQUE_ID() naming (Joe Lawrence) [RHEL-114916] - x86/kprobes: Remove STACK_FRAME_NON_STANDARD annotation (Joe Lawrence) [RHEL-114916] - x86/module: Improve relocation error messages (Joe Lawrence) [RHEL-114916] - vmlinux.lds: Unify TEXT_MAIN, DATA_MAIN, and related macros (Joe Lawrence) [RHEL-114916] - s390/vmlinux.lds.S: Prevent thunk functions from getting placed with normal text (Joe Lawrence) [RHEL-114916] - vmlinux.lds: Include .data.rel[.local] into .data section (Joe Lawrence) [RHEL-114916] - HID: intel-ish-hid: Fix -Wcast-function-type-strict in devm_ishtp_alloc_workqueue() (Tony Camuso) [RHEL-135993] - HID: intel-ish-hid: ipc: Separate hibernate callbacks in dev_pm_ops (Tony Camuso) [RHEL-135993] - HID: intel-ish-hid: Use IPC RESET instead of void message in ish_wakeup() (Tony Camuso) [RHEL-135993] - HID: intel-ish-hid: ipc: Always schedule FW reset work on RESET_NOTIFY/ACK (Tony Camuso) [RHEL-135993] - HID: intel-ish-ipc: Reset clients state on resume from D3 (Tony Camuso) [RHEL-135993] - HID: intel-ishtp-hid: Clear suspended flag only after connected on resume (Tony Camuso) [RHEL-135993] - HID: intel-ish-hid: Add ishtp_get_connection_state() interface (Tony Camuso) [RHEL-135993] - HID: intel-ish-hid: Use dedicated unbound workqueues to prevent resume blocking (Tony Camuso) [RHEL-135993] - HID: intel-ish-ipc: Remove redundant ready check after timeout function (Tony Camuso) [RHEL-135993] - scsi: target: iscsi: Fix use-after-free in iscsit_dec_session_usage_count() (Maurizio Lombardi) [RHEL-106984] - scsi: target: iscsi: Fix use-after-free in iscsit_dec_conn_usage_count() (Maurizio Lombardi) [RHEL-106984] - s390/drivers: Remove unnecessary include (Mete Durlu) [RHEL-99994] - scsi: zfcp: Simplify workqueue allocation (Mete Durlu) [RHEL-99994] - s390/zfcp: Remove outdated email address (Mete Durlu) [RHEL-99994] - redhat/configs: rename CONFIG_QCOM_QFPROM to CONFIG_NVMEM_QCOM_QFPROM (Eric Chanudet) [RHEL-144943] - nvme-tcp: fix NULL pointer dereferences in nvmet_tcp_build_pdu_iovec (CKI Backport Bot) [RHEL-144337] {CVE-2026-22998} - redhat: add usbio kmod placement rule (Jan Stancek) [RHEL-139637] - net: ipv4: convert ip_rcv_options to drop reasons (Antoine Tenart) [RHEL-139232] - net: ipv4: simplify drop reason handling in ip_rcv_finish_core (Antoine Tenart) [RHEL-139232] - net: ipv4: make udp_v4_early_demux explicitly return drop reason (Antoine Tenart) [RHEL-139232] - tcp: prefer sk_skb_reason_drop() (Antoine Tenart) [RHEL-139232] - net/sched: Add precise drop reason for pfifo_fast queue overflows (Antoine Tenart) [RHEL-139232] - net: track pfmemalloc drops via SKB_DROP_REASON_PFMEMALLOC (Antoine Tenart) [RHEL-139232] - net: arp: use kfree_skb_reason() in arp_rcv() (Antoine Tenart) [RHEL-139232] - can: add drop reasons in CAN protocols receive path (Antoine Tenart) [RHEL-139232] - can: add drop reasons in the receive path of AF_CAN (Antoine Tenart) [RHEL-139232] - net: neigh: use kfree_skb_reason() in neigh_resolve_output() and neigh_connected_output() (Antoine Tenart) [RHEL-139232] - net: flush_backlog() small changes (Antoine Tenart) [RHEL-139232] - drm/amdkfd: Fix improper NULL termination of queue restore SMI event string (Anusha Srivatsa) [RHEL-142315] - drm/amd/display: Fix DP no audio issue (Anusha Srivatsa) [RHEL-142315] - drm/amd/pm: force send pcie parmater on navi1x (Anusha Srivatsa) [RHEL-142315] - drm/amd/pm: fix wrong pcie parameter on navi1x (Anusha Srivatsa) [RHEL-142315] - drm/amd/display: shrink struct members (Anusha Srivatsa) [RHEL-142315] - drm/radeon: Remove __counted_by from ClockInfoArray.clockInfo[] (Anusha Srivatsa) [RHEL-142315] - drm/tidss: Fix enable/disable order (Anusha Srivatsa) [RHEL-142315] - drm/atomic-helper: Export and namespace some functions (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu: Fix query for VPE block_type and ip_count (Anusha Srivatsa) [RHEL-142315] - drm/amd/display: Apply e4479aecf658 to dml (Anusha Srivatsa) [RHEL-142315] - Revert "drm/atomic-helper: Re-order bridge chain pre-enable and post-disable" (Anusha Srivatsa) [RHEL-142315] - nouveau: don't attempt fwsec on sb on newer platforms. (Anusha Srivatsa) [RHEL-142315] - drm/imagination: Disallow exporting of PM/FW protected objects (Anusha Srivatsa) [RHEL-142315] - drm/nouveau/dispnv50: Don't call drm_atomic_get_crtc_state() in prepare_fb (Anusha Srivatsa) [RHEL-142315] - drm/pagemap, drm/xe: Ensure that the devmem allocation is idle before use (Anusha Srivatsa) [RHEL-142315] - drm/xe/svm: Fix a debug printout (Anusha Srivatsa) [RHEL-142315] - drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer (Anusha Srivatsa) [RHEL-142315] - drm/xe: Drop preempt-fences when destroying imported dma-bufs. (Anusha Srivatsa) [RHEL-142315] - drm/xe: Use usleep_range for accurate long-running workload timeslicing (Anusha Srivatsa) [RHEL-142315] - drm/xe: Adjust long-running workload timeslices to reasonable values (Anusha Srivatsa) [RHEL-142315] - drm/xe/eustall: Disallow 0 EU stall property values (Anusha Srivatsa) [RHEL-142315] - drm/xe/oa: Disallow 0 OA property values (Anusha Srivatsa) [RHEL-142315] - drm/xe/bo: Don't include the CCS metadata in the dma-buf sg-table (Anusha Srivatsa) [RHEL-142315] - drm: Fix object leak in DRM_IOCTL_GEM_CHANGE_HANDLE (Anusha Srivatsa) [RHEL-142315] - drm/mgag200: Fix big-endian support (Anusha Srivatsa) [RHEL-142315] - drm/ttm: Avoid NULL pointer deref for evicted BOs (Anusha Srivatsa) [RHEL-142315] - drm/i915: Fix format string truncation warning (Anusha Srivatsa) [RHEL-142315] - drm/amdkfd: Trap handler support for expert scheduling mode (Anusha Srivatsa) [RHEL-142315] - drm/amdkfd: bump minimum vgpr size for gfx1151 (Anusha Srivatsa) [RHEL-142315] - drm/amdkfd: Export the cwsr_size and ctl_stack_size to userspace (Anusha Srivatsa) [RHEL-142315] - drm/nouveau/gsp: Allocate fwsec-sb at boot (Anusha Srivatsa) [RHEL-142315] - drm/bridge: ti-sn65dsi83: ignore PLL_UNLOCK errors (Anusha Srivatsa) [RHEL-142315] - drm/amd: Fix unbind/rebind for VCN 4.0.5 (Anusha Srivatsa) [RHEL-142315] - drm/xe/oa: Fix potential UAF in xe_oa_add_config_ioctl() (Anusha Srivatsa) [RHEL-142315] - drm/gma500: Remove unused helper psb_fbdev_fb_setcolreg() (Anusha Srivatsa) [RHEL-142315] - drm/buddy: Separate clear and dirty free block trees (Anusha Srivatsa) [RHEL-142315] - drm/buddy: Optimize free block management with RB tree (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu/gmc11: add amdgpu_vm_handle_fault() handling (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu/sdma6: Update SDMA 6.0.3 FW version to include UMQ protected-fence fix (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu: add missing lock to amdgpu_ttm_access_memory_sdma (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu: Forward VMID reservation errors (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu/gmc12: add amdgpu_vm_handle_fault() handling (Anusha Srivatsa) [RHEL-142315] - Revert "drm/amd: Skip power ungate during suspend for VPE" (Anusha Srivatsa) [RHEL-142315] - drm/xe/guc: READ/WRITE_ONCE g2h_fence->done (Anusha Srivatsa) [RHEL-142315] - drm/gem-shmem: Fix the MODULE_LICENSE() string (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu: don't attach the tlb fence for SI (Anusha Srivatsa) [RHEL-142315] - drm/displayid: add quirk to ignore DisplayID checksum errors (Anusha Srivatsa) [RHEL-142315] - drm/edid: add DRM_EDID_IDENT_INIT() to initialize struct drm_edid_ident (Anusha Srivatsa) [RHEL-142315] - drm: nova: depend on CONFIG_64BIT (Anusha Srivatsa) [RHEL-142315] - drm/displayid: pass iter to drm_find_displayid_extension() (Anusha Srivatsa) [RHEL-142315] - drm/amd/display: Fix scratch registers offsets for DCN351 (Anusha Srivatsa) [RHEL-142315] - drm/amd/display: Fix scratch registers offsets for DCN35 (Anusha Srivatsa) [RHEL-142315] - drm/amd/display: Use GFP_ATOMIC in dc_create_plane_state() (Anusha Srivatsa) [RHEL-142315] - Revert "drm/amd/display: Fix pbn to kbps Conversion" (Anusha Srivatsa) [RHEL-142315] - drm/xe/oa: Always set OAG_OAGLBCTXCTRL_COUNTER_RESUME (Anusha Srivatsa) [RHEL-142315] - drm/xe/oa: Limit num_syncs to prevent oversized allocations (Anusha Srivatsa) [RHEL-142315] - drm/xe: Limit num_syncs to prevent oversized allocations (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu: fix a job->pasid access race in gpu recovery (Anusha Srivatsa) [RHEL-142315] - drm/panel: sony-td4353-jdi: Enable prepare_prev_first (Anusha Srivatsa) [RHEL-142315] - drm/xe: Restore engine registers before restarting schedulers after GT reset (Anusha Srivatsa) [RHEL-142315] - drm/xe: Increase TDF timeout (Anusha Srivatsa) [RHEL-142315] - drm/me/gsc: mei interrupt top half should be in irq disabled context (Anusha Srivatsa) [RHEL-142315] - drm/xe: fix drm_gpusvm_init() arguments (Anusha Srivatsa) [RHEL-142315] - drm/xe: Apply Wa_14020316580 in xe_gt_idle_enable_pg() (Anusha Srivatsa) [RHEL-142315] - drm/xe: Fix freq kobject leak on sysfs_create_files failure (Anusha Srivatsa) [RHEL-142315] - drm/tests: Handle EDEADLK in set_up_atomic_state() (Anusha Srivatsa) [RHEL-142315] - drm/tests: Handle EDEADLK in drm_test_check_valid_clones() (Anusha Srivatsa) [RHEL-142315] - drm/tests: hdmi: Handle drm_kunit_helper_enable_crtc_connector() returning EDEADLK (Anusha Srivatsa) [RHEL-142315] - drm/i915/fbdev: Hold runtime PM ref during fbdev BO creation (Anusha Srivatsa) [RHEL-142315] - drm/{i915, xe}/fbdev: deduplicate struct drm_mode_fb_cmd2 init (Anusha Srivatsa) [RHEL-142315] - drm/{i915, xe}/fbdev: pass struct drm_device to intel_fbdev_fb_alloc() (Anusha Srivatsa) [RHEL-142315] - drm/i915/fbdev: make intel_framebuffer_create() error return handling explicit (Anusha Srivatsa) [RHEL-142315] - drm/xe/fbdev: use the same 64-byte stride alignment as i915 (Anusha Srivatsa) [RHEL-142315] - drm/amdkfd: Use huge page size to check split svm range alignment (Anusha Srivatsa) [RHEL-142315] - drm/nouveau: fix circular dep oops from vendored i2c encoder (Anusha Srivatsa) [RHEL-142315] - drm/nouveau: refactor deprecated strcpy (Anusha Srivatsa) [RHEL-142315] - drm/plane: Fix IS_ERR() vs NULL check in drm_plane_create_hotspot_properties() (Anusha Srivatsa) [RHEL-142315] - drm/panel: novatek-nt35560: avoid on-stack device structure (Anusha Srivatsa) [RHEL-142315] - drm/panthor: Prevent potential UAF in group creation (Anusha Srivatsa) [RHEL-142315] - drm/amdkfd: assign AID to uuid in topology for SPX mode (Anusha Srivatsa) [RHEL-142315] - drm/amd/display: Fix logical vs bitwise bug in get_embedded_panel_info_v2_1() (Anusha Srivatsa) [RHEL-142315] - drm/panthor: Avoid adding of kernel BOs to extobj list (Anusha Srivatsa) [RHEL-142315] - drm/nouveau: restrict the flush page to a 32-bit address (Anusha Srivatsa) [RHEL-142315] - drm/tidss: Move OLDI mode validation to OLDI bridge mode_valid hook (Anusha Srivatsa) [RHEL-142315] - drm/tidss: Remove max_pclk_khz and min_pclk_khz from tidss display features (Anusha Srivatsa) [RHEL-142315] - drm/panthor: Fix potential memleak of vma structure (Anusha Srivatsa) [RHEL-142315] - drm/panthor: Fix UAF on kernel BO VA nodes (Anusha Srivatsa) [RHEL-142315] - drm/panthor: Fix race with suspend during unplug (Anusha Srivatsa) [RHEL-142315] - drm/panthor: Fix UAF race between device unplug and FW event processing (Anusha Srivatsa) [RHEL-142315] - drm/panthor: Fix group_free_queue() for partially initialized queues (Anusha Srivatsa) [RHEL-142315] - drm/panthor: Handle errors returned by drm_sched_entity_init() (Anusha Srivatsa) [RHEL-142315] - drm/imagination: Fix reference to devm_platform_get_and_ioremap_resource() (Anusha Srivatsa) [RHEL-142315] - accel/ivpu: Fix race condition when unbinding BOs (Anusha Srivatsa) [RHEL-142315] - drm: nova: select NOVA_CORE (Anusha Srivatsa) [RHEL-142315] - accel/ivpu: Remove skip of dma unmap for imported buffers (Anusha Srivatsa) [RHEL-142315] - drm/rcar-du: dsi: Fix missing parameter in RXSETR_...EN macros (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu/userq: fix SDMA and compute validation (Anusha Srivatsa) [RHEL-142315] - drm/amdgpu: add userq object va track helpers (Anusha Srivatsa) [RHEL-142315] - accel/ivpu: Fix race condition when mapping dmabuf (Anusha Srivatsa) [RHEL-142315] - drm: atmel-hlcdc: fix atmel_xlcdc_plane_setup_scaler() (Anusha Srivatsa) [RHEL-142315] - drm/vgem-fence: Fix potential deadlock on release (Anusha Srivatsa) [RHEL-142315] - accel/ivpu: Fix DCT active percent format (Anusha Srivatsa) [RHEL-142315] - accel/ivpu: Fix page fault in ivpu_bo_unbind_all_bos_from_context() (Anusha Srivatsa) [RHEL-142315] - accel/ivpu: Rework bind/unbind of imported buffers (Anusha Srivatsa) [RHEL-142315] - drm/panel: visionox-rm69299: Don't clear all mode flags (Anusha Srivatsa) [RHEL-142315] - drm/panel: visionox-rm69299: Fix clock frequency for SHIFT6mq (Anusha Srivatsa) [RHEL-142315] - accel/ivpu: Ensure rpm_runtime_put in case of engine reset/resume fail (Anusha Srivatsa) [RHEL-142315] - lib/buildid: use __kernel_read() for sleepable context (Waiman Long) [RHEL-138056] - lib/freader: support reading more than 2 folios (Waiman Long) [RHEL-138056] - lib: move freader into buildid.h (Waiman Long) [RHEL-138056] - sfc: fix potential memory leak in efx_mae_process_mport() (Michal Schmidt) [RHEL-96527 RHEL-99226] - sfc: replace min/max nesting with clamp() (Michal Schmidt) [RHEL-96527 RHEL-99226] - PCI/ERR: Remove remnants of .link_reset() callback (Michal Schmidt) [RHEL-96527 RHEL-99226] - sfc: unfix not-a-typo in comment (Michal Schmidt) [RHEL-96527 RHEL-99226] - net: Fix typos [sfc] (Michal Schmidt) [RHEL-96527 RHEL-99226] - sfc: falcon: refactor and document ef4_ethtool_get_rxfh_fields (Michal Schmidt) [RHEL-96527 RHEL-99226] - sfc: siena: eliminate xdp_rxq_info_valid using XDP base API (Michal Schmidt) [RHEL-96527 RHEL-99226] - sfc: eliminate xdp_rxq_info_valid using XDP base API (Michal Schmidt) [RHEL-96527 RHEL-99226] - squashfs: fix memory leak in squashfs_fill_super (Abhi Das) [RHEL-138021] {CVE-2025-38415} - Squashfs: check return result of sb_min_blocksize (CKI Backport Bot) [RHEL-138021] {CVE-2025-38415} - erofs: avoid using multiple devices with different type (CKI Backport Bot) [RHEL-137980] {CVE-2025-38172} - perf/x86/intel/cstate: Add Clearwater Forest support (Michael Petlan) [RHEL-45066] - cpuidle: governors: menu: Select polling state in some more cases (Mark Langsdorf) [RHEL-120323] - cpuidle: governors: menu: Rearrange main loop in menu_select() (Mark Langsdorf) [RHEL-120323] - cpuidle: governors: menu: Avoid selecting states with too much latency (Mark Langsdorf) [RHEL-120323] - cpuidle: governors: menu: Avoid using invalid recent intervals data (Mark Langsdorf) [RHEL-120323] - cpuidle: psci: Fix cpuhotplug routine with PREEMPT_RT=y (Mark Langsdorf) [RHEL-120323] - cpuidle: dt: fix opencoded for_each_cpu() in idle_state_valid() (Mark Langsdorf) [RHEL-120323] - cpuidle: psci: Drop redundant sync_state support (Mark Langsdorf) [RHEL-120323] - cpuidle: psci: Opt-out from genpd's common ->sync_state() support (Mark Langsdorf) [RHEL-120323] - cpuidle: psci: Fix uninitialized variable in dt_idle_state_present() (Mark Langsdorf) [RHEL-120323] - cpuidle: psci: Avoid initializing faux device if no DT idle states are present (Mark Langsdorf) [RHEL-120323] - cpuidle: psci: Correct the domain-idlestate statistics in debugfs (Mark Langsdorf) [RHEL-120323] - cpuidle: psci: Move the per CPU variable domain_state to a struct (Mark Langsdorf) [RHEL-120323] - pmdomain: core: Add genpd helper to correct the usage/rejected counters (Mark Langsdorf) [RHEL-120323] - cpuidle: psci: Transition to the faux device interface (Mark Langsdorf) [RHEL-120323] - cpuidle: menu: Optimize bucket assignment when next_timer_ns equals KTIME_MAX (Mark Langsdorf) [RHEL-120323] - cpuidle: teo: Fix typos in two comments (Mark Langsdorf) [RHEL-120323] - s390/cio: Update purge function to unregister the unused subchannels (Mete Durlu) [RHEL-145335] - s390/ipl: Clear SBP flag when bootprog is set (Mete Durlu) [RHEL-145336] - redhat/configs: Enable CONFIG_PTP_S390 (Mete Durlu) [RHEL-141647] - s390/time: Add PtP driver (Mete Durlu) [RHEL-141647] - s390/time: Add clocksource id to TOD clock (Mete Durlu) [RHEL-141647] - vhost: enable VHOST_FORK_OWNER_KTHREAD (Cindy Lu) [RHEL-58639] - config : enable VHOST_ENABLE_FORK_OWNER_CONTROL (Cindy Lu) [RHEL-58639] - vhost: Fix ioctl # for VHOST_[GS]ET_FORK_FROM_OWNER (Cindy Lu) [RHEL-58639] - vhost: Fix kthread worker cgroup failure handling (Cindy Lu) [RHEL-58639] - vhost: Reintroduce kthread API and add mode selection (Cindy Lu) [RHEL-58639] - selftests/bpf: Clobber a lot of registers in tailcall_bpf2bpf_hierarchy tests (Gregory Bell) [RHEL-127629] - s390/bpf: Write back tail call counter for BPF_TRAMP_F_CALL_ORIG (Gregory Bell) [RHEL-127629] - s390/bpf: Write back tail call counter for BPF_PSEUDO_CALL (Gregory Bell) [RHEL-127629] - s390/bpf: Do not write tail call counter into helper and kfunc frames (Gregory Bell) [RHEL-127629] - sched: Fix tracepoint called from set_tsk_need_resched() more (Phil Auld) [RHEL-145178] - soc/tegra: pmc: Don't fail if "aotag" is not present (CKI Backport Bot) [RHEL-140002] - xfrm: Fix inner mode lookup in tunnel mode GSO segmentation (Sabrina Dubroca) [RHEL-108332] - xfrm: Determine inner GSO type from packet inner protocol (Sabrina Dubroca) [RHEL-108332] - xfrm: Check inner packet family directly from skb_dst (Sabrina Dubroca) [RHEL-108332] - xfrm: fix offloading of cross-family tunnels (Sabrina Dubroca) [RHEL-108332] - udp: also consider secpath when evaluating ipsec use for checksumming (Sabrina Dubroca) [RHEL-108332] - xfrm: bring back device check in validate_xmit_xfrm (Sabrina Dubroca) [RHEL-108332] - xfrm: restore GSO for SW crypto (Sabrina Dubroca) [RHEL-108332] - btrfs : Enable btrfs module and backport btrfs fixes from upstream v6.12 (Ravi Singh) [RHEL-140878] - btrfs: don't rewrite ret from inode_permission (Ravi Singh) [RHEL-140878] - btrfs: don't log conflicting inode if it's a dir moved in the current transaction (Ravi Singh) [RHEL-140878] - btrfs: scrub: always update btrfs_scrub_progress::last_physical (Ravi Singh) [RHEL-140878] - btrfs: fix memory leak of fs_devices in degraded seed device path (Ravi Singh) [RHEL-140878] - btrfs: fix a potential path leak in print_data_reloc_error() (Ravi Singh) [RHEL-140878] - btrfs: do not skip logging new dentries when logging a new name (Ravi Singh) [RHEL-140878] - btrfs: fix leaf leak in an error path in btrfs_del_items() (Ravi Singh) [RHEL-140878] - btrfs: release root after error in data_reloc_print_warning_inode() (Ravi Singh) [RHEL-140878] - btrfs: do not update last_log_commit when logging inode due to a new name (Ravi Singh) [RHEL-140878] - btrfs: scrub: put bio after errors in scrub_raid56_parity_stripe() (Ravi Singh) [RHEL-140878] - btrfs: zoned: fix conventional zone capacity calculation (Ravi Singh) [RHEL-140878] - btrfs: ensure no dirty metadata is written back for an fs with errors (Ravi Singh) [RHEL-140878] - btrfs: mark dirty extent range for out of bound prealloc extents (Ravi Singh) [RHEL-140878] - btrfs: fix memory leak of qgroup_list in btrfs_add_qgroup_relation (Ravi Singh) [RHEL-140878] - btrfs: tree-checker: fix bounds check in check_inode_extref() (Ravi Singh) [RHEL-140878] - btrfs: use smp_mb__after_atomic() when forcing COW in create_pending_snapshot() (Ravi Singh) [RHEL-140878] - btrfs: tree-checker: add inode extref checks (Ravi Singh) [RHEL-140878] - btrfs: abort transaction if we fail to update inode in log replay dir fixup (Ravi Singh) [RHEL-140878] - btrfs: use level argument in log tree walk callback replay_one_buffer() (Ravi Singh) [RHEL-140878] - btrfs: always drop log root tree reference in btrfs_replay_log() (Ravi Singh) [RHEL-140878] - btrfs: scrub: replace max_t()/min_t() with clamp() in scrub_throttle_dev_io() (Ravi Singh) [RHEL-140878] - btrfs: zoned: refine extent allocator hint selection (Ravi Singh) [RHEL-140878] - btrfs: zoned: return error from btrfs_zone_finish_endio() (Ravi Singh) [RHEL-140878] - btrfs: abort transaction in the process_one_buffer() log tree walk callback (Ravi Singh) [RHEL-140878] - btrfs: abort transaction on specific error places when walking log tree (Ravi Singh) [RHEL-140878] - btrfs: directly free partially initialized fs_info in btrfs_check_leaked_roots() (Ravi Singh) [RHEL-140878] - btrfs: do not assert we found block group item when creating free space tree (Ravi Singh) [RHEL-140878] - btrfs: fix memory leaks when rejecting a non SINGLE data profile without an RST (Ravi Singh) [RHEL-140878] - btrfs: fix incorrect readahead expansion length (Ravi Singh) [RHEL-140878] - btrfs: fix memory leak on duplicated memory in the qgroup assign ioctl (Ravi Singh) [RHEL-140878] - btrfs: fix clearing of BTRFS_FS_RELOC_RUNNING if relocation already running (Ravi Singh) [RHEL-140878] - btrfs: fix the incorrect max_bytes value for find_lock_delalloc_range() (Ravi Singh) [RHEL-140878] - btrfs: avoid potential out-of-bounds in btrfs_encode_fh() (Ravi Singh) [RHEL-140878] - btrfs: return any hit error from extent_writepage_io() (Ravi Singh) [RHEL-140878] - btrfs: ref-verify: handle damaged extent root tree (Ravi Singh) [RHEL-140878] - btrfs: don't allow adding block device of less than 1 MB (Ravi Singh) [RHEL-140878] - btrfs: tree-checker: fix the incorrect inode ref size check (Ravi Singh) [RHEL-140878] - btrfs: fix invalid extref key setup when replaying dentry (Ravi Singh) [RHEL-140878] - btrfs: fix corruption reading compressed range when block size is smaller than page size (Ravi Singh) [RHEL-140878] - btrfs: use readahead_expand() on compressed extents (Ravi Singh) [RHEL-140878] - btrfs: fix subvolume deletion lockup caused by inodes xarray race (Ravi Singh) [RHEL-140878] - btrfs: fix squota compressed stats leak (Ravi Singh) [RHEL-140878] - btrfs: zoned: skip ZONE FINISH of conventional zones (Ravi Singh) [RHEL-140878] - btrfs: avoid load/store tearing races when checking if an inode was logged (Ravi Singh) [RHEL-140878] - btrfs: fix race between setting last_dir_index_offset and inode logging (Ravi Singh) [RHEL-140878] - btrfs: fix race between logging inode and checking if it was logged before (Ravi Singh) [RHEL-140878] - btrfs: subpage: keep TOWRITE tag until folio is cleaned (Ravi Singh) [RHEL-140878] - btrfs: send: make fs_path_len() inline and constify its argument (Ravi Singh) [RHEL-140878] - btrfs: send: use fallocate for hole punching with send stream v2 (Ravi Singh) [RHEL-140878] - btrfs: send: avoid path allocation for the current inode when issuing commands (Ravi Singh) [RHEL-140878] - btrfs: send: keep the current inode's path cached (Ravi Singh) [RHEL-140878] - btrfs: send: add and use helper to rename current inode when processing refs (Ravi Singh) [RHEL-140878] - btrfs: send: only use boolean variables at process_recorded_refs() (Ravi Singh) [RHEL-140878] - btrfs: send: factor out common logic when sending xattrs (Ravi Singh) [RHEL-140878] - btrfs: zoned: requeue to unused block group list if zone finish failed (Ravi Singh) [RHEL-140878] - btrfs: codify pattern for adding block_group to bg_list (Ravi Singh) [RHEL-140878] - btrfs: explicitly ref count block_group on new_bgs list (Ravi Singh) [RHEL-140878] - btrfs: abort transaction on unexpected eb generation at btrfs_copy_root() (Ravi Singh) [RHEL-140878] - btrfs: always abort transaction on failure to add block group to free space tree (Ravi Singh) [RHEL-140878] - btrfs: move transaction aborts to the error site in add_block_group_free_space() (Ravi Singh) [RHEL-140878] - btrfs: qgroup: fix race between quota disable and quota rescan ioctl (Ravi Singh) [RHEL-140878] - btrfs: qgroup: drop unused parameter fs_info from __del_qgroup_rb() (Ravi Singh) [RHEL-140878] - btrfs: fix printing of mount info messages for NODATACOW/NODATASUM (Ravi Singh) [RHEL-140878] - btrfs: restore mount option info messages during mount (Ravi Singh) [RHEL-140878] - btrfs: fix incorrect log message for nobarrier mount option (Ravi Singh) [RHEL-140878] - btrfs: zoned: fix write time activation failure for metadata block group (Ravi Singh) [RHEL-140878] - btrfs: do not allow relocation of partially dropped subvolumes (Ravi Singh) [RHEL-140878] - btrfs: fix iteration bug in __qgroup_excl_accounting() (Ravi Singh) [RHEL-140878] - btrfs: zoned: do not select metadata BG as finish target (Ravi Singh) [RHEL-140878] - btrfs: error on missing block group when unaccounting log tree extent buffers (Ravi Singh) [RHEL-140878] - btrfs: fix log tree replay failure due to file with 0 links and extents (Ravi Singh) [RHEL-140878] - btrfs: clear dirty status from extent buffer on error at insert_new_root() (Ravi Singh) [RHEL-140878] - btrfs: don't skip remaining extrefs if dir not found during log replay (Ravi Singh) [RHEL-140878] - btrfs: qgroup: fix qgroup create ioctl returning success after quotas disabled (Ravi Singh) [RHEL-140878] - btrfs: populate otime when logging an inode item (Ravi Singh) [RHEL-140878] - btrfs: fix ssd_spread overallocation (Ravi Singh) [RHEL-140878] - btrfs: don't ignore inode missing when replaying log tree (Ravi Singh) [RHEL-140878] - btrfs: qgroup: set quota enabled bit if quota disable fails flushing reservations (Ravi Singh) [RHEL-140878] - btrfs: zoned: do not remove unwritten non-data block group (Ravi Singh) [RHEL-140878] - btrfs: abort transaction during log replay if walk_log_tree() failed (Ravi Singh) [RHEL-140878] - btrfs: zoned: use filesystem size not disk size for reclaim decision (Ravi Singh) [RHEL-140878] - btrfs: fix block group refcount race in btrfs_create_pending_block_groups() (Ravi Singh) [RHEL-140878] - btrfs: fix assertion when building free space tree (Ravi Singh) [RHEL-140878] - btrfs: fix wrong start offset for delalloc space release during mmap write (Ravi Singh) [RHEL-140878] - btrfs: prepare btrfs_page_mkwrite() for large folios (Ravi Singh) [RHEL-140878] - btrfs: use btrfs_record_snapshot_destroy() during rmdir (Ravi Singh) [RHEL-140878] - btrfs: propagate last_unlink_trans earlier when doing a rmdir (Ravi Singh) [RHEL-140878] - btrfs: record new subvolume in parent dir earlier to avoid dir logging races (Ravi Singh) [RHEL-140878] - btrfs: fix inode lookup error handling during log replay (Ravi Singh) [RHEL-140878] - btrfs: fix invalid inode pointer dereferences during log replay (Ravi Singh) [RHEL-140878] - btrfs: return a btrfs_inode from read_one_inode() (Ravi Singh) [RHEL-140878] - btrfs: return a btrfs_inode from btrfs_iget_logging() (Ravi Singh) [RHEL-140878] - btrfs: fix iteration of extrefs during log replay (Ravi Singh) [RHEL-140878] - btrfs: fix missing error handling when searching for inode refs during log replay (Ravi Singh) [RHEL-140878] - btrfs: fix use-after-free on inode when scanning root during em shrinking (Ravi Singh) [RHEL-140878] - btrfs: zoned: fix extent range end unlock in cow_file_range() (Ravi Singh) [RHEL-140878] - btrfs: do regular iput instead of delayed iput during extent map shrinking (Ravi Singh) [RHEL-140878] - btrfs: make the extent map shrinker run asynchronously as a work queue job (Ravi Singh) [RHEL-140878] - btrfs: skip inodes without loaded extent maps when shrinking extent maps (Ravi Singh) [RHEL-140878] - btrfs: update superblock's device bytes_used when dropping chunk (Ravi Singh) [RHEL-140878] - btrfs: fix a race between renames and directory logging (Ravi Singh) [RHEL-140878] - btrfs: fix qgroup reservation leak on failure to allocate ordered extent (Ravi Singh) [RHEL-140878] - btrfs: use unsigned types for constants defined as bit shifts (Ravi Singh) [RHEL-140878] - btrfs: factor out nocow ordered extent and extent map generation into a helper (Ravi Singh) [RHEL-140878] - btrfs: handle csum tree error with rescue=ibadroots correctly (Ravi Singh) [RHEL-140878] - btrfs: exit after state split error at set_extent_bit() (Ravi Singh) [RHEL-140878] - btrfs: exit after state insertion failure at btrfs_convert_extent_bit() (Ravi Singh) [RHEL-140878] - btrfs: fix invalid data space release when truncating block in NOCOW mode (Ravi Singh) [RHEL-140878] - btrfs: scrub: fix a wrong error type when metadata bytenr mismatches (Ravi Singh) [RHEL-140878] - btrfs: scrub: update device stats when an error is detected (Ravi Singh) [RHEL-140878] - btrfs: avoid NULL pointer dereference if no valid csum tree (Ravi Singh) [RHEL-140878] - btrfs: handle empty eb->folios in num_extent_folios() (Ravi Singh) [RHEL-140878] - btrfs: compression: adjust cb->compressed_folios allocation type (Ravi Singh) [RHEL-140878] - btrfs: send: return -ENAMETOOLONG when attempting a path that is too long (Ravi Singh) [RHEL-140878] - btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work() (Ravi Singh) [RHEL-140878] - btrfs: fix non-empty delayed iputs list on unmount due to async workers (Ravi Singh) [RHEL-140878] - btrfs: run btrfs_error_commit_super() early (Ravi Singh) [RHEL-140878] - btrfs: avoid linker error in btrfs_find_create_tree_block() (Ravi Singh) [RHEL-140878] - btrfs: make btrfs_discard_workfn() block_group ref explicit (Ravi Singh) [RHEL-140878] - btrfs: add back warning for mount option commit values exceeding 300 (Ravi Singh) [RHEL-140878] - btrfs: fix folio leak in submit_one_async_extent() (Ravi Singh) [RHEL-140878] - btrfs: fix discard worker infinite loop after disabling discard (Ravi Singh) [RHEL-140878] - Revert "btrfs: canonicalize the device path before adding it" (Ravi Singh) [RHEL-140878] - btrfs: fix COW handling in run_delalloc_nocow() (Ravi Singh) [RHEL-140878] - btrfs: adjust subpage bit start based on sectorsize (Ravi Singh) [RHEL-140878] - btrfs: zoned: return EIO on RAID1 block group write pointer mismatch (Ravi Singh) [RHEL-140878] - btrfs: avoid page_lockend underflow in btrfs_punch_hole_lock_range() (Ravi Singh) [RHEL-140878] - btrfs: correctly escape subvol in btrfs_show_options() (Ravi Singh) [RHEL-140878] - btrfs: zoned: fix zone finishing with missing devices (Ravi Singh) [RHEL-140878] - btrfs: zoned: fix zone activation with missing devices (Ravi Singh) [RHEL-140878] - btrfs: tests: fix chunk map leak after failure to add it to the tree (Ravi Singh) [RHEL-140878] - btrfs: fix non-empty delayed iputs list on unmount due to compressed write workers (Ravi Singh) [RHEL-140878] - btrfs: harden block_group::bg_list against list_del() races (Ravi Singh) [RHEL-140878] - btrfs: fix two misuses of folio_shift() (Ravi Singh) [RHEL-140878] - btrfs: avoid starting new transaction when cleaning qgroup during subvolume drop (Ravi Singh) [RHEL-140878] - btrfs: fix a leaked chunk map issue in read_one_chunk() (Ravi Singh) [RHEL-140878] - btrfs: fix data overwriting bug during buffered write when block size < page size (Ravi Singh) [RHEL-140878] - btrfs: fix double accounting race when extent_writepage_io() failed (Ravi Singh) [RHEL-140878] - btrfs: fix double accounting race when btrfs_run_delalloc_range() failed (Ravi Singh) [RHEL-140878] - btrfs: use btrfs_inode in extent_writepage() (Ravi Singh) [RHEL-140878] - btrfs: rename btrfs_folio_(set|start|end)_writer_lock() (Ravi Singh) [RHEL-140878] - btrfs: unify to use writer locks for subpage locking (Ravi Singh) [RHEL-140878] - btrfs: remove unused btrfs_folio_start_writer_lock() (Ravi Singh) [RHEL-140878] - btrfs: mark all dirty sectors as locked inside writepage_delalloc() (Ravi Singh) [RHEL-140878] - btrfs: move the delalloc range bitmap search into extent_io.c (Ravi Singh) [RHEL-140878] - btrfs: do not assume the full page range is not dirty in extent_writepage_io() (Ravi Singh) [RHEL-140878] - btrfs: fix stale page cache after race between readahead and direct IO write (Ravi Singh) [RHEL-140878] - btrfs: rename __get_extent_map() and pass btrfs_inode (Ravi Singh) [RHEL-140878] - btrfs: fix hole expansion when writing at an offset beyond EOF (Ravi Singh) [RHEL-140878] - Revert "btrfs: avoid monopolizing a core when activating a swap file" (Ravi Singh) [RHEL-140878] - btrfs: convert BUG_ON in btrfs_reloc_cow_block() to proper error handling (Ravi Singh) [RHEL-140878] - btrfs: fix data race when accessing the inode's disk_i_size at btrfs_drop_extents() (Ravi Singh) [RHEL-140878] - btrfs: fix use-after-free when attempting to join an aborted transaction (Ravi Singh) [RHEL-140878] - btrfs: do not output error message if a qgroup has been already cleaned up (Ravi Singh) [RHEL-140878] - btrfs: fix assertion failure when splitting ordered extent after transaction abort (Ravi Singh) [RHEL-140878] - btrfs: do proper folio cleanup when run_delalloc_nocow() failed (Ravi Singh) [RHEL-140878] - btrfs: output the reason for open_ctree() failure (Ravi Singh) [RHEL-140878] - btrfs: subpage: fix the bitmap dump of the locked flags (Ravi Singh) [RHEL-140878] - btrfs: improve the warning and error message for btrfs_remove_qgroup() (Ravi Singh) [RHEL-140878] - btrfs: add the missing error handling inside get_canonical_dev_path (Ravi Singh) [RHEL-140878] - btrfs: zlib: fix avail_in bytes for s390 zlib HW compression path (Ravi Singh) [RHEL-140878] - btrfs: avoid NULL pointer dereference if no valid extent tree (Ravi Singh) [RHEL-140878] - btrfs: flush delalloc workers queue before stopping cleaner kthread during unmount (Ravi Singh) [RHEL-140878] - btrfs: allow swap activation to be interruptible (Ravi Singh) [RHEL-140878] - btrfs: use bio_is_zone_append() in the completion handler (Ravi Singh) [RHEL-140878] - btrfs: check folio mapping after unlock in relocate_one_folio() (Ravi Singh) [RHEL-140878] - btrfs: check folio mapping after unlock in put_file_data() (Ravi Singh) [RHEL-140878] - btrfs: fix use-after-free when COWing tree bock and tracing is enabled (Ravi Singh) [RHEL-140878] - btrfs: sysfs: fix direct super block member reads (Ravi Singh) [RHEL-140878] - btrfs: fix transaction atomicity bug when enabling simple quotas (Ravi Singh) [RHEL-140878] - btrfs: fix swap file activation failure due to extents that used to be shared (Ravi Singh) [RHEL-140878] - btrfs: avoid monopolizing a core when activating a swap file (Ravi Singh) [RHEL-140878] - btrfs: fix race with memory mapped writes when activating swap file (Ravi Singh) [RHEL-140878] - btrfs: tree-checker: reject inline extent items with 0 ref count (Ravi Singh) [RHEL-140878] - btrfs: fix improper generation check in snapshot delete (Ravi Singh) [RHEL-140878] - btrfs: split bios to the fs sector size boundary (Ravi Singh) [RHEL-140878] - btrfs: fix missing snapshot drew unlock when root is dead during swap activation (Ravi Singh) [RHEL-140878] - btrfs: fix mount failure due to remount races (Ravi Singh) [RHEL-140878] - btrfs: drop unused parameter data from btrfs_fill_super() (Ravi Singh) [RHEL-140878] - btrfs: drop unused parameter options from open_ctree() (Ravi Singh) [RHEL-140878] - btrfs: do not clear read-only when adding sprout device (Ravi Singh) [RHEL-140878] - btrfs: canonicalize the device path before adding it (Ravi Singh) [RHEL-140878] - btrfs: avoid unnecessary device path update for the same device (Ravi Singh) [RHEL-140878] - btrfs: don't take dev_replace rwsem on task already holding it (Ravi Singh) [RHEL-140878] - btrfs: ref-verify: fix use-after-free after invalid ref action (Ravi Singh) [RHEL-140878] - btrfs: add a sanity check for btrfs root in btrfs_search_slot() (Ravi Singh) [RHEL-140878] - btrfs: don't loop for nowait writes when checking for cross references (Ravi Singh) [RHEL-140878] - btrfs: fix use-after-free in btrfs_encoded_read_endio() (Ravi Singh) [RHEL-140878] - btrfs: move priv off stack in btrfs_encoded_read_regular_fill_pages() (Ravi Singh) [RHEL-140878] - btrfs: change btrfs_encoded_read() so that reading of extent is done by caller (Ravi Singh) [RHEL-140878] - btrfs: drop unused parameter file_offset from btrfs_encoded_read_regular_fill_pages() (Ravi Singh) [RHEL-140878] - mptcp: schedule rtx timer only after pushing data (Davide Caratti) [RHEL-133461] - mptcp: fix premature close in case of fallback (Davide Caratti) [RHEL-133461] - mptcp: fix ack generation for fallback msk (Davide Caratti) [RHEL-133461] - mptcp: drop bogus optimization in __mptcp_check_push() (Davide Caratti) [RHEL-133461] - mptcp: ensure context reset on disconnect() (Davide Caratti) [RHEL-133461] {CVE-2025-71144} - mptcp: fallback earlier on simult connection (Davide Caratti) [RHEL-133461] {CVE-2025-71088} - mptcp: avoid deadlock on fallback while reinjecting (Davide Caratti) [RHEL-133461] {CVE-2025-71126} - mptcp: Initialise rcv_mss before calling tcp_send_active_reset() in mptcp_do_fastclose(). (Davide Caratti) [RHEL-133461] {CVE-2025-68291} - mptcp: fix duplicate reset on fastclose (Davide Caratti) [RHEL-133461] - mptcp: decouple mptcp fastclose from tcp close (Davide Caratti) [RHEL-133461] - mptcp: clear scheduled subflows on retransmit (Davide Caratti) [RHEL-133461] - mptcp: do not fallback when OoO is present (Davide Caratti) [RHEL-133461] - mptcp: avoid unneeded subflow-level drops (Davide Caratti) [RHEL-133461] - mptcp: fix a race in mptcp_pm_del_add_timer() (Davide Caratti) [RHEL-133461 RHEL-139336] {CVE-2025-40257} - mptcp: Fix proto fallback detection with BPF (Davide Caratti) [RHEL-133461] {CVE-2025-68227} - mptcp: Disallow MPTCP subflows from sockmap (Davide Caratti) [RHEL-133461] - mptcp: restore window probe (Davide Caratti) [RHEL-133461] - mptcp: fix MSG_PEEK stream corruption (Davide Caratti) [RHEL-133461] - mptcp: pm: in-kernel: C-flag: handle late ADD_ADDR (Davide Caratti) [RHEL-133461] - mptcp: reset blackhole on success with non-loopback ifaces (Davide Caratti) [RHEL-133461] - mptcp: Use __sk_dst_get() and dst_dev_rcu() in mptcp_active_enable(). (Davide Caratti) [RHEL-129046 RHEL-133461] {CVE-2025-40133} - vsock/vmci: Clear the vmci transport packet properly when initializing it (CKI Backport Bot) [RHEL-137704] {CVE-2025-38403} - redhat/configs: Add CONFIG_CRYPTO_DEV_QAT_6XXX (Vladislav Dronov) [RHEL-94928] - crypto: qat - fix warning on adf_pfvf_pf_proto.c (Vladislav Dronov) [RHEL-94928] - crypto: qat - add bank state save and restore for qat_420xx (Vladislav Dronov) [RHEL-94928] - crypto: qat - fix parameter order used in ICP_QAT_FW_COMN_FLAGS_BUILD (Vladislav Dronov) [RHEL-94928] - crypto: qat - fix duplicate restarting msg during AER error (Vladislav Dronov) [RHEL-94928] - crypto: qat - add WQ_PERCPU to alloc_workqueue users (Vladislav Dronov) [RHEL-94928] - crypto: qat - use simple_strtoull to improve qat_uclo_parse_num (Vladislav Dronov) [RHEL-94928] - crypto: qat - Return pointer directly in adf_ctl_alloc_resources (Vladislav Dronov) [RHEL-94928] - crypto: qat - Replace kzalloc() + copy_from_user() with memdup_user() (Vladislav Dronov) [RHEL-94928] - crypto: qat - use kcalloc() in qat_uclo_map_objs_from_mof() (Vladislav Dronov) [RHEL-94928] - crypto: qat - add command queue telemetry counters for GEN6 (Vladislav Dronov) [RHEL-94928] - crypto: qat - add ring buffer idle telemetry counter for GEN6 (Vladislav Dronov) [RHEL-94928] - crypto: qat - make adf_dev_autoreset() static (Vladislav Dronov) [RHEL-94928] - crypto: qat - refactor ring-related debug functions (Vladislav Dronov) [RHEL-94928] - crypto: qat - fix seq_file position update in adf_ring_next() (Vladislav Dronov) [RHEL-94928] - crypto: qat - fix DMA direction for compression on GEN2 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - flush misc workqueue during device shutdown (Vladislav Dronov) [RHEL-103562 RHEL-94928] {CVE-2025-39721} - crypto: qat - enable rate limiting feature for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - add compression slice count for rate limiting (Vladislav Dronov) [RHEL-94928] - crypto: qat - add get_svc_slice_cnt() in device data structure (Vladislav Dronov) [RHEL-94928] - crypto: qat - add adf_rl_get_num_svc_aes() in rate limiting (Vladislav Dronov) [RHEL-94928] - crypto: qat - relocate service related functions (Vladislav Dronov) [RHEL-94928] - crypto: qat - consolidate service enums (Vladislav Dronov) [RHEL-94928] - crypto: qat - add decompression service for rate limiting (Vladislav Dronov) [RHEL-94928] - crypto: qat - validate service in rate limiting sysfs api (Vladislav Dronov) [RHEL-94928] - Documentation: qat: update debugfs-driver-qat_telemetry for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - enable telemetry for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - add decompression service to telemetry (Vladislav Dronov) [RHEL-94928] - crypto: qat - enable power management debugfs for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - relocate power management debugfs helper APIs (Vladislav Dronov) [RHEL-94928] - crypto: qat - fix virtual channel configuration for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - add live migration enablers for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - relocate and rename bank state structure definition (Vladislav Dronov) [RHEL-94928] - crypto: qat - relocate bank state helper functions (Vladislav Dronov) [RHEL-94928] - crypto: qat - replace CHECK_STAT macro with static inline function (Vladislav Dronov) [RHEL-94928] - crypto: qat - use pr_fmt() in adf_gen4_hw_data.c (Vladislav Dronov) [RHEL-94928] - crypto: qat - disable ZUC-256 capability for QAT GEN5 (Vladislav Dronov) [RHEL-94928] - crypto: qat - restore ASYM service support for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - remove duplicate masking for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - lower priority for skcipher and aead algorithms (Vladislav Dronov) [RHEL-94928] - Documentation: qat: update sysfs-driver-qat for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - add support for decompression service to GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - fix state restore for banks with exceptions (Vladislav Dronov) [RHEL-94928] - crypto: qat - allow enabling VFs in the absence of IOMMU (Vladislav Dronov) [RHEL-94928] - crypto: qat - use unmanaged allocation for dc_data (Vladislav Dronov) [RHEL-94928] - crypto: qat - add missing header inclusion (Vladislav Dronov) [RHEL-94928] - crypto: qat - enable reporting of error counters for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - enable RAS support for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat/qat_6xxx - Fix NULL vs IS_ERR() check in adf_probe() (Vladislav Dronov) [RHEL-94928] - crypto: qat - add qat_6xxx driver (Vladislav Dronov) [RHEL-94928] - crypto: qat - add firmware headers for GEN6 devices (Vladislav Dronov) [RHEL-94928] - crypto: qat - update firmware api (Vladislav Dronov) [RHEL-94928] - crypto: qat - export adf_init_admin_pm() (Vladislav Dronov) [RHEL-94928] - crypto: qat - expose configuration functions (Vladislav Dronov) [RHEL-94928] - crypto: qat - export adf_get_service_mask() (Vladislav Dronov) [RHEL-94928] - crypto: qat - add GEN6 firmware loader (Vladislav Dronov) [RHEL-94928] - crypto: qat - refactor FW signing algorithm (Vladislav Dronov) [RHEL-94928] - crypto: qat - use pr_fmt() in qat uclo.c (Vladislav Dronov) [RHEL-94928] - crypto: qat - refactor compression template logic (Vladislav Dronov) [RHEL-94928] - crypto: qat - rename and relocate timer logic (Vladislav Dronov) [RHEL-94928] - crypto: qat - include qat_common in top Makefile (Vladislav Dronov) [RHEL-94928] - sprintf.h requires stdarg.h (Vladislav Dronov) [RHEL-94928] - memblock: Accept allocated memory before use in memblock_double_array() (Aristeu Rozanski) [RHEL-140476] - Bluetooth: hci_sync: enable PA Sync Lost event (David Marlin) [RHEL-143297] - Bluetooth: SMP: Fix not generating mackey and ltk when repairing (David Marlin) [RHEL-143297] - Bluetooth: btusb: mediatek: Avoid btusb_mtk_claim_iso_intf() NULL deref (David Marlin) [RHEL-143297] - Bluetooth: hci_core: lookup hci_conn on RX path on protocol side (David Marlin) [RHEL-143297] - Bluetooth: hci_core: Fix triggering cmd_timer for HCI_OP_NOP (David Marlin) [RHEL-143297] - Bluetooth: btusb: mediatek: Fix kernel crash when releasing mtk iso interface (David Marlin) [RHEL-143297] - Bluetooth: btrtl: Avoid loading the config file on security chips (David Marlin) [RHEL-143297] - Bluetooth: hci_event: Fix not handling PA Sync Lost event (David Marlin) [RHEL-143297] - Bluetooth: hci_conn: Fix not cleaning up PA_LINK connections (David Marlin) [RHEL-143297] - Bluetooth: 6lowpan: add missing l2cap_chan_lock() (David Marlin) [RHEL-143297] - Bluetooth: 6lowpan: Don't hold spin lock over sleeping functions (David Marlin) [RHEL-143297] - Bluetooth: L2CAP: export l2cap_chan_hold for modules (David Marlin) [RHEL-143297] - Bluetooth: 6lowpan: fix BDADDR_LE vs ADDR_LE_DEV address type confusion (David Marlin) [RHEL-143297] - Bluetooth: 6lowpan: reset link-local header on ipv6 recv path (David Marlin) [RHEL-143297] - Bluetooth: btusb: reorder cleanup in btusb_disconnect to avoid UAF (David Marlin) [RHEL-143297] - Bluetooth: MGMT: cancel mesh send timer when hdev removed (David Marlin) [RHEL-143297] - Bluetooth: btrtl: Fix memory leak in rtlbt_parse_firmware_v2() (David Marlin) [RHEL-143297] - Bluetooth: rfcomm: fix modem control handling (David Marlin) [RHEL-143297] - Bluetooth: hci_core: Fix tracking of periodic advertisement (David Marlin) [RHEL-143297] - Bluetooth: hci_conn: Fix connection cleanup with BIG with 2 or more BIS (David Marlin) [RHEL-143297] - Bluetooth: fix corruption in h4_recv_buf() after cleanup (David Marlin) [RHEL-143297] - Bluetooth: btintel_pcie: Fix event packet loss issue (David Marlin) [RHEL-143297] - Bluetooth: ISO: Fix another instance of dst_type handling (David Marlin) [RHEL-143297] - Bluetooth: btmtksdio: Add pmctrl handling for BT closed state during reset (David Marlin) [RHEL-143297] - Bluetooth: ISO: Fix BIS connection dst_type handling (David Marlin) [RHEL-143297] - Bluetooth: Avoid a couple dozen -Wflex-array-member-not-at-end warnings (David Marlin) [RHEL-143297] - Bluetooth: hci_sync: Fix using random address for BIG/PA advertisements (David Marlin) [RHEL-143297] - Bluetooth: ISO: don't leak skb in ISO_CONT RX (David Marlin) [RHEL-143297] - Bluetooth: ISO: free rx_skb if not consumed (David Marlin) [RHEL-143297] - Bluetooth: SCO: Fix UAF on sco_conn_free (David Marlin) [RHEL-143297] - Bluetooth: bcsp: receive data only if registered (David Marlin) [RHEL-143297] - Bluetooth: btusb: Add new VID/PID 13d3/3633 for MT7922 (David Marlin) [RHEL-143297] - Bluetooth: btusb: Add new VID/PID 13d3/3627 for MT7925 (David Marlin) [RHEL-143297] - Bluetooth: remove duplicate h4_recv_buf() in header (David Marlin) [RHEL-143297] - Bluetooth: btusb: Check for unexpected bytes when defragmenting HCI frames (David Marlin) [RHEL-143297] - Bluetooth: hci_core: Print information of hcon on hci_low_sent (David Marlin) [RHEL-143297] - Bluetooth: hci_core: Print number of packets in conn->data_q (David Marlin) [RHEL-143297] - Bluetooth: Add function and line information to bt_dbg (David Marlin) [RHEL-143297] - Bluetooth: MGMT: Fix not exposing debug UUID on MGMT_OP_READ_EXP_FEATURES_INFO (David Marlin) [RHEL-143297] - Bluetooth: hci_core: Detect if an ISO link has stalled (David Marlin) [RHEL-143297] - Bluetooth: ISO: Use sk_sndtimeo as conn_timeout (David Marlin) [RHEL-143297] - Bluetooth: HCI: Fix using LE/ACL buffers for ISO packets (David Marlin) [RHEL-143297] - Bluetooth: ISO: Don't initiate CIS connections if there are no buffers (David Marlin) [RHEL-143297] - Bluetooth: btintel_pcie: Refactor Device Coredump (David Marlin) [RHEL-143297] - Bluetooth: btintel_pcie: Use strscpy() instead of strscpy_pad() (David Marlin) [RHEL-143297] - Bluetooth: Annotate struct hci_drv_rp_read_info with __counted_by_le() (David Marlin) [RHEL-143297] - Bluetooth: btintel_pcie: Define hdev->wakeup() callback (David Marlin) [RHEL-143297] - Bluetooth: btusb: Add USB ID 2001:332a for D-Link AX9U rev. A1 (David Marlin) [RHEL-143297] - Bluetooth: btintel_pcie: Move model comment before its definition (David Marlin) [RHEL-143297] - Bluetooth: btintel_pcie: Add id of Scorpious, Panther Lake-H484 (David Marlin) [RHEL-143297] - Bluetooth: btintel_pcie: Add Bluetooth core/platform as comments (David Marlin) [RHEL-143297] - Bluetooth: btintel_pcie: Add support for _suspend() / _resume() (David Marlin) [RHEL-143297] - Bluetooth: btintel: Add support for BlazarIW core (David Marlin) [RHEL-143297] - netfilter: nf_tables: avoid softlockup warnings in nft_chain_validate (Florian Westphal) [RHEL-130086] - netfilter: nf_tables: avoid chain re-validation if possible (Florian Westphal) [RHEL-130086] - netfilter: nf_tables: remove redundant chain validation on register store (Florian Westphal) [RHEL-130086] - netfilter: nf_tables: all transaction allocations can now sleep (Florian Westphal) [RHEL-130086] - netfilter: nf_tables: allow iter callbacks to sleep (Florian Westphal) [RHEL-130086] - dm log-writes: Add missing set_freezable() for freezable kthread (Benjamin Marzinski) [RHEL-136397] - dm-raid: fix possible NULL dereference with undefined raid type (Benjamin Marzinski) [RHEL-136397] - dm-snapshot: fix 'scheduling while atomic' on real-time kernels (Benjamin Marzinski) [RHEL-136397] - dm-verity: fix unreliable memory allocation (Benjamin Marzinski) [RHEL-136397] - ipv6: Fix use-after-free in inet6_addr_del(). (Hangbin Liu) [RHEL-132209] - net: bonding: update the slave array for broadcast mode (Hangbin Liu) [RHEL-138323] - net: bonding: add broadcast_neighbor netlink option (Hangbin Liu) [RHEL-138323] - net: bonding: add broadcast_neighbor option for 802.3ad (Hangbin Liu) [RHEL-138323] - tools/testing/selftests/bpf/test_tc_tunnel.sh: Fix wait for server bind (Davide Caratti) [RHEL-130763] - net: enetc: fix frame corruption on bpf_xdp_adjust_head/tail() and XDP_PASS (Davide Caratti) [RHEL-130763] - net: enetc: refactor bulk flipping of RX buffers to separate function (Davide Caratti) [RHEL-130763] - idpf: fix LAN memory regions command on some NVMs (Davide Caratti) [RHEL-130763 RHEL-139050] - idpf: enable XSk features and ndo_xsk_wakeup (Davide Caratti) [RHEL-130763] - libeth: xdp: Disable generic kCFI pass for libeth_xdp_tx_xmit_bulk() (Davide Caratti) [RHEL-130763] - idpf: implement Rx path for AF_XDP (Davide Caratti) [RHEL-130763] - compiler_types: Introduce __nocfi_generic (Davide Caratti) [RHEL-130763] - idpf: implement XSk xmit (Davide Caratti) [RHEL-130763] - idpf: add XSk pool initialization (Davide Caratti) [RHEL-130763] - idpf: add virtchnl functions to manage selected queues (Davide Caratti) [RHEL-130763] - idpf: add XDP RSS hash hint (Davide Caratti) [RHEL-130763] - idpf: add support for .ndo_xdp_xmit() (Davide Caratti) [RHEL-130763] - idpf: add support for XDP on Rx (Davide Caratti) [RHEL-130763] - idpf: use generic functions to build xdp_buff and skb (Davide Caratti) [RHEL-130763] - idpf: implement XDP_SETUP_PROG in ndo_bpf for splitq (Davide Caratti) [RHEL-130763] - idpf: prepare structures to support XDP (Davide Caratti) [RHEL-130763] - idpf: link NAPIs to queues (Davide Caratti) [RHEL-130763] - xdp, libeth: make the xdp_init_buff() micro-optimization generic (Davide Caratti) [RHEL-130763] - libeth: xdp, xsk: access adjacent u32s as u64 where applicable (Davide Caratti) [RHEL-130763] - libeth: xsk: add XSkFQ refill and XSk wakeup helpers (Davide Caratti) [RHEL-130763] - libeth: xsk: add XSk Rx processing support (Davide Caratti) [RHEL-130763] - libeth: xsk: add XSk xmit functions (Davide Caratti) [RHEL-130763] - libeth: xsk: add XSk XDP_TX sending helpers (Davide Caratti) [RHEL-130763] - libeth: xdp: add RSS hash hint and XDP features setup helpers (Davide Caratti) [RHEL-130763] - libeth: xdp: add templates for building driver-side callbacks (Davide Caratti) [RHEL-130763] - libeth: xdp: add XDP prog run and verdict result handling (Davide Caratti) [RHEL-130763] - libeth: xdp: add helpers for preparing/processing &libeth_xdp_buff (Davide Caratti) [RHEL-130763] - libeth: xdp: add XDPSQ cleanup timers (Davide Caratti) [RHEL-130763] - libeth: xdp: add XDPSQ locking helpers (Davide Caratti) [RHEL-130763] - libeth: xdp: add XDPSQE completion helpers (Davide Caratti) [RHEL-130763] - libeth: xdp: add .ndo_xdp_xmit() helpers (Davide Caratti) [RHEL-130763] - libeth: xdp: add XDP_TX buffers sending (Davide Caratti) [RHEL-130763] - libeth: support native XDP and register memory model (Davide Caratti) [RHEL-130763] - libeth: convert to netmem (Davide Caratti) [RHEL-130763] - libeth, libie: clean symbol exports up a little (Davide Caratti) [RHEL-130763] - xsk: respect the offsets when copying frags (Davide Caratti) [RHEL-130763] - xsk: add helper to get &xdp_desc's DMA and meta pointer in one go (Davide Caratti) [RHEL-130763] - xsk: add generic XSk &xdp_buff -> skb conversion (Davide Caratti) [RHEL-130763] - xsk: make xsk_buff_add_frag() really add the frag via __xdp_buff_add_frag() (Davide Caratti) [RHEL-130763] - xdp: add generic xdp_build_skb_from_buff() (Davide Caratti) [RHEL-130763] - xdp: add generic xdp_buff_add_frag() (Davide Caratti) [RHEL-130763] - page_pool: add page_pool_dev_alloc_netmem() (Davide Caratti) [RHEL-130763] - page_pool: fix incorrect mp_ops error handling (Davide Caratti) [RHEL-130763] - page_pool: disable sync for cpu for dmabuf memory provider (Davide Caratti) [RHEL-130763] - page_pool: Set `dma_sync` to false for devmem memory provider (Davide Caratti) [RHEL-130763] - net: page_pool: create page_pool_alloc_netmem (Davide Caratti) [RHEL-130763] - net: page_pool: rename page_pool_alloc_netmem to *_netmems (Davide Caratti) [RHEL-130763] - skbuff: allow 2-4-argument skb_frag_dma_map() (Davide Caratti) [RHEL-130763] - xdp: make __xdp_return() MP-agnostic (Davide Caratti) [RHEL-130763] - xdp: get rid of xdp_frame::mem.id (Davide Caratti) [RHEL-130763] - page_pool: allow mixing PPs within one bulk (Davide Caratti) [RHEL-130763] - xsk: Fix offset calculation in unaligned mode (Davide Caratti) [RHEL-130763] - xsk: Fix __xsk_generic_xmit() error code when cq is full (Davide Caratti) [RHEL-130763] - page_pool: make page_pool_put_page_bulk() handle array of netmems (Davide Caratti) [RHEL-130763] - netmem: add a couple of page helper wrappers (Davide Caratti) [RHEL-130763] - xdp: register system page pool as an XDP memory model (Davide Caratti) [RHEL-130763] - xsk: allow attaching XSk pool via xdp_rxq_info_reg_mem_model() (Davide Caratti) [RHEL-130763] - xdp: allow attaching already registered memory model to xdp_rxq_info (Davide Caratti) [RHEL-130763] - xdp, xsk: constify read-only arguments of some static inline helpers (Davide Caratti) [RHEL-130763] - bpf, xdp: constify some bpf_prog * function arguments (Davide Caratti) [RHEL-130763] - xsk: align &xdp_buff_xsk harder (Davide Caratti) [RHEL-130763] - xsk: Use xsk_buff_pool directly for cq functions (Davide Caratti) [RHEL-130763] - xsk: Wrap duplicated code to function (Davide Caratti) [RHEL-130763] - xsk: Carry a copy of xdp_zc_max_segs within xsk_buff_pool (Davide Caratti) [RHEL-130763] - xsk: Get rid of xdp_buff_xsk::orig_addr (Davide Caratti) [RHEL-130763] - xsk: s/free_list_node/list_node/ (Davide Caratti) [RHEL-130763] - xsk: Get rid of xdp_buff_xsk::xskb_list_node (Davide Caratti) [RHEL-130763] - overflow: Introduce __DEFINE_FLEX for having no initializer (Davide Caratti) [RHEL-130763] - overflow: Fix direct struct member initialization in _DEFINE_FLEX() (Davide Caratti) [RHEL-130763] - overflow: Clarify expectations for getting DEFINE_FLEX variable sizes (Davide Caratti) [RHEL-130763] - EDAC/i10nm: Add Intel Clearwater Forest server support (Aristeu Rozanski) [RHEL-45084] - tick/nohz: Expose housekeeping CPUs in sysfs (Herton R. Krzesinski) [RHEL-134988] - sysfs/cpu: Use DEVICE_ATTR_RO for nohz_full attribute (Herton R. Krzesinski) [RHEL-134988] - smc: Use __sk_dst_get() and dst_dev_rcu() in smc_clc_prfx_match(). (CKI Backport Bot) [RHEL-130022] {CVE-2025-40168} - redhat: exclude DERIVATE_BUILD and DERIVATE_VERSION from self-test/data (Jan Stancek) - mm/page_alloc: change all pageblocks migrate type on coalescing (Audra Mitchell) [RHEL-115319] {CVE-2025-71134} - printk: Use console_is_usable on console_unblank (Derek Barbosa) [RHEL-141497] - printk: Avoid irq_work for printk_deferred() on suspend (Derek Barbosa) [RHEL-141497] - printk: Avoid scheduling irq_work on suspend (Derek Barbosa) [RHEL-141497] - printk: Allow printk_trigger_flush() to flush all types (Derek Barbosa) [RHEL-141497] - printk: nbcon: Allow reacquire during panic (Derek Barbosa) [RHEL-141497] - exec: Make sure task->comm is always NUL-terminated (Luiz Capitulino) [RHEL-137410] - powercap: intel_rapl: Add support for Wildcat Lake platform (Steve Best) [RHEL-95624] - x86/resctrl: Fix miscount of bandwidth event when reactivating previously unavailable RMID (Steve Best) [RHEL-129400] - x86/resctrl: Implement resctrl_arch_reset_cntr() and resctrl_arch_cntr_read() (Steve Best) [RHEL-129400] - fs/resctrl: Introduce counter ID read, reset calls in mbm_event mode (Steve Best) [RHEL-129400] - x86/resctrl: Refactor resctrl_arch_rmid_read() (Steve Best) [RHEL-129400] - efi: stmm: Drop unneeded null pointer check (Lenny Szubowicz) [RHEL-129401] - efi: stmm: Drop unused EFI error from setup_mm_hdr arguments (Lenny Szubowicz) [RHEL-129401] - efi: stmm: Do not return EFI_OUT_OF_RESOURCES on internal errors (Lenny Szubowicz) [RHEL-129401] - efi: stmm: Fix incorrect buffer allocation method (Lenny Szubowicz) [RHEL-129401] - efistub: Lower default log level (Lenny Szubowicz) [RHEL-129401] - x86/sev: Let sev_es_efi_map_ghcbs() map the CA pages too (Lenny Szubowicz) [RHEL-129401] - efi/libstub: use 'targets' instead of extra-y in Makefile (Lenny Szubowicz) [RHEL-129401] - include: pe.h: Fix PE definitions (Lenny Szubowicz) [RHEL-129401] - efi/efi_test: Fix missing pending status update in getwakeuptime (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Describe missing 'out' parameter in efi_load_initrd (Lenny Szubowicz) [RHEL-129401] - efi: Improve logging around memmap init (Lenny Szubowicz) [RHEL-129401] - efi: Export symbol efi_mem_desc_lookup (Lenny Szubowicz) [RHEL-129401] - x86/boot: Move the EFI mixed mode startup code back under arch/x86, into startup/ (Lenny Szubowicz) [RHEL-129401] - x86/boot: Move the 5-level paging trampoline into /startup (Lenny Szubowicz) [RHEL-129401] - x86/boot/compressed: Merge the local pgtable.h include into (Lenny Szubowicz) [RHEL-129401] - x86/boot/sev: Support memory acceptance in the EFI stub under SVSM (Lenny Szubowicz) [RHEL-129401] - x86/boot/sev: Avoid shared GHCB page for early memory acceptance (Lenny Szubowicz) [RHEL-129401] - efi/cper, cxl: Remove cper_cxl.h (Lenny Szubowicz) [RHEL-129401] - efi/cper, cxl: Make definitions and structures global (Lenny Szubowicz) [RHEL-129401] - efi/cper, cxl: Prefix protocol error struct and function names with cxl_ (Lenny Szubowicz) [RHEL-129401] - efi: rci2: mark bin_attribute as __ro_after_init (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Avoid legacy decompressor zlib/zstd wrappers (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Avoid CopyMem/SetMem EFI services after ExitBootServices (Lenny Szubowicz) [RHEL-129401] - efi: efibc: change kmalloc(size * count, ...) to kmalloc_array() (Lenny Szubowicz) [RHEL-129401] - x86/efi/mixed: Move mixed mode startup code into libstub (Lenny Szubowicz) [RHEL-129401] - x86/efi/mixed: Simplify and document thunking logic (Lenny Szubowicz) [RHEL-129401] - x86/efi/mixed: Remove dependency on legacy startup_32 code (Lenny Szubowicz) [RHEL-129401] - x86/efi/mixed: Set up 1:1 mapping of lower 4GiB in the stub (Lenny Szubowicz) [RHEL-129401] - x86/efi/mixed: Factor out and clean up long mode entry (Lenny Szubowicz) [RHEL-129401] - x86/efi/mixed: Check CPU compatibility without relying on verify_cpu() (Lenny Szubowicz) [RHEL-129401] - x86/efistub: Merge PE and handover entrypoints (Lenny Szubowicz) [RHEL-129401] - x86/boot: Move the LA57 trampoline to separate source file (Lenny Szubowicz) [RHEL-129401] - x86/boot: Work around broken busybox 'truncate' tool (Lenny Szubowicz) [RHEL-129401] - x86 boot build: make git ignore stale 'tools' directory (Lenny Szubowicz) [RHEL-129401] - x86/boot: Add back some padding for the CRC-32 checksum (Lenny Szubowicz) [RHEL-129401] - x86/boot: Drop CRC-32 checksum and the build tool that generates it (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Avoid physical address 0x0 when doing random allocation (Lenny Szubowicz) [RHEL-129401] - x86/boot: Sanitize boot params before parsing command line (Lenny Szubowicz) [RHEL-129401] - efi/mokvar-table: Avoid repeated map/unmap of the same page (Lenny Szubowicz) [RHEL-129401] - efi: Don't map the entire mokvar table to determine its size (Lenny Szubowicz) [RHEL-129401] - efi/cper: Fix cper_arm_ctx_info alignment (Lenny Szubowicz) [RHEL-129401] - efi/cper: Fix cper_ia_proc_ctx alignment (Lenny Szubowicz) [RHEL-129401] - efi: Use BIT_ULL() constants for memory attributes (Lenny Szubowicz) [RHEL-129401] - efi: Avoid cold plugged memory for placing the kernel (Lenny Szubowicz) [RHEL-129401] - x86/boot: Use '-std=gnu11' to fix build with GCC 15 (Lenny Szubowicz) [RHEL-129401] - x86/efi: skip memattr table on kexec boot (Lenny Szubowicz) [RHEL-129401] - efi: libstub: Use '-std=gnu11' to fix build with GCC 15 (Lenny Szubowicz) [RHEL-129401] - efi: sysfb_efi: fix W=1 warnings when EFI is not set (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Use __free() helper for pool deallocations (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Use cleanup helpers for freeing copies of the memory map (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Simplify PCI I/O handle buffer traversal (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Refactor and clean up GOP resolution picker code (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Simplify GOP handling code (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Use C99-style for loop to traverse handle buffer (Lenny Szubowicz) [RHEL-129401] - x86/efistub: Drop long obsolete UGA support (Lenny Szubowicz) [RHEL-129401] - efi/esrt: remove esre_attribute::store() (Lenny Szubowicz) [RHEL-129401] - efi/zboot: Limit compression options to GZIP and ZSTD (Lenny Szubowicz) [RHEL-129401] - efi: Fix memory leak in efivar_ssdt_load (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Take command line overrides into account for loaded files (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Fix command line fallback handling when loading files (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Parse builtin command line after bootloader provided one (Lenny Szubowicz) [RHEL-129401] - x86/efi: Apply EFI Memory Attributes after kexec (Lenny Szubowicz) [RHEL-129401] - x86/efi: Drop support for the EFI_PROPERTIES_TABLE (Lenny Szubowicz) [RHEL-129401] - efi/memattr: Ignore table if the size is clearly bogus (Lenny Szubowicz) [RHEL-129401] - efi/zboot: Fix outdated comment about using LoadImage/StartImage (Lenny Szubowicz) [RHEL-129401] - efi/libstub: Free correct pointer on failure (Lenny Szubowicz) [RHEL-129401] - efi/libstub: measure initrd to PCR9 independent of source (Lenny Szubowicz) [RHEL-129401] - efi/libstub: remove unnecessary cmd_line_len from efi_convert_cmdline() (Lenny Szubowicz) [RHEL-129401] - efi/libstub: fix efi_parse_options() ignoring the default command line (Lenny Szubowicz) [RHEL-129401] - perf vendor events arm64: Fix typo in Ampere eMag json file (Charles Mirabile) [RHEL-122933] - perf vendor events AmpereOneX: Fix spelling typo in the metrics file (Charles Mirabile) [RHEL-122933] - perf vendor events arm64 AmpereOneX: Fix typo - should be l1d_cache_access_prefetches (Charles Mirabile) [RHEL-122933] - perf vendor events arm64 AmpereOne: Fix typos in metrics' descriptions (Charles Mirabile) [RHEL-122933] - crypto: seqiv - Do not use req->iv after crypto_aead_encrypt (Xin Long) [RHEL-118173] - scsi: qla2xxx: Update version to 10.02.10.100-k (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Fix bsg_done() causing double free (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Query FW again before proceeding with login (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Validate sp before freeing associated memory (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Free sp in error path to fix system crash (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Delay module unload while fabric scan in progress (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Allow recovery for tape devices (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Add bsg interface to support firmware img validation (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Validate MCU signature before executing MBC 03h (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Add load flash firmware mailbox support for 28xxx (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Add support for 64G SFP speed (Nilesh Javali) [RHEL-136529] - scsi: qla2xxx: Add Speed in SFP print information (Nilesh Javali) [RHEL-136529] - x86/sev/docs: Document the SNP Reverse Map Table (RMP) (John Allen) [RHEL-69735] - x86/sev: Add full support for a segmented RMP table (John Allen) [RHEL-69735] - x86/sev: Treat the contiguous RMP table as a single RMP segment (John Allen) [RHEL-69735] - x86/sev: Map only the RMP table entries instead of the full RMP range (John Allen) [RHEL-69735] - x86/sev: Move the SNP probe routine out of the way (John Allen) [RHEL-69735] - x86/sev: Require the RMPREAD instruction after Zen4 (John Allen) [RHEL-69735] - x86/sev: Add support for the RMPREAD instruction (John Allen) [RHEL-69735] - x86/sev: Prepare for using the RMPREAD instruction to access the RMP (John Allen) [RHEL-69735] - ima: Access decompressed kernel module to verify appended signature (Coiby Xu) [RHEL-104353] - net: qlogic/qede: fix potential out-of-bounds read in qede_tpa_cont() and qede_tpa_end() (John Meneghini) [RHEL-96459] - qede: convert to use ndo_hwtstamp callbacks (John Meneghini) [RHEL-96459] - bnx2x: convert to use ndo_hwtstamp callbacks (John Meneghini) [RHEL-96459] - net: qed: Remove redundant NULL checks after list_first_entry() (John Meneghini) [RHEL-96459] - qed: Don't collect too many protection override GRC elements (John Meneghini) [RHEL-96459] - net: qed: reduce stack usage for TLV processing (John Meneghini) [RHEL-96459] - net: qede: Initialize qede_ll_ops with designated initializer (John Meneghini) [RHEL-96459] - scsi: qedf: Use designated initializer for struct qed_fcoe_cb_ops (John Meneghini) [RHEL-96459] - qed: Remove unused qed_db_recovery_dp (John Meneghini) [RHEL-96459] - qed: Remove unused qed_print_mcp_trace_* (John Meneghini) [RHEL-96459] - qed: Remove unused qed_ptt_invalidate (John Meneghini) [RHEL-96459] - qed: Remove unused qed_calc_*_ctx_validation functions (John Meneghini) [RHEL-96459] - qed: Remove unused qed_memset_*ctx functions (John Meneghini) [RHEL-96459] - net: bnx2x: use ethtool string helpers (John Meneghini) [RHEL-96459] - net: tls: Cancel RX async resync request on rcd_delta overflow (CKI Backport Bot) [RHEL-133478] - net: tls: Change async resync helpers argument (CKI Backport Bot) [RHEL-133478] - selftests: tls: add test for short splice due to full skmsg (CKI Backport Bot) [RHEL-133478] - selftests: net: tls: add tests for cmsg vs MSG_MORE (CKI Backport Bot) [RHEL-133478] - tls: don't rely on tx_work during send() (CKI Backport Bot) [RHEL-133478] - tls: wait for pending async decryptions if tls_strp_msg_hold fails (CKI Backport Bot) [RHEL-133478] - tls: always set record_type in tls_process_cmsg (CKI Backport Bot) [RHEL-133478] - tls: wait for async encrypt in case of error during latter iterations of sendmsg (CKI Backport Bot) [RHEL-133478] - tls: trim encrypted message to match the plaintext on short splice (CKI Backport Bot) [RHEL-133478] - fbdev: Add bounds checking in bit_putcs to fix vmalloc-out-of-bounds (CKI Backport Bot) [RHEL-137688] {CVE-2025-40304} - fbdev: bitblit: bound-check glyph index in bit_putcs* (CKI Backport Bot) [RHEL-136947] {CVE-2025-40322} - wifi: rtw88: limit indirect IO under powered off for RTL8822CS (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: Fix firmware version handling (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: Move mt76_abort_scan out of mt76_reset_device() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: hw_scan: Don't let the operating channel be last (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: always take beacon ies in link grading (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mvm: fix beacon template/fixed rate (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: fix aux ROC time event iterator usage (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211_hwsim: Fix possible NULL dereference (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: skip rate verification for not captured PSDUs (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: reject address change while connecting (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath11k: zero init info->status in wmi_process_mgmt_tx_comp() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211_hwsim: Limit destroy_on_close radio removal to netgroup (Jose Ignacio Tornos Martinez) [RHEL-132586] - Revert "wifi: ath12k: Fix missing station power save configuration" (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: use wiphy_hrtimer_work for csa.switch_work (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: use wiphy_hrtimer_work for ml_reconf_work (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: use wiphy_hrtimer_work for ttlm_work (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: add an hrtimer based delayed work item (Jose Ignacio Tornos Martinez) [RHEL-132586] - Revert "wifi: ath10k: avoid unnecessary wait for service ready message" (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: fix key tailroom accounting leak (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: brcmfmac: fix crash while sending Action Frames in standalone AP Mode (Jose Ignacio Tornos Martinez) [RHEL-132586] {CVE-2025-40321} - wifi: mac80211: reset FILS discovery and unsol probe resp intervals (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: fix potential use after free in iwl_mld_remove_link() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: free skb during idr cleanup callback (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath10k: Fix memory leak on unsupported WMI command (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: fix width unit in cfg80211_radio_chandef_valid() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath11k: HAL SRNG: don't deinitialize and re-initialize again (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: enforce CPU endian format for all QMI data (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Use 1KB Cache Flush Command for QoS TID Descriptors (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Fix flush cache failure during RX queue update (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Add Retry Mechanism for REO RX Queue Update Failures (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Refactor REO command to use ath12k_dp_rx_tid_rxq (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Refactor RX TID buffer cleanup into helper function (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Refactor RX TID deletion handling into helper function (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Increase DP_REO_CMD_RING_SIZE to 256 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: remove IEEE80211_CHAN_{1,2,4,8,16}MHZ flags (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: fix Rx packet handling when pubsta information is not available (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: remove ieee80211_s1g_channel_width (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: correctly initialise S1G chandef for STA (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: correctly implement and validate S1G chandef (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: remove tx_handlers_drop debugfs stats (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: Remove redundant rcu_read_lock/unlock() in spin_lock (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211_hwsim: Add simulation support for NAN device (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: Extend support for changing NAN configuration (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: Export an API to check if NAN is started (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: Get the correct interface for non-netdev skb status (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: Track NAN interface start/stop (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: Accept management frames on NAN interface (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: Support Tx of action frame for NAN (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: Store the NAN cluster ID (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: Support Tx/Rx of action frame for NAN (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: Advertise supported NAN capabilities (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: nl80211: Add more NAN capabilities (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: Add cluster joined notification APIs (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: nl80211: Add NAN Discovery Window (DW) notification (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: nl80211: Add more configuration options for NAN commands (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Extend beacon miss handling for MLO non-AP STA (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Add support to handle reason inactivity STA kickout event for QCN9274/IPQ5332 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: enhance the WMI_PEER_STA_KICKOUT event with reasons and RSSI reporting (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: report station mode per-chain signal strength (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath10k: Fix connection after GTK rekeying (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath10k: avoid unnecessary wait for service ready message (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath11k: fix NULL dereference in ath11k_qmi_m3_load() (Jose Ignacio Tornos Martinez) [RHEL-132586] {CVE-2025-39991} - wifi: ath: Use of_reserved_mem_region_to_resource() for "memory-region" (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath10k: remove gpio number assignment (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath11k: Remove redundant semicolon (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: downgrade log level for CE buffer enqueue failure (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: fix wrong logging ID used for CE (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath11k: downgrade log level for CE buffer enqueue failure (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Add fallback for invalid channel number in PHY metadata (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: fix the fetching of combined rssi (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: fix HAL_PHYRX_COMMON_USER_INFO handling in monitor mode (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: fix signal in radiotap for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: ath12k: Add support to set per-radio RTS threshold (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: wow: enable TKIP related feature (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8922a: add TAS feature support (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: open C2H event waiting window first before sending H2C command (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: renew a completion for each H2C command waiting C2H event (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8852b: enable beacon tracking support (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: debug: support SER L0 simulation (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: phy: initialize AFE by firmware element table (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: obtain RX path from ppdu status IE00 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: disable RTW89_PHYSTS_IE09_FTR_0 for ppdu status (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: use ieee80211_tx_info::driver_data to store driver TX info (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: chan: allow callers to check if a link has no managed chanctx (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: abort scan/roc on hw restart (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: improve phy reset on hw restart (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: fill User Priority in skb->priority for rx packets (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: set VTA in txwi (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: remove the mem_total field of STA_REC_BF command (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: disable promiscuous mode by default (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: use altx queue for offchannel tx on connac+ (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: fix updating beacon protection with beacons enabled (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: fix key add/remove imbalance (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: delete vif keys when requested (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: fix memory leak on mt7996_mcu_sta_key_tlv error (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: fix setting beacon protection keys (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: decrease timeout for commonly issued MCU commands (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: improve hardware restart reliability (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: remove redundant per-phy mac80211 calls during restart (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7921u: Add VID/PID for Netgear A7500 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt76_eeprom_override to int (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: support writing MAC TXD for AddBA Request (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7925: refine the txpower initialization flow (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7915: fix mt7981 pre-calibration (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: Convert mt76_wed_rro_ind to LE (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Add SW path for HW-RRO v3.1 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: Add mt76_dma_get_rxdmad_c_buf utility routione (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Decouple RRO logic from WED support (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: Add rx_queue_init callback (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Introduce RRO MSDU callbacks (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Convert mt7996_wed_rro_addr to LE (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Enable WED for MT7992 chipset (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Fix RX packets configuration for primary WED device (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Fix tx-queues initialization for second phy on mt7996 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Introduce the capability to reset MT7992 WED device (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Enable HW RRO for MT7992 chipset (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Initial DMA configuration for MT7992 WED support (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: Do not always enable NAPIs for WED RRO queues (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: Differentiate between RRO data and RRO MSDU queues (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: Remove q->ndesc check in mt76_dma_rx_fill() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: Add reset_idx to reset_q mt76_queue_ops signature. (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Enable MLO support for client interfaces (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Set EML capabilities for AP interface (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Export MLO AP capabilities to mac80211 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Temporarily disable EPCS (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Implement MLD address translation for EAPOL (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Add all active links to poll list in mt7996_mac_tx_free() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Fix mt7996_reverse_frag0_hdr_trans for MLO (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Use proper link info in mt7996_mcu_add_group (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7921: Add 160MHz beamformee capability for mt7922 device (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7925: add pci restore for hibernate (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Check phy before init msta_link in mt7996_mac_sta_add_links() (Jose Ignacio Tornos Martinez) [RHEL-132586] {CVE-2025-40066} - wifi: mt76: mt7996: Use proper link_id in link_sta_rc_update callback (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: Remove dead code in mt76_scan_work (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Use deflink for AMPDU rx reordering (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7921: add MBSSID support (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: fix potential memory leak in mt76_wmac_probe() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7925: add MBSSID support (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7925u: Add VID/PID for Netgear A9000 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Set proper link destination address in mt7996_tx() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Set def_wcid pointer in mt7996_mac_sta_init_link() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Fix mt7996_mcu_bss_mld_tlv routine (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Fix mt7996_mcu_sta_ba wcid configuration (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mt76: mt7996: Overwrite unspecified link_id in mt7996_tx() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mwifiex: fix endianness handling in mwifiex_send_rgpower_table (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: Remove the redundant wiphy_dev (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: fix incorrect comment (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: update the time stamps in hidden ssid (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: Fix HE capabilities element check (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: add tx_handlers_drop statistics to ethtool (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: CHANNEL_SURVEY_NOTIF is always supported (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: remove support of iwl_esr_mode_notif version 1 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: remove support from of sta cmd version 1 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: remove support of roc cmd version 5 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: remove support of mac cmd ver 2 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: don't consider phy cmd version 5 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: implement wowlan status notification API update (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: fw: Add ASUS to PPAG and TAS list (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: add kunit tests for nvm parse (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: api: add a flag to iwl_link_ctx_modify_flags (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: pcie: move ltr_enabled to the specific transport (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: pcie: move pm_support to the specific transport (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: rename iwl_finish_nic_init (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: replace SUPPRESS_CMD_ERROR_ONCE status bit with a boolean (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: add STATUS_FW_ERROR API (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: Add USB ID 2001:3327 for D-Link AX18U rev. A1 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtl8xxxu: expose efuse via debugfs (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: Fix dentry reference leak in iwl_mld_add_link_debugfs (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mei: Remove unused flexible-array member in struct iwl_sap_hdr (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: Remove redundant header files (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: Remove duplicated include in trans.c (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mwifiex: fix double free in mwifiex_send_rgpower_table() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: Fix 6 GHz Band capabilities element advertisement in lower bands (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: reduce the scope of rts_threshold (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: reduce the scope of link_id (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: brcmfmac: support AP isolation to restrict reachability between stations (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: nl80211: strict checking attributes for NL80211_CMD_SET_BSS (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: drivers: indicate support for attributes in NL80211_CMD_SET_BSS (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: nl80211: allow drivers to support subset of NL80211_CMD_SET_BSS (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: nl80211: Add EHT fixed Tx rate support (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: kunit: add kunit tests for S1G PVB decoding (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: support parsing S1G TIM PVB (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: support block bitmap S1G TIM encoding (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: brcmfmac: fix 43752 SDIO FWVID incorrectly labelled as Cypress (CYW) (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mwifiex: send world regulatory domain to driver (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mwifiex: add rgpower table loading support (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: brcmfmac: avoid assignment in if/else-if conditions in NVRAM load path (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: mac80211: count reg connection element in the size (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: cfg80211: Remove unused tracepoints (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8852bt: Remove redundant off_reverse variables (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: use int type to store negative error codes (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: add getting function of DMA channel v1 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: abstract getting function of DMA channel (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: pci: add RPP parser v1 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: pci: abstract RPP parser (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: pci: add group BD address design (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: pci: define TX/RX buffer descriptor pool (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: pci: add struct rtw89_{tx,rx}_rings to put related fields (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: pci: use RDU status of R_BE_PCIE_DMA_IMR_0_V1 instead for 8922DE (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: pci: prepare interrupt related registers and functions for 8922DE (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: pci: move chip ISR definition out from chip generation (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtl8xxxu: Remove TL-WN722N V2 (0x2357: 0x010c) from untested devices (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: don't support WH a step (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: remove a TODO (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: carefully select the PNVM source (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: make iwl_mld_rm_vif void (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: pcie: remember when interrupts are disabled (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: support TLC command version 5 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: gen1_2: move gen specific code to a function (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: gen1_2: rename iwl_trans_pcie_op_mode_enter (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: really remove hw_wfpm_id (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: remove unneeded jacket indication (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: don't publish TWT capabilities (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: trans: move dev_cmd_pool to trans specific (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: remove .pnvm files from module info (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: acpi: make iwl_guid static (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: uefi: remove runtime check of constant values (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: refactor iwl_pnvm_get_from_fs (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: iwl-config: include module.h (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: don't modify trans state where not needed (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: simplify iwl_trans_pcie_d3_resume (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: trans: remove STATUS_SUSPENDED (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: trans: remove d3 test code (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: remove dump file name extension support (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mvm: remove d3 test code (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: add a new FW file numbering scheme (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: add few missing hcmd/notif names (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: Add debug log for second link (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: simplify iwl_poll_prph_bit return value (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: pcie: relocate finish_nic_init logic to gen1_2 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: trigger mlo scan only when not in EMLSR (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: don't check the cipher on resume (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: don't validate keys state on resume (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: rename iwl_mld_set_key_rx_seq (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: refactor iwl_mld_add_all_rekeys (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: don't consider old versions of PPAG (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: make ppag versioning clear (Jose Ignacio Tornos Martinez) [RHEL-132586] - Reapply "wifi: iwlwifi: remove support of several iwl_ppag_table_cmd versions" (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: bump MIN API in HR/GF/BZ/SC/DR (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mvm: remove a function declaration (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld/mvm: set beacon protection capability in wowlan config (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mvm/mld: correctly retrieve the keyidx from the beacon (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: track BIGTK per link (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: support MLO rekey on resume (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mvm: cleanup cipher lookup in resume (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mld: cleanup cipher lookup in resume (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: iwlwifi: mvm: remove MLO code (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw88: Use led->brightness_set_blocking for PCI too (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: coex: Limit Wi-Fi scan slot cost to avoid A2DP glitch (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8852c: update firmware crash trigger type for newer firmware (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8852a: report average RSSI to avoid unnecessary scanning (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8852a: report per-channel noise level by get_survey ops (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8852bt: Simplify unnecessary if-else conditions in _dpk_onoff() (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtl8xxxu: Don't claim USB ID 07b8:8188 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtlwifi: rtl8192cu: Don't claim USB ID 07b8:8188 (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: fix group frames loss when connected to non-transmitted BSSID (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: fix BSSID comparison for non-transmitted BSSID (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8852c: check LPS H2C command complete by C2H reg instead of done ack (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8851b: rfk: update TX wideband IQK (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8851b: rfk: update IQK TIA setting (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: wow: remove notify during WoWLAN net-detect (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: debug: add beacon_info debugfs (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: introduce beacon tracking to improve connection stability (Jose Ignacio Tornos Martinez) [RHEL-132586] - net: mediatek: wed: Introduce MT7992 WED support to MT7988 SoC (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: 8852bt: Use standard helper for string choice (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: add dummy C2H handlers for BCN resend and update done (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw89: print just once for unknown C2H events (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw88: Lock rtwdev->mutex before setting the LED (Jose Ignacio Tornos Martinez) [RHEL-132586] - wifi: rtw88: sdio: use indirect IO for device registers before power-on (Jose Ignacio Tornos Martinez) [RHEL-132586] - net: convert to nla_get_*_default() [wireless] (Jose Ignacio Tornos Martinez) [RHEL-132586] - perf tools: Fix build error on generated/fs_at_flags_array.c (Anubhav Shelat) [RHEL-127734] - nvmet-tcp: fixup hang in nvmet_tcp_listen_data_ready() (Maurizio Lombardi) [RHEL-88203] - eventpoll: don't decrement ep refcount while still holding the ep mutex (CKI Backport Bot) [RHEL-138039] {CVE-2025-38349} - blk-mq: Abort suspend when wakeup events are pending (Ming Lei) [RHEL-137853] - fs/proc: fix uaf in proc_readdir_de() (CKI Backport Bot) [RHEL-137103] {CVE-2025-40271} - net: netdevsim: fix inconsistent carrier state after link/unlink (Xin Long) [RHEL-130765] - selftests: Add napi threaded busy poll test in `busy_poller` (Xin Long) [RHEL-130765] - net: Extend NAPI threaded polling to allow kthread based busy polling (Xin Long) [RHEL-130765] - netdevsim: set the carrier when the device goes up (Xin Long) [RHEL-130765] - net: Use NAPI_* in test_bit when stopping napi kthread (Xin Long) [RHEL-130765] - docs: remove obsolete description about threaded NAPI (Xin Long) [RHEL-130765] - net: prevent deadlocks when enabling NAPIs with mixed kthread config (Xin Long) [RHEL-130765] - selftests: drv-net: don't assume device has only 2 queues (Xin Long) [RHEL-130765] - selftests: drv-net: test the napi init state (Xin Long) [RHEL-130765] - net: update NAPI threaded config even for disabled NAPIs (Xin Long) [RHEL-130765] - net: Update threaded state in napi config in netif_set_threaded (Xin Long) [RHEL-130765] - net: define an enum for the napi threaded state (Xin Long) [RHEL-130765] - net: Use netif_threaded_enable instead of netif_set_threaded in drivers (Xin Long) [RHEL-130765] - net: Create separate gro_flush_normal function (Xin Long) [RHEL-130765] - net: s/dev_set_threaded/netif_set_threaded/ (Xin Long) [RHEL-130765] - Add support to set NAPI threaded for individual NAPI (Xin Long) [RHEL-130765] - net: stop napi kthreads when THREADED napi is disabled (Xin Long) [RHEL-130765] - net: gro: expose GRO init/cleanup to use outside of NAPI (Xin Long) [RHEL-130765] - net: gro: decouple GRO from the NAPI layer (Xin Long) [RHEL-130765] - netdevsim: support NAPI config (Xin Long) [RHEL-130765] - selftests: net: cleanup busy_poller.c (Xin Long) [RHEL-130765] - bus: mhi: host: pci_generic: Set DMA mask for VFs (Jose Ignacio Tornos Martinez) [RHEL-132591] - bus: mhi: core: Improve mhi_sync_power_up handling for SYS_ERR state (Jose Ignacio Tornos Martinez) [RHEL-132591] - bus: mhi: host: pci_generic: Reset QDU100 while the MHI driver is removed (Jose Ignacio Tornos Martinez) [RHEL-132591] - bus: mhi: host: pci_generic: Add SRIOV support (Jose Ignacio Tornos Martinez) [RHEL-132591] - bus: mhi: host: pci_generic: Read SUBSYSTEM_VENDOR_ID for VF's to check status (Jose Ignacio Tornos Martinez) [RHEL-132591] - bus: mhi: host: Add support for separate controller configurations for VF and PF (Jose Ignacio Tornos Martinez) [RHEL-132591] - bus: mhi: ep: Fix chained transfer handling in read path (Jose Ignacio Tornos Martinez) [RHEL-132591] - bus: mhi: host: Notify EE change via uevent (Jose Ignacio Tornos Martinez) [RHEL-132591] - bus: mhi: host: Do not use uninitialized 'dev' pointer in mhi_init_irq_setup() (Jose Ignacio Tornos Martinez) [RHEL-132591] - bus: mhi: host: pci_generic: Add support for all Foxconn T99W696 SKU variants (Jose Ignacio Tornos Martinez) [RHEL-132591] - net: mana: Handle hardware recovery events when probing the device (Maxim Levitsky) [RHEL-131892] - net: mana: Drop TX skb on post_work_request failure and unmap resources (Maxim Levitsky) [RHEL-131892] - net: mana: Handle SKB if TX SGEs exceed hardware limit (Maxim Levitsky) [RHEL-131892] - net: mana: Add standard counter rx_missed_errors (Maxim Levitsky) [RHEL-131892] - net: mana: Move hardware counter stats from per-port to per-VF context (Maxim Levitsky) [RHEL-131892] - net: mana: Fix incorrect speed reported by debugfs (Maxim Levitsky) [RHEL-131892] - net: mana: Support HW link state events (Maxim Levitsky) [RHEL-131892] - RDMA/mana_ib: Extend modify QP (Maxim Levitsky) [RHEL-131892] - net: mana: Reduce waiting time if HWC not responding (Maxim Levitsky) [RHEL-131892] - net: mana: Remove redundant netdev_lock_ops_to_full() calls (Maxim Levitsky) [RHEL-131892] - net: mana: Use page pool fragments for RX buffers instead of full pages to improve memory efficiency. (Maxim Levitsky) [RHEL-131892] - RDMA/mana_ib: Drain send wrs of GSI QP (Maxim Levitsky) [RHEL-131892] - net: hv_netvsc: fix loss of early receive events from host during channel open. (Maxim Levitsky) [RHEL-131892] - net: mana: Fix build errors when CONFIG_NET_SHAPER is disabled (Maxim Levitsky) [RHEL-131892] - net: mana: Add speed support in mana_get_link_ksettings (Maxim Levitsky) [RHEL-131892] - net: mana: Add support for net_shaper_ops (Maxim Levitsky) [RHEL-131892] - ASoC: Intel: bytcr_rt5640: Fix invalid quirk input mapping (CKI Backport Bot) [RHEL-129117] {CVE-2025-40154} - nvme: fix PCIe subsystem reset controller state transition (John Meneghini) [RHEL-137767] - powerpc/eeh: fix recursive pci_lock_rescan_remove locking in EEH event handling (John Meneghini) [RHEL-137767] - powerpc/eeh: Make EEH driver device hotplug safe (John Meneghini) [RHEL-137767] {CVE-2025-38576} - sched: Fix build for modules using set_tsk_need_resched() (Phil Auld) [RHEL-134848] - sched: Export hidden tracepoints to modules (Phil Auld) [RHEL-134848] - ntb_hw_switchtec: Fix shift-out-of-bounds in switchtec_ntb_mw_set_trans (Myron Stowe) [RHEL-132906] {CVE-2023-53034} - tick/sched: Limit non-timekeeper CPUs calling jiffies update (CKI Backport Bot) [RHEL-132754] - redhat: enable TDX host config (Paolo Bonzini) [RHEL-115483] - KVM/TDX: Explicitly do WBINVD when no more TDX SEAMCALLs (Paolo Bonzini) [RHEL-115483] - x86/virt/tdx: Update the kexec section in the TDX documentation (Paolo Bonzini) [RHEL-115483] - x86/virt/tdx: Remove the !KEXEC_CORE dependency (Paolo Bonzini) [RHEL-115483] - x86/kexec: Disable kexec/kdump on platforms with TDX partial write erratum (Paolo Bonzini) [RHEL-115483] - x86/virt/tdx: Mark memory cache state incoherent when making SEAMCALL (Paolo Bonzini) [RHEL-115483] - x86/sme: Use percpu boolean to control WBINVD during kexec (Paolo Bonzini) [RHEL-115483] - x86/kexec: Consolidate relocate_kernel() function parameters (Paolo Bonzini) [RHEL-115483] - selftests/mm: skip hugepage-mremap test if userfaultfd unavailable (Chunyu Hu) [RHEL-112331] - selftests/mm: skip thuge-gen test if system is not setup properly (Chunyu Hu) [RHEL-112331] - selftests/mm: use generic read_sysfs in thuge-gen test (Chunyu Hu) [RHEL-112331] - selftests/mm: extract read_sysfs and write_sysfs into vm_util (Chunyu Hu) [RHEL-112331] - selftests/mm: deduplicate default page size test results in thuge-gen (Chunyu Hu) [RHEL-112331] - selftests/mm: fix thuge-gen test name uniqueness (Chunyu Hu) [RHEL-112331] - selftests/mm: fix child process exit codes in ksm_functional_tests (Chunyu Hu) [RHEL-112331] - selftest/mm: fix ksm_funtional_test failures (Chunyu Hu) [RHEL-112331] - selftests/mm: add support to test 4PB VA on PPC64 (Chunyu Hu) [RHEL-112331] - mm/selftests: fix incorrect pointer being passed to mark_range() (Chunyu Hu) [RHEL-112331] - arm64: dts: freescale: Add GMAC Ethernet for S32G2 EVB and RDB2 and S32G3 RDB3 (CKI Backport Bot) [RHEL-141789] - pinctrl: s32cc: initialize gpio_pin_config::list after kmalloc() (Jared Kangas) [RHEL-136697] - pinctrl: s32cc: fix uninitialized memory in s32_pinctrl_desc (Jared Kangas) [RHEL-136697] - pinctrl: s32: add missing pins definitions (Jared Kangas) [RHEL-136697] - scsi: sg: Fix occasional bogus elapsed time that exceeds timeout (Michal Rábek) [RHEL-140732] - powerpc/tools: drop `-o pipefail` in gcc check scripts (Jan Stancek) [RHEL-111046] - thunderbolt: Add support for Intel Wildcat Lake (Desnes Nunes) [RHEL-95660] - ipv4: start using dst_dev_rcu() (Hangbin Liu) [RHEL-128993] - tcp: use dst_dev_rcu() in tcp_fastopen_active_disable_ofo_check() (Hangbin Liu) [RHEL-128993] - tcp_metrics: use dst_dev_net_rcu() (Hangbin Liu) [RHEL-128993] - net: use dst_dev_rcu() in sk_setup_caps() (Hangbin Liu) [RHEL-129089] {CVE-2025-40170} - ipv6: use RCU in ip6_output() (Hangbin Liu) [RHEL-128993] {CVE-2025-40158} - ipv6: use RCU in ip6_xmit() (Hangbin Liu) [RHEL-129028] {CVE-2025-40135} - ipv6: start using dst_dev_rcu() (Hangbin Liu) [RHEL-128993] - net: dst: introduce dst->dev_rcu (Hangbin Liu) [RHEL-128993] - ipv6: mcast: Add ip6_mc_find_idev() helper (Hangbin Liu) [RHEL-128993] - net: ipv4: guard ip_mr_output() with rcu (Hangbin Liu) [RHEL-128993] - net: ipv4: Add ip_mr_output() (Hangbin Liu) [RHEL-128993] - net: ipv4: ipmr: Split ipmr_queue_xmit() in two (Hangbin Liu) [RHEL-128993] - net: ipv4: ipmr: ipmr_queue_xmit(): Drop local variable `dev' (Hangbin Liu) [RHEL-128993] - RDMA/irdma: avoid invalid read in irdma_net_event (Kamal Heib) [RHEL-99206] - RDMA/irdma: Fix irdma_alloc_ucontext_resp padding (Kamal Heib) [RHEL-99206] - RDMA/irdma: Fix SRQ shadow area address initialization (Kamal Heib) [RHEL-99206] - RDMA/irdma: Remove doorbell elision logic (Kamal Heib) [RHEL-99206] - RDMA/irdma: Do not set IBK_LOCAL_DMA_LKEY for GEN3+ (Kamal Heib) [RHEL-99206] - RDMA/irdma: Do not directly rely on IB_PD_UNSAFE_GLOBAL_RKEY (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add missing mutex destroy (Kamal Heib) [RHEL-99206] - RDMA/irdma: Fix SIGBUS in AEQ destroy (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add a missing kfree of struct irdma_pci_f for GEN2 (Kamal Heib) [RHEL-99206] - RDMA/irdma: Fix data race in irdma_free_pble (Kamal Heib) [RHEL-99206] - RDMA/irdma: Fix data race in irdma_sc_ccq_arm (Kamal Heib) [RHEL-99206] - RDMA/irdma: Remove redundant NULL check of udata in irdma_create_user_ah() (Kamal Heib) [RHEL-99206] - RDMA/irdma: Remove unused CQ registry (Kamal Heib) [RHEL-99206] - RDMA/irdma: Take a lock before moving SRQ tail in poll_cq (Kamal Heib) [RHEL-99206] - RDMA/irdma: CQ size and shadow update changes for GEN3 (Kamal Heib) [RHEL-99206] - RDMA/irdma: Silently consume unsignaled completions (Kamal Heib) [RHEL-99206] - RDMA/irdma: Initialize cqp_cmds_info to prevent resource leaks (Kamal Heib) [RHEL-99206] - RDMA/irdma: Enforce local fence for LOCAL_INV WRs (Kamal Heib) [RHEL-99206] - RDMA/irdma: Fix vf_id size to u16 to avoid overflow (Kamal Heib) [RHEL-99206] - RDMA/irdma: Set irdma_cq cq_num field during CQ create (Kamal Heib) [RHEL-99206] - RDMA/irdma: Fix SD index calculation (Kamal Heib) [RHEL-99206] - RDMA/irdma: Remove unused struct irdma_cq fields (Kamal Heib) [RHEL-99206] - RDMA/irdma: Fix positive vs negative error codes in irdma_post_send() (Kamal Heib) [RHEL-99206] - RDMA/irdma: Update Kconfig (Kamal Heib) [RHEL-99206] - RDMA/irdma: Extend CQE Error and Flush Handling for GEN3 Devices (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add Atomic Operations support (Kamal Heib) [RHEL-99206] - RDMA/irdma: Restrict Memory Window and CQE Timestamping to GEN3 (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add SRQ support (Kamal Heib) [RHEL-99206] - RDMA/irdma: Support 64-byte CQEs and GEN3 CQE opcode decoding (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add support for V2 HMC resource management scheme (Kamal Heib) [RHEL-99206] - RDMA/irdma: Extend QP context programming for GEN3 (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add GEN3 virtual QP1 support (Kamal Heib) [RHEL-99206] - RDMA/irdma: Introduce GEN3 vPort driver support (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add GEN3 HW statistics support (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add GEN3 support for AEQ and CEQ (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add GEN3 CQP support with deferred completions (Kamal Heib) [RHEL-99206] - RDMA/irdma: Discover and set up GEN3 hardware register layout (Kamal Heib) [RHEL-99206] - RDMA/irdma: Add GEN3 core driver support (Kamal Heib) [RHEL-99206] - RDMA/irdma: Refactor GEN2 auxiliary driver (Kamal Heib) [RHEL-99206] - ice, irdma: fix an off by one in error handling code (Kamal Heib) [RHEL-99206] - irdma: free iwdev->rf after removing MSI-X (Kamal Heib) [RHEL-99206] - RDMA/irdma: Switch to using the crc32c library (Kamal Heib) [RHEL-99206] - net: atlantic: fix fragment overflow handling in RX path (CKI Backport Bot) [RHEL-139492] {CVE-2025-68301} - Bluetooth: hci_sock: Prevent race in socket write iter and sock bind (CKI Backport Bot) [RHEL-139467] {CVE-2025-68305} - mmc: sdhci-esdhc-imx: add alternate ARCH_S32 dependency to Kconfig (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: use modern PM macros (Jared Kangas) [RHEL-138679] - mmc: sdhci: add some simple inline functions for !CONFIG_PM (Jared Kangas) [RHEL-138679] - mmc: Remove redundant pm_runtime_mark_last_busy() calls (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: Drop the use of sdhci_pltfm_free() (Jared Kangas) [RHEL-138679] - mmc: sdhci: Use devm_mmc_alloc_host() helper (Jared Kangas) [RHEL-138679] - mmc: sdhci: Return void from sdhci_runtime_suspend|resume_host() (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: Don't change pinctrl in suspend if wakeup source (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: optimize clock loopback selection with dummy pad support (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: refactor clock loopback selection logic (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: fix few build warnings (Jared Kangas) [RHEL-138679] - mmc: host: sdhci-esdhc-imx: refactor the system PM logic (Jared Kangas) [RHEL-138679] - mmc: sdhci: export APIs for sdhci irq wakeup (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: fix defined but not used warnings (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: switch standard tuning to manual tuning (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: verify tuning control status after configuration (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: widen auto-tuning window for manual tuning (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: widen auto-tuning window for standard tuning (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: reset async FIFO before sending manual tuning command (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: explicitly reset tuning circuit via RSTT bit (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: calculate data timeout value based on clock (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: Save tuning value when card stays powered in suspend (Jared Kangas) [RHEL-138679] - mmc: Use of_property_present() for non-boolean properties (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: enable 'SDHCI_QUIRK_NO_LED' quirk for S32G (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: Update esdhc sysctl dtocv bitmask (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: Implement emmc hardware reset (Jared Kangas) [RHEL-138679] - mmc: host: Fix typos in comments across various files (Jared Kangas) [RHEL-138679] - mmc: sdhci-esdhc-imx: enable quirks SDHCI_QUIRK_NO_LED (Jared Kangas) [RHEL-138679] - Bluetooth: MGMT: Fix OOB access in parse_adv_monitor_pattern() (CKI Backport Bot) [RHEL-136974] {CVE-2025-40294} - Bluetooth: hci_event: validate skb length for unknown CC opcode (CKI Backport Bot) [RHEL-136953] {CVE-2025-40301} - net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing (CKI Backport Bot) [RHEL-136839] {CVE-2025-38568} - smb: client: fix UBSAN array-index-out-of-bounds in smb2_copychunk_range (Paulo Alcantara) [RHEL-116054] - smb3 client: add missing tracepoint for unsupported ioctls (Paulo Alcantara) [RHEL-116054] - smb/server: fix refcount leak in smb2_open() (Paulo Alcantara) [RHEL-116054] - smb/server: fix refcount leak in parse_durable_handle_context() (Paulo Alcantara) [RHEL-116054] - smb/server: call ksmbd_session_rpc_close() on error path in create_smb2_pipe() (Paulo Alcantara) [RHEL-116054] - ksmbd: Fix memory leak in get_file_all_info() (Paulo Alcantara) [RHEL-116054] - cifs: Fix memory and information leak in smb3_reconfigure() (Paulo Alcantara) [RHEL-116054] - smb/server: fix minimum SMB2 PDU size (Paulo Alcantara) [RHEL-116054] - smb/server: fix minimum SMB1 PDU size (Paulo Alcantara) [RHEL-116054] - ksmbd: rename smb2_get_msg to smb_get_msg (Paulo Alcantara) [RHEL-116054] - ksmbd: Fix to handle removal of rfc1002 header from smb_hdr (Paulo Alcantara) [RHEL-116054] - cifs: update internal module version number (Paulo Alcantara) [RHEL-116054] - smb: move some SMB1 definitions into common/smb1pdu.h (Paulo Alcantara) [RHEL-116054] - smb: align durable reconnect v2 context to 8 byte boundary (Paulo Alcantara) [RHEL-116054] - ksmbd: fix buffer validation by including null terminator size in EA length (Paulo Alcantara) [RHEL-116054] - ksmbd: Fix refcount leak when invalid session is found on session lookup (Paulo Alcantara) [RHEL-116054] - ksmbd: remove redundant DACL check in smb_check_perm_dacl (Paulo Alcantara) [RHEL-116054] - smb: server: defer the initial recv completion logic to smb_direct_negotiate_recv_work() (Paulo Alcantara) [RHEL-116054] - smb: server: initialize recv_io->cqe.done = recv_done just once (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.connect.{lock,work} (Paulo Alcantara) [RHEL-116054] - redhat/configs: disable CONFIG_CRYPTO_KRB5_SELFTESTS (Paulo Alcantara) [RHEL-116054] - redhat/configs: enable CONFIG_RXGK (Paulo Alcantara) [RHEL-116054] - redhat/configs: enable CONFIG_CRYPTO_KRB5[ENC] (Paulo Alcantara) [RHEL-116054] - smb/client: remove DeviceType Flags and Device Characteristics definitions (Paulo Alcantara) [RHEL-116054] - smb: move File Attributes definitions into common/fscc.h (Paulo Alcantara) [RHEL-116054] - smb: update struct duplicate_extents_to_file_ex (Paulo Alcantara) [RHEL-116054] - smb: move file_notify_information to common/fscc.h (Paulo Alcantara) [RHEL-116054] - smb: move SMB2 Notify Action Flags into common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: move notify completion filter flags into common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb/client: add parentheses to NT error code definitions containing bitwise OR operator (Paulo Alcantara) [RHEL-116054] - smb: add documentation references for smb2 change notify definitions (Paulo Alcantara) [RHEL-116054] - smb/client: add 4 NT error code definitions (Paulo Alcantara) [RHEL-116054] - smb/client: fix NT_STATUS_UNABLE_TO_FREE_VM value (Paulo Alcantara) [RHEL-116054] - smb/client: fix NT_STATUS_DEVICE_DOOR_OPEN value (Paulo Alcantara) [RHEL-116054] - smb/client: fix NT_STATUS_NO_DATA_DETECTED value (Paulo Alcantara) [RHEL-116054] - smb/server: add comment to FileSystemName of FileFsAttributeInformation (Paulo Alcantara) [RHEL-116054] - smb/server: remove unused nterr.h (Paulo Alcantara) [RHEL-116054] - smb/server: rename include guard in smb_common.h (Paulo Alcantara) [RHEL-116054] - smb/client: update some SMB2 status strings (Paulo Alcantara) [RHEL-116054] - cifs: Remove dead function prototypes (Paulo Alcantara) [RHEL-116054] - smb/client: add two elements to smb2_error_map_table array (Paulo Alcantara) [RHEL-116054] - smb: rename to STATUS_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP (Paulo Alcantara) [RHEL-116054] - smb/client: remove unused elements from smb2_error_map_table array (Paulo Alcantara) [RHEL-116054] - smb/client: reduce loop count in map_smb2_to_linux_error() by half (Paulo Alcantara) [RHEL-116054] - smb: client: Add tracepoint for krb5 auth (Paulo Alcantara) [RHEL-116054] - smb: client: improve error message when creating SMB session (Paulo Alcantara) [RHEL-116054] - smb: client: relax session and tcon reconnect attempts (Paulo Alcantara) [RHEL-116054] - cifs: Fix handling of a beyond-EOF DIO/unbuffered read over SMB2 (Paulo Alcantara) [RHEL-116054] - cifs: client: allow changing multichannel mount options on remount (Paulo Alcantara) [RHEL-116054] - cifs: Do some preparation prior to organising the function declarations (Paulo Alcantara) [RHEL-116054] - cifs: Add a tracepoint to log EIO errors (Paulo Alcantara) [RHEL-116054] - cifs: Don't need state locking in smb2_get_mid_entry() (Paulo Alcantara) [RHEL-116054] - cifs: Remove the server pointer from smb_message (Paulo Alcantara) [RHEL-116054] - cifs: Fix specification of function pointers (Paulo Alcantara) [RHEL-116054] - cifs: Replace SendReceiveBlockingLock() with SendReceive() plus flags (Paulo Alcantara) [RHEL-116054] - cifs: Clean up some places where an extra kvec[] was required for rfc1002 (Paulo Alcantara) [RHEL-116054] - cifs: Make smb1's SendReceive() wrap cifs_send_recv() (Paulo Alcantara) [RHEL-116054] - cifs: Remove the RFC1002 header from smb_hdr (Paulo Alcantara) [RHEL-116054] - cifs: Fix handling of a beyond-EOF DIO/unbuffered read over SMB1 (Paulo Alcantara) [RHEL-116054] - cifs: client: enforce consistent handling of multichannel and max_channels (Paulo Alcantara) [RHEL-116054] - cifs: Use netfs_alloc/free_folioq_buffer() (Paulo Alcantara) [RHEL-116054] - smb: client: show smb lease key in open_dirs output (Paulo Alcantara) [RHEL-116054] - smb: client: show smb lease key in open_files output (Paulo Alcantara) [RHEL-116054] - ksmbd: ipc: fix use-after-free in ipc_msg_send_request (Paulo Alcantara) [RHEL-116054] - smb: client: relax WARN_ON_ONCE(SMBDIRECT_SOCKET_*) checks in recv_done() and smbd_conn_upcall() (Paulo Alcantara) [RHEL-116054] - smb: server: relax WARN_ON_ONCE(SMBDIRECT_SOCKET_*) checks in recv_done() and smb_direct_cm_handler() (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce SMBDIRECT_CHECK_STATUS_{WARN,DISCONNECT}() (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce SMBDIRECT_DEBUG_ERR_PTR() helper (Paulo Alcantara) [RHEL-116054] - ksmbd: vfs: fix race on m_flags in vfs_cache (Paulo Alcantara) [RHEL-116054] - ksmbd: Replace strcpy + strcat to improve convert_to_nt_pathname (Paulo Alcantara) [RHEL-116054] - smb: move FILE_SYSTEM_ATTRIBUTE_INFO to common/fscc.h (Paulo Alcantara) [RHEL-116054] - ksmbd: implement error handling for STATUS_INFO_LENGTH_MISMATCH in smb server (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in ksmbd_tree_connect_put under concurrency (Paulo Alcantara) [RHEL-116054] - ksmbd: server: avoid busy polling in accept loop (Paulo Alcantara) [RHEL-116054] - smb: move create_durable_reconn to common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: fix some warnings reported by scripts/checkpatch.pl (Paulo Alcantara) [RHEL-116054] - smb: do some cleanups (Paulo Alcantara) [RHEL-116054] - smb: move FILE_SYSTEM_SIZE_INFO to common/fscc.h (Paulo Alcantara) [RHEL-116054] - smb: move some duplicate struct definitions to common/fscc.h (Paulo Alcantara) [RHEL-116054] - smb: move list of FileSystemAttributes to common/fscc.h (Paulo Alcantara) [RHEL-116054] - smb: move SMB_NEGOTIATE_REQ to common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: move some duplicate definitions to common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: move create_durable_rsp_v2 to common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: move create_durable_handle_reconnect_v2 to common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: move create_durable_req_v2 to common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: move MAX_CIFS_SMALL_BUFFER_SIZE to common/smbglob.h (Paulo Alcantara) [RHEL-116054] - smb/client: fix CAP_BULK_TRANSFER value (Paulo Alcantara) [RHEL-116054] - ksmbd: skip lock-range check on equal size to avoid size==0 underflow (Paulo Alcantara) [RHEL-116054] - smb: move resume_key_ioctl_rsp to common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: move copychunk definitions to common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: move smb_sockaddr_in and smb_sockaddr_in6 to common/smb2pdu.h (Paulo Alcantara) [RHEL-116054] - smb: move SMB1_PROTO_NUMBER to common/smbglob.h (Paulo Alcantara) [RHEL-116054] - smb: move get_rfc1002_len() to common/smbglob.h (Paulo Alcantara) [RHEL-116054] - smb: move smb_version_values to common/smbglob.h (Paulo Alcantara) [RHEL-116054] - smb: rename common/cifsglob.h to common/smbglob.h (Paulo Alcantara) [RHEL-116054] - smb/server: update some misguided comment of smb2_0_server_cmds proc (Paulo Alcantara) [RHEL-116054] - smb/server: fix return value of smb2_oplock_break() (Paulo Alcantara) [RHEL-116054] - smb/server: fix return value of smb2_ioctl() (Paulo Alcantara) [RHEL-116054] - smb/server: fix return value of smb2_query_dir() (Paulo Alcantara) [RHEL-116054] - smb/server: fix return value of smb2_notify() (Paulo Alcantara) [RHEL-116054] - smb/server: fix return value of smb2_read() (Paulo Alcantara) [RHEL-116054] - afs: Fix uninit var in afs_alloc_anon_key() (Paulo Alcantara) [RHEL-116054] - afs: Fix delayed allocation of a cell's anonymous key (Paulo Alcantara) [RHEL-116054] - smb: client: fix memory leak in cifs_construct_tcon() (Paulo Alcantara) [RHEL-116054] - cifs: Add the smb3_read_* tracepoints to SMB1 (Paulo Alcantara) [RHEL-116054] - cifs: fix memory leak in smb3_fs_context_parse_param error path (Paulo Alcantara) [RHEL-116054] - smb: client: introduce close_cached_dir_locked() (Paulo Alcantara) [RHEL-116054] - smb: client: let smbd_disconnect_rdma_connection() turn CREATED into DISCONNECTED (Paulo Alcantara) [RHEL-116054] - smb: fix invalid username check in smb3_fs_context_parse_param() (Paulo Alcantara) [RHEL-116054] - smb: server: let smb_direct_disconnect_rdma_connection() turn CREATED into DISCONNECTED (Paulo Alcantara) [RHEL-116054] - ksmbd: close accepted socket when per-IP limit rejects connection (Paulo Alcantara) [RHEL-116054] - smb: server: rdma: avoid unmapping posted recv on accept failure (Paulo Alcantara) [RHEL-116054] - cifs: client: fix memory leak in smb3_fs_context_parse_param (Paulo Alcantara) [RHEL-116054] - smb: client: fix cifs_pick_channel when channel needs reconnect (Paulo Alcantara) [RHEL-116054] - smb: client: validate change notify buffer before copy (Paulo Alcantara) [RHEL-116054] - ksmbd: detect RDMA capable netdevs include IPoIB (Paulo Alcantara) [RHEL-116054] - ksmbd: detect RDMA capable lower devices when bridge and vlan netdev is used (Paulo Alcantara) [RHEL-116054] - smb: client: call smbd_destroy() in the same splace as kernel_sock_shutdown()/sock_release() (Paulo Alcantara) [RHEL-116054] - afs: Fix dynamic lookup to fail on cell lookup failure (Paulo Alcantara) [RHEL-116054] - smb: server: let smb_direct_cm_handler() call ib_drain_qp() after smb_direct_disconnect_rdma_work() (Paulo Alcantara) [RHEL-116054] - smb: server: call smb_direct_post_recv_credits() when the negotiation is done (Paulo Alcantara) [RHEL-116054] - ksmbd: transport_ipc: validate payload size before reading handle (Paulo Alcantara) [RHEL-116054] - cifs: fix typo in enable_gcm_256 module parameter (Paulo Alcantara) [RHEL-116054] - smb: server: let free_transport() wait for SMBDIRECT_SOCKET_DISCONNECTED (Paulo Alcantara) [RHEL-116054] - cifs: #include cifsglob.h before trace.h to allow structs in tracepoints (Paulo Alcantara) [RHEL-116054] - cifs: Call the calc_signature functions directly (Paulo Alcantara) [RHEL-116054] - cifs: Fix TCP_Server_Info::credits to be signed (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.send_io.lcredits.* (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.send_io.lcredits.* (Paulo Alcantara) [RHEL-116054] - smb: server: simplify sibling_list handling in smb_direct_flush_send_list/send_done (Paulo Alcantara) [RHEL-116054] - smb: server: smb_direct_disconnect_rdma_connection() already wakes all waiters on error (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.send_io.lcredits.* (Paulo Alcantara) [RHEL-116054] - smb: server: allocate enough space for RW WRs and ib_drain_qp() (Paulo Alcantara) [RHEL-116054] - cifs: Add a couple of missing smb3_rw_credits tracepoints (Paulo Alcantara) [RHEL-116054] - smb: client: allocate enough space for MR WRs and ib_drain_qp() (Paulo Alcantara) [RHEL-116054] - smb: client: let smbd_destroy() wait for SMBDIRECT_SOCKET_DISCONNECTED (Paulo Alcantara) [RHEL-116054] - smb: move some duplicate definitions to common/cifsglob.h (Paulo Alcantara) [RHEL-116054] - smb: client: let destroy_mr_list() keep smbdirect_mr_io memory if registered (Paulo Alcantara) [RHEL-116054] - ksmbd: fix recursive locking in RPC handle list access (Paulo Alcantara) [RHEL-116054] - smb/server: fix possible refcount leak in smb2_sess_setup() (Paulo Alcantara) [RHEL-116054] - smb/server: fix possible memory leak in smb2_read() (Paulo Alcantara) [RHEL-116054] - smb: client: let destroy_mr_list() call ib_dereg_mr() before ib_dma_unmap_sg() (Paulo Alcantara) [RHEL-116054] - smb: client: call ib_dma_unmap_sg if mr->sgt.nents is not 0 (Paulo Alcantara) [RHEL-116054] - smb: client: improve logic in smbd_deregister_mr() (Paulo Alcantara) [RHEL-116054] - smb: client: improve logic in smbd_register_mr() (Paulo Alcantara) [RHEL-116054] - smb: client: improve logic in allocate_mr_list() (Paulo Alcantara) [RHEL-116054] - smb: client: let destroy_mr_list() remove locked from the list (Paulo Alcantara) [RHEL-116054] - smb: client: let destroy_mr_list() call list_del(&mr->list) (Paulo Alcantara) [RHEL-116054] - smb: client: change smbd_deregister_mr() to return void (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_mr_io.{kref,mutex} and SMBDIRECT_MR_DISABLED (Paulo Alcantara) [RHEL-116054] - smb: client: Omit one redundant variable assignment in cifs_xattr_set() (Paulo Alcantara) [RHEL-116054] - smb: client: Return a status code only as a constant in sid_to_id() (Paulo Alcantara) [RHEL-116054] - smb: server: Use common error handling code in smb_direct_rdma_xmit() (Paulo Alcantara) [RHEL-116054] - cifs: update internal version number (Paulo Alcantara) [RHEL-116054] - cifs: Add comments for DeletePending assignments in open functions (Paulo Alcantara) [RHEL-116054] - cifs: Add fallback code path for cifs_mkdir_setinfo() (Paulo Alcantara) [RHEL-116054] - cifs: Allow fallback code in smb_set_file_info() also for directories (Paulo Alcantara) [RHEL-116054] - cifs: Query EA $LXMOD in cifs_query_path_info() for WSL reparse points (Paulo Alcantara) [RHEL-116054] - smb: client: remove redudant assignment in cifs_strict_fsync() (Paulo Alcantara) [RHEL-116054] - smb: client: fix race with fallocate(2) and AIO+DIO (Paulo Alcantara) [RHEL-116054] - smb: client: fix missing timestamp updates after utime(2) (Paulo Alcantara) [RHEL-116054] - smb: client: fix missing timestamp updates after ftruncate(2) (Paulo Alcantara) [RHEL-116054] - smb: client: fix missing timestamp updates with O_TRUNC (Paulo Alcantara) [RHEL-116054] - cifs: Fix copy_to_iter return value check (Paulo Alcantara) [RHEL-116054] - smb: client: batch SRV_COPYCHUNK entries to cut round trips (Paulo Alcantara) [RHEL-116054] - smb: client: Omit an if branch in smb2_find_smb_tcon() (Paulo Alcantara) [RHEL-116054] - smb: client: Return directly after a failed genlmsg_new() in cifs_swn_send_register_message() (Paulo Alcantara) [RHEL-116054] - smb: client: Use common code in cifs_do_create() (Paulo Alcantara) [RHEL-116054] - smb: client: Improve unlocking of a mutex in cifs_get_swn_reg() (Paulo Alcantara) [RHEL-116054] - smb: client: Return a status code only as a constant in cifs_spnego_key_instantiate() (Paulo Alcantara) [RHEL-116054] - smb: client: Use common code in cifs_lookup() (Paulo Alcantara) [RHEL-116054] - smb: client: Reduce the scopes for a few variables in two functions (Paulo Alcantara) [RHEL-116054] - cifs: client: force multichannel=off when max_channels=1 (Paulo Alcantara) [RHEL-116054] - smb: client: transport: minor indentation style fix (Paulo Alcantara) [RHEL-116054] - smb: client: transport: avoid reconnects triggered by pending task work (Paulo Alcantara) [RHEL-116054] - ksmbd: increase session and share hash table bits (Paulo Alcantara) [RHEL-116054] - ksmbd: replace connection list with hash table (Paulo Alcantara) [RHEL-116054] - ksmbd: add an error print when maximum IP connections limit is reached (Paulo Alcantara) [RHEL-116054] - ksmbd: add max ip connections parameter (Paulo Alcantara) [RHEL-116054] - ksmbd: fix error code overwriting in smb2_get_info_filesystem() (Paulo Alcantara) [RHEL-116054] - ksmbd: copy overlapped range within the same file (Paulo Alcantara) [RHEL-116054] - ksmbd: use sock_create_kern interface to create kernel socket (Paulo Alcantara) [RHEL-116054] - ksmbd: make ksmbd thread names distinct by client IP (Paulo Alcantara) [RHEL-116054] - ksmbd: Fix race condition in RPC handle list access (Paulo Alcantara) [RHEL-116054] - smb: client: fix crypto buffers in non-linear memory (Paulo Alcantara) [RHEL-116054] - smb: client: add tcon information to smb2_reconnect() debug messages (Paulo Alcantara) [RHEL-116054] - smb: server: let smb_direct_flush_send_list() invalidate a remote key first (Paulo Alcantara) [RHEL-116054] - smb: server: make use of ib_alloc_cq_any() instead of ib_alloc_cq() (Paulo Alcantara) [RHEL-116054] - smb: server: make consitent use of spin_lock_irq{save,restore}() in transport_rdma.c (Paulo Alcantara) [RHEL-116054] - smb: server: let {free_transport,smb_direct_disconnect_rdma_{work,connection}}() wake up all wait queues (Paulo Alcantara) [RHEL-116054] - smb: server: let smb_direct_disconnect_rdma_connection() disable all work but disconnect_work (Paulo Alcantara) [RHEL-116054] - smb: server: fill in smbdirect_socket.first_error on error (Paulo Alcantara) [RHEL-116054] - smb: server: let smb_direct_disconnect_rdma_connection() set SMBDIRECT_SOCKET_ERROR... (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_send_negotiate_response() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to {enqueue,get_first}_reassembly() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_post_send_data() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to post_sendmsg() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_create_header() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to manage_keep_alive_before_sending() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to manage_credits_prior_sending() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to calc_rw_credits() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to wait_for_rw_credits() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to wait_for_send_credits() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to wait_for_credits() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_flush_send_list() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_post_send() (Paulo Alcantara) [RHEL-116054] - smb: server: remove unused struct struct smb_direct_transport argument from smb_direct_send_ctx_init() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_{alloc,free}_sendmsg() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_connect() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_prepare_negotiation() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_accept_client() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_post_recv() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_create_qpair() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_qpair_handler() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_cm_handler() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_disconnect_rdma_connection() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_init_params() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_get_max_fr_pages() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to smb_direct_{create,destroy}_pools() (Paulo Alcantara) [RHEL-116054] - smb: server: pass struct smbdirect_socket to {get_free,put}_recvmsg() (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.workqueue (Paulo Alcantara) [RHEL-116054] - smb: server: implement correct keepalive and timeout handling for smbdirect (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.idle.immediate_work (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.rdma.legacy_iwarp (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket_parameters.{initiator_depth,responder_resources} (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket_parameters.negotiate_timeout_msec and change to 5s (Paulo Alcantara) [RHEL-116054] - smb: server: fill smbdirect_socket_parameters at the beginning and use the values from there (Paulo Alcantara) [RHEL-116054] - smb: server: pass ksmbd_transport to get_smbd_max_read_write_size() (Paulo Alcantara) [RHEL-116054] - smb: server: remove useless casts from KSMBD_TRANS/SMBD_TRANS (Paulo Alcantara) [RHEL-116054] - smb: server: replace smb_trans_direct_transfort() with SMBD_TRANS() (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.recv_io.{posted,credits} (Paulo Alcantara) [RHEL-116054] - smb: server: manage recv credits by counting posted recv_io and granted credits (Paulo Alcantara) [RHEL-116054] - smb: server: take the recv_credit_target from the negotiate req and always limit the range (Paulo Alcantara) [RHEL-116054] - smb: server: make use of struct smbdirect_rw_io (Paulo Alcantara) [RHEL-116054] - smb: server: make use smbdirect_socket.rw_io.credits (Paulo Alcantara) [RHEL-116054] - smb: server: make use of struct smbdirect_send_batch (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.send_io.credits.{count,wait_queue} (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.send_io.pending.{count,zero_wait_queue} (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.disconnect_work (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket_init() (Paulo Alcantara) [RHEL-116054] - smb: server: don't wait for info->send_pending == 0 on error (Paulo Alcantara) [RHEL-116054] - smb: server: move smb_direct_disconnect_rdma_work() into free_transport() (Paulo Alcantara) [RHEL-116054] - smb: server: only turn into SMBDIRECT_SOCKET_CONNECTED when negotiation is done (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.status_wait (Paulo Alcantara) [RHEL-116054] - smb: server: queue post_recv_credits_work in put_recvmsg() and avoid count_avail_recvmsg (Paulo Alcantara) [RHEL-116054] - smb: server: add a pr_info() when the server starts running (Paulo Alcantara) [RHEL-116054] - smb: server: make only use of wake_up[_all]() in transport_rdma.c (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.{send,recv}_io.mem.{cache,pool} (Paulo Alcantara) [RHEL-116054] - smb: server: make use of struct smbdirect_send_io (Paulo Alcantara) [RHEL-116054] - smb: server: make use of SMBDIRECT_RECV_IO_MAX_SGE (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.recv_io.reassembly.* (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket.recv_io.free.{list,lock} (Paulo Alcantara) [RHEL-116054] - smb: server: make use of struct smbdirect_recv_io (Paulo Alcantara) [RHEL-116054] - smb: server: make use of smbdirect_socket->recv_io.expected (Paulo Alcantara) [RHEL-116054] - smb: server: make use of common smbdirect_socket_parameters (Paulo Alcantara) [RHEL-116054] - smb: server: make use of common smbdirect_socket (Paulo Alcantara) [RHEL-116054] - smb: server: make use of common smbdirect.h (Paulo Alcantara) [RHEL-116054] - smb: server: make use of common smbdirect_pdu.h (Paulo Alcantara) [RHEL-116054] - smb: server: fix IRD/ORD negotiation with the client (Paulo Alcantara) [RHEL-116054] - smb: client: let smbd_post_send_iter() call ib_dma_map_single() for the header first (Paulo Alcantara) [RHEL-116054] - smb: client: defer calling ib_alloc_pd() after we are connected (Paulo Alcantara) [RHEL-116054] - smb: client: allocate smbdirect workqueue at the beginning of _smbd_get_connection() (Paulo Alcantara) [RHEL-116054] - smb: client: make consitent use of spin_lock_irq{save,restore}() in smbdirect.c (Paulo Alcantara) [RHEL-116054] - smb: client: let smbd_{destroy,disconnect_rdma_{work,connection}}() wake up all wait queues (Paulo Alcantara) [RHEL-116054] - smb: client: let smbd_disconnect_rdma_connection() disable all work but disconnect_work (Paulo Alcantara) [RHEL-116054] - smb: client: fill in smbdirect_socket.first_error on error (Paulo Alcantara) [RHEL-116054] - smb: client: let smbd_disconnect_rdma_connection() set SMBDIRECT_SOCKET_ERROR... (Paulo Alcantara) [RHEL-116054] - smb: client: remove unused struct smbdirect_socket argument of smbd_iter_to_mr() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to get_mr() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_negotiate() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_post_send_negotiate_req() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_ia_open() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_create_id() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_qp_async_error_upcall() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_conn_upcall() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_post_send_full_iter() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_post_send_empty() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_post_send_iter() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to manage_keep_alive_before_sending() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_post_send() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to manage_credits_prior_sending() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_post_recv() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to smbd_disconnect_rdma_connection() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to {allocate,destroy}_mr_list() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to {enqueue,_get_first}_reassembly() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to {allocate,destroy}_caches_and_workqueue() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to {allocate,destroy}_receive_buffers() (Paulo Alcantara) [RHEL-116054] - smb: client: pass struct smbdirect_socket to {get,put}_receive_buffer() (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.mr_io (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket_parameters.max_frmr_depth (Paulo Alcantara) [RHEL-116054] - smb: client: make use of struct smbdirect_mr_io (Paulo Alcantara) [RHEL-116054] - smb: client: add and use smbd_get_parameters() (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.workqueue (Paulo Alcantara) [RHEL-116054] - smb: client: move rdma_readwrite_threshold from smbd_connection to TCP_Server_Info (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.statistics (Paulo Alcantara) [RHEL-116054] - smb: client: remove unused smbd_connection.count_reassembly_queue (Paulo Alcantara) [RHEL-116054] - smb: client: remove unused smbd_connection->protocol (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.idle.{keepalive,immediate_work,timer_work} (Paulo Alcantara) [RHEL-116054] - smb: client: fix smbdirect keep alive handling to match the documentation (Paulo Alcantara) [RHEL-116054] - smb: client: send empty packets via send_immediate_work (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.rdma.legacy_iwarp (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket_parameters.{initiator_depth,responder_resources} (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket_parameters.{resolve_{addr,route},rdma_connect,negotiate}_timeout_msec (Paulo Alcantara) [RHEL-116054] - smb: client: fill smbdirect_socket_parameters at the beginning and use the values from there (Paulo Alcantara) [RHEL-116054] - smb: client: remove useless smbd_connection.send_immediate (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.recv_io.{posted,credits} (Paulo Alcantara) [RHEL-116054] - smb: client: count the number of posted recv_io messages in order to calculated credits (Paulo Alcantara) [RHEL-116054] - smb: client: limit the range of info->receive_credit_target (Paulo Alcantara) [RHEL-116054] - smb: client: remove info->wait_receive_queues handling in smbd_destroy() (Paulo Alcantara) [RHEL-116054] - smb: client: make use of ib_wc_status_msg() and skip IB_WC_WR_FLUSH_ERR logging (Paulo Alcantara) [RHEL-116054] - smb: client: queue post_recv_credits_work also if the peer raises the credit target (Paulo Alcantara) [RHEL-116054] - smb: client: make sure smbd_disconnect_rdma_work() doesn't run after smbd_destroy() took over (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.send_io.credits.{count,wait_queue} (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.send_io.pending.{count,{dec,zero}_wait_queue} (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.disconnect_work (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket_init() (Paulo Alcantara) [RHEL-116054] - smb: client: make only use of wake_up[_all]() in smbdirect.c (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.status_wait (Paulo Alcantara) [RHEL-116054] - smb: client: use status_wait and SMBDIRECT_SOCKET_RESOLVE_{ADDR,ROUTE}_RUNNING for completion (Paulo Alcantara) [RHEL-116054] - smb: client: use status_wait and SMBDIRECT_SOCKET_NEGOTIATE_RUNNING for completion (Paulo Alcantara) [RHEL-116054] - smb: client: adjust smbdirect related output of cifs_debug_data_proc_show() (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.first_error (Paulo Alcantara) [RHEL-116054] - smb: client/smbdirect: introduce SMBDIRECT_SOCKET_ERROR (Paulo Alcantara) [RHEL-116054] - smb: client/smbdirect: replace SMBDIRECT_SOCKET_CONNECTING with more detailed states (Paulo Alcantara) [RHEL-116054] - smb: client: fix sending the iwrap custom IRD/ORD negotiation messages (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: let smbdirect_socket_init() initialize all [delayed_]work_structs as disabled (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.mr_io.* (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket_parameters.max_frmr_depth (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce struct smbdirect_mr_io (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.workqueue (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.statistics (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.idle.{keepalive,immediate_work,timer_work} (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.rdma.legacy_iwarp (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket_parameters.{initiator_depth,responder_resources} (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket_parameters.{resolve_{addr,route},rdma_connect,negotiate}_timeout_msec (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.recv_io.{posted,credits} (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce struct smbdirect_rw_io (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.rw_io.credits (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce struct smbdirect_send_batch (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.send_io.credits.{count,wait_queue} (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.send_io.pending.{count,{dec,zero}_wait_queue} (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.disconnect_work (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket_init() (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.status_wait (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket_status_string() (Paulo Alcantara) [RHEL-116054] - include/linux/fs.h: add inode_lock_killable() (Paulo Alcantara) [RHEL-116054] - netfs: fix reference leak (Paulo Alcantara) [RHEL-116054] - afs: Fix potential null pointer dereference in afs_put_server (Paulo Alcantara) [RHEL-116054] - smb: server: use disable_work_sync in transport_rdma.c (Paulo Alcantara) [RHEL-116054] - smb: server: don't use delayed_work for post_recv_credits_work (Paulo Alcantara) [RHEL-116054] - smb: client: fix smbdirect_recv_io leak in smbd_negotiate() error path (Paulo Alcantara) [RHEL-116054] - smb: client: let smbd_destroy() call disable_work_sync(&info->post_send_credits_work) (Paulo Alcantara) [RHEL-116054] - smb: client: use disable[_delayed]_work_sync in smbdirect.c (Paulo Alcantara) [RHEL-116054] - smb: client: let recv_done verify data_offset, data_length and remaining_data_length (Paulo Alcantara) [RHEL-116054] - netfs: Prevent duplicate unlocking (Paulo Alcantara) [RHEL-116054] - ksmbd: smbdirect: verify remaining_data_length respects max_fragmented_recv_size (Paulo Alcantara) [RHEL-116054] - ksmbd: smbdirect: validate data_offset and data_length field of smb_direct_data_transfer (Paulo Alcantara) [RHEL-116054] - smb: server: let smb_direct_writev() respect SMB_DIRECT_MAX_SEND_SGES (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix untrusted unsigned subtract (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix unhandled errors in rxgk_verify_packet_integrity() (Paulo Alcantara) [RHEL-116054] - cifs: prevent NULL pointer dereference in UTF16 conversion (Paulo Alcantara) [RHEL-116054] - smb: client: fix spellings in comments (Paulo Alcantara) [RHEL-116054] - ksmbd: allow a filename to contain colons on SMB3.1.1 posix extensions (Paulo Alcantara) [RHEL-116054] - smb3 client: fix return code mapping of remap_file_range (Paulo Alcantara) [RHEL-116054] - iov_iter: iterate_folioq: fix handling of offset >= folio size (Paulo Alcantara) [RHEL-116054] - ksmbd: fix refcount leak causing resource not released (Paulo Alcantara) [RHEL-116054] - ksmbd: extend the connection limiting mechanism to support IPv6 (Paulo Alcantara) [RHEL-116054] - smb: server: split ksmbd_rdma_stop_listening() out of ksmbd_rdma_destroy() (Paulo Alcantara) [RHEL-116054] - smb: client: remove redundant lstrp update in negotiate protocol (Paulo Alcantara) [RHEL-116054] - cifs: update internal version number (Paulo Alcantara) [RHEL-116054] - smb: client: don't wait for info->send_pending == 0 on error (Paulo Alcantara) [RHEL-116054] - smb: client: fix mid_q_entry memleak leak with per-mid locking (Paulo Alcantara) [RHEL-116054] - smb3: fix for slab out of bounds on mount to ksmbd (Paulo Alcantara) [RHEL-116054] - cifs: avoid extra calls to strlen() in cifs_get_spnego_key() (Paulo Alcantara) [RHEL-116054] - cifs: Fix collect_sample() to handle any iterator type (Paulo Alcantara) [RHEL-116054] - smb: server: Fix extension string in ksmbd_extract_shortname() (Paulo Alcantara) [RHEL-116054] - ksmbd: limit repeated connections from clients with the same IP (Paulo Alcantara) [RHEL-116054] - smb: client: only use a single wait_queue to monitor smbdirect connection status (Paulo Alcantara) [RHEL-116054] - smb: client: don't call init_waitqueue_head(&info->conn_wait) twice in _smbd_get_connection (Paulo Alcantara) [RHEL-116054] - smb: client: improve logging in smbd_conn_upcall() (Paulo Alcantara) [RHEL-116054] - smb: client: return an error if rdma_connect does not return within 5 seconds (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.{send,recv}_io.mem.{cache,pool} (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: add smbdirect_socket.{send,recv}_io.mem.{cache,pool} (Paulo Alcantara) [RHEL-116054] - smb: client: make use of struct smbdirect_send_io (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce struct smbdirect_send_io (Paulo Alcantara) [RHEL-116054] - smb: client: make use of SMBDIRECT_RECV_IO_MAX_SGE (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: add SMBDIRECT_RECV_IO_MAX_SGE (Paulo Alcantara) [RHEL-116054] - smb: client: remove unused enum smbd_connection_status (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket.recv_io.reassembly.* (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.recv_io.reassembly.* (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smb: smbdirect_socket.recv_io.free.{list,lock} (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.recv_io.free.{list,lock} (Paulo Alcantara) [RHEL-116054] - smb: client: make use of struct smbdirect_recv_io (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce struct smbdirect_recv_io (Paulo Alcantara) [RHEL-116054] - smb: client: make use of smbdirect_socket->recv_io.expected (Paulo Alcantara) [RHEL-116054] - smb: smbdirect: introduce smbdirect_socket.recv_io.expected (Paulo Alcantara) [RHEL-116054] - smb: client: remove unused smbd_connection->fragment_reassembly_remaining (Paulo Alcantara) [RHEL-116054] - smb: client: let recv_done() avoid touching data_transfer after cleanup/move (Paulo Alcantara) [RHEL-116054] - smb: client: let recv_done() cleanup before notifying the callers. (Paulo Alcantara) [RHEL-116054] - smb: client: make sure we call ib_dma_unmap_single() only if we called ib_dma_map_single already (Paulo Alcantara) [RHEL-116054] - smb: client: remove separate empty_packet_queue (Paulo Alcantara) [RHEL-116054] - smb: client: let send_done() cleanup before calling smbd_disconnect_rdma_connection() (Paulo Alcantara) [RHEL-116054] - smb: server: let recv_done() avoid touching data_transfer after cleanup/move (Paulo Alcantara) [RHEL-116054] - smb: server: let recv_done() consistently call put_recvmsg/smb_direct_disconnect_rdma_connection (Paulo Alcantara) [RHEL-116054] - smb: server: make sure we call ib_dma_unmap_single() only if we called ib_dma_map_single already (Paulo Alcantara) [RHEL-116054] - smb: server: remove separate empty_recvmsg_queue (Paulo Alcantara) [RHEL-116054] - ksmbd: fix corrupted mtime and ctime in smb2_open (Paulo Alcantara) [RHEL-116054] - ksmbd: fix Preauh_HashValue race condition (Paulo Alcantara) [RHEL-116054] - ksmbd: check return value of xa_store() in krb5_authenticate (Paulo Alcantara) [RHEL-116054] - ksmbd: fix null pointer dereference error in generate_encryptionkey (Paulo Alcantara) [RHEL-116054] - crypto: krb5 - Fix memory leak in krb5_test_one_prf() (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix to use conn aborts for conn-wide failures (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix transmission of an abort in response to an abort (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix notification vs call-release vs recvmsg (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix recv-recv race of completed call (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix irq-disabled in local_bh_enable() (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix oops due to non-existence of prealloc backlog struct (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix bug due to prealloc collision (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix over large frame size warning (Paulo Alcantara) [RHEL-116054] - ksmbd: fix potential use-after-free in oplock/lease break ack (Paulo Alcantara) [RHEL-116054] - ksmbd: fix a mount write count leak in ksmbd_vfs_kern_path_locked() (Paulo Alcantara) [RHEL-116054] - smb: server: make use of rdma_destroy_qp() (Paulo Alcantara) [RHEL-116054] - ksmbd: handle set/get info file for streamed file (Paulo Alcantara) [RHEL-116054] - ksmbd: fix null pointer dereference in destroy_previous_session (Paulo Alcantara) [RHEL-116054] - ksmbd: add free_transport ops in ksmbd connection (Paulo Alcantara) [RHEL-116054] - rxrpc: Fix return from none_validate_challenge() (Paulo Alcantara) [RHEL-116054] - ksmbd: allow a filename to contain special characters on SMB3.1.1 posix extension (Paulo Alcantara) [RHEL-116054] - ksmbd: provide zero as a unique ID to the Mac client (Paulo Alcantara) [RHEL-116054] - ksmbd: remove unnecessary softdep on crc32 (Paulo Alcantara) [RHEL-116054] - ksmbd: use SHA-256 library API instead of crypto_shash API (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Fix change to use SG miter to use offset (Paulo Alcantara) [RHEL-116054] - rxrpc: rxgk: Fix some reference count leaks (Paulo Alcantara) [RHEL-116054] - rxrpc: Remove deadcode (Paulo Alcantara) [RHEL-116054] - rxrpc: rxgk: Set error code in rxgk_yfs_decode_ticket() (Paulo Alcantara) [RHEL-116054] - rxrpc: rxperf: Add test RxGK server keys (Paulo Alcantara) [RHEL-116054] - rxrpc: Add more CHALLENGE/RESPONSE packet tracing (Paulo Alcantara) [RHEL-116054] - afs: Use rxgk RESPONSE to pass token for callback channel (Paulo Alcantara) [RHEL-116054] - rxrpc: Display security params in the afs_cb_call tracepoint (Paulo Alcantara) [RHEL-116054] - rxrpc: Allow the app to store private data on peer structs (Paulo Alcantara) [RHEL-116054] - rxrpc: rxgk: Implement connection rekeying (Paulo Alcantara) [RHEL-116054] - rxrpc: rxgk: Implement the yfs-rxgk security class (GSSAPI) (Paulo Alcantara) [RHEL-116054] - rxrpc: rxgk: Provide infrastructure and key derivation (Paulo Alcantara) [RHEL-116054] - rxrpc: Add YFS RxGK (GSSAPI) security class (Paulo Alcantara) [RHEL-116054] - rxrpc: Add the security index for yfs-rxgk (Paulo Alcantara) [RHEL-116054] - rxrpc: Allow CHALLENGEs to the passed to the app for a RESPONSE (Paulo Alcantara) [RHEL-116054] - rxrpc: Remove some socket lock acquire/release annotations (Paulo Alcantara) [RHEL-116054] - rxrpc: Pull out certain app callback funcs into an ops table (Paulo Alcantara) [RHEL-116054] - rxrpc: kdoc: Update function descriptions and add link from rxrpc.rst (Paulo Alcantara) [RHEL-116054] - ksmbd: use list_first_entry_or_null for opinfo_get_list() (Paulo Alcantara) [RHEL-116054] - ksmbd: fix rename failure (Paulo Alcantara) [RHEL-116054] - ksmbd: fix stream write failure (Paulo Alcantara) [RHEL-116054] - ksmbd: Fix UAF in __close_file_table_ids (Paulo Alcantara) [RHEL-116054] - ksmbd: prevent out-of-bounds stream writes by validating *pos (Paulo Alcantara) [RHEL-116054] - ksmbd: fix memory leak in parse_lease_state() (Paulo Alcantara) [RHEL-116054] - ksmbd: prevent rename with empty string (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in session logoff (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in kerberos authentication (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in ksmbd_session_rpc_open (Paulo Alcantara) [RHEL-116054] - smb: server: smb2pdu: check return value of xa_store() (Paulo Alcantara) [RHEL-116054] - ksmbd: Prevent integer overflow in calculation of deadtime (Paulo Alcantara) [RHEL-116054] - ksmbd: fix the warning from __kernel_write_iter (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in smb_break_all_levII_oplock() (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in __smb2_lease_break_noti() (Paulo Alcantara) [RHEL-116054] - ksmbd: fix WARNING "do not call blocking ops when !TASK_RUNNING" (Paulo Alcantara) [RHEL-116054] - ksmbd: Fix dangling pointer in krb_authenticate (Paulo Alcantara) [RHEL-116054] - ksmbd: fix null pointer dereference in alloc_preauth_hash() (Paulo Alcantara) [RHEL-116054] - ksmbd: validate zero num_subauth before sub_auth is accessed (Paulo Alcantara) [RHEL-116054] - ksmbd: fix overflow in dacloffset bounds check (Paulo Alcantara) [RHEL-116054] - ksmbd: fix session use-after-free in multichannel connection (Paulo Alcantara) [RHEL-116054] - ksmbd: fix r_count dec/increment mismatch (Paulo Alcantara) [RHEL-116054] - ksmbd: fix multichannel connection failure (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in ksmbd_sessions_deregister() (Paulo Alcantara) [RHEL-116054] - ksmbd: use ib_device_get_netdev() instead of calling ops.get_netdev (Paulo Alcantara) [RHEL-116054] - ksmbd: use aead_request_free to match aead_request_alloc (Paulo Alcantara) [RHEL-116054] - Revert "ksmbd: fix missing RDMA-capable flag for IPoIB device in ksmbd_rdma_capable_netdev()" (Paulo Alcantara) [RHEL-116054] - ksmbd: add bounds check for create lease context (Paulo Alcantara) [RHEL-116054] - ksmbd: add bounds check for durable handle context (Paulo Alcantara) [RHEL-116054] - ksmbd: make SMB_SERVER_KERBEROS5 enable by default (Paulo Alcantara) [RHEL-116054] - ksmbd: Use str_read_write() and str_true_false() helpers (Paulo Alcantara) [RHEL-116054] - crypto: krb5 - Use SG miter instead of doing it by hand (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Implement crypto self-testing (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Implement the Camellia enctypes from rfc6803 (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Implement the AES enctypes from rfc8009 (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Implement the AES enctypes from rfc3962 (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Implement the Kerberos5 rfc3961 get_mic and verify_mic (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Implement the Kerberos5 rfc3961 encrypt and decrypt functions (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Provide RFC3961 setkey packaging functions (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Implement the Kerberos5 rfc3961 key derivation (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Provide infrastructure and key derivation (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Add an API to perform requests (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Add an API to alloc and prepare a crypto object (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Add an API to query the layout of the crypto section (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Implement Kerberos crypto core (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Add some constants out of sunrpc headers (Paulo Alcantara) [RHEL-116054] - crypto/krb5: Test manager data (Paulo Alcantara) [RHEL-116054] - crypto: Add 'krb5enc' hash and cipher AEAD algorithm (Paulo Alcantara) [RHEL-116054] - ksmbd: prevent connection release during oplock break notification (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in ksmbd_free_work_struct (Paulo Alcantara) [RHEL-116054] - ksmbd: fix incorrect validation for num_aces field of smb_acl (Paulo Alcantara) [RHEL-116054] - ksmbd: fix bug on trap in smb2_lock (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in smb2_lock (Paulo Alcantara) [RHEL-116054] - ksmbd: fix type confusion via race condition when using ipc_msg_send_request (Paulo Alcantara) [RHEL-116054] - ksmbd: fix out-of-bounds in parse_sec_desc() (Paulo Alcantara) [RHEL-116054] - ksmbd: fix integer overflows on 32 bit systems (Paulo Alcantara) [RHEL-116054] - ksmbd: browse interfaces list on FSCTL_QUERY_INTERFACE_INFO IOCTL (Paulo Alcantara) [RHEL-116054] - ksmbd: Remove unused functions (Paulo Alcantara) [RHEL-116054] - ksmbd: Implement new SMB3 POSIX type (Paulo Alcantara) [RHEL-116054] - ksmbd: fix unexpectedly changed path in ksmbd_vfs_kern_path_locked (Paulo Alcantara) [RHEL-116054] - ksmbd: Remove unneeded if check in ksmbd_rdma_capable_netdev() (Paulo Alcantara) [RHEL-116054] - ksmbd: fix a missing return value check bug (Paulo Alcantara) [RHEL-116054] - ksmbd: conn lock to serialize smb2 negotiate (Paulo Alcantara) [RHEL-116054] - ksmbd: fix broken transfers when exceeding max simultaneous operations (Paulo Alcantara) [RHEL-116054] - ksmbd: count all requests in req_running counter (Paulo Alcantara) [RHEL-116054] - ksmbd: set ATTR_CTIME flags when setting mtime (Paulo Alcantara) [RHEL-116054] - ksmbd: fix racy issue from session lookup and expire (Paulo Alcantara) [RHEL-116054] - ksmbd: retry iterate_dir in smb2_query_dir (Paulo Alcantara) [RHEL-116054] - ksmbd: align aux_payload_buf to avoid OOB reads in cryptographic operations (Paulo Alcantara) [RHEL-116054] - ksmbd: fix Out-of-Bounds Write in ksmbd_vfs_stream_write (Paulo Alcantara) [RHEL-116054] - ksmbd: fix Out-of-Bounds Read in ksmbd_vfs_stream_read (Paulo Alcantara) [RHEL-116054] - smb: server: Fix building with GCC 15 (Paulo Alcantara) [RHEL-116054] - ksmbd: fix use-after-free in SMB request handling (Paulo Alcantara) [RHEL-116054] - ksmbd: add debug print for pending request during server shutdown (Paulo Alcantara) [RHEL-116054] - ksmbd: add netdev-up/down event debug print (Paulo Alcantara) [RHEL-116054] - ksmbd: add debug prints to know what smb2 requests were received (Paulo Alcantara) [RHEL-116054] - ksmbd: add debug print for rdma capable (Paulo Alcantara) [RHEL-116054] - ksmbd: use msleep instaed of schedule_timeout_interruptible() (Paulo Alcantara) [RHEL-116054] - ksmbd: use __GFP_RETRY_MAYFAIL (Paulo Alcantara) [RHEL-116054] - ksmbd: fix malformed unsupported smb1 negotiate response (Paulo Alcantara) [RHEL-116054] - Bluetooth: hci_sync: fix race in hci_cmd_sync_dequeue_once (CKI Backport Bot) [RHEL-136261] {CVE-2025-40318} - platform/x86: intel-uncore-freq: Add additional client processors (Steve Best) [RHEL-129946] - genirq/manage: Reduce priority of forced secondary interrupt handler (Crystal Wood) [RHEL-102562] - cpufreq: intel_pstate: Fix object lifecycle issue in update_qos_request() (Steve Best) [RHEL-129704] - selftests: net-drv: stats: sanity check FEC histogram (Mohammad Heib) [RHEL-123858] - ethtool: add FEC bins histogram report (Mohammad Heib) [RHEL-123858] - net: ethtool: remove duplicated mm.o from Makefile (Mohammad Heib) [RHEL-123858] - net: ethtool: tsconfig: set command must provide a reply (Mohammad Heib) [RHEL-123858] - net: virtio_net: add get_rxrings ethtool callback for RX ring queries (Mohammad Heib) [RHEL-123858] - net: ethtool: use the new helper in rss_set_prep_indir() (Mohammad Heib) [RHEL-123858] - net: ethtool: update set_rxfh_indir to use ethtool_get_rx_ring_count helper (Mohammad Heib) [RHEL-123858] - net: ethtool: update set_rxfh to use ethtool_get_rx_ring_count helper (Mohammad Heib) [RHEL-123858] - net: ethtool: add get_rx_ring_count callback to optimize RX ring queries (Mohammad Heib) [RHEL-123858] - net: ethtool: remove the duplicated handling from ethtool_get_rxrings (Mohammad Heib) [RHEL-123858] - net: ethtool: add support for ETHTOOL_GRXRINGS ioctl (Mohammad Heib) [RHEL-123858] - net: ethtool: pass the num of RX rings directly to ethtool_copy_validate_indir (Mohammad Heib) [RHEL-123858] - net: ethtool: handle EOPNOTSUPP from ethtool get_ts_info() method (Mohammad Heib) [RHEL-123858] - net: ethtool: fix wrong type used in struct kernel_ethtool_ts_info (Mohammad Heib) [RHEL-123858] - selftests: drv-net: add test for RSS on flow label (Mohammad Heib) [RHEL-123858] - selftests: drv-net: add rss_api to the Makefile (Mohammad Heib) [RHEL-123858] - net: ethtool: support including Flow Label in the flow hash for RSS (Mohammad Heib) [RHEL-123858] - netlink: specs: ethtool: fix module EEPROM input/output arguments (Mohammad Heib) [RHEL-123858] - selftests: drv-net: rss_api: context create and delete tests (Mohammad Heib) [RHEL-123858] - ethtool: rss: support removing contexts via Netlink (Mohammad Heib) [RHEL-123858] - ethtool: rss: support creating contexts via Netlink (Mohammad Heib) [RHEL-123858] - ethtool: move ethtool_rxfh_ctx_alloc() to common code (Mohammad Heib) [RHEL-123858] - ethtool: rss: factor out populating response from context (Mohammad Heib) [RHEL-123858] - ethtool: rss: factor out allocating memory for response (Mohammad Heib) [RHEL-123858] - ethtool: rejig the RSS notification machinery for more types (Mohammad Heib) [RHEL-123858] - ethtool: assert that drivers with sym hash are consistent for RSS contexts (Mohammad Heib) [RHEL-123858] - selftests: drv-net: rss_api: test input-xfrm and hash fields (Mohammad Heib) [RHEL-123858] - ethtool: rss: support setting flow hashing fields (Mohammad Heib) [RHEL-123858] - ethtool: rss: support setting input-xfrm via Netlink (Mohammad Heib) [RHEL-123858] - netlink: specs: define input-xfrm enum in the spec (Mohammad Heib) [RHEL-123858] - selftests: drv-net: rss_api: test setting hashing key via Netlink (Mohammad Heib) [RHEL-123858] - ethtool: rss: support setting hkey via Netlink (Mohammad Heib) [RHEL-123858] - ethtool: rss: support setting hfunc via Netlink (Mohammad Heib) [RHEL-123858] - selftests: drv-net: rss_api: test setting indirection table via Netlink (Mohammad Heib) [RHEL-123858] - tools: ynl: support packing binary arrays of scalars (Mohammad Heib) [RHEL-123858] - selftests: drv-net: rss_api: factor out checking min queue count (Mohammad Heib) [RHEL-123858] - ethtool: rss: initial RSS_SET (indirection table handling) (Mohammad Heib) [RHEL-123858] - selftests: drv-net: test RSS header field configuration (Mohammad Heib) [RHEL-123858] - ethtool: rss: report which fields are configured for hashing (Mohammad Heib) [RHEL-123858] - ethtool: mark ETHER_FLOW as usable for Rx hash (Mohammad Heib) [RHEL-123858] - tools: ynl: decode enums in auto-ints (Mohammad Heib) [RHEL-123858] - ethtool: rss: make sure dump takes the rss lock (Mohammad Heib) [RHEL-123858] - net: ethtool: reduce indent for _rxfh_context ops (Mohammad Heib) [RHEL-123858] - net: ethtool: remove the compat code for _rxfh_context ops (Mohammad Heib) [RHEL-123858] - eth: mlx5: migrate to the *_rxfh_context ops (Mohammad Heib) [RHEL-123858] - eth: ice: drop the dead code related to rss_contexts (Mohammad Heib) [RHEL-123858] - eth: otx2: migrate to the *_rxfh_context ops (Mohammad Heib) [RHEL-123858] - net: ethtool: fix leaking netdev ref if ethnl_default_parse() failed (Mohammad Heib) [RHEL-123858] - net: ethtool: move get_rxfh callback under the rss_lock (Mohammad Heib) [RHEL-123858] - net: ethtool: move rxfh_fields callbacks under the rss_lock (Mohammad Heib) [RHEL-123858] - net: ethtool: take rss_lock for all rxfh changes (Mohammad Heib) [RHEL-123858] - net: ethtool: avoid OOB accesses in PAUSE_SET (Mohammad Heib) [RHEL-123858] - netlink: specs: ethtool: replace underscores with dashes in names (Mohammad Heib) [RHEL-123858] - selftests: drv-net: test RSS Netlink notifications (Mohammad Heib) [RHEL-123858] - doc: ethtool: mark ETHTOOL_GRXFHINDIR as reimplemented (Mohammad Heib) [RHEL-123858] - net: ethtool: rss: add notifications (Mohammad Heib) [RHEL-123858] - net: ethtool: copy req_info from SET to NTF (Mohammad Heib) [RHEL-123858] - net: ethtool: remove the data argument from ethtool_notify() (Mohammad Heib) [RHEL-123858] - net: ethtool: call .parse_request for SET handlers (Mohammad Heib) [RHEL-123858] - net: ethtool: dynamically allocate full req size req (Mohammad Heib) [RHEL-123858] - netlink: specs: add the multicast group name to spec (Mohammad Heib) [RHEL-123858] - eth: Update rmon hist range (Mohammad Heib) [RHEL-123858] - net: Add support for providing the PTP hardware source in tsinfo (Mohammad Heib) [RHEL-123858] - net: ethtool: netlink: Use netdev_hold for dumpit() operations (Mohammad Heib) [RHEL-123858] - net: ethtool: phy: Convert the PHY_GET command to generic phy dump (Mohammad Heib) [RHEL-123858] - net: ethtool: Introduce per-PHY DUMP operations (Mohammad Heib) [RHEL-123858] - net: ethtool: Adjust exactly ETH_GSTRING_LEN-long stats to use memcpy (Mohammad Heib) [RHEL-123858] - net: freescale: use ethtool string helpers (Mohammad Heib) [RHEL-123858] - compiler_types: Introduce __nonstring_array (Mohammad Heib) [RHEL-123858] - net: ethtool: fix get_ts_stats() documentation (Mohammad Heib) [RHEL-123858] - net: fix memory leak in skb_segment_list for GRO packets (Mohammad Heib) [RHEL-104436] - ipv6: fix a BUG in rt6_get_pcpu_route() under PREEMPT_RT (Hangbin Liu) [RHEL-133463] - ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() (Hangbin Liu) [RHEL-133463] - selftests: fib_tests: add fib6 from ra to static test (Hangbin Liu) [RHEL-133463] - ipv6: clear RA flags when adding a static route (Hangbin Liu) [RHEL-133463] - calipso: Fix null-ptr-deref in calipso_req_{set,del}attr(). (Hangbin Liu) [RHEL-133463] - Documentation: RCU: Wrap kvm-remote.sh rerun snippet in literal code block (Čestmír Kalina) [RHEL-114406] - redhat: config: disable RCU_TORTURE_TEST_{CHK_RDR_STATE,LOG_CPU,LOG_GP} (Čestmír Kalina) [RHEL-114406] - refscale: Use kcalloc() instead of kzalloc() (Čestmír Kalina) [RHEL-114406] - rcutorture: Use kcalloc() instead of kzalloc() (Čestmír Kalina) [RHEL-114406] - rcutorture: Delay forward-progress testing until boot completes (Čestmír Kalina) [RHEL-114406] - torture: Delay CPU-hotplug operations until boot completes (Čestmír Kalina) [RHEL-114406] - rcutorture: Delay rcutorture readers and writers until boot completes (Čestmír Kalina) [RHEL-114406] - rcutorture: Suppress "Writer stall state" reports during boot (Čestmír Kalina) [RHEL-114406] - rcutorture: Fix jitter.sh spin time (Čestmír Kalina) [RHEL-114406] - srcu/tiny: Remove preempt_disable/enable() in srcu_gp_start_if_needed() (Čestmír Kalina) [RHEL-114406] - Documentation: Fix RCU typos (Čestmír Kalina) [RHEL-114406] - rcu: add rcu_read_lock_dont_migrate() (Čestmír Kalina) [RHEL-114406] - rcu: Fix racy re-initialization of irq_work causing hangs (Čestmír Kalina) [RHEL-114406] - refscale: Check that nreaders and loops multiplication doesn't overflow (Čestmír Kalina) [RHEL-114406] - rcu: Fix delayed execution of hurry callbacks (Čestmír Kalina) [RHEL-114406] - rcu/nocb: Fix possible invalid rdp's->nocb_cb_kthread pointer access (Čestmír Kalina) [RHEL-114406] - rcutorture: Make BUSTED scenario check and log readers (Čestmír Kalina) [RHEL-114406] - rcutorture: Fix rcutorture_one_extend_check() splat in RT kernels (Čestmír Kalina) [RHEL-114406] - rcutorture: Make Trivial RCU ignore onoff_interval and shuffle_interval (Čestmír Kalina) [RHEL-114406] - rcutorture: Print number of RCU up/down readers and migrations (Čestmír Kalina) [RHEL-114406] - rcutorture: Check for no up/down readers at task level (Čestmír Kalina) [RHEL-114406] - rcutorture: Check for ->up_read() without matching ->down_read() (Čestmír Kalina) [RHEL-114406] - rcutorture: Complain if an ->up_read() is delayed more than 10 seconds (Čestmír Kalina) [RHEL-114406] - rcutorture: Pull rcu_torture_updown() loop body into new function (Čestmír Kalina) [RHEL-114406] - rcutorture: Add tests for SRCU up/down reader primitives (Čestmír Kalina) [RHEL-114406] - rcutorture: Print only one rtort_pipe_count splat (Čestmír Kalina) [RHEL-114406] - rcutorture: Start rcu_torture_writer() after rcu_torture_reader() (Čestmír Kalina) [RHEL-114406] - torture: Make torture.sh --allmodconfig testing fail on warnings (Čestmír Kalina) [RHEL-114406] - torture: Add "ERROR" diagnostic for testing kernel-build output (Čestmír Kalina) [RHEL-114406] - torture: Make torture.sh tolerate runs having bad kvm.sh arguments (Čestmír Kalina) [RHEL-114406] - torture: Add textid.txt file to --do-allmodconfig and --do-rcu-rust runs (Čestmír Kalina) [RHEL-114406] - torture: Extract testid.txt generation to separate script (Čestmír Kalina) [RHEL-114406] - torture: Suppress "find" diagnostics from torture.sh --do-none run (Čestmír Kalina) [RHEL-114406] - torture: Provide EXPERT Kconfig option for arm64 KCSAN torture.sh runs (Čestmír Kalina) [RHEL-114406] - torture: Default --no-clocksourcewd on arm64 (Čestmír Kalina) [RHEL-114406] - torture: Default --no-rcutasksflavors on arm64 (Čestmír Kalina) [RHEL-114406] - torture: Make torture.sh KCSAN runs set CONFIG_RCU_TORTURE_TEST_CHK_RDR_STATE=y (Čestmír Kalina) [RHEL-114406] - torture: Permit multiple space characters in kvm.sh --kconfig argument (Čestmír Kalina) [RHEL-114406] - torture: Suppress torture.sh "Zero time" messages for disabled tests (Čestmír Kalina) [RHEL-114406] - rcu: Document concurrent quiescent state reporting for offline CPUs (Čestmír Kalina) [RHEL-114406] - rcu: Document separation of rcu_state and rnp's gp_seq (Čestmír Kalina) [RHEL-114406] - rcu: Document GP init vs hotplug-scan ordering requirements (Čestmír Kalina) [RHEL-114406] - rcu: Refactor expedited handling check in rcu_read_unlock_special() (Čestmír Kalina) [RHEL-114406] - rcu: Fix rcu_read_unlock() deadloop due to IRQ work (Čestmír Kalina) [RHEL-114406] - Documentation/kernel-parameters: Update rcu_normal_wake_from_gp doc (Čestmír Kalina) [RHEL-114406] - rcu: Enable rcu_normal_wake_from_gp on small systems (Čestmír Kalina) [RHEL-114406] - rcu: Protect ->defer_qs_iw_pending from data race (Čestmír Kalina) [RHEL-114406] - rcu: Robustify rcu_is_cpu_rrupt_from_idle() (Čestmír Kalina) [RHEL-114406] - rcu/exp: Warn on QS requested on dying CPU (Čestmír Kalina) [RHEL-114406] - rcu/exp: Remove needless CPU up quiescent state report (Čestmír Kalina) [RHEL-114406] - rcu/exp: Remove confusing needless full barrier on task unblock (Čestmír Kalina) [RHEL-114406] - rcu/exp: Protect against early QS report (Čestmír Kalina) [RHEL-114406] - rcu: Move rcu_stall related sysctls into rcu/tree_stall.h (Čestmír Kalina) [RHEL-114406] - rcu: Return early if callback is not specified (Čestmír Kalina) [RHEL-114406] - kernel/rcu/tree_stall: add /sys/kernel/rcu_stall_count (Čestmír Kalina) [RHEL-114406] - kernel/rcu/tree_stall: add /sys/kernel/rcu_stall_count (Čestmír Kalina) [RHEL-114406] - rcutorture: Perform more frequent testing of ->gpwrap (Čestmír Kalina) [RHEL-114406] - torture: Add testing of RCU's Rust bindings to torture.sh (Čestmír Kalina) [RHEL-114406] - torture: Add --do-{,no-}normal to torture.sh (Čestmír Kalina) [RHEL-114406] - checkpatch: Deprecate srcu_read_lock_lite() and srcu_read_unlock_lite() (Čestmír Kalina) [RHEL-114406] - rcutorture: Comment invocations of tick_dep_set_task() (Čestmír Kalina) [RHEL-114406] - rcutorture: Make torture.sh --do-rt use CONFIG_PREEMPT_RT (Čestmír Kalina) [RHEL-114406] - rcutorture: Split out beginning and end from rcu_torture_one_read() (Čestmír Kalina) [RHEL-114406] - rcutorture: Make srcu_lockdep.sh check reader-conflict handling (Čestmír Kalina) [RHEL-114406] - rcutorture: Make srcu_lockdep.sh check kernel Kconfig (Čestmír Kalina) [RHEL-114406] - srcu: Use rcu_seq_done_exact() for polling API (Čestmír Kalina) [RHEL-114406] - rcu: Comment on the extraneous delta test on rcu_seq_done_exact() (Čestmír Kalina) [RHEL-114406] - rcu: Add warning to ensure rcu_seq_done_exact() is working (Čestmír Kalina) [RHEL-114406] - rcu: Replace magic number with meaningful constant in rcu_seq_done_exact() (Čestmír Kalina) [RHEL-114406] - rcuscale: using kcalloc() to relpace kmalloc() (Čestmír Kalina) [RHEL-114406] - doc/RCU/listRCU: refine example code for eliminating stale data (Čestmír Kalina) [RHEL-114406] - doc: Update LWN RCU API links in whatisRCU.rst (Čestmír Kalina) [RHEL-114406] - rcu/cpu_stall_cputime: fix the hardirq count for x86 architecture (Čestmír Kalina) [RHEL-114406] - Revert "rcu/nocb: Fix rcuog wake-up from offline softirq" (Čestmír Kalina) [RHEL-114406] - rcu: Remove swake_up_one_online() bandaid (Čestmír Kalina) [RHEL-114406] - rcu-tasks: Always inline rcu_irq_work_resched() (Čestmír Kalina) [RHEL-114406] - srcu: Make FORCE_NEED_SRCU_NMI_SAFE depend on RCU_EXPERT (Čestmír Kalina) [RHEL-114406] - types: move struct rcuwait into types.h (Čestmír Kalina) [RHEL-114406] - torture: Make SRCU lockdep testing use srcu_read_lock_nmisafe() (Čestmír Kalina) [RHEL-114406] - srcu: Add FORCE_NEED_SRCU_NMI_SAFE Kconfig for testing (Čestmír Kalina) [RHEL-114406] - rcutorture: Complain when invalid SRCU reader_flavor is specified (Čestmír Kalina) [RHEL-114406] - rcutorture: Move RCU_TORTURE_TEST_{CHK_RDR_STATE,LOG_CPU} to bool (Čestmír Kalina) [RHEL-114406] - rcutorture: Make cur_ops->format_gp_seqs take buffer length (Čestmír Kalina) [RHEL-114406] - rcutorture: Add ftrace-compatible timestamp to GP# failure/close-call output (Čestmír Kalina) [RHEL-114406] - rcu: Trace expedited grace-period numbers in hexadecimal (Čestmír Kalina) [RHEL-114406] - rcutorture: Expand failure/close-call grace-period output (Čestmír Kalina) [RHEL-114406] - rcutorture: Include grace-period sequence numbers in failure/close-call (Čestmír Kalina) [RHEL-114406] - rcutorture: Add a test_boost_holdoff module parameter (Čestmír Kalina) [RHEL-114406] - torture: Add get_torture_init_jiffies() for test-start time (Čestmír Kalina) [RHEL-114406] - srcu: Make SRCU-fast also be NMI-safe (Čestmír Kalina) [RHEL-114406] - srcu: Add srcu_down_read_fast() and srcu_up_read_fast() (Čestmír Kalina) [RHEL-114406] - srcu: Document that srcu_{read_lock,down_read}() can share srcu_struct (Čestmír Kalina) [RHEL-114406] - srcu: Fix srcu_read_unlock_{lite,nmisafe}() kernel-doc (Čestmír Kalina) [RHEL-114406] - rcutorture: Make scenario SRCU-P use srcu_read_lock_fast() (Čestmír Kalina) [RHEL-114406] - refscale: Add srcu_read_lock_fast() support using "srcu-fast" (Čestmír Kalina) [RHEL-114406] - rcutorture: Add ability to test srcu_read_{,un}lock_fast() (Čestmír Kalina) [RHEL-114406] - srcu: Add SRCU-fast readers (Čestmír Kalina) [RHEL-114406] - srcu: Move SRCU Tree/Tiny definitions from srcu.h (Čestmír Kalina) [RHEL-114406] - srcu: Pull integer-to-pointer conversion into __srcu_ctr_to_ptr() (Čestmír Kalina) [RHEL-114406] - srcu: Pull pointer-to-integer conversion into __srcu_ptr_to_ctr() (Čestmír Kalina) [RHEL-114406] - srcu: Add SRCU_READ_FLAVOR_SLOWGP to flag need for synchronize_rcu() (Čestmír Kalina) [RHEL-114406] - srcu: Rename srcu_check_read_flavor_lite() to srcu_check_read_flavor_force() (Čestmír Kalina) [RHEL-114406] - srcu: Force synchronization for srcu_get_delay() (Čestmír Kalina) [RHEL-114406] - srcu: Make Tree SRCU updates independent of ->srcu_idx (Čestmír Kalina) [RHEL-114406] - srcu: Make SRCU readers use ->srcu_ctrs for counter selection (Čestmír Kalina) [RHEL-114406] - srcu: Pull ->srcu_{un,}lock_count into a new srcu_ctr structure (Čestmír Kalina) [RHEL-114406] - srcu: Use ->srcu_gp_seq for rcutorture reader batch (Čestmír Kalina) [RHEL-114406] - srcu: Define SRCU_READ_FLAVOR_ALL in terms of symbols (Čestmír Kalina) [RHEL-114406] - srcu: Make Tiny SRCU able to operate in preemptible kernels (Čestmír Kalina) [RHEL-114406] - rcu: Use _full() API to debug synchronize_rcu() (Čestmír Kalina) [RHEL-114406] - rcu: Update TREE05.boot to test normal synchronize_rcu() (Čestmír Kalina) [RHEL-114406] - rcutorture: Allow a negative value for nfakewriters (Čestmír Kalina) [RHEL-114406] - context_tracking: Make RCU watch ct_kernel_exit_state() warning (Čestmír Kalina) [RHEL-114406] - rcu/nocb: Print segment lengths in show_rcu_nocb_gp_state() (Čestmír Kalina) [RHEL-114406] - rcu: Fix get_state_synchronize_rcu_full() GP-start detection (Čestmír Kalina) [RHEL-114406] - rcu: Remove READ_ONCE() for rdp->gpwrap access in __note_gp_changes() (Čestmír Kalina) [RHEL-114406] - rcu: Split rcu_report_exp_cpu_mult() mask parameter and use for tracing (Čestmír Kalina) [RHEL-114406] - rcutorture: Make scenario TREE07 build CONFIG_PREEMPT_LAZY=y (Čestmír Kalina) [RHEL-114406] - rcutorture: Make scenario TREE10 build CONFIG_PREEMPT_LAZY=y (Čestmír Kalina) [RHEL-114406] - rcu: limit PREEMPT_RCU configurations (Čestmír Kalina) [RHEL-114406] - rcutorture: Update ->extendables check for lazy preemption (Čestmír Kalina) [RHEL-114406] - rcutorture: Update rcutorture_one_extend_check() for lazy preemption (Čestmír Kalina) [RHEL-114406] - rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y (Čestmír Kalina) [RHEL-114406] - rcu: handle unstable rdp in rcu_read_unlock_strict() (Čestmír Kalina) [RHEL-114406] - sched: update __cond_resched comment about RCU quiescent states (Čestmír Kalina) [RHEL-114406] - rcu: rename PREEMPT_AUTO to PREEMPT_LAZY (Čestmír Kalina) [RHEL-114406] - rcu: fix header guard for rcu_all_qs() (Čestmír Kalina) [RHEL-114406] - rcu: Remove references to old grace-period-wait primitives (Čestmír Kalina) [RHEL-114406] - rcu: Clarify RCU_LAZY and RCU_LAZY_DEFAULT_OFF help text (Čestmír Kalina) [RHEL-114406] - rcu: Add CONFIG_RCU_LAZY delays to call_rcu() kernel-doc header (Čestmír Kalina) [RHEL-114406] - srcu: Point call_srcu() to call_rcu() for detailed memory ordering (Čestmír Kalina) [RHEL-114406] - rcu: Document self-propagating callbacks (Čestmír Kalina) [RHEL-114406] - docs: Improve discussion of this_cpu_ptr(), add raw_cpu_ptr() (Čestmír Kalina) [RHEL-114406] - doc: Add broken-timing possibility to stallwarn.rst (Čestmír Kalina) [RHEL-114406] - slab: don't batch kvfree_rcu() with SLUB_TINY (Čestmír Kalina) [RHEL-114406] - rcu, slab: use a regular callback function for kvfree_rcu (Čestmír Kalina) [RHEL-114406] - rcu: remove trace_rcu_kvfree_callback (Čestmír Kalina) [RHEL-114406] - slab, rcu: move TINY_RCU variant of kvfree_rcu() to SLAB (Čestmír Kalina) [RHEL-114406] - mm/slab/kvfree_rcu: Switch to WQ_MEM_RECLAIM wq (Čestmír Kalina) [RHEL-114406] - torture: Make kvm-remote.sh give up on unresponsive system (Čestmír Kalina) [RHEL-114406] - refscale: Add test for sched_clock() (Čestmír Kalina) [RHEL-114406] - srcu: Remove redundant GP sequence checks in srcu_funnel_gp_start (Čestmír Kalina) [RHEL-114406] - srcu: Fix typo s/srcu_check_read_flavor()/__srcu_check_read_flavor()/ (Čestmír Kalina) [RHEL-114406] - srcu: Guarantee non-negative return value from srcu_read_lock() (Čestmír Kalina) [RHEL-114406] - rcutorture: Use symbols for SRCU reader flavors (Čestmír Kalina) [RHEL-114406] - rcutorture: Add per-reader-segment preemption diagnostics (Čestmír Kalina) [RHEL-114406] - rcutorture: Read CPU ID for decoration protected by both reader types (Čestmír Kalina) [RHEL-114406] - rcutorture: Add preempt_count() to rcutorture_one_extend_check() diagnostics (Čestmír Kalina) [RHEL-114406] - rcutorture: Add parameters to control polled/conditional wait interval (Čestmír Kalina) [RHEL-114406] - rcutorture: Add documentation for recent conditional and polled APIs (Čestmír Kalina) [RHEL-114406] - rcutorture: Ignore attempts to test preemption and forward progress (Čestmír Kalina) [RHEL-114406] - rcutorture: Make rcutorture_one_extend() check reader state (Čestmír Kalina) [RHEL-114406] - rcutorture: Pretty-print rcutorture reader segments (Čestmír Kalina) [RHEL-114406] - rcutorture: Add full read-side contexts to "busted" torture type (Čestmír Kalina) [RHEL-114406] - rcutorture: Decorate failing reader segments with last CPU ID (Čestmír Kalina) [RHEL-114406] - rcutorture: Check preemption for failing reader (Čestmír Kalina) [RHEL-114406] - rcutorture: Add ->cond_sync_exp_full function to rcu_ops structure (Čestmír Kalina) [RHEL-114406] - rcutorture: Use finer-grained timeouts for rcu_torture_writer() polling (Čestmír Kalina) [RHEL-114406] - rcutorture: Decorate failing reader segments with CPU ID (Čestmír Kalina) [RHEL-114406] - rcutorture: Make the TREE03 scenario do preemption (Čestmír Kalina) [RHEL-114406] - rcutorture: Add random real-time preemption (Čestmír Kalina) [RHEL-114406] - torture: Add dowarn argument to torture_sched_setaffinity() (Čestmír Kalina) [RHEL-114406] - MAINTAINERS: Update RCU git tree (Čestmír Kalina) [RHEL-114406] - rcu: Add lockdep_assert_irqs_disabled() to rcu_exp_need_qs() (Čestmír Kalina) [RHEL-114406] - rcu: Add KCSAN exclusive-writer assertions for rdp->cpu_no_qs.b.exp (Čestmír Kalina) [RHEL-114406] - rcu: Make preemptible rcu_exp_handler() check idempotency (Čestmír Kalina) [RHEL-114406] - rcu: Replace open-coded rcu_exp_need_qs() from rcu_exp_handler() with call (Čestmír Kalina) [RHEL-114406] - rcu: Move rcu_report_exp_rdp() setting of ->cpu_no_qs.b.exp under lock (Čestmír Kalina) [RHEL-114406] - rcu: Make rcu_report_exp_cpu_mult() caller acquire lock (Čestmír Kalina) [RHEL-114406] - rcu: Report callbacks enqueued on offline CPU blind spot (Čestmír Kalina) [RHEL-114406] - mm/slab: Move kvfree_rcu() into SLAB (Čestmír Kalina) [RHEL-114406] - rcu/kvfree: Adjust a shrinker name (Čestmír Kalina) [RHEL-114406] - rcu/kvfree: Adjust names passed into trace functions (Čestmír Kalina) [RHEL-114406] - rcu/kvfree: Move some functions under CONFIG_TINY_RCU (Čestmír Kalina) [RHEL-114406] - rcu/kvfree: Initialize kvfree_rcu() separately (Čestmír Kalina) [RHEL-114406] - rculist: add list_bidir_{del,prev}_rcu() (Čestmír Kalina) [RHEL-114406] - rcupdate_trace: Define rcu_tasks_trace lock guard (Čestmír Kalina) [RHEL-114406] - srcu: Unconditionally record srcu_read_lock_lite() in ->srcu_reader_flavor (Čestmír Kalina) [RHEL-114406] - srcu: Check for srcu_read_lock_lite() across all CPUs (Čestmír Kalina) [RHEL-114406] - srcu: Remove smp_mb() from srcu_read_unlock_lite() (Čestmír Kalina) [RHEL-114406] - srcu: Improve srcu_read_lock_lite() kernel-doc comment (Čestmír Kalina) [RHEL-114406] - refscale: Add srcu_read_lock_lite() support using "srcu-lite" (Čestmír Kalina) [RHEL-114406] - rcutorture: Add light-weight SRCU scenario (Čestmír Kalina) [RHEL-114406] - rcutorture: Add srcu_read_lock_lite() support to rcutorture.reader_flavor (Čestmír Kalina) [RHEL-114406] - rcutorture: Add reader_flavor parameter for SRCU readers (Čestmír Kalina) [RHEL-114406] - rcutorture: Expand RCUTORTURE_RDR_MASK_[12] to eight bits (Čestmír Kalina) [RHEL-114406] - srcu: Allow inlining of __srcu_read_{,un}lock_lite() (Čestmír Kalina) [RHEL-114406] - srcu: Add srcu_read_lock_lite() and srcu_read_unlock_lite() (Čestmír Kalina) [RHEL-114406] - srcu: Create CPP macros for normal and NMI-safe SRCU readers (Čestmír Kalina) [RHEL-114406] - srcu: Improve srcu_read_lock{,_nmisafe}() comments (Čestmír Kalina) [RHEL-114406] - srcu: Standardize srcu_data pointers to "sdp" and similar (Čestmír Kalina) [RHEL-114406] - srcu: Bit manipulation changes for additional reader flavor (Čestmír Kalina) [RHEL-114406] - srcu: Renaming in preparation for additional reader flavor (Čestmír Kalina) [RHEL-114406] - srcu: Introduce srcu_gp_is_expedited() helper function (Čestmír Kalina) [RHEL-114406] - srcu: Rename srcu_might_be_idle() to srcu_should_expedite() (Čestmír Kalina) [RHEL-114406] - srcu: Replace WARN_ON_ONCE() with BUILD_BUG_ON() if possible (Čestmír Kalina) [RHEL-114406] - rcu: Finer-grained grace-period-end checks in rcu_dump_cpu_stacks() (Čestmír Kalina) [RHEL-114406] - rcu: Stop stall warning from dumping stacks if grace period ends (Čestmír Kalina) [RHEL-114406] - rcu: Delete unused rcu_gp_might_be_stalled() function (Čestmír Kalina) [RHEL-114406] - rcuscale: Remove redundant WARN_ON_ONCE() splat (Čestmír Kalina) [RHEL-114406] - rcuscale: Do a proper cleanup if kfree_scale_init() fails (Čestmír Kalina) [RHEL-114406] - rcutorture: Avoid printing cpu=-1 for no-fault RCU boost failure (Čestmír Kalina) [RHEL-114406] - rcuscale: Add guest_os_delay module parameter (Čestmír Kalina) [RHEL-114406] - refscale: Correct affinity check (Čestmír Kalina) [RHEL-114406] - torture: Add --no-affinity parameter to kvm.sh (Čestmír Kalina) [RHEL-114406] - rcu/nocb: Fix missed RCU barrier on deoffloading (Čestmír Kalina) [RHEL-114406] - rcu: Remove unused declaration rcu_segcblist_offload() (Čestmír Kalina) [RHEL-114406] - rcu/srcutiny: don't return before reenabling preemption (Čestmír Kalina) [RHEL-114406] - rcu-tasks: Remove open-coded one-byte cmpxchg() emulation (Čestmír Kalina) [RHEL-114406] - doc: Remove kernel-parameters.txt entry for rcutorture.read_exit (Čestmír Kalina) [RHEL-114406] - rcutorture: Test start-poll primitives with interrupts disabled (Čestmír Kalina) [RHEL-114406] - rcu: Permit start_poll_synchronize_rcu*() with interrupts disabled (Čestmír Kalina) [RHEL-114406] - rcu: Allow short-circuiting of synchronize_rcu_tasks_rude() (Čestmír Kalina) [RHEL-114406] - doc: Add rcuog kthreads to kernel-per-CPU-kthreads.rst (Čestmír Kalina) [RHEL-114406] - rcu: Add rcuog kthreads to RCU_NOCB_CPU help text (Čestmír Kalina) [RHEL-114406] - rcu: Use the BITS_PER_LONG macro (Čestmír Kalina) [RHEL-114406] - rcu: Use bitwise instead of arithmetic operator for flags (Čestmír Kalina) [RHEL-114406] - doc: rcu: update printed dynticks counter bits (Čestmír Kalina) [RHEL-114406] - ext4: fix potential null deref in ext4_mb_init() (Brian Foster) [RHEL-121233] - jbd2: prevent softlockup in jbd2_log_do_checkpoint() (Brian Foster) [RHEL-121233] - ext4: fix incorrect function name in comment (Brian Foster) [RHEL-121233] - ext4: use kmalloc_array() for array space allocation (Brian Foster) [RHEL-121233] - ext4: fix hole length calculation overflow in non-extent inodes (Brian Foster) [RHEL-121233] - ext4: don't try to clear the orphan_present feature block device is r/o (Brian Foster) [RHEL-121233] - ext4: fix reserved gdt blocks handling in fsmap (Brian Foster) [RHEL-121233] - ext4: fix fsmap end of range reporting with bigalloc (Brian Foster) [RHEL-121233] - ext4: remove redundant __GFP_NOWARN (Brian Foster) [RHEL-121233] - ext4: fix unused variable warning in ext4_init_new_dir (Brian Foster) [RHEL-121233] - ext4: remove useless if check (Brian Foster) [RHEL-121233] - ext4: check fast symlink for ea_inode correctly (Brian Foster) [RHEL-121233] - ext4: preserve SB_I_VERSION on remount (Brian Foster) [RHEL-121233] - ext4: show the default enabled i_version option (Brian Foster) [RHEL-121233] - ext4: do not BUG when INLINE_DATA_FL lacks system.data xattr (Brian Foster) [RHEL-121233] - ext4: implement linear-like traversal across order xarrays (Brian Foster) [RHEL-121233] - ext4: refactor choose group to scan group (Brian Foster) [RHEL-121233] - ext4: convert free groups order lists to xarrays (Brian Foster) [RHEL-121233] - ext4: factor out ext4_mb_scan_group() (Brian Foster) [RHEL-121233] - ext4: factor out ext4_mb_might_prefetch() (Brian Foster) [RHEL-121233] - ext4: factor out __ext4_mb_scan_group() (Brian Foster) [RHEL-121233] - ext4: fix largest free orders lists corruption on mb_optimize_scan switch (Brian Foster) [RHEL-121233] - ext4: fix zombie groups in average fragment size lists (Brian Foster) [RHEL-121233] - ext4: merge freed extent with existing extents before insertion (Brian Foster) [RHEL-121233] - ext4: convert sbi->s_mb_free_pending to atomic_t (Brian Foster) [RHEL-121233] - ext4: fix typo in CR_GOAL_LEN_SLOW comment (Brian Foster) [RHEL-121233] - ext4: get rid of some obsolete EXT4_MB_HINT flags (Brian Foster) [RHEL-121233] - ext4: utilize multiple global goals to reduce contention (Brian Foster) [RHEL-121233] - ext4: remove unnecessary s_md_lock on update s_mb_last_group (Brian Foster) [RHEL-121233] - ext4: remove unnecessary s_mb_last_start (Brian Foster) [RHEL-121233] - ext4: separate stream goal hits from s_bal_goals for better tracking (Brian Foster) [RHEL-121233] - ext4: add ext4_try_lock_group() to skip busy groups (Brian Foster) [RHEL-121233] - ext4: initialize superblock fields in the kballoc-test.c kunit tests (Brian Foster) [RHEL-121233] - ext4: refactor the inline directory conversion and new directory codepaths (Brian Foster) [RHEL-121233] - ext4: use memcpy() instead of strcpy() (Brian Foster) [RHEL-121233] - ext4: replace strcmp with direct comparison for '.' and '..' (Brian Foster) [RHEL-121233] - ext4: Make sure BH_New bit is cleared in ->write_end handler (Brian Foster) [RHEL-121233] - ext4: fix inode use after free in ext4_end_io_rsv_work() (Brian Foster) [RHEL-121233] - ext4: Refactor breaking condition for xattr_find_entry() (Brian Foster) [RHEL-121233] - ext4: fix insufficient credits calculation in ext4_meta_trans_blocks() (Brian Foster) [RHEL-121233] - ext4: replace ext4_writepage_trans_blocks() (Brian Foster) [RHEL-121233] - ext4: reserved credits for one extent during the folio writeback (Brian Foster) [RHEL-121233] - ext4: correct the reserved credits for extent conversion (Brian Foster) [RHEL-121233] - ext4: enhance tracepoints during the folios writeback (Brian Foster) [RHEL-121233] - ext4: restart handle if credits are insufficient during allocating blocks (Brian Foster) [RHEL-121233] - ext4: refactor the block allocation process of ext4_page_mkwrite() (Brian Foster) [RHEL-121233] - ext4: fix stale data if it bail out of the extents mapping loop (Brian Foster) [RHEL-121233] - ext4: move the calculation of wbc->nr_to_write to mpage_folio_done() (Brian Foster) [RHEL-121233] - ext4: process folios writeback in bytes (Brian Foster) [RHEL-121233] - ext4: remove unused EXT_STATS macro from ext4_extents.h (Brian Foster) [RHEL-121233] - ext4: remove unnecessary duplicate check in ext4_map_blocks() (Brian Foster) [RHEL-121233] - ext4: remove duplicate check for EXT4_FC_REPLAY (Brian Foster) [RHEL-121233] - ext4: Add a WARN_ON_ONCE for querying LAST_IN_LEAF instead (Brian Foster) [RHEL-121233] - ext4: Simplify flags in ext4_map_query_blocks() (Brian Foster) [RHEL-121233] - ext4: Rename and document EXT4_EX_FILTER to EXT4_EX_QUERY_FILTER (Brian Foster) [RHEL-121233] - ext4: Simplify last in leaf check in ext4_map_query_blocks (Brian Foster) [RHEL-121233] - ext4: Unwritten to written conversion requires EXT4_EX_NOCACHE (Brian Foster) [RHEL-121233] - ext4: Enable support for ext4 multi-fsblock atomic write using bigalloc (Brian Foster) [RHEL-121233] - ext4: Add multi-fsblock atomic write support with bigalloc (Brian Foster) [RHEL-121233] - ext4: Add support for EXT4_GET_BLOCKS_QUERY_LEAF_BLOCKS (Brian Foster) [RHEL-121233] - ext4: Make ext4_meta_trans_blocks() non-static for later use (Brian Foster) [RHEL-121233] - ext4: Check if inode uses extents in ext4_inode_can_atomic_write() (Brian Foster) [RHEL-121233] - ext4: Document an edge case for overwrites (Brian Foster) [RHEL-121233] - jbd2: remove journal_t argument from jbd2_superblock_csum() (Brian Foster) [RHEL-121233] - jbd2: remove journal_t argument from jbd2_chksum() (Brian Foster) [RHEL-121233] - ext4: remove sb argument from ext4_superblock_csum() (Brian Foster) [RHEL-121233] - ext4: remove sbi argument from ext4_chksum() (Brian Foster) [RHEL-121233] - ext4: make online defragmentation support large folios (Brian Foster) [RHEL-121233] - ext4: make the writeback path support large folios (Brian Foster) [RHEL-121233] - ext4: correct the journal credits calculations of allocating blocks (Brian Foster) [RHEL-121233] - ext4/jbd2: convert jbd2_journal_blocks_per_page() to support large folio (Brian Foster) [RHEL-121233] - ext4: make __ext4_block_zero_page_range() support large folio (Brian Foster) [RHEL-121233] - ext4: make regular file's buffered write path support large folios (Brian Foster) [RHEL-121233] - ext4: make ext4_mpage_readpages() support large folios (Brian Foster) [RHEL-121233] - ext4: ensure i_size is smaller than maxbytes (Brian Foster) [RHEL-121233] - ext4: factor out ext4_get_maxbytes() (Brian Foster) [RHEL-121233] - ext4: fix incorrect punch max_end (Brian Foster) [RHEL-121233] - ext4: fix out of bounds punch offset (Brian Foster) [RHEL-121233] - jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata() (Brian Foster) [RHEL-121233] - ext4: use writeback_iter in ext4_journalled_submit_inode_data_buffers (Brian Foster) [RHEL-121233] - ext4: fix calculation of credits for extent tree modification (Brian Foster) [RHEL-121233] - ext4: avoid -Wformat-security warning (Brian Foster) [RHEL-121233] - ext4: clairfy the rules for modifying extents (Brian Foster) [RHEL-121233] - ext4: check env when mapping and modifying extents (Brian Foster) [RHEL-121233] - ext4: introduce ext4_check_map_extents_env() debug helper (Brian Foster) [RHEL-121233] - ext4: factor out is_special_ino() (Brian Foster) [RHEL-121233] - ext4: prevent stale extent cache entries caused by concurrent get es_cache (Brian Foster) [RHEL-121233] - ext4: prevent stale extent cache entries caused by concurrent fiemap (Brian Foster) [RHEL-121233] - ext4: prevent stale extent cache entries caused by concurrent I/O writeback (Brian Foster) [RHEL-121233] - ext4: generalize EXT4_GET_BLOCKS_IO_SUBMIT flag usage (Brian Foster) [RHEL-121233] - ext4: ext4: unify EXT4_EX_NOCACHE|NOFAIL flags in ext4_ext_remove_space() (Brian Foster) [RHEL-121233] - ext4: inline: fix len overflow in ext4_prepare_inline_data (Brian Foster) [RHEL-121233] - ext4: hold s_fc_lock while during fast commit (Brian Foster) [RHEL-121233] - ext4: convert s_fc_lock to mutex type (Brian Foster) [RHEL-121233] - ext4: temporarily elevate commit thread priority (Brian Foster) [RHEL-121233] - ext4: update code documentation (Brian Foster) [RHEL-121233] - ext4: drop i_fc_updates from inode fc info (Brian Foster) [RHEL-121233] - ext4: rework fast commit commit path (Brian Foster) [RHEL-121233] - ext4: mark inode dirty before grabbing i_data_sem in ext4_setattr (Brian Foster) [RHEL-121233] - ext4: for committing inode, make ext4_fc_track_inode wait (Brian Foster) [RHEL-121233] - ext4: convert i_fc_lock to spinlock (Brian Foster) [RHEL-121233] - ext4: make block validity check resistent to sb bh corruption (Brian Foster) [RHEL-121233] - ext4: avoid -Wflex-array-member-not-at-end warning (Brian Foster) [RHEL-121233] - ext4: don't treat fhandle lookup of ea_inode as FS corruption (Brian Foster) [RHEL-121233] - ext4: on a remount, only log the ro or r/w state when it has changed (Brian Foster) [RHEL-121233] - ext4: correct the error handle in ext4_fallocate() (Brian Foster) [RHEL-121233] - ext4: Make sb update interval tunable (Brian Foster) [RHEL-121233] - ext4: hash: simplify kzalloc(n * 1, ...) to kzalloc(n, ...) (Brian Foster) [RHEL-121233] - jbd2: add a missing data flush during file and fs synchronization (Brian Foster) [RHEL-121233] - ext4: clear DISCARD flag if device does not support discard (Brian Foster) [RHEL-121233] - jbd2: remove jbd2_journal_unfile_buffer() (Brian Foster) [RHEL-121233] - ext4: reorder capability check last (Brian Foster) [RHEL-121233] - ext4: update the comment about mb_optimize_scan (Brian Foster) [RHEL-121233] - jbd2: fix off-by-one while erasing journal (Brian Foster) [RHEL-121233] - ext4: remove references to bh->b_page (Brian Foster) [RHEL-121233] - ext4: goto right label 'out_mmap_sem' in ext4_setattr() (Brian Foster) [RHEL-121233] - jbd2: remove redundant function jbd2_journal_has_csum_v2or3_feature (Brian Foster) [RHEL-121233] - ext4: remove redundant function ext4_has_metadata_csum (Brian Foster) [RHEL-121233] - jbd2: do not try to recover wiped journal (Brian Foster) [RHEL-121233] - jbd2: remove wrong sb->s_sequence check (Brian Foster) [RHEL-121233] - ext4: verify fast symlink length (Brian Foster) [RHEL-121233] - ext4: remove unused input "inode" in ext4_find_dest_de (Brian Foster) [RHEL-121233] - ext4: remove unneeded forward declaration in namei.c (Brian Foster) [RHEL-121233] - ext4: add missing brelse() for bh2 in ext4_dx_add_entry() (Brian Foster) [RHEL-121233] - jbd2: Correct stale comment of release_buffer_page (Brian Foster) [RHEL-121233] - jbd2: correct stale function name in comment (Brian Foster) [RHEL-121233] - jbd2: remove stale comment of update_t_max_wait (Brian Foster) [RHEL-121233] - jbd2: remove unused return value of do_readahead (Brian Foster) [RHEL-121233] - jbd2: remove unused return value of jbd2_journal_cancel_revoke (Brian Foster) [RHEL-121233] - ext4: show 'shutdown' hint when ext4 is forced to shutdown (Brian Foster) [RHEL-121233] - ext4: show 'emergency_ro' when EXT4_FLAGS_EMERGENCY_RO is set (Brian Foster) [RHEL-121233] - ext4: correct behavior under errors=remount-ro mode (Brian Foster) [RHEL-121233] - ext4: add more ext4_emergency_state() checks around sb_rdonly() (Brian Foster) [RHEL-121233] - ext4: add ext4_emergency_state() helper function (Brian Foster) [RHEL-121233] - ext4: add EXT4_FLAGS_EMERGENCY_RO bit (Brian Foster) [RHEL-121233] - ext4: convert EXT4_FLAGS_* defines to enum (Brian Foster) [RHEL-121233] - ext4: pack holes in ext4_inode_info (Brian Foster) [RHEL-121233] - ext4: remove unused member 'i_unwritten' from 'ext4_inode_info' (Brian Foster) [RHEL-121233] - jbd2: drop JBD2_ABORT_ON_SYNCDATA_ERR (Brian Foster) [RHEL-121233] - ext4: abort journal on data writeback failure if in data_err=abort mode (Brian Foster) [RHEL-121233] - ext4: extract ext4_has_journal_option() from __ext4_fill_super() (Brian Foster) [RHEL-121233] - ext4: reject the 'data_err=abort' option in nojournal mode (Brian Foster) [RHEL-121233] - ext4: do not convert the unwritten extents if data writeback fails (Brian Foster) [RHEL-121233] - ext4: replace opencoded ext4_end_io_end() in ext4_put_io_end() (Brian Foster) [RHEL-121233] - ext4: fix potential null dereference in ext4 kunit test (Brian Foster) [RHEL-121233] - ext4: Refactor out ext4_try_to_write_inline_data() (Brian Foster) [RHEL-121233] - ext4: Replace ext4_da_write_inline_data_begin() with ext4_generic_write_inline_data(). (Brian Foster) [RHEL-121233] - ext4: Introduce a new helper function ext4_generic_write_inline_data() (Brian Foster) [RHEL-121233] - ext4: Don't set EXT4_STATE_MAY_INLINE_DATA for ea inodes (Brian Foster) [RHEL-121233] - ext4: Remove a redundant return statement (Brian Foster) [RHEL-121233] - ext4: protect ext4_release_dquot against freezing (Brian Foster) [RHEL-121233] - ext4: introduce linear search for dentries (Brian Foster) [RHEL-121233] - jbd2: Avoid long replay times due to high number or revoke blocks (Brian Foster) [RHEL-121233] - ext4: move out common parts into ext4_fallocate() (Brian Foster) [RHEL-121233] - ext4: move out inode_lock into ext4_fallocate() (Brian Foster) [RHEL-121233] - ext4: factor out ext4_do_fallocate() (Brian Foster) [RHEL-121233] - ext4: refactor ext4_insert_range() (Brian Foster) [RHEL-121233] - ext4: refactor ext4_collapse_range() (Brian Foster) [RHEL-121233] - ext4: refactor ext4_zero_range() (Brian Foster) [RHEL-121233] - ext4: refactor ext4_punch_hole() (Brian Foster) [RHEL-121233] - ext4: don't write back data before punch hole in nojournal mode (Brian Foster) [RHEL-121233] - ext4: don't explicit update times in ext4_fallocate() (Brian Foster) [RHEL-121233] - ext4: remove writable userspace mappings before truncating page cache (Brian Foster) [RHEL-121233] - ext4: remove unneeded forward declaration (Brian Foster) [RHEL-121233] - jbd2: remove unused transaction->t_private_list (Brian Foster) [RHEL-121233] - ext4: remove unused ext4 journal callback (Brian Foster) [RHEL-121233] - ext4 fast_commit: make use of name_snapshot primitives (Brian Foster) [RHEL-121233] - ext4: use inode_set_cached_link() (Brian Foster) [RHEL-121233] - vfs: support caching symlink lengths in inodes (Brian Foster) [RHEL-121233] - jbd2: switch to using the crc32c library (Brian Foster) [RHEL-121233] - ext4: switch to using the crc32c library (Brian Foster) [RHEL-121233] - sched/fair: Have SD_SERIALIZE affect newidle balancing (Phil Auld) [RHEL-130534] - sched/fair: Skip sched_balance_running cmpxchg when balance is not due (Phil Auld) [RHEL-130534] - Revert "Drivers: hv: Add CONFIG_HYPERV_VMBUS option" (Anusha Srivatsa) [RHEL-126642] - Revert "change the calling conventions for vfs_parse_fs_string()" (Anusha Srivatsa) [RHEL-126642] - redhat/configs: Add new configs from DRM 6.18 backport (Anusha Srivatsa) [RHEL-126642] - Merge DRM changes from upstream v6.17..v6.18 (Anusha Srivatsa) [RHEL-126642] - efi/x86: Memory protection on EfiGcdMemoryTypeMoreReliable (Lenny Szubowicz) [RHEL-124884] - blk-mq: skip CPU offline notify on unmapped hctx (Ming Lei) [RHEL-140153] - mm/rmap: fix soft-dirty and uffd-wp bit loss when remapping zero-filled mTHP subpage to shared zeropage (Aristeu Rozanski) [RHEL-122951] - mm/thp: fix MTE tag mismatch when replacing zero-filled subpages (Aristeu Rozanski) [RHEL-122951] - io_uring/net: ensure vectored buffer node import is tied to notification (Jeff Moyer) [RHEL-136780] - bpf, arm64: Do not audit capability check in do_jit() (CKI Backport Bot) [RHEL-126124] - mm: hugetlb: avoid soft lockup when mprotect to large memory area (Luiz Capitulino) [RHEL-122910] - netfilter: nf_conncount: update last_gc only when GC has been performed (Florian Westphal) [RHEL-133467] - netfilter: nf_tables: fix memory leak in nf_tables_newrule() (Florian Westphal) [RHEL-133467] - netfilter: nf_nat: remove bogus direction check (Florian Westphal) [RHEL-133467] - ipvs: fix ipv4 null-ptr-deref in route error path (Florian Westphal) [RHEL-133467] - netfilter: nf_conncount: make nf_conncount_gc_list() to disable BH (Florian Westphal) [RHEL-133467] - netfilter: flowtable: check for maximum number of encapsulations in bridge vlan (Florian Westphal) [RHEL-133467] - netfilter: nft_ct: add seqadj extension for natted connections (Florian Westphal) [RHEL-133467] - netfilter: nft_connlimit: fix possible data race on connection count (Florian Westphal) [RHEL-133467] - netfilter: nft_ct: enable labels for get case too (Florian Westphal) [RHEL-133467] - netfilter: nft_objref: validate objref and objrefmap expressions (Florian Westphal) [RHEL-133467] - netfilter: nf_conntrack: do not skip entries in /proc/net/nf_conntrack (Florian Westphal) [RHEL-133467] - netfilter: nfnetlink: reset nlh pointer during batch replay (Florian Westphal) [RHEL-133467] - ipvs: Defer ip_vs_ftp unregister during netns cleanup (Florian Westphal) [RHEL-133467] - ipvs: Use READ_ONCE/WRITE_ONCE for ipvs->enable (Florian Westphal) [RHEL-133467] - x86/cpu: Add two Intel CPU model numbers (Steve Best) [RHEL-115112] - sched/hrtick: Fix hrtick() vs. scheduling context (Phil Auld) [RHEL-124642] - sched/fair: Fix unfairness caused by stalled tg_load_avg_contrib when the last task migrates out (Phil Auld) [RHEL-124642] - sched: Increase sched_tick_remote timeout (Phil Auld) [RHEL-124642] - bpf: Make migrate_disable always inline to avoid partial inlining (Phil Auld) [RHEL-124642] - sched/fair: Fix pelt lost idle time detection (Phil Auld) [RHEL-124642] - sched/deadline: Stop dl_server before CPU goes offline (Phil Auld) [RHEL-124642] - sched: Fix some typos in include/linux/preempt.h (Phil Auld) [RHEL-124642] - sched: Make migrate_{en,dis}able() inline (Phil Auld) [RHEL-124642] - rcu: Replace preempt.h with sched.h in include/linux/rcupdate.h (Phil Auld) [RHEL-124642] - arch: Add the macro COMPILE_OFFSETS to all the asm-offsets.c (Phil Auld) [RHEL-124642] - sched/deadline: Fix dl_server behaviour (Phil Auld) [RHEL-124642] - sched/deadline: Fix dl_server getting stuck (Phil Auld) [RHEL-124642] - sched: Fix sched_numa_find_nth_cpu() if mask offline (Phil Auld) [RHEL-124642] - sched_ext: Add support for cgroup bandwidth control interface (Phil Auld) [RHEL-124642] - s390/processor: Use bitop functions for cpu flag helper functions (Phil Auld) [RHEL-124642] - s390/asm-offsets: Remove ASM_OFFSETS_C (Phil Auld) [RHEL-124642] - spi: tegra210-quad: Check hardware status on timeout (Charles Mirabile) [RHEL-127128] - spi: tegra210-quad: Refactor error handling into helper functions (Charles Mirabile) [RHEL-127128] - spi: tegra210-quad: Fix timeout handling (Charles Mirabile) [RHEL-127128] - redhat/configs: automotive: enable S32G_WDT (Jared Kangas) [RHEL-131327] - arm64: dts: s32g399a-rdb3: Enable the SWT watchdog (Jared Kangas) [RHEL-131327] - arm64: dts: s32g3: Add the Software Timer Watchdog (SWT) nodes (Jared Kangas) [RHEL-131327] - arm64: dts: s32g274-rd2: Enable the SWT watchdog (Jared Kangas) [RHEL-131327] - arm64: dts: s32g2: Add the Software Timer Watchdog (SWT) nodes (Jared Kangas) [RHEL-131327] - watchdog: Add the Watchdog Timer for the NXP S32 platform (Jared Kangas) [RHEL-131327] - dt-bindings: watchdog: Add NXP Software Watchdog Timer (Jared Kangas) [RHEL-131327] - xfs: rework datasync tracking and execution (Pavel Reichl) [RHEL-126220] - xfs: rearrange code in xfs_inode_item_precommit (Pavel Reichl) [RHEL-126220] - workqueue: fix texinfodocs warning for WQ_* flags reference (Waiman Long) [RHEL-129577] - workqueue: WQ_PERCPU added to alloc_workqueue users (Waiman Long) [RHEL-129577] - workqueue: replace use of system_wq with system_percpu_wq (Waiman Long) [RHEL-129577] - workqueue: replace use of system_unbound_wq with system_dfl_wq (Waiman Long) [RHEL-129577] - workqueue: Provide a handshake for canceling BH workers (Waiman Long) [RHEL-129577] - workqueue: Remove rcu_read_lock/unlock() in wq_watchdog_timer_fn() (Waiman Long) [RHEL-129577] - workqueue: Remove redundant rcu_read_lock/unlock() in workqueue_congested() (Waiman Long) [RHEL-129577] - workqueue: Use atomic_try_cmpxchg_relaxed() in tryinc_node_nr_active() (Waiman Long) [RHEL-129577] - workqueue: Remove unused work_on_cpu_safe (Waiman Long) [RHEL-129577] - workqueue: Add new WQ_PERCPU flag (Waiman Long) [RHEL-129577] - workqueue: Add system_percpu_wq and system_dfl_wq (Waiman Long) [RHEL-129577] - workqueue: Basic memory allocation profiling support (Waiman Long) [RHEL-129577] - workqueue: fix opencoded cpumask_next_and_wrap() in wq_select_unbound_cpu() (Waiman Long) [RHEL-129577] - workqueue: Initialize wq_isolated_cpumask in workqueue_init_early() (Waiman Long) [RHEL-129577] - workqueue: fix typo in comment (Waiman Long) [RHEL-129577] - workqueue: Fix race condition in wq->stats incrementation (Waiman Long) [RHEL-129577] - workqueue: Better document teardown for delayed_work (Waiman Long) [RHEL-129577] - cpumask: drop cpumask_next_wrap_old() (Waiman Long) [RHEL-129577] - PCI: hv: Switch hv_compose_multi_msi_req_get_cpu() to using cpumask_next_wrap() (Waiman Long) [RHEL-129577] - scsi: lpfc: rework lpfc_next_{online,present}_cpu() (Waiman Long) [RHEL-129577] - scsi: lpfc: switch lpfc_irq_rebalance() to using cpumask_next_wrap() (Waiman Long) [RHEL-129577] - s390: switch stop_machine_yield() to using cpumask_next_wrap() (Waiman Long) [RHEL-129577] - padata: switch padata_find_next() to using cpumask_next_wrap() (Waiman Long) [RHEL-129577] - cpumask: use cpumask_next_wrap() where appropriate (Waiman Long) [RHEL-129577] - cpumask: re-introduce cpumask_next{,_and}_wrap() (Waiman Long) [RHEL-129577] - cpumask: deprecate cpumask_next_wrap() (Waiman Long) [RHEL-129577] - powerpc/xmon: simplify xmon_batch_next_cpu() (Waiman Long) [RHEL-129577] - ibmvnic: simplify ibmvnic_set_queue_affinity() (Waiman Long) [RHEL-129577] - virtio_net: simplify virtnet_set_affinity() (Waiman Long) [RHEL-129577] - objpool: rework objpool_pop() (Waiman Long) [RHEL-129577] - cpumask: add for_each_{possible,online}_cpu_wrap (Waiman Long) [RHEL-129577] - workqueue: Log additional details when rejecting work (Waiman Long) [RHEL-129577] - workqueue: warn if delayed_work is queued to an offlined cpu. (Waiman Long) [RHEL-129577] - workqueue: add printf attribute to __alloc_workqueue() (Waiman Long) [RHEL-129577] - workqueue: Reduce expensive locks for unbound workqueue (Waiman Long) [RHEL-129577] - workqueue: Adjust WQ_MAX_ACTIVE from 512 to 2048 (Waiman Long) [RHEL-129577] - Bluetooth: ISO: Fix possible UAF on iso_conn_free (CKI Backport Bot) [RHEL-128901] {CVE-2025-40141} - ice: ice_adapter: release xa entry on adapter allocation failure (CKI Backport Bot) [RHEL-128474] {CVE-2025-40185} - redhat/configs: automotive: disable VFIO_PLATFORM (Eric Chanudet) [RHEL-79906] - net: renesas: rswitch: add mdio C22 support (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: use generic MPSM operation for mdio C45 (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: align mdio C45 operations with datasheet (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: use FIELD_PREP for remaining MPIC register fields (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: do not write to MPSM register at init time (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: remove speed from gwca structure (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: do not deinit disabled ports (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: rework ts tags management (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: fix initial MPIC register setting (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: enable only used MFWD features (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: handle stop vs interrupt race (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: avoid use-after-put for a device tree node (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: fix leaked pointer on error path (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: fix race window between tx start and complete (Radu Rendec) [RHEL-78089] - net: renesas: rswitch: fix possible early skb release (Radu Rendec) [RHEL-78089] - block: fix race between wbt_enable_default and IO submission (Ming Lei) [RHEL-128456] - block: relax atomic write boundary vs chunk size check (Ming Lei) [RHEL-129479] - block: fix stacking of atomic writes when atomics are not supported (Ming Lei) [RHEL-129479] - block: update validation of atomic writes boundary for stacked devices (Ming Lei) [RHEL-129479] - block: use chunk_sectors when evaluating stacked atomic write limits (Ming Lei) [RHEL-129479] - block: sanitize chunk_sectors for atomic write limits (Ming Lei) [RHEL-129479] - ilog2: add max_pow_of_two_factor() (Ming Lei) [RHEL-129479] - mptcp: fix race condition in mptcp_schedule_work() (CKI Backport Bot) [RHEL-134453] {CVE-2025-40258} - x86/CPU/AMD: Extend Zen6 model range (Steve Best) [RHEL-128696] - pinctrl: PINCTRL_AMDISP should depend on DRM_AMD_ISP (Steve Best) [RHEL-107607] - pinctrl: amd: Clear GPIO debounce for suspend (Steve Best) [RHEL-107607] - pinctrl: amd: Constify pointers to 'pinctrl_desc' (Steve Best) [RHEL-107607] - pinctrl: amd: Fix hibernation support with CONFIG_SUSPEND unset (Steve Best) [RHEL-107607] - pinctrl: amd: Fix use of undeclared identifier 'pinctrl_amd_s2idle_dev_ops' (Steve Best) [RHEL-107607] - pinctrl: amd: Add an LPS0 check() callback (Steve Best) [RHEL-107607] - pinctrl: amd: isp411: Fix IS_ERR() vs NULL check in probe() (Steve Best) [RHEL-107607] - pinctrl: amd: isp411: Add amdisp GPIO pinctrl (Steve Best) [RHEL-107607] - pinctrl: amd: Take suspend type into consideration which pins are non-wake (Steve Best) [RHEL-107607] - pinctrl: amd: Fix two small typos (Steve Best) [RHEL-107607] - RDMA/uverbs: Fix umem release in UVERBS_METHOD_CQ_CREATE (Kamal Heib) [RHEL-109943] - RDMA/efa: Add CQ with external memory support (Kamal Heib) [RHEL-109943] - IB/sa: Fix sa_local_svc_timeout_ms read race (Kamal Heib) [RHEL-109943] - RDMA/core: Resolve MAC of next-hop device without ARP support (Kamal Heib) [RHEL-109943] - RDMA/cm: Rate limit destroy CM ID timeout error message (Kamal Heib) [RHEL-109943] - IB: Extend UVERBS_METHOD_REG_MR to get DMAH (Kamal Heib) [RHEL-109943] - RDMA/core: Introduce a DMAH object and its alloc/free APIs (Kamal Heib) [RHEL-109943] - IB/core: Add UVERBS_METHOD_REG_MR on the MR object (Kamal Heib) [RHEL-109943] - RDMA/core: Add umem "is_contiguous" and "start_dma_addr" helpers (Kamal Heib) [RHEL-109943] - RDMA/uverbs: Add a common way to create CQ with umem (Kamal Heib) [RHEL-109943] - RDMA/uverbs: Add empty rdma_uattrs_has_raw_cap() declaration (Kamal Heib) [RHEL-109943] - IB/cm: Use separate agent w/o flow control for REP (Kamal Heib) [RHEL-109943] - IB/mad: Add flow control for solicited MADs (Kamal Heib) [RHEL-109943] - IB/mad: Add state machine to MAD layer (Kamal Heib) [RHEL-109943] - RDMA/counter: Check CAP_NET_RAW check in user namespace for RDMA counters (Kamal Heib) [RHEL-109943] - RDMA/nldev: Check CAP_NET_RAW in user namespace for QP modify (Kamal Heib) [RHEL-109943] - RDMA/uverbs: Check CAP_NET_RAW in user namespace for RAW QP create (Kamal Heib) [RHEL-109943] - RDMA/uverbs: Check CAP_NET_RAW in user namespace for RAW QP create (Kamal Heib) [RHEL-109943] - RDMA/uverbs: Check CAP_NET_RAW in user namespace for QP create (Kamal Heib) [RHEL-109943] - RDMA/uverbs: Check CAP_NET_RAW in user namespace for flow create (Kamal Heib) [RHEL-109943] - RDMA/ipoib: Use parent rdma device net namespace (Kamal Heib) [RHEL-109943] - RDMA/core: Extend RDMA device registration to be net namespace aware (Kamal Heib) [RHEL-109943] - RDMA/core: reduce stack using in nldev_stat_get_doit() (Kamal Heib) [RHEL-109943] - RDMA/core: Add driver APIs pre_destroy_cq() and post_destroy_cq() (Kamal Heib) [RHEL-109943] - IB/iser: Remove unnecessary local variable (Kamal Heib) [RHEL-109943] - KVM: selftests: Add missing "break" in rseq_test's param parsing (Gavin Shan) [RHEL-130521] - vsock: Ignore signal/timeout on connect() if already established (CKI Backport Bot) [RHEL-139289] {CVE-2025-40248} - dpll: zl3073x: Remove unused dev wrappers (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Cache all output properties in zl3073x_out (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Cache all reference properties in zl3073x_ref (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Cache reference monitor status (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Split ref, out, and synth logic from core (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Store raw register values instead of parsed state (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: fix kernel-doc name and missing parameter in fw.c (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Specify phase adjustment granularity for pins (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Fix output pin registration (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Handle missing or corrupted flash configuration (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Increase maximum size of flash utility (Ivan Vecera) [RHEL-138352] - dpll: zl3073x: Fix double free in zl3073x_devlink_flash_update() (Ivan Vecera) [RHEL-138352] - net/sched: Remove unnecessary WARNING condition for empty child qdisc in htb_activate (CKI Backport Bot) [RHEL-117719] - net: openvswitch: Avoid needlessly taking the RTNL on vport destroy (Adrian Moreno) [RHEL-134732] - dm: Fix deadlock when reloading a multipath table (Ming Lei) [RHEL-134975] - block: Remove queue freezing from several sysfs store callbacks (Ming Lei) [RHEL-134975] - ata: libata-core: Disable LPM on Silicon Motion MD619{H,G}XCLDE3TC (Tomas Henzl) [RHEL-135107] - ata: libata-scsi: Fix system suspend for a security locked drive (Tomas Henzl) [RHEL-135107] - ata: libata-scsi: Add missing scsi_device_put() in ata_scsi_dev_rescan() (Tomas Henzl) [RHEL-135107] - nvme: fix admin request_queue lifetime (Ewan D. Milne) [RHEL-126343] - Revert "Removing Obsolete hba pci-ids from rhel8" (Scott Weaver) [RHEL-123914] - rh_messages.h: add missing lpfc devices (Scott Weaver) [RHEL-123914] - net/ena: fix missing lock when update devlink params (Kamal Heib) [RHEL-127325] - net: ena: View PHC stats using debugfs (Kamal Heib) [RHEL-127325] - net: ena: Add debugfs support to the ENA driver (Kamal Heib) [RHEL-127325] - net: ena: Control PHC enable through devlink (Kamal Heib) [RHEL-127325] - net: ena: Add devlink port support (Kamal Heib) [RHEL-127325] - net: ena: Add device reload capability through devlink (Kamal Heib) [RHEL-127325] - net: ena: PHC silent reset (Kamal Heib) [RHEL-127325] - net: ena: Add PHC support in the ENA driver (Kamal Heib) [RHEL-127325] - net: ena: resolve WARN_ON when freeing IRQs (Kamal Heib) [RHEL-127325] - net: ena: use napi's aRFS rmap notifers (Kamal Heib) [RHEL-127325] - xfs: don't leak a locked dquot when xfs_dquot_attach_buf fails (Carlos Maiolino) [RHEL-112146] - xfs: free xfs_busy_extents structure when no RT extents are queued (Carlos Maiolino) [RHEL-112146] - xfs: fix locking in xchk_nlinks_collect_dir (Carlos Maiolino) [RHEL-112146] - xfs: don't use __GFP_NOFAIL in xfs_init_fs_context (Carlos Maiolino) [RHEL-112146] - xfs: fix scrub trace with null pointer in quotacheck (Carlos Maiolino) [RHEL-112146] - xfs: remove unused trace event xfs_reflink_cow_enospc (Carlos Maiolino) [RHEL-112146] - xfs: remove unused trace event xfs_discard_rtrelax (Carlos Maiolino) [RHEL-112146] - xfs: remove unused trace event xfs_log_cil_return (Carlos Maiolino) [RHEL-112146] - xfs: remove unused trace event xfs_dqreclaim_dirty (Carlos Maiolino) [RHEL-112146] - xfs: fix unmount hang with unflushable inodes stuck in the AIL (Carlos Maiolino) [RHEL-112146] - xfs: factor out stale buffer item completion (Carlos Maiolino) [RHEL-112146] - xfs: rearrange code in xfs_buf_item.c (Carlos Maiolino) [RHEL-112146] - xfs: add tracepoints for stale pinned inode state debug (Carlos Maiolino) [RHEL-112146] - xfs: avoid dquot buffer pin deadlock (Carlos Maiolino) [RHEL-112146] - xfs: catch stale AGF/AGF metadata (Carlos Maiolino) [RHEL-112146] - xfs: xfs_ifree_cluster vs xfs_iflush_shutdown_abort deadlock (Carlos Maiolino) [RHEL-112146] - xfs: actually use the xfs_growfs_check_rtgeom tracepoint (Carlos Maiolino) [RHEL-112146] - xfs: check for shutdown before going to sleep in xfs_select_zone (Carlos Maiolino) [RHEL-112146] - xfs: don't assume perags are initialised when trimming AGs (Carlos Maiolino) [RHEL-112146] - xfs: Fix comment on xfs_trans_ail_update_bulk() (Carlos Maiolino) [RHEL-112146] - xfs: Fix a comment on xfs_ail_delete (Carlos Maiolino) [RHEL-112146] - xfs: Fail remount with noattr2 on a v5 with v4 enabled (Carlos Maiolino) [RHEL-112146] - xfs: fix zoned GC data corruption due to wrong bv_offset (Carlos Maiolino) [RHEL-112146] - xfs: free up mp->m_free[0].count in error case (Carlos Maiolino) [RHEL-112146] - xfs: remove duplicate Zoned Filesystems sections in admin-guide (Carlos Maiolino) [RHEL-112146] - XFS: fix zoned gc threshold math for 32-bit arches (Carlos Maiolino) [RHEL-112146] - xfs: document zoned rt specifics in admin-guide (Carlos Maiolino) [RHEL-112146] - xfs: fix fsmap for internal zoned devices (Carlos Maiolino) [RHEL-112146] - xfs: Fix spelling mistake "drity" -> "dirty" (Carlos Maiolino) [RHEL-112146] - xfs: compute buffer address correctly in xmbuf_map_backing_mem (Carlos Maiolino) [RHEL-112146] - xfs: add tunable threshold parameter for triggering zone GC (Carlos Maiolino) [RHEL-112146] - xfs: mark xfs_buf_free as might_sleep() (Carlos Maiolino) [RHEL-112146] - xfs: remove the leftover xfs_{set,clear}_li_failed infrastructure (Carlos Maiolino) [RHEL-112146] - xfs: remove the flags argument to xfs_buf_get_uncached (Carlos Maiolino) [RHEL-112146] - xfs: remove the flags argument to xfs_buf_read_uncached (Carlos Maiolino) [RHEL-112146] - xfs: remove xfs_buf_free_maps (Carlos Maiolino) [RHEL-112146] - xfs: remove xfs_buf_get_maps (Carlos Maiolino) [RHEL-112146] - xfs: call xfs_buf_alloc_backing_mem from _xfs_buf_alloc (Carlos Maiolino) [RHEL-112146] - xfs: remove unnecessary NULL check before kvfree() (Carlos Maiolino) [RHEL-112146] - xfs: trace what memory backs a buffer (Carlos Maiolino) [RHEL-112146] - xfs: cleanup mapping tmpfs folios into the buffer cache (Carlos Maiolino) [RHEL-112146] - xfs: use vmalloc instead of vm_map_area for buffer backing memory (Carlos Maiolino) [RHEL-112146] - xfs: buffer items don't straddle pages anymore (Carlos Maiolino) [RHEL-112146] - xfs: kill XBF_UNMAPPED (Carlos Maiolino) [RHEL-112146] - xfs: convert buffer cache to use high order folios (Carlos Maiolino) [RHEL-112146] - xfs: remove the kmalloc to page allocator fallback (Carlos Maiolino) [RHEL-112146] - xfs: refactor backing memory allocations for buffers (Carlos Maiolino) [RHEL-112146] - xfs: remove xfs_buf_is_vmapped (Carlos Maiolino) [RHEL-112146] - xfs: remove xfs_buf.b_offset (Carlos Maiolino) [RHEL-112146] - xfs: add a fast path to xfs_buf_zero when b_addr is set (Carlos Maiolino) [RHEL-112146] - xfs: unmapped buffer item size straddling mismatch (Carlos Maiolino) [RHEL-112146] - xfs: don't wake zone space waiters without m_zone_info (Carlos Maiolino) [RHEL-112146] - xfs: don't increment m_generation for all errors in xfs_growfs_data (Carlos Maiolino) [RHEL-112146] - xfs: fix a missing unlock in xfs_growfs_data (Carlos Maiolino) [RHEL-112146] - xfs: Remove duplicate xfs_rtbitmap.h header (Carlos Maiolino) [RHEL-112146] - xfs: trigger zone GC when out of available rt blocks (Carlos Maiolino) [RHEL-112146] - xfs: export max_open_zones in sysfs (Carlos Maiolino) [RHEL-112146] - xfs: contain more sysfs code in xfs_sysfs.c (Carlos Maiolino) [RHEL-112146] - xfs: export zone stats in /proc/*/mountstats (Carlos Maiolino) [RHEL-112146] - xfs: wire up the show_stats super operation (Carlos Maiolino) [RHEL-112146] - xfs: support write life time based data placement (Carlos Maiolino) [RHEL-112146] - xfs: add a max_open_zones mount option (Carlos Maiolino) [RHEL-112146] - xfs: support zone gaps (Carlos Maiolino) [RHEL-112146] - xfs: enable the zoned RT device feature (Carlos Maiolino) [RHEL-112146] - xfs: disable rt quotas for zoned file systems (Carlos Maiolino) [RHEL-112146] - xfs: disable reflink for zoned file systems (Carlos Maiolino) [RHEL-112146] - xfs: enable fsmap reporting for internal RT devices (Carlos Maiolino) [RHEL-112146] - xfs: support xrep_require_rtext_inuse on zoned file systems (Carlos Maiolino) [RHEL-112146] - xfs: support xchk_xref_is_used_rt_space on zoned file systems (Carlos Maiolino) [RHEL-112146] - xfs: allow COW forks on zoned file systems in xchk_bmap (Carlos Maiolino) [RHEL-112146] - xfs: support growfs on zoned file systems (Carlos Maiolino) [RHEL-112146] - xfs: hide reserved RT blocks from statfs (Carlos Maiolino) [RHEL-112146] - xfs: wire up zoned block freeing in xfs_rtextent_free_finish_item (Carlos Maiolino) [RHEL-112146] - xfs: implement direct writes to zoned RT devices (Carlos Maiolino) [RHEL-112146] - xfs: implement buffered writes to zoned RT devices (Carlos Maiolino) [RHEL-112146] - xfs: implement zoned garbage collection (Carlos Maiolino) [RHEL-112146] - xfs: add support for zoned space reservations (Carlos Maiolino) [RHEL-112146] - xfs: add the zoned space allocator (Carlos Maiolino) [RHEL-112146] - xfs: parse and validate hardware zone information (Carlos Maiolino) [RHEL-112146] - xfs: skip zoned RT inodes in xfs_inodegc_want_queue_rt_file (Carlos Maiolino) [RHEL-112146] - xfs: don't call xfs_can_free_eofblocks from ->release for zoned inodes (Carlos Maiolino) [RHEL-112146] - xfs: disable FITRIM for zoned RT devices (Carlos Maiolino) [RHEL-112146] - xfs: disable sb_frextents for zoned file systems (Carlos Maiolino) [RHEL-112146] - xfs: export zoned geometry via XFS_FSOP_GEOM (Carlos Maiolino) [RHEL-112146] - xfs: allow internal RT devices for zoned mode (Carlos Maiolino) [RHEL-112146] - xfs: define the zoned on-disk format (Carlos Maiolino) [RHEL-112146] - xfs: add a xfs_rtrmap_highest_rgbno helper (Carlos Maiolino) [RHEL-112146] - xfs: support XFS_BMAPI_REMAP in xfs_bmap_del_extent_delay (Carlos Maiolino) [RHEL-112146] - xfs: refine the unaligned check for always COW inodes in xfs_file_dio_write (Carlos Maiolino) [RHEL-112146] - xfs: skip always_cow inodes in xfs_reflink_trim_around_shared (Carlos Maiolino) [RHEL-112146] - xfs: move xfs_bmapi_reserve_delalloc to xfs_iomap.c (Carlos Maiolino) [RHEL-112146] - xfs: add a rtg_blocks helper (Carlos Maiolino) [RHEL-112146] - xfs: factor out a xfs_rt_check_size helper (Carlos Maiolino) [RHEL-112146] - xfs: reduce metafile reservations (Carlos Maiolino) [RHEL-112146] - xfs: make metabtree reservations global (Carlos Maiolino) [RHEL-112146] - xfs: fixup the metabtree reservation in xrep_reap_metadir_fsblocks (Carlos Maiolino) [RHEL-112146] - xfs: trace in-memory freecounter reservations (Carlos Maiolino) [RHEL-112146] - xfs: support reserved blocks for the rt extent counter (Carlos Maiolino) [RHEL-112146] - xfs: generalize the freespace and reserved blocks handling (Carlos Maiolino) [RHEL-112146] - xfs: reflow xfs_dec_freecounter (Carlos Maiolino) [RHEL-112146] - xfs: Use abs_diff instead of XFS_ABSDIFF (Carlos Maiolino) [RHEL-112146] - xfs: remove the XBF_STALE check from xfs_buf_rele_cached (Carlos Maiolino) [RHEL-112146] - xfs: remove most in-flight buffer accounting (Carlos Maiolino) [RHEL-112146] - xfs: decouple buffer readahead from the normal buffer read path (Carlos Maiolino) [RHEL-112146] - xfs: reduce context switches for synchronous buffered I/O (Carlos Maiolino) [RHEL-112146] - xfs: flush inodegc before swapon (Carlos Maiolino) [RHEL-87013] - xfs: rename xfs_iomap_swapfile_activate to xfs_vm_swap_activate (Carlos Maiolino) [RHEL-112146] - xfs: Do not allow norecovery mount with quotacheck (Carlos Maiolino) [RHEL-112146] - xfs: fix data fork format filtering during inode repair (Carlos Maiolino) [RHEL-112146] - xfs: remove xfs_buf_cache.bc_lock (Carlos Maiolino) [RHEL-112146] - xfs: Add error handling for xfs_reflink_cancel_cow_range (Carlos Maiolino) [RHEL-112146] - xfs: Propagate errors from xfs_reflink_cancel_cow_range in xfs_dax_write_iomap_end (Carlos Maiolino) [RHEL-112146] - xfs: remove an out of data comment in _xfs_buf_alloc (Carlos Maiolino) [RHEL-112146] - xfs: fix buffer lookup vs release race (Carlos Maiolino) [RHEL-112146] - xfs: check for dead buffers in xfs_buf_find_insert (Carlos Maiolino) [RHEL-112146] - xfs: add a b_iodone callback to struct xfs_buf (Carlos Maiolino) [RHEL-112146] - xfs: move b_li_list based retry handling to common code (Carlos Maiolino) [RHEL-112146] - xfs: simplify xfsaild_resubmit_item (Carlos Maiolino) [RHEL-112146] - xfs: always complete the buffer inline in xfs_buf_submit (Carlos Maiolino) [RHEL-112146] - xfs: remove the extra buffer reference in xfs_buf_submit (Carlos Maiolino) [RHEL-112146] - xfs: move invalidate_kernel_vmap_range to xfs_buf_ioend (Carlos Maiolino) [RHEL-112146] - xfs: simplify buffer I/O submission (Carlos Maiolino) [RHEL-112146] - xfs: move in-memory buftarg handling out of _xfs_buf_ioapply (Carlos Maiolino) [RHEL-112146] - xfs: move write verification out of _xfs_buf_ioapply (Carlos Maiolino) [RHEL-112146] - xfs: remove xfs_buf_delwri_submit_buffers (Carlos Maiolino) [RHEL-112146] - xfs: simplify xfs_buf_delwri_pushbuf (Carlos Maiolino) [RHEL-112146] - xfs: move xfs_buf_iowait out of (__)xfs_buf_submit (Carlos Maiolino) [RHEL-112146] - xfs: remove the incorrect comment about the b_pag field (Carlos Maiolino) [RHEL-112146] - xfs: remove the incorrect comment above xfs_buf_free_maps (Carlos Maiolino) [RHEL-112146] - xfs/libxfs: replace kmalloc() and memcpy() with kmemdup() (Carlos Maiolino) [RHEL-112146] - xfs: constify feature checks (Carlos Maiolino) [RHEL-112146] - xfs: refactor xfs_fs_statfs (Carlos Maiolino) [RHEL-112146] - xfs: don't take m_sb_lock in xfs_fs_statfs (Carlos Maiolino) [RHEL-112146] - xfs: fix the comment above xfs_discard_endio (Carlos Maiolino) [RHEL-112146] - xfs: remove bp->b_error check in xfs_attr3_root_inactive (Carlos Maiolino) [RHEL-112146] - xfs: remove redundant update for ticket->t_curr_res in xfs_log_ticket_regrant (Carlos Maiolino) [RHEL-112146] - xfs: clean up xfs_end_ioend() to reuse local variables (Carlos Maiolino) [RHEL-112146] - xfs: remove the t_magic field in struct xfs_trans (Carlos Maiolino) [RHEL-112146] - xfs: remove XFS_ILOG_NONCORE (Carlos Maiolino) [RHEL-112146] - xfs: mark xfs_dir_isempty static (Carlos Maiolino) [RHEL-112146] - xfs: enable realtime reflink (Carlos Maiolino) [RHEL-112146] - xfs: fix CoW forks for realtime files (Carlos Maiolino) [RHEL-112146] - xfs: check for shared rt extents when rebuilding rt file's data fork (Carlos Maiolino) [RHEL-112146] - xfs: repair inodes that have a refcount btree in the data fork (Carlos Maiolino) [RHEL-112146] - xfs: online repair of the realtime refcount btree (Carlos Maiolino) [RHEL-112146] - xfs: capture realtime CoW staging extents when rebuilding rt rmapbt (Carlos Maiolino) [RHEL-112146] - xfs: walk the rt reference count tree when rebuilding rmap (Carlos Maiolino) [RHEL-112146] - xfs: check new rtbitmap records against rt refcount btree (Carlos Maiolino) [RHEL-112146] - xfs: don't flag quota rt block usage on rtreflink filesystems (Carlos Maiolino) [RHEL-112146] - xfs: scrub the metadir path of rt refcount btree files (Carlos Maiolino) [RHEL-112146] - xfs: detect and repair misaligned rtinherit directory cowextsize hints (Carlos Maiolino) [RHEL-112146] - xfs: allow dquot rt block count to exceed rt blocks on reflink fs (Carlos Maiolino) [RHEL-112146] - xfs: check reference counts of gaps between rt refcount records (Carlos Maiolino) [RHEL-112146] - xfs: allow overlapping rtrmapbt records for shared data extents (Carlos Maiolino) [RHEL-112146] - xfs: cross-reference checks with the rt refcount btree (Carlos Maiolino) [RHEL-112146] - xfs: scrub the realtime refcount btree (Carlos Maiolino) [RHEL-112146] - xfs: report realtime refcount btree corruption errors to the health system (Carlos Maiolino) [RHEL-112146] - xfs: check that the rtrefcount maxlevels doesn't increase when growing fs (Carlos Maiolino) [RHEL-112146] - xfs: enable extent size hints for CoW operations (Carlos Maiolino) [RHEL-112146] - xfs: apply rt extent alignment constraints to CoW extsize hint (Carlos Maiolino) [RHEL-112146] - xfs: fix xfs_get_extsz_hint behavior with realtime alwayscow files (Carlos Maiolino) [RHEL-112146] - xfs: recover CoW leftovers in the realtime volume (Carlos Maiolino) [RHEL-112146] - xfs: allow inodes to have the realtime and reflink flags (Carlos Maiolino) [RHEL-112146] - xfs: enable sharing of realtime file blocks (Carlos Maiolino) [RHEL-112146] - xfs: enable CoW for realtime data (Carlos Maiolino) [RHEL-112146] - xfs: refactor reflink quota updates (Carlos Maiolino) [RHEL-112146] - xfs: compute rtrmap btree max levels when reflink enabled (Carlos Maiolino) [RHEL-112146] - xfs: update rmap to allow cow staging extents in the rt rmap (Carlos Maiolino) [RHEL-112146] - xfs: create routine to allocate and initialize a realtime refcount btree inode (Carlos Maiolino) [RHEL-112146] - xfs: wire up realtime refcount btree cursors (Carlos Maiolino) [RHEL-112146] - xfs: refactor xfs_reflink_find_shared (Carlos Maiolino) [RHEL-112146] - xfs: wire up a new metafile type for the realtime refcount (Carlos Maiolino) [RHEL-112146] - xfs: add metadata reservations for realtime refcount btree (Carlos Maiolino) [RHEL-112146] - xfs: add realtime refcount btree inode to metadata directory (Carlos Maiolino) [RHEL-112146] - xfs: add realtime refcount btree block detection to log recovery (Carlos Maiolino) [RHEL-112146] - xfs: support recovering refcount intent items targetting realtime extents (Carlos Maiolino) [RHEL-112146] - xfs: add a realtime flag to the refcount update log redo items (Carlos Maiolino) [RHEL-112146] - xfs: prepare refcount functions to deal with rtrefcountbt (Carlos Maiolino) [RHEL-112146] - xfs: add realtime refcount btree operations (Carlos Maiolino) [RHEL-112146] - xfs: realtime refcount btree transaction reservations (Carlos Maiolino) [RHEL-112146] - xfs: introduce realtime refcount btree ondisk definitions (Carlos Maiolino) [RHEL-112146] - xfs: namespace the maximum length/refcount symbols (Carlos Maiolino) [RHEL-112146] - xfs: prepare refcount btree cursor tracepoints for realtime (Carlos Maiolino) [RHEL-112146] - xfs: enable realtime rmap btree (Carlos Maiolino) [RHEL-112146] - xfs: react to fsdax failure notifications on the rt device (Carlos Maiolino) [RHEL-112146] - xfs: don't shut down the filesystem for media failures beyond end of log (Carlos Maiolino) [RHEL-112146] - xfs: hook live realtime rmap operations during a repair operation (Carlos Maiolino) [RHEL-112146] - xfs: create a shadow rmap btree during realtime rmap repair (Carlos Maiolino) [RHEL-112146] - xfs: online repair of the realtime rmap btree (Carlos Maiolino) [RHEL-112146] - xfs: support repairing metadata btrees rooted in metadir inodes (Carlos Maiolino) [RHEL-112146] - xfs: online repair of realtime bitmaps for a realtime group (Carlos Maiolino) [RHEL-112146] - xfs: repair rmap btree inodes (Carlos Maiolino) [RHEL-112146] - xfs: repair inodes that have realtime extents (Carlos Maiolino) [RHEL-112146] - xfs: online repair of realtime file bmaps (Carlos Maiolino) [RHEL-112146] - xfs: walk the rt reverse mapping tree when rebuilding rmap (Carlos Maiolino) [RHEL-112146] - xfs: scrub the metadir path of rt rmap btree files (Carlos Maiolino) [RHEL-112146] - xfs: scan rt rmap when we're doing an intense rmap check of bmbt mappings (Carlos Maiolino) [RHEL-112146] - xfs: cross-reference the realtime rmapbt (Carlos Maiolino) [RHEL-112146] - xfs: cross-reference realtime bitmap to realtime rmapbt scrubber (Carlos Maiolino) [RHEL-112146] - xfs: scrub the realtime rmapbt (Carlos Maiolino) [RHEL-112146] - xfs: allow queued realtime intents to drain before scrubbing (Carlos Maiolino) [RHEL-112146] - xfs: report realtime rmap btree corruption errors to the health system (Carlos Maiolino) [RHEL-112146] - xfs: check that the rtrmapbt maxlevels doesn't increase when growing fs (Carlos Maiolino) [RHEL-112146] - xfs: wire up getfsmap to the realtime reverse mapping btree (Carlos Maiolino) [RHEL-112146] - xfs: create routine to allocate and initialize a realtime rmap btree inode (Carlos Maiolino) [RHEL-112146] - xfs: wire up rmap map and unmap to the realtime rmapbt (Carlos Maiolino) [RHEL-112146] - xfs: wire up a new metafile type for the realtime rmap (Carlos Maiolino) [RHEL-112146] - xfs: add metadata reservations for realtime rmap btrees (Carlos Maiolino) [RHEL-112146] - xfs: add realtime reverse map inode to metadata directory (Carlos Maiolino) [RHEL-112146] - xfs: support file data forks containing metadata btrees (Carlos Maiolino) [RHEL-112146] - xfs: pretty print metadata file types in error messages (Carlos Maiolino) [RHEL-112146] - xfs: support recovering rmap intent items targetting realtime extents (Carlos Maiolino) [RHEL-112146] - xfs: add a realtime flag to the rmap update log redo items (Carlos Maiolino) [RHEL-112146] - xfs: prepare rmap functions to deal with rtrmapbt (Carlos Maiolino) [RHEL-112146] - xfs: add realtime rmap btree operations (Carlos Maiolino) [RHEL-112146] - xfs: realtime rmap btree transaction reservations (Carlos Maiolino) [RHEL-112146] - xfs: introduce realtime rmap btree ondisk definitions (Carlos Maiolino) [RHEL-112146] - xfs: simplify the xfs_rmap_{alloc,free}_extent calling conventions (Carlos Maiolino) [RHEL-112146] - xfs: prepare rmap btree cursor tracepoints for realtime (Carlos Maiolino) [RHEL-112146] - xfs: add some rtgroup inode helpers (Carlos Maiolino) [RHEL-112146] - xfs: allow inode-based btrees to reserve space in the data device (Carlos Maiolino) [RHEL-112146] - xfs: prepare to reuse the dquot pointer space in struct xfs_inode (Carlos Maiolino) [RHEL-112146] - xfs: support storing records in the inode core root (Carlos Maiolino) [RHEL-112146] - xfs: hoist the node iroot update code out of xfs_btree_kill_iroot (Carlos Maiolino) [RHEL-112146] - xfs: hoist the node iroot update code out of xfs_btree_new_iroot (Carlos Maiolino) [RHEL-112146] - xfs: tidy up xfs_bmap_broot_realloc a bit (Carlos Maiolino) [RHEL-112146] - xfs: make xfs_iroot_realloc a bmap btree function (Carlos Maiolino) [RHEL-112146] - xfs: make xfs_iroot_realloc take the new numrecs instead of deltas (Carlos Maiolino) [RHEL-112146] - xfs: refactor the inode fork memory allocation functions (Carlos Maiolino) [RHEL-112146] - xfs: tidy up xfs_iroot_realloc (Carlos Maiolino) [RHEL-112146] - xfs: release the dquot buf outside of qli_lock (Carlos Maiolino) [RHEL-112146] - xfs: lock dquot buffer before detaching dquot from b_li_list (Carlos Maiolino) [RHEL-112146] - xfs: don't return an error from xfs_update_last_rtgroup_size for !XFS_RT (Carlos Maiolino) [RHEL-112146] - xfs: port xfs_ioc_start_commit to multigrain timestamps (Carlos Maiolino) [RHEL-112146] - xfs: return from xfs_symlink_verify early on V4 filesystems (Carlos Maiolino) [RHEL-112146] - xfs: fix zero byte checking in the superblock scrubber (Carlos Maiolino) [RHEL-112146] - xfs: check pre-metadir fields correctly (Carlos Maiolino) [RHEL-112146] - xfs: don't crash on corrupt /quotas dirent (Carlos Maiolino) [RHEL-112146] - xfs: don't move nondir/nonreg temporary repair files to the metadir namespace (Carlos Maiolino) [RHEL-112146] - xfs: fix sb_spino_align checks for large fsblock sizes (Carlos Maiolino) [RHEL-112146] - xfs: convert quotacheck to attach dquot buffers (Carlos Maiolino) [RHEL-112146] - xfs: attach dquot buffer to dquot log item buffer (Carlos Maiolino) [RHEL-112146] - xfs: clean up log item accesses in xfs_qm_dqflush{,_done} (Carlos Maiolino) [RHEL-112146] - xfs: separate dquot buffer reads from xfs_dqflush (Carlos Maiolino) [RHEL-112146] - xfs: don't lose solo dquot update transactions (Carlos Maiolino) [RHEL-112146] - xfs: don't lose solo superblock counter update transactions (Carlos Maiolino) [RHEL-112146] - xfs: avoid nested calls to __xfs_trans_commit (Carlos Maiolino) [RHEL-112146] - xfs: only run precommits once per transaction object (Carlos Maiolino) [RHEL-112146] - xfs: update btree keys correctly when _insrec splits an inode root block (Carlos Maiolino) [RHEL-112146] - xfs: fix error bailout in xfs_rtginode_create (Carlos Maiolino) [RHEL-112146] - xfs: fix null bno_hint handling in xfs_rtallocate_rtg (Carlos Maiolino) [RHEL-112146] - xfs: mark metadir repair tempfiles with IRECOVERY (Carlos Maiolino) [RHEL-112146] - xfs: set XFS_SICK_INO_SYMLINK_ZAPPED explicitly when zapping a symlink (Carlos Maiolino) [RHEL-112146] - xfs: separate healthy clearing mask during repair (Carlos Maiolino) [RHEL-112146] - xfs: don't drop errno values when we fail to ficlone the entire range (Carlos Maiolino) [RHEL-112146] - xfs: return a 64-bit block count from xfs_btree_count_blocks (Carlos Maiolino) [RHEL-112146] - xfs: keep quota directory inode loaded (Carlos Maiolino) [RHEL-112146] - xfs: metapath scrubber should use the already loaded inodes (Carlos Maiolino) [RHEL-112146] - xfs: don't call xfs_bmap_same_rtgroup in xfs_bmap_add_extent_hole_delay (Carlos Maiolino) [RHEL-112146] - xfs: Use xchg() in xlog_cil_insert_pcp_aggregate() (Carlos Maiolino) [RHEL-112146] - xfs: prevent mount and log shutdown race (Carlos Maiolino) [RHEL-112146] - xfs: remove unknown compat feature check in superblock write validation (Carlos Maiolino) [RHEL-112146] - xfs: port ondisk structure checks from xfs/122 to the kernel (Carlos Maiolino) [RHEL-112146] - xfs: separate space btree structures in xfs_ondisk.h (Carlos Maiolino) [RHEL-112146] - xfs: convert struct typedefs in xfs_ondisk.h (Carlos Maiolino) [RHEL-112146] - xfs: enable metadata directory feature (Carlos Maiolino) [RHEL-112146] - xfs: update sb field checks when metadir is turned on (Carlos Maiolino) [RHEL-112146] - xfs: enable realtime quota again (Carlos Maiolino) [RHEL-112146] - xfs: reserve quota for realtime files correctly (Carlos Maiolino) [RHEL-112146] - xfs: create quota preallocation watermarks for realtime quota (Carlos Maiolino) [RHEL-112146] - xfs: advertise realtime quota support in the xqm stat files (Carlos Maiolino) [RHEL-112146] - xfs: fix chown with rt quota (Carlos Maiolino) [RHEL-112146] - xfs: persist quota flags with metadir (Carlos Maiolino) [RHEL-112146] - xfs: scrub quota file metapaths (Carlos Maiolino) [RHEL-112146] - xfs: use metadir for quota inodes (Carlos Maiolino) [RHEL-112146] - xfs: refactor xfs_qm_destroy_quotainos (Carlos Maiolino) [RHEL-112146] - xfs: use rtgroup busy extent list for FITRIM (Carlos Maiolino) [RHEL-112146] - xfs: implement busy extent tracking for rtgroups (Carlos Maiolino) [RHEL-112146] - xfs: port the perag discard code to handle generic groups (Carlos Maiolino) [RHEL-112146] - xfs: move the min and max group block numbers to xfs_group (Carlos Maiolino) [RHEL-112146] - xfs: adjust min_block usage in xfs_verify_agbno (Carlos Maiolino) [RHEL-112146] - xfs: make xfs_rtblock_t a segmented address like xfs_fsblock_t (Carlos Maiolino) [RHEL-112146] - xfs: create helpers to deal with rounding xfs_filblks_t to rtx boundaries (Carlos Maiolino) [RHEL-112146] - xfs: create helpers to deal with rounding xfs_fileoff_t to rtx boundaries (Carlos Maiolino) [RHEL-112146] - xfs: mask off the rtbitmap and summary inodes when metadir in use (Carlos Maiolino) [RHEL-112146] - xfs: scrub metadir paths for rtgroup metadata (Carlos Maiolino) [RHEL-112146] - xfs: repair realtime group superblock (Carlos Maiolino) [RHEL-112146] - xfs: scrub the realtime group superblock (Carlos Maiolino) [RHEL-112146] - xfs: don't coalesce file mappings that cross rtgroup boundaries in scrub (Carlos Maiolino) [RHEL-112146] - xfs: make the RT allocator rtgroup aware (Carlos Maiolino) [RHEL-112146] - xfs: don't merge ioends across RTGs (Carlos Maiolino) [RHEL-112146] - xfs: use realtime EFI to free extents when rtgroups are enabled (Carlos Maiolino) [RHEL-112146] - xfs: support error injection when freeing rt extents (Carlos Maiolino) [RHEL-112146] - xfs: support logging EFIs for realtime extents (Carlos Maiolino) [RHEL-112146] - xfs: force swapext to a realtime file to use the file content exchange ioctl (Carlos Maiolino) [RHEL-112146] - xfs: store rtgroup information with a bmap intent (Carlos Maiolino) [RHEL-112146] - xfs: grow the realtime section when realtime groups are enabled (Carlos Maiolino) [RHEL-112146] - xfs: encode the rtsummary in big endian format (Carlos Maiolino) [RHEL-112146] - xfs: encode the rtbitmap in big endian format (Carlos Maiolino) [RHEL-112146] - xfs: add block headers to realtime bitmap and summary blocks (Carlos Maiolino) [RHEL-112146] - xfs: export the geometry of realtime groups to userspace (Carlos Maiolino) [RHEL-112146] - xfs: record rt group metadata errors in the health system (Carlos Maiolino) [RHEL-112146] - xfs: convert sick_map loops to use ARRAY_SIZE (Carlos Maiolino) [RHEL-112146] - xfs: add frextents to the lazysbcounters when rtgroups enabled (Carlos Maiolino) [RHEL-112146] - xfs: add a helper to prevent bmap merges across rtgroup boundaries (Carlos Maiolino) [RHEL-112146] - xfs: check that rtblock extents do not break rtsupers or rtgroups (Carlos Maiolino) [RHEL-112146] - xfs: export realtime group geometry via XFS_FSOP_GEOM (Carlos Maiolino) [RHEL-112146] - xfs: update realtime super every time we update the primary fs super (Carlos Maiolino) [RHEL-112146] - xfs: check the realtime superblock at mount time (Carlos Maiolino) [RHEL-112146] - xfs: define the format of rt groups (Carlos Maiolino) [RHEL-112146] - xfs: fix rt device offset calculations for FITRIM (Carlos Maiolino) [RHEL-112146] - xfs: make RT extent numbers relative to the rtgroup (Carlos Maiolino) [RHEL-112146] - xfs: refactor xfs_rtsummary_blockcount (Carlos Maiolino) [RHEL-112146] - xfs: refactor xfs_rtbitmap_blockcount (Carlos Maiolino) [RHEL-112146] - xfs: factor out a xfs_growfs_check_rtgeom helper (Carlos Maiolino) [RHEL-112146] - xfs: use xfs_growfs_rt_alloc_fake_mount in xfs_growfs_rt_alloc_blocks (Carlos Maiolino) [RHEL-112146] - xfs: factor out a xfs_growfs_rt_alloc_fake_mount helper (Carlos Maiolino) [RHEL-112146] - xfs: calculate RT bitmap and summary blocks based on sb_rextents (Carlos Maiolino) [RHEL-112146] - xfs: remove XFS_ILOCK_RT* (Carlos Maiolino) [RHEL-112146] - xfs: support creating per-RTG files in growfs (Carlos Maiolino) [RHEL-112146] - xfs: move RT bitmap and summary information to the rtgroup (Carlos Maiolino) [RHEL-112146] - xfs: split xfs_trim_rtdev_extents (Carlos Maiolino) [RHEL-112146] - xfs: cleanup xfs_getfsmap_rtdev_rtbitmap (Carlos Maiolino) [RHEL-112146] - xfs: factor out a xfs_growfs_rt_alloc_blocks helper (Carlos Maiolino) [RHEL-112146] - xfs: add a xfs_qm_unmount_rt helper (Carlos Maiolino) [RHEL-112146] - xfs: add a xfs_bmap_free_rtblocks helper (Carlos Maiolino) [RHEL-112146] - xfs: add rtgroup-based realtime scrubbing context management (Carlos Maiolino) [RHEL-112146] - xfs: support caching rtgroup metadata inodes (Carlos Maiolino) [RHEL-112146] - xfs: add a lockdep class key for rtgroup inodes (Carlos Maiolino) [RHEL-112146] - xfs: define locking primitives for realtime groups (Carlos Maiolino) [RHEL-112146] - xfs: create incore realtime group structures (Carlos Maiolino) [RHEL-112146] - xfs: clean up xfs_getfsmap_helper arguments (Carlos Maiolino) [RHEL-112146] - xfs: repair metadata directory file path connectivity (Carlos Maiolino) [RHEL-112146] - xfs: confirm dotdot target before replacing it during a repair (Carlos Maiolino) [RHEL-112146] - xfs: check metadata directory file path connectivity (Carlos Maiolino) [RHEL-112146] - xfs: move repair temporary files to the metadata directory tree (Carlos Maiolino) [RHEL-112146] - xfs: check the metadata directory inumber in superblocks (Carlos Maiolino) [RHEL-112146] - xfs: scrub metadata directories (Carlos Maiolino) [RHEL-112146] - xfs: fix di_metatype field of inodes that won't load (Carlos Maiolino) [RHEL-112146] - xfs: adjust parent pointer scrubber for sb-rooted metadata files (Carlos Maiolino) [RHEL-112146] - xfs: metadata files can have xattrs if metadir is enabled (Carlos Maiolino) [RHEL-112146] - xfs: do not count metadata directory files when doing online quotacheck (Carlos Maiolino) [RHEL-112146] - xfs: refactor directory tree root predicates (Carlos Maiolino) [RHEL-112146] - xfs: record health problems with the metadata directory (Carlos Maiolino) [RHEL-112146] - xfs: adjust xfs_bmap_add_attrfork for metadir (Carlos Maiolino) [RHEL-112146] - xfs: mark quota inodes as metadata files (Carlos Maiolino) [RHEL-112146] - xfs: don't count metadata directory files to quota (Carlos Maiolino) [RHEL-112146] - xfs: allow bulkstat to return metadata directories (Carlos Maiolino) [RHEL-112146] - xfs: advertise metadata directory feature (Carlos Maiolino) [RHEL-112146] - xfs: hide metadata inodes from everyone because they are special (Carlos Maiolino) [RHEL-112146] - xfs: disable the agi rotor for metadata inodes (Carlos Maiolino) [RHEL-112146] - xfs: read and write metadata inode directory tree (Carlos Maiolino) [RHEL-112146] - xfs: enforce metadata inode flag (Carlos Maiolino) [RHEL-112146] - xfs: load metadata directory root at mount time (Carlos Maiolino) [RHEL-112146] - xfs: iget for metadata inodes (Carlos Maiolino) [RHEL-112146] - xfs: define the on-disk format for the metadir feature (Carlos Maiolino) [RHEL-112146] - xfs: standardize EXPERIMENTAL warning generation (Carlos Maiolino) [RHEL-112146] - xfs: rename metadata inode predicates (Carlos Maiolino) [RHEL-112146] - xfs: constify the xfs_inode predicates (Carlos Maiolino) [RHEL-112146] - xfs: constify the xfs_sb predicates (Carlos Maiolino) [RHEL-112146] - xfs: store a generic group structure in the intents (Carlos Maiolino) [RHEL-112146] - xfs: remove xfs_group_intent_hold and xfs_group_intent_rele (Carlos Maiolino) [RHEL-112146] - xfs: add group based bno conversion helpers (Carlos Maiolino) [RHEL-112146] - xfs: store a generic xfs_group pointer in xfs_getfsmap_info (Carlos Maiolino) [RHEL-112146] - xfs: add a generic group pointer to the btree cursor (Carlos Maiolino) [RHEL-112146] - xfs: convert busy extent tracking to the generic group structure (Carlos Maiolino) [RHEL-112146] - xfs: convert extent busy tracepoints to the generic group structure (Carlos Maiolino) [RHEL-112146] - xfs: return the busy generation from xfs_extent_busy_list_empty (Carlos Maiolino) [RHEL-112146] - xfs: move the online repair rmap hooks to the generic group structure (Carlos Maiolino) [RHEL-112146] - xfs: move draining of deferred operations to the generic group structure (Carlos Maiolino) [RHEL-112146] - xfs: mark xfs_perag_intent_{hold,rele} static (Carlos Maiolino) [RHEL-112146] - xfs: move metadata health tracking to the generic group structure (Carlos Maiolino) [RHEL-112146] - xfs: switch perag iteration from the for_each macros to a while based iterator (Carlos Maiolino) [RHEL-112146] - xfs: add a xfs_group_next_range helper (Carlos Maiolino) [RHEL-112146] - xfs: factor out a generic xfs_group structure (Carlos Maiolino) [RHEL-112146] - xfs: factor out a xfs_iwalk_args helper (Carlos Maiolino) [RHEL-112146] - xfs: insert the pag structures into the xarray later (Carlos Maiolino) [RHEL-112146] - xfs: split xfs_initialize_perag (Carlos Maiolino) [RHEL-112146] - xfs: convert remaining trace points to pass pag structures (Carlos Maiolino) [RHEL-112146] - xfs: pass the pag to the xrep_newbt_extent_class tracepoints (Carlos Maiolino) [RHEL-112146] - xfs: pass the pag to the trace_xrep_calc_ag_resblks{,_btsize} trace points (Carlos Maiolino) [RHEL-112146] - xfs: pass objects to the xrep_ibt_walk_rmap tracepoint (Carlos Maiolino) [RHEL-112146] - xfs: pass the iunlink item to the xfs_iunlink_update_dinode trace point (Carlos Maiolino) [RHEL-112146] - xfs: pass objects to the xfs_irec_merge_{pre,post} trace points (Carlos Maiolino) [RHEL-112146] - xfs: pass a perag structure to the xfs_ag_resv_init_error trace point (Carlos Maiolino) [RHEL-112146] - xfs: constify pag arguments to trace points (Carlos Maiolino) [RHEL-112146] - xfs: remove the unused xrep_bmap_walk_rmap trace point (Carlos Maiolino) [RHEL-112146] - xfs: remove the unused trace_xfs_iwalk_ag trace point (Carlos Maiolino) [RHEL-112146] - xfs: remove the mount field from struct xfs_busy_extents (Carlos Maiolino) [RHEL-112146] - xfs: keep a reference to the pag for busy extents (Carlos Maiolino) [RHEL-112146] - xfs: pass a pag to xfs_extent_busy_{search,reuse} (Carlos Maiolino) [RHEL-112146] - xfs: add a xfs_agino_to_ino helper (Carlos Maiolino) [RHEL-112146] - xfs: add xfs_agbno_to_fsb and xfs_agbno_to_daddr helpers (Carlos Maiolino) [RHEL-112146] - xfs: remove the agno argument to xfs_free_ag_extent (Carlos Maiolino) [RHEL-112146] - xfs: pass a pag to xfs_difree_inode_chunk (Carlos Maiolino) [RHEL-112146] - xfs: remove the unused pag_active_wq field in struct xfs_perag (Carlos Maiolino) [RHEL-112146] - xfs: remove the unused pagb_count field in struct xfs_perag (Carlos Maiolino) [RHEL-112146] - xfs: fix superfluous clearing of info->low in __xfs_getfsmap_datadev (Carlos Maiolino) [RHEL-112146] - xfs: remove xfs_page_mkwrite_iomap_ops (Carlos Maiolino) [RHEL-112146] - xfs: remove __xfs_filemap_fault (Carlos Maiolino) [RHEL-112146] - xfs: split write fault handling out of __xfs_filemap_fault (Carlos Maiolino) [RHEL-112146] - xfs: split the page fault trace event (Carlos Maiolino) [RHEL-112146] - xfs: sb_spino_align is not verified (Carlos Maiolino) [RHEL-112146] - xfs: simplify sector number calculation in xfs_zero_extent (Carlos Maiolino) [RHEL-112146] - xfs: remove the redundant xfs_alloc_log_agf (Carlos Maiolino) [RHEL-112146] - RDMA/core: Free pfn_list with appropriate kvfree call (Kamal Heib) [RHEL-110099] - IB/core: Annotate umem_mutex acquisition under fs_reclaim for lockdep (Kamal Heib) [RHEL-110099] - scsi: RDMA/srp: Don't set a max_segment_size when virt_boundary_mask is set (Kamal Heib) [RHEL-110099] - RDMA/core: Rate limit GID cache warning messages (Kamal Heib) [RHEL-110099] - RDMA/cma: Fix hang when cma_netevent_callback fails to queue_work (Kamal Heib) [RHEL-110099] - IB/cm: Remove dead code and adjust naming (Kamal Heib) [RHEL-110099] - RDMA/core: Avoid hmm_dma_map_alloc() for virtual DMA devices (Kamal Heib) [RHEL-110099] - IB/IPoIB: Allow using netdevs that require the instance lock (Kamal Heib) [RHEL-110099] - IB/IPoIB: Replace vlan_rwsem with the netdev instance lock (Kamal Heib) [RHEL-110099] - IB/IPoIB: Enqueue separate work_structs for each flushed interface (Kamal Heib) [RHEL-110099] - RDMA/umem: Separate implicit ODP initialization from explicit ODP (Kamal Heib) [RHEL-110099] - RDMA/core: Convert UMEM ODP DMA mapping to caching IOVA and page linkage (Kamal Heib) [RHEL-110099] - RDMA/umem: Store ODP access mask information in PFN (Kamal Heib) [RHEL-110099] - RDMA/core: Fix "KASAN: slab-use-after-free Read in ib_register_device" problem (Kamal Heib) [RHEL-110099] - IB/cm: Drop lockdep assert and WARN when freeing old msg (Kamal Heib) [RHEL-110099] - RDMA/core: Move ODP capability definitions to uapi (Kamal Heib) [RHEL-110099] - RDMA/rxe: Enable ODP in ATOMIC WRITE operation (Kamal Heib) [RHEL-110099] - RDMA/rxe: Enable ODP in RDMA FLUSH operation (Kamal Heib) [RHEL-110099] - RDMA/cma: Remove unused rdma_res_to_id (Kamal Heib) [RHEL-110099] - IB/cm: use rwlock for MAD agent lock (Kamal Heib) [RHEL-110099] - RDMA/core: Convert to use ERR_CAST() (Kamal Heib) [RHEL-110099] - RDMA/uverbs: Convert to use ERR_CAST() (Kamal Heib) [RHEL-110099] - RDMA/core: Convert to use ERR_CAST() (Kamal Heib) [RHEL-110099] - mm/hmm: provide generic DMA managing logic (Kamal Heib) [RHEL-110099] - mm/hmm: let users to tag specific PFN with DMA mapped bit (Kamal Heib) [RHEL-110099] - powerpc/kexec: Enable SMT before waking offline CPUs (Mamatha Inamdar) [RHEL-138566] - tipc: Fix use-after-free in tipc_mon_reinit_self(). (Xin Long) [RHEL-133490] - tipc: adjust tipc_nodeid2string() to return string length (Xin Long) [RHEL-133490] - sctp: prevent possible shift-out-of-bounds in sctp_transport_update_rto (Xin Long) [RHEL-133479] - sctp: make sctp_transport_init() void (Xin Long) [RHEL-133479] - sctp: Hold sock lock while iterating over address list (Xin Long) [RHEL-133479] - sctp: Prevent TOCTOU out-of-bounds write (Xin Long) [RHEL-133479] - sctp: Hold RCU read lock while iterating over address list (Xin Long) [RHEL-133479] - net: sctp: fix KMSAN uninit-value in sctp_inq_pop (Xin Long) [RHEL-133479] - selftest: net: fix socklen_t type mismatch in sctp_collision test (Xin Long) [RHEL-133479] - sctp: Constify struct sctp_sched_ops (Xin Long) [RHEL-133479] - sctp: Defer SCTP_DBG_OBJCNT_DEC() to sctp_destroy_sock(). (Xin Long) [RHEL-133479] - selftests: net: fix server bind failure in sctp_vrf.sh (Xin Long) [RHEL-133479] - net/sctp: fix a null dereference in sctp_disposition sctp_sf_do_5_1D_ce() (Xin Long) [RHEL-133479] - net: core: prevent NULL deref in generic_hwtstamp_ioctl_lower() (Paolo Abeni) [RHEL-133483] - net/ip6_tunnel: Prevent perpetual tunnel growth (Guillaume Nault) [RHEL-133477] - rtla/timerlat_bpf: Stop tracing on user latency (Tomas Glozar) [RHEL-125441] - l2tp: reset skb control buffer on xmit (Guillaume Nault) [RHEL-133481] - smc: Fix use-after-free in __pnet_find_base_ndev(). (Mete Durlu) [RHEL-126901] {CVE-2025-40064} - net: Add locking to protect skb->dev access in ip_output (Mete Durlu) [RHEL-126901] - redhat: hsr: Remove tech preview tainting (Felix Maurer) [RHEL-100942] - redhat: Package net/hsr selftests (Felix Maurer) [RHEL-127795] - net/hsr: fix NULL pointer dereference in prp_get_untagged_frame() (Felix Maurer) [RHEL-127793] - netlink: specs: rt-link: Add attributes for hsr (Felix Maurer) [RHEL-127793] - hsr: Follow standard for HSRv0 supervision frames (Felix Maurer) [RHEL-127793] - hsr: Fix supervision frame sending on HSRv0 (Felix Maurer) [RHEL-127793] - net: hsr: prevent creation of HSR device with slaves from another netns (Felix Maurer) [RHEL-127793] - hsr: hold rcu and dev lock for hsr_get_port_ndev (Felix Maurer) [RHEL-127793] - hsr: use hsr_for_each_port_rtnl in hsr_port_get_hsr (Felix Maurer) [RHEL-127793] - hsr: use rtnl lock when iterating over ports (Felix Maurer) [RHEL-127793] - net, hsr: reject HSR frame if skb can't hold tag (Felix Maurer) [RHEL-127793] {CVE-2025-39703} - net: hsr: sync hw addr of slave2 according to slave1 hw addr on PRP (Felix Maurer) [RHEL-100923 RHEL-127793] - redhat: hsr: Enable KUnit test for PRP duplicate discard (Felix Maurer) [RHEL-127793] - net: hsr: Add KUnit test for PRP (Felix Maurer) [RHEL-127793] - net: hsr: Fix PRP duplicate detection (Felix Maurer) [RHEL-127793] - net: hsr: Create and export hsr_get_port_ndev() (Felix Maurer) [RHEL-127793] - net: hsr: remove one synchronize_rcu() from hsr_del_port() (Felix Maurer) [RHEL-127793] - selftests: hsr: Add test for VLAN (Felix Maurer) [RHEL-127793 RHEL-130475] - net: hsr: Add VLAN CTAG filter support (Felix Maurer) [RHEL-127793 RHEL-130475] - net: hsr: Add VLAN support (Felix Maurer) [RHEL-127793 RHEL-130475] - tests: hsr: Increase timeout to 50 seconds (Felix Maurer) [RHEL-127793] - net: hsr: convert to use new timer APIs (Felix Maurer) [RHEL-127793] - nvmet-auth: update sc_c in target host hash calculation (Chris Leech) [RHEL-129753] - nvmet-auth: update sc_c in host response (Chris Leech) [RHEL-129753] - nvme/tcp: handle tls partially sent records in write_space() (Chris Leech) [RHEL-129753] - nvme-auth: update sc_c in host response (Chris Leech) [RHEL-129753] - nvme-auth: use hkdf_expand_label() (Chris Leech) [RHEL-129753] - nvme-auth: add hkdf_expand_label() (Chris Leech) [RHEL-129753] - nvme-tcp: send only permitted commands for secure concat (Chris Leech) [RHEL-129753] - nvme-auth: update bi_directional flag (Chris Leech) [RHEL-129753] - nvme-auth: remove unneeded semicolon (Chris Leech) [RHEL-129753] - nvme-tcp: log TLS handshake failures at error level (Chris Leech) [RHEL-129753] - delay: Fix ndelay() spuriously treated as udelay() (Waiman Long) [RHEL-114122] - timers/Documentation: Cleanup delay/sleep documentation (Waiman Long) [RHEL-114122] - powerpc/rtas: Use fsleep() to minimize additional sleep duration (Waiman Long) [RHEL-114122] - mm/damon/core: Use generic upper bound recommondation for usleep_range() (Waiman Long) [RHEL-114122] - timers: Adjust flseep() to reflect reality (Waiman Long) [RHEL-114122] - delay: Rework udelay and ndelay (Waiman Long) [RHEL-114122] - MAINTAINERS: Add missing file include/linux/delay.h (Waiman Long) [RHEL-114122] - posix-timers: Plug potential memory leak in do_timer_create() (Waiman Long) [RHEL-114122] - selftests: always install UAPI headers to the correct directory (Waiman Long) [RHEL-114122] - vdso/datastore: Gate time data behind CONFIG_GENERIC_GETTIMEOFDAY (Waiman Long) [RHEL-114122] - tick: Do not set device to detached state in tick_shutdown() (Waiman Long) [RHEL-114122] - selftests: vDSO: vdso_standalone_test_x86: Replace source file with symlink (Waiman Long) [RHEL-114122] - timekeeping: Zero initialize system_counterval when querying time from phc drivers (Waiman Long) [RHEL-114122] - RISC-V: vDSO: Correct inline assembly constraints in the getrandom syscall wrapper (Waiman Long) [RHEL-114122] - RISC-V: vDSO: Wire up getrandom() vDSO implementation (Waiman Long) [RHEL-114122] - clocksource: Fix the CPUs' choice in the watchdog per CPU verification (Waiman Long) [RHEL-114122] - alarmtimer: Switch spin_{lock,unlock}_irqsave() to guards (Waiman Long) [RHEL-114122] - alarmtimer: Remove dead return value in clock2alarm() (Waiman Long) [RHEL-114122] - time/jiffies: Change register_refined_jiffies() to void __init (Waiman Long) [RHEL-114122] - timers: Remove unused __round_jiffies(_up) (Waiman Long) [RHEL-114122] - posix-timers: Initialize cache early and move pointer into __timer_data (Waiman Long) [RHEL-114122] - binfmt_elf: Move brk for static PIE even if ASLR disabled (Waiman Long) [RHEL-114122] - arm64: vdso: Work around invalid absolute relocations from GCC (Waiman Long) [RHEL-114122] - timekeeping: Prevent coarse clocks going backwards (Waiman Long) [RHEL-114122] - tools headers: Update the uapi/linux/prctl.h copy with the kernel sources (Waiman Long) [RHEL-114122] - timekeeping: Add a lockdep override in tick_freeze() (Waiman Long) [RHEL-114122] - hrtimer: Add missing ACCESS_PRIVATE() for hrtimer::function (Waiman Long) [RHEL-114122] - tracing/timers: Rename the hrtimer_init event to hrtimer_setup (Waiman Long) [RHEL-114122] - hrtimers: Rename debug_init_on_stack() to debug_setup_on_stack() (Waiman Long) [RHEL-114122] - hrtimers: Rename debug_init() to debug_setup() (Waiman Long) [RHEL-114122] - hrtimers: Rename __hrtimer_init_sleeper() to __hrtimer_setup_sleeper() (Waiman Long) [RHEL-114122] - hrtimers: Remove unnecessary NULL check in hrtimer_start_range_ns() (Waiman Long) [RHEL-114122] - hrtimers: Make callback function pointer private (Waiman Long) [RHEL-114122] - hrtimers: Merge __hrtimer_init() into __hrtimer_setup() (Waiman Long) [RHEL-114122] - hrtimers: Switch to use __htimer_setup() (Waiman Long) [RHEL-114122] - hrtimers: Delete hrtimer_init() (Waiman Long) [RHEL-114122] - Revert "timekeeping: Fix possible inconsistencies in _COARSE clockids" (Waiman Long) [RHEL-114122] - posix-clock: Store file pointer in struct posix_clock_context (Waiman Long) [RHEL-114122] - sparc/vdso: Always reject undefined references during linking (Waiman Long) [RHEL-114122] - x86/vdso: Always reject undefined references during linking (Waiman Long) [RHEL-114122] - vdso: Rework struct vdso_time_data and introduce struct vdso_clock (Waiman Long) [RHEL-114122] - vdso: Move architecture related data before basetime data (Waiman Long) [RHEL-114122] - powerpc/vdso: Prepare introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - arm64/vdso: Prepare introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - x86/vdso: Prepare introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - time/namespace: Prepare introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - vdso/namespace: Rename timens_setup_vdso_data() to reflect new vdso_clock struct (Waiman Long) [RHEL-114122] - vdso/vsyscall: Prepare introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - vdso/gettimeofday: Prepare helper functions for introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - vdso/gettimeofday: Prepare do_coarse_timens() for introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - vdso/gettimeofday: Prepare do_coarse() for introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - vdso/gettimeofday: Prepare do_hres_timens() for introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - vdso/gettimeofday: Prepare do_hres() for introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - vdso/gettimeofday: Prepare introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - vdso/helpers: Prepare introduction of struct vdso_clock (Waiman Long) [RHEL-114122] - vdso/datapage: Define vdso_clock to prepare for multiple PTP clocks (Waiman Long) [RHEL-114122] - vdso: Make vdso_time_data cacheline aligned (Waiman Long) [RHEL-114122] - arm64: Make asm/cache.h compatible with vDSO (Waiman Long) [RHEL-114122] - vdso: Introduce vdso/cache.h (Waiman Long) [RHEL-114122] - selftests: vDSO: vdso_standalone_test_x86: Switch to nolibc (Waiman Long) [RHEL-114122] - selftests: vDSO: vdso_test_gettimeofday: Make compatible with nolibc (Waiman Long) [RHEL-114122] - selftests: vDSO: vdso_test_gettimeofday: Clean up includes (Waiman Long) [RHEL-114122] - selftests: vDSO: parse_vdso: Test __SIZEOF_LONG__ instead of ULONG_MAX (Waiman Long) [RHEL-114122] - selftests: vDSO: parse_vdso: Use UAPI headers instead of libc headers (Waiman Long) [RHEL-114122] - selftests: vDSO: parse_vdso: Drop vdso_init_from_auxv() (Waiman Long) [RHEL-114122] - selftests: vDSO: vdso_standalone_test_x86: Use vdso_init_form_sysinfo_ehdr (Waiman Long) [RHEL-114122] - tools/nolibc: add limits.h shim header (Waiman Long) [RHEL-114122] - selftests: Add headers target (Waiman Long) [RHEL-114122] - tools/include: Add uapi/linux/elf.h (Waiman Long) [RHEL-114122] - elf, uapi: Add types ElfXX_Verdef and ElfXX_Veraux (Waiman Long) [RHEL-114122] - elf, uapi: Add type ElfXX_Versym (Waiman Long) [RHEL-114122] - elf, uapi: Add definitions for VER_FLG_BASE and VER_FLG_WEAK (Waiman Long) [RHEL-114122] - elf, uapi: Add definition for DT_GNU_HASH (Waiman Long) [RHEL-114122] - elf, uapi: Add definition for STN_UNDEF (Waiman Long) [RHEL-114122] - MAINTAINERS: Add vDSO selftests (Waiman Long) [RHEL-114122] - vdso: Remove remnants of architecture-specific time storage (Waiman Long) [RHEL-114122] - vdso: Remove remnants of architecture-specific random state storage (Waiman Long) [RHEL-114122] - x86/vdso/vdso2c: Remove page handling (Waiman Long) [RHEL-114122] - x86/vdso: Switch to generic storage implementation (Waiman Long) [RHEL-114122] - powerpc/vdso: Switch to generic storage implementation (Waiman Long) [RHEL-114122] - MIPS: vdso: Switch to generic storage implementation (Waiman Long) [RHEL-114122] - s390/vdso: Switch to generic storage implementation (Waiman Long) [RHEL-114122] - arm: vdso: Switch to generic storage implementation (Waiman Long) [RHEL-114122] - LoongArch: vDSO: Switch to generic storage implementation (Waiman Long) [RHEL-114122] - riscv: vdso: Switch to generic storage implementation (Waiman Long) [RHEL-114122] - arm64: vdso: Switch to generic storage implementation (Waiman Long) [RHEL-114122] - vdso: Add generic architecture-specific data storage (Waiman Long) [RHEL-114122] - vdso: Add generic random data storage (Waiman Long) [RHEL-114122] - vdso: Add generic time data storage (Waiman Long) [RHEL-114122] - vdso: Rename included Makefile (Waiman Long) [RHEL-114122] - vdso: Introduce vdso/align.h (Waiman Long) [RHEL-114122] - parisc: Remove unused symbol vdso_data (Waiman Long) [RHEL-114122] - x86/vdso: Fix latent bug in vclock_pages calculation (Waiman Long) [RHEL-114122] - time: Switch to hrtimer_setup() (Waiman Long) [RHEL-114122] - io_uring/timeout: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114122] - selftests/timers: Improve skew_consistency by testing with other clockids (Waiman Long) [RHEL-114122] - timekeeping: Fix possible inconsistencies in _COARSE clockids (Waiman Long) [RHEL-114122] - posix-timers: Drop redundant memset() invocation (Waiman Long) [RHEL-114122] - selftests/timers/posix-timers: Add a test for exact allocation mode (Waiman Long) [RHEL-114122] - posix-timers: Provide a mechanism to allocate a given timer ID (Waiman Long) [RHEL-114122] - posix-timers: Make per process list RCU safe (Waiman Long) [RHEL-114122] - posix-timers: Avoid false cacheline sharing (Waiman Long) [RHEL-114122] - posix-timers: Switch to jhash32() (Waiman Long) [RHEL-114122] - posix-timers: Improve hash table performance (Waiman Long) [RHEL-114122] - posix-timers: Make signal_struct:: Next_posix_timer_id an atomic_t (Waiman Long) [RHEL-114122] - posix-timers: Make lock_timer() use guard() (Waiman Long) [RHEL-114122] - posix-timers: Rework timer removal (Waiman Long) [RHEL-114122] - posix-timers: Simplify lock/unlock_timer() (Waiman Long) [RHEL-114122] - posix-timers: Use guards in a few places (Waiman Long) [RHEL-114122] - posix-timers: Remove SLAB_PANIC from kmem cache (Waiman Long) [RHEL-114122] - posix-timers: Remove a few paranoid warnings (Waiman Long) [RHEL-114122] - posix-timers: Cleanup includes (Waiman Long) [RHEL-114122] - posix-timers: Add cond_resched() to posix_timer_add() search loop (Waiman Long) [RHEL-114122] - posix-timers: Initialise timer before adding it to the hash table (Waiman Long) [RHEL-114122] - posix-timers: Ensure that timer initialization is fully visible (Waiman Long) [RHEL-114122] - clocksource: Remove unnecessary strscpy() size argument (Waiman Long) [RHEL-114122] - timer_list: Don't use %%pK through printk() (Waiman Long) [RHEL-114122] - posix-clock: Remove duplicate compat ioctl() handler (Waiman Long) [RHEL-114122] - posix-timers: Invoke cond_resched() during exit_itimers() (Waiman Long) [RHEL-114122] - hrtimers: Replace hrtimer_clock_to_base_table with switch-case (Waiman Long) [RHEL-114122] - rcu-tasks: Move RCU Tasks self-tests to core_initcall() (Waiman Long) [RHEL-114122] - selftests/vDSO: Fix GNU hash table entry size for s390x (Waiman Long) [RHEL-114122] - timers/migration: Fix off-by-one root mis-connection (Waiman Long) [RHEL-114122] {CVE-2025-21813} - hrtimers: Force migrate away hrtimers queued after CPUHP_AP_HRTIMERS_DYING (Waiman Long) [RHEL-114122] {CVE-2025-21816} - hrtimers: Mark is_migration_base() with __always_inline (Waiman Long) [RHEL-114122] - tracing: Add task_prctl_unknown tracepoint (Waiman Long) [RHEL-114122] - selftests: timers: clocksource-switch: Adapt progress to kselftest framework (Waiman Long) [RHEL-114122] - selftests/vDSO: support DT_GNU_HASH (Waiman Long) [RHEL-114122] - timers/migration: Simplify top level detection on group setup (Waiman Long) [RHEL-114122] - timers: Optimize get_timer_[this_]cpu_base() (Waiman Long) [RHEL-114122] - timekeeping: Remove unused ktime_get_fast_timestamps() (Waiman Long) [RHEL-114122] - timer/migration: Fix kernel-doc warnings for union tmigr_state (Waiman Long) [RHEL-114122] - tick/broadcast: Add kernel-doc for function parameters (Waiman Long) [RHEL-114122] - hrtimers: Update the return type of enqueue_hrtimer() (Waiman Long) [RHEL-114122] - clocksource/wdtest: Print time values for short udelay(1) (Waiman Long) [RHEL-114122] - posix-timers: Fix typo in __lock_timer() (Waiman Long) [RHEL-114122] - hrtimers: Handle CPU state correctly on hotplug (Waiman Long) [RHEL-114122] {CVE-2024-57951} - timers/migration: Annotate accesses to ignore flag (Waiman Long) [RHEL-114122] - timers/migration: Enforce group initialization visibility to tree walkers (Waiman Long) [RHEL-114122] - timers/migration: Fix another race between hotplug and idle entry/exit (Waiman Long) [RHEL-114122] - signal/posixtimers: Handle ignore/blocked sequences correctly (Waiman Long) [RHEL-114122] - clocksource: Make negative motion detection more robust (Waiman Long) [RHEL-114122] - ntp: Remove invalid cast in time offset math (Waiman Long) [RHEL-114122] - powerpc/vdso: Remove unused clockmode asm offsets (Waiman Long) [RHEL-114122] - powerpc/vdso: Flag VDSO64 entry points as functions (Waiman Long) [RHEL-114122] - powerpc/vdso: Implement __arch_get_vdso_rng_data() (Waiman Long) [RHEL-114122] - powerpc/vdso: Add a page for non-time data (Waiman Long) [RHEL-114122] - selftests:timers: remove local CLOCKID defines (Waiman Long) [RHEL-114122] - selftests: timers: Remove unneeded semicolon (Waiman Long) [RHEL-114122] - selftests: timers: improve timer_create failure message (Waiman Long) [RHEL-114122] - selftests: timers: Remove local NSEC_PER_SEC and USEC_PER_SEC defines (Waiman Long) [RHEL-114122] - posix-timers: Fix spurious warning on double enqueue versus do_exit() (Waiman Long) [RHEL-114122] - alarmtimers: Remove return value from alarm functions (Waiman Long) [RHEL-114122] - alarmtimers: Remove the throttle mechanism from alarm_forward_now() (Waiman Long) [RHEL-114122] - posix-timers: Cleanup SIG_IGN workaround leftovers (Waiman Long) [RHEL-114122] - signal: Queue ignored posixtimers on ignore list (Waiman Long) [RHEL-114122] - signal: Handle ignored signals in do_sigaction(action != SIG_IGN) (Waiman Long) [RHEL-114122] - posix-timers: Handle ignored list on delete and exit (Waiman Long) [RHEL-114122] - posix-timers: Move sequence logic into struct k_itimer (Waiman Long) [RHEL-114122] - signal: Cleanup unused posix-timer leftovers (Waiman Long) [RHEL-114122] - posix-timers: Embed sigqueue in struct k_itimer (Waiman Long) [RHEL-114122] - signal: Replace resched_timer logic (Waiman Long) [RHEL-114122] - signal: Refactor send_sigqueue() (Waiman Long) [RHEL-114122] - posix-timers: Store PID type in the timer (Waiman Long) [RHEL-114122] - signal: Provide posixtimer_sigqueue_init() (Waiman Long) [RHEL-114122] - signal: Split up __sigqueue_alloc() (Waiman Long) [RHEL-114122] - posix-timers: Add a refcount to struct k_itimer (Waiman Long) [RHEL-114122] - posix-cpu-timers: Use dedicated flag for CPU timer nanosleep (Waiman Long) [RHEL-114122] - posix-cpu-timers: Cleanup the firing logic (Waiman Long) [RHEL-114122] - posix-timers: Make signal overrun accounting sensible (Waiman Long) [RHEL-114122] - posix-timers: Make signal delivery consistent (Waiman Long) [RHEL-114122] - posix-cpu-timers: Correctly update timer status in posix_cpu_timer_del() (Waiman Long) [RHEL-114122] - timekeeping: Always check for negative motion (Waiman Long) [RHEL-114122] - timekeeping: Remove CONFIG_DEBUG_TIMEKEEPING (Waiman Long) [RHEL-114122] - timers: Add missing READ_ONCE() in __run_timer_base() (Waiman Long) [RHEL-114122] - clocksource/drivers/timer-tegra: Remove clockevents shutdown call on offlining (Waiman Long) [RHEL-114122] - clocksource/drivers/qcom: Remove clockevents shutdown call on offlining (Waiman Long) [RHEL-114122] - clocksource/drivers/armada-370-xp: Remove clockevents shutdown call on offlining (Waiman Long) [RHEL-114122] - clocksource/drivers/exynos_mct: Remove clockevents shutdown call on offlining (Waiman Long) [RHEL-114122] - clocksource/drivers/arm_global_timer: Remove clockevents shutdown call on offlining (Waiman Long) [RHEL-114122] - clocksource/drivers/arm_arch_timer: Remove clockevents shutdown call on offlining (Waiman Long) [RHEL-114122] - ARM: smp_twd: Remove clockevents shutdown call on offlining (Waiman Long) [RHEL-114122] - tick: Remove now unneeded low-res tick stop on CPUHP_AP_TICK_DYING (Waiman Long) [RHEL-114122] - clockevents: Shutdown and unregister current clockevents at CPUHP_AP_TICK_DYING (Waiman Long) [RHEL-114122] - clockevents: Improve clockevents_notify_released() comment (Waiman Long) [RHEL-114122] - posix-timers: Add proper state tracking (Waiman Long) [RHEL-114122] - posix-timers: Rename k_itimer:: It_requeue_pending (Waiman Long) [RHEL-114122] - posix-timers: Drop signal if timer has been deleted or reprogrammed (Waiman Long) [RHEL-114122] - signal: Allow POSIX timer signals to be dropped (Waiman Long) [RHEL-114122] - posix-timers: Cure si_sys_private race (Waiman Long) [RHEL-114122] - signal: Cleanup flush_sigqueue_mask() (Waiman Long) [RHEL-114122] - signal: Confine POSIX_TIMERS properly (Waiman Long) [RHEL-114122] - time: Fix references to _msecs_to_jiffies() handling of values (Waiman Long) [RHEL-114122] - time: Partially revert cleanup on msecs_to_jiffies() documentation (Waiman Long) [RHEL-114122] - timekeeping: Merge timekeeping_update_staged() and timekeeping_update() (Waiman Long) [RHEL-114122] - timekeeping: Remove TK_MIRROR timekeeping_update() action (Waiman Long) [RHEL-114122] - timekeeping: Rework do_adjtimex() to use shadow_timekeeper (Waiman Long) [RHEL-114122] - timekeeping: Rework timekeeping_suspend() to use shadow_timekeeper (Waiman Long) [RHEL-114122] - timekeeping: Rework timekeeping_resume() to use shadow_timekeeper (Waiman Long) [RHEL-114122] - timekeeping: Rework timekeeping_inject_sleeptime64() to use shadow_timekeeper (Waiman Long) [RHEL-114122] - timekeeping: Rework timekeeping_init() to use shadow_timekeeper (Waiman Long) [RHEL-114122] - timekeeping: Rework change_clocksource() to use shadow_timekeeper (Waiman Long) [RHEL-114122] - timekeeping: Rework timekeeping_inject_offset() to use shadow_timekeeper (Waiman Long) [RHEL-114122] - timekeeping: Rework do_settimeofday64() to use shadow_timekeeper (Waiman Long) [RHEL-114122] - timekeeping: Provide timekeeping_restore_shadow() (Waiman Long) [RHEL-114122] - timekeeping: Introduce combined timekeeping action flag (Waiman Long) [RHEL-114122] - timekeeping: Split out timekeeper update of timekeeping_advanced() (Waiman Long) [RHEL-114122] - timekeeping: Add struct tk_data as argument to timekeeping_update() (Waiman Long) [RHEL-114122] - timekeeping: Introduce tkd_basic_setup() to make lock and seqcount init reusable (Waiman Long) [RHEL-114122] - timekeeping: Define a struct type for tk_core to make it reusable (Waiman Long) [RHEL-114122] - timekeeping: Move timekeeper_lock into tk_core (Waiman Long) [RHEL-114122] - timekeeping: Encapsulate locking/unlocking of timekeeper_lock (Waiman Long) [RHEL-114122] - timekeeping: Move shadow_timekeeper into tk_core (Waiman Long) [RHEL-114122] - timekeeping: Reorder struct timekeeper (Waiman Long) [RHEL-114122] - timekeeping: Simplify code in timekeeping_advance() (Waiman Long) [RHEL-114122] - timekeeping: Abort clocksource change in case of failure (Waiman Long) [RHEL-114122] - timekeeping: Avoid duplicate leap state update (Waiman Long) [RHEL-114122] - timekeeping: Don't stop time readers across hard_pps() update (Waiman Long) [RHEL-114122] - timekeeping: Read NTP tick length only once (Waiman Long) [RHEL-114122] - posix-timers: Replace call_rcu() by kfree_rcu() for simple kmem_cache_free() callback (Waiman Long) [RHEL-114122] - timers: Add a warning to usleep_range_state() for wrong order of arguments (Waiman Long) [RHEL-114122] - timers: Update function descriptions of sleep/delay related functions (Waiman Long) [RHEL-114122] - timers: Rename usleep_idle_range() to usleep_range_idle() (Waiman Long) [RHEL-114122] - timers: Update schedule_[hr]timeout*() related function descriptions (Waiman Long) [RHEL-114122] - time: Remove '%%' from numeric constant in kernel-doc comment (Waiman Long) [RHEL-114122] - clocksource: Remove unused clocksource_change_rating (Waiman Long) [RHEL-114122] - timekeeping: Don't use seqcount loop in ktime_mono_to_any() on 64-bit systems (Waiman Long) [RHEL-114122] - timekeeping: Add the boot clock to system time snapshot (Waiman Long) [RHEL-114122] - ntp: Move pps monitors into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move pps_freq/stabil into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move pps_shift/intcnt into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move pps_fbase into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move pps_jitter into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move pps_ft into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move pps_valid into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move ntp_next_leap_sec into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move time_adj/ntp_tick_adj into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move time_freq/reftime into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move time_max/esterror into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move time_offset/constant into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move tick_stat* into ntp_data (Waiman Long) [RHEL-114122] - ntp: Move tick_length* into ntp_data (Waiman Long) [RHEL-114122] - ntp: Introduce struct ntp_data (Waiman Long) [RHEL-114122] - ntp: Read reference time only once (Waiman Long) [RHEL-114122] - ntp: Convert functions with only two states to bool (Waiman Long) [RHEL-114122] - ntp: Cleanup formatting of code (Waiman Long) [RHEL-114122] - ntp: Clean up comments (Waiman Long) [RHEL-114122] - ntp: Make tick_usec static (Waiman Long) [RHEL-114122] - ntp: Remove unused tick_nsec (Waiman Long) [RHEL-114122] - vdso: Rename struct arch_vdso_data to arch_vdso_time_data (Waiman Long) [RHEL-114122] - softirq: Use a dedicated thread for timer wakeups on PREEMPT_RT. (Waiman Long) [RHEL-114122] - timers: Use __raise_softirq_irqoff() to raise the softirq. (Waiman Long) [RHEL-114122] - hrtimer: Use __raise_softirq_irqoff() to raise the softirq (Waiman Long) [RHEL-114122] - iio: magnetometer: fix if () scoped_guard() formatting (Waiman Long) [RHEL-114122] - seqlock, treewide: Switch to non-raw seqcount_latch interface (Waiman Long) [RHEL-114122] - kcsan, seqlock: Support seqcount_latch_t (Waiman Long) [RHEL-114122] - time/sched_clock: Broaden sched_clock()'s instrumentation coverage (Waiman Long) [RHEL-114122] - time/sched_clock: Swap update_clock_read_data() latch writes (Waiman Long) [RHEL-114122] - cleanup: Adjust scoped_guard() macros to avoid potential warning (Waiman Long) [RHEL-114122] - cleanup: Remove address space of returned pointer (Waiman Long) [RHEL-114122] - Revert "softirq: Use a dedicated thread for timer wakeups." (Waiman Long) [RHEL-114122] - Revert "rcutorture: Also force sched priority to timersd on boosting test." (Waiman Long) [RHEL-114122] - Revert "tick: Fix timer storm since introduction of timersd" (Waiman Long) [RHEL-114122] - Revert "softirq: Wake ktimers thread also in softirq." (Waiman Long) [RHEL-114122] - Revert "softirq: Clean white space." (Waiman Long) [RHEL-114122] - Revert "timer: Update the ktimersd series." (Waiman Long) [RHEL-114122] - net: ethtool: mm: reset verification status when link is down (Ivan Vecera) [RHEL-122905] - net: ethtool: mm: extract stmmac verification logic into common library (Ivan Vecera) [RHEL-122905] - redhat/configs: automotive: enable CAN_FLEXCAN (Jared Kangas) [RHEL-116294] - can: flexcan: disable transceiver during system PM (Jared Kangas) [RHEL-116294] - can: flexcan: only change CAN state when link up in system PM (Jared Kangas) [RHEL-116294] - can: flexcan: add transceiver capabilities (Jared Kangas) [RHEL-116294] - dt-bindings: can: fsl,flexcan: add transceiver capabilities (Jared Kangas) [RHEL-116294] - dt-bindings: can: fsl,flexcan: add i.MX94 support (Jared Kangas) [RHEL-116294] - can: flexcan: add NXP S32G2/S32G3 SoC support (Jared Kangas) [RHEL-116294] - can: flexcan: Add quirk to handle separate interrupt lines for mailboxes (Jared Kangas) [RHEL-116294] - dt-bindings: can: fsl,flexcan: add S32G2/S32G3 SoC support (Jared Kangas) [RHEL-116294] - powerpc/book3s64/hugetlb: Fix disabling hugetlb when fadump is active (Mamatha Inamdar) [RHEL-136426] - mm/vmalloc: fix data race in show_numa_info() (Waiman Long) [RHEL-138000] {CVE-2025-38383} - vmalloc: use for_each_vmap_node() in purge-vmap-area (Waiman Long) [RHEL-138000] - vmalloc: switch to for_each_vmap_node() helper (Waiman Long) [RHEL-138000] - vmalloc: add for_each_vmap_node() helper (Waiman Long) [RHEL-138000] - redhat: enable mshv_root module with taint (Paolo Bonzini) [RHEL-132194] - Drivers: hv: vmbus: Fix typos in vmbus_drv.c (Paolo Bonzini) [RHEL-132194] - Drivers: hv: vmbus: Fix sysfs output format for ring buffer index (Paolo Bonzini) [RHEL-132194] - Drivers: hv: vmbus: Clean up sscanf format specifier in target_cpu_store() (Paolo Bonzini) [RHEL-132194] - mshv: Use common "entry virt" APIs to do work in root before running guest (Paolo Bonzini) [RHEL-132194] - entry: Rename "kvm" entry code assets to "virt" to genericize APIs (Paolo Bonzini) [RHEL-132194] - entry/kvm: KVM: Move KVM details related to signal/-EINTR into KVM proper (Paolo Bonzini) [RHEL-132194] - mshv: Handle NEED_RESCHED_LAZY before transferring to guest (Paolo Bonzini) [RHEL-132194] - Drivers: hv: Simplify data structures for VMBus channel close message (Paolo Bonzini) [RHEL-132194] - Drivers: hv: util: Cosmetic changes for hv_utils_transport.c (Paolo Bonzini) [RHEL-132194] - mshv: Add support for a new parent partition configuration (Paolo Bonzini) [RHEL-132194] - clocksource: hyper-v: Skip unnecessary checks for the root partition (Paolo Bonzini) [RHEL-132194] - hyperv: Add missing field to hv_output_map_device_interrupt (Paolo Bonzini) [RHEL-132194] - mshv_eventfd: convert to CLASS(fd) (Paolo Bonzini) [RHEL-132194] - PCI: hv: Use the correct hypercall for unmasking interrupts on nested (Paolo Bonzini) [RHEL-132194] - x86/hyperv: Expose hv_map_msi_interrupt() (Paolo Bonzini) [RHEL-132194] - Drivers: hv: Use nested hypercall for post message and signal event (Paolo Bonzini) [RHEL-132194] - x86/hyperv: Clean up hv_map/unmap_interrupt() return values (Paolo Bonzini) [RHEL-132194] - x86/hyperv: Fix usage of cpu_online_mask to get valid cpu (Paolo Bonzini) [RHEL-132194] - PCI: hv: Don't load the driver for baremetal root partition (Paolo Bonzini) [RHEL-132194] - PCI: hv: Fix warnings for missing export.h header inclusion (Paolo Bonzini) [RHEL-132194] - clocksource: hyper-v: Fix warnings for missing export.h header inclusion (Paolo Bonzini) [RHEL-132194] - x86/hyperv: Fix warnings for missing export.h header inclusion (Paolo Bonzini) [RHEL-132194] - Drivers: hv: Fix warnings for missing export.h header inclusion (Paolo Bonzini) [RHEL-132194] - drivers: hv: Convert open-coded timeouts to secs_to_jiffies() (Paolo Bonzini) [RHEL-132194] - redhat/configs: automotive: enable NXP_STM_TIMER (Jared Kangas) [RHEL-131326] - clocksource/drivers/nxp-stm: Prevent driver unbind (Jared Kangas) [RHEL-131326] - clocksource/drivers/stm: Fix double deregistration on probe failure (Jared Kangas) [RHEL-131326] - clocksource/drivers/nxp-stm: Fix section mismatches (Jared Kangas) [RHEL-131326] - arm64: dts: s32g399a-rdb3: Enable the STM timers (Jared Kangas) [RHEL-131326] - arm64: dts: s32g3: Add the System Timer Module nodes (Jared Kangas) [RHEL-131326] - arm64: dts: s32g274-rd2: Enable the STM timers (Jared Kangas) [RHEL-131326] - arm64: dts: s32g2: Add the System Timer Module nodes (Jared Kangas) [RHEL-131326] - clocksource/drivers/stm: Add module owner (Jared Kangas) [RHEL-131326] - clocksource/drivers/nxp-timer: Add the System Timer Module for the s32gx platforms (Jared Kangas) [RHEL-131326] - dt-bindings: timer: Add NXP System Timer Module (Jared Kangas) [RHEL-131326] - bitfield: Add FIELD_MODIFY() helper (Anusha Srivatsa) [RHEL-126213] - iopoll: Generalize read_poll_timeout() into poll_timeout_us() (Anusha Srivatsa) [RHEL-126213] - PM: hibernate: Fix pm_hibernation_mode_is_suspend() build breakage (Anusha Srivatsa) [RHEL-126213] - PM: hibernate: Add pm_hibernation_mode_is_suspend() (Anusha Srivatsa) [RHEL-126213] - drm/i915: rename range_overflows_end() to range_end_overflows() (Anusha Srivatsa) [RHEL-126213] - overflow: add range_overflows() and range_end_overflows() (Anusha Srivatsa) [RHEL-126213] - video: screen_info: Add pixel-format helper for linear framebuffers (Anusha Srivatsa) [RHEL-126213] - video: pixel_format: Add compare helpers (Anusha Srivatsa) [RHEL-126213] - mm: make folio page count functions return unsigned (Anusha Srivatsa) [RHEL-126213] - list: add list_last_entry_or_null() (Anusha Srivatsa) [RHEL-126213] - scsi: lpfc: Update lpfc version to 14.4.0.12 (Paul Ely) [RHEL-127898] - scsi: lpfc: Add capability to register Platform Name ID to fabric (Paul Ely) [RHEL-127898] - scsi: lpfc: Allow support for BB credit recovery in point-to-point topology (Paul Ely) [RHEL-127898] - scsi: lpfc: Fix reusing an ndlp that is marked NLP_DROPPED during FLOGI (Paul Ely) [RHEL-127898] - scsi: lpfc: Modify kref handling for Fabric Controller ndlps (Paul Ely) [RHEL-127898] - scsi: lpfc: Fix leaked ndlp krefs when in point-to-point topology (Paul Ely) [RHEL-127898] - scsi: lpfc: Ensure unregistration of rpis for received PLOGIs (Paul Ely) [RHEL-127898] - scsi: lpfc: Remove redundant NULL ptr assignment in lpfc_els_free_iocb() (Paul Ely) [RHEL-127898] - scsi: lpfc: Revise discovery related function headers and comments (Paul Ely) [RHEL-127898] - scsi: lpfc: Update various NPIV diagnostic log messaging (Paul Ely) [RHEL-127898] - scsi: lpfc: Copyright updates for 14.4.0.11 patches (Paul Ely) [RHEL-127898] - scsi: lpfc: Update lpfc version to 14.4.0.11 (Paul Ely) [RHEL-127898] - scsi: lpfc: Convert debugfs directory counts from atomic to unsigned int (Paul Ely) [RHEL-127898] - scsi: lpfc: Clean up extraneous phba dentries (Paul Ely) [RHEL-127898] - scsi: lpfc: Use switch case statements in DIF debugfs handlers (Paul Ely) [RHEL-127898] - scsi: lpfc: Fix memory leak when nvmeio_trc debugfs entry is used (Paul Ely) [RHEL-127898] - scsi: lpfc: Define size of debugfs entry for xri rebalancing (Paul Ely) [RHEL-127898] - scsi: lpfc: Ensure PLOGI_ACC is sent prior to PRLI in Point to Point topology (Paul Ely) [RHEL-127898] - scsi: lpfc: Check return status of lpfc_reset_flush_io_context during TGT_RESET (Paul Ely) [RHEL-127898] - scsi: lpfc: Decrement ndlp kref after FDISC retries exhausted (Paul Ely) [RHEL-127898] - scsi: lpfc: Remove ndlp kref decrement clause for F_Port_Ctrl in lpfc_cleanup (Paul Ely) [RHEL-127898] - scsi: lpfc: Clean up allocated queues when queue setup mbox commands fail (Paul Ely) [RHEL-127898] - scsi: lpfc: Abort outstanding ELS WQEs regardless of if rmmod is in progress (Paul Ely) [RHEL-127898] - scsi: lpfc: Remove unused member variables in struct lpfc_hba and lpfc_vport (Paul Ely) [RHEL-127898] - scsi: lpfc: Use int type to store negative error codes (Paul Ely) [RHEL-127898] - scsi: lpfc: use min() to improve code (Paul Ely) [RHEL-127898] - scsi: lpfc: Fix wrong function reference in a comment (Paul Ely) [RHEL-127898] - lpfc: don't use file->f_path.dentry for comparisons (Paul Ely) [RHEL-127898] - fbcon: Fix OOB access in font allocation (José Expósito) [RHEL-107473] - fbcon: fix integer overflow in fbcon_do_set_font (José Expósito) [RHEL-107473] - Revert "vgacon: Add check for vc_origin address range in vgacon_scroll()" (José Expósito) [RHEL-107473] - fbdev: Fix vmalloc out-of-bounds write in fast_imageblit (José Expósito) [RHEL-107473] - fbcon: Use 'bool' where appopriate (José Expósito) [RHEL-107473] - fbcon: Introduce get_{fg,bg}_color() (José Expósito) [RHEL-107473] - fbcon: fbcon_is_inactive() -> fbcon_is_active() (José Expósito) [RHEL-107473] - fbcon: fbcon_cursor_noblink -> fbcon_cursor_blink (José Expósito) [RHEL-107473] - fbdev: Fix typo in Kconfig text for FB_DEVICE (José Expósito) [RHEL-107473] - fbdev: imxfb: Check fb_add_videomode to prevent null-ptr-deref (José Expósito) [RHEL-107473] - fbdev: svgalib: Clean up coding style (José Expósito) [RHEL-107473] - fbdev: kyro: Use devm_ioremap_wc() for screen mem (José Expósito) [RHEL-107473] - fbdev: kyro: Use devm_ioremap() for mmio registers (José Expósito) [RHEL-107473] - fbdev: kyro: Add missing PCI memory region request (José Expósito) [RHEL-107473] - fbdev: simplefb: Use of_reserved_mem_region_to_resource() for "memory-region" (José Expósito) [RHEL-107473] - fbdev: fix potential buffer overflow in do_register_framebuffer() (José Expósito) [RHEL-107473] - fbdev: nvidiafb: add depends on HAS_IOPORT (José Expósito) [RHEL-107473] - fbdev: nvidiafb: fix build on 32-bit ARCH=um (José Expósito) [RHEL-107473] - fbcon: Fix outdated registered_fb reference in comment (José Expósito) [RHEL-107473] - gpu/trace: make TRACE_GPU_MEM configurable (José Expósito) [RHEL-107473] - video: Make global edid_info depend on CONFIG_FIRMWARE_EDID (José Expósito) [RHEL-107473] - video: Make CONFIG_FIRMWARE_EDID generally available (José Expósito) [RHEL-107473] - fbdev/viafb: Do not include (José Expósito) [RHEL-107473] - fbdev/viafb: Include (José Expósito) [RHEL-107473] - fbdev/sisfb: Unexport symbols (José Expósito) [RHEL-107473] - fbdev/pxafb: Unexport symbol (José Expósito) [RHEL-107473] - fbdev/mb862xx: Do not include (José Expósito) [RHEL-107473] - fbdev/omap2: Do not include (José Expósito) [RHEL-107473] - fbdev/omap2: Include (José Expósito) [RHEL-107473] - fbdev/omap: Include (José Expósito) [RHEL-107473] - fbdev/matroxfb: Include (José Expósito) [RHEL-107473] - fbdev/matroxfb: Remove trailing whitespaces (José Expósito) [RHEL-107473] - fbdev/cyber2000fb: Unexport symbols (José Expósito) [RHEL-107473] - fbdev/c2p: Include (José Expósito) [RHEL-107473] - fbdev: Include (José Expósito) [RHEL-107473] - fbdev: Remove trailing whitespaces (José Expósito) [RHEL-107473] - video: screen_info: Relocate framebuffers behind PCI bridges (José Expósito) [RHEL-107473] - fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var (José Expósito) [RHEL-107473] - fbdev: Fix do_register_framebuffer to prevent null-ptr-deref in fb_videomode_to_var (José Expósito) [RHEL-107473] - fbdev: core: fbcvt: avoid division by 0 in fb_cvt_hperiod() (José Expósito) [RHEL-107473] - fbcon: Make sure modelist not set on unregistered console (José Expósito) [RHEL-107473] - vgacon: Add check for vc_origin address range in vgacon_scroll() (José Expósito) [RHEL-107473] - fbdev: arkfb: Cast ics5342_init() allocation type (José Expósito) [RHEL-107473] - fbdev: nvidiafb: Correct const string length in nvidiafb_setup() (José Expósito) [RHEL-107473] - fbdev: carminefb: Fix spelling mistake of CARMINE_TOTAL_DIPLAY_MEM (José Expósito) [RHEL-107473] - fbdev: via: use new GPIO line value setter callbacks (José Expósito) [RHEL-107473] - dummycon: Trigger redraw when switching consoles with deferred takeover (José Expósito) [RHEL-107473] - fbdev: Send old blank state in FB_EVENT_BLANK (José Expósito) [RHEL-107473] - fbdev: Track display blanking state (José Expósito) [RHEL-107473] - fbdev: Rework fb_blank() (José Expósito) [RHEL-107473] - fbdev: fsl-diu-fb: add missing device_remove_file() (José Expósito) [RHEL-107473] - fbcon: Use static attribute groups for sysfs entries (José Expósito) [RHEL-107473] - fbdev: sm501fb: Add some geometry checks. (José Expósito) [RHEL-107473] - fbdev: omapfb: Add 'plane' value check (José Expósito) [RHEL-107473] - fbdev: omapfb: Remove writeback deadcode (José Expósito) [RHEL-107473] - fbdev: Refactoring the fbcon packed pixel drawing routines (José Expósito) [RHEL-107473] - fbdev: wmt_ge_rops: Remove fb_draw.h includes (José Expósito) [RHEL-107473] - fbdev: mach64_cursor: Remove fb_draw.h includes (José Expósito) [RHEL-107473] - fbdev: Register sysfs groups through device_add_group (José Expósito) [RHEL-107473] - fbdev: lcdcfb: Register sysfs groups through driver core (José Expósito) [RHEL-107473] - mdacon: rework dependency list (José Expósito) [RHEL-107473] - dummycon: fix default rows/cols (José Expósito) [RHEL-107473] - dummycon: only build module if there are users (José Expósito) [RHEL-107473] - fbdev: au1100fb: Move a variable assignment behind a null pointer check (José Expósito) [RHEL-107473] - fbdev: pxafb: use devm_kmemdup*() (José Expósito) [RHEL-107473] - fbcon: Use correct erase colour for clearing in fbcon (José Expósito) [RHEL-107473] - fbdev: core: tileblit: Implement missing margin clearing for tileblit (José Expósito) [RHEL-107473] - fb_defio: do not use deprecated page->mapping, index fields (José Expósito) [RHEL-107473] - mm: provide mapping_wrprotect_range() function (José Expósito) [RHEL-107473] - mm: refactor rmap_walk_file() to separate out traversal logic (José Expósito) [RHEL-107473] - redhat/configs: Add new configs from video backport (José Expósito) [RHEL-107473] - devlink: rate: Unset parent pointer in devl_rate_nodes_destroy (Petr Oros) [RHEL-121724] - devlink: Introduce switchdev_inactive eswitch mode (Petr Oros) [RHEL-121724] - devlink: Add new "max_mac_per_vf" generic device param (Petr Oros) [RHEL-121724] - devlink: region: correct port region lookup to use port_ops (Petr Oros) [RHEL-121724] - devlink rate: Remove unnecessary 'static' from a couple places (Petr Oros) [RHEL-121724] - devlink: Add a 'num_doorbells' driverinit param (Petr Oros) [RHEL-121724] - docs: devlink: Sort table of contents alphabetically (Petr Oros) [RHEL-121724] - devlink: Add 'total_vfs' generic device param (Petr Oros) [RHEL-121724] - devlink: Make health reporter burst period configurable (Petr Oros) [RHEL-121724] - devlink: Introduce burst period for health reporter (Petr Oros) [RHEL-121724] - devlink: Move health reporter recovery abort logic to a separate function (Petr Oros) [RHEL-121724] - devlink: Move graceful period parameter to reporter ops (Petr Oros) [RHEL-121724] - devlink/port: Check attributes early and constify (Petr Oros) [RHEL-121724] - devlink/port: Simplify return checks (Petr Oros) [RHEL-121724] - netdevsim: add fw_update_flash_chunk_time_ms debugfs knobs (Petr Oros) [RHEL-121724] - devlink: Fix excessive stack usage in rate TC bandwidth parsing (Petr Oros) [RHEL-121724] - selftests: drv-net: Add test for devlink-rate traffic class bandwidth distribution (Petr Oros) [RHEL-121724] - selftest: netdevsim: Add devlink rate tc-bw test (Petr Oros) [RHEL-121724] - devlink: Extend devlink rate API with traffic classes bandwidth management (Petr Oros) [RHEL-121724] - netlink: introduce type-checking attribute iteration for nlmsg (Petr Oros) [RHEL-121724] - docs: netdevsim: fixe typo in netdevsim documentation (Petr Oros) [RHEL-121724] - selftests: drv-net: import things in lib one by one (Petr Oros) [RHEL-121724] - documentation: networking: devlink: Fix a typo in devlink-trap.rst (Petr Oros) [RHEL-121724] - devlink: add value check to devlink_info_version_put() (Petr Oros) [RHEL-121724] - usb: dwc3: Fix race condition between concurrent dwc3_remove_requests() call paths (CKI Backport Bot) [RHEL-137151] {CVE-2025-68287} - mm/memory-failure: fix redundant updates for already poisoned pages (CKI Backport Bot) [RHEL-114813] - block: Use RCU in blk_mq_[un]quiesce_tagset() instead of set->tag_list_lock (Ming Lei) [RHEL-128781] - KVM: arm64: VHE: Compute fgt traps before activating them (Donald Dutile) [RHEL-131242] - KVM: arm64: Finalize ID registers only once per VM (Donald Dutile) [RHEL-131242] - KVM: arm64: Limit clearing of ID_{AA64PFR0,PFR1}_EL1.GIC to userspace irqchip (Donald Dutile) [RHEL-131242] - KVM: arm64: Set ID_{AA64PFR0,PFR1}_EL1.GIC when GICv3 is configured (Donald Dutile) [RHEL-131242] - KVM: arm64: Make all 32bit ID registers fully writable (Donald Dutile) [RHEL-131242] - KVM: arm64: Check the untrusted offset in FF-A memory share (Donald Dutile) [RHEL-131242] - KVM: arm64: Check range args for pKVM mem transitions (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Filter ZCR_EL2 in get-reg-list (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Add SCTLR2_EL2 to get-reg-list (Donald Dutile) [RHEL-131242] - KVM: selftests: fix MAPC RDbase target formatting in vgic_lpi_stress (Donald Dutile) [RHEL-131242] - arm64: Revamp HCR_EL2.E2H RES1 detection (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Use FGT write trap of MDSCR_EL1 when available (Donald Dutile) [RHEL-131242] - KVM: arm64: Compute per-vCPU FGTs at vcpu_load() (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Fix misleading comment about virtual timer encoding (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Add an E2H=0-specific configuration to get_reg_list (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Make dependencies on VHE-specific registers explicit (Donald Dutile) [RHEL-131242] - KVM: arm64: Kill leftovers of ad-hoc timer userspace access (Donald Dutile) [RHEL-131242] - KVM: arm64: Fix WFxT handling of nested virt (Donald Dutile) [RHEL-131242] - KVM: arm64: Move CNT*CT_EL0 userspace accessors to generic infrastructure (Donald Dutile) [RHEL-131242] - KVM: arm64: Move CNT*_CVAL_EL0 userspace accessors to generic infrastructure (Donald Dutile) [RHEL-131242] - KVM: arm64: Move CNT*_CTL_EL0 userspace accessors to generic infrastructure (Donald Dutile) [RHEL-131242] - KVM: arm64: Add timer UAPI workaround to sysreg infrastructure (Donald Dutile) [RHEL-131242] - KVM: arm64: Make timer_set_offset() generally accessible (Donald Dutile) [RHEL-131242] - KVM: arm64: Replace timer context vcpu pointer with timer_id (Donald Dutile) [RHEL-131242] - KVM: arm64: Introduce timer_context_to_vcpu() helper (Donald Dutile) [RHEL-131242] - KVM: arm64: Hide CNTHV_*_EL2 from userspace for nVHE guests (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Actually enable IRQs in vgic_lpi_stress (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Allocate vcpus with correct size (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Sync ID_AA64PFR1, MPIDR, CLIDR in guest (Donald Dutile) [RHEL-131242] - KVM: arm64: Remove unreachable break after return (Donald Dutile) [RHEL-131242] - KVM: arm64: Prevent access to vCPU events before init (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Track width of timer counter as "int", not "uint64_t" (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Test effective value of HCR_EL2.AMO (Donald Dutile) [RHEL-131242] - KVM: arm64: Use the in-context stage-1 in __kvm_find_s1_desc_level() (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Don't advance PC when pending an SVE exception (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Don't treat ZCR_EL2 as a 'mapped' register (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Cover ID_AA64ISAR3_EL1 in set_id_regs (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Remove a duplicate register listing in set_id_regs (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Cope with arch silliness in EL2 selftest (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Add basic test for running in VHE EL2 (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Enable EL2 by default (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Initialize HCR_EL2 (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Use the vCPU attr for setting nr of PMU counters (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Use hyp timer IRQs when test runs at EL2 (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Select SMCCC conduit based on current EL (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Provide helper for getting default vCPU target (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Alias EL1 registers to EL2 counterparts (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Create a VGICv3 for 'default' VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Add unsanitised helpers for VGICv3 creation (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Add helper to check for VGICv3 support (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Initialize VGICv3 only once (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Provide kvm_arch_vm_post_create() in library code (Donald Dutile) [RHEL-131242] - KVM: arm64: selftest: Expand external_aborts test to look for TTW levels (Donald Dutile) [RHEL-131242] - KVM: arm64: Populate level on S1PTW SEA injection (Donald Dutile) [RHEL-131242] - KVM: arm64: Add S1 IPA to page table level walker (Donald Dutile) [RHEL-131242] - KVM: arm64: Add filtering hook to S1 page table walk (Donald Dutile) [RHEL-131242] - KVM: arm64: Don't switch MMU on translation from non-NV context (Donald Dutile) [RHEL-131242] - KVM: arm64: Allow EL1 control registers to be accessed from the CPU state (Donald Dutile) [RHEL-131242] - KVM: arm64: Allow use of S1 PTW for non-NV vcpus (Donald Dutile) [RHEL-131242] - KVM: arm64: Report faults from S1 walk setup at the expected start level (Donald Dutile) [RHEL-131242] - KVM: arm64: Expand valid block mappings to FEAT_LPA/LPA2 support (Donald Dutile) [RHEL-131242] - KVM: arm64: Populate PAR_EL1 with 52bit addresses (Donald Dutile) [RHEL-131242] - KVM: arm64: Compute shareability for LPA2 (Donald Dutile) [RHEL-131242] - KVM: arm64: Pass the walk_info structure to compute_par_s1() (Donald Dutile) [RHEL-131242] - KVM: arm64: Decouple output address from the PT descriptor (Donald Dutile) [RHEL-131242] - KVM: arm64: Compute 52bit TTBR address and alignment (Donald Dutile) [RHEL-131242] - KVM: arm64: Account for 52bit when computing maximum OA (Donald Dutile) [RHEL-131242] - KVM: arm64: Add helper computing the state of 52bit PA support (Donald Dutile) [RHEL-131242] - KVM: arm64: Expose FEAT_LSFE to guests (Donald Dutile) [RHEL-131242] - KVM: arm64: Add trap configs for PMSDSFR_EL1 (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Expose up to FEAT_Debugv8p8 to NV-enabled VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Advertise FEAT_TIDCP1 to NV-enabled VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Advertise FEAT_SpecSEI to NV-enabled VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Expose FEAT_TWED to NV-enabled VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Exclude guest's TWED configuration when TWE isn't set (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Expose FEAT_AFP to NV-enabled VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Expose FEAT_ECBHB to NV-enabled VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Expose FEAT_RASv1p1 via RAS_frac (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Expose FEAT_DF2 to NV-enabled VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Don't erroneously claim FEAT_DoubleLock for NV VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Convert masks to denylists in limit_nv_id_reg() (Donald Dutile) [RHEL-131242] - KVM: arm64: selftests: Test writes to ID_AA64MMFR1_EL1.{HCX, TWED} (Donald Dutile) [RHEL-131242] - KVM: arm64: Make ID_AA64MMFR1_EL1.{HCX, TWED} writable from userspace (Donald Dutile) [RHEL-131242] - KVM: arm64: Convert MDCR_EL2 RES0 handling to compute_reg_res0_bits() (Donald Dutile) [RHEL-131242] - KVM: arm64: Convert SCTLR_EL1 RES0 handling to compute_reg_res0_bits() (Donald Dutile) [RHEL-131242] - KVM: arm64: Enforce absence of FEAT_TCR2 on TCR2_EL2 (Donald Dutile) [RHEL-131242] - KVM: arm64: Enforce absence of FEAT_SCTLR2 on SCTLR2_EL{1,2} (Donald Dutile) [RHEL-131242] - KVM: arm64: Convert HCR_EL2 RES0 handling to compute_reg_res0_bits() (Donald Dutile) [RHEL-131242] - KVM: arm64: Enforce absence of FEAT_HCX on HCRX_EL2 (Donald Dutile) [RHEL-131242] - KVM: arm64: Enforce absence of FEAT_FGT2 on FGT2 registers (Donald Dutile) [RHEL-131242] - KVM: arm64: Enforce absence of FEAT_FGT on FGT registers (Donald Dutile) [RHEL-131242] - KVM: arm64: Add reg_feat_map_desc to describe full register dependency (Donald Dutile) [RHEL-131242] - KVM: arm64: Remove duplicate FEAT_{SYSREG128,MTE2} descriptions (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Allow userspace to de-feature stage-2 TGRANs (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Treat AMO as 1 when at EL2 and {E2H,TGE} = {1, 0} (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Apply guest's MDCR traps in nested context (Donald Dutile) [RHEL-131242] - KVM: arm64: nv: Trap debug registers when in hyp context (Donald Dutile) [RHEL-131242] - arm64/boot: Enable EL2 requirements for SPE_FEAT_FDS (Donald Dutile) [RHEL-131242] - arm64/boot: Factor out a macro to check SPE version (Donald Dutile) [RHEL-131242] - KVM: arm64: Don't access ICC_SRE_EL2 if GICv3 doesn't support v2 compatibility (Donald Dutile) [RHEL-131242] - KVM: arm64: Fix page leak in user_mem_abort() (Donald Dutile) [RHEL-131242] - KVM: arm64: Fix kvm_vcpu_{set,is}_be() to deal with EL2 state (Donald Dutile) [RHEL-131242] - KVM: arm64: Update stale comment for sanitise_mte_tags() (Donald Dutile) [RHEL-131242] - KVM: arm64: Map hyp text as RO and dump instr on panic (Donald Dutile) [RHEL-131242] - KVM: arm64: Dump instruction on hyp panic (Donald Dutile) [RHEL-131242] - KVM: arm64: Return early from trace helpers when KVM isn't available (Donald Dutile) [RHEL-131242] - KVM: arm64: vgic: Explicitly implement vgic_dist::ready ordering (Donald Dutile) [RHEL-131242] - KVM: arm64: vgic-init: Remove vgic_ready() macro (Donald Dutile) [RHEL-131242] - KVM: arm64: Reserve pKVM handle during pkvm_init_host_vm() (Donald Dutile) [RHEL-131242] - KVM: arm64: Introduce separate hypercalls for pKVM VM reservation and initialization (Donald Dutile) [RHEL-131242] - KVM: arm64: Consolidate pKVM hypervisor VM initialization logic (Donald Dutile) [RHEL-131242] - KVM: arm64: Separate allocation and insertion of pKVM VM table entries (Donald Dutile) [RHEL-131242] - KVM: arm64: Decouple hyp VM creation state from its handle (Donald Dutile) [RHEL-131242] - KVM: arm64: Clarify comments to distinguish pKVM mode from protected VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: Rename 'host_kvm' to 'kvm' in pKVM host code (Donald Dutile) [RHEL-131242] - KVM: arm64: Rename pkvm.enabled to pkvm.is_protected (Donald Dutile) [RHEL-131242] - KVM: arm64: Add build-time check for duplicate DECLARE_REG use (Donald Dutile) [RHEL-131242] - KVM: arm64: ptdump: Don't test PTE_VALID alongside other attributes (Donald Dutile) [RHEL-131242] - KVM: arm64: Bump the supported version of FF-A to 1.2 (Donald Dutile) [RHEL-131242] - KVM: arm64: Mask response to FFA_FEATURE call (Donald Dutile) [RHEL-131242] - KVM: arm64: Mark optional FF-A 1.2 interfaces as unsupported (Donald Dutile) [RHEL-131242] - KVM: arm64: Mark FFA_NOTIFICATION_* calls as unsupported (Donald Dutile) [RHEL-131242] - KVM: arm64: Use SMCCC 1.2 for FF-A initialization and in host handler (Donald Dutile) [RHEL-131242] - KVM: arm64: Correct return value on host version downgrade attempt (Donald Dutile) [RHEL-131242] - KVM: arm64: Allow userspace to limit the number of PMU counters for EL2 VMs (Donald Dutile) [RHEL-131242] - KVM: arm64: Introduce CONFIG_UBSAN_KVM_EL2 (Donald Dutile) [RHEL-131242] - ubsan: Remove regs from report_ubsan_failure() (Donald Dutile) [RHEL-131242] - x86/traps: Cleanup and robustify decode_bug() (Donald Dutile) [RHEL-131242] - KVM: arm64: Handle UBSAN faults (Donald Dutile) [RHEL-131242] - tools kvm headers arm64: Update KVM header from the kernel sources (Donald Dutile) [RHEL-131242] - KVM: arm64: Document registers exposed via KVM_DEV_ARM_VGIC_GRP_CPU_SYSREGS (Donald Dutile) [RHEL-131242] - Documentation: KVM: Use unordered list for pre-init VGIC registers (Donald Dutile) [RHEL-131242] - Documentation: KVM: arm64: Describe VGICv3 registers writable pre-init (Donald Dutile) [RHEL-131242] - KVM: arm64: Hide ID_AA64MMFR2_EL1.NV from guest and userspace (Donald Dutile) [RHEL-134393] - drm/vmwgfx: Validate command header size against SVGA_CMD_MAX_DATASIZE (CKI Backport Bot) [RHEL-134433] {CVE-2025-40277} - mm/selftests: fix split_huge_page_test failure on systems with 64KB page size (Audra Mitchell) [RHEL-135094] - selftests/mm: do check_huge_anon() with a number been passed in (Audra Mitchell) [RHEL-135094] - selftests/mm: fix split_huge_page_test for folio_split() tests (Audra Mitchell) [RHEL-135094] - selftests/mm: speed up split_huge_page_test (Audra Mitchell) [RHEL-135094] - selftests/mm: add tests for folio_split(), buddy allocator like split (Audra Mitchell) [RHEL-135094] - selftests/mm: add tests for splitting pmd THPs to all lower orders (Audra Mitchell) [RHEL-135094] - selftests/mm: use selftests framework to print test result (Audra Mitchell) [RHEL-135094] - perf symbol-elf: Add missing puts on error path (Michael Petlan) [RHEL-78292] - perf symbol: Add missed dso__put (Michael Petlan) [RHEL-78292] - perf probe-event: Ensure probe event nsinfo is always cleared (Michael Petlan) [RHEL-78292] - perf hist: In init, ensure mem_info is put on error paths (Michael Petlan) [RHEL-78292] - perf tools: Fix split kallsyms DSO counting (Michael Petlan) [RHEL-78292] - perf tools: Mark split kallsyms DSOs as loaded (Michael Petlan) [RHEL-78292] - perf jitdump: Add sym/str-tables to build-ID generation (Michael Petlan) [RHEL-78292] - perf arm_spe: Fix memset subclass in operation (Michael Petlan) [RHEL-78292] - perf tools: Fix missing feature check for inherit + SAMPLE_READ (Michael Petlan) [RHEL-78292] - perf metricgroup: Update comment on location of metric_event list (Michael Petlan) [RHEL-78292] - perf record: skip synthesize event when open evsel failed (Michael Petlan) [RHEL-78292] - perf lock contention: Load kernel map before lookup (Michael Petlan) [RHEL-78292] - perf hwmon_pmu: Fix uninitialized variable warning (Michael Petlan) [RHEL-78292] - perf parse-events: Fix legacy cache events if event is duplicated in a PMU (Michael Petlan) [RHEL-78292] - perf jitdump: Fix missed dso__put (Michael Petlan) [RHEL-78292] - perf mem-events: Don't leak online CPU map (Michael Petlan) [RHEL-78292] - perf kvm: Fix debug assertion (Michael Petlan) [RHEL-78292] - perf bpf_counter: Fix opening of "any"(-1) CPU events (Michael Petlan) [RHEL-78292] - perf parse-events: Make X modifier more respectful of groups (Michael Petlan) [RHEL-78292] - perf stat: When no events, don't report an error if there is none (Michael Petlan) [RHEL-78292] - perf tests stat: Add "--null" coverage (Michael Petlan) [RHEL-78292] - perf cpumap: Add "any" CPU handling to cpu_map__snprint_mask (Michael Petlan) [RHEL-78292] - libperf cpumap: Fix perf_cpu_map__max for an empty/NULL map (Michael Petlan) [RHEL-78292] - perf stat: Allow no events to open if this is a "--null" run (Michael Petlan) [RHEL-78292] - perf annotate: Check return value of evsel__get_arch() properly (Michael Petlan) [RHEL-78292] - perf annotate: fix a crash when annotate the same symbol with 's' and 'T' (Michael Petlan) [RHEL-78292] - tools headers UAPI: sync linux/prctl.h with kernel (Michael Petlan) [RHEL-78292] - tools headers UAPI: sync linux/fs.h with kernel (Michael Petlan) [RHEL-78292] - tools headers UAPI: sync linux/fcntl.h with kernel (Michael Petlan) [RHEL-78292] - tools headers UAPI: sync asm/msr-index.h with kernel (Michael Petlan) [RHEL-78292] - tools headers UAPI: sync linux/bits.h with kernel (Michael Petlan) [RHEL-78292] - tools headers UAPI: sync linux/rtnetlink.h with kernel (Michael Petlan) [RHEL-78292] - tools headers UAPI: sync linux/neighbour.h with kernel (Michael Petlan) [RHEL-78292] - tools headers UAPI: sync linux/if_addr.h with kernel (Michael Petlan) [RHEL-78292] - tools headers UAPI: sync drm/drm.h with kernel (Michael Petlan) [RHEL-78292] - perf libbfd: Ensure libbfd is initialized prior to use (Michael Petlan) [RHEL-78292] - perf test: Fix lock contention test (Michael Petlan) [RHEL-78292] - perf lock: Fix segfault due to missing kernel map (Michael Petlan) [RHEL-78292] - perf build: Don't fail fast path feature detection when binutils-devel is not available (Michael Petlan) [RHEL-78292] - perf header: Write bpf_prog (infos|btfs)_cnt to data file (Michael Petlan) [RHEL-78292] - perf symbols: Handle '1' symbols in /proc/kallsyms (Michael Petlan) [RHEL-78292] - perf tools: Fix arm64 libjvmti build by generating unistd_64.h (Michael Petlan) [RHEL-78292] - perf tests: Don't retest sections in "Object code reading" (Michael Petlan) [RHEL-78292] - perf docs: Document building with Clang (Michael Petlan) [RHEL-78292] - perf build: Support build with clang (Michael Petlan) [RHEL-78292] - perf test coresight: Dismiss clang warning for unroll loop thread (Michael Petlan) [RHEL-78292] - perf test coresight: Dismiss clang warning for thread loop (Michael Petlan) [RHEL-78292] - perf test coresight: Dismiss clang warning for memcpy thread (Michael Petlan) [RHEL-78292] - perf build: Disable thread safety analysis for perl header (Michael Petlan) [RHEL-78292] - perf build: Correct CROSS_ARCH for clang (Michael Petlan) [RHEL-78292] - perf python: split Clang options when invoking Popen (Michael Petlan) [RHEL-78292] - tools build: Align warning options with perf (Michael Petlan) [RHEL-78292] - perf disasm: Remove unused evsel from 'struct annotate_args' (Michael Petlan) [RHEL-78292] - perf srcline: Fallback between addr2line implementations (Michael Petlan) [RHEL-78292] - perf disasm: Make ins__scnprintf() and ins__is_nop() static (Michael Petlan) [RHEL-78292] - perf dso: Clean up read_symbol() error handling (Michael Petlan) [RHEL-78292] - perf dso: Support BPF programs in dso__read_symbol() (Michael Petlan) [RHEL-78292] - perf dso: Move read_symbol() from llvm/capstone to dso (Michael Petlan) [RHEL-78292] - perf llvm: Reduce LLVM initialization (Michael Petlan) [RHEL-78292] - perf check: Add libLLVM feature (Michael Petlan) [RHEL-78292] - perf parse-events: Fix parsing of >30kb event strings (Michael Petlan) [RHEL-78292] - perf record: Add auto counter reload parse and regression tests (Michael Petlan) [RHEL-78292] - perf record: Add ratio-to-prev term (Michael Petlan) [RHEL-78292] - tools build: Remove libbpf-strings feature test (Michael Petlan) [RHEL-78292] - perf bpf-event: Use libbpf version rather than feature check (Michael Petlan) [RHEL-78292] - tools build: Remove feature-libslang-include-subdir (Michael Petlan) [RHEL-78292] - perf annotate: Rename TSR_KIND_POINTER to TSR_KIND_PERCPU_POINTER (Michael Petlan) [RHEL-78292] - perf stat: Refactor retry/skip/fatal error handling (Michael Petlan) [RHEL-78292] - perf stat: Move create_perf_stat_counter() to builtin-stat.c (Michael Petlan) [RHEL-78292] - tools build: Remove get_current_dir_name feature check (Michael Petlan) [RHEL-78292] - perf namespaces: Avoid get_current_dir_name dependency (Michael Petlan) [RHEL-78292] - perf capstone: Remove open_capstone_handle (Michael Petlan) [RHEL-78292] - perf libbfd: Move libbfd functionality to its own file (Michael Petlan) [RHEL-78292] - perf llvm: Move llvm functionality into its own file (Michael Petlan) [RHEL-78292] - perf capstone: Move capstone functionality into its own file (Michael Petlan) [RHEL-78292] - perf map: Constify objdump offset/address conversion APIs (Michael Petlan) [RHEL-78292] - perf tools kvm: Use "cycles" to sample guest for "kvm top" on Intel (Michael Petlan) [RHEL-78292] - perf tools kvm: Use "cycles" to sample guest for "kvm record" on Intel (Michael Petlan) [RHEL-78292] - perf tools: Add helper x86__is_intel_cpu() (Michael Petlan) [RHEL-78292] - perf tools kvm: Fix the potential out of range memory access issue (Michael Petlan) [RHEL-78292] - perf tools kwork: Add missed memory allocation check and free (Michael Petlan) [RHEL-78292] - perf tools kvm: Add missed memory allocation check and free (Michael Petlan) [RHEL-78292] - tools include: Add headers to make tools builds more hermetic (Michael Petlan) [RHEL-78292] - tools include: Replace tools linux/gfp_types.h with kernel version (Michael Petlan) [RHEL-78292] - tools bitmap: Add missing asm-generic/bitsperlong.h include (Michael Petlan) [RHEL-78292] - perf bench futex: Add missing stdbool.h (Michael Petlan) [RHEL-78292] - perf test: Stat std output don't fail metric only (Michael Petlan) [RHEL-78292] - libperf mmap: In user mmap rdpmc avoid undefined behavior (Michael Petlan) [RHEL-78292] - perf symbol-minimal: Be more defensive when reading build IDs (Michael Petlan) [RHEL-78292] - perf bpf: Use __builtin_preserve_field_info for GCC compatibility (Michael Petlan) [RHEL-78292] - tools build: Don't assume libtracefs-devel is always available (Michael Petlan) [RHEL-78292] - perf build: Remove libtracefs configuration (Michael Petlan) [RHEL-78292] - perf test: Remove C python_use test (Michael Petlan) [RHEL-78292] - perf test: Add an 'import perf' test shell script (Michael Petlan) [RHEL-78292] - perf test: Extend branch stack sampling test for Arm64 BRBE (Michael Petlan) [RHEL-78292] - perf test: Add syscall and address tests to brstack test (Michael Petlan) [RHEL-78292] - perf test: Refactor brstack test (Michael Petlan) [RHEL-78292] - perf bpf_counter: Fix handling of cpumap fixing hybrid (Michael Petlan) [RHEL-78292] - perf bpf_counter: Move header declarations into C code (Michael Petlan) [RHEL-78292] - perf annotate: Use architecture-agnostic register limit (Michael Petlan) [RHEL-78292] - perf script: Enable to present DTL entries (Michael Petlan) [RHEL-78292] - perf powerpc: Process the DTL entries in queue and deliver samples (Michael Petlan) [RHEL-78292] - perf powerpc: Allocate and setup aux buffer queue to help co-relate with other events across CPU's (Michael Petlan) [RHEL-78292] - perf powerpc: Add event name as vpa-dtl of PERF_TYPE_SYNTH type to present DTL samples (Michael Petlan) [RHEL-78292] - perf powerpc: Process auxtrace events and display in 'perf report -D' (Michael Petlan) [RHEL-78292] - perf powerpc: Add basic CONFIG_AUXTRACE support for VPA pmu on powerpc (Michael Petlan) [RHEL-78292] - perf sched: Avoid union type punning undefined behavior (Michael Petlan) [RHEL-78292] - perf test perftool_testsuite: Use absolute paths (Michael Petlan) [RHEL-78292] - perf tools: Fix duplicated words in documentation and comments (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update sierraforest events to v1.12 (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update sapphirerapids events to v1.35 (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update pantherlake events to v1.00 (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update meteorlake events to v1.17 (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update lunarlake events to v1.18 (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update graniterapids events to v1.15 (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update grandridge events to v1.10 (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update emeraldrapids events to v1.20 (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update arrowlake events to v1.13 (Michael Petlan) [RHEL-78292] - perf vendor events intel: Update alderlake events to v1.34 (Michael Petlan) [RHEL-78292] - perf bpf: Check libbpf version to use btf_dump_type_data_opts.emit_strings (Michael Petlan) [RHEL-78292] - perf bpf: Move the LIBBPF_CURRENT_VERSION_GEQ macro to bpf-utils.h (Michael Petlan) [RHEL-78292] - perf test: Avoid uncore_imc/clockticks in uniquification test (Michael Petlan) [RHEL-78292] - perf evsel: Fix uniquification when PMU given without suffix (Michael Petlan) [RHEL-78292] - perf test: Don't leak workload gopipe in PERF_RECORD_* (Michael Petlan) [RHEL-78292] - perf session: Fix handling when buffer exceeds 2 GiB (Michael Petlan) [RHEL-78292] - perf bench mem: Add mmap() workloads (Michael Petlan) [RHEL-78292] - perf bench mem: Refactor mem_options (Michael Petlan) [RHEL-78292] - perf bench mem: Allow chunking on a memory region (Michael Petlan) [RHEL-78292] - perf bench mem: Allow mapping of hugepages (Michael Petlan) [RHEL-78292] - perf bench mem: Switch from zalloc() to mmap() (Michael Petlan) [RHEL-78292] - perf bench mem: Pull out init/fini logic (Michael Petlan) [RHEL-78292] - perf bench mem: Move mem op parameters into a structure (Michael Petlan) [RHEL-78292] - perf bench mem: Defer type munging of size to float (Michael Petlan) [RHEL-78292] - perf bench mem: Remove repetition around time measurement (Michael Petlan) [RHEL-78292] - perf trace: Fix IS_ERR() vs NULL check bug (Michael Petlan) [RHEL-78292] - perf test shell lbr: Avoid failures with perf event paranoia (Michael Petlan) [RHEL-78292] - perf tools: Remove a pointless check (Michael Petlan) [RHEL-78292] - perf tools: Update header documentation on BPF_PROG_INFO (Michael Petlan) [RHEL-78292] - perf tests record: Update testcase to fix usage of affinity for machines with #CPUs > 1K (Michael Petlan) [RHEL-78292] - perf dwarf-aux: Fix __die_find_scope_cb() for namespaces (Michael Petlan) [RHEL-78292] - perf dwarf-aux: Better variable collection for insn tracking (Michael Petlan) [RHEL-78292] - perf dwarf-aux: More accurate variable type match for breg (Michael Petlan) [RHEL-78292] - perf test: AMD IBS swfilt skip kernel tests if paranoia is >1 (Michael Petlan) [RHEL-78292] - perf auxtrace: Avoid redundant NULL check in auxtrace_mmap_params__set_idx() (Michael Petlan) [RHEL-78292] - perf trace: Add --max-summary option (Michael Petlan) [RHEL-78292] - perf arm_spe: Allow parsing both data source and events (Michael Petlan) [RHEL-78292] - perf arm_spe: Set HITM flag (Michael Petlan) [RHEL-78292] - perf arm_spe: Refactor arm_spe__get_metadata_by_cpu() (Michael Petlan) [RHEL-78292] - perf arm_spe: Fill memory levels for FEAT_SPEv1p4 (Michael Petlan) [RHEL-78292] - perf arm_spe: Separate setting of memory levels for loads and stores (Michael Petlan) [RHEL-78292] - perf arm_spe: Refine memory level filling (Michael Petlan) [RHEL-78292] - perf arm_spe: Add "event_filter" entry in meta data (Michael Petlan) [RHEL-78292] - perf arm_spe: Decode event types for new features (Michael Petlan) [RHEL-78292] - perf arm_spe: Directly propagate raw event (Michael Petlan) [RHEL-78292] - perf arm_spe: Use full type for data_src (Michael Petlan) [RHEL-78292] - perf arm_spe: Correct memory level for remote access (Michael Petlan) [RHEL-78292] - perf arm_spe: Correct setting remote access (Michael Petlan) [RHEL-78292] - perf parse-events: Add 'X' modifier to exclude an event from being regrouped (Michael Petlan) [RHEL-78292] - perf stat: Don't skip failing group events (Michael Petlan) [RHEL-78292] - perf evsel: Give warning for broken Intel topdown event grouping (Michael Petlan) [RHEL-78292] - perf util: Fix compression checks returning -1 as bool (Michael Petlan) [RHEL-78292] - perf arm64: Sync ESR_ELx_EC_* macros in arm64_exception_types.h with esr.h (Michael Petlan) [RHEL-78292] - tools headers: Remove unused arm32 asm/kvm.h copy (Michael Petlan) [RHEL-78292] - tools headers: Remove unused kvm_perf.h copies (Michael Petlan) [RHEL-78292] - perf annotate: Fix title line after return from call (Michael Petlan) [RHEL-78292] - perf annotate: Factor out annotate_browser__show_function_title() (Michael Petlan) [RHEL-78292] - perf annotate: Fix signature of annotate_browser__show() (Michael Petlan) [RHEL-78292] - perf docs: Update SPE doc to include default instructions group (Michael Petlan) [RHEL-78292] - perf arm-spe: Display --itrace period warnings for all sample types (Michael Petlan) [RHEL-78292] - perf arm-spe: Downsample all sample types equally (Michael Petlan) [RHEL-78292] - perf arm-spe: Show instruction sample types by default (Michael Petlan) [RHEL-78292] - perf symbols: Handle 'N' symbols in /proc/kallsyms (Michael Petlan) [RHEL-78292] - perf python: Fix spelling mistake "metics" -> "metrics" (Michael Petlan) [RHEL-78292] - perf dwarf-aux: Use signed variable types in match_var_offset (Michael Petlan) [RHEL-78292] - perf tp_pmu: Remove unnecessary check (Michael Petlan) [RHEL-78292] - perf ilist: Add support for metrics (Michael Petlan) [RHEL-78292] - perf python: Add metrics function (Michael Petlan) [RHEL-78292] - perf python: Add evlist compute_metric (Michael Petlan) [RHEL-78292] - perf python: Add evlist metrics function (Michael Petlan) [RHEL-78292] - perf python: Add parse_metrics function (Michael Petlan) [RHEL-78292] - perf ilist: Add new python ilist command (Michael Petlan) [RHEL-78292] - perf python: Add function returning dictionary of all events on a PMU (Michael Petlan) [RHEL-78292] - perf python: Add basic PMU abstraction and pmus sequence (Michael Petlan) [RHEL-78292] - perf python: Improve the tracepoint function if no libtraceevent (Michael Petlan) [RHEL-78292] - perf python: Add more exceptions on error paths (Michael Petlan) [RHEL-78292] - libperf event: Ensure tracing data is multiple of 8 sized (Michael Petlan) [RHEL-78292] - perf test shell lock_contention: Extra debug diagnostics (Michael Petlan) [RHEL-78292] - perf evsel: Avoid container_of on a NULL leader (Michael Petlan) [RHEL-78292] - perf test trace_btf_enum: Skip if permissions are insufficient (Michael Petlan) [RHEL-78292] - perf disasm: Avoid undefined behavior in incrementing NULL (Michael Petlan) [RHEL-78292] - perf annotate: Use a hashmap to save type data (Michael Petlan) [RHEL-78292] - perf annotate: Add dso__debuginfo() helper (Michael Petlan) [RHEL-78292] - perf annotate: Hide data-type for stack operation and canary (Michael Petlan) [RHEL-78292] - perf annotate: Show warning when debuginfo is not available (Michael Petlan) [RHEL-78292] - perf annotate: Add 'T' hot key to toggle data type display (Michael Petlan) [RHEL-78292] - perf annotate: Add --code-with-type support for TUI (Michael Petlan) [RHEL-78292] - perf annotate: Return printed number from disasm_line__write() (Michael Petlan) [RHEL-78292] - perf annotate: Simplify width calculation in annotation_line__write() (Michael Petlan) [RHEL-78292] - perf annotate: Pass annotation_print_data to annotation_line__write() (Michael Petlan) [RHEL-78292] - perf annotate: Remove __annotation_line__write() (Michael Petlan) [RHEL-78292] - perf annotate: Remove annotation_print_data.start (Michael Petlan) [RHEL-78292] - perf annotate: Rename to __hist_entry__tui_annotate() (Michael Petlan) [RHEL-78292] - perf: Fix 0 count issue of cpu-clock (Michael Petlan) [RHEL-78292] - perf/x86/intel/uncore: Remove superfluous check (Michael Petlan) [RHEL-78292] - Revert "perf/x86: Always store regs->ip in perf_callchain_kernel()" (Michael Petlan) [RHEL-78292] - perf/core: Fix system hang caused by cpu-clock usage (Michael Petlan) [RHEL-78292] - perf/x86/intel/uncore: Add uncore PMU support for Wildcat Lake (Michael Petlan) [RHEL-78292] - perf/x86/intel: Add PMU support for WildcatLake (Michael Petlan) [RHEL-78292] - perf/x86/intel: Fix KASAN global-out-of-bounds warning (Michael Petlan) [RHEL-78292] - perf/core: Fix MMAP2 event device with backing files (Michael Petlan) [RHEL-78292] - perf/core: Fix MMAP event path names with backing files (Michael Petlan) [RHEL-78292] - perf/core: Fix address filter match with backing files (Michael Petlan) [RHEL-78292] - perf: make pmu_bus const (Michael Petlan) [RHEL-78292] - x86/insn: Add XOP prefix instructions decoder support (Michael Petlan) [RHEL-78292] - perf: Skip user unwind if the task is a kernel thread (Michael Petlan) [RHEL-78292] - perf: Simplify get_perf_callchain() user logic (Michael Petlan) [RHEL-78292] - perf: Use current->flags & PF_KTHREAD|PF_USER_WORKER instead of current->mm == NULL (Michael Petlan) [RHEL-78292] - perf: Have get_perf_callchain() return NULL if crosstask and user are set (Michael Petlan) [RHEL-78292] - perf: Remove get_perf_callchain() init_nr argument (Michael Petlan) [RHEL-78292] - perf/x86: Print PMU counters bitmap in x86_pmu_show_pmu_cap() (Michael Petlan) [RHEL-78292] - perf/x86/intel: Add ICL_FIXED_0_ADAPTIVE bit into INTEL_FIXED_BITS_MASK (Michael Petlan) [RHEL-78292] - perf/x86/intel: Change macro GLOBAL_CTRL_EN_PERF_METRICS to BIT_ULL(48) (Michael Petlan) [RHEL-78292] - perf/x86: Add PERF_CAP_PEBS_TIMING_INFO flag (Michael Petlan) [RHEL-78292] - perf/x86/intel: Fix IA32_PMC_x_CFG_B MSRs access error (Michael Petlan) [RHEL-78292] - perf/x86/intel: Use early_initcall() to hook bts_init() (Michael Petlan) [RHEL-78292] - perf: Convert mmap() refcounts to refcount_t (Michael Petlan) [RHEL-78292] - perf: Identify the 0->1 transition for event::mmap_count (Michael Petlan) [RHEL-78292] - perf: Use scoped_guard() for mmap_mutex in perf_mmap() (Michael Petlan) [RHEL-78292] - perf: Split out the RB allocation (Michael Petlan) [RHEL-78292] - perf: Make RB allocation branch self sufficient (Michael Petlan) [RHEL-78292] - perf: Split out the AUX buffer allocation (Michael Petlan) [RHEL-78292] - perf: Reflow to get rid of aux_success label (Michael Petlan) [RHEL-78292] - perf: Use guard() for aux_mutex in perf_mmap() (Michael Petlan) [RHEL-78292] - perf: Remove redundant aux_unlock label (Michael Petlan) [RHEL-78292] - perf: Move common code into both rb and aux branches (Michael Petlan) [RHEL-78292] - perf: Merge consecutive conditionals in perf_mmap() (Michael Petlan) [RHEL-78292] - perf: Move perf_mmap_calc_limits() into both rb and aux branches (Michael Petlan) [RHEL-78292] - perf: Split out VM accounting (Michael Petlan) [RHEL-78292] - perf: Split out mlock limit handling (Michael Petlan) [RHEL-78292] - perf: Remove redundant condition for AUX buffer size (Michael Petlan) [RHEL-78292] - vfs: check dentry is still valid in get_link() (Ian Kent) [RHEL-79346] - sched/fair: Proportional newidle balance (Phil Auld) [RHEL-129542] - sched/fair: Small cleanup to update_newidle_cost() (Phil Auld) [RHEL-129542] - sched/fair: Small cleanup to sched_balance_newidle() (Phil Auld) [RHEL-129542] - sched/fair: Revert max_newidle_lb_cost bump (Phil Auld) [RHEL-129542] - PCI/ACPI: Fix pci_acpi_preserve_config() memory leak (Thilak KN) [RHEL-130554] - Input: pegasus-notetaker - fix potential out-of-bounds access (Benjamin Tissoires) [RHEL-124788] - Input: imx_sc_key - fix memory corruption on unload (Benjamin Tissoires) [RHEL-124788] - Input: goodix - add support for ACPI ID GDIX1003 (Benjamin Tissoires) [RHEL-124788] - Input: cros_ec_keyb - fix an invalid memory access (Benjamin Tissoires) [RHEL-124788] - dt-bindings: input: touchscreen: goodix: Drop 'interrupts' requirement (Benjamin Tissoires) [RHEL-124788] - HID: quirks: work around VID/PID conflict for 0x4c4a/0x4155 (Benjamin Tissoires) [RHEL-124788] - HID: multitouch: fix sticky fingers (Benjamin Tissoires) [RHEL-124788] - HID: multitouch: fix name of Stylus input devices (Benjamin Tissoires) [RHEL-124788] - HID: uclogic: Fix potential memory leak in error path (Benjamin Tissoires) [RHEL-124788] - HID: playstation: Fix memory leak in dualshock4_get_calibration_data() (Benjamin Tissoires) [RHEL-124788] - HID: hid-ntrig: Prevent memory leak in ntrig_report_version() (Benjamin Tissoires) [RHEL-124788] - HID: logitech-hidpp: Add HIDPP_QUIRK_RESET_HI_RES_SCROLL (Benjamin Tissoires) [RHEL-124788] - HID: quirks: Add ALWAYS_POLL quirk for VRS R295 steering wheel (Benjamin Tissoires) [RHEL-124788] - HID: nintendo: Wait longer for initial probe (Benjamin Tissoires) [RHEL-124788] - HID: quirks: avoid Cooler Master MM712 dongle wakeup bug (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc-hid: intel-quickspi: Add ARL PCI Device Id's (Benjamin Tissoires) [RHEL-124788] - HID: asus: add Z13 folio to generic group for multitouch to work (Benjamin Tissoires) [RHEL-124788] - HID: pidff: PERMISSIVE_CONTROL quirk autodetection (Benjamin Tissoires) [RHEL-124788] - HID: pidff: Use direction fix only for conditional effects (Benjamin Tissoires) [RHEL-124788] - HID: hid-input: only ignore 0 battery events for digitizers (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc-hid: Intel-quickspi: switch first interrupt from level to edge detection (Benjamin Tissoires) [RHEL-124788] - Input: uinput - zero-initialize uinput_ff_upload_compat to avoid info leak (Benjamin Tissoires) [RHEL-124788] - Input: atmel_mxt_ts - allow reset GPIO to sleep (Benjamin Tissoires) [RHEL-124788] - HID: steelseries: Fix STEELSERIES_SRWS1 handling in steelseries_remove() (Benjamin Tissoires) [RHEL-124788] - HID: steelseries: refactor probe() and remove() (Benjamin Tissoires) [RHEL-124788] - HID: amd_sfh: Add sync across amd sfh work functions (Benjamin Tissoires) [RHEL-124788] - HID: asus: add support for missing PX series fn keys (Benjamin Tissoires) [RHEL-124788] - HID: cp2112: fix setter callbacks return value (Benjamin Tissoires) [RHEL-124788] - HID: lenovo: Use KEY_PERFORMANCE instead of ACPI's platform_profile (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc-hid: intel-quickspi: Add WCL Device IDs (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc-hid: intel-quicki2c: Add WCL Device IDs (Benjamin Tissoires) [RHEL-124788] - HID: quirks: add support for Legion Go dual dinput modes (Benjamin Tissoires) [RHEL-124788] - HID: elecom: add support for ELECOM M-DT2DRBK (Benjamin Tissoires) [RHEL-124788] - HID: logitech: Add ids for G PRO 2 LIGHTSPEED (Benjamin Tissoires) [RHEL-124788] - HID: input: report battery status changes immediately (Benjamin Tissoires) [RHEL-124788] - HID: input: rename hidinput_set_battery_charge_status() (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc-hid: Intel-quicki2c: Enhance driver re-install flow (Benjamin Tissoires) [RHEL-124788] - HID: hid-ntrig: fix unable to handle page fault in ntrig_report_version() (Benjamin Tissoires) [RHEL-124788] - HID: asus: fix UAF via HID_CLAIMED_INPUT validation (Benjamin Tissoires) [RHEL-124788] - hid: fix I2C read buffer overflow in raw_event() for mcp2221 (Benjamin Tissoires) [RHEL-124788] - HID: wacom: Add a new Art Pen 2 (Benjamin Tissoires) [RHEL-124788] - HID: Kconfig: Fix spelling mistake "enthropy" -> "entropy" (Benjamin Tissoires) [RHEL-124788] - HID: intel-ish-hid: Increase ISHTP resume ack timeout to 300ms (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc-hid: intel-thc: Fix incorrect pointer arithmetic in I2C regs save (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc-hid: intel-quicki2c: Fix ACPI dsd ICRS/ISUB length (Benjamin Tissoires) [RHEL-124788] - HID: hid-steam: Use new BTN_GRIP* buttons (Benjamin Tissoires) [RHEL-124788] - HID: apple: validate feature-report field count to prevent NULL pointer dereference (Benjamin Tissoires) [RHEL-124788] - HID: core: Improve the kerneldoc for hid_report_len() (Benjamin Tissoires) [RHEL-124788] - selftests/hid: add a test case for the recent syzbot underflow (Benjamin Tissoires) [RHEL-124788] - HID: core: do not bypass hid_hw_raw_request (Benjamin Tissoires) [RHEL-124788] - HID: core: ensure __hid_request reserves the report ID as the first byte (Benjamin Tissoires) [RHEL-124788] - HID: core: ensure the allocated report buffer can contain the reserved report ID (Benjamin Tissoires) [RHEL-124788] - selftests/hid: sync python tests to hid-tools 0.10 (Benjamin Tissoires) [RHEL-124788] - selftests/hid: sync the python tests to hid-tools 0.8 (Benjamin Tissoires) [RHEL-124788] - selftests/hid: run ruff format on the python part (Benjamin Tissoires) [RHEL-124788] - HID: debug: Remove duplicate entry (BTN_WHEEL) (Benjamin Tissoires) [RHEL-124788] - HID: Fix debug name for BTN_GEAR_DOWN, BTN_GEAR_UP, BTN_WHEEL (Benjamin Tissoires) [RHEL-124788] - HID: magicmouse: use secs_to_jiffies() for battery timeout (Benjamin Tissoires) [RHEL-124788] - HID: apple: use secs_to_jiffies() for battery timeout (Benjamin Tissoires) [RHEL-124788] - HID: magicmouse: avoid setting up battery timer when not needed (Benjamin Tissoires) [RHEL-124788] - HID: apple: avoid setting up battery timer for devices without battery (Benjamin Tissoires) [RHEL-124788] - HID: elecom: add support for ELECOM HUGE 019B variant (Benjamin Tissoires) [RHEL-124788] - HID: amd_sfh: Enable operating mode (Benjamin Tissoires) [RHEL-124788] - HID: uclogic: Add support for XP-PEN Artist 22R Pro (Benjamin Tissoires) [RHEL-124788] - HID: rate-limit hid_warn to prevent log flooding (Benjamin Tissoires) [RHEL-124788] - HID: replace scnprintf() with sysfs_emit() (Benjamin Tissoires) [RHEL-124788] - HID: lenovo: Add support for ThinkPad X1 Tablet Thin Keyboard Gen2 (Benjamin Tissoires) [RHEL-124788] - HID: uclogic: make read-only array reconnect_event static const (Benjamin Tissoires) [RHEL-124788] - HID: mcp-2221: Replace manual comparison with min() macro (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc-hid: Separate max input size control conditional list (Benjamin Tissoires) [RHEL-124788] - HID: mcp2221: set gpio pin mode (Benjamin Tissoires) [RHEL-124788] - HID: multitouch: add device ID for Apple Touch Bar (Benjamin Tissoires) [RHEL-124788] - HID: multitouch: specify that Apple Touch Bar is direct (Benjamin Tissoires) [RHEL-124788] - HID: multitouch: take cls->maxcontacts into account for Apple Touch Bar even without a HID_DG_CONTACTMAX field (Benjamin Tissoires) [RHEL-124788] - HID: multitouch: support getting the tip state from HID_DG_TOUCH fields in Apple Touch Bar (Benjamin Tissoires) [RHEL-124788] - HID: multitouch: Get the contact ID from HID_DG_TRANSDUCER_INDEX fields in case of Apple Touch Bar (Benjamin Tissoires) [RHEL-124788] - HID: wacom: fix crash in wacom_aes_battery_handler() (Benjamin Tissoires) [RHEL-124788] - HID: intel-ish-hid: ipc: Add Wildcat Lake PCI device ID (Benjamin Tissoires) [RHEL-124788] - hid: intel-ish-hid: Use PCI_DEVICE_DATA() macro for ISH device table (Benjamin Tissoires) [RHEL-124788] - HID: lenovo: Restrict F7/9/11 mode to compact keyboards only (Benjamin Tissoires) [RHEL-124788] - HID: Add IGNORE quirk for SMARTLINKTECHNOLOGY (Benjamin Tissoires) [RHEL-124788] - HID: input: lower message severity of 'No inputs registered, leaving' to debug (Benjamin Tissoires) [RHEL-124788] - HID: quirks: Add quirk for 2 Chicony Electronics HP 5MP Cameras (Benjamin Tissoires) [RHEL-124788] - HID: debug: Use the __set_current_state() (Benjamin Tissoires) [RHEL-124788] - HID: pidff: Move else if statements to follow closing braces (Benjamin Tissoires) [RHEL-124788] - HID: pidff: Add missing spaces (Benjamin Tissoires) [RHEL-124788] - HID: pidff: Move trailing statements in pidff_rescale_signed() (Benjamin Tissoires) [RHEL-124788] - HID: pidff: Remove unneeded else in pidff_find_special_field() (Benjamin Tissoires) [RHEL-124788] - HID: pidff: Use __func__ in debugs (Benjamin Tissoires) [RHEL-124788] - HID: pidff: Rework pidff_set_time() to fix warnings (Benjamin Tissoires) [RHEL-124788] - HID: pidff: Remove unneeded debug from pidff_clamp() (Benjamin Tissoires) [RHEL-124788] - HID: pidff: Fix missing blank lines after declarations (Benjamin Tissoires) [RHEL-124788] - HID: hid-pidff.h: Fix comment styling (Benjamin Tissoires) [RHEL-124788] - HID: hid-ids.h: Fix LITE_STAR_GT987 device id define (Benjamin Tissoires) [RHEL-124788] - HID: universal-pidff: Fix missing blank lines (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc: make ptl_ddata static (Benjamin Tissoires) [RHEL-124788] - HID: apple: Add necessary IDs and support for replacement trackpad on MacBookPro15,1 (Benjamin Tissoires) [RHEL-124788] - HID: quirks: remove T2 devices from hid_mouse_ignore_list (Benjamin Tissoires) [RHEL-124788] - HID: apple: add fnmode=4 to disable translation of fkeys and make it default on Macs with Touch Bar (Benjamin Tissoires) [RHEL-124788] - HID: apple: Add Apple Magic Keyboard A3119 USB-C support (Benjamin Tissoires) [RHEL-124788] - HID: apple: Add Apple Magic Keyboard A3118 USB-C support (Benjamin Tissoires) [RHEL-124788] - HID: apple: remove unused APPLE_IGNORE_MOUSE quirk (Benjamin Tissoires) [RHEL-124788] - HID: apple: use switch case to set fn translation table (Benjamin Tissoires) [RHEL-124788] - HID: apple: move backlight report structs to other backlight structs (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-quicki2c: Enable Wake-on-Touch feature (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-quickspi: Enable Wake-on-Touch feature (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-thc: Add Wake-on-Touch support (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-quicki2c: Add two new features to PTL (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-quicki2c: Add driver data support (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-quicki2c: Refine code comments (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-thc: Introduce interrupt delay control (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-thc: Introduce max input size control (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-thc: Refine code comments (Benjamin Tissoires) [RHEL-124788] - HID: Intel-thc-hid: Intel-thc: Add thc_dma_content into kernel doc (Benjamin Tissoires) [RHEL-124788] - HID: nintendo: avoid bluetooth suspend/resume stalls (Benjamin Tissoires) [RHEL-124788] - HID: wacom: fix kobject reference count leak (Benjamin Tissoires) [RHEL-124788] - HID: wacom: fix memory leak on sysfs attribute creation failure (Benjamin Tissoires) [RHEL-124788] - HID: wacom: fix memory leak on kobject creation failure (Benjamin Tissoires) [RHEL-124788] - HID: sensor-hub: Fix typo and improve documentation (Benjamin Tissoires) [RHEL-124788] - HID: sensor-hub: Fix typo and improve documentation for sensor_hub_remove_callback() (Benjamin Tissoires) [RHEL-124788] - HID: multitouch: Disable touchpad on firmware level while not in use (Benjamin Tissoires) [RHEL-124788] - HID: core: Add functions for HID drivers to react on first open and last close call (Benjamin Tissoires) [RHEL-124788] - hid-asus: check ROG Ally MCU version and warn (Benjamin Tissoires) [RHEL-124788] - HID: appletb-kbd: Use secs_to_jiffies() instead of msecs_to_jiffies() (Benjamin Tissoires) [RHEL-124788] - HID: intel-thc-hid: intel-thc: make read-only arrays static const (Benjamin Tissoires) [RHEL-124788] - HID: magicmouse: Apple Magic Mouse 2 USB-C support (Benjamin Tissoires) [RHEL-124788] - HID: mcp2221: use new line value setter callbacks (Benjamin Tissoires) [RHEL-124788] - HID: mcp2200: use new line value setter callbacks (Benjamin Tissoires) [RHEL-124788] - HID: cp2112: use new line value setter callbacks (Benjamin Tissoires) [RHEL-124788] - HID: cp2112: use lock guards (Benjamin Tissoires) [RHEL-124788] - HID: cp2112: hold the lock for the entire direction_output() call (Benjamin Tissoires) [RHEL-124788] - HID: cp2112: destroy mutex on driver detach (Benjamin Tissoires) [RHEL-124788] - HID: corsair-void: Use to_delayed_work() (Benjamin Tissoires) [RHEL-124788] - HID: hid-logitech: use sysfs_emit_at() instead of scnprintf() (Benjamin Tissoires) [RHEL-124788] - HID: quirks: Add HID_QUIRK_IGNORE_MOUSE quirk (Benjamin Tissoires) [RHEL-124788] - HID: Kysona: Add periodic online check (Benjamin Tissoires) [RHEL-124788] - docs: hid: Fix typo in intel-thc-hid.rst (Benjamin Tissoires) [RHEL-124788] - Input: pcf50633-input - remove the driver (Benjamin Tissoires) [RHEL-124788] - Input: mtk-pmic-keys - MT6359 has a specific release irq (Benjamin Tissoires) [RHEL-124788] - Input: iqs7222 - avoid enabling unused interrupts (Benjamin Tissoires) [RHEL-124788] - Input: xpad - add support for Flydigi Apex 5 (Benjamin Tissoires) [RHEL-124788] - Input: max77693 - convert to atomic pwm operation (Benjamin Tissoires) [RHEL-124788] - Input: st1232 - add touch-overlay handling (Benjamin Tissoires) [RHEL-124788] - Input: xpad - use new BTN_GRIP* buttons (Benjamin Tissoires) [RHEL-124788] - Input: xpad - change buttons the D-Pad gets mapped as to BTN_DPAD_* (Benjamin Tissoires) [RHEL-124788] - Input: xpad - set correct controller type for Acer NGR200 (Benjamin Tissoires) [RHEL-124788] - Input: cs40l50-vibra - fix potential NULL dereference in cs40l50_upload_owt() (Benjamin Tissoires) [RHEL-124788] - Input: mtk-pmic-keys - add support for MT6359 PMIC keys (Benjamin Tissoires) [RHEL-124788] - Input: samsung-keypad - use BIT() and GENMASK() where appropriate (Benjamin Tissoires) [RHEL-124788] - Input: samsung-keypad - use per-chip parameters (Benjamin Tissoires) [RHEL-124788] - Input: samsung-keypad - use guard notation to acquire mutex (Benjamin Tissoires) [RHEL-124788] - Input: samsung-keypad - use devm to disable runtime PM (Benjamin Tissoires) [RHEL-124788] - Input: samsung-keypad - use struct_size() helper (Benjamin Tissoires) [RHEL-124788] - Input: samsung-keypad - do not combine memory allocation checks (Benjamin Tissoires) [RHEL-124788] - Input: samsung-keypad - do not set input device's parent explicitly (Benjamin Tissoires) [RHEL-124788] - Input: samsung-keypad - switch to using devm_clk_get_prepared() (Benjamin Tissoires) [RHEL-124788] - Input: adp5585: Add Analog Devices ADP5585/89 support (Benjamin Tissoires) [RHEL-124788] - Input: edt-ft5x06 - add support for FocalTech FT8716 (Benjamin Tissoires) [RHEL-124788] - Input: edt-ft5x06 - use per-client debugfs directory (Benjamin Tissoires) [RHEL-124788] - Input: cs40l50 - remove redundant flush_workqueue() calls (Benjamin Tissoires) [RHEL-124788] - Input: max8997_haptic - optimize PWM configuration (Benjamin Tissoires) [RHEL-124788] - Input: iqs7222 - explicitly define number of external channels (Benjamin Tissoires) [RHEL-124788] - Input: adp5589 - use new GPIO line value setter callbacks (Benjamin Tissoires) [RHEL-124788] - Input: adp5588 - use new GPIO line value setter callbacks (Benjamin Tissoires) [RHEL-124788] - Input: ad7879 - use new GPIO line value setter callbacks (Benjamin Tissoires) [RHEL-124788] - Input: xpad - support Acer NGR 200 Controller (Benjamin Tissoires) [RHEL-124788] - Input: xpad - return errors from xpad_try_sending_next_out_packet() up (Benjamin Tissoires) [RHEL-124788] - Input: xpad - adjust error handling for disconnect (Benjamin Tissoires) [RHEL-124788] - Input: apple_z2 - drop default ARCH_APPLE in Kconfig (Benjamin Tissoires) [RHEL-124788] - Input: Fully open-code compatible for grepping (Benjamin Tissoires) [RHEL-124788] - Input: fsia6b - suppress buffer truncation warning for phys (Benjamin Tissoires) [RHEL-124788] - Input: iqs626a - replace snprintf() with scnprintf() (Benjamin Tissoires) [RHEL-124788] - Input: gpio-keys - fix possible concurrent access in gpio_keys_irq_timer() (Benjamin Tissoires) [RHEL-124788] - Input: gpio-keys - fix a sleep while atomic with PREEMPT_RT (Benjamin Tissoires) [RHEL-124788] - Input: xpad - send LED and auth done packets to all Xbox One controllers (Benjamin Tissoires) [RHEL-124788] - Input: xpad - add the ByoWave Proteus controller (Benjamin Tissoires) [RHEL-124788] - Input: xpad - allow delaying init packets (Benjamin Tissoires) [RHEL-124788] - Input: matrix_keypad - detect change during scan (Benjamin Tissoires) [RHEL-124788] - Input: matrix_keypad - add function for reading row state (Benjamin Tissoires) [RHEL-124788] - input: ipaq-micro-keys: use devm_kmemdup_array() (Benjamin Tissoires) [RHEL-124788] - input: sparse-keymap: use devm_kmemdup_array() (Benjamin Tissoires) [RHEL-124788] - Input: i8042 - add TUXEDO InfinityBook Pro Gen10 AMD to i8042 quirk table (Benjamin Tissoires) [RHEL-124788] - Input: add keycode for performance mode key (Benjamin Tissoires) [RHEL-124788] - Input: touch-overlay - add touchscreen overlay handling (Benjamin Tissoires) [RHEL-124788] - Input: atkbd - correctly map F13 - F24 (Benjamin Tissoires) [RHEL-124788] - Input: Add and document BTN_GRIP* (Benjamin Tissoires) [RHEL-124788] - Input: synaptics-rmi4 - add support for F1A (Benjamin Tissoires) [RHEL-124788] - Input: synaptics-rmi4 - add support for Forcepads (F21) (Benjamin Tissoires) [RHEL-124788] - Input: remove special handling of id->driver_info when matching (Benjamin Tissoires) [RHEL-124788] - Input: evdev - switch matching to EV_SYN (Benjamin Tissoires) [RHEL-124788] - Input: alps - use scnprintf() to suppress truncation warning (Benjamin Tissoires) [RHEL-124788] - Input: goodix - add support for polling mode (Benjamin Tissoires) [RHEL-124788] - HID: core: Add bus define for SoundWire bus (Benjamin Tissoires) [RHEL-124788] - Input: psmouse - switch to use scnprintf() to suppress truncation warning (Benjamin Tissoires) [RHEL-124788] - Input: lifebook - switch to use scnprintf() to suppress truncation warning (Benjamin Tissoires) [RHEL-124788] - Input: alps - switch to use scnprintf() to suppress truncation warning (Benjamin Tissoires) [RHEL-124788] - Input: atkbd - switch to use scnprintf() to suppress truncation warning (Benjamin Tissoires) [RHEL-124788] - Input: ims-pcu - check record size in ims_pcu_flash_firmware() (Benjamin Tissoires) [RHEL-124788] - Input: atkbd - do not reset keyboard by default on Loongson (Benjamin Tissoires) [RHEL-124788] - Input: switch back to struct platform_driver::remove() (Benjamin Tissoires) [RHEL-124788] - sched/fair: Prevent cfs_rq from being unthrottled with zero runtime_remaining (Herton R. Krzesinski) [RHEL-128311] - sched/fair: Start a cfs_rq on throttled hierarchy with PELT clock throttled (Herton R. Krzesinski) [RHEL-128311] - sched/fair: Do not balance task to a throttled cfs_rq (Herton R. Krzesinski) [RHEL-128311] - sched/fair: Do not special case tasks in throttled hierarchy (Herton R. Krzesinski) [RHEL-128311] - sched/fair: update_cfs_group() for throttled cfs_rqs (Herton R. Krzesinski) [RHEL-128311] - sched/fair: Propagate load for throttled cfs_rq (Herton R. Krzesinski) [RHEL-128311] - sched/fair: Get rid of throttled_lb_pair() (Herton R. Krzesinski) [RHEL-128311] - sched/fair: Task based throttle time accounting (Herton R. Krzesinski) [RHEL-128311] - sched/fair: Switch to task based throttle model (Herton R. Krzesinski) [RHEL-128311] - Revert "sched/fair: Block delayed tasks on throttled hierarchy during dequeue" (Herton R. Krzesinski) [RHEL-128311] - sched/fair: Implement throttle task work and related helpers (Herton R. Krzesinski) [RHEL-128311] - sched/fair: Add related data structure for task based throttle (Herton R. Krzesinski) [RHEL-128311] - nvme: nvme-fc: Ensure ->ioerr_work is cancelled in nvme_fc_delete_ctrl() (Ewan D. Milne) [RHEL-96296] - nvme: nvme-fc: move tagset removal to nvme_fc_delete_ctrl() (Ewan D. Milne) [RHEL-125970] - cpufreq/amd-pstate: Fix a regression leading to EPP 0 after hibernate (Steve Best) [RHEL-129700] - x86/CPU/AMD: Prevent reset reasons from being retained across reboot (Steve Best) [RHEL-129691] - platform/x86/intel/pmc: Add Wildcat Lake support to intel_pmc_core (Steve Best) [RHEL-95622] - vfio: selftests: replace iova=vaddr with allocated iovas (Cédric Le Goater) [RHEL-125821] - vfio: selftests: add iova allocator (Cédric Le Goater) [RHEL-125821] - vfio: selftests: fix map limit tests to use last available iova (Cédric Le Goater) [RHEL-125821] - vfio: selftests: add iova range query helpers (Cédric Le Goater) [RHEL-125821] - vfio: selftests: add end of address space DMA map/unmap tests (Cédric Le Goater) [RHEL-125821] - vfio: selftests: update DMA map/unmap helpers to support more test kinds (Cédric Le Goater) [RHEL-125821] - vfio/type1: handle DMA map/unmap up to the addressable limit (Cédric Le Goater) [RHEL-125821] - vfio/type1: move iova increment to unmap_unpin_*() caller (Cédric Le Goater) [RHEL-125821] - vfio/type1: sanitize for overflow using check_*_overflow() (Cédric Le Goater) [RHEL-125821] - PCI/AER: Avoid NULL pointer dereference in aer_ratelimit() (Myron Stowe) [RHEL-125473] {CVE-2025-40034} - Configs: Enable CONFIG_SCHED_MC for powerpc (Phil Auld) [RHEL-118962] - sched: Unify the SCHED_{SMT,CLUSTER,MC} Kconfig (Phil Auld) [RHEL-118962] - sched: Move STDL_INIT() functions out-of-line (Phil Auld) [RHEL-118962] - sched/fair: Get rid of sched_domains_curr_level hack for tl->cpumask() (Phil Auld) [RHEL-118962] - i2c: usbio: Add ACPI device-id for MTL-CVF devices (Kate Hsuan) [RHEL-106452] - gpio: usbio: Add ACPI device-id for MTL-CVF devices (Kate Hsuan) [RHEL-106452] - media: uvcvideo: Use heuristic to find stream entity (Kate Hsuan) [RHEL-111602] - platform/x86: int3472: Fix double free of GPIO device during unregister (Kate Hsuan) [RHEL-111602] - usb: misc: Add x86 dependency for Intel USBIO driver (Kate Hsuan) [RHEL-111602] - redhat: configs: Enable OV08X40 sensor (Kate Hsuan) [RHEL-111602] - redhat: configs: Enable USBIO modules (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Increase ov08x40 handshake GPIO delay to 45 ms (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Rework regulator enable-time handling (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Convert int3472_gpio_map to use C99 initializers (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: add hpd pin support (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Add board data for Dell 7212 (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: For mt9m114 sensors map powerdown to powerenable (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Export int3472_discrete_parse_crs() (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Stop using devm_gpiod_get() (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Move common.h to public includes, symbols to INTEL_INT3472 (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Debug log when remapping pins (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Add handshake pin support (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Prepare for registering more than 1 GPIO regulator (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Avoid GPIO regulator spikes (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Make regulator supply name configurable (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Rework AVDD second sensor quirk handling (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Drop unused gpio field from struct int3472_gpio_regulator (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Stop setting a supply-name for GPIO regulators (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Add skl_int3472_register_clock() helper (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Call "func" "con_id" instead (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Call "reset" GPIO "enable" for INT347E (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Use correct type for "polarity", call it gpio_flags (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Debug log the sensor name (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Fix skl_int3472_handle_gpio_resources() return value (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Make "pin number mismatch" message a debug message (Kate Hsuan) [RHEL-106452] - platform/x86: int3472: Check for adev == NULL (Kate Hsuan) [RHEL-106452] {CVE-2024-58011} - gpio: gpio-usbio: a compat function for the lagecy "struct gpio_chip" (Kate Hsuan) [RHEL-106452] - i2c: Add Intel USBIO I2C driver (Kate Hsuan) [RHEL-106452] - gpio: Add Intel USBIO GPIO driver (Kate Hsuan) [RHEL-106452] - usb: misc: Add Intel USBIO bridge driver (Kate Hsuan) [RHEL-106452] - ACPI: scan: Add Intel CVS ACPI HIDs to acpi_ignore_dep_ids[] (Kate Hsuan) [RHEL-106452] - media: i2c: ov08x40: Use V4L2 sensor clock helper (Kate Hsuan) [RHEL-111602] - media: i2c: ov08x40: Replace client->dev usage (Kate Hsuan) [RHEL-111602] - media: ov08x40: Fix the horizontal flip control (Kate Hsuan) [RHEL-111602] - media: ov08x40: Select mode based on mipi lane count (Kate Hsuan) [RHEL-111602] - media: ov08x40: Use v4l2_link_freq_to_bitmap helper (Kate Hsuan) [RHEL-111602] - media: ov08x40: Add shared global register list (Kate Hsuan) [RHEL-111602] - media: ov08x40: Remove common register settings from resolution-specific table (Kate Hsuan) [RHEL-111602] - media: ov08x40: Add support for 2/4 lanes at 1500 Mbps (Kate Hsuan) [RHEL-111602] - media: ov08x40: Separate the lane configuration and PLL settings (Kate Hsuan) [RHEL-111602] - media: ov08x40: Extend sleep after reset to 5 ms (Kate Hsuan) [RHEL-111602] - media: ov08x40: Log chip ID when identifying the chip (Kate Hsuan) [RHEL-111602] - media: ov08x40: Fix value of reset GPIO when requesting it (Kate Hsuan) [RHEL-111602] - media: ov08x40: Don't log ov08x40_check_hwcfg() errors twice (Kate Hsuan) [RHEL-111602] - media: ov08x40: Add missing ' ov08x40_check_hwcfg() error messages (Kate Hsuan) [RHEL-111602] - media: ov08x40: Add missing ov08x40_identify_module() call on stream-start (Kate Hsuan) [RHEL-111602] - media: ov08x40: Improve ov08x40_[read|write]_reg() error returns (Kate Hsuan) [RHEL-111602] - media: ov08x40: Improve ov08x40_identify_module() error logging (Kate Hsuan) [RHEL-111602] - media: ov08x40: Move ov08x40_identify_module() function up (Kate Hsuan) [RHEL-111602] - media: ov08x40: Get clock on ACPI platforms too (Kate Hsuan) [RHEL-111602] - media: ov08x40: Get reset GPIO and regulators on ACPI platforms too (Kate Hsuan) [RHEL-111602] - media: ov08x40: Move fwnode_graph_get_next_endpoint() call up (Kate Hsuan) [RHEL-111602] - media: ov08x40: Properly turn sensor on/off when runtime-suspended (Kate Hsuan) [RHEL-111602] - media: ov08x40: Add OF probe support (Kate Hsuan) [RHEL-111602] - media: ov08x40: Rename ext_clk to xvclk (Kate Hsuan) [RHEL-111602] - media: ov08x40: Fix burst write sequence (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Mark invalid entities with id UVC_INVALID_ENTITY_ID (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Support UVC_CROSXU_CONTROL_IQ_PROFILE (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Run uvc_ctrl_init_ctrl for all controls (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Shorten the transfer size non compliance message (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Do not re-reference dev->udev (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Use intf instead of udev for printks (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Move video_device under video_queue (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Drop stream->mutex (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Move MSXU_CONTROL_METADATA definition to header (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Add missing curly braces (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Drop unneeded memset() in meta device ioctl handlers (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Fix comments in uvc_meta_detect_msxu (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Fix assignment in if condition (Kate Hsuan) [RHEL-111602] - media: mc: Clear minor number before put device (Kate Hsuan) [RHEL-111602] - media: i2c: ov8856: Use V4L2 legacy sensor clock helper (Kate Hsuan) [RHEL-111602] - media: i2c: ov8856: Replace client->dev usage (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Add legacy camera sensor clock helper (Kate Hsuan) [RHEL-111602] - media: i2c: ov5675: Use V4L2 sensor clock helper (Kate Hsuan) [RHEL-111602] - media: i2c: ov5675: Replace client->dev usage (Kate Hsuan) [RHEL-111602] - media: i2c: ov2740: Use V4L2 sensor clock helper (Kate Hsuan) [RHEL-111602] - media: i2c: ov2740: Replace client->dev usage (Kate Hsuan) [RHEL-111602] - media: i2c: ov13b10: Use V4L2 sensor clock helper (Kate Hsuan) [RHEL-111602] - media: i2c: ov13b10: Replace client->dev usage (Kate Hsuan) [RHEL-111602] - media: i2c: ov13858: Use V4L2 sensor clock helper (Kate Hsuan) [RHEL-111602] - media: i2c: ov13858: Replace client->dev usage (Kate Hsuan) [RHEL-111602] - media: i2c: hi556: Use V4L2 sensor clock helper (Kate Hsuan) [RHEL-111602] - media: i2c: hi556: Replace client->dev usage (Kate Hsuan) [RHEL-111602] - media: i2c: mt9v022: Drop unused mt9v022.h header (Kate Hsuan) [RHEL-111602] - media: mc: Clear minor number reservation at unregistration time (Kate Hsuan) [RHEL-111602] - media: v4l2-core: update Hans Verkuil's email address (Kate Hsuan) [RHEL-111602] - media: v4l2-core: v4l2-dv-timings: support DRM IFs (Kate Hsuan) [RHEL-111602] - media: uapi: v4l2-controls: Cleanup codec definitions (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Constify media_pad argument to v4l2_get_link_freq() (Kate Hsuan) [RHEL-111602] - media: uapi: Cleanup tab after define in headers (Kate Hsuan) [RHEL-111602] - media: uapi: Move colorimetry controls at the end of the file (Kate Hsuan) [RHEL-111602] - media: mc: Improve unconnected pads debugging message in link exploration (Kate Hsuan) [RHEL-111602] - media: mc: Fix MUST_CONNECT handling for pads with no links (Kate Hsuan) [RHEL-111602] - media: cadence: cdns-csi2rx: Support multiple pixels per clock cycle (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Update v4l2_get_link_freq() documentation (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Drop the workaround from v4l2_get_link_freq() (Kate Hsuan) [RHEL-111602] - media: v4l2-subdev: Fix alloc failure check in v4l2_subdev_call_state_try() (Kate Hsuan) [RHEL-111602] - media: ipu6: isys: Set embedded data type correctly for metadata formats (Kate Hsuan) [RHEL-111602] - media: ipu6: isys: Use v4l2_ctrl_subdev_subscribe_event() (Kate Hsuan) [RHEL-111602] - media: v4l2-subdev: Make struct v4l2_subdev_stream_config private (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Improve devm_v4l2_sensor_clk_get() documentation (Kate Hsuan) [RHEL-111602] - media: i2c: ov8856: Use the v4l2 helper for obtaining the clock (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Add a helper for obtaining the clock producer (Kate Hsuan) [RHEL-111602] - media: v4l2: Rename second ioctl handlers argument to 'void *priv' (Kate Hsuan) [RHEL-111602] - media: v4l2-core: Rename second ioctl handlers argument to 'void *priv' (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Rename second ioctl handlers argument to 'void *priv' (Kate Hsuan) [RHEL-111602] - media: v4l2-ioctl: Push NULL fh argument down to ioctl wrappers (Kate Hsuan) [RHEL-111602] - media: v4l2-ioctl: Stop passing fh pointer to ioctl handlers (Kate Hsuan) [RHEL-111602] - media: usb: uvc: Access v4l2_fh from file (Kate Hsuan) [RHEL-111602] - media: v4l2-ioctl: Access v4l2_fh from private_data (Kate Hsuan) [RHEL-111602] - media: Drop V4L2_FL_USES_V4L2_FH checks (Kate Hsuan) [RHEL-111602] - media: v4l2-dev: Make open and release file operations mandatory (Kate Hsuan) [RHEL-111602] - media: v4l2-ctrls: Move v4l2_fh retrieval after V4L2_FL_USES_V4L2_FH check (Kate Hsuan) [RHEL-111602] - media: ipu6: isys: Don't set V4L2_FL_USES_V4L2_FH manually (Kate Hsuan) [RHEL-111602] - media: Reset file->private_data to NULL in v4l2_fh_del() (Kate Hsuan) [RHEL-111602] - media: amphion: Delete v4l2_fh synchronously in .release() (Kate Hsuan) [RHEL-111602] - media: Set file->private_data in v4l2_fh_add() (Kate Hsuan) [RHEL-111602] - media: usb: hdpvr: Store v4l2_fh pointer in file->private_data (Kate Hsuan) [RHEL-111602] - media: Replace file->private_data access with custom functions (Kate Hsuan) [RHEL-111602] - media: chips-media: wave5: Support runtime suspend/resume (Kate Hsuan) [RHEL-111602] - media: nvidia: tegra-vde: Replace file->private_data access (Kate Hsuan) [RHEL-111602] - media: v4l2-fh: Move piece of documentation to correct function (Kate Hsuan) [RHEL-111602] - media: Replace file->private_data access with file_to_v4l2_fh() (Kate Hsuan) [RHEL-111602] - media: usb: pvrusb2: Store v4l2_fh pointer in file->private_data (Kate Hsuan) [RHEL-111602] - media: ti: vpe: Store v4l2_fh pointer in file->private_data (Kate Hsuan) [RHEL-111602] - media: imagination: Store v4l2_fh pointer in file->private_data (Kate Hsuan) [RHEL-111602] - media: pci: saa7164: Store v4l2_fh pointer in file->private_data (Kate Hsuan) [RHEL-111602] - media: Wrap file->private_data access with a helper function (Kate Hsuan) [RHEL-111602] - media: renesas: vsp1: Implement pixel format enumeration (Kate Hsuan) [RHEL-111602] - media: usb: uvcvideo: Store v4l2_fh pointer in file->private_data (Kate Hsuan) [RHEL-111602] - media: v4l2: Add support for NV12M tiled variants to v4l2_format_info() (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Use a count variable for meta_formats instead of 0 terminating (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Auto-set UVC_QUIRK_MSXU_META (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Introduce V4L2_META_FMT_UVC_MSXU_1_5 (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Introduce dev->meta_formats (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Do not mark valid metadata as invalid (Kate Hsuan) [RHEL-111602] - media: uvcvideo: uvc_v4l2_unlocked_ioctl: Invert PM logic (Kate Hsuan) [RHEL-111602] - media: core: export v4l2_translate_cmd (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Turn on the camera if V4L2_EVENT_SUB_FL_SEND_INITIAL (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Remove stream->is_streaming field (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Split uvc_stop_streaming() (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Handle locks in uvc_queue_return_buffers (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Use vb2 ioctl and fop helpers (Kate Hsuan) [RHEL-111602] - media: adv748x: Remove g_pixelaspect implementation (Kate Hsuan) [RHEL-111602] - media: adv7180: Remove g_pixelaspect implementation (Kate Hsuan) [RHEL-111602] - media: v4l2-subdev: Remove g_pixelaspect operation (Kate Hsuan) [RHEL-111602] - media: hi556: correct the test pattern configuration (Kate Hsuan) [RHEL-111602] - media: hi556: Support full range of power rails (Kate Hsuan) [RHEL-111602] - media: hi556: Fix reset GPIO timings (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Add the missing Raw Bayer pixel formats (Kate Hsuan) [RHEL-111602] - media: uapi: videodev2: Fix comment for 12-bit packed Bayer formats (Kate Hsuan) [RHEL-111602] - media: v4l2-subdev: Add debug prints to v4l2_subdev_collect_streams() (Kate Hsuan) [RHEL-111602] - media: v4l2-subdev: Print early in v4l2_subdev_{enable,disable}_streams() (Kate Hsuan) [RHEL-111602] - media: v4l: Make media_entity_to_video_device() NULL-safe (Kate Hsuan) [RHEL-111602] - media: ipu6: isys: Use correct pads for xlate_streams() (Kate Hsuan) [RHEL-111602] - media: v4l2: Add Renesas Camera Receiver Unit pixel formats (Kate Hsuan) [RHEL-111602] - media: i2c: max96714: Drop check on number of active routes (Kate Hsuan) [RHEL-111602] - media: i2c: ds90ub960: Drop check on number of active routes (Kate Hsuan) [RHEL-111602] - media: i2c: ds90ub953: Drop check on number of active routes (Kate Hsuan) [RHEL-111602] - media: i2c: ds90ub913: Drop check on number of active routes (Kate Hsuan) [RHEL-111602] - media: v4l2-subdev: Limit the number of active routes to V4L2_FRAME_DESC_ENTRY_MAX (Kate Hsuan) [RHEL-111602] - media: ov8865: Improve error logging when fwnode is not found (Kate Hsuan) [RHEL-111602] - media: ov7251: Improve error logging when fwnode is not found (Kate Hsuan) [RHEL-111602] - media: ov5693: Improve error logging when fwnode is not found (Kate Hsuan) [RHEL-111602] - media: ipu-bridge: Improve error logging when waiting for IVSC to become ready (Kate Hsuan) [RHEL-111602] - media: ipu-bridge: Add Onsemi MT9M114 HID to list of supported sensors (Kate Hsuan) [RHEL-111602] - media: ipu-bridge: Add Toshiba T4KA3 HID to list of supported sensor (Kate Hsuan) [RHEL-111602] - media: ov2740: Remove shorthand variables (Kate Hsuan) [RHEL-111602] - media: ivsc: Remove Wentong's e-mail address (Kate Hsuan) [RHEL-111602] - media: ivsc: Fix crash at shutdown due to missing mei_cldev_disable() calls (Kate Hsuan) [RHEL-111602] {CVE-2025-39711} - media: Documentation: Document new v4l2_ctrl_handler_free() behaviour (Kate Hsuan) [RHEL-111602] - media: v4l2-ctrls: Return the handler's error in v4l2_ctrl_handler_free() (Kate Hsuan) [RHEL-111602] - media: v4l2-ctrls: Don't reset handler's error in v4l2_ctrl_handler_free() (Kate Hsuan) [RHEL-111602] - media: ipu-bridge: Add support for additional link frequencies (Kate Hsuan) [RHEL-111602] - media: i2c: Defer ov5670_probe() if endpoint not found (Kate Hsuan) [RHEL-111602] - media: ipu-bridge: Add _HID for OV5670 (Kate Hsuan) [RHEL-111602] - media: ipu-bridge: Add link-frequency to the GC0310 entry (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Reduce warnings about missing V4L2_CID_LINK_FREQ control (Kate Hsuan) [RHEL-111602] - media: v4l2-ctrls: Fix H264 SEPARATE_COLOUR_PLANE check (Kate Hsuan) [RHEL-111602] - media: rcar-fcp: Add rcar_fcp_soft_reset() (Kate Hsuan) [RHEL-111602] - media: v4l2-jpeg: Remove unused v4l2_jpeg_parse_* wrappers (Kate Hsuan) [RHEL-111602] - media: rainshadow-cec: fix TOCTOU race condition in rain_interrupt() (Kate Hsuan) [RHEL-111602] {CVE-2025-39713} - media: gspca: Add bounds checking to firmware parser (Kate Hsuan) [RHEL-111602] - media: v4l2-core: Replace the check for firmware registered I2C devices (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Fix 1-byte out-of-bounds read in uvc_parse_format() (Kate Hsuan) [RHEL-111602] {CVE-2025-38680} - media: uvcvideo: Add quirk for HP Webcam HD 2300 (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Refactor uvc_v4l2_compat_ioctl32 (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Refactor uvc_queue_streamon (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Refactor uvc_ctrl_set_handle() (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Populate all errors in uvc_probe() (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Set V4L2_CTRL_FLAG_DISABLED during queryctrl errors (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Fix bandwidth issue for Alcor camera (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Use dev_err_probe for devm_gpiod_get_optional (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Fix deferred probing error (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Rollback non processed entities on error (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Send control events for partial succeeds (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Return the number of processed controls (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Do not turn on the camera for some ioctls (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Make power management granular (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Avoid variable shadowing in uvc_ctrl_cleanup_fh (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Increase/decrease the PM counter per IOCTL (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Create uvc_pm_(get|put) functions (Kate Hsuan) [RHEL-111602] - media: uvcvideo: Keep streaming state in the file handle (Kate Hsuan) [RHEL-111602] - media: Add C3ISP_PARAMS and C3ISP_STATS meta formats (Kate Hsuan) [RHEL-111602] - media: omap3isp: use sgtable-based scatterlist wrappers (Kate Hsuan) [RHEL-111602] - media: videobuf2: use sgtable-based scatterlist wrappers (Kate Hsuan) [RHEL-111602] - media: v4l: subdev: Fix coverity issue: Logically dead code (Kate Hsuan) [RHEL-111602] - media: v4l2-dev: fix error handling in __video_register_device() (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Change deprecated lock comment (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Remove line_align (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Remove pin_ready function pointer (Kate Hsuan) [RHEL-111602] - media: common: Add v4l2_find_nearest_size_conditional() (Kate Hsuan) [RHEL-111602] - media: i2c: ov13b10: Support 2 lane mode (Kate Hsuan) [RHEL-111602] - media: i2c: ov13b10: Improve code readability (Kate Hsuan) [RHEL-111602] - media: i2c: ov13b10: Fix h_blank calculation (Kate Hsuan) [RHEL-111602] - media: ov8856: suppress probe deferral errors (Kate Hsuan) [RHEL-111602] - media: ov5675: suppress probe deferral errors (Kate Hsuan) [RHEL-111602] - media: gspca: Add error handling for stv06xx_read_sensor() (Kate Hsuan) [RHEL-111602] - media: videobuf2: check constants during build time (Kate Hsuan) [RHEL-111602] - media: vim2m: Add parametized support for multiplanar API (Kate Hsuan) [RHEL-111602] - media: vim2m: Simplify try_fmt (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Add RGBR format info (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Fix dma mask for non-secure mode (Kate Hsuan) [RHEL-111602] - media: ipu3-cio2: Replace deprecated PCI functions (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Replace deprecated PCI functions (Kate Hsuan) [RHEL-111602] - media: ipu-bridge: add ACPI HID for lt6911uxe bridge (Kate Hsuan) [RHEL-111602] - media: ov2740: Move pm-runtime cleanup on probe-errors to proper place (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Remove unused dev field from ipu6_isys_queue (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Abstract buf ready function (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Use timestamp value directly (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Make two functions static (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Add missing new line character in error message (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Remove unused IPU6_BUS_NAME (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Constify ipu6_buttress_ctrl structure (Kate Hsuan) [RHEL-111602] - media: rkvdec: h264: Use bytesperline and buffer height as virstride (Kate Hsuan) [RHEL-111602] - media: qcom: venus: Fix uninitialized variable warning (Kate Hsuan) [RHEL-111602] - media: v4l2-tpg: use (t,l)/wxh format for rectangle (Kate Hsuan) [RHEL-111602] - media: radio-wl1273: Rename wl1273_fm_vidioc_s_ctrl (Kate Hsuan) [RHEL-111602] - media: atomisp: Remove vidioc_g/s callback (Kate Hsuan) [RHEL-111602] - media: atomisp: Replace queryctrl with query_ext_ctrl (Kate Hsuan) [RHEL-111602] - media: adv7511-v4l2: add support for the EEODB (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Remove ipu6_buttress_ctrl started field (Kate Hsuan) [RHEL-111602] - media: ipu6: Remove workaround for Meteor Lake ES2 (Kate Hsuan) [RHEL-111602] - media: v4l2: Add NV15 and NV20 pixel formats (Kate Hsuan) [RHEL-111602] - media: v4l2-common: Add helpers to calculate bytesperline and sizeimage (Kate Hsuan) [RHEL-111602] - media: uapi: v4l: Fix V4L2_TYPE_IS_OUTPUT condition (Kate Hsuan) [RHEL-111602] - media: uapi: v4l: Change V4L2_TYPE_IS_CAPTURE condition (Kate Hsuan) [RHEL-111602] - media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() (Kate Hsuan) [RHEL-111602] - media: v4l2-core: use (t,l)/wxh format for rectangle (Kate Hsuan) [RHEL-111602] - media: v4l2-core: Introduce v4l2_query_ext_ctrl_to_v4l2_queryctrl (Kate Hsuan) [RHEL-111602] - media: v4l2: Remove vidioc_s_ctrl callback (Kate Hsuan) [RHEL-111602] - media: v4l2: Remove vidioc_g_ctrl callback (Kate Hsuan) [RHEL-111602] - media: v4l2: Remove vidioc_queryctrl callback (Kate Hsuan) [RHEL-111602] - media: ioctl: Simulate v4l2_queryctrl with v4l2_query_ext_ctrl (Kate Hsuan) [RHEL-111602] - media: cec: core: allow raw msg transmit while configuring (Kate Hsuan) [RHEL-111602] - media: rc: reduce useless padding in struct rc_dev etc (Kate Hsuan) [RHEL-111602] - media: ipu6: Drop unused ipu6_dma_get_sgtable() (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: set the dev_parent of video device to pdev (Kate Hsuan) [RHEL-111602] - media: hi556: remove redundant assignment to variable enable (Kate Hsuan) [RHEL-111602] - media: tuners: Constify struct tunertype, tuner_range and tuner_params (Kate Hsuan) [RHEL-111602] - media: v4l2-dv-timings: add v4l2_num_edid_blocks() helper (Kate Hsuan) [RHEL-111602] - media: ivsc: csi: Obtain link frequency from the media pad (Kate Hsuan) [RHEL-111602] - media: intel/ipu6: Obtain link frequency from the remote subdev pad (Kate Hsuan) [RHEL-111602] - media: v4l: Memset argument to 0 before calling get_mbus_config pad op (Kate Hsuan) [RHEL-111602] - media: v4l: Support obtaining link frequency via get_mbus_config (Kate Hsuan) [RHEL-111602] - media: v4l: Support passing media pad argument to v4l2_get_link_freq() (Kate Hsuan) [RHEL-111602] - media: pci: ipu6: drop vb2_ops_wait_prepare/finish (Kate Hsuan) [RHEL-111602] - media: i2c: ov2740: Small cleanups (Kate Hsuan) [RHEL-111602] - media: i2c: ov2740: Free control handler on error path (Kate Hsuan) [RHEL-111602] - media: hi556: Don't log hi556_check_hwcfg() errors twice (Kate Hsuan) [RHEL-111602] - media: hi556: Improve error logging when fwnode is not found (Kate Hsuan) [RHEL-111602] - media: hi556: Add missing ' messages (Kate Hsuan) [RHEL-111602] - media: hi556: Fix memory leak (on error) in hi556_check_hwcfg() (Kate Hsuan) [RHEL-111602] - media: rc: add keymap for Siemens Gigaset RC20 remote (Kate Hsuan) [RHEL-111602] - media: cx231xx: remove redundant assignment to variable value (Kate Hsuan) [RHEL-111602] - net: devmem: fix kernel panic when netlink socket close after module unload (Mohammad Heib) [RHEL-89816] - net: fix the missing unlock for detached devices (Mohammad Heib) [RHEL-89816] - net: s/__dev_set_mtu/__netif_set_mtu/ (Mohammad Heib) [RHEL-89816] - udp_tunnel: fix deadlock in udp_tunnel_nic_set_port_priv() (Mohammad Heib) [RHEL-89816] - net: core: fix lockdep splat on device unregister (Mohammad Heib) [RHEL-89816] - macsec: sync features on RTM_NEWLINK (Mohammad Heib) [RHEL-89816] - net: dev_ioctl: take ops lock in hwtstamp lower paths (Mohammad Heib) [RHEL-89816] - bnxt_en: Fix lockdep warning during rmmod (Mohammad Heib) [RHEL-89816] - hamradio: ignore ops-locked netdevs (Mohammad Heib) [RHEL-89816] - net: lapbether: ignore ops-locked netdevs (Mohammad Heib) [RHEL-89816] - selftests: rtnetlink: add macsec and vlan nesting test (Mohammad Heib) [RHEL-89816] - macsec: set IFF_UNICAST_FLT priv flag (Mohammad Heib) [RHEL-89816] - team: replace team lock with rtnl lock (Mohammad Heib) [RHEL-89816] - net: mana: Fix potential deadlocks in mana napi ops (Mohammad Heib) [RHEL-89816] - Revert "bnxt_en: bring back rtnl_lock() in the bnxt_open() path" (Mohammad Heib) [RHEL-89816] - netdevsim: remove udp_ports_sleep (Mohammad Heib) [RHEL-89816] - net: remove redundant ASSERT_RTNL() in queue setup functions (Mohammad Heib) [RHEL-89816] - udp_tunnel: remove rtnl_lock dependency (Mohammad Heib) [RHEL-89816] - vxlan: drop sock_lock (Mohammad Heib) [RHEL-89816] - geneve: rely on rtnl lock in geneve_offload_rx_ports (Mohammad Heib) [RHEL-89816] - net: prevent a NULL deref in rtnl_create_link() (Mohammad Heib) [RHEL-89816] - iavf: get rid of the crit lock (Mohammad Heib) [RHEL-89816] - iavf: sprinkle netdev_assert_locked() annotations (Mohammad Heib) [RHEL-89816] - iavf: extract iavf_watchdog_step() out of iavf_watchdog_task() (Mohammad Heib) [RHEL-89816] - iavf: simplify watchdog_task in terms of adminq task scheduling (Mohammad Heib) [RHEL-89816] - iavf: centralize watchdog requeueing itself (Mohammad Heib) [RHEL-89816] - hv_netvsc: fix potential deadlock in netvsc_vf_setxdp() (Mohammad Heib) [RHEL-89816] - af_packet: move notifier's packet_dev_mc out of rcu critical section (Mohammad Heib) [RHEL-89816] - eth: bnxt: fix deadlock when xdp is attached or detached (Mohammad Heib) [RHEL-89816] - bnxt_en: Fix netdev locking in ULP IRQ functions (Mohammad Heib) [RHEL-89816] - team: grab team lock during team_change_rx_flags (Mohammad Heib) [RHEL-89816] - bnxt_en: bring back rtnl_lock() in the bnxt_open() path (Mohammad Heib) [RHEL-89816] - net: Lock lower level devices when updating features (Mohammad Heib) [RHEL-89816] - net: add missing instance lock to dev_set_promiscuity (Mohammad Heib) [RHEL-89816] - net: Lock netdevices during dev_shutdown (Mohammad Heib) [RHEL-89816] - xdp: create locked/unlocked instances of xdp redirect target setters (Mohammad Heib) [RHEL-89816] - netdev: fix the locking for netdev notifications (Mohammad Heib) [RHEL-89816] - net: don't try to ops lock uninitialized devs (Mohammad Heib) [RHEL-89816] - net: don't mix device locking in dev_close_many() calls (Mohammad Heib) [RHEL-89816] - bonding: hold ops lock around get_link (Mohammad Heib) [RHEL-89816] - netdev: depend on netdev->lock for qstats in ops locked drivers (Mohammad Heib) [RHEL-89816] - docs: netdev: break down the instance locking info per ops struct (Mohammad Heib) [RHEL-89816] - netdev: depend on netdev->lock for xdp features (Mohammad Heib) [RHEL-89816] - xdp: double protect netdev->xdp_flags with netdev->lock (Mohammad Heib) [RHEL-89816] - netdev: don't hold rtnl_lock over nl queue info get when possible (Mohammad Heib) [RHEL-89816] - netdev: add "ops compat locking" helpers (Mohammad Heib) [RHEL-89816] - net: designate XSK pool pointers in queues as "ops protected" (Mohammad Heib) [RHEL-89816] - net: avoid potential race between netdev_get_by_index_lock() and netns switch (Mohammad Heib) [RHEL-89816] - rtnetlink: Fix bad unlock balance in do_setlink(). (Mohammad Heib) [RHEL-89816] - net: hold instance lock during NETDEV_CHANGE (Mohammad Heib) [RHEL-89816] - ipv6: Fix null-ptr-deref in addrconf_add_ifaddr(). (Mohammad Heib) [RHEL-89816] - selftests: net: use netdevsim in netns test (Mohammad Heib) [RHEL-89816] - docs: net: document netdev notifier expectations (Mohammad Heib) [RHEL-89816] - net: dummy: request ops lock (Mohammad Heib) [RHEL-89816] - netdevsim: add dummy device notifiers (Mohammad Heib) [RHEL-89816] - net: rename rtnl_net_debug to lock_debug (Mohammad Heib) [RHEL-89816] - net: use netif_disable_lro in ipv6_add_dev (Mohammad Heib) [RHEL-89816] - net: hold instance lock during NETDEV_REGISTER/UP (Mohammad Heib) [RHEL-89816] - net: switch to netif_disable_lro in inetdev_init (Mohammad Heib) [RHEL-89816] - eth: bnxt: fix deadlock in the mgmt_ops (Mohammad Heib) [RHEL-89816] - bpf: add missing ops lock around dev_xdp_attach_link (Mohammad Heib) [RHEL-89816] - bnxt_en: bring back rtnl lock in bnxt_shutdown (Mohammad Heib) [RHEL-89816] - eth: gve: add missing netdev locks on reset and shutdown paths (Mohammad Heib) [RHEL-89816] - net: lapbether: use netdev_lockdep_set_classes() helper (Mohammad Heib) [RHEL-89816] - net: move replay logic to tc_modify_qdisc (Mohammad Heib) [RHEL-89816] - net: protect rxq->mp_params with the instance lock (Mohammad Heib) [RHEL-89816] - net: designate queue -> napi linking as "ops protected" (Mohammad Heib) [RHEL-89816] - net: designate queue counts as "double ops protected" by instance lock (Mohammad Heib) [RHEL-89816] - net: explain "protection types" for the instance lock (Mohammad Heib) [RHEL-89816] - net: constify dev pointer in misc instance lock helpers (Mohammad Heib) [RHEL-89816] - net: remove netif_set_real_num_rx_queues() helper for when SYSFS=n (Mohammad Heib) [RHEL-89816] - net: reorder dev_addr_sem lock (Mohammad Heib) [RHEL-89816] - Revert "net: replace dev_addr_sem with netdev instance lock" (Mohammad Heib) [RHEL-89816] - net: fix use-after-free in the netdev_nl_sock_priv_destroy() (Mohammad Heib) [RHEL-89816] - net: bubble up taking netdev instance lock to callers of net_devmem_unbind_dmabuf() (Mohammad Heib) [RHEL-89816] - net: drop rtnl_lock for queue_mgmt operations (Mohammad Heib) [RHEL-89816] - net: add granular lock for the netdev netlink socket (Mohammad Heib) [RHEL-89816] - net: create netdev_nl_sock to wrap bindings list (Mohammad Heib) [RHEL-89816] - eth: bnxt: add missing netdev lock management to bnxt_dl_reload_up (Mohammad Heib) [RHEL-89816] - eth: bnxt: request unconditional ops lock (Mohammad Heib) [RHEL-89816] - eth: bnxt: switch to netif_close (Mohammad Heib) [RHEL-89816] - net: revert to lockless TC_SETUP_BLOCK and TC_SETUP_FT (Mohammad Heib) [RHEL-89816] - net: move misc netdev_lock flavors to a separate header (Mohammad Heib) [RHEL-89816] - hamradio: use netdev_lockdep_set_classes() helper (Mohammad Heib) [RHEL-89816] - net: ethtool: use correct device pointer in ethnl_default_dump_one() (Mohammad Heib) [RHEL-89816] - bpf: fix a possible NULL deref in bpf_map_offload_map_alloc() (Mohammad Heib) [RHEL-89816] - eth: bnxt: remove most dependencies on RTNL (Mohammad Heib) [RHEL-89816] - docs: net: document new locking reality (Mohammad Heib) [RHEL-89816] - net: add option to request netdev instance lock (Mohammad Heib) [RHEL-89816] - net: replace dev_addr_sem with netdev instance lock (Mohammad Heib) [RHEL-89816] - net: ethtool: try to protect all callback with netdev instance lock (Mohammad Heib) [RHEL-89816] - net: hold netdev instance lock during ndo_bpf (Mohammad Heib) [RHEL-89816] - net: hold netdev instance lock during sysfs operations (Mohammad Heib) [RHEL-89816] - net: hold netdev instance lock during ioctl operations (Mohammad Heib) [RHEL-89816] - net: hold netdev instance lock during rtnetlink operations (Mohammad Heib) [RHEL-89816] - net: hold netdev instance lock during queue operations (Mohammad Heib) [RHEL-89816] - net: hold netdev instance lock during qdisc ndo_setup_tc (Mohammad Heib) [RHEL-89816] - net: hold netdev instance lock during nft ndo_setup_tc (Mohammad Heib) [RHEL-89816] - net: hold netdev instance lock during ndo_open/ndo_stop (Mohammad Heib) [RHEL-89816] - gve: set xdp redirect target only when it is available (Mohammad Heib) [RHEL-89816] - ipv6: Pass dev to inet6_addr_add(). (Mohammad Heib) [RHEL-89816] - rtnetlink: Use register_pernet_subsys() in rtnl_net_debug_init(). (Mohammad Heib) [RHEL-89816] - rtnl_net_debug: Remove rtnl_net_debug_exit(). (Mohammad Heib) [RHEL-89816] - eth: gve: use appropriate helper to set xdp_features (Mohammad Heib) [RHEL-89816] - rtnetlink: Call validate_linkmsg() in do_setlink(). (Mohammad Heib) [RHEL-89816] - rtnetlink: Add ASSERT_RTNL_NET() placeholder for netdev notifier. (Mohammad Heib) [RHEL-89816] - rtnetlink: Add assertion helpers for per-netns RTNL. (Mohammad Heib) [RHEL-89816] - Enable PHY drivers required for automotive board (Radu Rendec) [RHEL-105634] - redhat/kernel.spec.template: Let kernel-modules installation rebuild initrd in UKI system (Li Tian) [RHEL-134892] - selftests: netfilter: Ignore tainted kernels in interface stress test (Phil Sutter) [RHEL-108859] - selftests: netfilter: Fix skip of wildcard interface test (Phil Sutter) [RHEL-108859] - selftests: netfilter: Torture nftables netdev hooks (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Introduce NFTA_DEVICE_PREFIX (Phil Sutter) [RHEL-108859] - netfilter: nfnetlink_hook: Dump flowtable info (Phil Sutter) [RHEL-108859] - netfilter: nfnetlink: New NFNLA_HOOK_INFO_DESC helper (Phil Sutter) [RHEL-108859] - Revert "netfilter: nf_tables: Add notifications for hook changes" (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Add notifications for hook changes (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Support wildcard netdev hook specs (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Sort labels in nft_netdev_hook_alloc() (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Handle NETDEV_CHANGENAME events (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Wrap netdev notifiers (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Respect NETDEV_REGISTER events (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Prepare for handling NETDEV_REGISTER events (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Have a list of nf_hook_ops in nft_hook (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Pass nf_hook_ops to nft_unregister_flowtable_hook() (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Introduce nft_register_flowtable_ops() (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Introduce nft_hook_find_ops{,_rcu}() (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Simplify chain netdev notifier (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Tolerate chains with no remaining hooks (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Compare netdev hooks based on stored name (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Use stored ifname in netdev hook dumps (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Store user-defined hook ifname (Phil Sutter) [RHEL-108859] - netfilter: nf_tables: Flowtable hook's pf value never varies (Phil Sutter) [RHEL-108859] - x86/microcode/AMD: Select which microcode patch to load (Waiman Long) [RHEL-124710] - x86/microcode/AMD: Add Zen5 model 0x44, stepping 0x1 minrev (Waiman Long) [RHEL-124710] - x86/microcode: Mark early_parse_cmdline() as __init (Waiman Long) [RHEL-124710] - x86/microcode/AMD: Add more known models to entry sign checking (Waiman Long) [RHEL-124710] - x86/microcode/AMD: Limit Entrysign signature checking to known generations (Waiman Long) [RHEL-124710] - x86/microcode: Fix Entrysign revision check for Zen1/Naples (Waiman Long) [RHEL-124710] - redhat/configs: Add CONFIG_MICROCODE_DBG [=n] (Waiman Long) [RHEL-124710] - x86/microcode: Add microcode loader debugging functionality (Waiman Long) [RHEL-124710] - x86/microcode: Add microcode= cmdline parsing (Waiman Long) [RHEL-124710] - x86/microcode/intel: Refresh the revisions that determine old_microcode (Waiman Long) [RHEL-124710] - x86/microcode: Move away from using a fake platform device (Waiman Long) [RHEL-124710] - x86/microcode/AMD: Do not return error when microcode update is not necessary (Waiman Long) [RHEL-124710] - x86/microcode/AMD: Use sha256() instead of init/update/final (Waiman Long) [RHEL-124710] - x86/microcode/AMD: Clean the cache if update did not load microcode (Waiman Long) [RHEL-124710] - x86/microcode/AMD: Extend the SHA check to Zen5, block loading of any unreleased standalone Zen5 microcode patches (Waiman Long) [RHEL-124710] - x86/microcode/AMD: Make __verify_patch_size() return bool (Waiman Long) [RHEL-124710] - x86/microcode/AMD: Remove bogus comment from parse_container() (Waiman Long) [RHEL-124710] - octeon_ep: Validate the VF ID (Kamal Heib) [RHEL-116103] - octeon_ep: fix VF MAC address lifecycle handling (Kamal Heib) [RHEL-116104] - redhat/self-test: refresh with new automotive variables (Scott Weaver) - automotive: add configurable package name and disttag variables (Scott Weaver) - PCI: endpoint: pci-epf-test: Fix doorbell test support (Myron Stowe) [RHEL-107898] - PCI: qcom: Restrict port parsing only to PCIe bridge child nodes (Myron Stowe) [RHEL-107898] - PCI: rcar-host: Pass proper IRQ domain to generic_handle_domain_irq() (Myron Stowe) [RHEL-107898] - misc: pci_endpoint_test: Fix array underflow in pci_endpoint_test_ioctl() (Myron Stowe) [RHEL-107898] - PCI: xgene-msi: Return negative -EINVAL in xgene_msi_handler_setup() (Myron Stowe) [RHEL-107898] - PCI: endpoint: pci-ep-msi: Fix NULL vs IS_ERR() check in pci_epf_write_msi_msg() (Myron Stowe) [RHEL-107898] - PCI: xilinx: Fix NULL pointer dereference in xilinx_pcie_intr_handler() (Myron Stowe) [RHEL-107898] - PCI: Fix typos (Myron Stowe) [RHEL-107898] - PCI: hotplug: Remove TODO about unused .get_power(), .hardware_test() (Myron Stowe) [RHEL-107898] - cpu/hotplug: Remove unused cpuhp_state CPUHP_PCI_XGENE_DEAD (Myron Stowe) [RHEL-107898] - PCI: xgene-msi: Restructure handler setup/teardown (Myron Stowe) [RHEL-107898] - PCI: xgene-msi: Probe as a standard platform driver (Myron Stowe) [RHEL-107898] - PCI: xgene-msi: Resend an MSI racing with itself on a different CPU (Myron Stowe) [RHEL-107898] - PCI: xgene-msi: Sanitise MSI allocation and affinity setting (Myron Stowe) [RHEL-107898] - PCI: xgene-msi: Get rid of intermediate tracking structure (Myron Stowe) [RHEL-107898] - PCI: xgene-msi: Use device-managed memory allocations (Myron Stowe) [RHEL-107898] - PCI: xgene-msi: Drop superfluous fields from xgene_msi structure (Myron Stowe) [RHEL-107898] - PCI: xgene-msi: Make per-CPU interrupt setup robust (Myron Stowe) [RHEL-107898] - PCI: xgene: Drop XGENE_PCIE_IP_VER_UNKN (Myron Stowe) [RHEL-107898] - PCI: xgene: Drop useless conditional compilation (Myron Stowe) [RHEL-107898] - PCI: xgene: Defer probing if the MSI widget driver hasn't probed yet (Myron Stowe) [RHEL-107898] - PCI: rockchip-host: Remove unused header includes (Myron Stowe) [RHEL-107898] - PCI: rockchip-host: Correct non-fatal error log message (Myron Stowe) [RHEL-107898] - PCI: rockchip-host: Fix "Unexpected Completion" log message (Myron Stowe) [RHEL-107898] - PCI: rockchip: Set Target Link Speed to 5.0 GT/s before retraining (Myron Stowe) [RHEL-107898] - PCI: rockchip: Use standard PCIe definitions (Myron Stowe) [RHEL-107898] - PCI: rockchip: Remove redundant PCIe message routing definitions (Myron Stowe) [RHEL-107898] - PCI: qcom: Add support for parsing the new Root Port binding (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: qcom: Move PHY & reset GPIO to Root Port node (Myron Stowe) [RHEL-107898] - PCI: qcom: Add support for Qualcomm SA8255p based PCIe Root Complex (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: qcom,pcie-sa8255p: Document ECAM compliant PCIe root complex (Myron Stowe) [RHEL-107898] - PCI: host-generic: Rename and export gen_pci_init() for PCIe controller drivers (Myron Stowe) [RHEL-107898] - PCI: dwc: Export DWC MSI controller related APIs (Myron Stowe) [RHEL-107898] - PCI: mvebu: Use devm_add_action_or_reset() instead of devm_add_action() (Myron Stowe) [RHEL-107898] - PCI: imx6: Delay link start until configfs 'start' written (Myron Stowe) [RHEL-107898] - PCI: imx6: Remove apps_reset toggling from imx_pcie_{assert/deassert}_core_reset (Myron Stowe) [RHEL-107898] - PCI: imx6: Add LUT configuration for MSI/IOMMU in Endpoint mode (Myron Stowe) [RHEL-107898] - PCI: imx6: Add helper function imx_pcie_add_lut_by_rid() (Myron Stowe) [RHEL-107898] - PCI: imx6: Add IMX8MM_EP and IMX8MP_EP fixed 256-byte BAR 4 in epc_features (Myron Stowe) [RHEL-107898] - PCI: imx6: Add IMX8MQ_EP third 64-bit BAR in epc_features (Myron Stowe) [RHEL-107898] - PCI: dw-rockchip: Delay link training after hot reset in EP mode (Myron Stowe) [RHEL-107898] - PCI: cadence: Replace private message routing enums with PCI core definitions (Myron Stowe) [RHEL-107898] - PCI: brcmstb: Replace open coded value with PCIE_T_RRS_READY_MS (Myron Stowe) [RHEL-107898] - MAINTAINERS: Drop Nicolas from maintaining pcie-brcmstb (Myron Stowe) [RHEL-107898] - PCI: brcmstb: Set MLW based on "num-lanes" DT property if present (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: brcm,stb-pcie: Add num-lanes property (Myron Stowe) [RHEL-107898] - PCI: Move link up wait time and max retries macros to pci.h (Myron Stowe) [RHEL-107898] - PCI: dwc: Ensure that dw_pcie_wait_for_link() waits 100 ms after link up (Myron Stowe) [RHEL-107898] - PCI: qcom: Wait PCIE_RESET_CONFIG_WAIT_MS after link-up IRQ (Myron Stowe) [RHEL-107898] - PCI: dw-rockchip: Wait PCIE_RESET_CONFIG_WAIT_MS after link-up IRQ (Myron Stowe) [RHEL-107898] - PCI: rockchip-host: Use macro PCIE_RESET_CONFIG_WAIT_MS (Myron Stowe) [RHEL-107898] - PCI: Rename PCIE_RESET_CONFIG_DEVICE_WAIT_MS to PCIE_RESET_CONFIG_WAIT_MS (Myron Stowe) [RHEL-107898] - PCI: vmd: Remove MSI-X check on child devices (Myron Stowe) [RHEL-107898] - PCI: vmd: Fix wrong kfree() in vmd_msi_free() (Myron Stowe) [RHEL-107898] - PCI: vmd: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: vmd: Convert to lock guards (Myron Stowe) [RHEL-107898] - PCI: plda: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: xilinx: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: xilinx-nwl: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: xilinx-xdma: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: rcar-host: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: mediatek: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: mediatek-gen3: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: iproc: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: brcmstb: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: altera-msi: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: aardvark: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: mobiveil: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: dwc: Switch to msi_create_parent_irq_domain() (Myron Stowe) [RHEL-107898] - PCI: controller: Use dev_fwnode() instead of of_fwnode_handle() (Myron Stowe) [RHEL-107898] - PCI: endpoint: pci-epf-vntb: Fix the incorrect usage of __iomem attribute (Myron Stowe) [RHEL-107898] - PCI: endpoint: pci-epf-vntb: Allow BAR assignment via configfs (Myron Stowe) [RHEL-107898] - PCI: endpoint: pci-epf-vntb: Align MW naming with config names (Myron Stowe) [RHEL-107898] - PCI: endpoint: pci-epf-vntb: Return -ENOENT if pci_epc_get_next_free_bar() fails (Myron Stowe) [RHEL-107898] - selftests: pci_endpoint: Add doorbell test case (Myron Stowe) [RHEL-107898] - misc: pci_endpoint_test: Add doorbell test case (Myron Stowe) [RHEL-107898] - PCI: endpoint: pci-epf-test: Add doorbell test support (Myron Stowe) [RHEL-107898] - PCI: endpoint: Add pci_epf_align_inbound_addr() helper for inbound address alignment (Myron Stowe) [RHEL-107898] - PCI: endpoint: pci-ep-msi: Add checks for MSI parent and mutability (Myron Stowe) [RHEL-107898] - PCI: endpoint: Add RC-to-EP doorbell support using platform MSI controller (Myron Stowe) [RHEL-107898] - PCI: endpoint: Fix configfs group removal on driver teardown (Myron Stowe) [RHEL-107898] - PCI: endpoint: Fix configfs group list head handling (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: qcom,pcie-sa8775p: Document 'link_down' reset (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: Remove 83xx-512x-pci.txt (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: Convert amazon,al-alpine-v[23]-pcie to DT schema (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: Convert marvell,armada-3700-pcie to DT schema (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: Convert apm,xgene-pcie to DT schema (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: Convert axis,artpec6-pcie to DT schema (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: Convert st,spear1340-pcie to DT schema (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: qcom,pcie-sm8150: Drop unrelated clocks from PCIe hosts (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: qcom,pcie-sc8180x: Drop unrelated clocks from PCIe hosts (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: pci-ep: Extend max-link-speed to PCIe Gen5/Gen6 (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: qcom,pcie-sa8775p: Document QCS8300 (Myron Stowe) [RHEL-107898] - dt-bindings: PCI: qcom,pcie-sm8150: Document QCS615 (Myron Stowe) [RHEL-107898] - PCI/pwrctrl: Fix the kerneldoc tag for private fields (Myron Stowe) [RHEL-107898] - PCI: Move is_pciehp check out of pciehp_is_native() (Myron Stowe) [RHEL-107898] - PCI: pciehp: Use is_pciehp instead of is_hotplug_bridge (Myron Stowe) [RHEL-107898] - PCI/portdrv: Use is_pciehp instead of is_hotplug_bridge (Myron Stowe) [RHEL-107898] - PCI/ACPI: Fix runtime PM ref imbalance on Hot-Plug Capable ports (Myron Stowe) [RHEL-107898] - PCI: Support Immediate Readiness on devices without PM capabilities (Myron Stowe) [RHEL-107898] - PCI: Allow built-in drivers to use async initial probing (Myron Stowe) [RHEL-107898] - PCI: Adjust the position of reading the Link Control 2 register (Myron Stowe) [RHEL-107898] - PCI: Fix link speed calculation on retrain failure (Myron Stowe) [RHEL-107898] - PCI: Extend isolated function probing to LoongArch (Myron Stowe) [RHEL-107898] - PCI/ASPM: Consolidate variable declaration and initialization (Myron Stowe) [RHEL-107898] - PCI/ASPM: Use boolean type for aspm_disabled and aspm_force (Myron Stowe) [RHEL-107898] - PCI/AER: Add message when AER_MAX_MULTI_ERR_DEVICES limit is hit (Myron Stowe) [RHEL-107898] - PCI/AER: Use bool for AER disable state tracking (Myron Stowe) [RHEL-107898] - net: Prevent use after free in netif_napi_set_irq_locked() (Petr Oros) [RHEL-83024] - net: move aRFS rmap management and CPU affinity to core (Petr Oros) [RHEL-83024] - arm64: kprobes: check the return value of set_memory_rox() (Marcin Juszkiewicz) [RHEL-122954] - arm64: kprobes: call set_memory_rox() for kprobe page (Marcin Juszkiewicz) [RHEL-122954] - audit: fix out-of-bounds read in audit_compare_dname_path() (CKI Backport Bot) [RHEL-119187] {CVE-2025-39840} - Revert "arm64: acpi: Enable ACPI CCEL support" (Gavin Shan) [RHEL-135143] - platform/x86/amd/hsmp: Replace amd_num_nodes() with topology_max_packages() (Steve Best) [RHEL-117573] - sctp: avoid NULL dereference when chunk data buffer is missing (CKI Backport Bot) [RHEL-134012] {CVE-2025-40240} - net: vxlan: prevent NULL deref in vxlan_xmit_one (Antoine Tenart) [RHEL-123738] - usb: storage: Fix memory leak in USB bulk transport (Desnes Nunes) [RHEL-2588] - scsi: smartpqi: Update version to 2.1.36-026 (Don Brace) [RHEL-107916] - scsi: smartpqi: Add support for Hurray Data new controller PCI device (Don Brace) [RHEL-107916] - scsi: smartpqi: Fix device resources accessed after device removal (Don Brace) [RHEL-107916] - scsi: smartpqi: Add timeout value to RAID path requests to physical devices (Don Brace) [RHEL-107916] - io_uring/msg_ring: ensure io_kiocb freeing is deferred for RCU (CKI Backport Bot) [RHEL-129615] {CVE-2025-38453} - ipv6: ip6_mc_input() and ip6_mr_input() cleanups (Hangbin Liu) [RHEL-129176] - ipv6: adopt skb_dst_dev() and skb_dst_dev_net[_rcu]() helpers (Hangbin Liu) [RHEL-129176] - ipv6: adopt dst_dev() helper (Hangbin Liu) [RHEL-129176] - ipv4: adopt dst_dev, skb_dst_dev and skb_dst_dev_net[_rcu] (Hangbin Liu) [RHEL-129176] - net: dst: annotate data-races around dst->lastuse (Hangbin Liu) [RHEL-129176] - net: dst: annotate data-races around dst->expires (Hangbin Liu) [RHEL-129176] - net: dst: annotate data-races around dst->obsolete (Hangbin Liu) [RHEL-129176] - inet: frags: save a pair of atomic operations in reassembly (Hangbin Liu) [RHEL-129176] - inet: frags: change inet_frag_kill() to defer refcount updates (Hangbin Liu) [RHEL-129176] - ipv4: frags: remove ipq_put() (Hangbin Liu) [RHEL-129176] - inet: frags: add inet_frag_putn() helper (Hangbin Liu) [RHEL-129176] - net: gro: convert four dev_net() calls (Hangbin Liu) [RHEL-129176] - tcp: convert to dev_net_rcu() (Hangbin Liu) [RHEL-129176] - inetpeer: do not get a refcount in inet_getpeer() (Hangbin Liu) [RHEL-129176] - inetpeer: update inetpeer timestamp in inet_getpeer() (Hangbin Liu) [RHEL-129176] - inetpeer: remove create argument of inet_getpeer() (Hangbin Liu) [RHEL-129176] - inetpeer: remove create argument of inet_getpeer_v[46]() (Hangbin Liu) [RHEL-129176] - cpufreq: intel_pstate: Check IDA only before MSR_IA32_PERF_CTL writes (Steve Best) [RHEL-128525] - scsi: megaraid_sas: Fix invalid node index (Chandrakanth Patil) [RHEL-101339] - scsi: mpt3sas: Update driver version to 54.100.00.00 (Chandrakanth Patil) [RHEL-101343] - scsi: mpt3sas: Add support for 22.5 Gbps SAS link rate (Chandrakanth Patil) [RHEL-101343] - scsi: mpt3sas: Suppress unnecessary IOCLogInfo on CONFIG_INVALID_PAGE (Chandrakanth Patil) [RHEL-101343] - scsi: mpt3sas: Fix crash in transport port remove by using ioc_info() (Chandrakanth Patil) [RHEL-101343] - scsi: mpt3sas: Correctly handle ATA device errors (Chandrakanth Patil) [RHEL-101343] - scsi: mpt3sas: Drop unused variable in mpt3sas_send_mctp_passthru_req() (Chandrakanth Patil) [RHEL-101343] - scsi: mpt3sas: Fix _ctl_get_mpt_mctp_passthru_adapter() to return IOC pointer (Chandrakanth Patil) [RHEL-101343] - platform/x86/amd/pmf: Support new ACPI ID AMDI0108 (Steve Best) [RHEL-122866] - ALSA: update RHEL kconfigs for 6.17 upstream code (Jaroslav Kysela) [RHEL-118908] - ASoC: soc_sdw_utils: remove cs42l43 component_name (Jaroslav Kysela) [RHEL-118908] - MAINTAINERS: Adjust to the new HD-audio driver paths (Jaroslav Kysela) [RHEL-118908] - MAINTAINERS: Add Vincenzo Frascino as Xilinx Sound Driver Maintainer (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4-pcm: fix delay calculation when DSP resamples (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4-pcm: fix start offset calculation for chain DMA (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4-pcm: Fix incorrect comparison with number of tdm_slots (Jaroslav Kysela) [RHEL-118908] - arm64: dts: imx8-ss-audio: add fallback compatible string fsl,imx6ull-esai for esai (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Fix mute led for HP Laptop 15-dw4xx (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: intel-dsp-config: Prevent SEGFAULT if ACPI_HANDLE() is NULL (Jaroslav Kysela) [RHEL-118908] - ALSA: usb: qcom: Fix false-positive address space check (Jaroslav Kysela) [RHEL-118908] - ASoC: rt5682s: Adjust SAR ADC button mode to fix noise issue (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: PTL: Add entry for HDMI-In capture support to non-I2S codec boards. (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: acp: Fix incorrect retrival of acp_chip_info (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: sof_sdw: use PRODUCT_FAMILY for Fatcat series (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: sc8280xp: Fix sound card driver name match data for QCS8275 (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Fix volume control on Lenovo Thinkbook 13x Gen 4 (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Support Lenovo Thinkbook 13x Gen 5 (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: cs35l41: Support Lenovo Thinkbook 13x Gen 5 (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Add ALC295 Dell TAS2781 I2C fixup (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/tas2781: Fix a potential race condition that causes a NULL pointer in case no efi.get_variable exsits (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: sc8280xp: Enable DAI format configuration for MI2S interfaces (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: q6apm-lpass-dais: Fix missing set_fmt DAI op for I2S (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: audioreach: Fix lpaif_type configuration for the I2S interface (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: catpt: Expose correct bit depth to userspace (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/tas2781: Fix the order of TAS2781 calibrated-data (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: lpass-wsa-macro: Fix speaker quality distortion (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: lpass-rx-macro: Fix playback quality distortion (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Reorder members of hide struct to remove holes (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Fix return value in detected_mode_handler() (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Fix return value in sdca_regmap_mbq_size() (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: q6apm-lpass-dais: Fix NULL pointer dereference if source graph failed (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: amd_sdw: Add quirks for some new Dell laptops (Jaroslav Kysela) [RHEL-118908] - ALSA: docs: Remove 3rd person singular s in *to indicate* (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: Intel: hda-stream: Fix incorrect variable used in error message (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: imx: Fix devm_ioremap_resource check (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Add quirk for incorrect function types for 3 systems (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: acp: Adjust pdm gain value (Jaroslav Kysela) [RHEL-118908] - ASoC: codec: sma1307: Fix memory corruption in sma1307_setting_loaded() (Jaroslav Kysela) [RHEL-118908] - ASoC: wm8974: Correct PLL rate rounding (Jaroslav Kysela) [RHEL-118908] - ASoC: wm8940: Correct PLL rate rounding (Jaroslav Kysela) [RHEL-118908] - ASoC: wm8940: Correct typo in control name (Jaroslav Kysela) [RHEL-118908] - ASoC: rt712: avoid skipping the blind write (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/hdmi: Add pin fix for another HP EliteDesk 800 G4 model (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire-motu: drop EPOLLOUT from poll return values as write is not supported (Jaroslav Kysela) [RHEL-118908] - ALSA: docs: Add documents for recently changes in snd-usb-audio (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Add mute TLV for playback volumes on more devices (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Avoid binding with SOF for SKL/KBL platforms (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: move mixer_quirks' min_mute into common quirk (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Fix headset mic for TongFang X6[AF]R5xxY (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/hdmi: Restore missing HDMI codec entries (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: idt821034: fix wrong log in idt821034_chip_direction_output() (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: intel-dsp-config: Select SOF driver on MTL Chromebooks (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Add mute TLV for playback volumes on some devices (Jaroslav Kysela) [RHEL-118908] - arm64: dts: imx8mq-evk: support more sample rates for wm8524 card (Jaroslav Kysela) [RHEL-118908] - arm64: dts: imx8mm-evk: support more sample rates for wm8524 card (Jaroslav Kysela) [RHEL-118908] - arm64: dts: imx8mn-evk: support more sample rates for wm8524 card (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Use correct sub-type for UAC3 feature unit validation (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: Minor whitespace cleanup in example (Jaroslav Kysela) [RHEL-118908] - ALSA: timer: fix ida_free call while not allocated (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Audio disappears on HP 15-fc000 after warm boot again (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Fix headset mic on ASUS Zenbook 14 (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: ES9389: Modify the standby configuration (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Fix size validation in convert_chmap_v3() (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/tas2781: Add name prefix tas2781 for tas2781's dvc_tlv and amp_vol_tlv (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Add support for HP EliteBook x360 830 G6 and EliteBook 830 G6 (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/tas2781: Normalize the volume kcontrol name (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Validate UAC3 cluster segment descriptors (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Validate UAC3 power domain descriptors, too (Jaroslav Kysela) [RHEL-118908] - Revert "ALSA: hda: Add ASRock X670E Taichi to denylist" (Jaroslav Kysela) [RHEL-118908] - ALSA: azt3328: Put __maybe_unused for inline functions for gameport (Jaroslav Kysela) [RHEL-118908] - ASoC: tas2781: Normalize the volume kcontrol name (Jaroslav Kysela) [RHEL-118908] - ASoC: stm: stm32_i2s: Fix calc_clk_div() error handling in determine_rate() (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: Call strscpy() with correct size argument (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Fix headset mic on HONOR BRB-X (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Add Framework Laptop 13 (AMD Ryzen AI 300) to quirks (Jaroslav Kysela) [RHEL-118908] - ASoC: tas2781: Fix spelling mistake "dismatch" -> "mismatch" (Jaroslav Kysela) [RHEL-118908] - ASoC: rt1320: fix random cycle mute issue (Jaroslav Kysela) [RHEL-118908] - ASoC: rt721: fix FU33 Boost Volume control not working (Jaroslav Kysela) [RHEL-118908] - ASoC: generic: tidyup standardized ASoC menu for generic (Jaroslav Kysela) [RHEL-118908] - ASoC: codec: sma1307: replace spelling mistake with new error message (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: tx-macro: correct tx_macro_component_drv name (Jaroslav Kysela) [RHEL-118908] - ASoC: fsl_sai: replace regmap_write with regmap_update_bits (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Restrict prompt only for CONFIG_EXPERT (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/hdmi: Restrict prompt only for CONFIG_EXPERT (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/cirrus: Restrict prompt only for CONFIG_EXPERT (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/ca0132: Fix missing error handling in ca0132_alt_select_out() (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: Intel: hda-sdw-bpt: fix SND_SOF_SOF_HDA_SDW_BPT dependencies (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/tas2781: Support L"SmartAmpCalibrationData" to save calibrated data (Jaroslav Kysela) [RHEL-118908] - ALSA: intel_hdmi: Fix off-by-one error in __hdmi_lpe_audio_probe() (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: add LG gram 16Z90R-A to alc269 fixup table (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Don't use printk_ratelimit for debug prints (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: sof_sdw: Add quirk for Alienware Area 51 (2025) 0CCC SKU (Jaroslav Kysela) [RHEL-118908] - ASoC: tas2781: Fix the wrong step for TLV on tas2781 (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: acp: Add SoundWire SOF machine driver support for acp7.2 platform (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: acp: Add SoundWire legacy machine driver support for acp7.2 platform (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: ps: Add SoundWire pci and dma driver support for acp7.2 platform (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: amd: Add sof audio support for acp7.2 platform (Jaroslav Kysela) [RHEL-118908] - ALSA: usb: scarlett2: Fix missing NULL check (Jaroslav Kysela) [RHEL-118908] - mips: Update HD-audio configs again (Jaroslav Kysela) [RHEL-118908] - LoongArch: Update HD-audio codec configs (Jaroslav Kysela) [RHEL-118908] - arm: Update HD-audio configs again (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Add DSD support for Comtrue USB Audio device (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Enable drivers as default (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/cirrus: Enable drivers as default (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/hdmi: Enable drivers as default (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: avs: Fix uninitialized pointer error in probe() (Jaroslav Kysela) [RHEL-118908] - ASoC: wm8962: Clear master mode when enter runtime suspend (Jaroslav Kysela) [RHEL-118908] - mfd: Remove redundant pm_runtime_mark_last_busy() calls (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek - Fix mute LED for HP Victus 16-d1xxx (MB 8A26) (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek - Fix mute LED for HP Victus 16-s0xxx (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Fix the wrong register was used for DVC of TAS2770 (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: amd: acp-loader: Use GFP_KERNEL for DMA allocations in resume context (Jaroslav Kysela) [RHEL-118908] - ALSA: scarlett2: Add retry on -EPROTO from scarlett2_usb_tx() (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek - Fix mute LED for HP Victus 16-r1xxx (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: Add acpi_match_table for aw88399 driver (Jaroslav Kysela) [RHEL-118908] - ASoC: imx-card: Add WM8524 support (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: atmel,at91-ssc: add microchip,sam9x7-ssc (Jaroslav Kysela) [RHEL-118908] - ASoC: fsl_xcvr: get channel status data with firmware exists (Jaroslav Kysela) [RHEL-118908] - ASoC: fsl_xcvr: get channel status data when PHY is not exists (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Add support for -cn- value properties (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Fix some holes in the regmap readable/writeable helpers (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Add TAS2770 support (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: sm8250: Add Fairphone 4 soundcard compatible (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: qcom,sm8250: Add Fairphone 4 sound card (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: qcom,q6afe: Document q6usb subnode (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Fix implicit cast from le16 (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Check devm_mutex_init() return value (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Shrink detected_mode_handler() stack frame (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: add route by the number of input pins in MU entity (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Add support for ASUS Commercial laptops using CS35L41 HDA (Jaroslav Kysela) [RHEL-118908] - soundwire: amd: Add support for acp7.2 platform (Jaroslav Kysela) [RHEL-118908] - soundwire: stream: restore params when prepare ports fail (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: sof_rt5682: Add HDMI-In capture with rt5682 support for PTL. (Jaroslav Kysela) [RHEL-118908] - ASoC: codec: tlv320aic32x4: Fix reset GPIO check (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: qcom,lpass-va-macro: Define clock-names in top-level (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Add hw_params() helper function (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Add a helper to get the SoundWire port number (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Add helper to add DAI constraints (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dai: Add private data to snd_soc_dai (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Move SDCA search functions and export (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Remove overly chatty input pin list warning (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Avoid use of uninitialised local name variable (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Fix off by one error in IRQ bound check (Jaroslav Kysela) [RHEL-118908] - mips: loongson3_defconfig: Update HD-audio configs (Jaroslav Kysela) [RHEL-118908] - arm: multi_v7_defconfig: Update HD-audio configs (Jaroslav Kysela) [RHEL-118908] - ASoC: stm: stm32_sai_sub: convert from round_rate() to determine_rate() (Jaroslav Kysela) [RHEL-118908] - ASoC: stm: stm32_i2s: convert from round_rate() to determine_rate() (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: qdsp6: q6dsp-lpass-clocks: convert from round_rate() to determine_rate() (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: rt5682s: convert from round_rate() to determine_rate() (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: rt5682: convert from round_rate() to determine_rate() (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: da7219: convert from round_rate() to determine_rate() (Jaroslav Kysela) [RHEL-118908] - ASoC: fsl-asoc-card: add sysclk_ratio for calculate sysclk frequency (Jaroslav Kysela) [RHEL-118908] - ASoC: codec: tlv320aic32x4: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-118908] - ASoC: codec: tlv320aic32x4: Sort headers alphabetically (Jaroslav Kysela) [RHEL-118908] - ASoC: codec: tlv320aic32x4: Drop aic32x4_pdata usage (Jaroslav Kysela) [RHEL-118908] - ASoC: samsung: tobermory: don't set dapm->bias_level directly (Jaroslav Kysela) [RHEL-118908] - ASoC: samsung: littlemill: don't set dapm->bias_level directly (Jaroslav Kysela) [RHEL-118908] - ASoC: samsung: speyside: don't set dapm->bias_level directly (Jaroslav Kysela) [RHEL-118908] - ASoC: samsung: bell: don't set dapm->bias_level directly (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: set bias_level if snd_soc_dapm_set_bias_level() was successed (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Pull HID and IRQ into the primary SDCA module (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Kconfig/Makefile fixups (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/cirrus: Split to cs420x and cs421x drivers (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/cs8409: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/conexant: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Return the codec init error properly at snd_hda_codec_build_controls() (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/senary: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Drop superfluous driver->ops NULL checks (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/si3054: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/hdmi: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Drop old codec binding method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/hdmi: Split vendor codec drivers (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/cmedia: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/via: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Split Realtek HD-audio codec driver (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/sigmatel: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Move codec drivers into sound/hda/codecs directory (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/ca0132: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Move CONFIG_SND_HDA_PREALLOC_SIZE into sound/hda/common (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Move controller drivers into sound/hda/controllers directory (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Move common codec driver into sound/hda/common directory (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Introduce hda_codec_driver ops (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/generic: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/analog: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/ca0110: Rewrite to new probe method (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Move widget capability macros into hdaudio.h (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Move HD-audio core stuff into sound/hda/core (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Copy string more safely (Jaroslav Kysela) [RHEL-118908] - ALSA: core: Copy string more safely (Jaroslav Kysela) [RHEL-118908] - ALSA: pdaudiocf: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: vxpocket: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ppc: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: sh: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: sparc: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: spi: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: synth: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: 6fire: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: line6: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: usx2y: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ua101: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ac97: Copy string more safely (Jaroslav Kysela) [RHEL-118908] - ALSA: cmipci: Copy string more safely (Jaroslav Kysela) [RHEL-118908] - ALSA: sonicvibes: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: trident: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: via82xx: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ymfpci: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: sis7019: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: oxygen: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: pcxhr: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: riptide: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: rme32: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: rme96: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: hdsp: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: hdspm: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: rme9652: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: intel8x0: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: korg1212: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: lola: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: lx6464es: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: maestro3: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: mixart: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: nm256: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: emu10k1: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ens1370: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: es1938: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: es1968: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: fm801: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ice1712: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ice1724: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: cs4281: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: cs46xx: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: cs5530: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: cs5535audio: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ctxfi: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: echoaudio: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: au88x0: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: aw2: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: azt3328: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: bt87x: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ca0106: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: cmipci: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ad1889: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ak4531: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ali5451: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: als300: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: als4000: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: asihpi: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: atiixp: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: sscape: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: wavefront: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: wss: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: mips: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: parisc: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ac97: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: galaxy: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: gus: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: msnd: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: opl3sa2: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: opti9xx: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: sc6000: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: adlib: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: als100: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: cmi8328: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: cmi8330: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: cs423x: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: es1688: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: es18xx: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: ad1816a: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire: tascam: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire: oxfw: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire: motu: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire: isight: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire: fireworks: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire: fireface: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire: digi00x: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire: dice: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: firewire: bebob: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: pcsp: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: portman2x4: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: serial-generic: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: serial-u16550: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: virmidi: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: vx: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: control: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: rawmidi: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: seq: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: mpu401: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: opl3: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: opl4: Use safer strscpy() instead of strcpy() (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: fix HID dependency (Jaroslav Kysela) [RHEL-118908] - ALSA: echoaudio: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - ASoC: sdw_utils: Add missed component_name strings for speaker amps (Jaroslav Kysela) [RHEL-118908] - ASoC: img: Imagination Technologies sound should depend on MIPS (Jaroslav Kysela) [RHEL-118908] - riscv: defconfig: Remove CONFIG_SND_SOC_STARFIVE=m (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: soc-acpi-intel-lnl-match: add rt1320_l12_rt714_l0 support (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: soc-acpi-intel-ptl-match: add support ptl-rt721-l0 (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: soc-acpi: Add entry for HDMI_In capture support in PTL match table (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: soc-acpi: Add entry for sof_es8336 in PTL match table. (Jaroslav Kysela) [RHEL-118908] - ASoC: rt700: don't set dapm->bias_level (Jaroslav Kysela) [RHEL-118908] - ASoC: rt715: don't set dapm->bias_level (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: add prefix on soc_dapm_dev_attrs (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: add prefix on dapm_xxx_event() (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: add prefix on dapm_mark_endpoints_dirty() (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: use common name for dapm (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: use component instead of cmpnt (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: reordering header definitions (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: reordering function definitions (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: remove snd_soc_dapm_weak_routes() (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: remove snd_soc_dapm_nc_pin[_unlocked]() (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: remove EXPORT_SYMBOL_GPL() for snd_soc_dapm_free() (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-dapm: remove unnecessary definition (Jaroslav Kysela) [RHEL-118908] - ALSA: mts64: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Remove redundant pm_runtime_mark_last_busy() calls (Jaroslav Kysela) [RHEL-118908] - ALSA: intel_hdmi: Remove redundant pm_runtime_mark_last_busy() calls (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: add MODULE_FIRMWARE for cs35l41/cs35l56 (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/tas2781: Add bus name in device name check (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: Remove redundant pm_runtime_mark_last_busy() calls (Jaroslav Kysela) [RHEL-118908] - ASoC: component: Remove redundant pm_runtime_mark_last_busy() calls (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: Remove redundant pm_runtime_mark_last_busy() calls (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: Remove redundant pm_runtime_mark_last_busy() calls (Jaroslav Kysela) [RHEL-118908] - ASoC: atmel: Remove redundant pm_runtime_mark_last_busy() calls (Jaroslav Kysela) [RHEL-118908] - ASoC: codec: rockchip_sai: Remove including of_gpio.h (Jaroslav Kysela) [RHEL-118908] - ASoC: Use of_reserved_mem_region_to_resource() for "memory-region" (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Add device entry for QEMU (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Remove old commented out sanity check (Jaroslav Kysela) [RHEL-118908] - ALSA: mtpav: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - ASoC: fsl_mqs: rename system manager indices for i.MX95 (Jaroslav Kysela) [RHEL-118908] - ASoC: fsl_mqs: Distinguish different modules by system manager indices (Jaroslav Kysela) [RHEL-118908] - ALSA: pcmtest: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: sc8280xp: Add support for QCS8275 (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: qcom,sm8250: Add QCS8275 sound card (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: acp: Enable acp7.2 platform based DMIC support in machine driver (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: acp: Enable I2S support for acp7.2 based platforms (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: acp: Add legacy driver support acp7.2 based platforms (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Add some initial IRQ handlers (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Generic interrupt support (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Add flag for unused IRQs (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: Minor selected/detected mode control fixups (Jaroslav Kysela) [RHEL-118908] - MAINTAINERS: Add SDCA maintainers entry (Jaroslav Kysela) [RHEL-118908] - ALSA: dummy: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: hrtimer: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: timer: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: Add calibration function to aw88399 chip (Jaroslav Kysela) [RHEL-118908] - soundwire: debugfs: move debug statement outside of error handling (Jaroslav Kysela) [RHEL-118908] - soundwire: intel_auxdevice: add rt721 codec to wake_capable_list (Jaroslav Kysela) [RHEL-118908] - soundwire: Correct some property names (Jaroslav Kysela) [RHEL-118908] - ASoC: sdw_utils: generate combined spk components string (Jaroslav Kysela) [RHEL-118908] - ASoC: sdw_utils: add component_name string to dai_info (Jaroslav Kysela) [RHEL-118908] - ASoC: hisilicon: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: uniphier: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: starfive: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: mediatek: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: rockchip: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: loongson: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: kirkwood: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: samsung: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: generic: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: renesas: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: xtensa: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: xilinx: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: jz4740: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: google: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: cirrus: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: ux500: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: tegra: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: spear: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: sunxi: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: intel: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: atmel: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: apple: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: meson: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: sprd: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: sdca: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: au1x: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: sof: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: stm: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: sti: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: mxs: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: pxa: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: img: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: fsl: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: dwc: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: bcm: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: adi: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: ti: Standardize ASoC menu (Jaroslav Kysela) [RHEL-118908] - ASoC: wm8524: enable constraints when sysclk is configured. (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Disable jack polling at shutdown (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Disable codec runtime PM when jack polling is enabled (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: Handle the jack polling always via a work (Jaroslav Kysela) [RHEL-118908] - ALSA: mixer_oss: Remove deprecated strcpy() function calls (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: amd: add alternate machines for ACP7.0 and ACP7.1 platforms (Jaroslav Kysela) [RHEL-118908] - ASoC: amd: acp: add soundwire machine for ACP7.0 and ACP7.1 sof stack (Jaroslav Kysela) [RHEL-118908] - ASoC: hdac_hdmi: Rate limit logging on connection and disconnection (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: add a HID device for HIDE entity (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd939x: Add defines for major/minor version decoding (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd939x: Use simple defines for chipid register value (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd938x: Use simple defines for chipid register value (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd937x: Use simple defines for chipid register value (Jaroslav Kysela) [RHEL-118908] - ALSA: intel8x0: Fix incorrect codec index usage in mixer for ICH4 (Jaroslav Kysela) [RHEL-118908] - HID: core: Add bus define for SoundWire bus (Jaroslav Kysela) [RHEL-118908] - ASoC: SDCA: add support for HIDE entity properties and HID descriptor/report (Jaroslav Kysela) [RHEL-118908] - ALSA: aloop: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/realtek: Fixup ft alc257 rename alc3328 (Jaroslav Kysela) [RHEL-118908] - ALSA: emu10k1: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4-pcm: Enable delay reporting for ChainDMA streams (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: Intel: hda: Do not probe Soundwire in nocodec mode (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4-topology: Add load of ASRC component (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: pcm: Reverse check for prepared stream in sof_pcm_hw_params() (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: topology: Parse the dapm_widget_tokens in case of DSPless mode (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: pcm: Remove local create_page_table() wrapper function (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4-pcm: Look for best matching hw_config for SSP (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4-pcm: Harmonize sof_ipc4_set_pipeline_state() dbg print (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4-pcm: Pipe instances to dev_dbg in multi_pipeline_state() (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4: Add sof_ipc4_pipeline_state_str() for debugging (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4/Intel: Add support for library restore firmware functionality (Jaroslav Kysela) [RHEL-118908] - ASoC: SOF: ipc4-priv: Add kernel doc for fw_context_save of sof_ipc4_fw_data (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: sof_sdw: Implement add_dai_link to filter HDMI PCMs (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: skl_hda_dsp_generic: Implement add_dai_link to filter HDMI PCMs (Jaroslav Kysela) [RHEL-118908] - ASoC: core: Check for rtd == NULL in snd_soc_remove_pcm_runtime() (Jaroslav Kysela) [RHEL-118908] - ASoC: topology: Do not call snd_soc_remove_pcm_runtime() for ignored links (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: cirrus,cs42xx8: add 'port' property (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/conexant: Renaming the codec with device ID 0x1f86 and 0x1f87 (Jaroslav Kysela) [RHEL-118908] - ASoC: tegra: AHUB: Remove unneeded semicolon (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - firmware: cs_dsp: Remove unused struct list_head from cs_dsp_coeff_ctl (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/tas2781: Add compatible for hardware id TIAS2781 and TXNW2781 (Jaroslav Kysela) [RHEL-118908] - ALSA: pcm: Convert snd_pcm_sync_ptr() to user_access_begin/user_access_end() (Jaroslav Kysela) [RHEL-118908] - ALSA: pcm: Replace [audio_]tstamp_[n]sec by struct __snd_timespec in struct snd_pcm_mmap_status32 (Jaroslav Kysela) [RHEL-118908] - ALSA: pcm: Convert SNDRV_PCM_IOCTL_SYNC_PTR to user_access_begin/user_access_end() (Jaroslav Kysela) [RHEL-118908] - ALSA: pcm: refactor copy from/to user in SNDRV_PCM_IOCTL_SYNC_PTR (Jaroslav Kysela) [RHEL-118908] - ASoC: hdmi-codec: use SND_JACK_AVOUT as jack status (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-ops-test: dynamically allocate struct snd_ctl_elem_value (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Fix build with CONFIG_INPUT=n (Jaroslav Kysela) [RHEL-118908] - ALSA: hda: cs35l41: Add support for center channel in CS35L41 HDA (Jaroslav Kysela) [RHEL-118908] - ASoC: mediatek: mt8183-afe-pcm: use local `dev` pointer in driver callbacks (Jaroslav Kysela) [RHEL-118908] - ASoC: mediatek: mt8173-afe-pcm: use local `dev` pointer in driver callbacks (Jaroslav Kysela) [RHEL-118908] - ASoC: mediatek: mt8183-afe-pcm: Support >32 bit DMA addresses (Jaroslav Kysela) [RHEL-118908] - ASoC: mediatek: use reserved memory or enable buffer pre-allocation (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: mt8192-afe-pcm: Allow specifying reserved memory region (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: mt8186-afe-pcm: Allow specifying reserved memory region (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: mt8173-afe-pcm: Allow specifying reserved memory region (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: mt8173-afe-pcm: Add power domain (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: Convert MT8173 AFE binding to dt-schema (Jaroslav Kysela) [RHEL-118908] - ASoC: tas2781: Move the "include linux/debugfs.h" into tas2781.h (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/ca0132: Use const char * for strings (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Convert comma to semicolon (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/ca0132: Fix buffer overflow in add_tuning_control (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/ca0132: Fix using plain integer as NULL pointer in add_tuning_control (Jaroslav Kysela) [RHEL-118908] - ALSA: mips/sgio2audio: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-118908] - soundwire: update Intel BPT message length limitation (Jaroslav Kysela) [RHEL-118908] - soundwire: intel_ace2.x: Use str_read_write() helper (Jaroslav Kysela) [RHEL-118908] - soundwire: qcom: demote probe registration printk (Jaroslav Kysela) [RHEL-118908] - soundwire: Move handle_nested_irq outside of sdw_dev_lock (Jaroslav Kysela) [RHEL-118908] - ASoC: cs42l43: Remove unnecessary work functions (Jaroslav Kysela) [RHEL-118908] - MAINTAINERS: Remove Sanyog Kale as reviewer on SoundWire (Jaroslav Kysela) [RHEL-118908] - ASoC: renesas: msiof: Convert to (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: Add support for Richtek RTQ9124 (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: rt9123: Append RTQ9124 description (Jaroslav Kysela) [RHEL-118908] - ALSA: pcm: Rewrite recalculate_boundary() to avoid costly loop (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/ca0132: Enable hardware band EQ for Sound Blaster Core3D (Jaroslav Kysela) [RHEL-118908] - ALSA: hda/tas2781: Add missed brace and hardware id re-order (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Fix code alignment in mixer_quirks (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Fix whitespace & blank line issues in mixer_quirks (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Avoid precedence issues in mixer_quirks macros (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Fix block comments in mixer_quirks (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Drop unnecessary parentheses in mixer_quirks (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Avoid multiple assignments in mixer_quirks (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Simplify NULL comparison in mixer_quirks (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Remove unneeded wmb() in mixer_quirks (Jaroslav Kysela) [RHEL-118908] - ALSA: usb-audio: Add mixer quirk for Sony DualSense PS5 (Jaroslav Kysela) [RHEL-118908] - ASoC: tas2781: Drop the unnecessary symbol imply (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: covert mxs-audio-sgtl5000.txt to yaml format (Jaroslav Kysela) [RHEL-118908] - ASoC: hdac_hdmi: remove hdac_hdmi_jack[_port]_init() (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: lpass: Drop unused AIF_INVALID first DAI identifier (Jaroslav Kysela) [RHEL-118908] - ASoC: Intel: avs: Add rt5640 machine board (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: rt5640: Retry DEVICE_ID verification (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: rt5640: Drop dummy register names (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: tas57xx: add tas5753 compatibility (Jaroslav Kysela) [RHEL-118908] - ASoC: tas571x: add support for tas5753 (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd939x: Add VDD_PX supply (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: qcom,wcd939x: Document missing VDD_PX supply (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd939x: Simplify return from devm_gpiod_get() error (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd939x: Simplify with devm_regulator_bulk_get_enable() (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd937x: Simplify with devm_regulator_bulk_get_enable() (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd938x: Simplify with devm_regulator_bulk_get_enable() (Jaroslav Kysela) [RHEL-118908] - ASoC: remove component->id (Jaroslav Kysela) [RHEL-118908] - ASoC: soc-core: save ID if param was set in fmt_single_name() (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: use drvdata instead of component to keep id (Jaroslav Kysela) [RHEL-118908] - ASoC: imx-card: Use helper function for_each_child_of_node_scoped() (Jaroslav Kysela) [RHEL-118908] - ASoC: meson: Use helper function for_each_child_of_node_scoped() (Jaroslav Kysela) [RHEL-118908] - ASoC: renesas: Use helper function for_each_child_of_node_scoped() (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd939x: Drop unused 'struct wcd939x_priv' fields (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd938x: Drop unused variant field (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd938x: Drop unused 'struct wcd938x_priv' fields (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd937x: Drop unused 'struct wcd937x_priv' fields (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd934x: Drop unused num_rx_port/num_tx_port fields (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: wcd9335: Drop unused sido_input_src field (Jaroslav Kysela) [RHEL-118908] - ASoC: codecs: Constify regmap configuration static variables (Jaroslav Kysela) [RHEL-118908] - ASoC: fsl: Constify reg_default array (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: sm8250: Add Fairphone 5 soundcard compatible (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: sm8250: add DisplayPort Jack support (Jaroslav Kysela) [RHEL-118908] - ASoC: qcom: sm8250: set card driver name from match data (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: fsl,sai: Add i.MX94 support (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: sun4i-a10-codec: add hp-det-gpios (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: tas2770: add compatible for TAS5770L (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: tas27xx: add compatible for SN012776 (Jaroslav Kysela) [RHEL-118908] - dt-bindings: sound: convert ICS-43432 binding to YAML (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: fsl,imx-asrc: Document audio graph port (Jaroslav Kysela) [RHEL-118908] - dt-bindings: Document Tegra114 HDA support (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: everest,es8328: Require reg property (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: everest,es8328: Mark ES8388 compatible with ES8328 (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: xlnx,spdif: Convert to json-schema (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: xlnx,audio-formatter: Convert to json-schema (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: xlnx,i2s: Convert to json-schema (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: fsl,imx-asrc: Reference common DAI properties (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: fsl,easrc: Reference common DAI properties (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: atmel-at91sam9g20ek: convert to json-schema (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: wlf,wm8960: add 'port' property (Jaroslav Kysela) [RHEL-118908] - dt-bindings: ASoC: rockchip: Add compatible for RK3588 SPDIF (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: atmel,at91-ssc: Convert to YAML format (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: realtek,rt5645: Fix CPVDD voltage comment (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: stm32: add missing port property (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: maxim,max98390: Reference common DAI properties (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: everest,es8326: Document interrupt property (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: fsl-esai: allow fsl,imx8qm-esai fallback to fsl,imx6ull-esai (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: sprd,sc9860-mcdt: convert to YAML (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: sprd,pcm-platform: convert to YAML (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: fsl_spdif: Document imx6sl/sx compatible fallback (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: Add CS42L84 codec (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: qcom: Add SM8750 LPASS macro codecs (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: everest,es8328: Document audio graph port (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: rockchip,rk3036-codec: convert to yaml (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: Deprecate {hp,mic}-det-gpio (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: mt6359: Update generic node name and dmic-mode (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: realtek,rt5640: Convert to dtschema (Jaroslav Kysela) [RHEL-118908] - ASoC: dt-bindings: fsl-esai: Add power-domains for fsl,imx8qm-esai (Jaroslav Kysela) [RHEL-118908] - clone_private_mnt(): make sure that caller has CAP_SYS_ADMIN in the right userns (CKI Backport Bot) [RHEL-129280] {CVE-2025-38499} - mm: slub: avoid wake up kswapd in set_track_prepare (Audra Mitchell) [RHEL-125525] {CVE-2025-39843} - KVM: s390: improve interrupt cpu for wakeup (CKI Backport Bot) [RHEL-121782] - powerpc/kdump: Fix size calculation for hot-removed memory ranges (Mamatha Inamdar) [RHEL-126704] - idpf: fix possible vport_config NULL pointer deref in remove (Michal Schmidt) [RHEL-99641] - idpf: cleanup remaining SKBs in PTP flows (Michal Schmidt) [RHEL-99641] - idpf: fix mismatched free function for dma_alloc_coherent (Michal Schmidt) [RHEL-99641] - idpf: add HW timestamping statistics (Michal Schmidt) [RHEL-99641] - idpf: add support for nointerrupt queues (Michal Schmidt) [RHEL-99641] - idpf: remove SW marker handling from NAPI (Michal Schmidt) [RHEL-99641] - idpf: add 4-byte completion descriptor definition (Michal Schmidt) [RHEL-99641] - idpf: use a saner limit for default number of queues to allocate (Michal Schmidt) [RHEL-99641] - idpf: fix Rx descriptor ready check barrier in splitq (Michal Schmidt) [RHEL-99641] - idpf: do not linearize big TSO packets (Michal Schmidt) [RHEL-99641] - idpf: fix UAF in RDMA core aux dev deinitialization (Michal Schmidt) [RHEL-99641] - idpf: remove obsolete stashing code (Michal Schmidt) [RHEL-99641] - idpf: stop Tx if there are insufficient buffer resources (Michal Schmidt) [RHEL-99641] - idpf: replace flow scheduling buffer ring with buffer pool (Michal Schmidt) [RHEL-99641] - idpf: simplify and fix splitq Tx packet rollback error path (Michal Schmidt) [RHEL-99641] - idpf: improve when to set RE bit logic (Michal Schmidt) [RHEL-99641] - idpf: add support for Tx refillqs in flow scheduling mode (Michal Schmidt) [RHEL-99641] - idpf: preserve coalescing settings across resets (Michal Schmidt) [RHEL-99641] - idpf: add cross timestamping (Michal Schmidt) [RHEL-99641] - idpf: add flow steering support (Michal Schmidt) [RHEL-99641] - virtchnl2: add flow steering support (Michal Schmidt) [RHEL-99641] - virtchnl2: rename enum virtchnl2_cap_rss (Michal Schmidt) [RHEL-99641] - idpf: implement get LAN MMIO memory regions (Michal Schmidt) [RHEL-99641] - idpf: implement IDC vport aux driver MTU change handler (Michal Schmidt) [RHEL-99641] - idpf: implement remaining IDC RDMA core callbacks and handlers (Michal Schmidt) [RHEL-99641] - idpf: implement RDMA vport auxiliary dev create, init, and destroy (Michal Schmidt) [RHEL-99641] - idpf: implement core RDMA auxiliary dev create, init, and destroy (Michal Schmidt) [RHEL-99641] - idpf: use reserved RDMA vectors from control plane (Michal Schmidt) [RHEL-99641] - idpf: return 0 size for RSS key if not supported (Michal Schmidt) [RHEL-99641] - idpf: avoid mailbox timeout delays during reset (Michal Schmidt) [RHEL-99641] - idpf: fix a race in txq wakeup (Michal Schmidt) [RHEL-99641] - idpf: add support for Rx timestamping (Michal Schmidt) [RHEL-99641] - idpf: add Tx timestamp flows (Michal Schmidt) [RHEL-99641] - idpf: add Tx timestamp capabilities negotiation (Michal Schmidt) [RHEL-99641] - idpf: add PTP clock configuration (Michal Schmidt) [RHEL-99641] - idpf: add mailbox access to read PTP clock time (Michal Schmidt) [RHEL-99641] - idpf: negotiate PTP capabilities and get PTP clock (Michal Schmidt) [RHEL-99641] - idpf: move virtchnl structures to the header file (Michal Schmidt) [RHEL-99641] - virtchnl: add PTP virtchnl definitions (Michal Schmidt) [RHEL-99641] - idpf: add initial PTP support (Michal Schmidt) [RHEL-99641] - idpf: change the method for mailbox workqueue allocation (Michal Schmidt) [RHEL-99641] - idpf: remove unreachable code from setting mailbox (Michal Schmidt) [RHEL-99641] - idpf: assign extracted ptype to struct libeth_rqe_info field (Michal Schmidt) [RHEL-99641] - idpf: fix idpf_vport_splitq_napi_poll() (Michal Schmidt) [RHEL-99641] - be2net: pass wrb_params in case of OS2BMC (Mohammad Heib) [RHEL-96555 RHEL-99249] - be2net: Use correct byte order and format string for TCP seq and ack_seq (Mohammad Heib) [RHEL-96555 RHEL-99249] - s390/stp: Default to enabled (Mete Durlu) [RHEL-62194] - s390/stp: Remove leap second support (Mete Durlu) [RHEL-62194] - s390/time: Remove in-kernel time steering (Mete Durlu) [RHEL-62194] - s390/sclp: Use monotonic clock in sclp_sync_wait() (Mete Durlu) [RHEL-62194] - s390/smp: Use monotonic clock in smp_emergency_stop() (Mete Durlu) [RHEL-62194] - s390/time: Use monotonic clock in get_cycles() (Mete Durlu) [RHEL-62194] - s390/stp: Remove udelay from stp_sync_clock() (Mete Durlu) [RHEL-62194] - ice: fix NULL pointer dereference in ice_unplug_aux_dev() on reset (Michal Schmidt) [RHEL-127155] - iidc/ice/irdma: Update IDC to support multiple consumers (Michal Schmidt) [RHEL-127155] - ice: Replace ice specific DSCP mapping num with a kernel define (Michal Schmidt) [RHEL-127155] - iidc/ice/irdma: Break iidc.h into two headers (Michal Schmidt) [RHEL-127155] - iidc/ice/irdma: Rename to iidc_* convention (Michal Schmidt) [RHEL-127155] - iidc/ice/irdma: Rename IDC header file (Michal Schmidt) [RHEL-127155] - scsi: qla4xxx: Fix typos in comments (Chris Leech) [RHEL-121668] - scsi: qla4xxx: Prevent a potential error pointer dereference (Chris Leech) [RHEL-121668] - scsi: Revert "scsi: iscsi: Fix HW conn removal use after free" (Chris Leech) [RHEL-121668] - scsi: libiscsi: Initialize iscsi_conn->dd_data only if memory is allocated (Chris Leech) [RHEL-121668] - scsi: qla4xxx: Fix missing DMA mapping error in qla4xxx_alloc_pdu() (Chris Leech) [RHEL-121668] - scsi: iscsi: Fix incorrect error path labels for flashnode operations (Chris Leech) [RHEL-121668] - scsi: qla4xxx: Remove duplicate struct crb_addr_pair (Chris Leech) [RHEL-121668] - scsi: qedi: Remove unused qedi_get_proto_itt() (Chris Leech) [RHEL-121668] - scsi: qedi: Remove unused sysfs functions (Chris Leech) [RHEL-121668] - ata: libata-core: relax checks in ata_read_log_directory() (Tomas Henzl) [RHEL-105431] - ata: libata-sff: drop nth_page() usage within SG entry (Tomas Henzl) [RHEL-105431] - ata: ahci_xgene: Use int type for 'rc' to store error codes (Tomas Henzl) [RHEL-105431] - ata: ahci: Allow ignoring the external/hotplug capability of ports (Tomas Henzl) [RHEL-105431] - ata: libata-scsi: Fix CDL control (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Fix link state check for IDE/PATA ports (Tomas Henzl) [RHEL-105431] - ata: pata_pdc2027x: Remove space before newline and abbreviations (Tomas Henzl) [RHEL-105431] - ata: pata_macio: Remove space before newline (Tomas Henzl) [RHEL-105431] - ata: libata-core: Remove space before newline (Tomas Henzl) [RHEL-105431] - ata: libata-sata: Add link_power_management_supported sysfs attribute (Tomas Henzl) [RHEL-105431] - ata: libata-scsi: Return aborted command when missing sense and result TF (Tomas Henzl) [RHEL-105431] - ata: libata-scsi: Fix ata_to_sense_error() status handling (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Simplify reset operation management (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Remove ata_do_eh() (Tomas Henzl) [RHEL-105431] - ata: pata_rdc: Use registered definition for the RDC vendor (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Make ata_eh_followup_srst_needed() return a bool (Tomas Henzl) [RHEL-105431] - ata: libata-transport: replace scnprintf with sysfs_emit for simple attributes (Tomas Henzl) [RHEL-105431] - ata: libata-eh: use bool for fastdrain in ata_eh_set_pending() (Tomas Henzl) [RHEL-105431] - ata: libata: Introduce ata_port_eh_scheduled() (Tomas Henzl) [RHEL-105431] - ata: libata-core: Rename ata_do_set_mode() (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Rename and make ata_set_mode() static (Tomas Henzl) [RHEL-105431] - ata: libata-core: Make ata_dev_cleanup_cdl_resources() static (Tomas Henzl) [RHEL-105431] - ata: libata-core: Cache the general purpose log directory (Tomas Henzl) [RHEL-105431] - ata: libata_eh: Add debug messages to ata_eh_link_set_lpm() (Tomas Henzl) [RHEL-105431] - ata: libata-core: Reduce the number of messages signaling broken LPM (Tomas Henzl) [RHEL-105431] - ata: ahci: Disallow LPM policy control if not supported (Tomas Henzl) [RHEL-105431] - ata: ahci: Disallow LPM policy control for external ports (Tomas Henzl) [RHEL-105431] - ata: ahci: Disable DIPM if host lacks support (Tomas Henzl) [RHEL-105431] - ata: libata-sata: Disallow changing LPM state if not supported (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Avoid unnecessary resets when revalidating devices (Tomas Henzl) [RHEL-105431] - ata: libata-core: Advertize device support for DIPM and HIPM features (Tomas Henzl) [RHEL-105431] - ata: libata-core: Move device LPM quirk settings to ata_dev_config_lpm() (Tomas Henzl) [RHEL-105431] - ata: libata-core: Introduce ata_dev_config_lpm() (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Move and rename ata_eh_set_lpm() (Tomas Henzl) [RHEL-105431] - ata: ahci: Clarify mobile_lpm_policy description (Tomas Henzl) [RHEL-105431] - ata: libata: Improve LPM policies description (Tomas Henzl) [RHEL-105431] - ata: Fix SATA_MOBILE_LPM_POLICY description in Kconfig (Tomas Henzl) [RHEL-105431] - ata: libata-scsi: Cleanup ata_scsi_offline_dev() (Tomas Henzl) [RHEL-105431] - ata: libata: Remove ATA_DFLAG_ZAC device flag (Tomas Henzl) [RHEL-105431] - ata: ahci: Use correct DMI identifier for ASUSPRO-D840SA LPM quirk (Tomas Henzl) [RHEL-105431] - ata: ahci: Disallow LPM for Asus B550-F motherboard (Tomas Henzl) [RHEL-105431] - ata: ahci: Disallow LPM for ASUSPRO-D840SA motherboard (Tomas Henzl) [RHEL-105431] - ata: ahci: Use correct BIOS build date for ThinkPad W541 quirk (Tomas Henzl) [RHEL-105431] - ata: pata_cs5536: fix build on 32-bit UML (Tomas Henzl) [RHEL-105431] - ata: libata-acpi: Do not assume 40 wire cable if no devices are enabled (Tomas Henzl) [RHEL-105431] - ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330 (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Keep DIPM disabled while modifying the allowed LPM states (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Rename no_dipm variable to be more clear (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Rename hipm and dipm variables (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Add ata_eh_set_lpm() WARN_ON_ONCE (Tomas Henzl) [RHEL-105431] - ata: libata-eh: Update DIPM comments to reflect reality (Tomas Henzl) [RHEL-105431] - ata: libata: Print if port is external on boot (Tomas Henzl) [RHEL-105431] - ata: libata-scsi: Do not set the INFORMATION field twice for ATA PT (Tomas Henzl) [RHEL-105431] - ata: sata_sx4: Fix spelling mistake "parttern" -> "pattern" (Tomas Henzl) [RHEL-105431] - ata: libata-scsi: Improve CDL control (Tomas Henzl) [RHEL-105431] - ata: libata-scsi: Fix ata_msense_control_ata_feature() (Tomas Henzl) [RHEL-105431] - ata: libata-scsi: Fix ata_mselect_control_ata_feature() return type (Tomas Henzl) [RHEL-105431] - ata: libata-sata: Use BIT() macro to convert tag to bit field (Tomas Henzl) [RHEL-105431] - ata: libata-sata: Simplify sense_valid fetching (Tomas Henzl) [RHEL-105431] - ata: libata-core: Simplify ata_print_version_once (Tomas Henzl) [RHEL-105431] - ata: libata-sata: Save all fields from sense data descriptor (Tomas Henzl) [RHEL-105431] - ata: libata: Remove unused macro definitions (Tomas Henzl) [RHEL-105431] - tools headers x86 cpufeatures: Sync with the kernel sources (Maxim Levitsky) [RHEL-120168] - tools headers x86 svm: Sync svm headers with the kernel sources (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Re-load current, not host, TSC_AUX on #VMEXIT from SEV-ES guest (Maxim Levitsky) [RHEL-120168] - KVM: x86: Add helper to retrieve current value of user return MSR (Maxim Levitsky) [RHEL-120168] - KVM: SEV: Reject non-positive effective lengths during LAUNCH_UPDATE (Maxim Levitsky) [RHEL-120168] - selftests/kvm: remove stale TODO in xapic_state_test (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Handle Intel Atom errata that leads to PMU event overcount (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Validate more arch-events in pmu_counters_test (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Reduce number of "unavailable PMU events" combos tested (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Track unavailable_mask for PMU events as 32-bit value (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add timing_info bit support in vmx_pmu_caps_test (Maxim Levitsky) [RHEL-120168] - KVM: x86: Fix hypercalls docs section number order (Maxim Levitsky) [RHEL-120168] - KVM: x86: Don't treat ENTER and LEAVE as branches, because they aren't (Maxim Levitsky) [RHEL-120168] - KVM: TDX: Fix uninitialized error code for __tdx_bringup() (Maxim Levitsky) [RHEL-120168] - crypto: ccp - Add AMD Seamless Firmware Servicing (SFS) driver (Maxim Levitsky) [RHEL-120168] - crypto: ccp - Add new HV-Fixed page allocation/free API (Maxim Levitsky) [RHEL-120168] - x86/sev: Add new dump_rmp parameter to snp_leak_pages() API (Maxim Levitsky) [RHEL-120168] - Documentation: KVM: Call out that KVM strictly follows the 8254 PIT spec (Maxim Levitsky) [RHEL-120168] - KVM: x86: Use guard() instead of mutex_lock() to simplify code (Maxim Levitsky) [RHEL-120168] - KVM: x86/pmu: Correct typo "_COUTNERS" to "_COUNTERS" (Maxim Levitsky) [RHEL-120168] - KVM: TDX: Reject fully in-kernel irqchip if EOIs are protected, i.e. for TDX VMs (Maxim Levitsky) [RHEL-120168] - x86/kvm: Prefer native qspinlock for dedicated vCPUs irrespective of PV_UNHALT (Maxim Levitsky) [RHEL-120168] - x86/kvm: Make kvm_async_pf_task_wake() a local static helper (Maxim Levitsky) [RHEL-120168] - KVM: TDX: Do not retry locally when the retry is caused by invalid memslot (Maxim Levitsky) [RHEL-120168] - KVM: x86/mmu: Return -EAGAIN if userspace deletes/moves memslot during prefault (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move vector_hashing into lapic.c (Maxim Levitsky) [RHEL-120168] - KVM: x86: Make "lowest priority" helpers local to lapic.c (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move kvm_irq_delivery_to_apic() from irq.c to lapic.c (Maxim Levitsky) [RHEL-120168] - KVM: SEV: Save the SEV policy if and only if LAUNCH_START succeeds (Maxim Levitsky) [RHEL-120168] - x86/tdx: Skip clearing reclaimed pages unless X86_BUG_TDX_PW_MCE is present (Maxim Levitsky) [RHEL-120168] - x86/tdx: Tidy reset_pamt functions (Maxim Levitsky) [RHEL-120168] - x86/tdx: Eliminate duplicate code in tdx_clear_page() (Maxim Levitsky) [RHEL-120168] - kvm: x86: simplify kvm_vector_to_index() (Maxim Levitsky) [RHEL-120168] - KVM: x86: allow CPUID 0xC000_0000 to proceed on Zhaoxin CPUs (Maxim Levitsky) [RHEL-120168] - arch/x86/kvm/ioapic: Remove license boilerplate with bad FSF address (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Skip fastpath emulation on VM-Exit if next RIP isn't valid (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Emulate PERF_CNTR_GLOBAL_STATUS_SET for PerfMonV2 (Maxim Levitsky) [RHEL-120168] - KVM: TDX: Remove redundant __GFP_ZERO (Maxim Levitsky) [RHEL-120168] - KVM: remove redundant __GFP_NOWARN (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Fix an indentation (Maxim Levitsky) [RHEL-120168] - KVM: x86: Don't (re)check L1 intercepts when completing userspace I/O (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Move Intel and AMD module param helpers to x86/processor.h (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Fix signedness issue with vCPU mmap size check (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Sync TPR from LAPIC into VMCB::V_TPR even if AVIC is active (Maxim Levitsky) [RHEL-120168] - selftests: harness: Rename is_signed_type() to avoid collision with overflow.h (Maxim Levitsky) [RHEL-120168] - KVM: SEV: don't check have_run_cpus in sev_writeback_caches() (Maxim Levitsky) [RHEL-120168] - tools headers: Sync KVM headers with the kernel source (Maxim Levitsky) [RHEL-120168] - KVM: x86: use array_index_nospec with indices that come from guest (Maxim Levitsky) [RHEL-120168] - KVM: x86: fix typo "notifer" (Maxim Levitsky) [RHEL-120168] - KVM: x86: Reject KVM_SET_TSC_KHZ VM ioctl when vCPUs have been created (Maxim Levitsky) [RHEL-120168] - x86/apic: Rename 'reg_off' to 'reg' (Maxim Levitsky) [RHEL-120168] - x86/apic: KVM: Move apic_test)vector() to common code (Maxim Levitsky) [RHEL-120168] - x86/apic: KVM: Move lapic set/clear_vector() helpers to common code (Maxim Levitsky) [RHEL-120168] - x86/apic: KVM: Move lapic get/set helpers to common code (Maxim Levitsky) [RHEL-120168] - x86/apic: KVM: Move apic_find_highest_vector() to a common header (Maxim Levitsky) [RHEL-120168] - KVM: x86: Rename lapic set/clear vector helpers (Maxim Levitsky) [RHEL-120168] - KVM: x86: Rename lapic get/set_reg64() helpers (Maxim Levitsky) [RHEL-120168] - KVM: x86: Rename lapic get/set_reg() helpers (Maxim Levitsky) [RHEL-120168] - KVM: x86: Rename find_highest_vector() (Maxim Levitsky) [RHEL-120168] - KVM: x86: Change lapic regs base address to void pointer (Maxim Levitsky) [RHEL-120168] - KVM: x86: Rename VEC_POS/REG_POS macro usages (Maxim Levitsky) [RHEL-120168] - x86/apic: KVM: Deduplicate APIC vector => register+bit math (Maxim Levitsky) [RHEL-120168] - KVM: x86: Remove redundant parentheses around 'bitmap' (Maxim Levitsky) [RHEL-120168] - KVM: x86: Open code setting/clearing of bits in the ISR (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add CONFIG_EVENTFD for irqfd selftest (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Flush cache only on CPUs running SEV guest (Maxim Levitsky) [RHEL-120168] - x86/lib: Add WBINVD and WBNOINVD helpers to target multiple CPUs (Maxim Levitsky) [RHEL-120168] - KVM: x86: Use wbinvd_on_cpu() instead of an open-coded equivalent (Maxim Levitsky) [RHEL-120168] - KVM: SEV: Prefer WBNOINVD over WBINVD for cache maintenance efficiency (Maxim Levitsky) [RHEL-120168] - x86/lib: Add WBNOINVD helper functions (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Remove wbinvd in sev_vm_destroy() (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Convert arch_timer tests to common helpers to pin task (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Test behavior of KVM_X86_DISABLE_EXITS_APERFMPERF (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Expand set of APIs for pinning tasks to a single CPU (Maxim Levitsky) [RHEL-120168] - KVM: x86: Provide a capability to disable APERF/MPERF read intercepts (Maxim Levitsky) [RHEL-120168] - KVM: x86: Replace growing set of *_in_guest bools with a u64 (Maxim Levitsky) [RHEL-120168] - KVM: x86: Advertise support for LKGS (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Add a macro to track which DEBUGCTL bits are host-owned (Maxim Levitsky) [RHEL-120168] - KVM: guest_memfd: Remove redundant kvm_gmem_getattr implementation (Maxim Levitsky) [RHEL-120168] - VFIO: KVM: x86: Drop kvm_arch_{start,end}_assignment() (Maxim Levitsky) [RHEL-120168] - Revert "kvm: detect assigned device via irqbypass manager" (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Apply MMIO Stale Data mitigation if KVM maps MMIO into the guest (Maxim Levitsky) [RHEL-120168] - KVM: x86/mmu: Locally cache whether a PFN is host MMIO when making a SPTE (Maxim Levitsky) [RHEL-120168] - KVM: x86: Avoid calling kvm_is_mmio_pfn() when kvm_x86_ops.get_mt_mask is NULL (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Simplify MSR interception logic for IA32_XSS MSR (Maxim Levitsky) [RHEL-120168] - KVM: x86: Deduplicate MSR interception enabling and disabling (Maxim Levitsky) [RHEL-120168] - KVM: x86/mmu: Defer allocation of shadow MMU's hashed page list (Maxim Levitsky) [RHEL-120168] - KVM: x86: Use kvzalloc() to allocate VM struct (Maxim Levitsky) [RHEL-120168] - KVM: x86/mmu: Dynamically allocate shadow MMU's hashed page list (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add utilities to create eventfds and do KVM_IRQFD (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Assert that eventfd() succeeds in Xen shinfo test (Maxim Levitsky) [RHEL-120168] - KVM: Drop sanity check that per-VM list of irqfds is unique (Maxim Levitsky) [RHEL-120168] - KVM: Disallow binding multiple irqfds to an eventfd with a priority waiter (Maxim Levitsky) [RHEL-120168] - sched/wait: Add a waitqueue helper for fully exclusive priority waiters (Maxim Levitsky) [RHEL-120168] - xen: privcmd: Don't mark eventfd waiter as EXCLUSIVE (Maxim Levitsky) [RHEL-120168] - sched/wait: Drop WQ_FLAG_EXCLUSIVE from add_wait_queue_priority() (Maxim Levitsky) [RHEL-120168] - KVM: Add irqfd to eventfd's waitqueue while holding irqfds.lock (Maxim Levitsky) [RHEL-120168] - KVM: Add irqfd to KVM's list via the vfs_poll() callback (Maxim Levitsky) [RHEL-120168] - assorted variants of irqfd setup: convert to CLASS(fd) (Maxim Levitsky) [RHEL-120168] - KVM: Initialize irqfd waitqueue callback when adding to the queue (Maxim Levitsky) [RHEL-120168] - KVM: Acquire SCRU lock outside of irqfds.lock during assignment (Maxim Levitsky) [RHEL-120168] - KVM: Use a local struct to do the initial vfs_poll() on an irqfd (Maxim Levitsky) [RHEL-120168] - KVM: x86: Rename kvm_set_msi_irq() => kvm_msi_to_lapic_irq() (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Generate GA log IRQs only if the associated vCPUs is blocking (Maxim Levitsky) [RHEL-120168] - iommu/amd: KVM: SVM: Allow KVM to control need for GA log interrupts (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Consolidate IRTE update when toggling AVIC on/off (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Don't check vCPU's blocking status when toggling AVIC on/off (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Fold avic_set_pi_irte_mode() into its sole caller (Maxim Levitsky) [RHEL-120168] - iommu/amd: WARN if KVM calls GA IRTE helpers without virtual APIC support (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Use vcpu_idx, not vcpu_id, for GA log tag/metadata (Maxim Levitsky) [RHEL-120168] - KVM: VMX: WARN if VT-d Posted IRQs aren't possible when starting IRQ bypass (Maxim Levitsky) [RHEL-120168] - KVM: x86: Decouple device assignment from IRQ bypass (Maxim Levitsky) [RHEL-120168] - KVM: SVM: WARN if ir_list is non-empty at vCPU free (Maxim Levitsky) [RHEL-120168] - KVM: x86: WARN if IRQ bypass routing is updated without in-kernel local APIC (Maxim Levitsky) [RHEL-120168] - KVM: x86: WARN if IRQ bypass isn't supported in kvm_pi_update_irte() (Maxim Levitsky) [RHEL-120168] - KVM: x86: Drop superfluous "has assigned device" check in kvm_pi_update_irte() (Maxim Levitsky) [RHEL-120168] - KVM: SVM: WARN if updating IRTE GA fields in IOMMU fails (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Process all IRTEs on affinity change even if one update fails (Maxim Levitsky) [RHEL-120168] - KVM: SVM: WARN if (de)activating guest mode in IOMMU fails (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Don't check for assigned device(s) when activating AVIC (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Don't check for assigned device(s) when updating affinity (Maxim Levitsky) [RHEL-120168] - iommu/amd: KVM: SVM: Add IRTE metadata to affined vCPU's list if AVIC is inhibited (Maxim Levitsky) [RHEL-120168] - iommu/amd: KVM: SVM: Set pCPU info in IRTE when setting vCPU affinity (Maxim Levitsky) [RHEL-120168] - iommu/amd: Factor out helper for manipulating IRTE GA/CPU info (Maxim Levitsky) [RHEL-120168] - iommu/amd: KVM: SVM: Infer IsRun from validity of pCPU destination (Maxim Levitsky) [RHEL-120168] - iommu/amd: Document which IRTE fields amd_iommu_update_ga() can modify (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Take and hold ir_list_lock across IRTE updates in IOMMU (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Revert IRTE to legacy mode if IOMMU doesn't provide IR metadata (Maxim Levitsky) [RHEL-120168] - KVM: x86: Don't update IRTE entries when old and new routes were !MSI (Maxim Levitsky) [RHEL-120168] - KVM: x86: Skip IOMMU IRTE updates if there's no old or new vCPU being targeted (Maxim Levitsky) [RHEL-120168] - KVM: x86: Track irq_bypass_vcpu in common x86 code (Maxim Levitsky) [RHEL-120168] - KVM: Fold kvm_arch_irqfd_route_changed() into kvm_arch_update_irqfd_routing() (Maxim Levitsky) [RHEL-120168] - KVM: Don't WARN if updating IRQ bypass route fails (Maxim Levitsky) [RHEL-120168] - iommu: KVM: Split "struct vcpu_data" into separate AMD vs. Intel structs (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Clean up return handling in avic_pi_update_irte() (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move posted interrupt tracepoint to common code (Maxim Levitsky) [RHEL-120168] - KVM: x86: Dedup AVIC vs. PI code for identifying target vCPU (Maxim Levitsky) [RHEL-120168] - KVM: x86: Nullify irqfd->producer after updating IRTEs (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move IRQ routing/delivery APIs from x86.c => irq.c (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Extract SVM specific code out of get_pi_vcpu_info() (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Stop walking list of routing table entries when updating IRTE (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Stop walking list of routing table entries when updating IRTE (Maxim Levitsky) [RHEL-120168] - iommu/amd: KVM: SVM: Pass NULL @vcpu_info to indicate "not guest mode" (Maxim Levitsky) [RHEL-120168] - iommu/amd: KVM: SVM: Use pi_desc_addr to derive ga_root_ptr (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Add a comment to explain why avic_vcpu_blocking() ignores IRQ blocking (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Suppress PI notifications whenever the vCPU is put (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Disable (x2)AVIC IPI virtualization if CPU has erratum #1235 (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Add enable_ipiv param, never set IsRunning if disabled (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Move enable_ipiv knob to common x86 (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Drop superfluous "cache" of AVIC Physical ID entry pointer (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Track AVIC tables as natively sized pointers, not "struct pages" (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Drop redundant check in AVIC code on ID during vCPU creation (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Inhibit AVIC if ID is too big instead of rejecting vCPU creation (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Drop vcpu_svm's pointless avic_backing_page field (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Add helper to deduplicate code for getting AVIC backing page (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Drop pointless masking of kernel page pa's with AVIC HPA masks (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Drop pointless masking of default APIC base when setting V_APIC_BAR (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Delete IRTE link from previous vCPU irrespective of new routing (Maxim Levitsky) [RHEL-120168] - iommu/amd: KVM: SVM: Delete now-unused cached/previous GA tag fields (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Delete IRTE link from previous vCPU before setting new IRTE (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Track per-vCPU IRTEs using kvm_kernel_irqfd structure (Maxim Levitsky) [RHEL-120168] - KVM: Pass new routing entries and irqfd when updating IRTEs (Maxim Levitsky) [RHEL-120168] - KVM: arm64: WARN if unmapping a vLPI fails in any path (Maxim Levitsky) [RHEL-120168] - KVM: fix typo in kvm_vm_set_mem_attributes() comment (Maxim Levitsky) [RHEL-120168] - KVM: Add trace_kvm_vm_set_mem_attributes() (Maxim Levitsky) [RHEL-120168] - KVM: Allow CPU to reschedule while setting per-page memory attributes (Maxim Levitsky) [RHEL-120168] {CVE-2025-38506} - KVM: x86: Fold irq_comm.c into irq.c (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move IRQ mask notifier infrastructure to I/O APIC emulation (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Fall back to split IRQ chip if full in-kernel chip is unsupported (Maxim Levitsky) [RHEL-120168] - KVM: Squash two CONFIG_HAVE_KVM_IRQCHIP #ifdefs into one (Maxim Levitsky) [RHEL-120168] - KVM: x86: Add CONFIG_KVM_IOAPIC to allow disabling in-kernel I/O APIC (Maxim Levitsky) [RHEL-120168] - KVM: Move x86-only tracepoints to x86's trace.h (Maxim Levitsky) [RHEL-120168] - KVM: x86: Explicitly check for in-kernel PIC when getting ExtINT (Maxim Levitsky) [RHEL-120168] - KVM: x86: Don't clear PIT's IRQ line status when destroying PIT (Maxim Levitsky) [RHEL-120168] - KVM: x86: Hardcode the PIT IRQ source ID to '2' (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move kvm_{request,free}_irq_source_id() to i8254.c (PIT) (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move kvm_setup_default_irq_routing() into irq.c (Maxim Levitsky) [RHEL-120168] - KVM: x86: Rename irqchip_kernel() to irqchip_full() (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move KVM_{GET,SET}_IRQCHIP ioctl helpers to irq.c (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move PIT ioctl helpers to i8254.c (Maxim Levitsky) [RHEL-120168] - KVM: x86: Drop superfluous kvm_hv_set_sint() => kvm_hv_synic_set_irq() wrapper (Maxim Levitsky) [RHEL-120168] - KVM: x86: Drop superfluous kvm_set_ioapic_irq() => kvm_ioapic_set_irq() wrapper (Maxim Levitsky) [RHEL-120168] - KVM: x86: Drop superfluous kvm_set_pic_irq() => kvm_pic_set_irq() wrapper (Maxim Levitsky) [RHEL-120168] - KVM: x86: Trigger I/O APIC route rescan in kvm_arch_irq_routing_update() (Maxim Levitsky) [RHEL-120168] - KVM: Assert that slots_lock is held when resetting per-vCPU dirty rings (Maxim Levitsky) [RHEL-120168] - KVM: Use mask of harvested dirty ring entries to coalesce dirty ring resets (Maxim Levitsky) [RHEL-120168] - KVM: Check for empty mask of harvested dirty ring entries in caller (Maxim Levitsky) [RHEL-120168] - KVM: Conditionally reschedule when resetting the dirty ring (Maxim Levitsky) [RHEL-120168] - KVM: Bail from the dirty ring reset flow if a signal is pending (Maxim Levitsky) [RHEL-120168] - KVM: Bound the number of dirty ring entries in a single reset at INT_MAX (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Print a more helpful message for EACCESS in access tracking test (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Play nice with EACCES errors in open_path_or_exit() (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add __open_path_or_exit() variant to provide extra help info (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Verify KVM is loaded when getting a KVM module param (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Fix spelling of 'occurrences' in sparsebit.c comments (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Allow SNP guest policy to specify SINGLE_SOCKET (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Allow SNP guest policy disallow running with SMT enabled (Maxim Levitsky) [RHEL-120168] - KVM: TDX: Move TDX hardware setup from main.c to tdx.c (Maxim Levitsky) [RHEL-120168] - KVM: x86/mmu: Exempt nested EPT page tables from !USER, CR0.WP=0 logic (Maxim Levitsky) [RHEL-120168] - KVM: x86: Refactor handling of SIPI_RECEIVED when setting MP_STATE (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move INIT_RECEIVED vs. INIT/SIPI blocked check to KVM_RUN (Maxim Levitsky) [RHEL-120168] - KVM: x86: WARN and reject KVM_RUN if vCPU's MP_STATE is SIPI_RECEIVED (Maxim Levitsky) [RHEL-120168] - KVM: x86: Drop pending_smi vs. INIT_RECEIVED check when setting MP_STATE (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Verify KVM disable interception (for userspace) on filter change (Maxim Levitsky) [RHEL-120168] - KVM: x86: Simplify userspace filter logic when disabling MSR interception (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Add a helper to allocate and initialize permissions bitmaps (Maxim Levitsky) [RHEL-120168] - KVM: nSVM: Merge MSRPM in 64-bit chunks on 64-bit kernels (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Return -EINVAL instead of MSR_INVALID to signal out-of-range MSR (Maxim Levitsky) [RHEL-120168] - KVM: nSVM: Access MSRPM in 4-byte chunks only for merging L0 and L1 bitmaps (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Store MSRPM pointer as "void *" instead of "u32 *" (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Move svm_msrpm_offset() to nested.c (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Drop explicit check on MSRPM offset when emulating SEV-ES accesses (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Merge "after set CPUID" intercept recalc helpers (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Fold svm_vcpu_init_msrpm() into its sole caller (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Rename init_vmcb_after_set_cpuid() to make it intercepts specific (Maxim Levitsky) [RHEL-120168] - KVM: x86: Rename msr_filter_changed() => recalc_msr_intercepts() (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Manually recalc all MSR intercepts on userspace MSR filter change (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Manually recalc all MSR intercepts on userspace MSR filter change (Maxim Levitsky) [RHEL-120168] - KVM: x86: Move definition of X2APIC_MSR() to lapic.h (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Drop "always" flag from list of possible passthrough MSRs (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Pass through GHCB MSR if and only if VM is an SEV-ES guest (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Implement and adopt VMX style MSR intercepts APIs (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Add helpers for accessing MSR bitmap that don't rely on offsets (Maxim Levitsky) [RHEL-120168] - KVM: nSVM: Don't initialize vmcb02 MSRPM with vmcb01's "always passthrough" (Maxim Levitsky) [RHEL-120168] - KVM: nSVM: Omit SEV-ES specific passthrough MSRs from L0+L1 bitmap merge (Maxim Levitsky) [RHEL-120168] - KVM: nSVM: Use dedicated array of MSRPM offsets to merge L0 and L1 bitmaps (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Clean up macros related to architectural MSRPM definitions (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Massage name and param of helper that merges vmcb01 and vmcb12 MSRPMs (Maxim Levitsky) [RHEL-120168] - KVM: x86: Use non-atomic bit ops to manipulate "shadow" MSR intercepts (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Kill the VM instead of the host if MSR interception is buggy (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Use ARRAY_SIZE() to iterate over direct_access_msrs (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Tag MSR bitmap initialization helpers with __init (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Don't BUG if setting up the MSR intercept bitmaps fails (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Allocate IOPM pages after initial setup in svm_hardware_setup() (Maxim Levitsky) [RHEL-120168] - KVM: x86/xen: Fix cleanup logic in emulation of Xen schedop poll hypercalls (Maxim Levitsky) [RHEL-120168] {CVE-2025-38469} - KVM: Documentation: document how KVM is tested (Maxim Levitsky) [RHEL-120168] - KVM: Documentation: minimal updates to review-checklist.rst (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add back the missing check of MONITOR/MWAIT availability (Maxim Levitsky) [RHEL-120168] - KVM: x86/xen: Allow 'out of range' event channel ports in IRQ routing table. (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Initialize vmsa_pa in VMCB to INVALID_PAGE if VMSA page is NULL (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Reject SEV{-ES} intra host migration if vCPU creation is in-flight (Maxim Levitsky) [RHEL-120168] {CVE-2025-38455} - x86/traps: Initialize DR7 by writing its architectural reset value (Maxim Levitsky) [RHEL-120168] - x86/traps: Initialize DR6 by writing its architectural reset value (Maxim Levitsky) [RHEL-120168] - KVM: SEV: Disable SEV-SNP support on initialization failure (Maxim Levitsky) [RHEL-120168] - Documentation: virt/kvm: remove unreferenced footnote (Maxim Levitsky) [RHEL-120168] - KVM: selftests: access_tracking_perf_test: Use MGLRU for access tracking (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Build and link selftests/cgroup/lib into KVM selftests (Maxim Levitsky) [RHEL-120168] - cgroup: selftests: Add API to find root of specific controller (Maxim Levitsky) [RHEL-120168] - cgroup: selftests: Move cgroup_util into its own library (Maxim Levitsky) [RHEL-120168] - cgroup: selftests: Move memcontrol specific helpers out of common cgroup_util.c (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add test to verify KVM_CAP_X86_BUS_LOCK_EXIT (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Add support for KVM_CAP_X86_BUS_LOCK_EXIT on SVM CPUs (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Add architectural definitions/assets for Bus Lock Threshold (Maxim Levitsky) [RHEL-120168] - x86/cpufeatures: Add CPUID feature bit for the Bus Lock Threshold (Maxim Levitsky) [RHEL-120168] - KVM: x86: Make kvm_pio_request.linear_rip a common field for user exits (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add a test for x86's fastops emulation (Maxim Levitsky) [RHEL-120168] - KVM: Remove obsolete comment about locking for kvm_io_bus_read/write (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add a basic SEV-SNP smoke test (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Decouple SEV policy from VM type (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Force GUEST_MEMFD flag for SNP VM type (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add library support for interacting with SNP (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Introduce SEV VM type check (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Replace assert() with TEST_ASSERT_EQ() (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add SMT control state helper (Maxim Levitsky) [RHEL-120168] - KVM: selftests: Add vmgexit helper (Maxim Levitsky) [RHEL-120168] - KVM: selftests: SEV-SNP test for KVM_SEV_INIT2 (Maxim Levitsky) [RHEL-120168] - KVM: x86: Unify cross-vCPU IBPB (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Clear current_vmcb during vCPU free for all *possible* CPUs (Maxim Levitsky) [RHEL-120168] - x86/sev: Remove unnecessary GFP_KERNEL_ACCOUNT for temporary variables (Maxim Levitsky) [RHEL-120168] - KVM: x86/mmu: Warn if PFN changes on shadow-present SPTE in shadow MMU (Maxim Levitsky) [RHEL-120168] - KVM: x86/tdp_mmu: WARN if PFN changes for spurious faults (Maxim Levitsky) [RHEL-120168] - KVM: x86/tdp_mmu: Merge prefetch and access checks for spurious faults (Maxim Levitsky) [RHEL-120168] - KVM: x86/mmu: Further check old SPTE is leaf for spurious prefetch fault (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Flush shadow VMCS on emergency reboot (Maxim Levitsky) [RHEL-120168] - KVM: SVM: avoid frequency indirect calls (Maxim Levitsky) [RHEL-120168] - KVM: SEV: Configure "ALLOWED_SEV_FEATURES" VMCB Field (Maxim Levitsky) [RHEL-120168] - x86/cpufeatures: Add "Allowed SEV Features" Feature (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Add a mutex to dump_vmcb() to prevent concurrent output (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Include the vCPU ID when dumping a VMCB (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Add the type of VM for which the VMCB/VMSA is being dumped (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Dump guest register state in dump_vmcb() (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Decrypt SEV VMSA in dump_vmcb() if debugging is enabled (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Use LEAVE in vmx_do_interrupt_irqoff() (Maxim Levitsky) [RHEL-120168] - KVM: nVMX: Check MSR load/store list counts during VM-Enter consistency checks (Maxim Levitsky) [RHEL-120168] - KVM: SVM: Fix SNP AP destroy race with VMRUN (Maxim Levitsky) [RHEL-120168] - x86/irq: KVM: Add helper for harvesting PIR to deduplicate KVM and posted MSIs (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Use arch_xchg() when processing PIR to avoid instrumentation (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Isolate pure loads from atomic XCHG when processing PIR (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Process PIR using 64-bit accesses on 64-bit kernels (Maxim Levitsky) [RHEL-120168] - x86/irq: KVM: Track PIR bitmap as an "unsigned long" array (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Ensure vIRR isn't reloaded at odd times when sync'ing PIR (Maxim Levitsky) [RHEL-120168] - x86/irq: Track if IRQ was found in PIR during initial loop (to load PIR vals) (Maxim Levitsky) [RHEL-120168] - x86/irq: Ensure initial PIR loads are performed exactly once (Maxim Levitsky) [RHEL-120168] - KVM: x86: Add module param to control and enumerate device posted IRQs (Maxim Levitsky) [RHEL-120168] - KVM: VMX: Don't send UNBLOCK when starting device assignment without APICv (Maxim Levitsky) [RHEL-120168] - KVM: x86: Rescan I/O APIC routes after EOI interception for old routing (Maxim Levitsky) [RHEL-120168] - KVM: x86: Add a helper to deduplicate I/O APIC EOI interception logic (Maxim Levitsky) [RHEL-120168] - KVM: x86: Isolate edge vs. level check in userspace I/O APIC route scanning (Maxim Levitsky) [RHEL-120168] - KVM: x86: Advertise support for AMD's PREFETCHI (Maxim Levitsky) [RHEL-120168] - KVM: x86: Sort CPUID_8000_0021_EAX leaf bits properly (Maxim Levitsky) [RHEL-120168] - KVM: x86: clean up a return (Maxim Levitsky) [RHEL-120168] - KVM: x86: Advertise support for WRMSRNS (Maxim Levitsky) [RHEL-120168] - x86/msr: Rename the WRMSRNS opcode macro to ASM_WRMSRNS (for KVM) (Maxim Levitsky) [RHEL-120168] - KVM: x86: Generalize IBRS virtualization on emulated VM-exit (Maxim Levitsky) [RHEL-120168] - KVM: x86: Propagate AMD's IbrsSameMode to the guest (Maxim Levitsky) [RHEL-120168] - x86/cpufeatures: Define X86_FEATURE_AMD_IBRS_SAME_MODE (Maxim Levitsky) [RHEL-120168] - x86/virt: Provide "nosnp" boot option for sev kernel command line (Maxim Levitsky) [RHEL-120168] - blk-cgroup: fix possible deadlock while configuring policy (Ming Lei) [RHEL-129497] - crypto: iaa - Fix incorrect return value in save_iaa_wq() (CKI Backport Bot) [RHEL-132474] - mm: hugetlb: conditionally disable tlb_remove_table_sync_one() in huge_pmd_unshare() (Rafael Aquini) [RHEL-127604] - iommufd/driver: Fix counter initialization for counted_by annotation (Eder Zulian) [RHEL-131337] - iommufd/iommufd_private.h: Avoid -Wflex-array-member-not-at-end warning (Eder Zulian) [RHEL-131337] - iommufd: Don't overflow during division for dirty tracking (Eder Zulian) [RHEL-131337] - Revert "NFSD: Remove the cap on number of operations per NFSv4 COMPOUND" (CKI Backport Bot) [RHEL-131050] {CVE-2025-40210} - arm64: Kconfig: Enable GICv5 (Mark Salter) [RHEL-125230] - of/irq: Add msi-parent check to of_msi_xlate() (Mark Salter) [RHEL-125230] - of/irq: Convert of_msi_map_id() callers to of_msi_xlate() (Mark Salter) [RHEL-125230] - Enable Rockchip erratum workaround (Mark Salter) [RHEL-125230] - arm64: cpucaps: Add GICv5 Legacy vCPU interface (GCIE_LEGACY) capability (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Drop has_gcie_v3_compat from gic_kvm_info (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Fix error handling in gicv5_its_irq_domain_alloc() (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Fix loop in gicv5_its_create_itt_two_level() cleanup path (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Delete a stray tab (Mark Salter) [RHEL-125230] - irqchip/gic-v2m: Handle Multiple MSI base IRQ Alignment (Mark Salter) [RHEL-125230] - irqchip: Use int type to store negative error codes (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Remove the redundant ITS cache invalidation (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Remove undue WARN_ON()s in the IRS affinity parsing (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Fix kmemleak L2 IST table entries false positives (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Remove IRQD_RESEND_WHEN_IN_PROGRESS for ITS IRQs (Mark Salter) [RHEL-125230] - irqchip/gic-v5: iwb: Fix iounmap probe failure path (Mark Salter) [RHEL-125230] - irqchip/gic-v3: Fix GICD_CTLR register naming (Mark Salter) [RHEL-125230] - arm64/sysreg: Add ICH_VCTLR_EL2 (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Populate struct gic_kvm_info (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Skip deactivate for forwarded PPI interrupts (Mark Salter) [RHEL-125230] - docs: arm64: gic-v5: Document booting requirements for GICv5 (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Add GICv5 IWB support (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Add GICv5 ITS support (Mark Salter) [RHEL-125230] - irqchip/gic-v3: Rename GICv3 ITS MSI parent (Mark Salter) [RHEL-125230] - PCI/MSI: Add pci_msi_map_rid_ctlr_node() helper function (Mark Salter) [RHEL-125230] - of/irq: Add of_msi_xlate() helper function (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Enable GICv5 SMP booting (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Add GICv5 LPI/IPI support (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Add GICv5 IRS/SPI support (Mark Salter) [RHEL-125230] - irqchip/gic-v5: Add GICv5 PPI support (Mark Salter) [RHEL-125230] - irqchip/gic-v4.1: Use local 4_1 ITS to generate VSGI (Mark Salter) [RHEL-125230] - irqchip/gic-v2m: Prevent use after free of gicv2m_get_fwnode() (Mark Salter) [RHEL-125230] - irqchip/gic-v3: Add Rockchip 3568002 erratum workaround (Mark Salter) [RHEL-125230] - irqchip/gic-v3: Fix rk3399 workaround when secure interrupts are enabled (Mark Salter) [RHEL-125230] - irqchip/gic-v3: Handle CPU_PM_ENTER_FAILED correctly (Mark Salter) [RHEL-125230] - irqchip/gic-v3: Work around insecure GIC integrations (Mark Salter) [RHEL-125230] - irqchip/gic: Correct declaration of *percpu_base pointer in union gic_base (Mark Salter) [RHEL-125230] - irqchip/gic-v3: Fix irq_complete_ack() comment (Mark Salter) [RHEL-125230] - net: tun: Update napi->skb after XDP process (CKI Backport Bot) [RHEL-122243] {CVE-2025-39984} - Add CONFIG_HTMDUMP (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries/htmdump: Add documentation for H_HTM debugfs interface (Mamatha Inamdar) [RHEL-102163] - docs: powerpc: Add htm.rst to table of contents (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries/htmdump: Add htm capabilities support to htmdump module (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries/htmdump: Add htm flags support to htmdump module (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries/htmdump: Add htm setup support to htmdump module (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries/htmdump: Add htm info support to htmdump module (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries/htmdump: Add htm status support to htmdump module (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries/htmdump: Add htm start support to htmdump module (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries/htmdump: Add htm configure support to htmdump module (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries/htmdump: Add htm_hcall_wrapper to integrate other htm operations (Mamatha Inamdar) [RHEL-102163] - powerpc: Document details on H_HTM hcall (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries: Export hardware trace macro dump via debugfs (Mamatha Inamdar) [RHEL-102163] - powerpc/pseries: Macros and wrapper functions for H_HTM call (Mamatha Inamdar) [RHEL-102163] - scsi: storvsc: Prefer returning channel with the same CPU as on the I/O issuing CPU (Xuemin Li) [RHEL-126194] - platform/x86/intel/pmt: support BMG crashlog (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: use a version struct (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: refactor base parameter (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: add register access helpers (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: decouple sysfs and namespace (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: correct types (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: re-order trigger logic (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: use guard(mutex) (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: mutex clean up (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: white space cleanup (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: fix a crashlog NULL pointer access (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: fix build dependency for kunit test (Steve Best) [RHEL-119042] - platform/x86/intel/pmt/discovery: fix format string warning (Steve Best) [RHEL-119042] - platform/x86/intel/pmt/discovery: Fix size_t specifiers for 32-bit (Steve Best) [RHEL-119042] - redhat/configs: disable CONFIG_INTEL_PMT_KUNIT_TEST (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: KUNIT test for PMT Enhanced Discovery API (Steve Best) [RHEL-119042] - platform/x86/intel/pmt/telemetry: Add API to retrieve telemetry regions by feature (Steve Best) [RHEL-119042] - platform/x86/intel/pmt/discovery: Get telemetry attributes (Steve Best) [RHEL-119042] - platform/x86/intel/tpmi: Get OOBMSM CPU mapping from TPMI (Steve Best) [RHEL-119042] - platform/x86/intel/vsec: Set OOBMSM to CPU mapping (Steve Best) [RHEL-119042] - platform/x86/intel/tpmi: Relocate platform info to intel_vsec.h (Steve Best) [RHEL-119042] - MAINTAINERS: adjust file entry in INTEL TPMI DRIVER (Steve Best) [RHEL-119042] - platform/x86: intel: Add 'intel' prefix to the modules automatically (Steve Best) [RHEL-119042] - platform/x86/intel/pmt: Add PMT Discovery driver (Steve Best) [RHEL-119042] - platform/x86/intel/vsec: Add new Discovery feature (Steve Best) [RHEL-119042] - platform/x86/intel/vsec: Add Diamond Rapids support (Steve Best) [RHEL-119042] - platform/x86/intel/vsec: Skip driverless features (Steve Best) [RHEL-119042] - platform/x86/intel/vsec: Skip absent features during initialization (Steve Best) [RHEL-119042] - platform/x86/intel/vsec: Add device links to enforce dependencies (Steve Best) [RHEL-119042] - platform/x86/intel/vsec: Create wrapper to walk PCI config space (Steve Best) [RHEL-119042] - platform/x86/intel/vsec: Add private data for per-device data (Steve Best) [RHEL-119042] - blk-mq: fix elevator depth_updated method (Ming Lei) [RHEL-124151] - lib/sbitmap: make sbitmap_get_shallow() internal (Ming Lei) [RHEL-124151] - lib/sbitmap: convert shallow_depth from one word to the whole sbitmap (Ming Lei) [RHEL-124151] - x86/amd_node: Fix AMD root device caching (Steve Best) [RHEL-127698] - x86/amd_node: Add support for debugfs access to SMN registers (Steve Best) [RHEL-127698] - x86/amd_node: Add SMN offsets to exclusive region access (Steve Best) [RHEL-127698] - x86/cpu: Add/fix core comments for {Panther,Nova} Lake (Steve Best) [RHEL-127483] - x86/cpu: Rename and move CPU model entry for Diamond Rapids (Steve Best) [RHEL-127483] - tools/power turbostat: Fix incorrect sorting of PMT telemetry (Steve Best) [RHEL-127383] - efi: Explain OVMF acronym in OVMF_DEBUG_LOG help text (Lenny Szubowicz) [RHEL-100104] - efi: add API doc entry for ovmf_debug_log (Lenny Szubowicz) [RHEL-100104] - efi: add ovmf debug log driver (Lenny Szubowicz) [RHEL-100104] - redhat/configs: Enable CONFIG_OVMF_DEBUG_LOG in RHEL (Lenny Szubowicz) [RHEL-100104] - redhat/configs: enable Branch Record Buffer Extension for arm (Marcin Juszkiewicz) [RHEL-122953] - perf/dwc_pcie: Fix use of uninitialized variable (Marcin Juszkiewicz) [RHEL-122953] - perf: riscv: skip empty batches in counter start (Marcin Juszkiewicz) [RHEL-122953] - perf/arm-cmn: Fix CMN S3 DTM offset (Marcin Juszkiewicz) [RHEL-122953] - perf: arm_spe: Prevent overflow in PERF_IDX2OFF() (Marcin Juszkiewicz) [RHEL-122953] {CVE-2025-40081} - drivers/perf: riscv: Remove redundant ternary operators (Marcin Juszkiewicz) [RHEL-122953] - perf: arm_pmuv3: Factor out PMCCNTR_EL0 use conditions (Marcin Juszkiewicz) [RHEL-122953] - perf: arm_spe: Add support for FEAT_SPE_EFT extended filtering (Marcin Juszkiewicz) [RHEL-122953] - perf: arm_spe: Expose event filter (Marcin Juszkiewicz) [RHEL-122953] - perf: arm_spe: Support FEAT_SPEv1p4 filters (Marcin Juszkiewicz) [RHEL-122953] - perf/dwc_pcie: Support counting multiple lane events in parallel (Marcin Juszkiewicz) [RHEL-122953] - drivers: perf: use us_to_ktime() where appropriate (Marcin Juszkiewicz) [RHEL-122953] - perf: imx_perf: add support for i.MX94 platform (Marcin Juszkiewicz) [RHEL-122953] - drivers/perf: riscv: Export PMU event info function (Marcin Juszkiewicz) [RHEL-122953] - drivers/perf: riscv: Implement PMU event info function (Marcin Juszkiewicz) [RHEL-122953] - drivers/perf: riscv: Add raw event v2 support (Marcin Juszkiewicz) [RHEL-122953] - drivers/perf: riscv: Add SBI v3.0 flag (Marcin Juszkiewicz) [RHEL-122953] - perf/arm-ni: Support sharing IRQs within an NI instance (Marcin Juszkiewicz) [RHEL-122953] - perf/arm-ni: Consolidate CPU affinity handling (Marcin Juszkiewicz) [RHEL-122953] - perf/cxlpmu: Remove unintended newline from IRQ name format string (Marcin Juszkiewicz) [RHEL-122953] - perf/cxlpmu: Fix devm_kcalloc() argument order in cxl_pmu_probe() (Marcin Juszkiewicz) [RHEL-122953] - perf: arm_spe: Relax period restriction (Marcin Juszkiewicz) [RHEL-122953] - perf: arm_pmuv3: Add support for the Branch Record Buffer Extension (BRBE) (Marcin Juszkiewicz) [RHEL-122953] - perf/arm: Add missing .suppress_bind_attrs (Marcin Juszkiewicz) [RHEL-122953] - perf/arm-cmn: Reduce stack usage during discovery (Marcin Juszkiewicz) [RHEL-122953] - perf: imx9_perf: make the read-only array mask static const (Marcin Juszkiewicz) [RHEL-122953] - perf/arm-cmn: Broaden module description for wider interconnect support (Marcin Juszkiewicz) [RHEL-122953] - perf/arm-ni: Set initial IRQ affinity (Marcin Juszkiewicz) [RHEL-122953] - perf/arm-cmn: Add CMN S3 ACPI binding (Marcin Juszkiewicz) [RHEL-122953] - perf/arm-cmn: Initialise cmn->cpu earlier (Marcin Juszkiewicz) [RHEL-122953] - perf/amlogic: Replace smp_processor_id() with raw_smp_processor_id() in meson_ddr_pmu_create() (Marcin Juszkiewicz) [RHEL-122953] {CVE-2025-38295} - perf/arm-cmn: Fix REQ2/SNP2 mixup (Marcin Juszkiewicz) [RHEL-122953] - perf: Do not enable by default during compile testing (Marcin Juszkiewicz) [RHEL-122953] - perf: arm-ni: Fix missing platform_set_drvdata() (Marcin Juszkiewicz) [RHEL-122953] {CVE-2025-38318} - perf: arm-ni: Unregister PMUs on probe failure (Marcin Juszkiewicz) [RHEL-122953] {CVE-2025-38168} - perf/arm-cmn: Remove CMN-600 DTC domain special case (Marcin Juszkiewicz) [RHEL-122953] - perf/arm_cspmu: Fix missing io.h include (Marcin Juszkiewicz) [RHEL-122953] - perf/arm_cspmu: Add PMEVFILT2R support (Marcin Juszkiewicz) [RHEL-122953] - perf/arm_cspmu: Generalise event filtering (Marcin Juszkiewicz) [RHEL-122953] - perf/arm_cspmu: Move register definitons to header (Marcin Juszkiewicz) [RHEL-122953] - perf/dwc_pcie: fix duplicate pci_dev devices (Marcin Juszkiewicz) [RHEL-122953] {CVE-2025-37746} - perf/dwc_pcie: fix some unreleased resources (Marcin Juszkiewicz) [RHEL-122953] - perf/arm-cmn: Minor event type housekeeping (Marcin Juszkiewicz) [RHEL-122953] - perf: arm_pmuv3: Don't disable counter in armv8pmu_enable_event() (Marcin Juszkiewicz) [RHEL-122953] - perf: arm_pmuv3: Add support for ARM Rainier PMU (Marcin Juszkiewicz) [RHEL-122953] - drivers/perf: riscv: Do not allow invalid raw event config (Marcin Juszkiewicz) [RHEL-122953] - drivers/perf: riscv: Return error for default case (Marcin Juszkiewicz) [RHEL-122953] - drivers/perf: riscv: Fix Platform firmware event data (Marcin Juszkiewicz) [RHEL-122953] - drivers perf: remove unused field pmu_node (Marcin Juszkiewicz) [RHEL-122953] - arm64: sysreg: Add new PMSFCR_EL1 fields and PMSDSFR_EL1 register (Marcin Juszkiewicz) [RHEL-122953] - HID: i2c-hid: Resolve touchpad issues on Dell systems during S4 (CKI Backport Bot) [RHEL-102875] - redhat: use RELEASE_LOCALVERSION also for dist-get-tag (Jan Stancek) - redhat: introduce RELEASE_LOCALVERSION variable (Jan Stancek) - platform/x86/intel/hid: Add Wildcat Lake support (Steve Best) [RHEL-95646] - platform/x86/intel: hid: Add Pantherlake support (Steve Best) [RHEL-95646] - platform/x86: intel-hid: fix volume buttons on Microsoft Surface Go 4 tablet (Steve Best) [RHEL-95646] - intel-hid: fix volume buttons on Thinkpad X12 Detachable Tablet Gen 1 (Steve Best) [RHEL-95646] - selftests: bonding: add ipsec offload test (Hangbin Liu) [RHEL-97042] - selftests: bonding: add vlan over bond testing (Hangbin Liu) [RHEL-97042] - selftests: bonding: add test for LACP actor port priority (Hangbin Liu) [RHEL-97042] - bonding: support aggregator selection based on port priority (Hangbin Liu) [RHEL-97042] - bonding: fix NULL pointer dereference in actor_port_prio setting (Hangbin Liu) [RHEL-97042] - bonding: add support for per-port LACP actor priority (Hangbin Liu) [RHEL-97042] - HID: multitouch: fix slab out-of-bounds access in mt_report_fixup() (CKI Backport Bot) [RHEL-124612] {CVE-2025-39806} - ext4: fail unaligned direct IO write with EINVAL (Brian Foster) [RHEL-121230] - iomap: Fix broken data integrity guarantees for O_SYNC writes (Brian Foster) [RHEL-121230] - iomap: build the writeback code without CONFIG_BLOCK (Brian Foster) [RHEL-121230] - iomap: add read_folio_range() handler for buffered writes (Brian Foster) [RHEL-121230] - iomap: improve argument passing to iomap_read_folio_sync (Brian Foster) [RHEL-121230] - iomap: replace iomap_folio_ops with iomap_write_ops (Brian Foster) [RHEL-121230] - iomap: export iomap_writeback_folio (Brian Foster) [RHEL-121230] - iomap: move folio_unlock out of iomap_writeback_folio (Brian Foster) [RHEL-121230] - iomap: rename iomap_writepage_map to iomap_writeback_folio (Brian Foster) [RHEL-121230] - iomap: move all ioend handling to ioend.c (Brian Foster) [RHEL-121230] - iomap: add public helpers for uptodate state manipulation (Brian Foster) [RHEL-121230] - iomap: hide ioends from the generic writeback code (Brian Foster) [RHEL-121230] - iomap: refactor the writeback interface (Brian Foster) [RHEL-121230] - iomap: cleanup the pending writeback tracking in iomap_writepage_map_blocks (Brian Foster) [RHEL-121230] - iomap: pass more arguments using the iomap writeback context (Brian Foster) [RHEL-121230] - iomap: header diet (Brian Foster) [RHEL-121230] - iomap: avoid unnecessary ifs_set_range_uptodate() with locks (Brian Foster) [RHEL-121230] - iomap: rework iomap_write_begin() to return folio offset and length (Brian Foster) [RHEL-121230] - iomap: push non-large folio check into get folio path (Brian Foster) [RHEL-121230] - iomap: helper to trim pos/bytes to within folio (Brian Foster) [RHEL-121230] - iomap: drop pos param from __iomap_[get|put]_folio() (Brian Foster) [RHEL-121230] - iomap: drop unnecessary pos param from iomap_write_[begin|end] (Brian Foster) [RHEL-121230] - iomap: resample iter->pos after iomap_write_begin() calls (Brian Foster) [RHEL-121230] - iomap: trace: Add missing flags to [IOMAP_|IOMAP_F_]FLAGS_STRINGS (Brian Foster) [RHEL-121230] - iomap: skip unnecessary ifs_block_is_uptodate check (Brian Foster) [RHEL-121230] - iomap: Fix conflicting values of iomap flags (Brian Foster) [RHEL-121230] - iomap: rework IOMAP atomic flags (Brian Foster) [RHEL-121230] - iomap: comment on atomic write checks in iomap_dio_bio_iter() (Brian Foster) [RHEL-121230] - iomap: inline iomap_dio_bio_opflags() (Brian Foster) [RHEL-121230] - iomap: fix inline data on buffered read (Brian Foster) [RHEL-121230] - iomap: Lift blocksize restriction on atomic writes (Brian Foster) [RHEL-121230] - iomap: Support SW-based atomic writes (Brian Foster) [RHEL-121230] - iomap: Rename IOMAP_ATOMIC -> IOMAP_ATOMIC_HW (Brian Foster) [RHEL-121230] - iomap: introduce a full map advance helper (Brian Foster) [RHEL-121230] - iomap: rename iomap_iter processed field to status (Brian Foster) [RHEL-121230] - iomap: remove unnecessary advance from iomap_iter() (Brian Foster) [RHEL-121230] - dax: advance the iomap_iter on pte and pmd faults (Brian Foster) [RHEL-121230] - dax: advance the iomap_iter on dedupe range (Brian Foster) [RHEL-121230] - dax: advance the iomap_iter on unshare range (Brian Foster) [RHEL-121230] - dax: advance the iomap_iter on zero range (Brian Foster) [RHEL-121230] - dax: push advance down into dax_iomap_iter() for read and write (Brian Foster) [RHEL-121230] - dax: advance the iomap_iter in the read/write path (Brian Foster) [RHEL-121230] - iomap: convert misc simple ops to incremental advance (Brian Foster) [RHEL-121230] - iomap: advance the iter on direct I/O (Brian Foster) [RHEL-121230] - iomap: advance the iter directly on buffered read (Brian Foster) [RHEL-121230] - iomap: Minor code simplification in iomap_dio_bio_iter() (Brian Foster) [RHEL-121230] - iomap: advance the iter directly on zero range (Brian Foster) [RHEL-121230] - iomap: advance the iter directly on unshare range (Brian Foster) [RHEL-121230] - iomap: advance the iter directly on buffered writes (Brian Foster) [RHEL-121230] - iomap: support incremental iomap_iter advances (Brian Foster) [RHEL-121230] - iomap: export iomap_iter_advance() and return remaining length (Brian Foster) [RHEL-121230] - iomap: lift iter termination logic from iomap_iter_advance() (Brian Foster) [RHEL-121230] - iomap: lift error code check out of iomap_iter_advance() (Brian Foster) [RHEL-121230] - iomap: refactor iomap_iter() length check and tracepoint (Brian Foster) [RHEL-121230] - iomap: split out iomap check and reset logic from iter advance (Brian Foster) [RHEL-121230] - iomap: factor out iomap length helper (Brian Foster) [RHEL-121230] - iomap: pass private data to iomap_truncate_page (Brian Foster) [RHEL-121230] - iomap: pass private data to iomap_zero_range (Brian Foster) [RHEL-121230] - iomap: pass private data to iomap_page_mkwrite (Brian Foster) [RHEL-121230] - iomap: add a io_private field to struct iomap_ioend (Brian Foster) [RHEL-121230] - iomap: optionally use ioends for direct I/O (Brian Foster) [RHEL-121230] - iomap: factor out a iomap_dio_done helper (Brian Foster) [RHEL-121230] - iomap: move common ioend code to ioend.c (Brian Foster) [RHEL-121230] - iomap: split bios to zone append limits in the submission handlers (Brian Foster) [RHEL-121230] - iomap: add a IOMAP_F_ANON_WRITE flag (Brian Foster) [RHEL-121230] - iomap: simplify io_flags and io_type in struct iomap_ioend (Brian Foster) [RHEL-121230] - iomap: allow the file system to submit the writeback bios (Brian Foster) [RHEL-121230] - wifi: libertas: cap SSID len in lbs_associate() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cw1200: cap SSID length in cw1200_do_join() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: fix reporting of all valid links in sta_set_sinfo() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: nl80211: call kfree without a NULL check (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Make CONNECTION_MONITOR optional for MLO sta (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: avoid bit operation on key flags (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: Add missing platform IDs for quirk table (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Fix peer lookup in ath12k_dp_mon_rx_deliver_msdu() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: avoid circular locking dependency in ser_state_run() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: avoid possible TX wait initialization race (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: fix use-after-free in rtw89_core_tx_kick_off_and_wait() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: fix leak in rtw89_core_send_nullfunc() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: fix overflow warning on num_pwr_levels (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: initialize eirp_power before use (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: simplify return value handling of cfg80211_get_radio_idx_by_chan() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: fix return value in cfg80211_get_radio_idx_by_chan() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: consider links for validating SCAN_FLAG_AP in scan request during MLO (Jose Ignacio Tornos Martinez) [RHEL-114889] - net: rfkill: gpio: Fix crash due to dereferencering uninitialized pointer (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39937} - wifi: iwlwifi: pcie: fix byte count table for some devices (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: nl80211: completely disable per-link stats for now (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: virt_wifi: Fix page fault on connect (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: Fix "no buffer space available" error in nl80211_get_station() for MLO (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: fix 130/1030 configs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: fix WMI TLV header misalignment (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Fix missing station power save configuration (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: wilc1000: avoid buffer overflow in WID string configuration (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39952} - wifi: cfg80211: sme: cap SSID length in __cfg80211_connect_result() (Jose Ignacio Tornos Martinez) [RHEL-114889 RHEL-117582] {CVE-2025-39849} - wifi: ath11k: fix group data packet drops during rekey (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Set EMLSR support flag in MLO flags for EML-capable stations (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: cfg: add back more lost PCI IDs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: fix byte count table for old devices (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: cfg: restore some 1000 series configs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mwifiex: Initialize the chan_stats array to zero (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39891} - wifi: mac80211: do not permit 40 MHz EHT operation on 5/6 GHz (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: uefi: check DSM item validity (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: acpi: check DSM func validity (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: if scratch is ~0U, consider it a failure (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: fix linked list corruption (Jose Ignacio Tornos Martinez) [RHEL-114889 RHEL-123069] {CVE-2025-39918} - wifi: mt76: free pending offchannel tx frames on wcid cleanup (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7915: fix list corruption after hardware restart (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39862} - wifi: mt76: mt7996: add missing check for rx wcid entries (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39919} - wifi: mt76: do not add non-sta wcid entries to the poll list (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: fix crash on some tx status reports (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: use the correct vif link for scanning/roc (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: disable beacons when going offchannel (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: prevent non-offchannel mgmt tx during scan/roc (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7925: skip EHT MLD TLV on non-MLD and pass conn_state for sta_cmd (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7925u: use connac3 tx aggr check in tx complete (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7925: fix the wrong bss cleanup for SAP (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7925: fix locking in mt7925_change_vif_links() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7921: don't disconnect when CSA to DFS chan (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: Initialize hdr before passing to skb_put_data() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: increase scan_ies_len for S1G (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39957} - wifi: mac80211: fix incorrect type for ret (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcmfmac: fix use-after-free when rescheduling brcmf_btcoex_info work (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39863} - wifi: cfg80211: fix use-after-free in cmp_bss() (Jose Ignacio Tornos Martinez) [RHEL-114889 RHEL-122877] {CVE-2025-39864} - wifi: rt2x00: fix CRC_CCITT dependency (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rt2800: select CONFIG_RT2X00_LIB as needed (Jose Ignacio Tornos Martinez) [RHEL-114889] - selftests/tc-testing: Check backlog stats in gso_skb case (Jose Ignacio Tornos Martinez) [RHEL-114889] - net/sched: Fix backlog accounting in qdisc_dequeue_internal (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39677} - wifi: Fix typos (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcmsmac: Use str_true_false() helper (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcmfmac: fix EXTSAE WPA3 connection failure due to AUTH TX failure (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcm80211: Remove yet more unused functions (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcm80211: Remove more unused functions (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcm80211: Remove unused functions (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: Revert "wifi: iwlwifi: remove support of several iwl_ppag_table_cmd versions" (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: check validity of the FW API range (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: don't export symbols that we shouldn't (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: use spec link id and not FW link id (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: decode EOF bit for AMPDUs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: Remove support for rx OMI bandwidth reduction (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: stop supporting iwl_omi_send_status_notif ver 1 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: remove SC2F firmware support (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: Remove NAN support (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: avoid outdated reorder buffer head_sn (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: avoid outdated reorder buffer head_sn (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: disable certain features for fips_enabled (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: support channel survey collection for ACS scans (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: disable RX aggregation if requested (Jose Ignacio Tornos Martinez) [RHEL-114889] - dt-bindings: net: wireless: rt2800: add SOC Wifi (Jose Ignacio Tornos Martinez) [RHEL-114889] - MIPS: dts: ralink: mt7620a: add wifi (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rt2x00: soc: modernize probe (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rt2800: move 2x00soc to 2800soc (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rt2800soc: allow loading from OF (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rt2x00: remove mod_name from platform_driver (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rt2x00: add COMPILE_TEST (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: fix WARN_ON for monitor mode on some devices (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38642} - wifi: brcmfmac: cyw: Fix __counted_by to be LE variant (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: fix unassigned variable access (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: don't require cipher and keylen in gtk rekey (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: nl80211: Set num_sub_specs before looping through sub_specs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Write cnt before copying in ieee80211_copy_rnr_beacon() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm/fw: Avoid -Wflex-array-member-not-at-end warnings (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: Fix typo "ransport" (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: fix cmd length when sending WOWLAN_TSC_RSC_PARAM (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Correct tid cleanup when tid setup fails (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39750} - wifi: ath12k: bring DFS support back for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Prefer {} to {0} in initializers (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: Prefer {} to {0} in initializers (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath10k: Prefer {} to {0} in initializers (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211/mac80211: report link ID for unexpected frames (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: determine missing link_id in ieee80211_rx_for_interface() based on frequency (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcmfmac: support CYW54591 PCIE device (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcmfmac: fix P2P discovery failure in P2P peer due to missing P2P IE (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: reject HTC bit for management frames (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: remove ieee80211_remove_key (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Advertise encapsulation/decapsulation offload support to mac80211 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Fix TX status reporting to mac80211 when offload is enabled (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Fix the handling of TX packets in Ethernet mode (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Add support to parse max ext2 wmi service bit (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: fix endianness handling while accessing wmi service bit (Jose Ignacio Tornos Martinez) [RHEL-114889] - Reapply "wifi: mac80211: Update skb's control block key in ieee80211_tx_dequeue()" (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Check 802.11 encaps offloading in ieee80211_tx_h_select_key() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Don't call fq_flow_idx() for management frames (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Do not schedule stopped TXQs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: Add missing lock in cfg80211_check_and_end_cac() (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38643} - wifi: mac80211: support returning the S1G short beacon skb (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: support initialising current S1G short beacon index (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: support initialising an S1G short beaconing BSS (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: support configuring an S1G short beaconing BSS (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcmfmac: Add support for the SDIO 43751 device (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: wilc1000: Use min() to improve code (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mwifiex: Use max_t() to improve code (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcm80211: Use min() to improve code (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcmfmac: Fix typo "notifer" (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: reject TDLS operations when station is not associated (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38644} - wifi: brcmsmac: Remove const from tbl_ptr parameter in wlc_lcnphy_common_read_table() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: extend connection monitoring for MLO (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: extend beacon monitoring for MLO (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Add link iteration macro for link data with rcu_dereference (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: fix macro scoping in for_each_link_data (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211/mac80211: remove wrong scan request n_channels (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtlwifi: Use min()/max() to improve code (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: wow: Add Basic Rate IE to probe request in scheduled scan mode (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Lower the timeout in rtw89_fwdl_check_path_ready_ax() for USB (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Lower the timeout in rtw89_fw_read_c2h_reg() for USB (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: check path range before using in rtw89_fw_h2c_rf_ps_info() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: purge obsoleted scan events with software sequence number (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: dynamically update EHT preamble puncturing (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: mac: reduce PPDU status length for WiFi 6 chips (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: trigger TX stuck if FIFO full (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: fix sleeping-in-atomic in ath11k_mac_op_set_bitrate_mask() (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39732} - wifi: ath12k: remove unneeded semicolon in ath12k_mac_parse_tx_pwr_env() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Validate peer_id before searching for peer (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Use HTT_TCL_METADATA_VER_V1 in FTM mode (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: Fix botched indexing conversion (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: fix double free for link_sinfo in nl80211_station_dump() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: fix off channel operation allowed check for MLO (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: use RCU-safe iteration in ieee80211_csa_finish (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211_hwsim: Update comments in header (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: parse unsolicited broadcast probe response data (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: parse attribute to update unsolicited probe response template (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: don't use TPE data from assoc response (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: handle WLAN_HT_ACTION_NOTIFY_CHANWIDTH async (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: simplify __ieee80211_rx_h_amsdu() loop (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: don't mark keys for inactive links as uploaded (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: only assign chanctx in reconfig (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211_hwsim: Declare support for AP scanning (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: clean up cipher suite handling (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: don't send keys to driver when fips_enabled (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: Fix interface type validation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: remove ieee80211_link_unreserve_chanctx() return value (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: don't unreserve never reserved chanctx (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: make VHT opmode NSS ignore a debug message (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: remove scan request n_channels counted_by (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw88: Fix macid assigned to TDLS station (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw88: enable TX reports for the management queue (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtl8xxxu: Fix RX skb size for aggregation disabled (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8852b: implement RFK multi-channel handling and support chanctx up to 2 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8852b: configure FW version for SCAN_OFFLOAD_EXTRA_OP feature (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8852bt: implement RFK multi-channel handling and support chanctx up to 2 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8852bt: configure FW version for SCAN_OFFLOAD_EXTRA_OP feature (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: tweak tx wake notify matching condition (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: update SER L2 type default value (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: introduce fw feature group and redefine CRASH_TRIGGER (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: check LPS H2C command complete by C2H reg instead of done ack (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: mcc: solve GO's TBTT change and TBTT too close to NoA issue (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: extend HW scan of WiFi 7 chips for extra OP chan when concurrency (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: mcc: when MCC stop forcing to stay at GO role (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: mcc: enlarge GO NoA duration to cover channel switching time (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: add DIG suspend/resume flow when scan and connection (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: mcc: add H2C command to support different PD level in MCC (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: regd/acpi: support 6 GHz VLP policy via ACPI DSM (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: regd/acpi: support regulatory rules via ACPI DSM and parse rule of regd_UK (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: regd/acpi: update field definition to specific country in UNII-4 conf (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: regd/acpi: support country CA by BIT(1) in 6 GHz SP conf (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: remove support of several iwl_ppag_table_cmd versions (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: remove support of version 4 of iwl_wowlan_rsc_tsc_params_cmd (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: remove support of versions 4 and 5 of iwl_alive_ntf (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: remove support for iwl_mcc_update_resp versions (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: Revert "wifi: iwlwifi: mld: allow EMLSR with 2.4 GHz when BT is ON" (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: Revert "wifi: iwlwifi: mld: add kunit test for emlsr with bt on" (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: support iwl_omi_send_status_notif version 2 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: remove support for iwl_geo_tx_power_profiles_cmd version 4 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: remove an unused struct (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: remove support for REDUCE_TX_POWER_CMD ver 9 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove support for REDUCE_TX_POWER_CMD ver 6 and 7 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: Add dump handler to iwl_mvm (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm/mld: use average RSSI for beacons (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove extra link ID (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove IWL_MVM_ESR_EXIT_FAIL_ENTRY (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Add support to enqueue management frame at MLD level (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Enable memory profile selection for QCN9274 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Refactor macros to use memory profile-based values (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Remove redundant TID calculation for QCN9274 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Add a table of parameters entries impacting memory consumption (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: support average ack rssi in station dump (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: add support for accepting raw DSM tables by firmware (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: don't WARN on bad firmware input (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: don't remove all keys in mcast rekey (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: don't remove all keys in mcast rekey (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: always set the key idx in gtk_seq (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: set gtk id also in older FWs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: fix HE/EHT capabilities (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: add iwl_trans_is_dead() API (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: add iwl_trans_device_enabled() API (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: add suppress_cmd_error_once() API (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: restrict puncturing disable to FM (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove regulatory puncturing setup (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: update expected range response notification version (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: update the P2P device mac before starting the GO (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: fix scan request validation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Fix packets received in WBM error ring with REO LUT enabled (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: fix scan request validation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: add a missing include (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: trans: remove retake_ownership parameter from sw_reset (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: assign a FW API range for GF (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: assign a FW API range for HR (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: accept new devices for MVM-only configs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: inform me when op mode leaving (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: simplify iwl_poll_bits_mask return value (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove support for iwl_wowlan_status_v9 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove support for iwl_wowlan_status_v12 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: add a reference to iwl_wowlan_info_notif_v3 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove support for iwl_wowlan_info_notif_v2 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: bump minimum API version for SO/MA/TY (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: assign a FW API range for JF (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: handle non-overlapping API ranges (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: allow beacon protection keys to be installed in hardware (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: set RX_FLAG_SKIP_MONITOR in WBM error path (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: pack HTT pdev rate stats structs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: update unsupported bandwidth flags in reg rules (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: add the virtual monitor after reconfig complete (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: always initialize sdata::key_list (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: don't complete management TX on SAE commit (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211/mac80211: implement dot11ExtendedRegInfoSupport (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: send extended MLD capa/ops if AP has it (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: copy first_part into HW scan (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: add a flag for the first part of a scan (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: remove DISALLOW_PUNCTURING_5GHZ code (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: only verify part of Extended MLD Capabilities (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: nl80211: make nl80211_check_scan_flags() type safe (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: hide scan internals (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: fix deactivated link CSA (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: add mandatory bitrate support for 6 GHz (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: remove spurious blank line (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: verify state before connection (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Fix uninitialized variable with __free() in ieee80211_ml_epcs() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: avoid weird state in error path (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove support for iwl_wowlan_info_notif_v4 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: bump minimum API version in BZ (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove unneeded argument (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: remove MLO GTK rekey code (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: rename iwl_pci_gen1_2_probe() argument (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: match discrete/integrated to fix some names (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: remove Intel driver load message (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm/mld: make PHC messages debug messages (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: trans: remove iwl_trans_init (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie move common probe logic (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: bump FW API to 102 for BZ/SC/DR (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: Move txcmd size/align calculation to callers (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie move gen1_2 probe to gen1_2/trans.c (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: use PNVM data embedded in .ucode files (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: Add an helper function for polling bits (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: fix rx link assignment for non-MLO stations (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: move away from using a fake platform device (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Add num_stations counter for each interface (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: properly set bit for pdev mask for firmware PPDU_STATS request (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Block radio bring-up in FTM mode (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: advertise NL80211_FEATURE_TX_POWER_INSERTION support (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: add support for Tx Power insertion in RRM action frame (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: fetch tx_retry and tx_failed from htt_ppdu_stats_user_cmpltn_common_tlv (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: correctly update bw for ofdma packets (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: add EHT support for TX rate (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: add link support for multi-link in arsta (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: fill link station statistics for MLO (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7921s: Introduce SDIO WiFi/BT combo module card reset (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt792x: improve monitor interface handling (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt792x: Limit the concurrent STA and SoftAP to operate on the same channel (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7925: Fix null-ptr-deref in mt7925_thermal_init() (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38541} - wifi: mt76: Get rid of dma_sync_single_for_device() for MMIO devices (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: Move num_sta accounting in mt7996_mac_sta_{add,remove}_links (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: Add MLO support to mt7996_tx_check_aggr() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: Fix valid_links bitmask in mt7996_mac_sta_{add,remove} (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: Fix possible OOB access in mt7996_tx() (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38599} - wifi: mt76: mt7996: Fix mlink lookup in mt7996_tx_prepare_skb (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: Do not set wcid.sta to 1 in mt7996_mac_sta_event() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: Rely on for_each_sta_active_link() in mt7996_mcu_sta_mld_setup_tlv() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7996: Fix secondary link lookup in mt7996_mcu_sta_mld_setup_tlv() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: fix vif link allocation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: fix queue assignment for deauth packets (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: add a wrapper for wcid access with validation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7921: prevent decap offload config before STA initialization (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7925: prevent NULL pointer dereference in mt7925_sta_set_decap_offload() (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38450} - wifi: mt76: mt7925: fix incorrect scan probe IE handling for hw_scan (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7925: fix invalid array index in ssid assignment during hw scan (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7925: fix the wrong config for tx interrupt (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: Remove RCU section in mt7996_mac_sta_rc_work() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: Move RCU section in mt7996_mcu_add_rate_ctrl() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: Move RCU section in mt7996_mcu_add_rate_ctrl_fixed() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: Move RCU section in mt7996_mcu_set_fixed_field() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: Assume __mt76_connac_mcu_alloc_sta_req runs in atomic context (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: prevent A-MSDU attacks in mesh networks (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38512} - wifi: rt2x00: fix remove callback type mismatch (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: reject VHT opmode for unsupported channel widths (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38509} - wifi: mwifiex: discard erroneous disassoc frames on STA interface (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38505} - wifi: mac80211: fix non-transmitted BSSID profile search (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: clear frame buffer to never leak stack (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: correctly identify S1G short beacon (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Enable the new rtw89_8852bu module (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Add rtw8852bu.c (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8852b: Add rtw8852b_hfc_param_ini_usb (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8852b: Add rtw8852b_dle_mem_usb3 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8852b: Fix rtw8852b_pwr_{on,off}_func() for USB (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8852bx: Accept USB devices and load their MAC address (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: enter power save mode aggressively (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Enable the new USB modules (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Add rtw8851bu.c (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Add usb.{c,h} (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Add some definitions for USB (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Fix rtw89_mac_power_switch() for USB (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8851b: Modify rtw8851b_pwr_{on,off}_func() for USB (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Hide some errors when the device is unplugged (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Add extra TX headroom for USB (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Disable deep power saving for USB/SDIO (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Add rtw8851b_hfc_param_ini_usb (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Add rtw8851b_dle_mem_usb{2,3} (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Make hfc_param_ini in rtw89_chip_info an array (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: Make dle_mem in rtw89_chip_info an array (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8851b: Accept USB devices and load their MAC address (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8851b: rfk: update IQK to 0x14 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8851b: rfk: update DPK to 0x11 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8851b: update NCTL 0xB (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8851b: adjust ADC setting for RF calibration (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8851b: set ADC bandwidth select according to calibration value (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: 8851b: rfk: extend DPK path_ok type to u8 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw88: coex: Use bitwise instead of arithmetic operator for flags (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7925: fix off by one in mt7925_mcu_hw_scan() (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38600} - wifi: mt76: mt7915: mcu: re-init MCU before loading FW patch (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7915: mcu: lower default timeout (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mt76: mt7915: mcu: increase eeprom command timeout (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: Fix error code in iwl_op_mode_dvm_start() (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38656} - wifi: ath12k: add extended NSS bandwidth support for 160 MHz (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: add support for 160 MHz bandwidth (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: clean up 80P80 support (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: add support for setting fixed HE rate/GI/LTF (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: generate rx and tx mcs maps for supported HE mcs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: move HE MCS mapper to a separate function (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: push EHT MU-MIMO params to hardware (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: push HE MU-MIMO params to hardware (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath10k: shutdown driver when hardware is unreliable (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-39746} - wifi: cfg80211: fix S1G beacon head validation in nl80211 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: fix locking on invalid TOP reset (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: fix timeout while waiting for regulatory update during interface creation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath10k: Fix Spelling (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Add support to RTT stats (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Add support to TDMA and MLO stats (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Add support for transmit histogram stats (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Clear auth flag only for actual association in security mode (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: fix dest ring-buffer corruption when ring is full (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: fix source ring-buffer corruption (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: use plain access for descriptor length (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: fix dest ring-buffer corruption (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: fix dest ring-buffer corruption when ring is full (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: fix source ring-buffer corruption (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: use plain accesses for monitor descriptor (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: use plain access for descriptor length (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: fix dest ring-buffer corruption (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Send WMI_VDEV_SET_TPC_POWER_CMD for AP vdev (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Add memset and update default rate value in wmi tx completion (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Fix beacon reception for sta associated to Non-TX AP (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Fix station association with MBSSID Non-TX BSS (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: use real noise floor instead of default value (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: handle WMI event for real noise floor calculation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: Make read-only const array svc_id static const (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: fix suspend use-after-free after probe failure (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: clear initialized flag for deinit-ed srng lists (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38601} - dt-bindings: net: wireless: ath11k-pci: describe firmware-name property (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: support usercase-specific firmware overrides (Jose Ignacio Tornos Martinez) [RHEL-114889] - dt-bindings: net: wireless: ath9k: add WIFI bindings (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath9k: ahb: replace id_table with of (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath9k: ahb: reorder includes (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath9k: ahb: reorder declarations (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: dvm: fix potential overflow in rs_fill_link_cmd() (Jose Ignacio Tornos Martinez) [RHEL-114889] - iwlwifi: Add missing check for alloc_ordered_workqueue (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38602} - wifi: iwlwifi: Fix memory leak in iwl_mvm_init() (Jose Ignacio Tornos Martinez) [RHEL-114889] - iwlwifi: api: delete repeated words (Jose Ignacio Tornos Martinez) [RHEL-114889] - iwlwifi: remove unused no_sleep_autoadjust declaration (Jose Ignacio Tornos Martinez) [RHEL-114889] - iwlwifi: Fix comment typo (Jose Ignacio Tornos Martinez) [RHEL-114889] - iwlwifi: use DECLARE_BITMAP macro (Jose Ignacio Tornos Martinez) [RHEL-114889] - iwlwifi: fw: simplify the iwl_fw_dbg_collect_trig() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: ftm: fix switch end indentation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: don't exit EMLSR when we shouldn't (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: move _iwl_trans_set_bits_mask utilities (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: make iwl_mld_add_all_rekeys void (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: move iwl_trans_pcie_write_mem to iwl-trans.c (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: move iwl_trans_pcie_dump_regs() to utils.c (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: advertise support for TTLM changes (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: Block EMLSR when scanning on P2P Device (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: use the correct struct size for tracing (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: support RZL platform device ID (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: add HE 1024QAM for <242-tone RU for PE (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: make FSEQ version a debug message (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: convert to use secs_to_jiffies() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: fw: make PNVM version a debug message (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: make PHY config a debug message (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: fix kernel-doc warnings (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mei: fix kernel-doc warnings (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: fix kernel-doc warnings (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: dvm: fix some kernel-doc issues (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: defer MLO scan after link activation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: fix last_mlo_scan_time type (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: remove special FW error resume handling (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: add timer host wakeup debugfs (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: phy periph read - flow modification (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: fw: Fix possible memory leak in iwl_fw_dbg_collect (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: Add dump handler to iwl_mld (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: add support for the devcoredump (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: abort D3 handshake on error (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: reinit device properly during TOP reset (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mld: fix misspelling of 'established' (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: Remove unused cfg parameter from iwl_nvm_get_regdom_bw_flags (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: move dBm averaging function into utils (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: initiate TOP reset if requested (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: pcie: move generation specific files to a folder (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: enable antenna selection for AX210 family (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: parse VLP AP not allowed nvm channel flag (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: bump minimum API version in BZ/SC/DR (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: add support for S1G aggregation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: add support for storing station S1G capabilities (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: handle station association response with S1G (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: support configuration of S1G station capabilities (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Set RTS threshold on per-radio basis (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: Report per-radio RTS threshold to userspace (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: Add Support to Set RTS Threshold for each Radio (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211/mac80211: Add support to get radio index (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: add link_sta_statistics ops to fill link station statistics (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: correct RX stats packet increment for multi-link (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: extend support to fill link level sinfo structure (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: clear sinfo->filled for MLO station statistics (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: add support to accumulate removed link statistics (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: allocate memory for link_station info structure (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: add statistics for providing overview for MLO station (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: extend to embed link level statistics in NL message (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: add link_station_info structure to support MLO statistics (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: add support towards MLO handling of station statistics (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: finish link init before RCU publish (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: update radar_required in channel context after channel switch (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: brcmfmac: don't allow arp/nd offload to be enabled if ap mode exists (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: iwlwifi: mvm: assume '1' as the default mac_config_cmd version (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtlwifi: fix possible skb memory leak in `_rtl_pci_rx_interrupt()`. (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: fix beacon interval calculation overflow (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: report boottime of receiving beacon and probe response (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: avoid NULL dereference when RX problematic packet on unsupported 6 GHz band (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38646} - wifi: rtw89: correct length for IE18/19 PHY report and IE parser (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: update EDCCA report for subband 40M/80M/sub-20M (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: mac: differentiate mem_page_size by chip generation (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: Update Wi-Fi/Bluetooth coexistence version to 9.0.0 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: RTL8852B coexistence Wi-Fi firmware support for v0.29.122.0 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: Update Bluetooth slot length when Wi-Fi is scanning (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: Not to set slot duration to zero to avoid firmware issue (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: Assign priority table before entering power save (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: Update scoreboard to avoid Bluetooth re-link fail (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: Get Bluetooth desired version by WiFi firmware version (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: RTL8922A add Wi-Fi firmware support for v0.35.71.0 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: Query Bluetooth TX power when firmware support (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: Enable outsource info H2C command (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: rtw89: coex: Add v1 Bluetooth AFH handshake for WiFi 7 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Pass ab pointer directly to ath12k_dp_tx_get_encap_type() (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38605} - wifi: ath12k: Fix double budget decrement while reaping monitor ring (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Enable REO queue lookup table feature on QCN9274 hw2.0 (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Add missing include of export.h (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath11k: Add missing include of export.h (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath10k: Add missing include of export.h (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath9k: Add missing include of export.h (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath: Add missing include of export.h (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: remove monitor handling from ath12k_dp_rx_deliver_msdu() (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: install pairwise key first (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: avoid bit operation on key flags (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: handle regulatory hints during mac registration (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: update channel list in worker when wait flag is set (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: combine channel list for split-phy devices in single-wiphy (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Split scan request for split band device (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Prepare ahvif scan link for parallel scan (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: disable pdev for non supported country (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ath12k: Avoid accessing uninitialized arvif->ar during beacon miss (Jose Ignacio Tornos Martinez) [RHEL-114889] {CVE-2025-38606} - wifi: brcmfmac: Make read-only array cfg_offset static const (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: Add support for link reconfiguration negotiation offload to driver (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: Improve the documentation for NL80211_CMD_ASSOC_MLO_RECONF (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mwifiex: enable host mlme on sdio W8997 chipsets (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Fix bssid_indicator for MBSSID in AP mode (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Allow scan on a radio while operating on DFS on another radio (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: mac80211: Allow DFS/CSA on a radio if scan is ongoing on another radio (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: cfg80211: Add utility API to get radio index from channel (Jose Ignacio Tornos Martinez) [RHEL-114889] - wifi: ieee80211: add Radio Measurement action fields (Jose Ignacio Tornos Martinez) [RHEL-114889] - config: wifi: disable new unsupported configuration options (Jose Ignacio Tornos Martinez) [RHEL-114889] - PM: hibernate: shrink shmem pages after dev_pm_ops.prepare() (Anusha Srivatsa) [RHEL-116879] - redhat/configs: Add new configs from DRM 6.17 backport (Anusha Srivatsa) [RHEL-116879] - Revert "mm: rename call_mmap/mmap_prepare to vfs_mmap/mmap_prepare" (Anusha Srivatsa) [RHEL-116879] - Revert "mm: remove callers of pfn_t functionality" (Anusha Srivatsa) [RHEL-116879] - Merge DRM changes from upstream v6.16..v6.17 (Anusha Srivatsa) [RHEL-116879] - iommufd/selftest: Fix ioctl return value in _test_cmd_trigger_vevents() (Eder Zulian) [RHEL-116573] - lib/scatterlist: Add SG_MITER_LOCAL and use it (Eder Zulian) [RHEL-116573] - PCI: Fix driver_managed_dma check (Eder Zulian) [RHEL-116573] - iommu/selftest: prevent use of uninitialized variable (Eder Zulian) [RHEL-116573] - dma: kmsan: export kmsan_handle_dma() for modules (Eder Zulian) [RHEL-116573] - gpu: host1x: Do not assume that a NULL domain means no DMA IOMMU (Eder Zulian) [RHEL-116573] - iommu/vt-d: debugfs: Fix legacy mode page table dump logic (Eder Zulian) [RHEL-116573] - iommu/vt-d: Disallow dirty tracking if incoherent page walk (Eder Zulian) [RHEL-116573 RHEL-125486] {CVE-2025-40058} - iommufd: Register iommufd mock devices with fwspec (Eder Zulian) [RHEL-116573] - dma-mapping: fix direction in dma_alloc direction traces (Eder Zulian) [RHEL-116573] - KVM: PPC: Enable CAP_SPAPR_TCE_VFIO on pSeries KVM guests (Eder Zulian) [RHEL-116573] - redhat/configs: Enable CONFIG_X86_POSTED_MSI (Eder Zulian) [RHEL-116573] - iommufd/selftest: Update the fail_nth limit (Eder Zulian) [RHEL-116573] - iommufd: WARN if an object is aborted with an elevated refcount (Eder Zulian) [RHEL-116573] - iommufd: Fix race during abort for file descriptors (Eder Zulian) [RHEL-116573 RHEL-123791] {CVE-2025-39966} - iommufd: Fix refcounting race during mmap (Eder Zulian) [RHEL-116573] - iommu/amd/pgtbl: Fix possible race while increase page table level (Eder Zulian) [RHEL-116573] {CVE-2025-39961} - iommu/amd: Fix alias device DTE setting (Eder Zulian) [RHEL-116573] - iommu/vt-d: Fix __domain_mapping()'s usage of switch_to_super_page() (Eder Zulian) [RHEL-116573] - iommu/amd: Fix ivrs_base memleak in early_amd_iommu_init() (Eder Zulian) [RHEL-116573] - dma-debug: don't enforce dma mapping check on noncoherent allocations (Eder Zulian) [RHEL-116573] - dma/pool: Ensure DMA_DIRECT_REMAP allocations are decrypted (Eder Zulian) [RHEL-116573] - iommufd: Fix spelling errors in iommufd.rst (Eder Zulian) [RHEL-116573] - iommufd: viommu: free memory allocated by kvcalloc() using kvfree() (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-v3: Fix smmu_domain->nr_ats_masters decrement (Eder Zulian) [RHEL-116573] - iommu/tegra241-cmdqv: Fix missing cpu_to_le64 at lvcmdq_err_map (Eder Zulian) [RHEL-116573] - iommu/amd: Avoid stack buffer overflow from kernel cmdline (Eder Zulian) [RHEL-116573] {CVE-2025-38676} - iommu/arm-smmu-v3: Replace vsmmu_size/type with get_viommu_size (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-v3: Do not bother impl_ops if IOMMU_VIOMMU_TYPE_ARM_SMMUV3 (Eder Zulian) [RHEL-116573] - iommufd: Rename some shortterm-related identifiers (Eder Zulian) [RHEL-116573] - iommufd/selftest: Add coverage for vdevice tombstone (Eder Zulian) [RHEL-116573] - iommufd/selftest: Explicitly skip tests for inapplicable variant (Eder Zulian) [RHEL-116573] - iommufd/vdevice: Remove struct device reference from struct vdevice (Eder Zulian) [RHEL-116573] - iommufd: Destroy vdevice on idevice destroy (Eder Zulian) [RHEL-116573] - iommufd: Add a pre_destroy() op for objects (Eder Zulian) [RHEL-116573] - iommufd: Add iommufd_object_tombstone_user() helper (Eder Zulian) [RHEL-116573] - iommufd/viommu: Roll back to use iommufd_object_alloc() for vdevice (Eder Zulian) [RHEL-116573] - iommufd/selftest: Test reserved regions near ULONG_MAX (Eder Zulian) [RHEL-116573] - iommufd: Prevent ALIGN() overflow (Eder Zulian) [RHEL-116573] {CVE-2025-38688} - iommu/tegra241-cmdqv: import IOMMUFD module namespace (Eder Zulian) [RHEL-116573] - iommufd: Do not allow _iommufd_object_alloc_ucmd if abort op is set (Eder Zulian) [RHEL-116573] - iommu/tegra241-cmdqv: Add IOMMU_VEVENTQ_TYPE_TEGRA241_CMDQV support (Eder Zulian) [RHEL-116573] - iommu/tegra241-cmdqv: Add user-space use support (Eder Zulian) [RHEL-116573] - iommu/tegra241-cmdqv: Do not statically map LVCMDQs (Eder Zulian) [RHEL-116573] - iommu/tegra241-cmdqv: Simplify deinit flow in tegra241_cmdqv_remove_vintf() (Eder Zulian) [RHEL-116573] - iommu/tegra241-cmdqv: Use request_threaded_irq (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-v3-iommufd: Add hw_info to impl_ops (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-v3-iommufd: Add vsmmu_size/type and vsmmu_init impl ops (Eder Zulian) [RHEL-116573] - iommufd/selftest: Update hw_info coverage for an input data_type (Eder Zulian) [RHEL-116573] - iommufd: Allow an input data_type via iommu_hw_info (Eder Zulian) [RHEL-116573] - iommu: Allow an input type in hw_info op (Eder Zulian) [RHEL-116573] - Documentation: userspace-api: iommufd: Update HW QUEUE (Eder Zulian) [RHEL-116573] - iommufd/selftest: Add coverage for the new mmap interface (Eder Zulian) [RHEL-116573] - iommufd: Add mmap interface (Eder Zulian) [RHEL-116573] - iommufd/selftest: Add coverage for IOMMUFD_CMD_HW_QUEUE_ALLOC (Eder Zulian) [RHEL-116573] - iommufd/driver: Add iommufd_hw_queue_depend/undepend() helpers (Eder Zulian) [RHEL-116573] - iommufd/viommu: Add IOMMUFD_CMD_HW_QUEUE_ALLOC ioctl (Eder Zulian) [RHEL-116573] - iommufd/viommu: Introduce IOMMUFD_OBJ_HW_QUEUE and its related struct (Eder Zulian) [RHEL-116573] - iommufd/viommu: Add driver-defined vDEVICE support (Eder Zulian) [RHEL-116573] - iommufd/access: Bypass access->ops->unmap for internal use (Eder Zulian) [RHEL-116573] - iommufd/access: Add internal APIs for HW queue to use (Eder Zulian) [RHEL-116573] - iommufd/selftest: Add coverage for viommu data (Eder Zulian) [RHEL-116573] - iommufd/selftest: Support user_data in mock_viommu_alloc (Eder Zulian) [RHEL-116573] - iommufd/viommu: Allow driver-specific user data for a vIOMMU object (Eder Zulian) [RHEL-116573] - iommu: Pass in a driver-level user data structure to viommu_init op (Eder Zulian) [RHEL-116573] - iommu: Add iommu_copy_struct_to_user helper (Eder Zulian) [RHEL-116573] - iommu: Use enum iommu_hw_info_type for type in hw_info op (Eder Zulian) [RHEL-116573] - iommufd/viommu: Explicitly define vdev->virt_id (Eder Zulian) [RHEL-116573] - iommufd: Correct virt_id kdoc at struct iommu_vdevice_alloc (Eder Zulian) [RHEL-116573] - iommufd: Report unmapped bytes in the error path of iopt_unmap_iova_range (Eder Zulian) [RHEL-116573] - iommufd: Apply the new iommufd_object_alloc_ucmd helper (Eder Zulian) [RHEL-116573] - iommufd: Introduce iommufd_object_alloc_ucmd helper (Eder Zulian) [RHEL-116573] - iommufd: Move _iommufd_object_alloc out of driver.c (Eder Zulian) [RHEL-116573] - iommu: Deprecate viommu_alloc op (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-v3: Replace arm_vsmmu_alloc with arm_vsmmu_init (Eder Zulian) [RHEL-116573] - iommufd/selftest: Replace mock_viommu_alloc with mock_viommu_init (Eder Zulian) [RHEL-116573] - iommufd/selftest: Drop parent domain from mock_iommu_domain_nested (Eder Zulian) [RHEL-116573] - iommufd/viommu: Support get_viommu_size and viommu_init ops (Eder Zulian) [RHEL-116573] - iommu: Introduce get_viommu_size and viommu_init ops (Eder Zulian) [RHEL-116573] - iommufd: Return EOPNOTSUPP for failures due to driver bugs (Eder Zulian) [RHEL-116573] - iommufd: Use enum iommu_veventq_type for type in struct iommufd_veventq (Eder Zulian) [RHEL-116573] - iommufd: Use enum iommu_viommu_type for type in struct iommufd_viommu (Eder Zulian) [RHEL-116573] - iommufd: Drop unused ictx in struct iommufd_vdevice (Eder Zulian) [RHEL-116573] - iommufd: Apply obvious cosmetic fixes (Eder Zulian) [RHEL-116573] - iommu/arm-smmu: disable PRR on SM8250 (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-v3: Revert vmaster in the error path (Eder Zulian) [RHEL-116573] - iommu/io-pgtable-arm: Remove unused macro iopte_prot (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-qcom: Add SM6115 MDSS compatible (Eder Zulian) [RHEL-116573] {CVE-2025-39739} - iommu/amd: Fix geometry.aperture_end for V2 tables (Eder Zulian) [RHEL-116573] - iommu/amd: Wrap debugfs ABI testing symbols snippets in literal code blocks (Eder Zulian) [RHEL-116573] - iommu/amd: Add documentation for AMD IOMMU debugfs support (Eder Zulian) [RHEL-116573] - iommu/amd: Add debugfs support to dump IRT Table (Eder Zulian) [RHEL-116573] - iommu/amd: Add debugfs support to dump device table (Eder Zulian) [RHEL-116573] - iommu/amd: Add support for device id user input (Eder Zulian) [RHEL-116573] - iommu/amd: Add debugfs support to dump IOMMU command buffer (Eder Zulian) [RHEL-116573] - iommu/amd: Add debugfs support to dump IOMMU Capability registers (Eder Zulian) [RHEL-116573] - iommu/amd: Add debugfs support to dump IOMMU MMIO registers (Eder Zulian) [RHEL-116573] - iommu/amd: Refactor AMD IOMMU debugfs initial setup (Eder Zulian) [RHEL-116573] - iommu/amd: Enable PASID and ATS capabilities in the correct order (Eder Zulian) [RHEL-116573] - iommu/vt-d: Fix UAF on sva unbind with pending IOPFs (Eder Zulian) [RHEL-116573] {CVE-2025-38594} - iommu/vt-d: Make iotlb_sync_map a static property of dmar_domain (Eder Zulian) [RHEL-116573] - iommu/vt-d: Deduplicate cache_tag_flush_all by reusing flush_range (Eder Zulian) [RHEL-116573] - iommu/vt-d: Fix missing PASID in dev TLB flush with cache_tag_flush_all (Eder Zulian) [RHEL-116573] - iommu/vt-d: Split paging_domain_compatible() (Eder Zulian) [RHEL-116573] - iommu/vt-d: Split intel_iommu_enforce_cache_coherency() (Eder Zulian) [RHEL-116573] - iommu/vt-d: Create unique domain ops for each stage (Eder Zulian) [RHEL-116573] - iommu/vt-d: Split intel_iommu_domain_alloc_paging_flags() (Eder Zulian) [RHEL-116573] - iommu/vt-d: Do not wipe out the page table NID when devices detach (Eder Zulian) [RHEL-116573] - iommu/vt-d: Fold domain_exit() into intel_iommu_domain_free() (Eder Zulian) [RHEL-116573] - iommu/vt-d: Lift the __pa to domain_setup_first_level/intel_svm_set_dev_pasid() (Eder Zulian) [RHEL-116573] - iommu/vt-d: Optimize iotlb_sync_map for non-caching/non-RWBF modes (Eder Zulian) [RHEL-116573] - iommu/vt-d: Remove the CONFIG_X86 wrapping from iommu init hook (Eder Zulian) [RHEL-116573] - iommu/intel: Convert to msi_create_parent_irq_domain() helper (Eder Zulian) [RHEL-116573] - iommu/amd: Convert to msi_create_parent_irq_domain() helper (Eder Zulian) [RHEL-116573] - iommu: Remove ops->pgsize_bitmap (Eder Zulian) [RHEL-116573] - iommu: Remove iommu_ops pgsize_bitmap from simple drivers (Eder Zulian) [RHEL-116573] - iommu: Remove ops.pgsize_bitmap from drivers that don't use it (Eder Zulian) [RHEL-116573] - iommu/arm-smmu: Remove iommu_ops pgsize_bitmap (Eder Zulian) [RHEL-116573] - qiommu/arm-smmu-v3: Remove iommu_ops pgsize_bitmap (Eder Zulian) [RHEL-116573] - dmaengine: idxd: Remove unnecessary IOMMU_DEV_FEAT_IOPF (Eder Zulian) [RHEL-116573] - dma-contiguous: hornor the cma address limit setup by user (Eder Zulian) [RHEL-116573] - iommufd/selftest: Fix build warnings due to uninitialized mfd (Eder Zulian) [RHEL-116573] - iommufd/selftest: Add asserts testing global mfd (Eder Zulian) [RHEL-116573] - iommufd/selftest: Add missing close(mfd) in memfd_mmap() (Eder Zulian) [RHEL-116573] - iommufd/selftest: Fix iommufd_dirty_tracking with large hugepage sizes (Eder Zulian) [RHEL-116573] - iommu/tegra: Fix incorrect size calculation (Eder Zulian) [RHEL-116573] - scatterlist: fix extraneous '@'-sign kernel-doc notation (Eder Zulian) [RHEL-116573] - scatterlist: inline sg_next() (Eder Zulian) [RHEL-116573] - iommu: Clear the freelist after iommu_put_pages_list() (Eder Zulian) [RHEL-116573] - iommu: make inclusion of amd directory conditional (Eder Zulian) [RHEL-116573] - iommu: make inclusion of intel directory conditional (Eder Zulian) [RHEL-116573] - iommu: Cleanup comments for dev_enable/disable_feat (Eder Zulian) [RHEL-116573] - iommu: Hide ops.domain_alloc behind CONFIG_FSL_PAMU (Eder Zulian) [RHEL-116573] - iommu: Do not call domain_alloc() in iommu_sva_domain_alloc() (Eder Zulian) [RHEL-116573] - iommu/virtio: Move to domain_alloc_paging() (Eder Zulian) [RHEL-116573] - iommu: Add domain_alloc_identity() (Eder Zulian) [RHEL-116573] - iommu/virtio: Break out bypass identity support into a global static (Eder Zulian) [RHEL-116573] - iommu: Remove iommu_dev_enable/disable_feature() (Eder Zulian) [RHEL-116573] - iommufd: Remove unnecessary IOMMU_DEV_FEAT_IOPF (Eder Zulian) [RHEL-116573] - iommufd/selftest: Put iopf enablement in domain attach path (Eder Zulian) [RHEL-116573] - iommu/vt-d: Put iopf enablement in domain attach path (Eder Zulian) [RHEL-116573] - iommu: Remove IOMMU_DEV_FEAT_SVA (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-v3: Put iopf enablement in the domain attach path (Eder Zulian) [RHEL-116573] - iommu: Split out and tidy up Arm Kconfig (Eder Zulian) [RHEL-116573] - iommu: Avoid introducing more races (Eder Zulian) [RHEL-116573] - iommu/vtd: Remove iommu_alloc_pages_node() (Eder Zulian) [RHEL-116573] - iommu/amd: Use iommu_alloc_pages_node_sz() for the IRT (Eder Zulian) [RHEL-116573] - iommu/pages: Remove iommu_alloc_page_node() (Eder Zulian) [RHEL-116573] - iommu/pages: Remove iommu_alloc_page/pages() (Eder Zulian) [RHEL-116573] - iommu: Update various drivers to pass in lg2sz instead of order to iommu pages (Eder Zulian) [RHEL-116573] - iommu/amd: Use roundup_pow_two() instead of get_order() (Eder Zulian) [RHEL-116573] - iommu/amd: Change rlookup, irq_lookup, and alias to use kvalloc() (Eder Zulian) [RHEL-116573] - iommu/pages: Allow sub page sizes to be passed into the allocator (Eder Zulian) [RHEL-116573] - iommu/pages: Move the __GFP_HIGHMEM checks into the common code (Eder Zulian) [RHEL-116573] - iommu/pages: Move from struct page to struct ioptdesc and folio (Eder Zulian) [RHEL-116573] - iommu/pages: Remove iommu_put_pages_list_old and the _Generic (Eder Zulian) [RHEL-116573] - iommu: Change iommu_iotlb_gather to use iommu_page_list (Eder Zulian) [RHEL-116573] - iommu/amd: Convert to use struct iommu_pages_list (Eder Zulian) [RHEL-116573] - iommu/pages: Formalize the freelist API (Eder Zulian) [RHEL-116573] - iommu/pages: De-inline the substantial functions (Eder Zulian) [RHEL-116573] - iommu/pages: Remove iommu_free_page() (Eder Zulian) [RHEL-116573] - iommu/pages: Remove the order argument to iommu_free_pages() (Eder Zulian) [RHEL-116573] - iommu/pages: Make iommu_put_pages_list() work with high order allocations (Eder Zulian) [RHEL-116573] - iommu/pages: Remove __iommu_alloc_pages()/__iommu_free_pages() (Eder Zulian) [RHEL-116573] - iommu/tegra: Do not use struct page as the handle for pts (Eder Zulian) [RHEL-116573] - iommu/terga: Do not use struct page as the handle for as->pd memory (Eder Zulian) [RHEL-116573] - iommu/amd: Add support for HTRangeIgnore feature (Eder Zulian) [RHEL-116573] - iommu/amd: Ensure GA log notifier callbacks finish running before module unload (Eder Zulian) [RHEL-116573] - iommu/vt-d: Change dmar_ats_supported() to return boolean (Eder Zulian) [RHEL-116573] - iommu/vt-d: Eliminate pci_physfn() in dmar_find_matched_satc_unit() (Eder Zulian) [RHEL-116573] - iommu/vt-d: Replace spin_lock with mutex to protect domain ida (Eder Zulian) [RHEL-116573] - iommu/vt-d: Use ida to manage domain id (Eder Zulian) [RHEL-116573] - iommu/vt-d: Restore WO permissions on second-level paging entries (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-qcom: Add SAR2130P MDSS compatible (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-qcom: Make set_stall work when the device is on (Eder Zulian) [RHEL-116573] - iommu/arm-smmu: Move handing of RESUME to the context fault handler (Eder Zulian) [RHEL-116573] - iommu/arm-smmu-qcom: Enable threaded IRQ for Adreno SMMUv2/MMU500 (Eder Zulian) [RHEL-116573] - iommu/io-pgtable-arm: Add quirk to quiet WARN_ON() (Eder Zulian) [RHEL-116573] - s390/mm: Fix __ptep_rdp() inline assembly (Mete Durlu) [RHEL-129169] - wifi: iwlwifi: Fix incorrect logic on cmd_ver range checking (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: dvm: restore n_no_reclaim_cmds setting (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: Limit cb_size to valid range (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: don't wait when there is no vdev started (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: don't use static variables in ath12k_wmi_fw_stats_process() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: avoid burning CPU while waiting for firmware stats (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix documentation on firmware stats (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: don't activate more links than firmware supports (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: update link active in case two links fall on the same MAC (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: support WMI_MLO_LINK_SET_ACTIVE_CMDID command (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: update freq range for each hardware mode (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: parse and save sbs_lower_band_end_freq from WMI_SERVICE_READY_EXT2_EVENTID event (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: parse and save hardware mode info from WMI_SERVICE_READY_EXT_EVENTID event for later use (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Avoid CPU busy-wait by handling VDEV_STAT and BCN_STAT (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: don't WARN for late channel/color switch (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: drop invalid source address OCB frames (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: remove zero-length arrays (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: coex: Add PTA grant signal setting offload to firmware feature (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: coex: Update hardware PTA resource binding logic (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: coex: Update BTG control for WiFi 7 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: coex: Update Pre-AGC logic for WiFi 7 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: coex: Add H2C command to collect driver outsource information to firmware (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: coex: refine debug log with format version and readable string (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: coex: Update Wi-Fi status logic for WiFi 7 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: coex: Implement Wi-Fi MLO related logic (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: coex: RTL8922A add Wi-Fi firmware support for v0.35.63.0 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: introduce rtw89_query_mr_chanctx_info() for multi-role chanctx info (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: scan abort when assign/unassign_vif (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: enlarge TX retry count when GC auth (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: use anchor pattern when bcn offset less than min of tob (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: clear normal flow NoA when MCC start (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: enlarge scan time of GC when GO in MCC (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: adjust TX nulldata early time from 3ms to 7ms (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: TX nulldata 0 after scan complete (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: stop TX during MCC prepare (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: adjust beacon filter when MCC and detect connection (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: correct frequency when MCC (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: update format of RF notify MCC H2C command (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: extend HW scan of WiFi 6 chips for extra OP chan when concurrency (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtlwifi: fix possible skb memory leak in _rtl_pci_init_one_rxdesc() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtlwifi: rtl8821ae: make the read-only array params static const (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtlwifi: avoid stack size warning for _read_eeprom_info (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: cfg80211: use kfree_sensitive() for connkeys cleanup (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: move iwl-context-info header files (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: add missing TOP reset code (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: respect AUTO_EML_ENABLE in iwl_mld_int_mlo_scan() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: respect AUTO_EML_ENABLE in iwl_mld_retry_emlsr() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: remove unneeded compilations (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: Enable AP and adhoc modes for SDIO again (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: Rename the RTW_WCPU_11{AC,N} enums (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8922a: pass channel information when enter LPS (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: add chip_ops::chan_to_rf18_val to get code of RF register value (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mac: add dummy handler of MAC C2H event class 27 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: rfk: support IQK firmware command v1 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: fw: add RFE type to RF TSSI H2C command (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8852c: increase beacon loss to 6 seconds (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: fix EHT 20MHz TX rate for non-AP STA (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: add EHT physts and adjust init flow accordingly (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: implement channel switch support (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: chan: re-config default chandef only when none is registered (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: chan: concentrate the logic of setting/clearing chanctx bitmap (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: sar: do not assert wiphy lock held until probing is done (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: sar: drop lockdep assertion in rtw89_set_sar_from_acpi (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38647} - wifi: rtw89: fix spelling mistake of RTW89_FLAG_FORBIDDEN_TRACK_WORK (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: prevent shift wrapping in rtw89_core_mlsr_switch() (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38657} - wifi: rtw89: pci: add PCI Express error handling (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: pci: add PCI Express error handling (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtlwifi: Constify struct rtl_hal_ops and rtl_hal_cfg (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: d3: Avoid -Wflex-array-member-not-at-end warnings (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix hal_reo_cmd_status kernel-doc (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix GCC_GCC_PCIE_HOT_RST definition for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38414} - wifi: ath11k: validate ath11k_crypto_mode on top of ath11k_core_qmi_firmware_ready (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: consistently use ath11k_mac_get_fw_stats() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: move locking outside of ath11k_mac_get_fw_stats() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: adjust unlock sequence in ath11k_update_stats_event() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: move some firmware stats related functions outside of debugfs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: don't wait when there is no vdev started (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: don't use static variables in ath11k_debugfs_fw_stats_process() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: avoid burning CPU in ath11k_debugfs_fw_stats_request() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath10k: Avoid vdev delete timeout when firmware is already down (Jose Ignacio Tornos Martinez) [RHEL-122256] - ath10k: snoc: fix unbalanced IRQ enable in crash recovery (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: cfg80211/mac80211: correctly parse S1G beacon optional elements (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: Move regulatory domain initialization (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: fix non-MSIX handshake register (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: avoid panic on init failure (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38121} - wifi: iwlwifi: mvm: fix assert on suspend (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: Work around Clang loop unrolling bug (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: support power delta calculation for 5 TX paths (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: fix available_antennas setting (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: fix RX buffer size of MCU event (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: change max beacon size (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: fix invalid NSS setting when TX path differs from NSS (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: drop fragments with multicast or broadcast RA (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38343} - wifi: mt76: mt7996: set EHT max ampdu length capability (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: fix beamformee SS field (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: remove capability of partial bandwidth UL MU-MIMO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7925: add test mode support (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7925: extend MCU support for testmode (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7925: ensure all MCU commands wait for response (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7925: refine the sniffer commnad (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7925: prevent multiple scan commands (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7915: Fix null-ptr-deref in mt7915_mmio_wed_init() (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38155} - wifi: mt76: mt7996: Fix null-ptr-deref in mt7996_mmio_wed_init() (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38156} - wifi: mt76: mt7925: add RNR scan support for 6GHz (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: add mt76_connac_mcu_build_rnr_scan_param routine (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix regdomain update failure when connection establishes (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix regdomain update failure when adding interface (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix regdomain update failure after 11D scan completes (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: remove duplicate check in mt7996_mcu_sta_mld_setup_tlv() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: fix uninitialized symbol warning (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: avoid null deref in mt7996_stop_phy() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: avoid NULL pointer dereference in mt7996_set_monitor() (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38316} - wifi: mt76: mt7921: add 160 MHz AP for mt7922 device (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7925: fix host interrupt register initialization (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7925: introduce thermal protection (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: Remove an unneeded local variable in mt76x02_dma_init() (Jose Ignacio Tornos Martinez) [RHEL-122256] - Revert "wifi: mt76: mt7996: fill txd by host driver" (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: Add NULL check in mt7996_thermal_init (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38281} - wifi: mt76: mt7925: add EHT preamble puncturing (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: rework radar HWRDD idx (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7915: rework radar HWRDD idx (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7915: set correct background radar capability (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: add PCI device id for mt7990 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: rework background radar check for mt7990 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: connac: rework TX descriptor and TX free for mt7990 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: adjust HW capabilities for mt7990 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: add eeprom support for mt7990 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: rework register mapping for mt7990 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: rework DMA configuration for mt7990 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: rework WA mcu command for mt7990 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: connac: add support to load firmware for mt7990 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mt76: mt7996: add macros for pci device ids (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: accept probe response on link address as well (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: validate SCAN_FLAG_AP in scan request during MLO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: check if socket flags are valid (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix mac pdev frequency range update (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath9k_htc: Abort software beacon handling if disabled (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38157} - wifi: ath12k: remove redundant regulatory rules intersection logic in host (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Send MCS15 support to firmware during peer assoc (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix scan initiation failure handling (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix memory leak in WMI firmware stats (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix ring-buffer corruption (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix memory leak in ath12k_service_ready_ext_event (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-39890} - dt-bindings: net: wireless: ath12k: describe firmware-name property (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: support usercase-specific firmware overrides (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Adjust the process of resource release for ahb bus (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Reorder and relocate the release of resources in ath12k_core_deinit() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: print device dp stats in debugfs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Add device dp stats support (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: change soc name to device name (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix invalid RSSI values in station dump (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: pass link_conf for tx_arvif retrieval (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: update EMLSR capabilities of ML Station (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Prevent multicast duplication for dynamic VLAN (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Enable AST index based address search in Station Mode (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: enable monitor mode for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: use different packet offset for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: init monitor parameters for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add support to reap and process mon dest ring (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: use ath12k_buffer_addr in ath12k_dp_rx_link_desc_return() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix macro definition HAL_RX_MSDU_PKT_LENGTH_GET (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add support to reap and process monitor status ring (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add monitor mode handler by monitor status ring interrupt (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add interrupt configuration for mon status ring (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add ring config for monitor mode on WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add srng config template for mon status ring (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: avoid call ath12k_dp_mon_parse_rx_dest_tlv() for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: parse msdu_end tlv in ath12k_dp_mon_rx_parse_status_tlv() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Abort scan before removing link interface to prevent duplicate deletion (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: use WMI_VDEV_SET_TPC_POWER_CMDID when EXT_TPC_REG_SUPPORT for 6 GHz (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add handler for WMI_VDEV_SET_TPC_POWER_CMDID (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fill parameters for vdev set TPC power WMI command (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: save max transmit power in vdev start response event from firmware (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add parse of transmit power envelope element (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: save power spectral density(PSD) of regulatory rule (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: update regulatory rules when connection established (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: update regulatory rules when interface added (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: determine interface mode in _op_add_interface() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: store reg info for later use (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: move reg info handling outside (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add support to select 6 GHz regulatory type (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: refactor ath12k_reg_build_regd() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: refactor ath12k_reg_chan_list_event() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix a possible dead lock caused by ab->base_lock (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: delete mon reap timer (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Add support to simulate firmware crash (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: support DBS and DFS compatibility (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: fix rx completion meta data corruption (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: fix ring-buffer corruption (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: Fix QMI memory reuse logic (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath9k: ahb: do ioremap resource in one step (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath10k: Constify structures in hw.c (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath10k: Fix spelling mistake "comple" -> "complete" (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Use scan link ID 15 for all scan operations (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: handle scan link during vdev create (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: read country code from SMBIOS for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: handle non-MLO mode as well in ieee80211_num_beaconing_links() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: fix firmware scan delay unit for WiFi 6 chips (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: avoid redundant recalculations if no chance to improve (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: deal with non-periodic NoA (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: introduce calculation of anchor pattern (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: add courtesy mechanism conditions to P2P roles (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: drop queued chanctx changes when stopping (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: pass whom to stop at when pausing chanctx (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: Fix the random "error beacon valid" messages for USB (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: usb: Upload the firmware in bigger chunks (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: usb: Reduce control message timeout to 500 ms (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: pci: enlarge retry times of RX tag to 1000 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: leave idle mode when setting WEP encryption for AP mode (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: pci: configure manual DAC mode via PCI config API only (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38284} - wifi: iwlwifi: mld: allow 2 ROCs on the same vif (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: fw: api: include required headers in rs/location (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: rename ctx-info-gen3 to ctx-info-v2 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: fix a wrong comment (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: map iwl_context_info to the matching struct (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove unused macro (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: unify iwlagn_scd_bc_tbl_entry and iwl_gen3_bc_tbl_entry (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: use bc entries instead of bc table also for pre-ax210 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove GEN3 from a couple of macros (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: use normal versioning convention for iwl_tx_cmd (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: stop supporting TX_CMD_API_S_VER_8 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: reduce configuration struct size (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: clean up dr/br configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: Add helper function to extract device ID (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: mark Ty devices as discrete (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove MAC type/step matching (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: add a couple of older devices (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: fix PE RF names (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: fix and clean up FM/WH device matching (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: clean up GF device matching (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: clean up JF device matching (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: tests: make subdev match test more precise (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: clean up HR device matching (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: unify and add some Killer devices (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: fix and unify Killer/JF configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: fix Ma device configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: fix some device names (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove some unused names (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: add debug log instead of warning (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: dbg: fix dump trigger split check (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm/mld: allow puncturing use in 5 GHz (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: add support for ROC on BSS (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: Block EMLSR only when ready to enter ROC (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: move aux_sta member from iwl_mld_link to iwl_mld_vif (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: Fix ROC activity cleanup in iwl_mld_vif (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: Correct comments for cleanup functions (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: rename iwl_cfg to iwl_rf_cfg (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: clean up Sc/Dr/Br configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: add FM RF config (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: add GF RF config (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: unify HR configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: unify JF configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: unify num_rbds config (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: add ucode API min/max to MAC config (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: declare MLO support if prerequisites are met (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: debug: add mlo_mode dbgfs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: debug: add FW log component for MLO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: debug: add MLD table dump (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: debug: extend dbgfs for MLO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: add MLO track for MLSR switch decision (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: add handling of mlo_link_cfg H2C command and C2H event (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: chan: re-calculate MLO DBCC mode during setting channel (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: send nullfunc based on the given link (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: allow driver to do specific band TX for MLO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: extract link part from core tx write function (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: rtw8822bu VID/PID for BUFFALO WI-U2-866DM (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: Handle RTL8723D(S) with blank efuse (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: Fix RX aggregation settings for RTL8723DS (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove unused high_temp from iwl_cfg (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: move MAC parameters to MAC data (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove DCCM offsets from new devices (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove eeprom_size from new devices (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: rename struct iwl_base_params (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove rf_id field (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove dbgc_supported field (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: rename cfg_trans_params to mac_cfg (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pass trans to iwl_parse_nvm_mcc_info() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove nvm_hw_section_num from new devices (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: handle cc firmware dynamically (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: build ax210 family FW names dynamically (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove 'cdb' value (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove QuZ/JF special cases (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: build 9000 series FW filenames dynamically (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: add JF1/JF2 RF for dynamic FW building (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: remove 0x2726 devices (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: inline HT params (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove 6 GHz from ht40_bands (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: call thermal exit without wiphy lock held (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: avoid init-after-queue (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: use a radio/system specific power budget (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: use a radio/system specific power budget (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: fix thermal code compilation with -Werror=cast-qual (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: remove iwl_trans_pcie_gen2_send_hcmd (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: Add support for a new version for link config command (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: Add a new version for mac config command (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: Add a new version for sta config command (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: add range response version 10 support (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: remove one more error in unallocated BAID (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: Update MCS15 support in link_conf (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: brcmfmac: Fix structure size for WPA3 external SAE (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: brcmfmac: cyw: support external SAE authentication in station mode (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: brcmfmac: make per-vendor event map const (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: brcmfmac: support per-vendor cfg80211 callbacks and firmware events (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: do not offer a mesh path if forwarding is disabled (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: handle v3 rates (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: add RFI_CONFIG_CMD to iwl_mld_system_names array (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: fix 6005N/SFF match (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: make iwl_uefi_get_uats_table() return void (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: drop whtc RF (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: add support PE RF (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: debug: set CDB indication from CSR (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: fix beacon CCK flag (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove NVM C step override (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: dvm: init 'keep_alive_beacons' in power tables (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: add debugfs for using ptp clock time for monitor interface (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: log async commands (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: don't check the TPT counters when scanning (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: print the DSM value when read from UEFI (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: dvm: pair transport op-mode enter/leave (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: tests: simplify devinfo_no_trans_cfg_dups() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: use minimum API version 97 for Sc/Dr (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: tests: allow same config for different MACs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: bump FW API to 99 for BZ/SC/DR devices (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: remove HT greenfield support (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: don't report bad EHT rate to mac80211 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: don't report bad EHT rate to mac80211 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: build HT/VHT injected rate in v2 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: rename modulation type values (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: fw: remove RATE_MCS_NSS_POS (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove sku_id from trans (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: trans: move ext_32khz_clock_valid to config (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: move STEP config into trans->conf (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: rework transport configuration (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: trans: collect device information (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: trans: remove SCD base address validation (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlfiwi: mvm: Fix the rate reporting (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove bc_table_dword transport config (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: remove constant wdg_timeout (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: trans: remove hw_wfpm_id (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: trans: remove hw_id_str (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pass full FW info to transport (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: handle reasons recommended by FW for leaving EMLSR (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove PM mode and send-in-D3 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: unexport iwl_trans_pcie_send_hcmd() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: move wait_command_queue into PCIe (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: move invalid TX CMD into PCIe (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: move ME check data to pcie (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: rename "continuous" memory (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove iwl_cmd_groups_verify_sorted() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: add command order checks to kunit (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: don't call itself indirectly (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove unnecessary configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: reduce mac_type to u8 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: tests: check for duplicate name strings (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: move all names out of configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: finish config split (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: minor fixes for Sc (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: remove 'ent' argument from alloc (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: rename BW_NO_LIMIT to BW_NOT_LIMITED (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: clean up BW limit and subdev matching (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: tests: check transport configs are not duplicated (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: tests: check configs are not duplicated (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove iwl_cfg_br (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove duplicated Sc device configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove duplicated iwl_cfg_gl (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove iwl_ax201_cfg_qu_hr (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove max_tx_agg_size (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove unused config externs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: unify Killer 1650s/i with Qu/Hr (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: unify Qu/QuZ configs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: cfg: remove fw_name_mac (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: tests: check for device names (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: add entry for Killer AX1650i on AdL-P (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: unify some configurations (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove duplicated line (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: Add support for new device ids (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: remove TH/TH1 RF types (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: clean up config macro (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: remove nl80211 testmode (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: set rx_mpdu_cmd_hdr_size (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: dvm: fix various W=1 warnings (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: force the responder to use the full bandwidth (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: start AP with the correct bandwidth (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: add monitor internal station (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: support for COMPRESSED_BA_RES_API_S_VER_7 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: support iwl_mac_power_cmd version 2 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: implement TOP reset (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: handle SW reset w/o NIC error (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: support ROC command version 6 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: support iwl_mac_power_cmd version 2 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: add support for ALIVE v8 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: add kunit test for emlsr with bt on (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: fw: support PPAG command version 7 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: fw: support reading PPAG BIOS table revision 4 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: rename ppag_ver to ppag_bios_rev (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: don't return an error if the FW is dead (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: check for NULL before referencing a pointer (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: allow EMLSR with 2.4 GHz when BT is ON (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: implement TOP reset follower (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: avoid scheduling restart during restart (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: tests: extend link pair tests (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: refactor tests to use chandefs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: send the WPFC table to the FW (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: read WPFC also from UEFI (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: prepare for reading WPFC from UEFI (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: Add short description to enum iwl_power_scheme (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: constrain TX power according to dynamic antenna power table (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: phy: add C2H event handler for report of FW scan (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: Fix inadverent sharing of struct ieee80211_supported_band data (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: Convert rtw89_core_set_supported_band to use devm_* (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: introduce helper to get designated link for MLO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: roc: dynamically handle link id and link instance index (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: Fill in correct Rx link ID for MLO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: add MLD capabilities declaration (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: extend join_info H2C command for MLO fields (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: Configure scan band when mlo_dbcc_mode changes (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: extend mapping from Qsel to DMA ch for MLO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: Adjust management queue mapping for [MLO, HW-1] (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8922a: use SW CRYPTO when broadcast in MLO mode (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8922a: rfk: adjust timeout time of RX DCK (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: fw: Remove "const" on allocation type (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtlwifi: Remove unused rtl_bb_delay() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtlwifi: Remove uncalled stub rtl*_phy_ap_calibrate (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtlwifi: Remove unused rtl_usb_{resume|suspend} (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: avoid that loose pattern sets negative timing for auxiliary GO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: refine filling function of start TSF (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: support courtesy mechanism on both roles at the same time (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: update entire plan when courtesy config changes (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: handle the case where NoA start time has passed (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: make GO+STA mode calculate dynamic beacon offset (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: don't re-randomize TSF of AP/GO (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: mcc: make GO announce one-time NoA for HW scan process (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: refactor flow that hw scan handles channel list (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: add suffix "_ax" to Wi-Fi 6 HW scan struct and func (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: acpi: introduce country specific TAS enabling (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8922a: increase beacon loss to 6 seconds (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: set pre-calculated antenna matrices for HE trigger frame (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: regd: indicate if regd_UK TX power settings follow regd_ETSI (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8922a: fix TX fail with wrong VCO setting (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8852c: update supported firmware format to 2 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: move phy_filters to fw_runtime (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: make sure to lock rxq->read (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: add definitions for iwl_mac_power_cmd version 2 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: simplify iwl_mld_rx_fill_status() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: rx: simplify channel handling (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: clean up band in RX metadata (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: skip unknown FW channel load values (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: define API for external FSEQ images (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: allow EMLSR on separated 5 GHz subbands (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: use cfg80211_chandef_get_width() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: fix iwl_mld_emlsr_disallowed_with_link() return (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: clarify variable type (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: pcie: add support for the reset handshake in MSI (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211_hwsim: Prevent tsf from setting if beacon is disabled (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: restructure tx profile retrieval for MLO MBSSID (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: nl80211: add link id of transmitted profile for MLO MBSSID (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ieee80211: Add helpers to fetch EMLSR delay and timeout values (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: update ML STA with EML capabilities (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: cfg80211: Add support to get EMLSR capabilities of non-AP MLD (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: VLAN traffic in multicast path (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: Create separate links for VLAN interfaces (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: Add link iteration macro for link data (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: remove mwifiex_sta_init_cmd() last argument (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: drop asynchronous init waiting code (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: let mwifiex_init_fw() return 0 for success (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: remove unnecessary queue empty check (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: set step_urm in transport and not in the opmodes (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: tests: simplify le32 bitfield handling (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: update the PHY_CONTEXT_CMD API (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: properly handle async notification in op mode start (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: refactor purging async notifications (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: don't do iwl_trans_stop_device twice (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: stop hw if mcc_init fails (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: avoid memory leak if mcc_init fails (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: remove stored_beacon support (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mld: remove P2P powersave tracking (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: parse active and 20 MHz AP NVM channel flag (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: re-add IWL_AMSDU_8K case (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: fw: do reset handshake during assert if needed (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: remove IWL_EMPTYING_HW_QUEUE_DELBA state (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: brcm80211: fmac: Add error log in brcmf_usb_dl_cmd() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ieee80211: define beacon protection bit field (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: wcn36xx: Don't use %%pK through printk (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: Don't use %%pK through printk (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: brcmsmac: Spelling corrections (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: move common settings out of switch/case (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: make locally used function static (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: fix indention (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: simplify mwifiex_setup_ht_caps() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: pass adapter to mwifiex_dnld_cmd_to_fw() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: make region_code_mapping_t const (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: drop unnecessary initialization (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: use adapter as context pointer for mwifiex_hs_activated_event() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mwifiex: deduplicate code in mwifiex_cmd_tx_rate_cfg() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: Replace __get_unaligned_cpu32 in mesh_pathtbl.c (Jose Ignacio Tornos Martinez) [RHEL-122256] - Revert "mac80211: Dynamically set CoDel parameters per station" (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: cfg80211/mac80211: remove more 5/10 MHz code (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: Avoid -Wflex-array-member-not-at-end warning (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: mac80211: Avoid -Wflex-array-member-not-at-end warnings (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: fw: api: Absolute rudimentary typo fixes in the file power.h (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: Add missing MODULE_FIRMWARE for Qu-c0-jf-b0 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: iwlwifi: mvm: Remove duplicated include in iwl-utils.c (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: free SKBTX_WIFI_STATUS skb tx_flags flag (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rt2x00: remove weird self-assignment in rt2800_loft_search() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Don't use %%pK through printk (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: Don't use %%pK through printk (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath10k: Don't use %%pK through printk (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix node corruption in ar->arvifs list (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38290} - wifi: ath12k: Prevent sending WMI commands to firmware during firmware crash (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38291} - wifi: ath12k: avoid multiple skb_cb fetch in ath12k_mac_mgmt_tx_wmi() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix wrong handling of CCMP256 and GCMP ciphers (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix the QoS control field offset to build QoS header (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Avoid allocating rx_stats when ext_rx_stats is disabled (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: avoid deadlock during regulatory update in ath12k_regd_update() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Add MSDU length validation for TKIP MIC error (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: correctly handle mcast packets for clients (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: using msdu end descriptor to check for rx multicast packets (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Update frequency range if reg rules changes (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix frequency range in driver (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Add helper function ath12k_mac_update_freq_range() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Use skb->len for dma_unmap_single() length parameter (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix memory leak during extended skb allocation (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Refactor tx descriptor handling in tx completion handler (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Handle error cases during extended skb allocation (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: do not ignore hardware read error during DPK (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: sdio: call rtw_sdio_indicate_tx_status unconditionally (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: sdio: map mgmt frames to queue TX_DESC_QSEL_MGMT (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: support 2 channels for single pdev device (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: don't skip non-primary links for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: alloc REO queue per station (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: group REO queue buffer parameters together (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: make assoc link associate first (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: identify assoc link vif in station mode (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: support MLO as well if single_chip_mlo_support flag is set (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: use fw_features only when it is valid (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: introduce ath12k_fw_feature_supported() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: reset MLO global memory during recovery (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: handle ath12k_core_reset() with hardware grouping (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: handle ath12k_core_restart() with hardware grouping (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix ath12k_core_pre_reconfigure_recovery() with grouping (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix firmware assert during reboot with hardware grouping (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix ATH12K_FLAG_REGISTERED flag handling (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix failed to set mhi state error during reboot with hardware grouping (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add reference counting for core attachment to hardware group (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix SLUB BUG - Object already free in ath12k_reg_free() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix buffer overflow in debugfs (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38317} - wifi: ath12k: Fix a couple NULL vs IS_ERR() bugs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: Use of_property_present() to test property presence (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix WMI tag for EHT rate in peer assoc (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Disable broadcast TWT feature in HE MAC capabilities (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Introduce check against zero for ahvif->key_cipher in ath12k_mac_op_tx() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Resolve multicast packet drop by populating key_cipher in ath12k_install_key() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix cleanup path after mhi init (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Add support for link specific datapath stats (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: replace the usage of rx desc with rx_info (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add rx_info to capture required field from rx descriptor (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: ahb: Replace del_timer_sync() with timer_delete_sync() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: Fix the module names printed in dmesg (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: Don't set SUPPORTS_AMSDU_IN_AMPDU for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: Set AMPDU factor to hardware for RTL8814A (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: usb: Enable RX aggregation for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: usb: Enable switching the RTL8814AU to USB 3 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix misspelling "upto" in dp.c (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix invalid memory access while forming 802.11 header (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix memory leak during vdev_id mismatch (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix incorrect rates sent to firmware (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Enable REO queue lookup table feature on QCN9274 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Add support to clear qdesc array in REO cache (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix the enabling of REO queue lookup table feature (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: fix node corruption in ar->arvifs list (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38293} - wifi: ath12k: Fix spelling errors in mac.c file (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: store and send country code to firmware after recovery (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add 11d scan offload support (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: use correct WMI command to set country code for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add configure country code for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Fix memory leak due to multiple rx_stats allocation (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38199} - Reapply "wifi: ath11k: restore country code during resume" (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: choose default PM policy for hibernation (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: support non-WoWLAN mode suspend as well (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: refactor ath11k_core_suspend/_resume() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: introduce ath11k_core_continue_suspend_resume() (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath11k: determine PM policy based on machine model (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: usb: Remove redundant 'flush_workqueue()' calls (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw88: sdio: Remove redundant 'flush_workqueue()' calls (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8852bx: support different SAR configs by antenna (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8852c: support different SAR configs by antenna (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: 8922a: support different SAR configs by antenna (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: sar: add skeleton for different configs by antenna (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: acpi: support loading GEO SAR tables (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: acpi: support loading dynamic SAR tables and indicator (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: acpi: support loading static SAR table (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: acpi: introduce method evaluation function for reuse (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: sar: add skeleton for SAR configuration via ACPI (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: sar: introduce structure to wrap query parameters (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: regd: introduce string getter for reuse (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: fix typo of "access" in rtw89_sar_info description (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: phy: reset value of force TX power for MAC ID (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: fw: cast mfw_hdr pointer from address of zeroth byte of firmware->data (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: rtw89: set 2TX for 1SS rate by default (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: extend dma mask to 36 bits (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add monitor interface support on QCN9274 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Move to NO_VIRTUAL monitor (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Refactor the monitor channel context procedure (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix NULL access in assign channel context handler (Jose Ignacio Tornos Martinez) [RHEL-122256] {CVE-2025-38294} - wifi: ath12k: Avoid packet offset and FCS length from Rx TLV (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: change the status update in the monitor Rx (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Replace band define G with GHZ where appropriate (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Avoid fetch Error bitmap and decap format from Rx TLV (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Add extra TLV tag parsing support in monitor Rx path (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix link valid field initialization in the monitor Rx (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: enable ath12k AHB support (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Power down userPD (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Power up userPD (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Register various userPD interrupts and save SMEM entries (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Power up root PD (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add AHB driver support for IPQ5332 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add support for fixed QMI firmware memory (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Add hw_params to remap CE register space for IPQ5332 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: avoid m3 firmware download in AHB device IPQ5332 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add ath12k_hw_params for IPQ5332 (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: refactor ath12k_hw_regs structure (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: fix incorrect CE addresses (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: don't put ieee80211_chanctx_conf struct in ath12k_link_vif (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: remove open parenthesis (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: add get_txpower mac ops (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: move firmware stats out of debugfs (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Pass correct values of center freq1 and center freq2 for 320 MHz (Jose Ignacio Tornos Martinez) [RHEL-122256] - wifi: ath12k: Pass correct values of center freq1 and center freq2 for 160 MHz (Jose Ignacio Tornos Martinez) [RHEL-122256] - config: wifi: disable new unsupported configuration options (Jose Ignacio Tornos Martinez) [RHEL-122256] - Reapply "wifi: iwlwifi: add support for BE213" (Jose Ignacio Tornos Martinez) [RHEL-122256] - Reapply "wifi: iwlwifi: make no_160 more generic" (Jose Ignacio Tornos Martinez) [RHEL-122256] - mptcp: fix address removal logic in mptcp_pm_nl_rm_addr (Davide Caratti) [RHEL-115576] - mptcp: sched: remove mptcp_sched_data (Davide Caratti) [RHEL-115576] - mptcp: pm: Return local variable instead of freed pointer (Davide Caratti) [RHEL-115576] - mptcp: pm: Defer freeing of MPTCP userspace path manager entries (Davide Caratti) [RHEL-115576] - mptcp: fix for setting remote ipv4mapped address (Davide Caratti) [RHEL-115576] - selftests: mptcp: ignore mptcp_diag binary (Davide Caratti) [RHEL-115576] - selftests: mptcp: diag: use mptcp_lib_get_info_value (Davide Caratti) [RHEL-115576] - mptcp: remove unneeded mptcp_move_skb() (Davide Caratti) [RHEL-115576] - selftests: mptcp: join: validate C-flag + def limit (Davide Caratti) [RHEL-115576] - mptcp: pm: in-kernel: usable client side with C-flag (Davide Caratti) [RHEL-115576] - mptcp: remove unused returned value of check_data_fin (Davide Caratti) [RHEL-115576] - mptcp: Call dst_release() in mptcp_active_enable(). (Davide Caratti) [RHEL-115576] - mptcp: pm: netlink: fix if-idx type (Davide Caratti) [RHEL-115576] - selftests: mptcp: sockopt: fix error messages (Davide Caratti) [RHEL-115576] - mptcp: tfo: record 'deny join id0' info (Davide Caratti) [RHEL-115576] - selftests: mptcp: userspace pm: validate deny-join-id0 flag (Davide Caratti) [RHEL-115576] - mptcp: pm: nl: announce deny-join-id0 flag (Davide Caratti) [RHEL-115576] - netlink: specs: mptcp: clearly mention attributes (Davide Caratti) [RHEL-115576] - netlink: specs: mptcp: add missing 'server-side' attr (Davide Caratti) [RHEL-115576] - mptcp: set remote_deny_join_id0 on SYN recv (Davide Caratti) [RHEL-115576] - selftests: mptcp: avoid spurious errors on TCP disconnect (Davide Caratti) [RHEL-115576] - selftests: mptcp: connect: catch IO errors on listen side (Davide Caratti) [RHEL-115576] - mptcp: propagate shutdown to subflows when possible (Davide Caratti) [RHEL-115576] - mptcp: sockopt: make sync_socket_options propagate SOCK_KEEPOPEN (Davide Caratti) [RHEL-115576] - mptcp: disable add_addr retransmission when timeout is 0 (Davide Caratti) [RHEL-115576] - mptcp: remove duplicate sk_reset_timer call (Davide Caratti) [RHEL-115576] - selftests: mptcp: pm: check flush doesn't reset limits (Davide Caratti) [RHEL-115576] - mptcp: pm: kernel: flush: do not reset ADD_ADDR limit (Davide Caratti) [RHEL-115576] - mptcp: pm: move Netlink PM helpers to pm_netlink.c (Davide Caratti) [RHEL-115576] - mptcp: pm: split in-kernel PM specific code (Davide Caratti) [RHEL-115576] - mptcp: pm: move generic PM helpers to pm.c (Davide Caratti) [RHEL-115576] - mptcp: pm: move generic helper at the top (Davide Caratti) [RHEL-115576] - mptcp: pm: export mptcp_remote_address (Davide Caratti) [RHEL-115576] - mptcp: pm: worker: split in-kernel and common tasks (Davide Caratti) [RHEL-115576] - mptcp: pm: avoid calling PM specific code from core (Davide Caratti) [RHEL-115576] - mptcp: pm: kernel: add '_pm' to mptcp_nl_set_flags (Davide Caratti) [RHEL-115576] - mptcp: pm: remove '_nl' from mptcp_pm_nl_is_init_remote_addr (Davide Caratti) [RHEL-115576] - mptcp: pm: remove '_nl' from mptcp_pm_nl_subflow_chk_stale() (Davide Caratti) [RHEL-115576] - mptcp: pm: remove '_nl' from mptcp_pm_nl_rm_addr_received (Davide Caratti) [RHEL-115576] - mptcp: pm: remove '_nl' from mptcp_pm_nl_work (Davide Caratti) [RHEL-115576] - mptcp: pm: remove '_nl' from mptcp_pm_nl_mp_prio_send_ack (Davide Caratti) [RHEL-115576] - mptcp: pm: remove '_nl' from mptcp_pm_nl_addr_send_ack (Davide Caratti) [RHEL-115576] - mptcp: pm: use addr entry for get_local_id (Davide Caratti) [RHEL-115576] - mptcp: annotate data-races around subflow->fully_established (Davide Caratti) [RHEL-115576] - mptcp: pm: send ACK on non-stale subflows (Davide Caratti) [RHEL-115576] - mptcp: pm: exit early with ADD_ADDR echo if possible (Davide Caratti) [RHEL-115576] - mptcp: pm: in-kernel: reduce parameters of set_flags (Davide Caratti) [RHEL-115576] - mptcp: pm: in-kernel: avoid access entry without lock (Davide Caratti) [RHEL-115576] - selftests: mptcp: add a test for mptcp_diag_dump_one (Davide Caratti) [RHEL-115576] - selftests: mptcp: Add a tool to get specific msk_info (Davide Caratti) [RHEL-115576] - mptcp: blackhole: avoid checking the state twice (Davide Caratti) [RHEL-115576] - mptcp: sysctl: add syn_retrans_before_tcp_fallback (Davide Caratti) [RHEL-115576] - mptcp: sched: reduce size for unused data (Davide Caratti) [RHEL-115576] - mptcp: sched: split get_subflow interface into two (Davide Caratti) [RHEL-115576] - mptcp: pm: use ipv6_addr_equal in addresses_equal (Davide Caratti) [RHEL-115576] - mptcp: pm: drop inet6_sk after inet_sk (Davide Caratti) [RHEL-115576] - mptcp: pm: drop match in userspace_pm_append_new_local_addr (Davide Caratti) [RHEL-115576] - mptcp: pm: add mptcp_pm_genl_fill_addr helper (Davide Caratti) [RHEL-115576] - mptcp: pm: add a build check for userspace_pm_dump_addr (Davide Caratti) [RHEL-115576] - mptcp: pm: change to fullmesh only for 'subflow' (Davide Caratti) [RHEL-115576] - mptcp: pm: remove unused ret value to set flags (Davide Caratti) [RHEL-115576] - mptcp: pm: add local parameter for set_flags (Davide Caratti) [RHEL-115576] - mptcp: pm: change rem type of set_flags (Davide Caratti) [RHEL-115576] - mptcp: pm: drop skb parameter of set_flags (Davide Caratti) [RHEL-115576] - mptcp: pm: reuse sending nlmsg code in get_addr (Davide Caratti) [RHEL-115576] - mptcp: pm: add id parameter for get_addr (Davide Caratti) [RHEL-115576] - mptcp: pm: drop skb parameter of get_addr (Davide Caratti) [RHEL-115576] - mptcp: pm: make three pm wrappers static (Davide Caratti) [RHEL-115576] - mptcp: pm: use NL_SET_ERR_MSG_ATTR when possible (Davide Caratti) [RHEL-115576] - mptcp: pm: mark missing address attributes (Davide Caratti) [RHEL-115576] - mptcp: pm: remove duplicated error messages (Davide Caratti) [RHEL-115576] - mptcp: pm: userspace: use GENL_REQ_ATTR_CHECK (Davide Caratti) [RHEL-115576] - mptcp: pm: improve error messages (Davide Caratti) [RHEL-115576] - mptcp: pm: more precise error messages (Davide Caratti) [RHEL-115576] - mptcp: pm: drop info of userspace_pm_remove_id_zero_address (Davide Caratti) [RHEL-115576] - mptcp: drop useless "err = 0" in subflow_destroy (Davide Caratti) [RHEL-115576] - mptcp: change local addr type of subflow_destroy (Davide Caratti) [RHEL-115576] - mptcp: drop free_list for deleting entries (Davide Caratti) [RHEL-115576] - mptcp: move mptcp_pm_remove_addrs into pm_userspace (Davide Caratti) [RHEL-115576] - mptcp: add mptcp_userspace_pm_get_sock helper (Davide Caratti) [RHEL-115576] - mptcp: add mptcp_for_each_userspace_pm_addr macro (Davide Caratti) [RHEL-115576] - mptcp: add mptcp_userspace_pm_lookup_addr helper (Davide Caratti) [RHEL-115576] - mptcp: pm: lockless list traversal to dump endp (Davide Caratti) [RHEL-115576] - mptcp: pm: avoid code duplication to lookup endp (Davide Caratti) [RHEL-115576] - mptcp: drop skb if MPTCP skb extension allocation fails (Davide Caratti) [RHEL-115576] - selftests: mptcp: connect: also cover checksum (Davide Caratti) [RHEL-115576] - selftests: mptcp: connect: also cover alt modes (Davide Caratti) [RHEL-115576] - mptcp: reset fallback status gracefully at disconnect() time (Davide Caratti) [RHEL-115576] - mptcp: plug races between subflow fail and subflow creation (Davide Caratti) [RHEL-115576] {CVE-2025-38552} - mptcp: make fallback action and fallback decision atomic (Davide Caratti) [RHEL-115576] {CVE-2025-38491} - mptcp: safety check before fallback (Davide Caratti) [RHEL-115576] - mptcp: Align mptcp_inet6_sk with other protocols (Davide Caratti) [RHEL-115576] - dev: Pass netdevice_tracker to dev_get_by_flags_rcu(). (Hangbin Liu) [RHEL-115325] - ipv6: Remove setsockopt_needs_rtnl(). (CKI Backport Bot) [RHEL-115325] - ipv6: anycast: Don't hold RTNL for IPV6_JOIN_ANYCAST. (CKI Backport Bot) [RHEL-115325] - ipv6: anycast: Unify two error paths in ipv6_sock_ac_join(). (CKI Backport Bot) [RHEL-115325] - ipv6: anycast: Don't hold RTNL for IPV6_LEAVE_ANYCAST and IPV6_ADDRFORM. (CKI Backport Bot) [RHEL-115325] - ipv6: anycast: Don't use rtnl_dereference(). (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: Remove unnecessary ASSERT_RTNL and comment. (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: Don't hold RTNL for MCAST_ socket options. (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: Don't hold RTNL in ipv6_sock_mc_close(). (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: Don't hold RTNL for IPV6_DROP_MEMBERSHIP and MCAST_LEAVE_GROUP. (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: Don't hold RTNL for IPV6_ADD_MEMBERSHIP and MCAST_JOIN_GROUP. (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: Use in6_dev_get() in ipv6_dev_mc_dec(). (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: Remove mca_get(). (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: Check inet6_dev->dead under idev->mc_lock in __ipv6_dev_mc_inc(). (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: Replace locking comments with lockdep annotations. (CKI Backport Bot) [RHEL-115325] - ipv6: ndisc: Remove __in6_dev_get() in pndisc_{constructor,destructor}(). (CKI Backport Bot) [RHEL-115325] - ipv6: mcast: add RCU protection to mld_newpack() (CKI Backport Bot) [RHEL-115325] {CVE-2025-21758} - net: dst: add four helpers to annotate data-races around dst->dev (Hangbin Liu) [RHEL-115325] - net: dst: annotate data-races around dst->output (Hangbin Liu) [RHEL-115325] - net: dst: annotate data-races around dst->input (Hangbin Liu) [RHEL-115325] - tcp: cache RTAX_QUICKACK metric in a hot cache line (Hangbin Liu) [RHEL-115325] - net: introduce EXPORT_IPV6_MOD() and EXPORT_IPV6_MOD_GPL() (Hangbin Liu) [RHEL-115325] - netdev: define NETDEV_INTERNAL (Michal Schmidt) [RHEL-127480] - tpm: Prevent local DOS via tpm/tpm0/ppi/*operations (Denis Aleksandrov) [RHEL-126578] - rv: Update RHEL kconfigs for 6.17 upstream code (Gabriele Monaco) [RHEL-114754] - redhat/configs: Move CONFIG_RV_PER_TASK_MONITORS to common/generic (Gabriele Monaco) [RHEL-114754] - New configs in kernel/trace (Gabriele Monaco) [RHEL-114754] - rv: Make rtapp/pagefault monitor depends on CONFIG_MMU (Gabriele Monaco) [RHEL-114754] - rv: Fully convert enabled_monitors to use list_head as iterator (Gabriele Monaco) [RHEL-114754] - rv: Fix missing mutex unlock in rv_register_monitor() (Gabriele Monaco) [RHEL-114754] - include/linux/rv.h: remove redundant include file (Gabriele Monaco) [RHEL-114754] - rv: Fix wrong type cast in enabled_monitors_next() (Gabriele Monaco) [RHEL-114754] - rv: Support systems with time64-only syscalls (Gabriele Monaco) [RHEL-114754] - Documentation/rv: Fix minor typo in monitor_synthesis page (Gabriele Monaco) [RHEL-114754] - rv: Add opid per-cpu monitor (Gabriele Monaco) [RHEL-114754] - rv: Add nrp and sssw per-task monitors (Gabriele Monaco) [RHEL-114754] - rv: Replace tss and sncid monitors with more complete sts (Gabriele Monaco) [RHEL-114754] - sched: Adapt sched tracepoints for RV task model (Gabriele Monaco) [RHEL-114754] - rv: Retry when da monitor detects race conditions (Gabriele Monaco) [RHEL-114754] - rv: Adjust monitor dependencies (Gabriele Monaco) [RHEL-114754] - rv: Use strings in da monitors tracepoints (Gabriele Monaco) [RHEL-114754] - rv: Remove trailing whitespace from tracepoint string (Gabriele Monaco) [RHEL-114754] - rv: Add da_handle_start_run_event_ to per-task monitors (Gabriele Monaco) [RHEL-114754] - rv: Fix wrong type cast in reactors_show() and monitor_reactor_show() (Gabriele Monaco) [RHEL-114754] - rv: Fix wrong type cast in monitors_show() (Gabriele Monaco) [RHEL-114754] - rv: Remove struct rv_monitor::reacting (Gabriele Monaco) [RHEL-114754] - rv: Remove rv_reactor's reference counter (Gabriele Monaco) [RHEL-114754] - rv: Merge struct rv_reactor_def into struct rv_reactor (Gabriele Monaco) [RHEL-114754] - rv: Merge struct rv_monitor_def into struct rv_monitor (Gabriele Monaco) [RHEL-114754] - rv: Remove unused field in struct rv_monitor_def (Gabriele Monaco) [RHEL-114754] - rv: Return init error when registering monitors (Gabriele Monaco) [RHEL-114754] - verification/rvgen: Organise Kconfig entries for nested monitors (Gabriele Monaco) [RHEL-114754] - tools/dot2c: Fix generated files going over 100 column limit (Gabriele Monaco) [RHEL-114754] - tools/rv: Stop gracefully also on SIGTERM (Gabriele Monaco) [RHEL-114754] - tools/rv: Do not skip idle in trace (Gabriele Monaco) [RHEL-114754] - verification/rvgen: Do not generate unused variables (Gabriele Monaco) [RHEL-114754] - verification/rvgen: Generate each variable definition only once (Gabriele Monaco) [RHEL-114754] - rv/ltl: Do not execute the Buchi automaton twice on start condition (Gabriele Monaco) [RHEL-114754] - verification/rvgen: Support the 'next' operator (Gabriele Monaco) [RHEL-114754] - panic: Fix up description of vpanic() (Gabriele Monaco) [RHEL-114754] - objtool: Add vpanic() to the noreturn list (Gabriele Monaco) [RHEL-114754] - Documentation/rv: Add documentation for linear temporal logic monitors (Gabriele Monaco) [RHEL-114754] - verification/rvgen: Add support for linear temporal logic (Gabriele Monaco) [RHEL-114754] - verification/rvgen: Restructure the classes to prepare for LTL inclusion (Gabriele Monaco) [RHEL-114754] - verification/rvgen: Restructure the templates files (Gabriele Monaco) [RHEL-114754] - Documentation/rv: Prepare monitor synthesis document for LTL inclusion (Gabriele Monaco) [RHEL-114754] - verification/dot2k: Prepare the frontend for LTL inclusion (Gabriele Monaco) [RHEL-114754] - verification/dot2k: Replace is_container() hack with subparsers (Gabriele Monaco) [RHEL-114754] - verification/dot2k: Remove __buff_to_string() (Gabriele Monaco) [RHEL-114754] - verification/dot2k: Make a separate dot2k_templates/Kconfig_container (Gabriele Monaco) [RHEL-114754] - tracing: Remove pointless memory barriers (Gabriele Monaco) [RHEL-114754] - rv: Allow to configure the number of per-task monitor (Gabriele Monaco) [RHEL-114754] - rv: Add documentation for rtapp monitor (Gabriele Monaco) [RHEL-114754] - rv: Add rtapp_sleep monitor (Gabriele Monaco) [RHEL-114754] - rv: Add rtapp_pagefault monitor (Gabriele Monaco) [RHEL-114754] - riscv: mm: Add page fault trace points (Gabriele Monaco) [RHEL-114754] - x86/tracing, x86/mm: Move page fault tracepoints to generic (Gabriele Monaco) [RHEL-114754] - x86/tracing, x86/mm: Remove redundant trace_pagefault_key (Gabriele Monaco) [RHEL-114754] - rv: Add rtapp container monitor (Gabriele Monaco) [RHEL-114754] - rv: Add support for LTL monitors (Gabriele Monaco) [RHEL-114754] - rv: rename CONFIG_DA_MON_EVENTS to CONFIG_RV_MON_EVENTS (Gabriele Monaco) [RHEL-114754] - rv: Let the reactors take care of buffers (Gabriele Monaco) [RHEL-114754] - panic: Add vpanic() (Gabriele Monaco) [RHEL-114754] - kernel/panic.c: format kernel-doc comments (Gabriele Monaco) [RHEL-114754] - printk: Make vprintk_deferred() public (Gabriele Monaco) [RHEL-114754] - rv: Add #undef TRACE_INCLUDE_FILE (Gabriele Monaco) [RHEL-114754] - can: j1939: add missing calls in NETDEV_UNREGISTER notification handler (CKI Backport Bot) [RHEL-124109] {CVE-2025-39925} - can: j1939: implement NETDEV_UNREGISTER notification handler (CKI Backport Bot) [RHEL-124109] {CVE-2025-39925} - redhat/configs: Add new configs from DRM 6.17 backport (Anusha Srivatsa) [RHEL-116876] - selftests/bpf: Fix bpf selftest build error (Anusha Srivatsa) [RHEL-116876] - relayfs: abolish prev_padding (Anusha Srivatsa) [RHEL-116876] - sanitize handling of long-term internal mounts (Anusha Srivatsa) [RHEL-116876] - scsi: ibmvfc: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - ocxl: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - s390/pkey: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - s390/pci: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - s390/sclp: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - powerpc/powernv/ultravisor: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - powerpc/powernv/opal: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - s390/crypto/cpacf: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - w1: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - mtd: spi-nor: sysfs: constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - mlxbf-bootctl: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - i2c: slave-eeprom: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - scsi: ipr: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - RDMA/hfi1: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - of/fdt: Implement use BIN_ATTR_SIMPLE macro for fdt sysfs attribute (Anusha Srivatsa) [RHEL-116876] - PCI/IOV: Allow drivers to control VF BAR size (Anusha Srivatsa) [RHEL-116876] - PCI/IOV: Check that VF BAR fits within the reservation (Anusha Srivatsa) [RHEL-116876] - PCI/IOV: Allow IOV resources to be resized in pci_resize_resource() (Anusha Srivatsa) [RHEL-116876] - PCI/IOV: Add pci_resource_num_to_vf_bar() to convert VF BAR number to/from IOV resource (Anusha Srivatsa) [RHEL-116876] - PCI/IOV: Restore VF resizable BAR state after reset (Anusha Srivatsa) [RHEL-116876] - of: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - sysfs: treewide: switch back to bin_attribute::read()/write() (Anusha Srivatsa) [RHEL-116876] - btf: Switch module BTF attribute to sysfs_bin_attr_simple_read() (Anusha Srivatsa) [RHEL-116876] - btf: Switch vmlinux BTF attribute to sysfs_bin_attr_simple_read() (Anusha Srivatsa) [RHEL-116876] - powerpc/perf/hv-24x7: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - powerpc/secvar: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - s390/ipl: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - sysfs: constify macro BIN_ATTRIBUTE_GROUPS() (Anusha Srivatsa) [RHEL-116876] - platform/x86: wmi-bmof: Make use of .bin_size() callback (Anusha Srivatsa) [RHEL-116876] - platform/x86/intel/pmt: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - nvmem: core: constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - misc: sram: constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - drivers: hv: fix up const issue with vmbus_chan_bin_attrs (Anusha Srivatsa) [RHEL-116876] - drm/xe/nvm: add support for non-posted erase (Anusha Srivatsa) [RHEL-116876] - mtd: intel-dg: align 64bit read and write (Anusha Srivatsa) [RHEL-116876] - mtd: intel-dg: register with mtd (Anusha Srivatsa) [RHEL-116876] - mtd: intel-dg: implement access functions (Anusha Srivatsa) [RHEL-116876] - mtd: intel-dg: implement region enumeration (Anusha Srivatsa) [RHEL-116876] - mtd: add driver for intel graphics non-volatile memory device (Anusha Srivatsa) [RHEL-116876] - kheaders: Simplify attribute through __BIN_ATTR_SIMPLE_RO() (Anusha Srivatsa) [RHEL-116876] - platform/x86/intel/sdsi: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - platform/x86: dell: dcdbas: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - efi/mokvar: Use const 'struct bin_attribute' callback (Anusha Srivatsa) [RHEL-116876] - firmware: qemu_fw_cfg: constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - mm/kmap: Add kmap_local_page_try_from_panic() (Anusha Srivatsa) [RHEL-116876] - sysfs: constify attribute_group::bin_attrs (Anusha Srivatsa) [RHEL-116876] - sysfs: constify bin_attribute argument of bin_attribute::read/write() (Anusha Srivatsa) [RHEL-116876] - sysfs: constify bin_attribute argument of sysfs_bin_attr_simple_read() (Anusha Srivatsa) [RHEL-116876] - module: sysfs: Use const 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - module: sysfs: Add notes attributes through attribute_group (Anusha Srivatsa) [RHEL-116876] - module: sysfs: Simplify section attribute allocation (Anusha Srivatsa) [RHEL-116876] - module: sysfs: Drop 'struct module_sect_attr' (Anusha Srivatsa) [RHEL-116876] - module: sysfs: Drop member 'module_sect_attr::address' (Anusha Srivatsa) [RHEL-116876] - module: sysfs: Drop member 'module_sect_attrs::nsections' (Anusha Srivatsa) [RHEL-116876] - module: Constify 'struct module_attribute' (Anusha Srivatsa) [RHEL-116876] - kernel/ksysfs.c: simplify bin_attribute definition (Anusha Srivatsa) [RHEL-116876] - firmware: dmi: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - firmware: dmi: Define bin_attributes through macro (Anusha Srivatsa) [RHEL-116876] - firmware: dmi: Mark bin_attributes as __ro_after_init (Anusha Srivatsa) [RHEL-116876] - netxen_nic: constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - scsi: lpfc: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - scsi: qla2xxx: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - misc: eeprom/max6875: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - x86/sysfs: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - leds: triggers: Constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - mm/page_idle: constify 'struct bin_attribute' (Anusha Srivatsa) [RHEL-116876] - selftest: packetdrill: Import client-ack-dropped-then-recovery-ms-timestamps.pkt (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Import sockopt-fastopen-key.pkt (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Import opt34/*-trigger-rst.pkt. (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Import opt34/reset-* tests. (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Import opt34/icmp-before-accept.pkt. (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Import opt34/fin-close-socket.pkt. (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Add test for experimental option. (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Add test for TFO_SERVER_WO_SOCKOPT1. (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Import TFO server basic tests. (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Define common TCP Fast Open cookie. (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Require explicit setsockopt(TCP_FASTOPEN). (CKI Backport Bot) [RHEL-124166] - selftest: packetdrill: Set ktap_set_plan properly for single protocol test. (CKI Backport Bot) [RHEL-124166] - selftests/net: packetdrill: Support single protocol test. (CKI Backport Bot) [RHEL-124166] - selftests: net: packetdrill: xfail all problems on slow machines (CKI Backport Bot) [RHEL-124166] - selftests/net: packetdrill: add --mss option to three tests (CKI Backport Bot) [RHEL-124166] - selftests/net: packetdrill: more xfail changes (CKI Backport Bot) [RHEL-124166] - KVM: arm64: vgic-v3: Release reserved slot outside of lpi_xa's lock (Donald Dutile) [RHEL-115972] - Revert "KVM: arm64: Split kvm_pgtable_stage2_destroy()" (Donald Dutile) [RHEL-115972] - Revert "KVM: arm64: Reschedule as needed when destroying the stage-2 page-tables" (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic: fix incorrect spinlock API usage (Donald Dutile) [RHEL-115972] - KVM: arm64: Remove stage 2 read fault check (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix parameter ordering for VBAR_EL1 assignment (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Fix incorrect VNCR invalidation range calculation (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-v3: Reinstate IRQ lock ordering for LPI xarray (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-v3: Indicate vgic_put_irq() may take LPI xarray lock (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-v3: Don't require IRQs be disabled for LPI xarray lock (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-v3: Erase LPIs from xarray outside of raw spinlocks (Donald Dutile) [RHEL-115972] - KVM: arm64: Spin off release helper from vgic_put_irq() (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-v3: Use bare refcount for VGIC LPIs (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic: Drop stale comment on IRQ active state (Donald Dutile) [RHEL-115972] - KVM: arm64: VHE: Save and restore host MDCR_EL2 value correctly (Donald Dutile) [RHEL-115972] - KVM: arm64: Guard PMSCR_EL1 initialization with SPE presence check (Donald Dutile) [RHEL-115972] - KVM: arm64: Initialize PMSCR_EL1 when in VHE (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: fix VNCR TLB ASID match logic for non-Global entries (Donald Dutile) [RHEL-115972] - KVM: arm64: Mark freed S2 MMUs as invalid (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Fix ATS12 handling of single-stage translation (Donald Dutile) [RHEL-115972] - KVM: arm64: Remove __vcpu_{read,write}_sys_reg_{from,to}_cpu() (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix vcpu_{read,write}_sys_reg() accessors (Donald Dutile) [RHEL-115972] - KVM: arm64: Simplify sysreg access on exception delivery (Donald Dutile) [RHEL-115972] - KVM: arm64: Check for SYSREGS_ON_CPU before accessing the 32bit state (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Sync ID_AA64MMFR3_EL1 in set_id_regs (Donald Dutile) [RHEL-115972] - KVM: arm64: Get rid of ARM64_FEATURE_MASK() (Donald Dutile) [RHEL-115972] - KVM: arm64: Make ID_AA64PFR1_EL1.RAS_frac writable (Donald Dutile) [RHEL-115972] - KVM: arm64: Make ID_AA64PFR0_EL1.RAS writable (Donald Dutile) [RHEL-115972] - KVM: arm64: Ignore HCR_EL2.FIEN set by L1 guest's EL2 (Donald Dutile) [RHEL-115972] - KVM: arm64: Handle RASv1p1 registers (Donald Dutile) [RHEL-115972] - arm64: Add capability denoting FEAT_RASv1p1 (Donald Dutile) [RHEL-115972] - KVM: arm64: Reschedule as needed when destroying the stage-2 page-tables (Donald Dutile) [RHEL-115972] - KVM: arm64: Split kvm_pgtable_stage2_destroy() (Donald Dutile) [RHEL-115972] - KVM: arm64: Correctly populate FAR_EL2 on nested SEA injection (Donald Dutile) [RHEL-115972] - KVM: arm64: selftest: Add standalone test checking for KVM's own UUID (Donald Dutile) [RHEL-115972] - arm64: vgic-v2: Fix guest endianness check in hVHE mode (Donald Dutile) [RHEL-115972] - KVM: arm64: Sync protected guest VBAR_EL1 on injecting an undef exception (Donald Dutile) [RHEL-115972] - KVM: arm64: Handle AIDR_EL1 and REVIDR_EL1 in host for protected VMs (Donald Dutile) [RHEL-115972] - kvm: arm64: use BUG() instead of BUG_ON(1) (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Handle SEAs due to VNCR redirection (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Properly check ESR_EL2.VNCR on taking a VNCR_EL2 related fault (Donald Dutile) [RHEL-115972] - KVM: arm64: Don't attempt vLPI mappings when vPE allocation is disabled (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Add FEAT_RAS EL2 registers to get-reg-list (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Add test for nASSGIcap attribute (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-v3: Allow userspace to write GICD_TYPER2.nASSGIcap (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-v3: Allow access to GICD_IIDR prior to initialization (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-v3: Consolidate MAINT_IRQ handling (Donald Dutile) [RHEL-115972] - KVM: arm64: Disambiguate support for vSGIs v. vLPIs (Donald Dutile) [RHEL-115972] - KVM: arm64: selftest: vgic-v3: Add basic GICv3 sysreg userspace access test (Donald Dutile) [RHEL-115972] - KVM: arm64: Enforce the sorting of the GICv3 system register table (Donald Dutile) [RHEL-115972] - KVM: arm64: Clarify the check for reset callback in check_sysreg_table() (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-v3: Fix ordering of ICH_HCR_EL2 (Donald Dutile) [RHEL-115972] - arm64: kvm: trace_handle_exit: use string choices helper (Donald Dutile) [RHEL-115972] - arm64: kvm: sys_regs: use string choices helper (Donald Dutile) [RHEL-115972] - KVM: arm64: Follow specification when implementing WXN (Donald Dutile) [RHEL-115972] - KVM: arm64: Remove the wi->{e0,}poe vs wr->{p,u}ov confusion (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-its: Return -ENXIO to invalid KVM_DEV_ARM_VGIC_GRP_CTRL attrs (Donald Dutile) [RHEL-115972] - KVM: arm64: Make RAS registers UNDEF when RAS isn't advertised (Donald Dutile) [RHEL-115972] - KVM: arm64: Filter out HCR_EL2 bits when running in hypervisor context (Donald Dutile) [RHEL-115972] - KVM: arm64: Check for SYSREGS_ON_CPU before accessing the CPU state (Donald Dutile) [RHEL-115972] - KVM: arm64: Tighten the definition of FEAT_PMUv3p9 (Donald Dutile) [RHEL-115972] - KVM: arm64: Convert MDCR_EL2 to config-driven sanitisation (Donald Dutile) [RHEL-115972] - KVM: arm64: Convert SCTLR_EL1 to config-driven sanitisation (Donald Dutile) [RHEL-115972] - KVM: arm64: Convert TCR2_EL2 to config-driven sanitisation (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: get-reg-list: Add base EL2 registers (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: get-reg-list: Simplify feature dependency (Donald Dutile) [RHEL-115972] - KVM: arm64: Advertise FGT2 registers to userspace (Donald Dutile) [RHEL-115972] - KVM: arm64: Condition FGT registers on feature availability (Donald Dutile) [RHEL-115972] - KVM: arm64: Expose GICv3 EL2 registers via KVM_DEV_ARM_VGIC_GRP_CPU_SYSREGS (Donald Dutile) [RHEL-115972] - KVM: arm64: Let GICv3 save/restore honor visibility attribute (Donald Dutile) [RHEL-115972] - KVM: arm64: Define helper for ICH_VTR_EL2 (Donald Dutile) [RHEL-115972] - KVM: arm64: Define constant value for ICC_SRE_EL2 (Donald Dutile) [RHEL-115972] - KVM: arm64: Don't advertise ICH_*_EL2 registers through GET_ONE_REG (Donald Dutile) [RHEL-115972] - KVM: arm64: Make RVBAR_EL2 accesses UNDEF (Donald Dutile) [RHEL-115972] - KVM: arm64: Commit exceptions from KVM_SET_VCPU_EVENTS immediately (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Test ESR propagation for vSError injection (Donald Dutile) [RHEL-115972] - KVM: arm64: Populate ESR_ELx.EC for emulated SError injection (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix enforcement of upper bound on MDCR_EL2.HPMN (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Catch up set_id_regs with the kernel (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Add SCTLR2_EL1 to get-reg-list (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Test SEAs are taken to SError vector when EASE=1 (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Add basic SError injection test (Donald Dutile) [RHEL-115972] - KVM: arm64: Don't retire MMIO instruction w/ pending (emulated) SError (Donald Dutile) [RHEL-115972] - KVM: arm64: Advertise support for FEAT_DoubleFault2 (Donald Dutile) [RHEL-115972] - KVM: arm64: Advertise support for FEAT_SCTLR2 (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Enable vSErrors when HCRX_EL2.TMEA is set (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Honor SError routing effects of SCTLR2_ELx.NMEA (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Take "masked" aborts to EL2 when HCRX_EL2.TMEA is set (Donald Dutile) [RHEL-115972] - KVM: arm64: Route SEAs to the SError vector when EASE is set (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Ensure Address size faults affect correct ESR (Donald Dutile) [RHEL-115972] - KVM: arm64: Factor out helper for selecting exception target EL (Donald Dutile) [RHEL-115972] - KVM: arm64: Describe SCTLR2_ELx RESx masks (Donald Dutile) [RHEL-115972] - KVM: arm64: Enable SCTLR2 when advertised to the guest (Donald Dutile) [RHEL-115972] - KVM: arm64: Context switch SCTLR2_ELx when advertised to the guest (Donald Dutile) [RHEL-115972] - KVM: arm64: Wire up SCTLR2_ELx sysreg descriptors (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Describe trap behavior of SCTLR2_EL1 (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Advertise support for FEAT_RAS (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Use guest hypervisor's vSError state (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Add FEAT_RAS vSError sys regs to table (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Honor SError exception routing / masking (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Respect exception routing rules for SEAs (Donald Dutile) [RHEL-115972] - KVM: arm64: Treat vCPU with pending SError as runnable (Donald Dutile) [RHEL-115972] - KVM: arm64: Add helper to identify a nested context (Donald Dutile) [RHEL-115972] - KVM: arm64: nvhe: Disable branch generation in nVHE guests (Donald Dutile) [RHEL-115972] - KVM: selftests: Change MDSCR_EL1 register holding variables as uint64_t (Donald Dutile) [RHEL-115972] - KVM: arm64: Remove kvm_arch_vcpu_run_map_fp() (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix handling of FEAT_GTG for unimplemented granule sizes (Donald Dutile) [RHEL-115972] - KVM: arm64: Expose MTE_STORE_ONLY feature to guest (Donald Dutile) [RHEL-115972] - KVM: arm64: Expose FEAT_MTE_TAGGED_FAR feature to guest (Donald Dutile) [RHEL-115972] - KVM: arm64: Don't free hyp pages with pKVM on GICv2 (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix error path in init_hyp_mode() (Donald Dutile) [RHEL-115972] - KVM: arm64: Adjust range correctly during host stage-2 faults (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Fix MI line level calculation in vgic_v3_nested_update_mi() (Donald Dutile) [RHEL-115972] - KVM: arm64: VHE: Centralize ISBs when returning to host (Donald Dutile) [RHEL-115972] - KVM: arm64: Remove cpacr_clear_set() (Donald Dutile) [RHEL-115972] - KVM: arm64: Remove ad-hoc CPTR manipulation from kvm_hyp_handle_fpsimd() (Donald Dutile) [RHEL-115972] - KVM: arm64: Remove ad-hoc CPTR manipulation from fpsimd_sve_sync() (Donald Dutile) [RHEL-115972] - KVM: arm64: Reorganise CPTR trap manipulation (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Close the GIC FD in arch_timer_edge_cases (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Fix tracking of shadow list registers (Donald Dutile) [RHEL-115972] - KVM: arm64: Make __vcpu_sys_reg() a pure rvalue operand (Donald Dutile) [RHEL-115972] - KVM: arm64: Don't use __vcpu_sys_reg() to get the address of a sysreg (Donald Dutile) [RHEL-115972] - KVM: arm64: Add RMW specific sysreg accessor (Donald Dutile) [RHEL-115972] - KVM: arm64: Add assignment-specific sysreg accessor (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-debug: Avoid dereferencing NULL ITE pointer (Donald Dutile) [RHEL-115972] - KVM: arm64: Mask out non-VA bits from TLBI VA* on VNCR invalidation (Donald Dutile) [RHEL-115972] - arm64: kvm, smccc: Fix vendor uuid (Donald Dutile) [RHEL-115972] - arm64: kvm, smccc: Introduce and use API for getting hypervisor UUID (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix documentation for vgic_its_iter_next() (Donald Dutile) [RHEL-115972] - KVM: arm64: np-guest CMOs with PMD_SIZE fixmap (Donald Dutile) [RHEL-115972] - KVM: arm64: Stage-2 huge mappings for np-guests (Donald Dutile) [RHEL-115972] - KVM: arm64: Add a range to pkvm_mappings (Donald Dutile) [RHEL-115972] - KVM: arm64: Convert pkvm_mappings to interval tree (Donald Dutile) [RHEL-115972] - KVM: arm64: Add a range to __pkvm_host_test_clear_young_guest() (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix debug checking for np-guests using huge mappings (Donald Dutile) [RHEL-115972] - KVM: arm64: Add a range to __pkvm_host_wrprotect_guest() (Donald Dutile) [RHEL-115972] - KVM: arm64: Add a range to __pkvm_host_unshare_guest() (Donald Dutile) [RHEL-115972] - KVM: arm64: Add a range to __pkvm_host_share_guest() (Donald Dutile) [RHEL-115972] - KVM: arm64: Introduce for_each_hyp_page (Donald Dutile) [RHEL-115972] - KVM: arm64: Handle huge mappings for np-guest CMOs (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Release faulted-in VNCR page from mmu_lock critical section (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Handle TLBI S1E2 for VNCR invalidation with mmu_lock held (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Hold mmu_lock when invalidating VNCR SW-TLB before translating (Donald Dutile) [RHEL-115972] - KVM: arm64: vgic-its: Add debugfs interface to expose ITS tables (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Remove dead code from ERET handling (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Plumb TLBI S1E2 into system instruction dispatch (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Add S1 TLB invalidation primitive for VNCR_EL2 (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Program host's VNCR_EL2 to the fixmap address (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Handle VNCR_EL2 invalidation from MMU notifiers (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Handle mapping of VNCR_EL2 at EL2 (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Handle VNCR_EL2-triggered faults (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Add userspace and guest handling of VNCR_EL2 (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Add pseudo-TLB backing VNCR_EL2 (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Don't adjust PSTATE.M when L2 is nesting (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Move TLBI range decoding to a helper (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Snapshot S1 ASID tagging information during walk (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Extract translation helper from the AT code (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Allocate VNCR page when required (Donald Dutile) [RHEL-115972] - arm64: Update comment regarding values in __boot_cpu_mode (Donald Dutile) [RHEL-115972] - KVM: arm64: nv: Remove clearing of ICH_LR.EOI if ICH_LR.HW == 1 (Donald Dutile) [RHEL-115972] - KVM: arm64: Don't feed uninitialised data to HCR_EL2 (Donald Dutile) [RHEL-115972] - KVM: arm64: Teach address translation about access faults (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix PAR_EL1.{PTW,S} reporting on AT S1E* (Donald Dutile) [RHEL-115972] - KVM: arm64: Handle TSB CSYNC traps (Donald Dutile) [RHEL-115972] - KVM: arm64: Add FGT descriptors for FEAT_FGT2 (Donald Dutile) [RHEL-115972] - KVM: arm64: Allow sysreg ranges for FGT descriptors (Donald Dutile) [RHEL-115972] - KVM: arm64: Add context-switch for FEAT_FGT2 registers (Donald Dutile) [RHEL-115972] - KVM: arm64: Add trap routing for FEAT_FGT2 registers (Donald Dutile) [RHEL-115972] - KVM: arm64: Add sanitisation for FEAT_FGT2 registers (Donald Dutile) [RHEL-115972] - KVM: arm64: Add FEAT_FGT2 registers to the VNCR page (Donald Dutile) [RHEL-115972] - KVM: arm64: Use HCR_EL2 feature map to drive fixed-value bits (Donald Dutile) [RHEL-115972] - KVM: arm64: Use HCRX_EL2 feature map to drive fixed-value bits (Donald Dutile) [RHEL-115972] - KVM: arm64: Allow kvm_has_feat() to take variable arguments (Donald Dutile) [RHEL-115972] - KVM: arm64: Use FGT feature maps to drive RES0 bits (Donald Dutile) [RHEL-115972] - KVM: arm64: Validate FGT register descriptions against RES0 masks (Donald Dutile) [RHEL-115972] - KVM: arm64: Switch to table-driven FGU configuration (Donald Dutile) [RHEL-115972] - KVM: arm64: Handle PSB CSYNC traps (Donald Dutile) [RHEL-115972] - KVM: arm64: Use KVM-specific HCRX_EL2 RES0 mask (Donald Dutile) [RHEL-115972] - KVM: arm64: Remove hand-crafted masks for FGT registers (Donald Dutile) [RHEL-115972] - KVM: arm64: Use computed FGT masks to setup FGT registers (Donald Dutile) [RHEL-115972] - KVM: arm64: Propagate FGT masks to the nVHE hypervisor (Donald Dutile) [RHEL-115972] - KVM: arm64: Unconditionally configure fine-grain traps (Donald Dutile) [RHEL-115972] - KVM: arm64: Use computed masks as sanitisers for FGT registers (Donald Dutile) [RHEL-115972] - KVM: arm64: Add description of FGT bits leading to EC!=0x18 (Donald Dutile) [RHEL-115972] - KVM: arm64: Compute FGT masks from KVM's own FGT tables (Donald Dutile) [RHEL-115972] - KVM: arm64: Plug FEAT_GCS handling (Donald Dutile) [RHEL-115972] - KVM: arm64: Don't treat HCRX_EL2 as a FGT register (Donald Dutile) [RHEL-115972] - KVM: arm64: Restrict ACCDATA_EL1 undef to FEAT_LS64_ACCDATA being disabled (Donald Dutile) [RHEL-115972] - KVM: arm64: Handle trapping of FEAT_LS64* instructions (Donald Dutile) [RHEL-115972] - KVM: arm64: Simplify handling of negative FGT bits (Donald Dutile) [RHEL-115972] - KVM: arm64: Tighten handling of unknown FGT groups (Donald Dutile) [RHEL-115972] - KVM: arm64: Extend pKVM selftest for np-guests (Donald Dutile) [RHEL-115972] - KVM: arm64: Selftest for pKVM transitions (Donald Dutile) [RHEL-115972] - KVM: arm64: Don't WARN from __pkvm_host_share_guest() (Donald Dutile) [RHEL-115972] - KVM: arm64: Add .hyp.data section (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Add test for SVE host corruption (Donald Dutile) [RHEL-115972] - KVM: arm64: Replace ternary flags with str_on_off() helper (Donald Dutile) [RHEL-115972] - KVM: arm64: Unconditionally cross check hyp state (Donald Dutile) [RHEL-115972] - KVM: arm64: Defer EL2 stage-1 mapping on share (Donald Dutile) [RHEL-115972] - KVM: arm64: Move hyp state to hyp_vmemmap (Donald Dutile) [RHEL-115972] - KVM: arm64: Introduce {get,set}_host_state() helpers (Donald Dutile) [RHEL-115972] - KVM: arm64: Use 0b11 for encoding PKVM_NOPAGE (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix pKVM page-tracking comments (Donald Dutile) [RHEL-115972] - KVM: arm64: Track SVE state in the hypervisor vcpu structure (Donald Dutile) [RHEL-115972] - KVM: arm64: Let kvm_vcpu_read_pmcr() return an EL-dependent value for PMCR_EL0.N (Donald Dutile) [RHEL-115972] - KVM: arm64: Handle out-of-bound write to MDCR_EL2.HPMN (Donald Dutile) [RHEL-115972] - KVM: arm64: Don't let userspace write to PMCR_EL0.N when the vcpu has EL2 (Donald Dutile) [RHEL-115972] - KVM: arm64: Contextualise the handling of PMCR_EL0.P writes (Donald Dutile) [RHEL-115972] - KVM: arm64: Fix MDCR_EL2.HPMN reset value (Donald Dutile) [RHEL-115972] - KVM: arm64: Repaint pmcr_n into nr_pmu_counters (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Explicitly set the page attrs to Inner-Shareable (Donald Dutile) [RHEL-115972] - KVM: arm64: selftests: Introduce and use hardware-definition macros (Donald Dutile) [RHEL-115972] - bpf: Fix metadata_dst leak __bpf_redirect_neigh_v{4,6} (Xin Long) [RHEL-125760] - selftests: openvswitch: add a simple test for tunnel metadata (Adrian Moreno) [RHEL-115600] - net: openvswitch: Use for_each_cpu() where appropriate (Adrian Moreno) [RHEL-115600] - net: openvswitch: fix kernel-doc warnings in internal headers (Adrian Moreno) [RHEL-115600] - Revert "openvswitch: switch to per-action label counting in conntrack" (Adrian Moreno) [RHEL-115600] - redhat/kernel.spec.template: add net/can kselftests (Davide Caratti) [RHEL-118603] - selftests: can: enable CONFIG_CAN_VCAN as a module (Davide Caratti) [RHEL-118603] - selftests: can: test_raw_filter.sh: add support of physical interfaces (Davide Caratti) [RHEL-118603] - selftests: can: Import tst-filter from can-tests (Davide Caratti) [RHEL-118603] - net/hsr: add protocol version to fill_info output (Jan Vaclav) [RHEL-119342] - net/hsr: add interlink to fill_info output (Jan Vaclav) [RHEL-119342] - objtool/rust: add one more `noreturn` Rust function for Rust 1.89.0 (Rado Vrbovsky) [RHEL-114914] - objtool: Add missing endian conversion to read_annotate() (Rado Vrbovsky) [RHEL-114914] - objtool/rust: relax slice condition to cover more `noreturn` Rust functions (Rado Vrbovsky) [RHEL-114914] - x86/its: FineIBT-paranoid vs ITS (objtool only) (Rado Vrbovsky) [RHEL-114914] - kernfs: remove iattr_mutex (Jerome Marchand) [RHEL-78204] - bpf: add get_netns_cookie helper to cgroup_skb programs (Jerome Marchand) [RHEL-78204] - bpf: add get_netns_cookie helper to tc programs (Jerome Marchand) [RHEL-78204] - Revert "mm/page_alloc: Fix try_alloc_pages" (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add test for BPF_NEG alu on CONST_PTR_TO_MAP (Jerome Marchand) [RHEL-78204] - bpf: Skip scalar adjustment for BPF_NEG if dst is a pointer (Jerome Marchand) [RHEL-78204] - selftests/bpf: trigger verifier.c:maybe_exit_scc() for a speculative state (Jerome Marchand) [RHEL-78204] - bpf: dont report verifier bug for missing bpf_scc_visit on speculative path (Jerome Marchand) [RHEL-78204] - bpf: Allow fall back to interpreter for programs with stack size <= 512 (Jerome Marchand) [RHEL-78204] - bpf: Update the list of BPF selftests maintainers (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add tests for bpf_strnstr (Jerome Marchand) [RHEL-78204] - bpf: Fix bpf_strnstr() to handle suffix match cases better (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix "expression result unused" warnings with icecc (Jerome Marchand) [RHEL-78204] - selftests/bpf: Extend crypto_sanity selftest with invalid dst buffer (Jerome Marchand) [RHEL-78204] - bpf: Fix out-of-bounds dynptr write in bpf_crypto_crypt (Jerome Marchand) [RHEL-78204] - bpf: Check the helper function is valid in get_helper_proto (Jerome Marchand) [RHEL-78204] - bpf: Fix memory leak of bpf_scc_info objects (Jerome Marchand) [RHEL-78204] - bpf: Improve ctx access verifier error message (Jerome Marchand) [RHEL-78204] - libbpf: Avoid possible use of uninitialized mod_len (Jerome Marchand) [RHEL-78204] - bpf: Fix oob access in cgroup local storage (Jerome Marchand) [RHEL-78204] - bpf: Move cgroup iterator helpers to bpf.h (Jerome Marchand) [RHEL-78204] - bpf: Move bpf map owner out of common struct (Jerome Marchand) [RHEL-78204] - bpf: Allow XDP dev-bound programs to perform XDP_REDIRECT into maps (Jerome Marchand) [RHEL-78204] - bpf: Add cookie object to bpf maps (Jerome Marchand) [RHEL-78204] - selftests/bpf: Migrate fexit_noreturns case into tracing_failure test suite (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add selftest for attaching tracing programs to functions in deny list (Jerome Marchand) [RHEL-78204] - bpf: Add log for attaching tracing programs to functions in deny list (Jerome Marchand) [RHEL-78204] - bpf: Show precise rejected function when attaching fexit/fmod_ret to __noreturn functions (Jerome Marchand) [RHEL-78204] - bpf: Fix various typos in verifier.c comments (Jerome Marchand) [RHEL-78204] - bpf: Add third round of bounds deduction (Jerome Marchand) [RHEL-78204] - selftests/bpf: Test invariants on JSLT crossing sign (Jerome Marchand) [RHEL-78204] - selftests/bpf: Test cross-sign 64bits range refinement (Jerome Marchand) [RHEL-78204] - selftests/bpf: Update reg_bound range refinement logic (Jerome Marchand) [RHEL-78204] - bpf: Improve bounds when s64 crosses sign boundary (Jerome Marchand) [RHEL-78204] - powerpc64/bpf: Add jit support for load_acquire and store_release (Jerome Marchand) [RHEL-78204] - bpf: Simplify bounds refinement from s32 (Jerome Marchand) [RHEL-78204] - selftests/bpf: Enable private stack tests for arm64 (Jerome Marchand) [RHEL-78204] - bpf, arm64: JIT support for private stack (Jerome Marchand) [RHEL-78204] - bpf: Move bpf_jit_get_prog_name() to core.c (Jerome Marchand) [RHEL-78204] - bpf, arm64: Fix fp initialization for exception boundary (Jerome Marchand) [RHEL-78204] - umd: Remove usermode driver framework (Jerome Marchand) [RHEL-78204] - bpf/preload: Don't select USERMODE_DRIVER (Jerome Marchand) [RHEL-78204] - bpf: Use ERR_CAST instead of ERR_PTR(PTR_ERR(...)) (Jerome Marchand) [RHEL-78204] - libbpf: Verify that arena map exists when adding arena relocations (Jerome Marchand) [RHEL-78204] - libbpf: Fix warning in calloc() usage (Jerome Marchand) [RHEL-78204] - bpf/selftests: Add selftests for token info (Jerome Marchand) [RHEL-78204] - bpf: Add struct bpf_token_info (Jerome Marchand) [RHEL-78204] - libbpf: start v1.7 dev cycle (Jerome Marchand) [RHEL-78204] - bpf: Clean up individual BTF_ID code (Jerome Marchand) [RHEL-78204] - bpf: Update iterators.lskel-big-endian.h (Jerome Marchand) [RHEL-78204] - selftests/bpf: enable tracing_struct tests for arm64 (Jerome Marchand) [RHEL-78204] - bpf, arm64: remove structs on stack constraint (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix build error due to certain uninitialized variables (Jerome Marchand) [RHEL-78204] - netkit: Remove location field in netkit_link (Jerome Marchand) [RHEL-78204] - bpf: Remove attach_type in bpf_tracing_link (Jerome Marchand) [RHEL-78204] - bpf: Remove attach_type in bpf_netns_link (Jerome Marchand) [RHEL-78204] - bpf: Remove location field in tcx_link (Jerome Marchand) [RHEL-78204] - bpf: Remove attach_type in sockmap_link (Jerome Marchand) [RHEL-78204] - bpf: Remove attach_type in bpf_cgroup_link (Jerome Marchand) [RHEL-78204] - bpf: Add attach_type field to bpf_link (Jerome Marchand) [RHEL-78204] - selftests/bpf: Range analysis test case for JSET (Jerome Marchand) [RHEL-78204] - bpf: Forget ranges when refining tnum after JSET (Jerome Marchand) [RHEL-78204] - selftests/bpf: add selftests for bpf_arena_reserve_pages (Jerome Marchand) [RHEL-78204] - bpf/arena: add bpf_arena_reserve_pages kfunc (Jerome Marchand) [RHEL-78204] - selftests/bpf: Remove enum64 case from __arg_untrusted test suite (Jerome Marchand) [RHEL-78204] - bpf: Clean code with bpf_copy_to_user() (Jerome Marchand) [RHEL-78204] - selftests/bpf: Negative test case for tail call map (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add Spectre v4 tests (Jerome Marchand) [RHEL-78204] - bpf: Fix aux usage after do_check_insn() (Jerome Marchand) [RHEL-78204] - selftests/bpf: Set CONFIG_PACKET=y for selftests (Jerome Marchand) [RHEL-78204] - bpf: Fix improper int-to-ptr cast in dump_stack_cb (Jerome Marchand) [RHEL-78204] - bpf: Fix bounds for bpf_prog_get_file_line linfo loop (Jerome Marchand) [RHEL-78204] - selftests/bpf: tests for __arg_untrusted void * global func params (Jerome Marchand) [RHEL-78204] - bpf: support for void/primitive __arg_untrusted global func params (Jerome Marchand) [RHEL-78204] - selftests/bpf: test cases for __arg_untrusted (Jerome Marchand) [RHEL-78204] - libbpf: __arg_untrusted in bpf_helpers.h (Jerome Marchand) [RHEL-78204] - bpf: attribute __arg_untrusted for global function parameters (Jerome Marchand) [RHEL-78204] - selftests/bpf: ptr_to_btf_id struct walk ending with primitive pointer (Jerome Marchand) [RHEL-78204] - bpf: rdonly_untrusted_mem for btf id walk pointer leafs (Jerome Marchand) [RHEL-78204] - bpf: make makr_btf_ld_reg return error for unexpected reg types (Jerome Marchand) [RHEL-78204] - bpf: Avoid putting struct bpf_scc_callchain variables on the stack (Jerome Marchand) [RHEL-78204] - bpf: Reduce stack frame size by using env->insn_buf for bpf insns (Jerome Marchand) [RHEL-78204] - bpf: Simplify assignment to struct bpf_insn pointer in do_misc_fixups() (Jerome Marchand) [RHEL-78204] - bpf: Avoid warning on unexpected map for tail call (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add tests for prog streams (Jerome Marchand) [RHEL-78204] - bpftool: Add support for dumping streams (Jerome Marchand) [RHEL-78204] - libbpf: Introduce bpf_prog_stream_read() API (Jerome Marchand) [RHEL-78204] - libbpf: Add bpf_stream_printk() macro (Jerome Marchand) [RHEL-78204] - bpf: Report rqspinlock deadlocks/timeout to BPF stderr (Jerome Marchand) [RHEL-78204] - bpf: Report may_goto timeout to BPF stderr (Jerome Marchand) [RHEL-78204] - bpf: Add dump_stack() analogue to print to BPF stderr (Jerome Marchand) [RHEL-78204] - bpf: Add function to find program from stack trace (Jerome Marchand) [RHEL-78204] - bpf: Ensure RCU lock is held around bpf_prog_ksym_find (Jerome Marchand) [RHEL-78204] - bpf: Add function to extract program source info (Jerome Marchand) [RHEL-78204] - bpf: Introduce BPF standard streams (Jerome Marchand) [RHEL-78204] - bpf: Refactor bprintf buffer support (Jerome Marchand) [RHEL-78204] - bpf: Add show_fdinfo for kprobe_multi (Jerome Marchand) [RHEL-78204] - bpf: Add show_fdinfo for uprobe_multi (Jerome Marchand) [RHEL-78204] - bpf: Show precise link_type for {uprobe,kprobe}_multi fdinfo (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add test cases for bpf_dynptr_memset() (Jerome Marchand) [RHEL-78204] - bpf: Add bpf_dynptr_memset() kfunc (Jerome Marchand) [RHEL-78204] - selftests/bpf: Allow veristat compile standalone (Jerome Marchand) [RHEL-78204] - bpf: Avoid warning on multiple referenced args in call (Jerome Marchand) [RHEL-78204] - selftests/bpf: Negative test case for ref_obj_id in args (Jerome Marchand) [RHEL-78204] - selftests/bpf: null checks for rdonly_untrusted_mem should be preserved (Jerome Marchand) [RHEL-78204] - bpf: avoid jump misprediction for PTR_TO_MEM | PTR_UNTRUSTED (Jerome Marchand) [RHEL-78204] - selftests/bpf: Don't call fsopen() as privileged user (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix spelling mistake "subtration" -> "subtraction" (Jerome Marchand) [RHEL-78204] - selftests/bpf: Enable dynptr/test_probe_read_user_str_dynptr (Jerome Marchand) [RHEL-78204] - bpf: Warn on internal verifier errors (Jerome Marchand) [RHEL-78204] - s390/bpf: Describe the frame using a struct instead of constants (Jerome Marchand) [RHEL-78204] - s390/bpf: Centralize frame offset calculations (Jerome Marchand) [RHEL-78204] - selftests/bpf: bpf_rdonly_cast u{8,16,32,64} access tests (Jerome Marchand) [RHEL-78204] - selftests/bpf: improve error messages in veristat (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix cgroup_xattr/read_cgroupfs_xattr (Jerome Marchand) [RHEL-78204] - bpf: guard BTF_ID_FLAGS(bpf_cgroup_read_xattr) with CONFIG_BPF_LSM (Jerome Marchand) [RHEL-78204] - bpf: Fix string kfuncs names in doc comments (Jerome Marchand) [RHEL-78204] - selftests/bpf: Test array presets in veristat (Jerome Marchand) [RHEL-78204] - selftests/bpf: Support array presets in veristat (Jerome Marchand) [RHEL-78204] - selftests/bpf: Separate var preset parsing in veristat (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add tests for string kfuncs (Jerome Marchand) [RHEL-78204] - selftests/bpf: Allow macros in __retval (Jerome Marchand) [RHEL-78204] - bpf: Add kfuncs for read-only string operations (Jerome Marchand) [RHEL-78204] - uaccess: Define pagefault lock guard (Jerome Marchand) [RHEL-78204] - bpf: add btf_type_is_i{32,64} helpers (Jerome Marchand) [RHEL-78204] - selftests/bpf: check operations on untrusted ro pointers to mem (Jerome Marchand) [RHEL-78204] - bpf: allow void* cast using bpf_rdonly_cast() (Jerome Marchand) [RHEL-78204] - bpf: add bpf_features enum (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add tests for BPF_NEG range tracking logic (Jerome Marchand) [RHEL-78204] - bpf: Add range tracking for BPF_NEG (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix usdt multispec failure with arm64/clang20 selftest build (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add testcases for BPF_ADD and BPF_SUB (Jerome Marchand) [RHEL-78204] - bpf, verifier: Improve precision for BPF_ADD and BPF_SUB (Jerome Marchand) [RHEL-78204] - selftests/bpf: Support ppc64el in vmtest (Jerome Marchand) [RHEL-78204] - bpf: Make update_prog_stats() always_inline (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add tests for bpf_cgroup_read_xattr (Jerome Marchand) [RHEL-78204] - bpf: Mark cgroup_subsys_state->cgroup RCU safe (Jerome Marchand) [RHEL-78204] - bpf: Introduce bpf_cgroup_read_xattr to read xattr of cgroup's node (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add test for bpftool access to read-only protected maps (Jerome Marchand) [RHEL-78204] - bpftool: Use appropriate permissions for map access (Jerome Marchand) [RHEL-78204] - powerpc/bpf: Fix warning for unused ori31_emitted (Jerome Marchand) [RHEL-78204] - selftests/bpf: include limits.h needed for PATH_MAX directly (Jerome Marchand) [RHEL-78204] - bpf: Fix key serial argument of bpf_lookup_user_key() (Jerome Marchand) [RHEL-78204] - bpf: Get rid of redundant 3rd argument of prepare_seq_file() (Jerome Marchand) [RHEL-78204] - bpftool: Fix JSON writer resource leak in version command (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix unintentional switch case fall through (Jerome Marchand) [RHEL-78204] - selftests/bpf: More precise cpu_mitigations state detection (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix RELEASE build failure with gcc14 (Jerome Marchand) [RHEL-78204] - bpf: Remove redundant free_verifier_state()/pop_stack() (Jerome Marchand) [RHEL-78204] - veristat: Memory accounting for bpf programs (Jerome Marchand) [RHEL-78204] - bpf: Include verifier memory allocations in memcg statistics (Jerome Marchand) [RHEL-78204] - bpf/veristat: Fix veristat for map type BPF_MAP_TYPE_CGRP_STORAGE (Jerome Marchand) [RHEL-78204] - tools/bpf_jit_disasm: Fix potential negative tpath index in get_exec_path() (Jerome Marchand) [RHEL-78204] - bpf: Initialize used but uninit variable in propagate_liveness() (Jerome Marchand) [RHEL-78204] - docs/bpf: Default cpu version changed from v1 to v3 in llvm 20 (Jerome Marchand) [RHEL-78204] - selftests/bpf: tests with a loop state missing read/precision mark (Jerome Marchand) [RHEL-78204] - bpf: include backedges in peak_states stat (Jerome Marchand) [RHEL-78204] - bpf: remove {update,get}_loop_entry functions (Jerome Marchand) [RHEL-78204] - bpf: propagate read/precision marks over state graph backedges (Jerome Marchand) [RHEL-78204] - bpf: move REG_LIVE_DONE check to clean_live_states() (Jerome Marchand) [RHEL-78204] - bpf: set 'changed' status if propagate_liveness() did any updates (Jerome Marchand) [RHEL-78204] - bpf: set 'changed' status if propagate_precision() did any updates (Jerome Marchand) [RHEL-78204] - bpf: Fix state use-after-free on push_stack() err (Jerome Marchand) [RHEL-78204] - bpf: starting_state parameter for __mark_chain_precision() (Jerome Marchand) [RHEL-78204] - bpf: frame_insn_idx() utility function (Jerome Marchand) [RHEL-78204] - bpf: compute SCCs in program control flow graph (Jerome Marchand) [RHEL-78204] - Revert "bpf: use common instruction history across all states" (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix cgroup_mprog_ordering failure due to uninitialized variable (Jerome Marchand) [RHEL-78204] - bpf, doc: Improve wording of docs (Jerome Marchand) [RHEL-78204] - bpf: adjust path to trace_output sample eBPF program (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add test for Spectre v1 mitigation (Jerome Marchand) [RHEL-78204] - bpf: Fall back to nospec for Spectre v1 (Jerome Marchand) [RHEL-78204] - bpf: Rename sanitize_stack_spill to nospec_result (Jerome Marchand) [RHEL-78204] - bpf, arm64, powerpc: Change nospec to include v1 barrier (Jerome Marchand) [RHEL-78204] - bpf, arm64, powerpc: Add bpf_jit_bypass_spec_v1/v4() (Jerome Marchand) [RHEL-78204] - bpf: Return -EFAULT on internal errors (Jerome Marchand) [RHEL-78204] - bpf: Return -EFAULT on misconfigurations (Jerome Marchand) [RHEL-78204] - bpf: Move insn if/else into do_check_insn() (Jerome Marchand) [RHEL-78204] - bpf: Add cookie in fdinfo for raw_tp (Jerome Marchand) [RHEL-78204] - bpf: Add cookie in fdinfo for tracing (Jerome Marchand) [RHEL-78204] - bpftool: Display cookie for tracing link probe (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add cookies check for tracing fill_link_info test (Jerome Marchand) [RHEL-78204] - bpf: Add cookie to tracing bpf_link_info (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add test cases with CONST_PTR_TO_MAP null checks (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add cmp_map_pointer_with_const test (Jerome Marchand) [RHEL-78204] - bpf: Make reg_not_null() true for CONST_PTR_TO_MAP (Jerome Marchand) [RHEL-78204] - bpf: Add show_fdinfo for perf_event (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add two selftests for mprog API based cgroup progs (Jerome Marchand) [RHEL-78204] - selftests/bpf: Move some tc_helpers.h functions to test_progs.h (Jerome Marchand) [RHEL-78204] - libbpf: Support link-based cgroup attach with options (Jerome Marchand) [RHEL-78204] - bpf: Implement mprog API on top of existing cgroup progs (Jerome Marchand) [RHEL-78204] - cgroup: Add bpf prog revisions to struct cgroup_bpf (Jerome Marchand) [RHEL-78204] - Documentation: Fix spelling mistake. (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix a user_ringbuf failure with arm64 64KB page size (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix ringbuf/ringbuf_write test failure with arm64 64KB page size (Jerome Marchand) [RHEL-78204] - selftests/bpf: Fix bpf_mod_race test failure with arm64 64KB page size (Jerome Marchand) [RHEL-78204] - selftests/bpf: rbtree: Fix incorrect global variable usage (Jerome Marchand) [RHEL-78204] - Tests for the ".emit_strings" functionality in the BTF dumper. (Jerome Marchand) [RHEL-78204] - libbpf: Add support for printing BTF character arrays as strings (Jerome Marchand) [RHEL-78204] - bpf: Clarify sanitize_check_bounds() (Jerome Marchand) [RHEL-78204] - libbpf: Correct some typos and syntax issues in usdt doc (Jerome Marchand) [RHEL-78204] - bpftool: Display cookie for raw_tp link probe (Jerome Marchand) [RHEL-78204] - selftests/bpf: Add cookies check for raw_tp fill_link_info test (Jerome Marchand) [RHEL-78204] - bpf: Add cookie to raw_tp bpf_link_info (Jerome Marchand) [RHEL-78204] - sched_ext: Fix scx_kick_pseqs corruption on concurrent scheduler loads (CKI Backport Bot) [RHEL-118742] - sched_ext: Allocate scx_kick_cpus_pnt_seqs lazily using kvzalloc() (CKI Backport Bot) [RHEL-118742] - iavf: iavf_suspend(): take RTNL before netdev_lock() (Mohammad Heib) [RHEL-87380] - virtio-net: don't re-enable refill work too early when NAPI is disabled (Mohammad Heib) [RHEL-87380] - virtio-net: disable delayed refill when pausing rx (Mohammad Heib) [RHEL-87380] - virtio_net: Use persistent NAPI config (Mohammad Heib) [RHEL-87380] - virtio-net: Map NAPIs to queues (Mohammad Heib) [RHEL-87380] - virtio-net: Refactor napi_disable paths (Mohammad Heib) [RHEL-87380] - virtio-net: Refactor napi_enable paths (Mohammad Heib) [RHEL-87380] - iavf: Fix a locking bug in an error path (Mohammad Heib) [RHEL-87380] - iavf: fix circular lock dependency with netdev_lock (Mohammad Heib) [RHEL-87380] - wifi: mt76: move napi_enable() from under BH (Mohammad Heib) [RHEL-87380] - eth: via-rhine: fix calling napi_enable() in atomic context (Mohammad Heib) [RHEL-87380] - eth: niu: fix calling napi_enable() in atomic context (Mohammad Heib) [RHEL-87380] - eth: 8139too: fix calling napi_enable() in atomic context (Mohammad Heib) [RHEL-87380] - eth: forcedeth: fix calling napi_enable() in atomic context (Mohammad Heib) [RHEL-87380] - eth: forcedeth: remove local wrappers for napi enable/disable (Mohammad Heib) [RHEL-87380] - eth: tg3: fix calling napi_enable() in atomic context (Mohammad Heib) [RHEL-87380] - net: mvneta: fix locking in mvneta_cpu_online() (Mohammad Heib) [RHEL-87380] - net: introduce netdev_napi_exit() (Mohammad Heib) [RHEL-87380] - net: destroy dev->lock later in free_netdev() (Mohammad Heib) [RHEL-87380] - netdev-genl: remove rtnl_lock protection from NAPI ops (Mohammad Heib) [RHEL-87380] - net: protect NAPI config fields with netdev_lock() (Mohammad Heib) [RHEL-87380] - net: protect napi->irq with netdev_lock() (Mohammad Heib) [RHEL-87380] - net: protect threaded status of NAPI with netdev_lock() (Mohammad Heib) [RHEL-87380] - net: make netdev netlink ops hold netdev_lock() (Mohammad Heib) [RHEL-87380] - net: protect NAPI enablement with netdev_lock() (Mohammad Heib) [RHEL-87380] - net: protect netdev->napi_list with netdev_lock() (Mohammad Heib) [RHEL-87380] - net: add netdev->up protected by netdev_lock() (Mohammad Heib) [RHEL-87380] - net: add helpers for lookup and walking netdevs under netdev_lock() (Mohammad Heib) [RHEL-87380] - net: make netdev_lock() protect netdev->reg_state (Mohammad Heib) [RHEL-87380] - net: add netdev_lock() / netdev_unlock() helpers (Mohammad Heib) [RHEL-87380] - eth: iavf: extend the netdev_lock usage (Mohammad Heib) [RHEL-87380] - net: cleanup init_dummy_netdev_core() (Mohammad Heib) [RHEL-87380] - net: remove init_dummy_netdev() (Mohammad Heib) [RHEL-87380] - selftests: drv-net: test empty queue and NAPI responses in netlink (Mohammad Heib) [RHEL-87380] - netdev-genl: avoid empty messages in napi get (Mohammad Heib) [RHEL-87380] - netdev-genl: avoid empty messages in queue dump (Mohammad Heib) [RHEL-87380] - sctp: initialize more fields in sctp_v6_from_sk() (Xin Long) [RHEL-115593] - sctp: mark sctp_do_peeloff static (Xin Long) [RHEL-115593] - sctp: Do not wake readers in __sctp_write_space() (Xin Long) [RHEL-115593] - sctp: Remove unused sctp_assoc_del_peer and sctp_chunk_iif (Xin Long) [RHEL-115593] - Bluetooth: HCI: Fix tracking of advertisement set/instance 0x00 (David Marlin) [RHEL-118518] - Bluetooth: MGMT: fix crash in set_mesh_sync and set_mesh_complete (David Marlin) [RHEL-118518] - Bluetooth: MGMT: Fix possible UAFs (David Marlin) [RHEL-118518] {CVE-2025-39981} - Bluetooth: hci_event: Fix UAF in hci_acl_create_conn_sync (David Marlin) [RHEL-118518] {CVE-2025-39982} - Bluetooth: hci_event: Fix UAF in hci_conn_tx_dequeue (David Marlin) [RHEL-118518] {CVE-2025-39983} - Bluetooth: hci_sync: Fix hci_resume_advertising_sync (David Marlin) [RHEL-118518] - Bluetooth: Fix build after header cleanup (David Marlin) [RHEL-118518] - Bluetooth: Fix use-after-free in l2cap_sock_cleanup_listen() (David Marlin) [RHEL-118518] {CVE-2025-39860} - Bluetooth: vhci: Prevent use-after-free by removing debugfs files early (David Marlin) [RHEL-118518] {CVE-2025-39861} - Bluetooth: hci_sync: fix set_local_name race condition (David Marlin) [RHEL-118518] - Bluetooth: hci_event: Detect if HCI_EV_NUM_COMP_PKTS is unbalanced (David Marlin) [RHEL-118518] - Bluetooth: hci_event: Mark connection as closed during suspend disconnect (David Marlin) [RHEL-118518] - Bluetooth: hci_event: Treat UNKNOWN_CONN_ID on disconnect as success (David Marlin) [RHEL-118518] - Bluetooth: hci_conn: Make unacked packet handling more robust (David Marlin) [RHEL-118518] - Bluetooth: btnxpuart: Uses threaded IRQ for host wakeup handling (David Marlin) [RHEL-118518] - Bluetooth: hci_conn: do return error from hci_enhanced_setup_sync() (David Marlin) [RHEL-118518] - Bluetooth: hci_event: fix MTU for BN == 0 in CIS Established (David Marlin) [RHEL-118518] - Bluetooth: hci_core: Fix using ll_privacy_capable for current settings (David Marlin) [RHEL-118518] - Bluetooth: hci_core: Fix using {cis,bis}_capable for current settings (David Marlin) [RHEL-118518] - Bluetooth: btmtk: Fix wait_on_bit_timeout interruption during shutdown (David Marlin) [RHEL-118518] - Bluetooth: hci_sync: Avoid adding default advertising on startup (David Marlin) [RHEL-118518] - Bluetooth: hci_event: Mask data status from LE ext adv reports (David Marlin) [RHEL-118518] - Bluetooth: btintel_pcie: Fix Alive Context State Handling (David Marlin) [RHEL-118518] - Bluetooth: btintel_pcie: Make driver wait for alive interrupt (David Marlin) [RHEL-118518] - Bluetooth: hci_sync: fix double free in 'hci_discovery_filter_clear()' (David Marlin) [RHEL-118518] {CVE-2025-38593} - Bluetooth: btusb: Add one more ID 0x28de:0x1401 for Qualcomm WCN6855 (David Marlin) [RHEL-118518] - Bluetooth: btusb: Sort WCN6855 device IDs by VID and PID (David Marlin) [RHEL-118518] - Bluetooth: btusb: QCA: Support downloading custom-made firmwares (David Marlin) [RHEL-118518] - Bluetooth: btnxpuart: Add uevents for FW dump and FW download complete (David Marlin) [RHEL-118518] - Bluetooth: btnxpuart: Correct the Independent Reset handling after FW dump (David Marlin) [RHEL-118518] - Bluetooth: ISO: Support SCM_TIMESTAMPING for ISO TS (David Marlin) [RHEL-118518] - Bluetooth: ISO: add socket option to report packet seqnum via CMSG (David Marlin) [RHEL-118518] - Bluetooth: btintel: Define a macro for Intel Reset vendor command (David Marlin) [RHEL-118518] - Bluetooth: Fix typos in comments (David Marlin) [RHEL-118518] - Bluetooth: RFCOMM: Fix typos in comments (David Marlin) [RHEL-118518] - Bluetooth: aosp: Fix typo in comment (David Marlin) [RHEL-118518] - Bluetooth: hci_bcm4377: Fix typo in comment (David Marlin) [RHEL-118518] - Bluetooth: btrtl: Fix typo in comment (David Marlin) [RHEL-118518] - Bluetooth: btmtk: Fix typo in log string (David Marlin) [RHEL-118518] - Bluetooth: btintel: Fix typo in comment (David Marlin) [RHEL-118518] - Bluetooth: btusb: Add new VID/PID 0489/e14e for MT7925 (David Marlin) [RHEL-118518] - Bluetooth: btusb: Add RTL8852BE device 0x13d3:0x3618 (David Marlin) [RHEL-118518] - Bluetooth: btnxpuart: implement powerup sequence (David Marlin) [RHEL-118518] - Bluetooth: Fix spelling mistakes (David Marlin) [RHEL-118518] - Bluetooth: btnxpuart: Add support for 4M baudrate (David Marlin) [RHEL-118518] - Bluetooth: hci_event: Correct comment about HCI_EV_EXTENDED_INQUIRY_RESULT (David Marlin) [RHEL-118518] - Bluetooth: hci_core: Eliminate an unnecessary goto label in hci_find_irk_by_addr() (David Marlin) [RHEL-118518] - Bluetooth: hci_sync: Use bt_dev_err() to log error message in hci_update_event_filter_sync() (David Marlin) [RHEL-118518] - Bluetooth: hci_sock: Reset cookie to zero in hci_sock_free_cookie() (David Marlin) [RHEL-118518] - Bluetooth: hci_qca: Enable ISO data packet RX (David Marlin) [RHEL-118518] - Bluetooth: btintel_pcie: Add support for device 0x4d76 (David Marlin) [RHEL-118518] - Bluetooth: Remove hci_conn_hash_lookup_state() (David Marlin) [RHEL-118518] - Bluetooth: btusb: Add a new VID/PID 2c7c/7009 for MT7925 (David Marlin) [RHEL-118518] - Bluetooth: btintel_pcie: Reword restart to recovery (David Marlin) [RHEL-118518] - Bluetooth: btintel_pcie: Support Function level reset (David Marlin) [RHEL-118518] - Bluetooth: btusb: Add support for variant of RTL8851BE (USB ID 13d3:3601) (David Marlin) [RHEL-118518] - Bluetooth: btusb: Add USB ID 3625:010b for TP-LINK Archer TX10UB Nano (David Marlin) [RHEL-118518] - selftests/bpf: Fix bpf selftest build warning (Hangbin Liu) [RHEL-123090] - doc/netlink: Fix typos in operation attributes (Hangbin Liu) [RHEL-123090] - docs: remove cdomain.py (Hangbin Liu) [RHEL-123090] - doc: mptcp: fix Netlink specs link (Hangbin Liu) [RHEL-123090] - net: sched: uapi: add more sanely named duplicate defines (Hangbin Liu) [RHEL-123090] - net: add UAPI to the header guard in various network headers (Hangbin Liu) [RHEL-123090] - netlink: specs: ovs_vport: align with C codegen capabilities (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: remove implicit structs from devconf (Hangbin Liu) [RHEL-123090] - netlink: specs: remove implicit structs for SNMP counters (Hangbin Liu) [RHEL-123090] - netlink: specs: ovs: correct struct names (Hangbin Liu) [RHEL-123090] - netlink: specs: nl80211: drop structs which are not uAPI (Hangbin Liu) [RHEL-123090] - docs: use parser_yaml extension to handle Netlink specs (Hangbin Liu) [RHEL-123090] - docs: conf.py: several coding style fixes (Hangbin Liu) [RHEL-123090] - docs: conf.py: properly handle include and exclude patterns (Hangbin Liu) [RHEL-123090] - docs: conf.py: drop backward support for old Sphinx versions (Hangbin Liu) [RHEL-123090] - docs: changes: update Sphinx minimal version to 3.4.3 (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: support uint in multi-attr (Hangbin Liu) [RHEL-123090] - tools: ynl: add ipv4-or-v6 display hint (Hangbin Liu) [RHEL-123090] - tools: ynl: decode hex input (Hangbin Liu) [RHEL-123090] - tools: ynl: encode indexed-arrays (Hangbin Liu) [RHEL-123090] - tools: ynl: move nest packing to a helper function (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: rename TypeArrayNest to TypeIndexedArray (Hangbin Liu) [RHEL-123090] - tools: ynl: avoid "use of uninitialized variable" false positive in generated code (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: validate nested arrays (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: avoid repetitive variables definitions (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: refactor local vars for .attr_put() callers (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: add sub-type check (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: generate nested array policies (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: allow overriding name-prefix for constants (Hangbin Liu) [RHEL-123090] - netlink: specs: add conntrack dump and stats dump support (Hangbin Liu) [RHEL-123090] - netlink: specs: team: avoid mangling multilines doc (Hangbin Liu) [RHEL-123090] - tools: ynl: rst: display attribute-set doc (Hangbin Liu) [RHEL-123090] - tools: ynl: check for membership with 'not in' (Hangbin Liu) [RHEL-123090] - tools: ynl: use 'cond is None' (Hangbin Liu) [RHEL-123090] - tools: ynl: remove unnecessary semicolons (Hangbin Liu) [RHEL-123090] - tools: ynl: remove unused imports (Hangbin Liu) [RHEL-123090] - tools: ynl: remove f-string without any placeholders (Hangbin Liu) [RHEL-123090] - tools: ynl: remove assigned but never used variable (Hangbin Liu) [RHEL-123090] - tools: ynl: avoid bare except (Hangbin Liu) [RHEL-123090] - tools: ynl: fix undefined variable name (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: fix nested array counting (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: use macro for binary min-len check (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: print setters for multi-val attrs (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: print alloc helper for multi-val attrs (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: move free printing to the print_type_full() helper (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: don't add suffix for pure types (Hangbin Liu) [RHEL-123090] - tools: ynl: process unknown for enum values (Hangbin Liu) [RHEL-123090] - tools: ynl: default to --process-unknown in installed mode (Hangbin Liu) [RHEL-123090] - tools: ynl: fix mixing ops and notifications on one socket (Hangbin Liu) [RHEL-123090] - docs: parser_yaml.py: add support for line numbers from the parser (Hangbin Liu) [RHEL-123090] - docs: sphinx: add a parser for yaml files for Netlink specs (Hangbin Liu) [RHEL-123090] - tools: netlink_yml_parser.py: add line numbers to parsed data (Hangbin Liu) [RHEL-123090] - tools: ynl_gen_rst.py: drop support for generating index files (Hangbin Liu) [RHEL-123090] - tools: ynl_gen_rst.py: cleanup coding style (Hangbin Liu) [RHEL-123090] - tools: ynl_gen_rst.py: Split library from command line tool (Hangbin Liu) [RHEL-123090] - docs: netlink: netlink-raw.rst: use :ref: instead of :doc: (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: decode ip6gre (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: add missing byte-order properties (Hangbin Liu) [RHEL-123090] - tools: ynl: parse extack for sub-messages (Hangbin Liu) [RHEL-123090] - tools: ynl: add a sample for TC (Hangbin Liu) [RHEL-123090] - netlink: specs: tc: add qdisc dump to TC spec (Hangbin Liu) [RHEL-123090] - tools: ynl: enable codegen for TC (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: support weird sub-message formats (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: support local attrs in _multi_parse (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: move fixed header info from RenderInfo to Struct (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: support passing selector to a nest (Hangbin Liu) [RHEL-123090] - netlink: specs: tc: drop the family name prefix from attrs (Hangbin Liu) [RHEL-123090] - netlink: specs: tc: all actions are indexed arrays (Hangbin Liu) [RHEL-123090] - netlink: specs: tc: fix a couple of attribute names (Hangbin Liu) [RHEL-123090] - tc: fix typo probabilty in tc.yaml doc (Hangbin Liu) [RHEL-123090] - netlink: specs: tc: add C naming info (Hangbin Liu) [RHEL-123090] - netlink: specs: tc: use tc-gact instead of tc-gen as struct name (Hangbin Liu) [RHEL-123090] - netlink: specs: tc: remove duplicate nests (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: add makefile deps for neigh (Hangbin Liu) [RHEL-123090] - tools: ynl: add a sample for rt-link (Hangbin Liu) [RHEL-123090] - tools: ynl: enable codegen for all rt- families (Hangbin Liu) [RHEL-123090] - tools: ynl: submsg: reverse parse / error reporting (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: submsg: support parsing and rendering sub-messages (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: submsg: render the structs (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: submsg: plumb thru an empty type (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: prepare for submsg structs (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: factor out the annotation of pure nested struct (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: array-nest: support arrays of nests (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: Allow multi-attr without nested-attributes again (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: support struct for binary attributes (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: auto-indent else (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: support sub-type for binary attributes (Hangbin Liu) [RHEL-123090] - tools: ynl: handle broken pipe gracefully in CLI (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: move the count into a presence struct too (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: split presence metadata (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: rename basic presence from 'bit' to 'present' (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: validate 0 len strings from kernel (Hangbin Liu) [RHEL-123090] - tools: ynl: allow fixed-header to be specified per op (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: don't init enum checks for classic netlink (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: array-nest: support binary array with exact-len (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: array-nest: support put for scalar (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: mutli-attr: support binary types with struct (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: multi-attr: type gen for string (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: support CRUD-like notifications for classic Netlink (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: support using dump types for ntf (Hangbin Liu) [RHEL-123090] - tools: ynl: let classic netlink requests specify extra nlflags (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: fill in missing empty attr lists (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: factor out free_needs_iter for a struct (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: fix comment about nested struct dict (Hangbin Liu) [RHEL-123090] - tools: ynl: fix typo in info string (Hangbin Liu) [RHEL-123090] - tools: ynl: fix the header guard name for OVPN (Hangbin Liu) [RHEL-123090] - tools: ynl: add missing header deps (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-rule: add C naming info (Hangbin Liu) [RHEL-123090] - netlink: specs: rtnetlink: correct notify properties (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-neigh: make sure getneigh is consistent (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-neigh: add C naming info (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: add notification for newlink (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: make bond's ipv6 address attribute fixed size (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: adjust AF_ nest for C codegen (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: add C naming info (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: remove duplicated group in attr list (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: remove if-netnsid from attr list (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: remove the fixed members from attrs (Hangbin Liu) [RHEL-123090] - netlink: specs: allow header properties for attribute sets (Hangbin Liu) [RHEL-123090] - tools: ynl: generate code for rt-route and add a sample (Hangbin Liu) [RHEL-123090] - tools: ynl: generate code for rt-addr and add a sample (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: use family c-name in notifications (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: consider dump ops without a do "type-consistent" (Hangbin Liu) [RHEL-123090] - tools: ynl: don't use genlmsghdr in classic netlink (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: don't consider requests with fixed hdr empty (Hangbin Liu) [RHEL-123090] - tools: ynl: support creating non-genl sockets (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-route: add C naming info (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-addr: add C naming info (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-route: remove the fixed members from attrs (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-addr: remove the fixed members from attrs (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-route: specify fixed-header at operations level (Hangbin Liu) [RHEL-123090] - netlink: specs: rename rtnetlink specs in accordance with family name (Hangbin Liu) [RHEL-123090] - netlink: specs: rt_route: pull the ifa- prefix out of the names (Hangbin Liu) [RHEL-123090] - netlink: specs: rt_addr: pull the ifa- prefix out of the names (Hangbin Liu) [RHEL-123090] - netlink: specs: rt_addr: fix get multi command name (Hangbin Liu) [RHEL-123090] - netlink: specs: rt_addr: fix the spec format / schema failures (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-neigh: prefix struct nfmsg members with ndm (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: adjust mctp attribute naming (Hangbin Liu) [RHEL-123090] - netlink: specs: rtnetlink: attribute naming corrections (Hangbin Liu) [RHEL-123090] - netlink: specs: rt-link: add an attr layer around alt-ifname (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: make sure we validate subtype of array-nest (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: individually free previous values on double set (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: move local vars after the opening bracket (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: don't declare loop iterator in place (Hangbin Liu) [RHEL-123090] - netlink: specs: Add a spec for FIB rule management (Hangbin Liu) [RHEL-123090] - netlink: specs: Add a spec for neighbor tables in rtnetlink (Hangbin Liu) [RHEL-123090] - selftests/net: Add selftest for IPv4 RTM_GETMULTICAST support (Hangbin Liu) [RHEL-123090] - selftests: net-drv: stats: sanity check netlink dumps (Hangbin Liu) [RHEL-123090] - selftests: net-drv: queues: sanity check netlink dumps (Hangbin Liu) [RHEL-123090] - selftests: net: support setting recv_size in YNL (Hangbin Liu) [RHEL-123090] - netdev: fix repeated netlink messages in queue stats (Hangbin Liu) [RHEL-123090] - netdev: fix repeated netlink messages in queue dump (Hangbin Liu) [RHEL-123090] - netlink: specs: wireless: add a spec for nl80211 (Hangbin Liu) [RHEL-123090] - netlink: specs: add s8, s16 to genetlink schemas (Hangbin Liu) [RHEL-123090] - netlink: specs: support nested structs in genetlink legacy (Hangbin Liu) [RHEL-123090] - tools/net/ynl: add indexed-array scalar support to ynl-gen-c (Hangbin Liu) [RHEL-123090] - tools/net/ynl: sanitise enums with leading digits in ynl-gen-c (Hangbin Liu) [RHEL-123090] - tools/net/ynl: add s8, s16 to valid scalars in ynl-gen-c (Hangbin Liu) [RHEL-123090] - tools/net/ynl: accept IP string inputs (Hangbin Liu) [RHEL-123090] - tools/net/ynl: support rendering C array members to strings (Hangbin Liu) [RHEL-123090] - tools/net/ynl: support decoding indexed arrays as enums (Hangbin Liu) [RHEL-123090] - tools/net/ynl: remove extraneous plural from variable names (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: support limits using definitions (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: don't output external constants (Hangbin Liu) [RHEL-123090] - tools: ynl: c: correct reverse decode of empty attrs (Hangbin Liu) [RHEL-123090] - tools: ynl-gen-c: improve support for empty nests (Hangbin Liu) [RHEL-123090] - netlink: specs: rt_link: decode ip6tnl, vti and vti6 link attrs (Hangbin Liu) [RHEL-123090] - tools: ynl: print some information about attribute we can't parse (Hangbin Liu) [RHEL-123090] - tools: ynl: correctly handle overrides of fields in subset (Hangbin Liu) [RHEL-123090] - tools/net/ynl: fix sub-message key lookup for nested attributes (Hangbin Liu) [RHEL-123090] - tools: ynl-gen-c: don't require -o argument (Hangbin Liu) [RHEL-123090] - tools: ynl-gen-c: annotate valid choices for --mode (Hangbin Liu) [RHEL-123090] - tools: ynl-gen: allow uapi headers in sub-dirs (Hangbin Liu) [RHEL-123090] - tools/net/ynl: add async notification handling (Hangbin Liu) [RHEL-123090] - ynl: samples: Fix the wrong format specifier (Hangbin Liu) [RHEL-123090] - netlink: add NLA_POLICY_MAX_LEN macro (Hangbin Liu) [RHEL-123090] - rseq/selftests: Use weak symbol reference, not definition, to link with glibc (Gavin Shan) [RHEL-128766] - rseq/selftests: Fix namespace collision with rseq UAPI header (Gavin Shan) [RHEL-128766] - rseq/selftests: Ensure the rseq ABI TLS is actually 1024 bytes (Gavin Shan) [RHEL-128766] - selftests/rseq: Add rseq syscall errors test (Gavin Shan) [RHEL-128766] - rseq/selftests: Fix riscv rseq_offset_deref_addv inline asm (Gavin Shan) [RHEL-128766] - selftests/rseq: Fix handling of glibc without rseq support (Gavin Shan) [RHEL-128766] - rseq/selftests: Add support for OpenRISC (Gavin Shan) [RHEL-128766] - kernel: extend rh_waived to cope better with the CVE mitigations case (Ricardo Robaina) [RHEL-122980] - octeon_ep_vf: Add support to retrieve hardware channel information (Kamal Heib) [RHEL-118599] - octeon_ep: Add support to retrieve hardware channel information (Kamal Heib) [RHEL-118599] - futex: Optimize per-cpu reference counting (Waiman Long) [RHEL-101509] - futex: Don't leak robust_list pointer on exec race (Waiman Long) [RHEL-101509] - selftest/futex: Compile also with libnuma < 2.0.16 (Waiman Long) [RHEL-101509] - selftest/futex: Reintroduce "Memory out of range" numa_mpol's subtest (Waiman Long) [RHEL-101509] - selftest/futex: Make the error check more precise for futex_numa_mpol (Waiman Long) [RHEL-101509] - selftests/futex: Fix futex_wait() for 32bit ARM (Waiman Long) [RHEL-101509] - futex: Use correct exit on failure from futex_hash_allocate_default() (Waiman Long) [RHEL-101509] - futex: Prevent use-after-free during requeue-PI (Waiman Long) [RHEL-101509] - selftests/futex: Fix typos and grammar in futex_priv_hash (Waiman Long) [RHEL-101509] - selftests/futex: Fix format-security warnings in futex_priv_hash (Waiman Long) [RHEL-101509] - selftests/futex: Fix some futex_numa_mpol subtests (Waiman Long) [RHEL-101509] - selftests/futex: Remove the -g parameter from futex_priv_hash (Waiman Long) [RHEL-101509] - futex: Move futex_hash_free() back to __mmput() (Waiman Long) [RHEL-101509] - futex: Move futex cleanup to __mmdrop() (Waiman Long) [RHEL-101509] - futex: Use user_write_access_begin/_end() in futex_put_value() (Waiman Long) [RHEL-101509] - selftests/futex: Fix spelling mistake "Succeffuly" -> "Successfully" (Waiman Long) [RHEL-101509] - selftests/futex: Define SYS_futex on 32-bit architectures with 64-bit time_t (Waiman Long) [RHEL-101509] - perf bench futex: Remove support for IMMUTABLE (Waiman Long) [RHEL-101509] - selftests/futex: Remove support for IMMUTABLE (Waiman Long) [RHEL-101509] - futex: Remove support for IMMUTABLE (Waiman Long) [RHEL-101509] - futex: Make futex_private_hash_get() static (Waiman Long) [RHEL-101509] - futex: Use RCU-based per-CPU reference counting instead of rcuref_t (Waiman Long) [RHEL-101509] - selftests/futex: Adapt the private hash test to RCU related changes (Waiman Long) [RHEL-101509] - perf bench futex: Fix prctl include in musl libc (Waiman Long) [RHEL-101509] - selftests/futex: Add futex_numa to .gitignore (Waiman Long) [RHEL-101509] - futex: Temporary disable FUTEX_PRIVATE_HASH (Waiman Long) [RHEL-101509] - futex: Initialize futex_phash_new during fork(). (Waiman Long) [RHEL-101509] - futex: Verify under the lock if hash can be replaced (Waiman Long) [RHEL-101509] - futex: Handle invalid node numbers supplied by user (Waiman Long) [RHEL-101509] - selftests/futex: Set the home_node in futex_numa_mpol (Waiman Long) [RHEL-101509] - selftests/futex: getopt() requires int as return value. (Waiman Long) [RHEL-101509] - tools headers UAPI: Sync linux/prctl.h with the kernel sources to pick FUTEX knob (Waiman Long) [RHEL-101509] - io_uring/futex: mark wait requests as inflight (Waiman Long) [RHEL-101509] - selftests/futex: Fix spelling mistake "unitiliazed" -> "uninitialized" (Waiman Long) [RHEL-101509] - futex: Correct the kernedoc return value for futex_wait_setup(). (Waiman Long) [RHEL-101509] - tools headers: Synchronize prctl.h ABI header (Waiman Long) [RHEL-101509] - futex: Use RCU_INIT_POINTER() in futex_mm_init(). (Waiman Long) [RHEL-101509] - selftests/futex: Use TAP output in futex_numa_mpol (Waiman Long) [RHEL-101509] - selftests/futex: Use TAP output in futex_priv_hash (Waiman Long) [RHEL-101509] - futex: Fix kernel-doc comments (Waiman Long) [RHEL-101509] - futex: Relax the rcu_assign_pointer() assignment of mm->futex_phash in futex_mm_init() (Waiman Long) [RHEL-101509] - futex: Fix outdated comment in struct restart_block (Waiman Long) [RHEL-101509] - futex,selftests: Add another FUTEX2_NUMA selftest (Waiman Long) [RHEL-101509] - selftests/futex: Add futex_numa_mpol (Waiman Long) [RHEL-101509] - selftests/futex: Add futex_priv_hash (Waiman Long) [RHEL-101509] - selftests/futex: Build without headers nonsense (Waiman Long) [RHEL-101509] - tools/perf: Allow to select the number of hash buckets (Waiman Long) [RHEL-101509] - tools headers: Synchronize prctl.h ABI header (Waiman Long) [RHEL-101509] - futex: Implement FUTEX2_MPOL (Waiman Long) [RHEL-101509] - futex: Implement FUTEX2_NUMA (Waiman Long) [RHEL-101509] - futex: Allow to make the private hash immutable (Waiman Long) [RHEL-101509] - futex: Allow to resize the private local hash (Waiman Long) [RHEL-101509] - futex: Allow automatic allocation of process wide futex hash (Waiman Long) [RHEL-101509] - futex: Add basic infrastructure for local task local hash (Waiman Long) [RHEL-101509] - futex: Create helper function to initialize a hash slot (Waiman Long) [RHEL-101509] - futex: Introduce futex_q_lockptr_lock() (Waiman Long) [RHEL-101509] - futex: Decrease the waiter count before the unlock operation (Waiman Long) [RHEL-101509] - futex: Acquire a hash reference in futex_wait_multiple_setup() (Waiman Long) [RHEL-101509] - futex: Create private_hash() get/put class (Waiman Long) [RHEL-101509] - futex: Create futex_hash() get/put class (Waiman Long) [RHEL-101509] - futex: Create hb scopes (Waiman Long) [RHEL-101509] - futex: Pull futex_hash() out of futex_q_lock() (Waiman Long) [RHEL-101509] - futex: Move futex_queue() into futex_wait_setup() (Waiman Long) [RHEL-101509] - mm: Add vmalloc_huge_node() (Waiman Long) [RHEL-101509] - rcuref: Provide rcuref_is_dead() (Waiman Long) [RHEL-101509] - futex: Use a hashmask instead of hashsize (Waiman Long) [RHEL-101509] - rcuref: Plug slowpath race in rcuref_put() (Waiman Long) [RHEL-101509] - futex: Pass in task to futex_queue() (Waiman Long) [RHEL-101509] - seqlock: add missing parameter documentation for raw_seqcount_try_begin() (Waiman Long) [RHEL-101509] - mm: introduce mmap_lock_speculate_{try_begin|retry} (Waiman Long) [RHEL-101509] - mm: convert mm_lock_seq to a proper seqcount (Waiman Long) [RHEL-101509] - seqlock: add raw_seqcount_try_begin (Waiman Long) [RHEL-101509] - sched/wake_q: Add helper to call wake_up_q after unlock with preemption disabled (Waiman Long) [RHEL-101509] - locking/rtmutex: Make sure we wake anything on the wake_q when we release the lock->wait_lock (Waiman Long) [RHEL-101509] - locking: rtmutex: Fix wake_q logic in task_blocks_on_rt_mutex (Waiman Long) [RHEL-101509] - locking/mutex: Make mutex::wait_lock irq safe (Waiman Long) [RHEL-101509] - locking/mutex: Remove wakeups from under mutex::wait_lock (Waiman Long) [RHEL-101509] - dpll: zl3073x: Allow to configure phase offset averaging factor (Ivan Vecera) [RHEL-123203] - scsi: s390: zfcp: Ensure synchronous unit_add (Mete Durlu) [RHEL-129200] - net/mlx5: fs, fix UAF in flow counter release (CKI Backport Bot) [RHEL-124434] {CVE-2025-39979} - cifs: Fix oops due to uninitialised variable (CKI Backport Bot) [RHEL-120561] {CVE-2025-38737} - redhat/configs: automotive: enable I2C_IMX and dependencies (Jared Kangas) [RHEL-116101] - i2c: imx: use guard to take spinlock (Jared Kangas) [RHEL-116101] - i2c: imx: fix emulated smbus block read (Jared Kangas) [RHEL-116101] - i2c: imx: add some dev_err_probe calls (Jared Kangas) [RHEL-116101] - i2c: imx: support DMA defer probing (Jared Kangas) [RHEL-116101] - i2c: imx: switch different pinctrl state in different system power status (Jared Kangas) [RHEL-116101] - i2c: imx: add imx7d compatible string for applying erratum ERR007805 (Jared Kangas) [RHEL-116101] - i2c: imx: fix missing stop condition in single-master mode (Jared Kangas) [RHEL-116101] - i2c: imx: make controller available until system suspend_noirq() and from resume_noirq() (Jared Kangas) [RHEL-116101] - i2c: imx: fix divide by zero warning (Jared Kangas) [RHEL-116101] - i2c: imx: add support for S32G2/S32G3 SoCs (Jared Kangas) [RHEL-116101] - dt-bindings: i2c: imx: add SoC specific compatible strings for S32G (Jared Kangas) [RHEL-116101] - i2c: imx: prevent rescheduling in non dma mode (Jared Kangas) [RHEL-116101] - i2c: imx: separate atomic, dma and non-dma use case (Jared Kangas) [RHEL-116101] - i2c: imx: do not poll for bus busy in single master mode (Jared Kangas) [RHEL-116101] - scsi: st: Skip buffer flush for information ioctls (John Meneghini) [RHEL-115965] - scsi: st: Separate st-unique ioctl handling from SCSI common ioctl handling (John Meneghini) [RHEL-115965] - redhat/configs: enable CONFIG_NFSD_V4_2_INTER_SSC in RHEL (Scott Mayhew) [RHEL-126556] - dpll: add phase-adjust-gran pin attribute (Petr Oros) [RHEL-126529] - dpll: fix device-id-get and pin-id-get to return errors properly (Petr Oros) [RHEL-126529] - dpll: spec: add missing module-name and clock-id to pin-get reply (Petr Oros) [RHEL-126529] - dpll: add phase_offset_avg_factor_get/set callback ops (Petr Oros) [RHEL-126529] - dpll: add phase-offset-avg-factor device attribute to netlink spec (Petr Oros) [RHEL-126529] - dpll: fix clock quality level reporting (Petr Oros) [RHEL-126529] - dpll: add reference sync get/set (Petr Oros) [RHEL-126529] - dpll: add reference-sync netlink attribute (Petr Oros) [RHEL-126529] - dpll: remove documentation of rclk_dev_name (Petr Oros) [RHEL-126529] - scsi: st: Don't set pos_unknown just after device recognition (Ewan D. Milne) [RHEL-124946] - scsi: st: New session only when Unit Attention for new tape (Ewan D. Milne) [RHEL-124946] - scsi: st: Add MTIOCGET and MTLOAD to ioctls allowed after device reset (Ewan D. Milne) [RHEL-124946] - scsi: st: Don't modify unknown block number in MTIOCGET (Ewan D. Milne) [RHEL-124946] - selftests/bpf: Fix arena_spin_lock selftest failure (iqian) [RHEL-113809] - arm64: cpufeature: add AmpereOne to BBML2 allow list (Marcin Juszkiewicz) [RHEL-122955] - arm64: cpufeature: Add Olympus MIDR to BBML2 allow list (Marcin Juszkiewicz) [RHEL-122955] - arm64: cputype: Add NVIDIA Olympus definitions (Marcin Juszkiewicz) [RHEL-122955] - arm64/mm: Elide tlbi in contpte_convert() under BBML2 (Marcin Juszkiewicz) [RHEL-122955] - iommu/arm: Add BBM Level 2 smmu feature (Marcin Juszkiewicz) [RHEL-122955] - idpf: set mac type when adding and removing MAC filters (Michal Schmidt) [RHEL-121482 RHEL-121948] - selftests: livepatch: test if ftrace can trace a livepatched function (Rado Vrbovsky) [RHEL-114915] - selftests: livepatch: add new ftrace helpers functions (Rado Vrbovsky) [RHEL-114915] - samples/livepatch: add module descriptions (Rado Vrbovsky) [RHEL-114915] - selftest/livepatch: Only run test-kprobe with CONFIG_KPROBES_ON_FTRACE (Rado Vrbovsky) [RHEL-114915] - docs: livepatch: move text out of code block (Rado Vrbovsky) [RHEL-114915] - livepatch: Add comment to clarify klp_add_nops() (Rado Vrbovsky) [RHEL-114915] - gpio: mlxbf3: use platform_get_irq_optional() (David Thompson) [RHEL-103570] - redhat/configs: Add new configs from DRM 6.16 backport (Anusha Srivatsa) [RHEL-114533] - Merge DRM changes from upstream v6.15.5..v6.16 (Anusha Srivatsa) [RHEL-114533] - ALSA: update RHEL kconfigs for 6.16 upstream code (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Allow Focusrite devices to use low samplerates (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: tas2781: reorder tas2563 calibration variables (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: tas2781: fix tas2563 EFI data endianness (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: Intel: WCL: Add the sdw_process_wakeen op (Jaroslav Kysela) [RHEL-112757] - ASoC: rsnd: tidyup direction name on rsnd_dai_connect() (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tas2781: Fix EFI name for calibration beginning with 1 instead of 0 (Jaroslav Kysela) [RHEL-112757] - ASoC: soc-core: tidyup snd_soc_lookup_component_nolocked() (Jaroslav Kysela) [RHEL-112757] - ASoC: soc-core: care NULL dirver name on snd_soc_lookup_component_nolocked() (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Remove SoundWire Clock Divider workaround for CS35L63 (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Handle new algorithms IDs for CS35L63 (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Update Firmware Addresses for CS35L63 for production silicon (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: tas2781: Fix wrong reference of tasdevice_priv (Jaroslav Kysela) [RHEL-112757] {CVE-2025-39696} - ALSA: usb-audio: qcom: Adjust mutex unlock order (Jaroslav Kysela) [RHEL-112757] - ASoC: SDCA: correct the calculation of the maximum init table size (Jaroslav Kysela) [RHEL-112757] - ASoC: rt5650: Eliminate the high frequency glitch (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: Intel: PTL: Add the sdw_process_wakeen op (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/realtek - Add mute LED support for HP Pavilion 15-eg0xxx (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/realtek - Add mute LED support for HP Victus 15-fa0xxx (Jaroslav Kysela) [RHEL-112757] - ASoC: mediatek: mt8365-dai-i2s: pass correct size to mt8365_dai_set_priv (Jaroslav Kysela) [RHEL-112757] {CVE-2025-38662} - ASoC: amd: yc: Add DMI quirk for HP Laptop 17 cp-2033dx (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: soc-acpi: add support for HP Omen14 ARL (Jaroslav Kysela) [RHEL-112757] - ASoC: amd: yc: Add DMI entries to support HP 15-fb1xxx (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/cs35l56: Workaround bad dev-index on Lenovo Yoga Book 9i GenX (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/realtek: Support mute LED for Yoga with ALC287 (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: fix SND_SOC_SOF dependencies (Jaroslav Kysela) [RHEL-112757] - ASoC: rt5660: Fix the dmic data source from GPIO2 (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Fix NULL ptr deref on rmmod (Jaroslav Kysela) [RHEL-112757] - ASoC: amd: yc: add DMI quirk for ASUS M6501RM (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/realtek: Enable headset Mic on Positivo K116J (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tas2781: Fix calibration data parser issue (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/realtek: Add quirk for ASUS ExpertBook B9403CVAR (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: sof_sdw: Add quirks for Lenovo P1 and P16 (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Improve filtering of sample rates on Focusrite devices (Jaroslav Kysela) [RHEL-112757] - ALSA: usb: qcom: fix NULL pointer dereference in qmi_stop_session (Jaroslav Kysela) [RHEL-112757] - ALSA: qc_audio_offload: Fix missing error code in prepare_qmi_response() (Jaroslav Kysela) [RHEL-112757] - ASoC: qcom: sm8250: Fix possibly undefined reference (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/realtek: Enable headset Mic on Positivo P15X (Jaroslav Kysela) [RHEL-112757] - ASoC: doc: cs35l56: Add CS35L63 to the list of supported devices (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: imx8: add core shutdown operation for imx8/imx8x (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/realtek: Add quirk for Asus GA605K (Jaroslav Kysela) [RHEL-112757] - ASoC: apple: mca: Drop default ARCH_APPLE in Kconfig (Jaroslav Kysela) [RHEL-112757] - ASoC: doc: cs35l56: Update to add new SoundWire firmware filename suffix (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Use SoundWire address as alternate firmware suffix on L56 B0 (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Use SoundWire address as firmware name suffix for new silicon (Jaroslav Kysela) [RHEL-112757] - ASoC: sdw_utils: Fix potential NULL pointer deref in is_sdca_endpoint_present() (Jaroslav Kysela) [RHEL-112757] - ALSA: ctxfi: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-112757] - ASOC: rockchip: Use helper function devm_clk_get_enabled() (Jaroslav Kysela) [RHEL-112757] - ASOC: rockchip: fix capture stream handling in rockchip_sai_xfer_stop (Jaroslav Kysela) [RHEL-112757] - ASoC: loongson: Fix build warnings about export.h (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: ES8326: Modify initialization configuration (Jaroslav Kysela) [RHEL-112757] - ASoC: cs48l32: Fix a signedness bug in cs48l32_hw_params() (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Fix rt5663 front end name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Simplify verification of parse_int_array() result (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: cs35l41: Constify regmap_irq_chip (Jaroslav Kysela) [RHEL-112757] - ASoC: pcm: Do not open FEs with no BEs connected (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Include missing string.h (Jaroslav Kysela) [RHEL-112757] - ASoC: amd: yc: Add support for Lenovo Yoga 7 16ARP8 (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: qcom,sm8250: Add Fairphone 5 sound card (Jaroslav Kysela) [RHEL-112757] - ASoC: tas571x: fix tas5733 num_controls (Jaroslav Kysela) [RHEL-112757] - ASoC: tas571x: add separate tas5733 controls (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: fix out-of-bounds access on invalid clock config (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: qcom: fix USB_XHCI dependency (Jaroslav Kysela) [RHEL-112757] - ASoC: qdsp6: fix compile-testing without CONFIG_OF (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: add support for ES8375 (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: Add Everest ES8375 audio CODEC (Jaroslav Kysela) [RHEL-112757] - ALSA: atmel: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-112757] - ASoC: wm_adsp: Make cirrus_dir const (Jaroslav Kysela) [RHEL-112757] - dt-bindings: ASoC: Document Tegra264 APE support (Jaroslav Kysela) [RHEL-112757] - dt-bindings: ASoC: admaif: Add missing properties (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: audio-graph-card2: reference audio-graph routing property (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tas2781: Move and unified the calibrated-data getting function for SPI and I2C into the tas2781_hda lib (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tegra: Switch to two-argument strscpy() (Jaroslav Kysela) [RHEL-112757] - ALSA: qc_audio_offload: try to reduce address space confusion (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: audio-graph-card2: add missing mic-det-gpios (Jaroslav Kysela) [RHEL-112757] - ALSA: qc_audio_offload: avoid leaking xfer_buf allocation (Jaroslav Kysela) [RHEL-112757] - ALSA: qc_audio_offload: rename dma/iova/va/cpu/phys variables (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: qcom: Fix an error handling path in qc_usb_audio_probe() (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/cs35l41_hda: select FW_CS_DSP (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: sof_sdw: Add support for wclrvp & ocelot in WCL platform (Jaroslav Kysela) [RHEL-112757] - ALSA: amd7930: replace strcpy() with strscpy() (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: soc-acpi-intel-mtl-match: Add match for CDB35L63-CB2 (Jaroslav Kysela) [RHEL-112757] - ASoC: intel: sof_sdw: Add support for CS35L63 into machine driver (Jaroslav Kysela) [RHEL-112757] - PCI: Add Intel Wildcat Lake audio Device ID (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: hda-intel: add Wildcat Lake support (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: intel-dsp-config: Add WCL support (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: Intel: add initial support for WCL (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: add HDMI codec ID for Intel WCL (Jaroslav Kysela) [RHEL-112757] - ALSA: dbri: replace strcpy() with strscpy() (Jaroslav Kysela) [RHEL-112757] - ALSA: n64: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-112757] - ASoC: qcom: sc8280xp: Add sound card support for QCS9100 and QCS9075 (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: qcom,sm8250: Add QCS9100 and QCS9075 sound card (Jaroslav Kysela) [RHEL-112757] - ASoC: tas2781: Header file cleanup and Move the macro definitions to fwlib (Jaroslav Kysela) [RHEL-112757] - ASoC: rt722: make regmap cache-only in probe (Jaroslav Kysela) [RHEL-112757] - ASoC: fsl_xcvr: update platform driver name (Jaroslav Kysela) [RHEL-112757] - ASoC: soc-utils: Check string pointer validity in snd_soc_dlc_is_dummy() (Jaroslav Kysela) [RHEL-112757] - ALSA: usb: fcp: Use USB API functions rather than constants (Jaroslav Kysela) [RHEL-112757] - ALSA: scarlett2: Use USB API functions rather than constants (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Rename Pioneer mixer channel controls (Jaroslav Kysela) [RHEL-112757] - dt-bindings: Document Tegra264 HDA Support (Jaroslav Kysela) [RHEL-112757] - dt-bindings: Update Tegra194 and Tegra234 HDA bindings (Jaroslav Kysela) [RHEL-112757] - ASoC: mediatek: mt8183-afe-pcm: shorten mt8183_is_volatile_reg() (Jaroslav Kysela) [RHEL-112757] - ASoC: mediatek: mt8183-afe-pcm: Shorten irq_data table using macros (Jaroslav Kysela) [RHEL-112757] - ASoC: mediatek: mt8183-afe-pcm: Shorten memif_data table using macros (Jaroslav Kysela) [RHEL-112757] - ASoC: q6apm-lpass-dais: Print APM port id in decimal on enable error (Jaroslav Kysela) [RHEL-112757] - ASoC: amd: use new ACP dev names for DAI links (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: mediatek: Simplify mediatek,clk-provider (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: Intel: hda: Set the mic_privacy flag for soundwire with ACE3+ (Jaroslav Kysela) [RHEL-112757] - soundwire: intel: Add awareness of ACE3+ microphone privacy (Jaroslav Kysela) [RHEL-112757] - soundwire: bus: Add internal slave ID and use for IRQs (Jaroslav Kysela) [RHEL-112757] - soundwire: bus: Simplify sdw_assign_device_num() (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: Add Everest ES8389 audio CODEC (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: add support for ES8389 (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: cs35l56: Log tuning unique identifiers during firmware load (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Log tuning unique identifiers during firmware load (Jaroslav Kysela) [RHEL-112757] - ASoC: tlv320aic3x: Use dev_err_probe (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tas2781: Fix the ld issue reported by kernel test robot (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tas2781: Fix the symbol was not declare warning reported by kernel test robot (Jaroslav Kysela) [RHEL-112757] - ALSA: sb: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-112757] - ASoC: soc-core: merge snd_soc_unregister_component() and snd_soc_unregister_component_by_driver() (Jaroslav Kysela) [RHEL-112757] - ALSA: msnd: Remove midi code (Jaroslav Kysela) [RHEL-112757] - ALSA: intel-hdmi-audio: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-112757] - ALSA: wavefront: remove snd_wavefront_xxx() (Jaroslav Kysela) [RHEL-112757] - ALSA: isa/gus: remove snd_gf1_lfo_xxx() (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: intel-nhlt: Print errors in intel_nhlt_ssp_device_type() (Jaroslav Kysela) [RHEL-112757] - ASoC: soc.h: remove unnecessary definitions (Jaroslav Kysela) [RHEL-112757] - ASoC: soc.h: remove snd_soc_disconnect_sync() (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: atom: Remove unused functions (Jaroslav Kysela) [RHEL-112757] - ASoC: rt712-sdca: remove redundant else path of if statement (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: rt9123: Fix sparse cast warning (Jaroslav Kysela) [RHEL-112757] - ALSA: usb: mixer_us16x08: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: usb: mixer_quirks: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: pci: ali5451: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: pci: asihpi: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: pci: au88x0: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: usb: mixer: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: usb: midi: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: pci: hda: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: virtio: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: core: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: i2c: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: sh: use snd_kcontrol_chip() (Jaroslav Kysela) [RHEL-112757] - ALSA: gus: Remove deadcode (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tas2781: Create an independent lib to save the shared parts for both SPI and I2C driver (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: Remove unused snd_hdac_stream_get_spbmaxfifo (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: Remove unused snd_hda_add_nid (Jaroslav Kysela) [RHEL-112757] - ASoC: rt712-sdca: remove redundant else path of if statement (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: soc-acpi-intel-ptl-match: Add rt713_vb_l3_rt1320_l3 support (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: soc-acpi-intel-lnl/ptl-match: Simplify variable name (Jaroslav Kysela) [RHEL-112757] - ASoC: tas2781: Add a debugfs node for acoustic tuning (Jaroslav Kysela) [RHEL-112757] - ASoC: amd: sof_amd_sdw: add logic to get cpu_pin_id for ACP7.0/ACP7.1 platforms (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: soc-acpi-intel-ptl-match: Sort ACPI link/machine tables (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: cs42l52: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: cs42l52: Drop cs42l52.h (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: cs42l52: Sort headers alphabetically (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: cs42l73: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: cs42l73: Drop cs42l73.h (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: cs42l73: Sort headers alphabetically (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: cs42l56: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: cs42l56: Drop cs42l56.h (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: cs42l56: Sort headers alphabetically (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: add disable_function_topology module parameter (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: set disable_function_topology if override_tplg_filename is set (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: add disable_function_topology flag (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Read Silicon ID from DIE_STS registers for CS35L63 (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Add initial support for CS35L63 for I2C and SoundWire (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Add Mute, Volume and Posture registers to firmware register list (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Add struct to index firmware registers (Jaroslav Kysela) [RHEL-112757] - ASoC: cs35l56: Add Index based on ACPI HID or SDW ID to select regmap config (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: imx8m: Use reset controller API to control the DSP (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: sof_sdw: Avoid NULL check fail when re-probing (Jaroslav Kysela) [RHEL-112757] - ASoC: sdw_utils: Remove num_platforms from simple DAI helper (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tas2781: select CONFIG_CRC8 for SND_HDA_SCODEC_TAS2781_I2C (Jaroslav Kysela) [RHEL-112757] - ALSA: core: Remove unused snd_jack_set_parent (Jaroslav Kysela) [RHEL-112757] - ALSA: core: Remove unused snd_device_get_state (Jaroslav Kysela) [RHEL-112757] - ALSA: seq: Remove unused snd_seq_queue_client_leave_cells (Jaroslav Kysela) [RHEL-112757] - ALSA: pcm: Remove unused snd_dmaengine_pcm_open_request_chan (Jaroslav Kysela) [RHEL-112757] - ALSA: pcm: Remove unused snd_pcm_rate_range_to_bits (Jaroslav Kysela) [RHEL-112757] - ASoC: intel: atom: Return -ENOMEM if pcim_iomap() fails (Jaroslav Kysela) [RHEL-112757] - ASoC: intel: atom: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ASoC: intel: avs: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ASoC: sof: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: amd: add build support for soundwire (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: amd: add soundwire wake irq handling (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: amd: enable soundwire host wake irq mask (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: amd: refactor acp reset sequence (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: amd: enable ACP_PME_EN register for ACP7.0 & ACP7.1 platforms (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: amd: update soundwire specific acp descriptor fields (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: amd: add ACP7.1 platform support (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: amd: remove else condition in resume sequence (Jaroslav Kysela) [RHEL-112757] - ASoC: fsl_rpmsg: Allocate a smaller buffer size for capture stream (Jaroslav Kysela) [RHEL-112757] - ASoC: fsl_rpmsg: Configure CPU DAI for card that sits on rpmsg-micfil-channel (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: tas2764: Fix Wvoid-pointer-to-enum-cast warning (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: wsa88xx/wcd938x: Drop kerneldoc marker from inner comment (Jaroslav Kysela) [RHEL-112757] - ASoC: mediatek: mt8195: use snd_soc_dlc_is_dummy() (Jaroslav Kysela) [RHEL-112757] - ASoC: mediatek: mt8188: use snd_soc_dlc_is_dummy() (Jaroslav Kysela) [RHEL-112757] - ASoC: soc-utils: add snd_soc_dlc_is_dummy() (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: sma1307: Remove including of_gpio.h (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: twl4030: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: twl4030: Sort headers alphabetically (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tas2781: Remove tas2781_spi_fwlib.c and leverage SND_SOC_TAS2781_FMWLIB (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/cs35l56: Remove dependency on COMPILE_TEST (Jaroslav Kysela) [RHEL-112757] - ASoC: wm_adsp: Don't use no_free_ptr() when passing to PTR_ERR() (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: Use min() to simplify aw_dev_dsp_update_container() (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: topology: Fix null pointer dereference (Jaroslav Kysela) [RHEL-112757] - ASoC: amd: acp: Drop superfluous assignment in acp_sof_probe() (Jaroslav Kysela) [RHEL-112757] - ALSA: korg1212: Replace the pending stop check code with sync_stop PCM ops (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/hda_cs_dsp_ctl: Delete hda_cs_dsp_ctl module (Jaroslav Kysela) [RHEL-112757] - ASoC: renesas: add MSIOF sound support (Jaroslav Kysela) [RHEL-112757] - ASoC: renesas: rsnd: enable to use "adg" clock (Jaroslav Kysela) [RHEL-112757] - ASoC: renesas: rsnd: care BRGA/BRGB select in rsnd_adg_clk_enable() (Jaroslav Kysela) [RHEL-112757] - ASoC: renesas: rsnd: allow to use ADG as standalone (Jaroslav Kysela) [RHEL-112757] - dt-bindings: renesas,sh-msiof: Add MSIOF I2S Sound support (Jaroslav Kysela) [RHEL-112757] - ASoC: starfive: Use max() to simplify code in jh7110_tdm_syncdiv() (Jaroslav Kysela) [RHEL-112757] - ASoC: fsl: don't set link->platform if not needed (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Fix NULL pointer dereference (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: wcd938x: drop unnecessary mux flag assignment (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: wcd938x: fix mux error handling (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: tpa6130a2: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: tpa6130a2: Remove tpa6130a2_platform_data (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: tpa6130a2: Sort headers alphabetically (Jaroslav Kysela) [RHEL-112757] - ALSA: maestro3: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: ali5451: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: ca0106: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: cs46xx: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: cs5535: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: echoaudio: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: emu10k1: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: ice: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: nm256: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: riptide: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: ymfpci: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: rme9652: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: trident: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: vx222: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: lx6464es: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: oxygen: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: als: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: azt3328: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: es19x8: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: fm801: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: intel8x: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: sis7019: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: via82: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: cmipci: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: ens1370: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: rme32: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: rme96: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: sonicvibes: Use pure devres PCI (Jaroslav Kysela) [RHEL-112757] - ALSA: HDA: Add Zhaoxin HDMI Controller and Codec support (Jaroslav Kysela) [RHEL-112757] - ASoC: adau7118: Allow dsp_a mode (Jaroslav Kysela) [RHEL-112757] - ASoC: rockchip: add Serial Audio Interface (SAI) driver (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: add schema for rockchip SAI controllers (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: fsl,mqs: Document audio graph port (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Add Pioneer DJ DJM-V10 support (Jaroslav Kysela) [RHEL-112757] - ALSA: pcm: Make snd_pcm_lib_malloc_pages() debug message say "allocate" (Jaroslav Kysela) [RHEL-112757] - ASoC: wm8998: Add Kconfig prompt (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: Remove unused rt566[58]_sel_asrc_clk_src (Jaroslav Kysela) [RHEL-112757] - ASoC: cs48l32: Use modern PM_OPS (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: mt8195: add missing audio routing and link-name (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: mt8195: add compatible mt8195_mt6359 (Jaroslav Kysela) [RHEL-112757] - ASoC: mediatek: mt8195: Add mt8195-mt6359 card (Jaroslav Kysela) [RHEL-112757] - ASoC: mediatek: mt8195: Move rt5682 specific dapm routes (Jaroslav Kysela) [RHEL-112757] - firmware: cs_dsp: Add some sanity-checking to test harness (Jaroslav Kysela) [RHEL-112757] - ASoC: rt722: fix pop noise at the beginning of DMIC recording (Jaroslav Kysela) [RHEL-112757] - ASoC: cs48l32: Fix spelling mistake "exceeeds" -> "exceeds" (Jaroslav Kysela) [RHEL-112757] - ASoC: fsl_rpmsg: Remove useless return variable (Jaroslav Kysela) [RHEL-112757] - ASoC: ak4458: Remove useless return variable (Jaroslav Kysela) [RHEL-112757] - ASoC: rt722: fix pop noise at the beginning of headphone playback (Jaroslav Kysela) [RHEL-112757] - ASoC: cs-amp-lib-test: Use faux bus instead of creating a dummy platform device (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/tas2781: Create a common header for both spi and i2c tas2781 hda driver (Jaroslav Kysela) [RHEL-112757] - ASoC: qcom: qdsp6: Set error code in q6usb_hw_params() (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: qcom: delete a stray tab (Jaroslav Kysela) [RHEL-112757] - ALSA: hda/cirrus_scodec_test: Modernize creation of dummy devices (Jaroslav Kysela) [RHEL-112757] - ASoC: cs-amp-lib-test: Use flex_array_size() (Jaroslav Kysela) [RHEL-112757] - ASoC: cs48l32: Add driver for Cirrus Logic CS48L32 audio DSP (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: Add Cirrus Logic CS48L32 audio DSP (Jaroslav Kysela) [RHEL-112757] - ASoC: cs-amp-lib: Annotate struct cirrus_amp_efi_data with __counted_by() (Jaroslav Kysela) [RHEL-112757] - ASoC: cs-amp-lib: Replace offsetof() with struct_size() (Jaroslav Kysela) [RHEL-112757] - ASoC: rsnd: use snd_pcm_direction_name() (Jaroslav Kysela) [RHEL-112757] - ASoC: soc_sdw_utils: skip the endpoint that doesn't present (Jaroslav Kysela) [RHEL-112757] - ASoC: sdw_utils: split asoc_sdw_get_codec_name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: soc-acpi-intel-mtl-match: add get_function_tplg_files ops (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: soc-acpi-intel-ptl-match: add get_function_tplg_files ops (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: soc-acpi-intel-lnl-match: set get_function_tplg_files ops (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: topology: load multiple topologies (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: topology: don't convert error code (Jaroslav Kysela) [RHEL-112757] - ASoC: SOF: topology: allocate string for tuples (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: Add support for Richtek rt9123p (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: Add bindings for Richtek rt9123p (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: Add support for Richtek rt9123 (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: Add bindings for Richtek rt9123 (Jaroslav Kysela) [RHEL-112757] - ASoC: tas2764: expose die temp to hwmon (Jaroslav Kysela) [RHEL-112757] - ASoC: tas2770: expose die temp to hwmon (Jaroslav Kysela) [RHEL-112757] - ASoC: tas2764: Apply Apple quirks (Jaroslav Kysela) [RHEL-112757] - ASoC: tas2764: Raise regmap range maximum (Jaroslav Kysela) [RHEL-112757] - ASoC: tas2770: Support setting the PDM TX slot (Jaroslav Kysela) [RHEL-112757] - ASoC: ac97: Add DT support (Jaroslav Kysela) [RHEL-112757] - ASoC: loongson: Add Loongson-1 AC97 Driver (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: Add Realtek ALC203 Codec (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: Add Loongson-1 AC97 Controller (Jaroslav Kysela) [RHEL-112757] - ASoC: test-component: add set_tdm_slot stub implementation (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: qcom: Notify USB audio devices on USB offload probing (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: qcom: Add USB offload route kcontrol (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: qcom: Don't allow USB offload path if PCM device is in use (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: qcom: Introduce QC USB SND offloading support (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: qcom: Add USB QMI definitions (Jaroslav Kysela) [RHEL-112757] - ASoC: qcom: qdsp6: Fetch USB offload mapped card and PCM device (Jaroslav Kysela) [RHEL-112757] - ASoC: qcom: qdsp6: Add headphone jack for offload connection status (Jaroslav Kysela) [RHEL-112757] - ASoC: qcom: qdsp6: Add USB backend ASoC driver for Q6 (Jaroslav Kysela) [RHEL-112757] - ASoC: qcom: qdsp6: q6afe: Increase APR timeout (Jaroslav Kysela) [RHEL-112757] - ASoC: qcom: qdsp6: Introduce USB AFE port to q6dsp (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: Update example for enabling USB offload on SM8250 (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: qcom,q6dsp-lpass-ports: Add USB_RX port (Jaroslav Kysela) [RHEL-112757] - ASoC: usb: Fetch ASoC card and pcm device information (Jaroslav Kysela) [RHEL-112757] - ASoC: doc: Add documentation for SOC USB (Jaroslav Kysela) [RHEL-112757] - ASoC: usb: Rediscover USB SND devices on USB port add (Jaroslav Kysela) [RHEL-112757] - ASoC: usb: Create SOC USB SND jack kcontrol (Jaroslav Kysela) [RHEL-112757] - ASoC: usb: Add PCM format check API for USB backend (Jaroslav Kysela) [RHEL-112757] - ASoC: Add SoC USB APIs for adding an USB backend (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Allow for rediscovery of connected USB SND devices (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Prevent starting of audio stream if in use (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Save UAC sample size information (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Introduce USB SND platform op callbacks (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Check for support for requested audio format (Jaroslav Kysela) [RHEL-112757] - ALSA: usb-audio: Export USB SND APIs for modules (Jaroslav Kysela) [RHEL-112757] - ALSA: Add USB audio device jack type (Jaroslav Kysela) [RHEL-112757] - ASoC: wm_adsp: Use vmemdup_user() instead of open-coding (Jaroslav Kysela) [RHEL-112757] - ALSA: cs46xx: Remove commented out code (Jaroslav Kysela) [RHEL-112757] - ASoC: tas2781-i2c: Remove unnecessary NULL check before release_firmware() (Jaroslav Kysela) [RHEL-112757] - ASoC: wm_adsp: Remove unnecessary NULL check before release_firmware() (Jaroslav Kysela) [RHEL-112757] - ASoC: pcm6240: Remove unnecessary NULL check before release_firmware() (Jaroslav Kysela) [RHEL-112757] - ASoC: tas2781-fmwlib: Remove unnecessary NULL check before release_firmware() (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: ak5386: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Support 16 TDMs in dynamic assignment (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Iterate over correct number of TDMs (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Assign unique ID to platform devices (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Allow to specify custom configurations with i2s_test (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Allow for 16 channels configuration (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Rename AVS_CHANNELS_MAX define (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: Allow for 16 channels configuration (Jaroslav Kysela) [RHEL-112757] - lib/string_helpers: Introduce parse_int_array() (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change ssm4567 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change rt5682 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change rt5663 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change rt5514 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change rt298 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change rt286 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change rt274 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change probe card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change pcm3168a card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change nau8825 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change max98927 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change max98373 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change max98357a card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change sspX-loopback card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change hdaudio card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change es8336 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change DMIC card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Change da7219 card name (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Use topology information for endpoint numbers (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: boards: Add Kconfig option for obsolete card names (Jaroslav Kysela) [RHEL-112757] - ALSA: hda: Select avs-driver by default on FCL (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Add boards definitions for FCL platform (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Conditionally add DMA config when creating Copier (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Dynamically assign ops for non-HDAudio DAIs (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: PTL-based platforms support (Jaroslav Kysela) [RHEL-112757] - ALSA: hdspm: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ALSA: lola: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ALSA: cs5530: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ALSA: hda_intel: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ALSA: cs4281: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ALSA: bt87x: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ALSA: aw2: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ALSA: au88x0: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ALSA: atiixp: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ALSA: ad1889: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ASoC: sta32x: Remove unnecessary NULL check before clk_disable_unprepare() (Jaroslav Kysela) [RHEL-112757] - ASoC: hdmi-codec: wire up the .prepare callback also for SPDIF DAI ops (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: rt5677: Use secs_to_jiffies() instead of msecs_to_jiffies() (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: Remove unused SND_SOC_INTEL_DA7219_MAX98357A_GENERIC (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: fsl,mqs: Reference common DAI properties (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: maxim,max98925: Fix include placement in DTS example (Jaroslav Kysela) [RHEL-112757] - ASoC: loongson: Replace deprecated PCI functions (Jaroslav Kysela) [RHEL-112757] - ASoC: sun8i-codec: Remove unnecessary NULL check before clk_prepare_enable/clk_disable_unprepare (Jaroslav Kysela) [RHEL-112757] - ASoC: Intel: avs: Permit deferred card registration (Jaroslav Kysela) [RHEL-112757] - ASoC: core: Complete support for card rebinding (Jaroslav Kysela) [RHEL-112757] - ASoC: stm: stm32_sai: Use dev_err_probe() (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: wcd938x: add mux control support for hp audio mux (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: wcd93xx: add bindings for audio mux controlling hp (Jaroslav Kysela) [RHEL-112757] - ASoC: codecs: wcd-mbhc: cleanup swap_gnd_mic api (Jaroslav Kysela) [RHEL-112757] - ASoC: fsl_sai: separate set_tdm_slot() for tx and rx (Jaroslav Kysela) [RHEL-112757] - ASoC: fsl_sai: separate 'is_dsp_mode' for tx and rx (Jaroslav Kysela) [RHEL-112757] - ASoC: fsl_sai: add xlate_tdm_slot_mask() callback (Jaroslav Kysela) [RHEL-112757] - ASoC: fsl_sai: allow to set mclk rate with zero clk_id (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: wcd938x: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-112757] - ASoC: codec: wcd939x: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: audio-graph-card2: add widgets and hp-det-gpios support (Jaroslav Kysela) [RHEL-112757] - ASoC: dt-bindings: support imx95's CM7 core (Jaroslav Kysela) [RHEL-112757] - kunit: platform: Resolve 'struct completion' warning (Jaroslav Kysela) [RHEL-112757] - smb: client: fix refcount leak in smb2_set_path_attr (Paulo Alcantara) [RHEL-128582] - smb: client: fix potential UAF in smb2_close_cached_fid() (Paulo Alcantara) [RHEL-128582] - smb: client: fix potential cfid UAF in smb2_query_info_compound (Paulo Alcantara) [RHEL-128582] - smb: client: Fix refcount leak for cifs_sb_tlink (Paulo Alcantara) [RHEL-128582] - cifs: parse_dfs_referrals: prevent oob on malformed input (Paulo Alcantara) [RHEL-128582] - smb: client: remove cfids_invalidation_worker (Paulo Alcantara) [RHEL-128582] - smb client: fix bug with newly created file in cached dir (Paulo Alcantara) [RHEL-128582] - smb: client: short-circuit negative lookups when parent dir is fully cached (Paulo Alcantara) [RHEL-128582] - smb: client: short-circuit in open_cached_dir_by_dentry() if !dentry (Paulo Alcantara) [RHEL-128582] - smb: client: remove pointless cfid->has_lease check (Paulo Alcantara) [RHEL-128582] - smb: client: remove unused fid_lock (Paulo Alcantara) [RHEL-128582] - smb: client: update cfid->last_access_time in open_cached_dir_by_dentry() (Paulo Alcantara) [RHEL-128582] - smb: client: ensure open_cached_dir_by_dentry() only returns valid cfid (Paulo Alcantara) [RHEL-128582] - smb: client: account smb directory cache usage and per-tcon totals (Paulo Alcantara) [RHEL-128582] - smb: client: add drop_dir_cache module parameter to invalidate cached dirents (Paulo Alcantara) [RHEL-128582] - smb: client: show lease state as R/H/W (or NONE) in open_files (Paulo Alcantara) [RHEL-128582] - smb: client: show negotiated cipher in DebugData (Paulo Alcantara) [RHEL-128582] - smb: client: add new tracepoint to trace lease break notification (Paulo Alcantara) [RHEL-128582] - smb: client: Fix NULL pointer dereference in cifs_debug_dirs_proc_show() (Paulo Alcantara) [RHEL-128582] - redhat/configs: Enable CONFIG_EFI_SECRET for aarch64 (Gavin Shan) [RHEL-128093] - arm64: acpi: Enable ACPI CCEL support (Gavin Shan) [RHEL-128093] - arm64: Enable EFI secret area Securityfs support (Gavin Shan) [RHEL-128093] - arm64: realm: ioremap: Allow mapping memory as encrypted (Gavin Shan) [RHEL-128093] - time/timecounter: Fix the lie that struct cyclecounter is const (Ivan Vecera) [RHEL-122644] - ethtool: Don't check for RXFH fields conflict when no input_xfrm is requested (Ivan Vecera) [RHEL-122638] - net: ethtool: don't mux RXFH via rxnfc callbacks (Ivan Vecera) [RHEL-122638] - eth: hns3: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: hinic: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: nfp: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: mlx5: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: qede: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: benet: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: sfc: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: sfc: siena: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: sfc: falcon: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: sxgbe: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: dpaa2: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: dpaa: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: niu: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: otx2: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: thunder: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: ena: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: bnxt: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: bnx2x: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: iavf: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: ice: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: i40e: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: fm10k: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: ixgbe: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: igc: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: igb: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: e1000e: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: lan743x: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: cxgb4: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: cisco: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: gianfar: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - net: drv: hyperv: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - net: drv: virtio: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - net: drv: vmxnet3: migrate to new RXFH callbacks (Ivan Vecera) [RHEL-122638] - eth: remove empty RXFH handling from drivers (Ivan Vecera) [RHEL-122638] - net: ethtool: add dedicated callbacks for getting and setting rxfh fields (Ivan Vecera) [RHEL-122638] - net: ethtool: require drivers to opt into the per-RSS ctx RXFH (Ivan Vecera) [RHEL-122638] - net: ethtool: remove the duplicated handling from rxfh and rxnfc (Ivan Vecera) [RHEL-122638] - net: ethtool: copy the rxfh flow handling (Ivan Vecera) [RHEL-122638] - drm/i915: Avoid open-coded use of ratelimit_state structure's ->missed field (Anusha Srivatsa) [RHEL-114532] - drm/i915/ggtt: Add intel_ggtt_read_entry() (Anusha Srivatsa) [RHEL-114532] - drm/amd/pm: Avoid open-coded use of ratelimit_state structure's internals (Anusha Srivatsa) [RHEL-114532] - agp/intel-gtt: Add intel_gmch_gtt_read_entry() (Anusha Srivatsa) [RHEL-114532] - elf: add remaining SHF_ flag macros (Anusha Srivatsa) [RHEL-114532] - random: Avoid open-coded use of ratelimit_state structure's ->missed field (Anusha Srivatsa) [RHEL-114532] - ratelimit: Convert the ->missed field to atomic_t (Anusha Srivatsa) [RHEL-114532] - ratelimit: Create functions to handle ratelimit_state internals (Anusha Srivatsa) [RHEL-114532] - bits: introduce fixed-type BIT_U*() (Anusha Srivatsa) [RHEL-114532] - compiler.h: add const_true() (Anusha Srivatsa) [RHEL-114532] - bits: introduce fixed-type GENMASK_U*() (Anusha Srivatsa) [RHEL-114532] - firmware: sysfb: Move bpp-depth calculation into screen_info helper (Anusha Srivatsa) [RHEL-114532] - drm/sysfb: Add efidrm for EFI displays (Anusha Srivatsa) [RHEL-114532] - RDMA/ionic: Fix memory leak of admin q_wr (Jakub Ramaseuski) [RHEL-121486] - RDMA/ionic: Fix build failure on SPARC due to xchg() operand size (Jakub Ramaseuski) [RHEL-121486] - RDMA/ionic: Use ether_addr_copy instead of memcpy (Jakub Ramaseuski) [RHEL-121486] - redhat/configs: Disable CONFIG_INFINIBAND_IONIC in generic (Jakub Ramaseuski) [RHEL-121486] - RDMA/ionic: Add Makefile/Kconfig to kernel build environment (Jakub Ramaseuski) [RHEL-121486] - RDMA/ionic: Implement device stats ops (Jakub Ramaseuski) [RHEL-121486] - RDMA/ionic: Register device ops for miscellaneous functionality (Jakub Ramaseuski) [RHEL-121486] - RDMA/ionic: Register device ops for datapath (Jakub Ramaseuski) [RHEL-121486] - RDMA/ionic: Register device ops for control path (Jakub Ramaseuski) [RHEL-121486] - RDMA/ionic: Create device queues to support admin operations (Jakub Ramaseuski) [RHEL-121486] - RDMA/ionic: Register auxiliary module for ionic ethernet adapter (Jakub Ramaseuski) [RHEL-121486] - RDMA: Add IONIC to rdma_driver_id definition (Jakub Ramaseuski) [RHEL-121486] - net: ionic: map SKB after pseudo-header checksum prep (Jakub Ramaseuski) [RHEL-121486] - net: ionic: add dma_wmb() before ringing TX doorbell (Jakub Ramaseuski) [RHEL-121486] - ionic: use int type for err in ionic_get_module_eeprom_by_page (Jakub Ramaseuski) [RHEL-121486] - net: ionic: Provide doorbell and CMB region information (Jakub Ramaseuski) [RHEL-121486] - net: ionic: Provide interrupt allocation support for the RDMA driver (Jakub Ramaseuski) [RHEL-121486] - net: ionic: Provide RDMA reset support for the RDMA driver (Jakub Ramaseuski) [RHEL-121486] - net: ionic: Export the APIs from net driver to support device commands (Jakub Ramaseuski) [RHEL-121486] - net: ionic: Update LIF identity with additional RDMA capabilities (Jakub Ramaseuski) [RHEL-121486] - net: ionic: Create an auxiliary device for rdma driver (Jakub Ramaseuski) [RHEL-121486] - ethernet: ionic: Fix DMA mapping tests (Jakub Ramaseuski) [RHEL-121486] - ionic: cancel delayed work earlier in remove (Jakub Ramaseuski) [RHEL-121486] - ionic: clean dbpage in de-init (Jakub Ramaseuski) [RHEL-121486] - ionic: print firmware heartbeat as unsigned (Jakub Ramaseuski) [RHEL-121486] - ionic: Prevent driver/fw getting out of sync on devcmd(s) (Jakub Ramaseuski) [RHEL-121486] - tools/power/x86/intel-speed-select: v1.23 release (Steve Best) [RHEL-110834] - tools/power/x86/intel-speed-select: Skip uncore frequency update (Steve Best) [RHEL-110834] - tools/power/x86/intel-speed-select: Support SST PP revision 2 fields (Steve Best) [RHEL-110834] - platform/x86: ISST: Do Not Restore SST MSRs on CPU Online Operation (Steve Best) [RHEL-110834] - platform/x86: ISST: Update minor version (Steve Best) [RHEL-110834] - platform/x86: ISST: Support SST-PP revision 2 (Steve Best) [RHEL-110834] - platform/x86: ISST: Support SST-TF revision 2 (Steve Best) [RHEL-110834] - dmaengine: idxd: Add a new IAA device ID for Wildcat Lake family platforms (Vladis Dronov) [RHEL-95628] - crypto: iaa - Optimize rebalance_wq_table() (Vladis Dronov) [RHEL-95628] - crypto: iaa - Adjust workqueue allocation type (Vladis Dronov) [RHEL-95628] - redhat: remove EARLY ystream bits (Jan Stancek) - platform/x86/amd/pmf: Add debug logs for pending requests and custom BIOS inputs (Steve Best) [RHEL-73301] - platform/x86/amd/pmf: Call enact function sooner to process early pending requests (Steve Best) [RHEL-73301] - platform/x86/amd/pmf: Preserve custom BIOS inputs for evaluating the policies (Steve Best) [RHEL-73301] - platform/x86/amd/pmf: Add custom BIOS input support for AMD_CPU_ID_PS (Steve Best) [RHEL-73301] - platform/x86/amd/pmf: Add helper to verify BIOS input notifications are enable/disable (Steve Best) [RHEL-73301] - platform/x86/amd/pmf: Update ta_pmf_action structure member (Steve Best) [RHEL-73301] - platform/x86/amd/pmf: Extend custom BIOS inputs for more policies (Steve Best) [RHEL-73301] - platform/x86/amd/pmf: Fix the custom bios input handling mechanism (Steve Best) [RHEL-73301] - platform/x86/amd/pmf: Add support for adjusting PMF PPT and PPT APU thresholds (Steve Best) [RHEL-73301] - platform/x86/dell: Set USTT mode according to BIOS after reboot (Steve Best) [RHEL-73301] - fs: Add 'initramfs_options' to set initramfs mount options (Ian Kent) [RHEL-116977] - thermal: Constify struct thermal_zone_device_ops (Steve Best) [RHEL-110837] - thermal: int340x: processor_thermal: Add Wildcat Lake PCI ID (Steve Best) [RHEL-110837] - thermal: intel: x86_pkg_temp_thermal: Fix bogus trip temperature (Steve Best) [RHEL-110837] - thermal: intel: int340x: Enable platform temperature control (Steve Best) [RHEL-110837] - thermal: intel: int340x: Add missing DVFS support flags (Steve Best) [RHEL-110837] - thermal: int340x: Add NULL check for adev (Steve Best) [RHEL-110837] - thermal: intel: Clean up zone_trips[] initialization in int340x_thermal_zone_add() (Steve Best) [RHEL-110837] - thermal: int340x: Use kcalloc() instead of kzalloc() with multiplication (Steve Best) [RHEL-110837] - mfd: intel-lpss: Add Intel Wildcat Lake LPSS PCI IDs (Steve Best) [RHEL-95650] - docs: networking: Describe irq suspension (Antoine Tenart) [RHEL-77189] - selftests: net: Add busy_poll_test (Antoine Tenart) [RHEL-77189] - eventpoll: Control irq suspension for prefer_busy_poll (Antoine Tenart) [RHEL-77189] - eventpoll: Trigger napi_busy_loop, if prefer_busy_poll is set (Antoine Tenart) [RHEL-77189] - net: Add control functions for irq suspension (Antoine Tenart) [RHEL-77189] - net: Add napi_struct parameter irq_suspend_timeout (Antoine Tenart) [RHEL-77189] - redhat/configs: enable Micrel PHY for NXP Automotive SoCs S32G2xx/S32G3xx/S32R45 (Alessandro Carminati) [RHEL-116889] - redhat/configs: enable Synopsis DWMAC IP on NXP Automotive SoCs S32G2xx/S32G3xx/S32R45 (Alessandro Carminati) [RHEL-116889] - MAINTAINERS: Add Jan Petrous as the NXP S32G/R DWMAC driver maintainer (Alessandro Carminati) [RHEL-116889] - net: stmmac: dwmac-s32: add basic NXP S32G/S32R glue driver (Alessandro Carminati) [RHEL-116889] - dt-bindings: net: Add DT bindings for DWMAC on NXP S32G/R SoCs (Alessandro Carminati) [RHEL-116889] - net: dwmac-sti: Use helper rgmii_clock (Alessandro Carminati) [RHEL-116889] - net: xgene_enet: Use helper rgmii_clock (Alessandro Carminati) [RHEL-116889] - net: macb: Use helper rgmii_clock (Alessandro Carminati) [RHEL-116889] - net: dwmac-starfive: Use helper rgmii_clock (Alessandro Carminati) [RHEL-116889] - net: dwmac-rk: Use helper rgmii_clock (Alessandro Carminati) [RHEL-116889] - net: dwmac-intel-plat: Use helper rgmii_clock (Alessandro Carminati) [RHEL-116889] - net: dwmac-imx: Use helper rgmii_clock (Alessandro Carminati) [RHEL-116889] - net: stmmac: Fix clock rate variables size (Alessandro Carminati) [RHEL-116889] - net: stmmac: Extend CSR calc support (Alessandro Carminati) [RHEL-116889] - net: stmmac: Fix CSR divider comment (Alessandro Carminati) [RHEL-116889] - iommu/amd: Add efr[HATS] max v1 page table level (CKI Backport Bot) [RHEL-107079] - iommu/amd: Add HATDis feature support (CKI Backport Bot) [RHEL-107079] - net/smc: fix one NULL pointer dereference in smc_ib_is_sg_need_sync() (Mete Durlu) [RHEL-99998] - net/smc: fix UAF on smcsk after smc_listen_out() (Mete Durlu) [RHEL-99998] - smc: Fix various oops due to inet_sock type confusion. (Mete Durlu) [RHEL-99998] - net/smc: convert timeouts to secs_to_jiffies() (Mete Durlu) [RHEL-99998] - net/smc: replace strncpy with strscpy (Mete Durlu) [RHEL-99998] - net/smc: remove unused function smc_lo_supports_v2 (Mete Durlu) [RHEL-99998] - net/smc: remove unused input parameters in smc_buf_get_slot (Mete Durlu) [RHEL-99998] - s390: ism: Pass string literal as format argument of dev_set_name() (Mete Durlu) [RHEL-99998] - smc: Fix lockdep false-positive for IPPROTO_SMC. (Mete Durlu) [RHEL-99998] - net/smc: use the correct ndev to find pnetid by pnetid table (Mete Durlu) [RHEL-99998] - net/smc: fix data error when recvmsg with MSG_PEEK flag (Mete Durlu) [RHEL-99998] - net/smc: delete pointless divide by one (Mete Durlu) [RHEL-99998] - net/smc: check return value of sock_recvmsg when draining clc data (Mete Durlu) [RHEL-99998] - net/smc: check smcd_v2_ext_offset when receiving proposal msg (Mete Durlu) [RHEL-99998] - net/smc: check v2_ext_offset/eid_cnt/ism_gid_cnt when receiving proposal msg (Mete Durlu) [RHEL-99998] - net/smc: check iparea_offset and ipv6_prefixes_cnt when receiving proposal msg (Mete Durlu) [RHEL-99998] - net/smc: check sndbuf_space again after NOSPACE flag is set in smc_poll (Mete Durlu) [RHEL-99998] - net/smc: protect link down work from execute after lgr freed (Mete Durlu) [RHEL-99998] - net/smc: support SMC-R V2 for rdma devices with max_recv_sge equals to 1 (Mete Durlu) [RHEL-99998] - net/smc: fix LGR and link use-after-free issue (Mete Durlu) [RHEL-99998] - net/smc: initialize close_work early to avoid warning (Mete Durlu) [RHEL-99998] - net/smc: Address spelling errors (Mete Durlu) [RHEL-99998] - s390: Disable ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP (Luiz Capitulino) [RHEL-116228] - USB: core: remove the move buf action (Desnes Nunes) [RHEL-122019] - usb: typec: tcpm: properly deliver cable vdms to altmode drivers (Desnes Nunes) [RHEL-122019] - xhci: fix memory leak regression when freeing xhci vdev devices depth first (Desnes Nunes) [RHEL-122019] - xhci: dbc: Fix full DbC transfer ring after several reconnects (Desnes Nunes) [RHEL-122019] - xhci: dbc: decouple endpoint allocation from initialization (Desnes Nunes) [RHEL-122019] - USB: serial: option: add Telit Cinterion LE910C4-WWX new compositions (Desnes Nunes) [RHEL-122019] - USB: serial: option: add Telit Cinterion FN990A w/audio compositions (Desnes Nunes) [RHEL-122019] - usb: xhci: Fix slot_id resource race conflict (Desnes Nunes) [RHEL-122019] - usb: typec: fusb302: Revert incorrect threaded irq fix (Desnes Nunes) [RHEL-122019] - USB: core: Update kerneldoc for usb_hcd_giveback_urb() (Desnes Nunes) [RHEL-122019] - memstick: Fix deadlock by moving removing flag earlier (Desnes Nunes) [RHEL-122019] - usb: dwc3: Remove WARN_ON for device endpoint command timeouts (Desnes Nunes) [RHEL-122019] {CVE-2025-39801} - USB: storage: Ignore driver CD mode for Realtek multi-mode Wi-Fi dongles (Desnes Nunes) [RHEL-122019] - usb: storage: realtek_cr: Use correct byte order for bcs->Residue (Desnes Nunes) [RHEL-122019] - usb: chipidea: imx: improve usbmisc_imx7d_pullup() (Desnes Nunes) [RHEL-122019] - kcov, usb: Don't disable interrupts in kcov_remote_start_usb_softirq() (Desnes Nunes) [RHEL-122019] - usb: dwc3: pci: add support for the Intel Wildcat Lake (Desnes Nunes) [RHEL-122019] - usb: dwc3: Ignore late xferNotReady event to prevent halt timeout (Desnes Nunes) [RHEL-122019] - USB: storage: Add unusual-devs entry for Novatek NTK96550-based camera (Desnes Nunes) [RHEL-122019] - usb: core: hcd: fix accessing unmapped memory in SINGLE_STEP_SET_FEATURE test (Desnes Nunes) [RHEL-122019] - usb: renesas-xhci: Fix External ROM access timeouts (Desnes Nunes) [RHEL-122019] - usb: quirks: Add DELAY_INIT quick for another SanDisk 3.2Gen1 Flash Drive (Desnes Nunes) [RHEL-122019] - phy: ti: omap-usb2: fix device leak at unbind (Desnes Nunes) [RHEL-122019] - net: usbnet: Fix the wrong netif_carrier_on() call (Desnes Nunes) [RHEL-122019] - net: usbnet: Avoid potential RCU stall on LINK_CHANGE event (Desnes Nunes) [RHEL-122019] - usb: musb: omap2430: enable compile testing (Desnes Nunes) [RHEL-122019] - usb: xhci: print xhci->xhc_state when queue_command failed (Desnes Nunes) [RHEL-122019] - USB: serial: option: add Foxconn T99W709 (Desnes Nunes) [RHEL-122019] - net: usb: cdc-ncm: check for filtering capability (Desnes Nunes) [RHEL-122019] - usb: core: add urb->sgt parameter description (Desnes Nunes) [RHEL-122019] - thunderbolt: Fix copy+paste error in match_service_id() (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: Update power_supply on power role change (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: psy: Set current max to 100mA for BC 1.2 and Default (Desnes Nunes) [RHEL-122019] - usb: typec: fusb302: cache PD RX state (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: yoga-c630: add DRM dependency (Desnes Nunes) [RHEL-122019] - usb: gadget : fix use-after-free in composite_dev_cleanup() (Desnes Nunes) [RHEL-122019] {CVE-2025-38555} - usb: chipidea: imx: Add a missing blank line (Desnes Nunes) [RHEL-122019] - usb: usblp: clean up assignment inside if conditions (Desnes Nunes) [RHEL-122019] - cdc-acm: fix race between initial clearing halt and open (Desnes Nunes) [RHEL-122019] - usb: xhci: Set avg_trb_len = 8 for EP0 during Address Device Command (Desnes Nunes) [RHEL-122019] - usb: xhci: Avoid showing warnings for dying controller (Desnes Nunes) [RHEL-122019] - usb: xhci: Avoid showing errors during surprise removal (Desnes Nunes) [RHEL-122019] - usb: core: add dma-noncoherent buffer alloc and free API (Desnes Nunes) [RHEL-122019] - usb: chipidea: s32g: Add usb support for s32g3 (Desnes Nunes) [RHEL-122019] - usb: chipidea: s32g: Add usb support for s32g2 (Desnes Nunes) [RHEL-122019] - dt-bindings: usb: Add compatible strings for s32g2/s32g3 (Desnes Nunes) [RHEL-122019] - usb: dwc3: gadget: Simplify TRB reclaim logic by removing redundant 'chain' argument (Desnes Nunes) [RHEL-122019] - usb: early: xhci-dbc: Fix early_ioremap leak (Desnes Nunes) [RHEL-122019] - net: thunderbolt: Enable end-to-end flow control also in transmit (Desnes Nunes) [RHEL-122019] - net: thunderbolt: Fix the parameter passing of tb_xdomain_enable_paths()/tb_xdomain_disable_paths() (Desnes Nunes) [RHEL-122019] - usb: core: config: Prevent OOB read in SS endpoint companion parsing (Desnes Nunes) [RHEL-122019] {CVE-2025-39760} - usb: dwc2: disable platform lowlevel hw resources during shutdown (Desnes Nunes) [RHEL-122019] - usb: misc: onboard_usb_dev: Add Bison Electronics Inc. Integrated Camera (Desnes Nunes) [RHEL-122019] - usb: gadget: u_serial: remove some dead code (Desnes Nunes) [RHEL-122019] - usb: gadget: u_serial: Avoid double unlock of serial_port_lock (Desnes Nunes) [RHEL-122019] - usb: gadget: u_serial: Implement remote wakeup capability (Desnes Nunes) [RHEL-122019] - dt-bindings: trivial-devices: add compatible string nxp,isp1301 from isp1301.txt (Desnes Nunes) [RHEL-122019] - dt-bindings: trivial-devices: add onnn,adt7462 (Desnes Nunes) [RHEL-122019] - misc: rtsx: Add support for RTS5264 Version B and optimize init flow (Desnes Nunes) [RHEL-122019] - dt-bindings: usb: genesys,gl850g: add downstream facing ports (Desnes Nunes) [RHEL-122019] - dt-bindings: usb: genesys,gl850g: use usb-hub.yaml (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: yoga-c630: register DRM HPD bridge (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: yoga-c630: handle USB / HPD messages to set port orientation (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: yoga-c630: correct response for GET_CURRENT_CAM (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: yoga-c630: fake AltModes for port 0 (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: yoga-c630: remove extra AltModes for port 1 (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: yoga-c630: remove duplicate AltModes (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: add recipient arg to update_altmodes() callback (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: yoga-c630: fix error and remove paths (Desnes Nunes) [RHEL-122019] - usb: typec: ucsi: make yoga_c630_ucsi_ops be static (Desnes Nunes) [RHEL-122019] - usb: dwc2: follow compatible string change for Sophgo CV18XX/SG200X series SoC (Desnes Nunes) [RHEL-122019] - dt-bindings: usb: dwc2: rename sophgo usb compatible string (Desnes Nunes) [RHEL-122019] - usb: dwc3: gadget: Remove duplicate check while setting xfer resource (Desnes Nunes) [RHEL-122019] - usb: ehci: replace scnprintf() with sysfs_emit() (Desnes Nunes) [RHEL-122019] - usb: core: Use sysfs_emit_at() when showing dynamic IDs (Desnes Nunes) [RHEL-122019] - usb: typec: altmodes/displayport: add irq_hpd to sysfs (Desnes Nunes) [RHEL-122019] - mmc: rtsx_usb_sdmmc: Fix clang -Wimplicit-fallthrough in sd_set_power_mode() (Desnes Nunes) [RHEL-122019] - mmc: rtsx_usb_sdmmc: Add 74 clocks in poweron flow (Desnes Nunes) [RHEL-122019] - mmc: rtsx_usb_sdmmc: Re-work the code in sd_set_power_mode() (Desnes Nunes) [RHEL-122019] - mmc: rtsx_usb_sdmmc: Convert sd_set_power_mode() into void (Desnes Nunes) [RHEL-122019] - mmc: rtsx_usb_sdmmc: Print debug-messages at power-on/off errors (Desnes Nunes) [RHEL-122019] - mmc: rtsx_usb_sdmmc: Fix error-path in sd_set_power_mode() (Desnes Nunes) [RHEL-122019] - mmc: rtsx_usb_sdmmc: Use devm_mmc_alloc_host() helper (Desnes Nunes) [RHEL-122019] - mmc: rtsx_pci: Use devm_mmc_alloc_host() helper (Desnes Nunes) [RHEL-122019] - thunderbolt: Fix typos in documentation comments (Desnes Nunes) [RHEL-122019] - Documentation: treewide: Replace remaining spinics links with lore (Desnes Nunes) [RHEL-122019] - net: usb: enable the work after stop usbnet by ip down/up (Desnes Nunes) [RHEL-122019] - net: usb: Convert tasklet API to new bottom half workqueue mechanism (Desnes Nunes) [RHEL-122019] - usbnet:fix NPE during rx_complete (Desnes Nunes) [RHEL-122019] {CVE-2025-22050} - usb: core: modify comments xhci_hc_driver has HCD_MEMORY just like ehci ohci (Desnes Nunes) [RHEL-122019] - usb: chipidea: imx: implement workaround for ERR051725 (Desnes Nunes) [RHEL-122019] - usb: chipidea: imx: add imx_usbmisc_pullup() hook (Desnes Nunes) [RHEL-122019] - usb: chipidea: udc: add CI_HDRC_CONTROLLER_PULLUP_EVENT event (Desnes Nunes) [RHEL-122019] - usb: core: usb_submit_urb: downgrade type check (Desnes Nunes) [RHEL-122019] - usb: storage: reltek_cr: convert to use secs_to_jiffies (Desnes Nunes) [RHEL-122019] - usb: typec: Remove unused ucsi_cci_str (Desnes Nunes) [RHEL-122019] - usb: core: Remove unused usb_unlink_anchored_urbs (Desnes Nunes) [RHEL-122019] - usb: gadget: Remove unused usb_remove_config (Desnes Nunes) [RHEL-122019] - usb: gadget: config: Remove unused usb_gadget_config_buf (Desnes Nunes) [RHEL-122019] - usb: Reorganize kerneldoc parameter names (Desnes Nunes) [RHEL-122019] - usb: phy: tegra: Remove unused functions (Desnes Nunes) [RHEL-122019] - usb: typec: fusb302: fix scheduling while atomic when using virtio-gpio (Desnes Nunes) [RHEL-122019] - usb: core: Add 0x prefix to quirks debug output (Desnes Nunes) [RHEL-122019] - Documentation: usb: gadget: Wrap remaining usage snippets in literal code block (Desnes Nunes) [RHEL-122019] - docs: usb: gadget: Reindent numbered list (Desnes Nunes) [RHEL-122019] - usb: gadget: composite: Use USB API functions rather than constants (Desnes Nunes) [RHEL-122019] - usb: host: xhci-plat: fix incorrect type for of_match variable in xhci_plat_probe() (Desnes Nunes) [RHEL-122019] - tty: fix tty_port_tty_*hangup() kernel-doc (Desnes Nunes) [RHEL-122019] - tty: introduce and use tty_port_tty_vhangup() helper (Desnes Nunes) [RHEL-122019] - dt-bindings: phy: renesas,usb2-phy: Document RZ/V2N SoC support (Desnes Nunes) [RHEL-122019] - dt-bindings: phy: Convert ti,keystone-usbphy to DT schema (Desnes Nunes) [RHEL-122019] - dt-bindings: phy: Convert hisilicon,hi6220-usb-phy to DT schema (Desnes Nunes) [RHEL-122019] - Documentation: ABI: Update WMI device paths in ABI docs (Desnes Nunes) [RHEL-122019] - platform/x86: dell-smbios-wmi: Stop touching WMI device ID (Desnes Nunes) [RHEL-122019] - platform/x86: wmi: Fix WMI device naming issue (Desnes Nunes) [RHEL-122019] - redhat/configs: Adding CONFIG_ACPI_WMI_LEGACY_DEVICE_NAMES (Desnes Nunes) [RHEL-122019] - platform/x86: wmi: Remove wmi_block_list (Desnes Nunes) [RHEL-122019] - phy: qcom: qmp-combo: Add missing PLL (VCO) configuration on SM8750 (Desnes Nunes) [RHEL-122019] - phy: qcom: qmp-pcie: Update PHY settings for QCS8300 & SA8775P (Desnes Nunes) [RHEL-122019] - phy: qcom-qmp-pcie: add dual lane PHY support for QCS8300 (Desnes Nunes) [RHEL-122019] - dt-bindings: phy: qcom,sc8280xp-qmp-pcie-phy: Document the QCS8300 QMP PCIe PHY Gen4 x2 (Desnes Nunes) [RHEL-122019] - phy: qcom: Add M31 based eUSB2 PHY driver (Desnes Nunes) [RHEL-122019] - dt-bindings: phy: Add the M31 based eUSB2 PHY bindings (Desnes Nunes) [RHEL-122019] - redhat/configs: Adding CONFIG_PHY_QCOM_M31_EUSB (Desnes Nunes) [RHEL-122019] - phy: qcom: uniphy-28lp: add COMMON_CLK dependency (Desnes Nunes) [RHEL-122019] - phy: qcom: Introduce PCIe UNIPHY 28LP driver (Desnes Nunes) [RHEL-122019] - redhat/configs: Adding CONFIG_PHY_QCOM_UNIPHY_PCIE_28LP (Desnes Nunes) [RHEL-122019] - dt-bindings: phy: qcom,uniphy-pcie: Document PCIe uniphy (Desnes Nunes) [RHEL-122019] - phy: qcom: Update description for QCOM based eUSB2 repeater (Desnes Nunes) [RHEL-122019] - phy: qcom: qmp-combo: Add new PHY sequences for SM8750 (Desnes Nunes) [RHEL-122019] - dt-bindings: phy: qcom,sc8280xp-qmp-usb43dp-phy: Add SM8750 to QMP PHY (Desnes Nunes) [RHEL-122019] - e1000e: fix heap overflow in e1000_set_eeprom (Corinna Vinschen) [RHEL-123124] {CVE-2025-39898} - i40e: add mask to apply valid bits for itr_idx (Michal Schmidt) [RHEL-123813] - i40e: add max boundary check for VF filters (Michal Schmidt) [RHEL-123813] {CVE-2025-39968} - i40e: fix validation of VF state in get resources (Michal Schmidt) [RHEL-123813] {CVE-2025-39969} - i40e: fix input validation logic for action_meta (Michal Schmidt) [RHEL-123813] {CVE-2025-39970} - i40e: fix idx validation in config queues msg (Michal Schmidt) [RHEL-123813] {CVE-2025-39971} - i40e: fix idx validation in i40e_validate_queue_map (Michal Schmidt) [RHEL-123813] {CVE-2025-39972} - i40e: add validation for ring_len param (Michal Schmidt) [RHEL-123813] {CVE-2025-39973} - nvme-multipath: Skip nr_active increments in RETRY disposition (Ewan D. Milne) [RHEL-123684] - cxl/region: Fix an ERR_PTR() vs NULL bug (John W. Linville) [RHEL-119007] - cxl/events: Trace Memory Sparing Event Record (John W. Linville) [RHEL-119007] - cxl/events: Add extra validity checks for CVME count in DRAM Event Record (John W. Linville) [RHEL-119007] - cxl/events: Add extra validity checks for corrected memory error count in General Media Event Record (John W. Linville) [RHEL-119007] - cxl/events: Update Common Event Record to CXL spec rev 3.2 (John W. Linville) [RHEL-119007] - cxl: Fix -Werror=return-type in cxl_decoder_detach() (John W. Linville) [RHEL-119007] - cxl/region: Consolidate cxl_decoder_kill_region() and cxl_region_detach() (John W. Linville) [RHEL-119007] - cxl/region: Move ready-to-probe state check to a helper (John W. Linville) [RHEL-119007] - cxl/region: Split commit_store() into __commit() and queue_reset() helpers (John W. Linville) [RHEL-119007] - cxl/decoder: Drop pointless locking (John W. Linville) [RHEL-119007] - cxl/decoder: Move decoder register programming to a helper (John W. Linville) [RHEL-119007] - cxl/core: Introduce a new helper cxl_resource_contains_addr() (John W. Linville) [RHEL-119007] - cxl/test: Simplify fw_buf_checksum_show() (John W. Linville) [RHEL-119007] - cxl: Include range.h in cxl.h (John W. Linville) [RHEL-119007] - cxl: make cxl_bus_type constant (John W. Linville) [RHEL-119007] - cxl/edac: Use correct format specifier for u32 val (John W. Linville) [RHEL-119007] - cxl_test: Limit location for fake CFMWS to mappable range (John W. Linville) [RHEL-119007] - cxl/pci: Replace mutex_lock_io() w mutex_lock() for mailbox access (John W. Linville) [RHEL-119007] - arm64: errata: Expand speculative SSBS workaround for Cortex-A720AE (Waiman Long) [RHEL-119901] - arm64: cputype: Add Cortex-A720AE definitions (Waiman Long) [RHEL-119901] - arm64: errata: Add missing sentinels to Spectre-BHB MIDR arrays (Waiman Long) [RHEL-119901] - arm64: Add support for HIP09 Spectre-BHB mitigation (Waiman Long) [RHEL-119901] - arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists (Waiman Long) [RHEL-119901] - arm64: cputype: Add MIDR_CORTEX_A76AE (Waiman Long) [RHEL-119901] - arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list (Waiman Long) [RHEL-119901] - vdpa: Fix IDR memory leak in VDUSE module exit (Houqi (Nick) Zuo) [RHEL-66590] - vdpa/mlx5: Fix release of uninitialized resources on error path (Houqi (Nick) Zuo) [RHEL-66590] - vdpa/mlx5: Fix needs_teardown flag calculation (Houqi (Nick) Zuo) [RHEL-66590] - virtio-vdpa: Remove virtqueue list (Houqi (Nick) Zuo) [RHEL-66590] - virtio-mmio: Remove virtqueue list from mmio device (Houqi (Nick) Zuo) [RHEL-66590] - vdpa/mlx5: Fix oversized null mkey longer than 32bit (Houqi (Nick) Zuo) [RHEL-66590] - vdpa/mlx5: Fix mlx5_vdpa_get_config() endianness on big-endian machines (Houqi (Nick) Zuo) [RHEL-66590] - vdpa/vp_vdpa: implement kick_vq_with_data callback (Houqi (Nick) Zuo) [RHEL-66590] - virtio_vdpa: remove redundant check on desc (Houqi (Nick) Zuo) [RHEL-66590] - vdpa/mlx5: Fix suboptimal range on iotlb iteration (Houqi (Nick) Zuo) [RHEL-66590] - docs: namespace: Tweak and reword resource control doc (Joel Savitz) [RHEL-88728] - smb: client: handle lack of IPC in dfs_cache_refresh() (Paulo Alcantara) [RHEL-126228] - scsi: core: Fix a regression triggered by scsi_host_busy() (Ming Lei) [RHEL-123046] - powerpc64/modules: replace stub allocation sentinel with an explicit counter (Joe Lawrence) [RHEL-113085] - powerpc64/modules: correctly iterate over stubs in setup_ftrace_ool_stubs (Joe Lawrence) [RHEL-113085] - powerpc/ftrace: ensure ftrace record ops are always set for NOPs (Joe Lawrence) [RHEL-113085] - x86/pti: Add attack vector controls for PTI (Waiman Long) [RHEL-119227] - x86/bugs: Report correct retbleed mitigation status (Waiman Long) [RHEL-119227] - x86/bugs: Fix reporting of LFENCE retpoline (Waiman Long) [RHEL-119227] - x86/bugs: Fix spectre_v2 forcing (Waiman Long) [RHEL-119227] - x86/bugs: Remove uses of cpu_mitigations_off() (Waiman Long) [RHEL-119227] - x86/bugs: Simplify SSB cmdline parsing (Waiman Long) [RHEL-119227] - x86/bugs: Use early_param() for spectre_v2 (Waiman Long) [RHEL-119227] - x86/bugs: Use early_param() for spectre_v2_user (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for VMSCAPE (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for SSB (Waiman Long) [RHEL-119227] - x86/microcode/AMD: Handle the case of no BIOS microcode (Waiman Long) [RHEL-119227] - x86/bugs: Fix GDS mitigation selecting when mitigation is off (Waiman Long) [RHEL-119227] - x86/bugs: Select best SRSO mitigation (Waiman Long) [RHEL-119227] - alloc_tag: remove empty module tag section (Waiman Long) [RHEL-119227] - x86/bugs: Print enabled attack vectors (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for TSA (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for ITS (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for SRSO (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for L1TF (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for spectre_v2 (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for BHI (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for spectre_v2_user (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for retbleed (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for spectre_v1 (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for GDS (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for SRBDS (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for RFDS (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for MMIO (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for TAA (Waiman Long) [RHEL-119227] - x86/bugs: Add attack vector controls for MDS (Waiman Long) [RHEL-119227] - x86/bugs: Define attack vectors relevant for each bug (Waiman Long) [RHEL-119227] - x86/Kconfig: Add arch attack vector support (Waiman Long) [RHEL-119227] - cpu: Define attack vectors (Waiman Long) [RHEL-119227] - Documentation/x86: Document new attack vector controls (Waiman Long) [RHEL-119227] - x86/bugs: Clean up SRSO microcode handling (Waiman Long) [RHEL-119227] - x86/bugs: Use IBPB for retbleed if used by SRSO (Waiman Long) [RHEL-119227] - x86/bugs: Add SRSO_MITIGATION_NOSMT (Waiman Long) [RHEL-119227] - x86/bugs: Allow ITS stuffing in eIBRS+retpoline mode also (Waiman Long) [RHEL-119227] - x86/bugs: Remove its=stuff dependency on retbleed (Waiman Long) [RHEL-119227] - x86/bugs: Introduce cdt_possible() (Waiman Long) [RHEL-119227] - x86/bugs: Use switch/case in its_apply_mitigation() (Waiman Long) [RHEL-119227] - x86/bugs: Avoid warning when overriding return thunk (Waiman Long) [RHEL-119227] - x86/bugs: Simplify the retbleed=stuff checks (Waiman Long) [RHEL-119227] - x86/bugs: Avoid AUTO after the select step in the retbleed mitigation (Waiman Long) [RHEL-119227] - mm/alloc_tag: fix the kmemleak false positive issue in the allocation of the percpu variable tag->counters (Waiman Long) [RHEL-119227] - alloc_tag: handle module codetag load errors as module load failures (Waiman Long) [RHEL-119227] - execmem: enforce allocation size aligment to PAGE_SIZE (Waiman Long) [RHEL-119227] - x86/cpu: Add "Old Microcode" docs to hw-vuln toctree (Waiman Long) [RHEL-119227] - x86/cpu: Help users notice when running old Intel microcode (Waiman Long) [RHEL-119227] - alloc_tag: allocate percpu counters for module tags dynamically (Waiman Long) [RHEL-119227] - module: release codetag section when module load fails (Waiman Long) [RHEL-119227] - Documentation/x86: Update the naming of CPU features for /proc/cpuinfo (Waiman Long) [RHEL-119227] - PM: sleep: Allow pm_restrict_gfp_mask() stacking (Mark Langsdorf) [RHEL-109250] - PM: hibernate: Combine return paths in power_down() (Mark Langsdorf) [RHEL-109250] - PM: hibernate: Restrict GFP mask in power_down() (Mark Langsdorf) [RHEL-109250] - PM: hibernate: Fix hybrid-sleep (Mark Langsdorf) [RHEL-109250] - xen: take system_transition_mutex on suspend (Mark Langsdorf) [RHEL-109250] - PM: hibernate: Restrict GFP mask in hibernation_snapshot() (Mark Langsdorf) [RHEL-109250] - PM: sleep: annotate RCU list iterations (Mark Langsdorf) [RHEL-109250] - PM: hibernate: Add stub for pm_hibernate_is_recovering() (Mark Langsdorf) [RHEL-109250] - PM: suspend: Drop a misplaced pm_restore_gfp_mask() call (Mark Langsdorf) [RHEL-109250] - regmap: irq: Avoid lockdep warnings with nested regmap-irq chips (Mark Langsdorf) [RHEL-109250] - regmap: irq: Free the regmap-irq mutex (Mark Langsdorf) [RHEL-109250] - PM: sleep: Rearrange suspend/resume error handling in the core (Mark Langsdorf) [RHEL-109250] - cacheinfo: Add arch hook to compress CPU h/w id into 32 bits for cache-id (Mark Langsdorf) [RHEL-109250] - cacheinfo: Set cache 'id' based on DT data (Mark Langsdorf) [RHEL-109250] - driver core: auxiliary bus: fix OF node leak (Mark Langsdorf) [RHEL-109250] - PM: runtime: Take active children into account in pm_runtime_get_if_in_use() (Mark Langsdorf) [RHEL-109250] - PM: sleep: Update power.completion for all devices on errors (Mark Langsdorf) [RHEL-109250] - PM: hibernate: add new api pm_hibernate_is_recovering() (Mark Langsdorf) [RHEL-109250] - drivers/base/node: optimize memory block registration to reduce boot time (Mark Langsdorf) [RHEL-109250] - PM: sleep: Call pm_restore_gfp_mask() after dpm_resume() (Mark Langsdorf) [RHEL-109250] - driver core: Export get_dev_from_fwnode() (Mark Langsdorf) [RHEL-109250] - driver core: platform: Drop dev_pm_domain_detach() call (Mark Langsdorf) [RHEL-109250] - PM: domains: Detach on device_unbind_cleanup() (Mark Langsdorf) [RHEL-109250] - PM: domains: Add flags to specify power on attach/detach (Mark Langsdorf) [RHEL-109250] - clk: qcom: Fix missing error check for dev_pm_domain_attach() (Mark Langsdorf) [RHEL-109250] - regmap: get rid of redundant debugfs_file_{get,put}() (Mark Langsdorf) [RHEL-109250] - PM: sleep: Make async suspend handle suppliers like parents (Mark Langsdorf) [RHEL-109250] - PM: sleep: Make async resume handle consumers like children (Mark Langsdorf) [RHEL-109250] - PM: sleep: Drop superfluous might_sleep() calls (Mark Langsdorf) [RHEL-109250] - regmap: fix potential memory leak of regmap_bus (Mark Langsdorf) [RHEL-109250] - PM: Restrict swap use to later in the suspend sequence (Mark Langsdorf) [RHEL-109250] - driver core: Add device_link_test() for testing device link flags (Mark Langsdorf) [RHEL-109250] - driver core: faux: Quiet probe failures (Mark Langsdorf) [RHEL-109250] - driver core: faux: Suppress bind attributes (Mark Langsdorf) [RHEL-109250] - regmap: kunit: Constify regmap_range_cfg array (Mark Langsdorf) [RHEL-109250] - PM: sleep: Add locking to dpm_async_resume_children() (Mark Langsdorf) [RHEL-109250] - PM: sleep: Fix list splicing in device suspend error paths (Mark Langsdorf) [RHEL-109250] - regmap: irq: Add support for chips without separate IRQ status (Mark Langsdorf) [RHEL-109250] - regmap-irq: Use dedicated interrupt wake setters (Mark Langsdorf) [RHEL-109250] - regmap: Move selecting for REGMAP_MDIO and REGMAP_IRQ (Mark Langsdorf) [RHEL-109250] - PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn() (Mark Langsdorf) [RHEL-109250] - PM: sleep: Introduce pm_sleep_transition_in_progress() (Mark Langsdorf) [RHEL-109250] - PM: sleep: Introduce pm_suspend_in_progress() (Mark Langsdorf) [RHEL-109250] - PM: sleep: Print PM debug messages during hibernation (Mark Langsdorf) [RHEL-109250] - PM: sysfs: Move debug runtime PM attributes to runtime_attrs[] (Mark Langsdorf) [RHEL-109250] - PM: wakeup: Add missing wakeup source attribute relax_count (Mark Langsdorf) [RHEL-109250] - arch_topology: Relocate cpu_scale to topology.[h|c] (Mark Langsdorf) [RHEL-109250] - firmware_loader: use SHA-256 library API instead of crypto_shash API (Mark Langsdorf) [RHEL-109250] - regcache: Use sort()'s default swap() implementation (Mark Langsdorf) [RHEL-109250] - PM: runtime: Add new devm functions (Mark Langsdorf) [RHEL-109250] - devres: Add devm_is_action_added() helper (Mark Langsdorf) [RHEL-109250] - PM: wakeup: Do not expose 4 device wakeup source APIs (Mark Langsdorf) [RHEL-109250] - driver core: auxiliary bus: Fix IS_ERR() vs NULL mixup in __devm_auxiliary_device_create() (Mark Langsdorf) [RHEL-109250] - property: Add functions to iterate named child (Mark Langsdorf) [RHEL-109250] - PM: sleep: Make suspend of devices more asynchronous (Mark Langsdorf) [RHEL-109250] - PM: sleep: Suspend async parents after suspending children (Mark Langsdorf) [RHEL-109250] - PM: sleep: Resume children after resuming the parent (Mark Langsdorf) [RHEL-109250] - software node: Correct a OOB check in software_node_get_reference_args() (Mark Langsdorf) [RHEL-109250] - drivers/base: Extend documentation with preferred way to use auxbus (Mark Langsdorf) [RHEL-109250] - devres: simplify devm_kstrdup() using devm_kmemdup() (Mark Langsdorf) [RHEL-109250] - platform: replace magic number with macro PLATFORM_DEVID_NONE (Mark Langsdorf) [RHEL-109250] - component: do not try to unbind unbound components (Mark Langsdorf) [RHEL-109250] - driver core: fix potential NULL pointer dereference in dev_uevent() (Mark Langsdorf) [RHEL-109250] - driver core: introduce device_set_driver() helper (Mark Langsdorf) [RHEL-109250] - driver core: auxiliary bus: add device creation helpers (Mark Langsdorf) [RHEL-109250] - Revert "drivers: core: synchronize really_probe() and dev_uevent()" (Mark Langsdorf) [RHEL-109250] - driver core: faux: Add sysfs groups after probing (Mark Langsdorf) [RHEL-109250] - of_numa: fix uninitialized memory nodes causing kernel panic (Charles Mirabile) [RHEL-123153] {CVE-2025-39903} - smb: client: get rid of d_drop() in cifs_do_rename() (Paulo Alcantara) [RHEL-124956] - smb: client: fix wrong index reference in smb2_compound_op() (Paulo Alcantara) [RHEL-124956] - smb: client: handle unlink(2) of files open by different clients (Paulo Alcantara) [RHEL-124956] - smb: client: fix filename matching of deferred files (Paulo Alcantara) [RHEL-124956] - fs/smb: Fix inconsistent refcnt update (Paulo Alcantara) [RHEL-124956] {CVE-2025-39819} - bpf: Do not audit capability check in do_jit() (Ondrej Mosnacek) [RHEL-108805] - kmem/tracing: add kmem name to kmem_cache_alloc tracepoint (Charles Haithcock) [RHEL-124143] - of: reserved_mem: Add missing IORESOURCE_MEM flag on resources (Maxime Ripard) [RHEL-125402] - of: reserved_mem: Restructure call site for dma_contiguous_early_fixup() (Maxime Ripard) [RHEL-125402] - of: reserved_mem: Add functions to parse "memory-region" (Maxime Ripard) [RHEL-125402] - Revert "of: reserved-memory: Fix using wrong number of cells to get property 'alignment'" (Maxime Ripard) [RHEL-125402] - of: reserved-memory: Warn for missing static reserved memory regions (Maxime Ripard) [RHEL-125402] - of: reserved-memory: Move an assignment to effective place in __reserved_mem_alloc_size() (Maxime Ripard) [RHEL-125402] - of: reserved-memory: Do not make kmemleak ignore freed address (Maxime Ripard) [RHEL-125402] - of: reserved-memory: Fix using wrong number of cells to get property 'alignment' (Maxime Ripard) [RHEL-125402] - dma-mapping: save base/size instead of pointer to shared DMA pool (Maxime Ripard) [RHEL-125402] - of: reserved_mem: Add code to dynamically allocate reserved_mem array (Maxime Ripard) [RHEL-125402] - of: reserved_mem: Restructure how the reserved memory regions are processed (Maxime Ripard) [RHEL-125402] - redhat: add all namespace-dependent selftests to kernel-selftests-internal (Joel Savitz) [RHEL-122506] - io_uring/waitid: always prune wait queue entry in io_waitid_wait() (CKI Backport Bot) [RHEL-124977] {CVE-2025-40047} - net/smc: Remove validation of reserved bits in CLC Decline message (Mete Durlu) [RHEL-124196] - powerpc/pseries: Define __u{8,32} types in papr_hvpipe_hdr struct (Mamatha Inamdar) [RHEL-101959] - powerpc/pseries: HVPIPE changes to support migration (Mamatha Inamdar) [RHEL-101959] - powerpc/pseries: Enable hvpipe with ibm,set-system-parameter RTAS (Mamatha Inamdar) [RHEL-101959] - powerpc/pseries: Enable HVPIPE event message interrupt (Mamatha Inamdar) [RHEL-101959] - powerpc/pseries: Wakeup hvpipe FD when the payload is pending (Mamatha Inamdar) [RHEL-101959] - powerpc/pseries: Receive payload with ibm,receive-hvpipe-msg RTAS (Mamatha Inamdar) [RHEL-101959] - powerpc/pseries: Send payload with ibm,send-hvpipe-msg RTAS (Mamatha Inamdar) [RHEL-101959] - powerpc/pseries: Add papr-hvpipe char driver for HVPIPE interfaces (Mamatha Inamdar) [RHEL-101959] - powerpc/pseries: Define HVPIPE specific macros (Mamatha Inamdar) [RHEL-101959] - powerpc/pseries: Define papr-hvpipe ioctl (Mamatha Inamdar) [RHEL-101959] - Documentation: ioctl-number: Fix linuxppc-dev mailto link (Mamatha Inamdar) [RHEL-101959] - md: add legacy_async_del_gendisk mode (Nigel Croxon) [RHEL-123668] - lib/raid6: update recov_rvv.c zero page usage (Nigel Croxon) [RHEL-123668] - md: Don't clear MD_CLOSING until mddev is freed (Nigel Croxon) [RHEL-123668] - md: fix mssing blktrace bio split events (Nigel Croxon) [RHEL-123668] - md: factor out a helper raid_is_456() (Nigel Croxon) [RHEL-123668] - md: add a new parameter 'offset' to md_super_write() (Nigel Croxon) [RHEL-123668] - md: check before referencing mddev->bitmap_ops (Nigel Croxon) [RHEL-123668] - md/raid5: check before referencing mddev->bitmap_ops (Nigel Croxon) [RHEL-123668] - md/raid10: check before referencing mddev->bitmap_ops (Nigel Croxon) [RHEL-123668] - md/raid1: check before referencing mddev->bitmap_ops (Nigel Croxon) [RHEL-123668] - md/raid1: check bitmap before behind write (Nigel Croxon) [RHEL-123668] - md/md-bitmap: handle the case bitmap is not enabled before end_sync() (Nigel Croxon) [RHEL-123668] - md/md-bitmap: handle the case bitmap is not enabled before start_sync() (Nigel Croxon) [RHEL-123668] - md/md-bitmap: add md_bitmap_registered/enabled() helper (Nigel Croxon) [RHEL-123668] - md/md-bitmap: add a new parameter 'flush' to bitmap_ops->enabled (Nigel Croxon) [RHEL-123668] - md/md-bitmap: merge md_bitmap_group into bitmap_operations (Nigel Croxon) [RHEL-123668] - md/md-bitmap: remove the parameter 'init' for bitmap_ops->resize() (Nigel Croxon) [RHEL-123668] - md: prevent incorrect update of resync/recovery offset (Nigel Croxon) [RHEL-123668] - md/raid1: fix data lost for writemostly rdev (Nigel Croxon) [RHEL-123668] - md: fix sync_action incorrect display during resync (Nigel Croxon) [RHEL-123668] - md: add helper rdev_needs_recovery() (Nigel Croxon) [RHEL-123668] - md: keep recovery_cp in mdp_superblock_s (Nigel Croxon) [RHEL-123668] - md: make rdev_addable usable for rcu mode (Nigel Croxon) [RHEL-123668] {CVE-2025-38621} - md/raid1: remove struct pool_info and related code (Nigel Croxon) [RHEL-123668] - md/raid1: change r1conf->r1bio_pool to a pointer type (Nigel Croxon) [RHEL-123668] - md: rename recovery_cp to resync_offset (Nigel Croxon) [RHEL-123668] - md/md-cluster: handle REMOVE message earlier (Nigel Croxon) [RHEL-123668] - md: fix create on open mddev lifetime regression (Nigel Croxon) [RHEL-123668] - lib/raid6: replace custom zero page with ZERO_PAGE (Nigel Croxon) [RHEL-123668] - md: call del_gendisk in control path (Nigel Croxon) [RHEL-123668] - redhat/configs: enable NXP S32 on aarch64 autmotive (Alessandro Carminati) [RHEL-124951] - dm vdo: return error on corrupted metadata in start_restoring_volume functions (Benjamin Marzinski) [RHEL-119008] - dm: fix NULL pointer dereference in __dm_suspend() (Benjamin Marzinski) [RHEL-119008] - dm: fix queue start/stop imbalance under suspend/load/resume races (Benjamin Marzinski) [RHEL-119008] - dm-raid: don't set io_min and io_opt for raid1 (Benjamin Marzinski) [RHEL-119008] - dm-integrity: limit MAX_TAG_SIZE to 255 (Benjamin Marzinski) [RHEL-119008] - dm-stripe: fix a possible integer overflow (Benjamin Marzinski) [RHEL-119008] - dm: set DM_TARGET_PASSES_CRYPTO feature for dm-thin (Benjamin Marzinski) [RHEL-119008] - dm-thin: update the documentation (Benjamin Marzinski) [RHEL-119008] - dm-raid: do not include dm-core.h (Benjamin Marzinski) [RHEL-119008] - vdo: omit need_resched() before cond_resched() (Benjamin Marzinski) [RHEL-119008] - md: dm-zoned-target: Initialize return variable r to avoid uninitialized use (Benjamin Marzinski) [RHEL-119008] - dm-verity: remove support for asynchronous hashes (Benjamin Marzinski) [RHEL-119008] - dm-mpath: don't print the "loaded" message if registering fails (Benjamin Marzinski) [RHEL-119008] - dm-mpath: make dm_unregister_path_selector return void (Benjamin Marzinski) [RHEL-119008] - dm: ima: avoid extra calls to strlen() (Benjamin Marzinski) [RHEL-119008] - dm: Simplify dm_io_complete() (Benjamin Marzinski) [RHEL-119008] - dm: Remove unnecessary return in dm_zone_endio() (Benjamin Marzinski) [RHEL-119008] - dm raid: add support for resync w/o metadata devices (Benjamin Marzinski) [RHEL-119008] - dm-flakey: Fix corrupt_bio_byte setup checks (Benjamin Marzinski) [RHEL-119008] - dm-table: fix checking for rq stackable devices (Benjamin Marzinski) [RHEL-119008] - dm-bufio: fix sched in atomic context (Benjamin Marzinski) [RHEL-119008] - dm-raid: fix variable in journal device check (Benjamin Marzinski) [RHEL-119008] - dm-stripe: small code cleanup (Benjamin Marzinski) [RHEL-119008] - dm-verity: fix a memory leak if some arguments are specified multiple times (Benjamin Marzinski) [RHEL-119008] - dm-mirror: fix a tiny race condition (Benjamin Marzinski) [RHEL-119008] - dm-table: check BLK_FEAT_ATOMIC_WRITES inside limits_lock (Benjamin Marzinski) [RHEL-119008] - dm-zone: Use bdev_*() helper functions where applicable (Benjamin Marzinski) [RHEL-119008] - dm vdo indexer: don't read request structure after enqueuing (Benjamin Marzinski) [RHEL-119008] - dm: pass through operations on wrapped inline crypto keys (Benjamin Marzinski) [RHEL-119008] - blk-crypto: export wrapped key functions (Benjamin Marzinski) [RHEL-119008] - dm-table: Set BLK_FEAT_ATOMIC_WRITES for target queue limits (Benjamin Marzinski) [RHEL-119008] - dm-flakey: make corrupting read bios work (Benjamin Marzinski) [RHEL-119008] - dm-flakey: remove useless ERROR_READS check in flakey_end_io (Benjamin Marzinski) [RHEL-119008] - dm-flakey: error all IOs when num_features is absent (Benjamin Marzinski) [RHEL-119008] - dm-flakey: Clean up parsing messages (Benjamin Marzinski) [RHEL-119008] - dm: remove unneeded kvfree from alloc_targets (Benjamin Marzinski) [RHEL-119008] - dm-bufio: remove maximum age based eviction (Benjamin Marzinski) [RHEL-119008] - dm-verity: use softirq context only when !need_resched() (Benjamin Marzinski) [RHEL-119008] - dm: lock limits when reading them (Benjamin Marzinski) [RHEL-119008] - dm: use generic functions instead of disable_discard and disable_write_zeroes (Benjamin Marzinski) [RHEL-119008] - dm-delay: don't busy-wait in kthread (Benjamin Marzinski) [RHEL-119008] - dm: fix native zone append devices on top of emulated ones (Benjamin Marzinski) [RHEL-119008] - dm: limit swapping tables for devices with zone write plugs (Benjamin Marzinski) [RHEL-119008] - dm: fix dm_blk_report_zones (Benjamin Marzinski) [RHEL-119008] - dm: handle failures in dm_table_set_restrictions (Benjamin Marzinski) [RHEL-119008] - dm: free table mempools if not used in __bind (Benjamin Marzinski) [RHEL-119008] - dm: don't change md if dm_table_set_restrictions() fails (Benjamin Marzinski) [RHEL-119008] - dm-verity: support block number limits for different ioprio classes (Benjamin Marzinski) [RHEL-119008] - dm-delay: support zoned devices (Benjamin Marzinski) [RHEL-119008] - dm: restrict dm device size to 2^63-512 bytes (Benjamin Marzinski) [RHEL-119008] - dm vdo indexer: reorder uds_request to reduce padding (Benjamin Marzinski) [RHEL-119008] - dm vdo: rework processing of loaded refcount byte arrays (Benjamin Marzinski) [RHEL-12834] - dm vdo: remove remaining ring references (Benjamin Marzinski) [RHEL-119008] - dm-verity: do forward error correction on metadata I/O errors (Benjamin Marzinski) [RHEL-119008] - dm-bufio: remove unused return value (Benjamin Marzinski) [RHEL-119008] - dm: Enable inline crypto passthrough for striped target (Benjamin Marzinski) [RHEL-119008] - dm vdo slab-depot: read refcount blocks in large chunks at load time (Benjamin Marzinski) [RHEL-12834] - dm vdo vio-pool: allow variable-sized metadata vios (Benjamin Marzinski) [RHEL-12834] - dm vdo vio-pool: support pools with multiple data blocks per vio (Benjamin Marzinski) [RHEL-12834] - dm vdo vio-pool: add a pool pointer to pooled_vio (Benjamin Marzinski) [RHEL-12834] - dm vdo: remove checks that can not fail (Benjamin Marzinski) [RHEL-119008] - dm vdo indexer: prevent unterminated string warning (Benjamin Marzinski) [RHEL-119008] - dm vdo: use a short static string for thread name prefix (Benjamin Marzinski) [RHEL-119008] - dm-crypt: Document integrity_key_size option. (Benjamin Marzinski) [RHEL-119008] - dm-integrity: Document Inline mode for storing integrity data (Benjamin Marzinski) [RHEL-119008] - dm-verity: Document restart_on_error and panic_on_error options (Benjamin Marzinski) [RHEL-119008] - dm-crypt: switch to using the crc32 library (Benjamin Marzinski) [RHEL-119008] - nbd: override creds to kernel when calling sock_{send,recv}msg() (Ming Lei) [RHEL-124544] - netfilter: nft_set_pipapo_avx2: fix skip of expired entries (Florian Westphal) [RHEL-113001] - netfilter: nft_set_pipapo: use 0 genmask for packetpath lookups (Florian Westphal) [RHEL-113001] - netfilter: nf_tables: restart set lookup on base_seq change (Florian Westphal) [RHEL-113001] - netfilter: nf_tables: make nft_set_do_lookup available unconditionally (Florian Westphal) [RHEL-113001] - netfilter: nf_tables: place base_seq in struct net (Florian Westphal) [RHEL-113001] - netfilter: nft_set_rbtree: continue traversal if element is inactive (Florian Westphal) [RHEL-113001] - netfilter: nft_set_pipapo: don't check genbit from packetpath lookups (Florian Westphal) [RHEL-113001] - netfilter: nft_set_pipapo_avx2: Drop the comment regarding protection (Florian Westphal) [RHEL-113001] - netfilter: nft_set_pipapo: fix null deref for empty set (Florian Westphal) [RHEL-113001] - netfilter: nft_set_pipapo: don't return bogus extension pointer (Florian Westphal) [RHEL-113001] - netfilter: nft_set_pipapo: prefer kvmalloc for scratch maps (Florian Westphal) [RHEL-113001] - netfilter: nft_set_pipapo: merge pipapo_get/lookup (Florian Westphal) [RHEL-113001] - netfilter: nft_set: remove indirection from update API call (Florian Westphal) [RHEL-113001] - netfilter: nft_set: remove one argument from lookup and update functions (Florian Westphal) [RHEL-113001] - netfilter: nft_set_pipapo: remove unused arguments (Florian Westphal) [RHEL-113001] - selftests: netfilter: nft_concat_range.sh: send packets to empty set (Florian Westphal) [RHEL-113001] - crypto: octeontx2 - Call strscpy() with correct size argument (Vladis Dronov) [RHEL-122026] - crypto: octeontx2 - get engine group number for asymmetric engine (Vladis Dronov) [RHEL-122026] - crypto: octeontx2 - Rework how engine group number is obtained (Vladis Dronov) [RHEL-122026] - crypto: octeontx2 - Fix address alignment on CN10KB and CN10KA-B0 (Vladis Dronov) [RHEL-122026] - crypto: octeontx2 - Fix address alignment on CN10K A0/A1 and OcteonTX2 (Vladis Dronov) [RHEL-122026] - crypto: octeontx2 - Fix address alignment issue on ucode loading (Vladis Dronov) [RHEL-122026] - crypto: octeontx2 - add timeout for load_fvc completion poll (Vladis Dronov) [RHEL-122026] - crypto: octeontx2 - Use dynamic allocated memory region for lmtst (Vladis Dronov) [RHEL-122026] - crypto: octeontx2 - Initialize cptlfs device info once (Vladis Dronov) [RHEL-122026] - crypto: octeontx2 - Simplify multiple return statements (Vladis Dronov) [RHEL-122026] - crypto: lib/Kconfig - hide library options [partial] (Vladis Dronov) [RHEL-122026] - selftests: tls: test skb copy under mem pressure and OOB (CKI Backport Bot) [RHEL-115592] - tls: make sure to abort the stream if headers are bogus (CKI Backport Bot) [RHEL-115592] - selftests: tls: make the new data_steal test less flaky (CKI Backport Bot) [RHEL-115592] - selftests: tls: test TCP stealing data from under the TLS socket (CKI Backport Bot) [RHEL-115592] - tls: handle data disappearing from under the TLS ULP (CKI Backport Bot) [RHEL-115592] - bpf, ktls: Fix data corruption when using bpf_msg_pop_data() in ktls (CKI Backport Bot) [RHEL-115592] - net/tls: fix kernel panic when alloc_page failed (CKI Backport Bot) [RHEL-115592] - ktls, sockmap: Fix missing uncharge operation (CKI Backport Bot) [RHEL-115592] - bpf: fix ktls panic with sockmap (CKI Backport Bot) [RHEL-115592] - scsi: sr: Reinstate rotational media flag (Ewan D. Milne) [RHEL-116076] - scsi: scsi_debug: Make read-only arrays static const (Ewan D. Milne) [RHEL-116076] - scsi: core: sysfs: Correct sysfs attributes access rights (Ewan D. Milne) [RHEL-116076] - scsi: sd: Make sd shutdown issue START STOP UNIT appropriately (Ewan D. Milne) [RHEL-116076] - scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans (Ewan D. Milne) [RHEL-116076] - scsi: scsi_transport_fc: Add comments to describe added 'rport' parameter (Ewan D. Milne) [RHEL-116076] - scsi: scsi_transport_fc: Change to use per-rport devloss_work_q (Ewan D. Milne) [RHEL-116076] - scsi: core: Fix kernel doc for scsi_track_queue_full() (Ewan D. Milne) [RHEL-116076] - scsi: core: Use scsi_cmd_priv() instead of open-coding it (Ewan D. Milne) [RHEL-116076] - scsi: core: Enforce unlimited max_segment_size when virt_boundary_mask is set (Ewan D. Milne) [RHEL-116076] - scsi: scsi_devinfo: Remove redundant 'found' (Ewan D. Milne) [RHEL-116076] - scsi: sd: Fix VPD page 0xb7 length check (Ewan D. Milne) [RHEL-116076] - scsi: core: Remember if a device is an ATA device (Ewan D. Milne) [RHEL-116076] - scsi: error: alua: I/O errors for ALUA state transitions (Ewan D. Milne) [RHEL-116076] - scsi: core: devinfo: Fix typo in comment (Ewan D. Milne) [RHEL-116076] - scsi: sg: Remove unnecessary NULL check before unregister_sysctl_table() (Ewan D. Milne) [RHEL-116076] - scsi: sd: Remove the stream_status member from scsi_stream_status_header (Ewan D. Milne) [RHEL-116076] - scsi: core: Remove unused scsi_dev_info_list_del_keyed() (Ewan D. Milne) [RHEL-116076] - scsi: scsi_debug: Reduce DEF_ATOMIC_WR_MAX_LENGTH (Ewan D. Milne) [RHEL-116076] - scsi: scsi_debug: Add ERASE for tapes (Ewan D. Milne) [RHEL-116076] - scsi: scsi_debug: Use scsi_device->type instead os sdebug_ptype where possible (Ewan D. Milne) [RHEL-116076] - scsi: scsi_debug: Move some tape-specific commands to separate definitions (Ewan D. Milne) [RHEL-116076] - scsi: scsi_debug: Enable different command definitions for different device types (Ewan D. Milne) [RHEL-116076] - scsi: scsi_debug: Fix two typos in command definitions (Ewan D. Milne) [RHEL-116076] - KVM: s390: Fix to clear PTE when discarding a swapped page (Thomas Huth) [RHEL-113440] - KVM: s390: Fix access to unavailable adapter indicator pages during postcopy (Thomas Huth) [RHEL-42486] - iommu/s390: Make attach succeed when the device was surprise removed (Thomas Huth) [RHEL-113440] - iommu/s390: Fix memory corruption when using identity domain (Thomas Huth) [RHEL-113440] - KVM: s390: Fix FOLL_*/FAULT_FLAG_* confusion (Thomas Huth) [RHEL-113440] - KVM: s390: Fix incorrect usage of mmu_notifier_register() (Thomas Huth) [RHEL-113440] - KVM: s390: Rework guest entry logic (Thomas Huth) [RHEL-113440] - entry: Add arch_in_rcu_eqs() (Thomas Huth) [RHEL-113440] - KVM: s390: rename PROT_NONE to PROT_TYPE_DUMMY (Thomas Huth) [RHEL-113440] - KVM: s390: Simplify and move pv code (Thomas Huth) [RHEL-113440] - KVM: s390: Refactor and split some gmap helpers (Thomas Huth) [RHEL-113440] - KVM: s390: Remove unneeded srcu lock (Thomas Huth) [RHEL-113440] - s390: Remove unneeded includes (Thomas Huth) [RHEL-113440] - s390/uv: Rename find_secret() to uv_find_secret() and publish (Thomas Huth) [RHEL-113440] - s390/kvm: Split kvm_host header file (Thomas Huth) [RHEL-113440] - s390/sysctl: Remove "vm/allocate_pgste" sysctl (Thomas Huth) [RHEL-113440] - s390: Remove 2k vs 4k page table leftovers (Thomas Huth) [RHEL-113440] - s390/tlb: Use mm_has_pgste() instead of mm_alloc_pgste() (Thomas Huth) [RHEL-113440] - s390/syscall: Merge __do_syscall() and do_syscall() (Thomas Huth) [RHEL-113440] - KVM: s390: selftests: Add has device attr check to uc_attr_mem_limit selftest (Thomas Huth) [RHEL-113440] - KVM: s390: selftests: Add ucontrol gis routing test (Thomas Huth) [RHEL-113440] - KVM: s390: selftests: Add ucontrol flic attr selftests (Thomas Huth) [RHEL-113440] - KVM: s390: selftests: Add regression tests for PFCR subfunctions (Thomas Huth) [RHEL-113440] - KVM: s390: selftests: Add regression tests for PLO subfunctions (Thomas Huth) [RHEL-113440] - KVM: s390: selftests: Add regression tests for KMAC, KMC, KM, KIMD and KLMD crypto subfunctions (Thomas Huth) [RHEL-113440] - KVM: s390: selftests: Add regression tests for KMCTR, KMF, KMO and PCC crypto subfunctions (Thomas Huth) [RHEL-113440] - KVM: s390: selftests: Add regression tests for PRNO, KDSA and KMA crypto subfunctions (Thomas Huth) [RHEL-113440] - cgroup/rstat: avoid disabling irqs for O(num_cpu) (Radostin Stoyanov) [RHEL-95602] - tracing/osnoise: Replace kmalloc + copy_from_user with memdup_user_nul (Tomas Glozar) [RHEL-117874] - tracing/osnoise: Fix slab-out-of-bounds in _parse_integer_limit() (Tomas Glozar) [RHEL-117874] {CVE-2025-39974} - tracing/osnoise: Use for_each_online_cpu() instead of for_each_cpu() (Tomas Glozar) [RHEL-117874] - tracing/osnoise: Fix null-ptr-deref in bitmap_parselist() (Tomas Glozar) [RHEL-117874] {CVE-2025-39887} - tracing: Switch trace_osnoise.c code over to use guard() and __free() (Tomas Glozar) [RHEL-117874] - osnoise: provide quiescent states (Tomas Glozar) [RHEL-117874] - rtla: Check pkg-config install (Tomas Glozar) [RHEL-117874] - rtla: Define __NR_sched_setattr for LoongArch (Tomas Glozar) [RHEL-117874] - rtla: Add the ability to create ctags and etags (Tomas Glozar) [RHEL-117874] - Documentation/rtla: Add include common_appendix.rst (Tomas Glozar) [RHEL-117874] - Documentation/rtla: Include BPF sample collection (Tomas Glozar) [RHEL-117874] - Documentation/rtla: Fix typo in common_timerlat_description.rst (Tomas Glozar) [RHEL-117874] - Documentation/rtla: Fix typo in rtla-timerlat.rst (Tomas Glozar) [RHEL-117874] - Documentation/rtla: Fix duplicate text about timerlat tracer (Tomas Glozar) [RHEL-117874] - mei: more prints with client prefix (Steve Best) [RHEL-113185] - mei: bus: use cldev in prints (Steve Best) [RHEL-113185] - mei: bus: Check for still connected devices in mei_cl_bus_dev_release() (Steve Best) [RHEL-113185] - mei: vsc: Fix "BUG: Invalid wait context" lockdep error (Steve Best) [RHEL-113185] - mei: vsc: Run event callback from a workqueue (Steve Best) [RHEL-113185] - mei: vsc: Unset the event callback on remove and probe errors (Steve Best) [RHEL-113185] - mei: vsc: Event notifier fixes (Steve Best) [RHEL-113185] - mei: vsc: Destroy mutex after freeing the IRQ (Steve Best) [RHEL-113185] - mei: vsc: Use vsc_tp_remove() as shutdown handler (Steve Best) [RHEL-113185] - mei: vsc: Don't call vsc_tp_reset() a second time on shutdown (Steve Best) [RHEL-113185] - mei: vsc: Don't re-init VSC from mei_vsc_hw_reset() on stop (Steve Best) [RHEL-113185] - mei: vsc: Drop unused vsc_tp_request_irq() and vsc_tp_free_irq() (Steve Best) [RHEL-113185] - mei: bus: replace sprintf/scnprintf with sysfs_emit in show functions (Steve Best) [RHEL-113185] - mei: vsc: Cast tx_buf to (__be32 *) when passed to cpu_to_be32_array() (Steve Best) [RHEL-113185] - mei: Cast the cb->ext_hdr allocation type (Steve Best) [RHEL-113185] - mei: vsc: Use struct vsc_tp_packet as vsc-tp tx_buf and rx_buf type (Steve Best) [RHEL-113185] - mei: vsc: Fix fortify-panic caused by invalid counted_by() use (Steve Best) [RHEL-113185] - mei: me: add panther lake H DID (Steve Best) [RHEL-113185] - mei: Remove unused functions (Steve Best) [RHEL-113185] - mei: vsc: Use "wakeuphostint" when getting the host wakeup GPIO (Steve Best) [RHEL-113185] - mei: vsc: Fix typo "maintstepping" -> "mainstepping" (Steve Best) [RHEL-113185] - mei: vsc: Improve error logging in vsc_identify_silicon() (Steve Best) [RHEL-113185] - mei: vsc: Do not re-enable interrupt from vsc_tp_reset() (Steve Best) [RHEL-113185] - mei: bus: Reorganize kerneldoc parameter names (Steve Best) [RHEL-113185] - PM: EM: Add function for registering a PD without capacity update (Steve Best) [RHEL-110833] - cpufreq: intel_pstate: Support Clearwater Forest OOB mode (Steve Best) [RHEL-110833] - cpufreq: intel_pstate: Add Granite Rapids support in no-HWP mode (Steve Best) [RHEL-110833] - cpufreq: intel_pstate: Always use HWP_DESIRED_PERF in passive mode (Steve Best) [RHEL-110833] - cpufreq: intel_pstate: EAS: Increase cost for CPUs using L3 cache (Steve Best) [RHEL-110833] - cpufreq: intel_pstate: EAS support for hybrid platforms (Steve Best) [RHEL-110833] - PM: EM: Introduce em_adjust_cpu_capacity() (Steve Best) [RHEL-110833] - PM: EM: Move CPU capacity check to em_adjust_new_capacity() (Steve Best) [RHEL-110833] - PM: EM: Fix potential division-by-zero error in em_compute_costs() (Steve Best) [RHEL-110833] - PM: EM: Address RCU-related sparse warnings (Steve Best) [RHEL-110833] - PM: EM: Consify two parameters of em_dev_register_perf_domain() (Steve Best) [RHEL-110833] - PM: EM: use kfree_rcu() to simplify the code (Steve Best) [RHEL-110833] - PM: EM: Slightly reduce em_check_capacity_update() overhead (Steve Best) [RHEL-110833] - PM: EM: Drop unused parameter from em_adjust_new_capacity() (Steve Best) [RHEL-110833] - cpufreq: intel_pstate: Populate the cpu_capacity sysfs entries (Steve Best) [RHEL-110833] - arch_topology: Relocate cpu_scale to topology.[h|c] (Steve Best) [RHEL-110833] - arm64/sysreg: Fix GIC CDEOI instruction encoding (Mark Salter) [RHEL-101059] - arm64/sysreg: Update TCR_EL1 register (Mark Salter) [RHEL-101059] - arm64: sysreg: Add validation checks to sysreg header generation script (Mark Salter) [RHEL-101059] - arm64: sysreg: Correct sign definitions for EIESB and DoubleLock (Mark Salter) [RHEL-101059] - arm64: sysreg: Fix and tidy up sysreg field definitions (Mark Salter) [RHEL-101059] - arm64: cputype: Remove duplicate Cortex-X1C definitions (Mark Salter) [RHEL-101059] - arm64/hwcap: Add hwcap for FEAT_LSFE (Mark Salter) [RHEL-101059] - arm64: ftrace: fix unreachable PLT for ftrace_caller in init_module with CONFIG_DYNAMIC_FTRACE (Mark Salter) [RHEL-101059] - arm64: uapi: Provide correct __BITS_PER_LONG for the compat vDSO (Mark Salter) [RHEL-101059] - arm64/gcs: task_gcs_el0_enable() should use passed task (Mark Salter) [RHEL-101059] - arm64: signal: Remove ISB when resetting POR_EL0 (Mark Salter) [RHEL-101059] - arm64/mm: Drop redundant addr increment in set_huge_pte_at() (Mark Salter) [RHEL-101059] - arm64: Mark kernel as tainted on SAE and SError panic (Mark Salter) [RHEL-101059] - arm64/gcs: Don't call gcs_free() when releasing task_struct (Mark Salter) [RHEL-101059] - arm64: fix unnecessary rebuilding when CONFIG_DEBUG_EFI=y (Mark Salter) [RHEL-101059] - arm64/mm: Optimize loop to reduce redundant operations of contpte_ptep_get (Mark Salter) [RHEL-101059] - arm64: pi: use 'targets' instead of extra-y in Makefile (Mark Salter) [RHEL-101059] - arm64: Kconfig: Keep selects somewhat alphabetically ordered (Mark Salter) [RHEL-101059] - arm64: Implement HAVE_LIVEPATCH (Mark Salter) [RHEL-101059] - arm64: stacktrace: Implement arch_stack_walk_reliable() (Mark Salter) [RHEL-101059] - arm64: Handle BRBE booting requirements (Mark Salter) [RHEL-101059] - arm64: el2_setup.h: Make __init_el2_fgt labels consistent, again (Mark Salter) [RHEL-101059] - arm64/sysreg: Add BRBE registers and fields (Mark Salter) [RHEL-101059] - arm64: stacktrace: Check kretprobe_find_ret_addr() return value (Mark Salter) [RHEL-101059] - arm64/module: Use text-poke API for late relocations. (Mark Salter) [RHEL-101059] - arm64: Detect FEAT_DoubleFault2 (Mark Salter) [RHEL-101059] - arm64: Detect FEAT_SCTLR2 (Mark Salter) [RHEL-101059] - arm64: sysreg: Add THE/ASID2 controls to TCR2_ELx (Mark Salter) [RHEL-101059] - arm64: smp: Fix pNMI setup after GICv5 rework (Mark Salter) [RHEL-101059] - arm64: Add support for GICv5 GSB barriers (Mark Salter) [RHEL-101059] - arm64: smp: Support non-SGIs for IPIs (Mark Salter) [RHEL-101059] - arm64: cpucaps: Add GICv5 CPU interface (GCIE) capability (Mark Salter) [RHEL-101059] - arm64: cpucaps: Rename GICv3 CPU interface capability (Mark Salter) [RHEL-101059] - arm64: Disable GICv5 read/write/instruction traps (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICH_HFGITR_EL2 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICH_HFGWTR_EL2 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICH_HFGRTR_EL2 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICC_IDR0_EL1 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICC_PCR_EL1 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICC_CR0_EL1 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICC_PPI_{C/S}PENDR_EL1 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICC_PPI_{C/S}ACTIVER_EL1 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICC_PPI_ENABLER_EL1 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICC_PPI_HMR_EL1 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICC_ICSR_EL1 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add ICC_PPI_PRIORITY_EL1 (Mark Salter) [RHEL-101059] - arm64/sysreg: Add GCIE field to ID_AA64PFR2_EL1 (Mark Salter) [RHEL-101059] - dt-bindings: interrupt-controller: Add Arm GICv5 (Mark Salter) [RHEL-101059] - arm64: remove CONFIG_VMAP_STACK checks from entry code (Mark Salter) [RHEL-101059] - arm64: remove CONFIG_VMAP_STACK checks from SDEI stack handling (Mark Salter) [RHEL-101059] - arm64: remove CONFIG_VMAP_STACK checks from stacktrace overflow logic (Mark Salter) [RHEL-101059] - arm64: remove CONFIG_VMAP_STACK conditionals from traps overflow stack (Mark Salter) [RHEL-101059] - arm64: remove CONFIG_VMAP_STACK conditionals from irq stack setup (Mark Salter) [RHEL-101059] - arm64: Remove CONFIG_VMAP_STACK conditionals from THREAD_SHIFT and THREAD_ALIGN (Mark Salter) [RHEL-101059] - arm64: efi: Remove CONFIG_VMAP_STACK check (Mark Salter) [RHEL-101059] - arm64: Mandate VMAP_STACK (Mark Salter) [RHEL-101059] - arm64/debug: Drop redundant DBG_MDSCR_* macros (Mark Salter) [RHEL-101059] - kselftest/arm64/mte: Add MTE_STORE_ONLY testcases (Mark Salter) [RHEL-101059] - kselftest/arm64/mte: Preparation for mte store only test (Mark Salter) [RHEL-101059] - kselftest/arm64/abi: Add MTE_STORE_ONLY feature hwcap test (Mark Salter) [RHEL-101059] - arm64/hwcaps: Add MTE_STORE_ONLY hwcaps (Mark Salter) [RHEL-101059] - arm64/kernel: Support store-only mte tag check (Mark Salter) [RHEL-101059] - prctl: Introduce PR_MTE_STORE_ONLY (Mark Salter) [RHEL-101059] - arm64/cpufeature: Add MTE_STORE_ONLY feature (Mark Salter) [RHEL-101059] - kselftest/arm64/mte: Add mtefar tests on check_mmap_options (Mark Salter) [RHEL-101059] - kselftest/arm64/mte: Refactor check_mmap_option test (Mark Salter) [RHEL-101059] - kselftest/arm64/mte: Add verification for address tag in signal handler (Mark Salter) [RHEL-101059] - kselftest/arm64/mte: Add address tag related macro and function (Mark Salter) [RHEL-101059] - kselftest/arm64/mte: Check MTE_FAR feature is supported (Mark Salter) [RHEL-101059] - kselftest/arm64/mte: Register mte signal handler with SA_EXPOSE_TAGBITS (Mark Salter) [RHEL-101059] - kselftest/arm64: Add MTE_FAR hwcap test (Mark Salter) [RHEL-101059] - arm64: Report address tag when FEAT_MTE_TAGGED_FAR is supported (Mark Salter) [RHEL-101059] - arm64/cpufeature: Add FEAT_MTE_TAGGED_FAR feature (Mark Salter) [RHEL-101059] - ACPI: Suppress misleading SPCR console message when SPCR table is absent (Mark Salter) [RHEL-101059] - ACPI: Return -ENODEV from acpi_parse_spcr() when SPCR support is disabled (Mark Salter) [RHEL-101059] - arm64: Add BBM Level 2 cpu feature (Mark Salter) [RHEL-101059] - arm64: cpufeature: Introduce MATCH_ALL_EARLY_CPUS capability type (Mark Salter) [RHEL-101059] - kselftest/arm64: Set default OUTPUT path when undefined (Mark Salter) [RHEL-101059] - kselftest/arm64: fp-ptrace: Adjust to new inactive mode behaviour (Mark Salter) [RHEL-101059] - kselftest/arm64: fp-ptrace: Adjust to new VL change behaviour (Mark Salter) [RHEL-101059] - kselftest/arm64: tpidr2: Adjust to new clone() behaviour (Mark Salter) [RHEL-101059] - kselftest/arm64: fp-ptrace: Fix expected FPMR value when PSTATE.SM is changed (Mark Salter) [RHEL-101059] - kselftest/arm64: Try harder to generate different keys during PAC tests (Mark Salter) [RHEL-101059] - kselftest/arm64: Don't leak pipe fds in pac.exec_sign_all() (Mark Salter) [RHEL-101059] - kselftest/arm64: Corrupt P0 in the irritator when testing SSVE (Mark Salter) [RHEL-101059] - kselftest/arm64: Add FPMR coverage to fp-ptrace (Mark Salter) [RHEL-101059] - kselftest/arm64: Expand the set of ZA writes fp-ptrace does (Mark Salter) [RHEL-101059] - kselftets/arm64: Use flag bits for features in fp-ptrace assembler code (Mark Salter) [RHEL-101059] - kselftest/arm64: Enable build of PAC tests with LLVM=1 (Mark Salter) [RHEL-101059] - kselftest/arm64: Check that SVCR is 0 in signal handlers (Mark Salter) [RHEL-101059] - kselftest/arm64: Fix printf() compiler warnings in the arm64 syscall-abi.c tests (Mark Salter) [RHEL-101059] - kselftest/arm64: Fix printf() warning in the arm64 MTE prctl() test (Mark Salter) [RHEL-101059] - kselftest/arm64: Fix printf() compiler warnings in the arm64 fp tests (Mark Salter) [RHEL-101059] - kselftest/arm64: Fix build with stricter assemblers (Mark Salter) [RHEL-101059] - kselftest/arm64: Test signal handler state modification in fp-stress (Mark Salter) [RHEL-101059] - kselftest/arm64: Provide a SIGUSR1 handler in the kernel mode FP stress test (Mark Salter) [RHEL-101059] - kselftest/arm64: Implement irritators for ZA and ZT (Mark Salter) [RHEL-101059] - kselftest/arm64: Remove unused ADRs from irritator handlers (Mark Salter) [RHEL-101059] - kselftest/arm64: Correct misleading comments on fp-stress irritators (Mark Salter) [RHEL-101059] - kselftest/arm64: Poll less often while waiting for fp-stress children (Mark Salter) [RHEL-101059] - kselftest/arm64: Increase frequency of signal delivery in fp-stress (Mark Salter) [RHEL-101059] - kselftest/arm64: Fix encoding for SVE B16B16 test (Mark Salter) [RHEL-101059] - kselftest/arm64: Use ksft_perror() to log MTE failures (Mark Salter) [RHEL-101059] - kselftest/arm64: Log fp-stress child startup errors to stdout (Mark Salter) [RHEL-101059] - kselftest/arm64: Fail the overall fp-stress test if any test fails (Mark Salter) [RHEL-101059] - kselftest/arm64: mte: fix printf type warnings about longs (Mark Salter) [RHEL-101059] - kselftest/arm64: mte: fix printf type warnings about pointers (Mark Salter) [RHEL-101059] - kselftest/arm64: mte: fix printf type warnings about __u64 (Mark Salter) [RHEL-101059] - kselftest/arm64: mte: use string literal for printf-style functions (Mark Salter) [RHEL-101059] - kselftest/arm64: mte: use proper SKIP syntax (Mark Salter) [RHEL-101059] - kselftest/arm64: hwcap: fix f8dp2 cpuinfo name (Mark Salter) [RHEL-101059] - kselftest/arm64: signal: drop now redundant GNU_SOURCE definition (Mark Salter) [RHEL-101059] - arm64/entry: Mask DAIF in cpu_switch_to(), call_on_irq_stack() (Mark Salter) [RHEL-101059] - arm64/mm: Drop wrong writes into TCR2_EL1 (Mark Salter) [RHEL-101059] - arm64: poe: Handle spurious Overlay faults (Mark Salter) [RHEL-101059] - arm64: Filter out SME hwcaps when FEAT_SME isn't implemented (Mark Salter) [RHEL-101059] - arm64: move smp_send_stop() cpu mask off stack (Mark Salter) [RHEL-101059] - arm64/gcs: Don't try to access GCS registers if arm64.nogcs is enabled (Mark Salter) [RHEL-101059] - arm64: Unconditionally select CONFIG_JUMP_LABEL (Mark Salter) [RHEL-101059] - arm64: efi: Fix KASAN false positive for EFI runtime stack (Mark Salter) [RHEL-101059] - arm64/ptrace: Fix stack-out-of-bounds read in regs_get_kernel_stack_nth() (Mark Salter) [RHEL-101059] - arm64/gcs: Don't call gcs_free() during flush_gcs() (Mark Salter) [RHEL-101059] - arm64: Restrict pagetable teardown to avoid false warning (Mark Salter) [RHEL-101059] - docs: arm64: Fix ICC_SRE_EL2 register typo in booting.rst (Mark Salter) [RHEL-101059] - arm64: Expose AIDR_EL1 via sysfs (Mark Salter) [RHEL-101059] - arm64/cpufeature: Add missing id_aa64mmfr4 feature reg update (Mark Salter) [RHEL-101059] - arm64: sysreg: Add layout for VNCR_EL2 (Mark Salter) [RHEL-101059] - arm64: Add FEAT_FGT2 capability (Mark Salter) [RHEL-101059] - arm64: Add syndrome information for trapped LD64B/ST64B{,V,V0} (Mark Salter) [RHEL-101059] - arm64: tools: Resync sysreg.h (Mark Salter) [RHEL-101059] - arm64: Remove duplicated sysreg encodings (Mark Salter) [RHEL-101059] - arm64: sysreg: Add system instructions trapped by HFGIRT2_EL2 (Mark Salter) [RHEL-101059] - arm64: sysreg: Add registers trapped by HDFG{R,W}TR2_EL2 (Mark Salter) [RHEL-101059] - arm64: sysreg: Add registers trapped by HFG{R,W}TR2_EL2 (Mark Salter) [RHEL-101059] - arm64: sysreg: Update CPACR_EL1 description (Mark Salter) [RHEL-101059] - arm64: sysreg: Update TRBIDR_EL1 description (Mark Salter) [RHEL-101059] - arm64: sysreg: Update PMSIDR_EL1 description (Mark Salter) [RHEL-101059] - arm64: sysreg: Update ID_AA64PFR0_EL1 description (Mark Salter) [RHEL-101059] - arm64: sysreg: Replace HFGxTR_EL2 with HFG{R,W}TR_EL2 (Mark Salter) [RHEL-101059] - arm64: sysreg: Add layout for HCR_EL2 (Mark Salter) [RHEL-101059] - arm64: sysreg: Update ID_AA64MMFR4_EL1 description (Mark Salter) [RHEL-101059] - arm64: sysreg: Add ID_AA64ISAR1_EL1.LS64 encoding for FEAT_LS64WB (Mark Salter) [RHEL-101059] - arm64: vdso: Use __arch_counter_get_cntvct() (Mark Salter) [RHEL-101059] - arm64/boot: Disallow BSS exports to startup code (Mark Salter) [RHEL-101059] - arm64/boot: Move global CPU override variables out of BSS (Mark Salter) [RHEL-101059] - arm64/boot: Move init_pgdir[] and init_idmap_pgdir[] into __pi_ namespace (Mark Salter) [RHEL-101059] - arm64: mm: Drop redundant check in pmd_trans_huge() (Mark Salter) [RHEL-101059] - arm64/mm: Permit lazy_mmu_mode to be nested (Mark Salter) [RHEL-101059] - arm64/mm: Disable barrier batching in interrupt contexts (Mark Salter) [RHEL-101059] - arm64/mm: Batch barriers when updating kernel mappings (Mark Salter) [RHEL-101059] - mm/vmalloc: Enter lazy mmu mode while manipulating vmalloc ptes (Mark Salter) [RHEL-101059] - arm64/mm: Support huge pte-mapped pages in vmap (Mark Salter) [RHEL-101059] - mm/vmalloc: Gracefully unmap huge ptes (Mark Salter) [RHEL-101059] - mm/vmalloc: Warn on improper use of vunmap_range() (Mark Salter) [RHEL-101059] - arm64/mm: Hoist barriers out of set_ptes_anysz() loop (Mark Salter) [RHEL-101059] - arm64: hugetlb: Use __set_ptes_anysz() and __ptep_get_and_clear_anysz() (Mark Salter) [RHEL-101059] - arm64/mm: Refactor __set_ptes() and __ptep_get_and_clear() (Mark Salter) [RHEL-101059] - mm/page_table_check: Batch-check pmds/puds just like ptes (Mark Salter) [RHEL-101059] - arm64: hugetlb: Refine tlb maintenance scope (Mark Salter) [RHEL-101059] - arm64: hugetlb: Cleanup huge_pte size discovery mechanisms (Mark Salter) [RHEL-101059] - arm64: pageattr: Explicitly bail out when changing permissions for vmalloc_huge mappings (Mark Salter) [RHEL-101059] - arm64: Support ARM64_VA_BITS=52 when setting ARCH_MMAP_RND_BITS_MAX (Mark Salter) [RHEL-101059] - arm64/mm: Remove randomization of the linear map (Mark Salter) [RHEL-101059] - arm64/cpuinfo: only show one cpu's info in c_show() (Mark Salter) [RHEL-101059] - arm64: Extend pr_crit message on invalid FDT (Mark Salter) [RHEL-101059] - arm64: Kconfig: remove unnecessary selection of CRC32 (Mark Salter) [RHEL-101059] - arm64: Add missing includes for mem_encrypt (Mark Salter) [RHEL-101059] - arm64/fpsimd: Allow CONFIG_ARM64_SME to be selected (Mark Salter) [RHEL-101059] - arm64/fpsimd: ptrace: Gracefully handle errors (Mark Salter) [RHEL-101059] - arm64/fpsimd: ptrace: Mandate SVE payload for streaming-mode state (Mark Salter) [RHEL-101059] - arm64/fpsimd: ptrace: Do not present register data for inactive mode (Mark Salter) [RHEL-101059] - arm64/fpsimd: ptrace: Save task state before generating SVE header (Mark Salter) [RHEL-101059] - arm64/fpsimd: ptrace/prctl: Ensure VL changes leave task in a valid state (Mark Salter) [RHEL-101059] - arm64/fpsimd: ptrace/prctl: Ensure VL changes do not resurrect stale data (Mark Salter) [RHEL-101059] - arm64/fpsimd: Make clone() compatible with ZA lazy saving (Mark Salter) [RHEL-101059] - arm64/fpsimd: Clear PSTATE.SM during clone() (Mark Salter) [RHEL-101059] - arm64/fpsimd: Consistently preserve FPSIMD state during clone() (Mark Salter) [RHEL-101059] - arm64/fpsimd: Remove redundant task->mm check (Mark Salter) [RHEL-101059] - arm64/fpsimd: signal: Use SMSTOP behaviour in setup_return() (Mark Salter) [RHEL-101059] - arm64/fpsimd: Add task_smstop_sm() (Mark Salter) [RHEL-101059] - arm64/fpsimd: Factor out {sve,sme}_state_size() helpers (Mark Salter) [RHEL-101059] - arm64/fpsimd: Clarify sve_sync_*() functions (Mark Salter) [RHEL-101059] - arm64/fpsimd: ptrace: Consistently handle partial writes to NT_ARM_(S)SVE (Mark Salter) [RHEL-101059] - arm64/fpsimd: signal: Consistently read FPSIMD context (Mark Salter) [RHEL-101059] - arm64/fpsimd: signal: Mandate SVE payload for streaming-mode state (Mark Salter) [RHEL-101059] - arm64/fpsimd: signal: Clear PSTATE.SM when restoring FPSIMD frame only (Mark Salter) [RHEL-101059] - arm64/fpsimd: Avoid warning when sve_to_fpsimd() is unused (Mark Salter) [RHEL-101059] - arm64/fpsimd: signal: Clear TPIDR2 when delivering signals (Mark Salter) [RHEL-101059] - arm64/fpsimd: signal: Simplify preserve_tpidr2_context() (Mark Salter) [RHEL-101059] - arm64/fpsimd: signal: Always save+flush state early (Mark Salter) [RHEL-101059] - arm64/fpsimd: signal32: Always save+flush state early (Mark Salter) [RHEL-101059] - arm64/fpsimd: Add fpsimd_save_and_flush_current_state() (Mark Salter) [RHEL-101059] - arm64/fpsimd: Fix merging of FPSIMD state during signal return (Mark Salter) [RHEL-101059] - arm64/fpsimd: Reset FPMR upon exec() (Mark Salter) [RHEL-101059] - arm64/fpsimd: Avoid clobbering kernel FPSIMD state with SMSTOP (Mark Salter) [RHEL-101059] - arm64/fpsimd: Don't corrupt FPMR when streaming mode changes (Mark Salter) [RHEL-101059] - arm64/fpsimd: Discard stale CPU state when handling SME traps (Mark Salter) [RHEL-101059] - arm64/fpsimd: Remove opportunistic freeing of SME state (Mark Salter) [RHEL-101059] - arm64/fpsimd: Remove redundant SVE trap manipulation (Mark Salter) [RHEL-101059] - arm64/fpsimd: Remove unused fpsimd_force_sync_to_sve() (Mark Salter) [RHEL-101059] - arm64/fpsimd: Avoid RES0 bits in the SME trap handler (Mark Salter) [RHEL-101059] - arm64/fpsimd: Avoid unnecessary per-CPU buffers for EFI runtime calls (Mark Salter) [RHEL-101059] - arm64: enable PREEMPT_LAZY (Mark Salter) [RHEL-101059] - arm64: cpufeature: Move arm64_use_ng_mappings to the .data section to prevent wrong idmap generation (Mark Salter) [RHEL-101059] - arm64: Don't call NULL in do_compat_alignment_fixup() (Mark Salter) [RHEL-101059] - arm64: mm: Drop dead code for pud special bit handling (Mark Salter) [RHEL-101059] - arm64: mops: Do not dereference src reg for a set operation (Mark Salter) [RHEL-101059] - arm64: mm: Correct the update of max_pfn (Mark Salter) [RHEL-101059] - arm64: mm: Don't use %%pK through printk (Mark Salter) [RHEL-101059] - arm64/fpsimd: Remove unused declaration fpsimd_kvm_prepare() (Mark Salter) [RHEL-101059] - arm64/sysreg: Enforce whole word match for open/close tokens (Mark Salter) [RHEL-101059] - arm64/sysreg: Fix unbalanced closing block (Mark Salter) [RHEL-101059] - arm64/mm: Define PTDESC_ORDER (Mark Salter) [RHEL-101059] - arm64/kernel: Always use level 2 or higher for early mappings (Mark Salter) [RHEL-101059] - arm64/hugetlb: Consistently use pud_sect_supported() (Mark Salter) [RHEL-101059] - arm64/mm: Convert __pte_to_phys() and __phys_to_pte_val() as functions (Mark Salter) [RHEL-101059] - arm64/mm: Drop PXD_TABLE_BIT (Mark Salter) [RHEL-101059] - arm64/mm: Check pmd_table() in pmd_trans_huge() (Mark Salter) [RHEL-101059] - arm64/mm: Check PUD_TYPE_TABLE in pud_bad() (Mark Salter) [RHEL-101059] - arm64/mm: Check PXD_TYPE_TABLE in [p4d|pgd]_bad() (Mark Salter) [RHEL-101059] - arm64/mm: Clear PXX_TYPE_MASK and set PXD_TYPE_SECT in [pmd|pud]_mkhuge() (Mark Salter) [RHEL-101059] - arm64/mm: Clear PXX_TYPE_MASK in mk_[pmd|pud]_sect_prot() (Mark Salter) [RHEL-101059] - arm64/ptdump: Test PMD_TYPE_MASK for block mapping (Mark Salter) [RHEL-101059] - arm64: cputype: Add comments about Qualcomm Kryo 5XX and 6XX cores (Mark Salter) [RHEL-101059] - arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD (Mark Salter) [RHEL-101059] - arm64/sysreg: Move POR_EL0_INIT to asm/por.h (Mark Salter) [RHEL-101059] - arm64/sysreg: Rename POE_RXW to POE_RWX (Mark Salter) [RHEL-101059] - arm64/sysreg: Improve PIR/POR helpers (Mark Salter) [RHEL-101059] - arm64: lib: Use MOPS for usercopy routines (Mark Salter) [RHEL-101059] - arm64: mm: Handle PAN faults on uaccess CPY* instructions (Mark Salter) [RHEL-101059] - arm64: extable: Add fixup handling for uaccess CPY* instructions (Mark Salter) [RHEL-101059] - arm64: mm: Populate vmemmap at the page level if not section aligned (Mark Salter) [RHEL-101059] - arm64: hugetlb: Fix flush_hugetlb_tlb_range() invalidation level (Mark Salter) [RHEL-101059] - arm64: hugetlb: Fix huge_ptep_get_and_clear() for non-present ptes (Mark Salter) [RHEL-101059] - mm: hugetlb: Add huge page size param to huge_ptep_get_and_clear() (Mark Salter) [RHEL-101059] - s390/mm/hugetlbfs: Remove huge_pte_none() / huge_pte_none_mostly() (Mark Salter) [RHEL-101059] - arm64: rust: clean Rust 1.85.0 warning using softfloat target (Mark Salter) [RHEL-101059] - redhat/configs: automotive: Disable VLAN_8021Q_GVRP config (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable DCB and MPLS configs (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable IEEE 802.15.4 config (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable various network classification features (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable the SMBFS file system (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable Myricom network adapters (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable USB4 Ethernet config (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable the Mellanox SwitchX core driver (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable network storage related protocols (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable lightweight tunneling with BPF (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable RADOS block device configs (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable switchdev driver framework (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable network packet generator (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable NET_CLS_ACT and PSAMPLE configs (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable BPF STREAM_PARSER (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable Open vSwitch and NET_NSH configs (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable IP Virtual Server configs (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable IP set support (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable TLS Protocol (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable Advanced TCP Congestion Control (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable XDP Socket Protocol (Dorinda Bassey) [RHEL-85959] - redhat/configs: Disable unsafe queuing disciplines (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable wireless network and it's dependencies (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable the SCTP Protocol (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable TIPC Protocol (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable L2TP Protocol (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable MRP/8021Q_MVRP Protocol (Dorinda Bassey) [RHEL-85959] - redhat/configs: automotive: Disable IPsec Protocols and XFRM (Dorinda Bassey) [RHEL-85959] - cpumask: Remove unnecessary cpumask_nth_andnot() (Steve Best) [RHEL-122044] - x86/resctrl: Fix types in resctrl_arch_mon_ctx_{alloc,free}() stubs (Steve Best) [RHEL-122044] - fs/resctrl: Eliminate false positive lockdep warning when reading SNC counters (Steve Best) [RHEL-122044] - resctrl: get rid of pointless debugfs_file_{get,put}() (Steve Best) [RHEL-122044] - x86,fs/resctrl: Remove inappropriate references to cacheinfo in the resctrl subsystem (Steve Best) [RHEL-122044] - fs/resctrl: Restore the rdt_last_cmd_clear() calls after acquiring rdtgroup_mutex (Steve Best) [RHEL-122044] - x86,fs/resctrl: Move the resctrl filesystem code to live in /fs/resctrl (Steve Best) [RHEL-122044] - selftests/resctrl: Discover SNC kernel support and adjust messages (Steve Best) [RHEL-122044] - selftests/resctrl: Adjust effective L3 cache size with SNC enabled (Steve Best) [RHEL-122044] - selftests/resctrl: Replace magic constants used as array size (Steve Best) [RHEL-122044] - selftests/resctrl: Keep results from first test run (Steve Best) [RHEL-122044] - selftests/resctrl: Do not compare performance counters and resctrl at low bandwidth (Steve Best) [RHEL-122044] - selftests/resctrl: Use cache size to determine "fill_buf" buffer size (Steve Best) [RHEL-122044] - selftests/resctrl: Ensure measurements skip initialization of default benchmark (Steve Best) [RHEL-122044] - selftests/resctrl: Make benchmark parameter passing robust (Steve Best) [RHEL-122044] - selftests/resctrl: Remove unused measurement code (Steve Best) [RHEL-122044] - selftests/resctrl: Only support measured read operation (Steve Best) [RHEL-122044] - selftests/resctrl: Remove "once" parameter required to be false (Steve Best) [RHEL-122044] - selftests/resctrl: Make wraparound handling obvious (Steve Best) [RHEL-122044] - selftests/resctrl: Protect against array overflow when reading strings (Steve Best) [RHEL-122044] - selftests/resctrl: Protect against array overrun during iMC config parsing (Steve Best) [RHEL-122044] - selftests/resctrl: Fix memory overflow due to unhandled wraparound (Steve Best) [RHEL-122044] - selftests/resctrl: Print accurate buffer size as part of MBM results (Steve Best) [RHEL-122044] - selftests/resctrl: Make functions only used in same file static (Steve Best) [RHEL-122044] - x86/resctrl: Move pseudo lock prototypes to include/linux/resctrl.h (Steve Best) [RHEL-122044] - x86/resctrl: Move enum resctrl_event_id to resctrl.h (Steve Best) [RHEL-122044] - x86/resctrl: Always initialise rid field in rdt_resources_all[] (Steve Best) [RHEL-122044] - x86/resctrl: Relax some asm #includes (Steve Best) [RHEL-122044] - x86/resctrl: Prefer alloc(sizeof(*foo)) idiom in rdt_init_fs_context() (Steve Best) [RHEL-122044] - x86/resctrl: Squelch whitespace anomalies in resctrl core code (Steve Best) [RHEL-122044] - x86/resctrl: Move the filesystem bits to headers visible to fs/resctrl (Steve Best) [RHEL-122044] - fs/resctrl: Add boiler plate for external resctrl code (Steve Best) [RHEL-122044] - x86/resctrl: Split trace.h (Steve Best) [RHEL-122044] - x86/resctrl: Expand the width of domid by replacing mon_data_bits (Steve Best) [RHEL-122044] - x86/resctrl: Add end-marker to the resctrl_event_id enum (Steve Best) [RHEL-122044] - x86/resctrl: Move is_mba_sc() out of core.c (Steve Best) [RHEL-122044] - x86/resctrl: Drop __init/__exit on assorted symbols (Steve Best) [RHEL-122044] - x86/resctrl: Resctrl_exit() teardown resctrl but leave the mount point (Steve Best) [RHEL-122044] - x86/resctrl: Check all domains are offline in resctrl_exit() (Steve Best) [RHEL-122044] - x86/resctrl: Rename resctrl_sched_in() to begin with "resctrl_arch_" (Steve Best) [RHEL-122044] - x86/resctrl: Remove the limit on the number of CLOSID (Steve Best) [RHEL-122044] - x86/resctrl: Optimize cpumask_any_housekeeping() (Steve Best) [RHEL-122044] - cpumask: Relax cpumask_any_but() (Steve Best) [RHEL-122044] - cpumask: Add cpumask_{first,next}_andnot() API (Steve Best) [RHEL-122044] - find: Add find_first_andnot_bit() (Steve Best) [RHEL-122044] - x86/resctrl: Fix rdtgroup_mkdir()'s unlocked use of kernfs_node::name (Steve Best) [RHEL-122044] - x86/resctrl: Move get_{mon,ctrl}_domain_from_cpu() to live with their callers (Steve Best) [RHEL-122044] - x86/resctrl: Move get_config_index() to a header (Steve Best) [RHEL-122044] - x86/resctrl: Handle throttle_mode for SMBA resources (Steve Best) [RHEL-122044] - x86/resctrl: Move RFTYPE flags to be managed by resctrl (Steve Best) [RHEL-122044] - x86/resctrl: Make resctrl_arch_pseudo_lock_fn() take a plr (Steve Best) [RHEL-122044] - x86/resctrl: Make prefetch_disable_bits belong to the arch code (Steve Best) [RHEL-122044] - x86/resctrl: Allow an architecture to disable pseudo lock (Steve Best) [RHEL-122044] - x86/resctrl: Add resctrl_arch_ prefix to pseudo lock functions (Steve Best) [RHEL-122044] - x86/resctrl: Move mbm_cfg_mask to struct rdt_resource (Steve Best) [RHEL-122044] - x86/resctrl: Move mba_mbps_default_event init to filesystem code (Steve Best) [RHEL-122044] - x86/resctrl: Change mon_event_config_{read,write}() to be arch helpers (Steve Best) [RHEL-122044] - x86/resctrl: Add resctrl_arch_is_evt_configurable() to abstract BMEC (Steve Best) [RHEL-122044] - x86/resctrl: Move the is_mbm_*_enabled() helpers to asm/resctrl.h (Steve Best) [RHEL-122044] - x86/resctrl: Rewrite and move the for_each_*_rdt_resource() walkers (Steve Best) [RHEL-122044] - x86/resctrl: Move monitor init work to a resctrl init call (Steve Best) [RHEL-122044] - x86/resctrl: Move monitor exit work to a resctrl exit call (Steve Best) [RHEL-122044] - x86/resctrl: Add an arch helper to reset one resource (Steve Best) [RHEL-122044] - x86/resctrl: Move resctrl types to a separate header (Steve Best) [RHEL-122044] - x86/resctrl: Move rdt_find_domain() to be visible to arch and fs code (Steve Best) [RHEL-122044] - x86/resctrl: Expose resctrl fs's init function to the rest of the kernel (Steve Best) [RHEL-122044] - x86/resctrl: Remove rdtgroup from update_cpu_closid_rmid() (Steve Best) [RHEL-122044] - x86/resctrl: Add helper for setting CPU default properties (Steve Best) [RHEL-122044] - x86/resctrl: Generate default_ctrl instead of sharing it (Steve Best) [RHEL-122044] - x86/resctrl: Add max_bw to struct resctrl_membw (Steve Best) [RHEL-122044] - x86/resctrl: Remove data_width and the tabular format (Steve Best) [RHEL-122044] - x86/resctrl: Use schema type to determine the schema format string (Steve Best) [RHEL-122044] - x86/resctrl: Use schema type to determine how to parse schema values (Steve Best) [RHEL-122044] - x86/resctrl: Remove fflags from struct rdt_resource (Steve Best) [RHEL-122044] - x86/resctrl: Add a helper to avoid reaching into the arch code resource list (Steve Best) [RHEL-122044] - x86/resctrl: Fix allocation of cleanest CLOSID on platforms with no monitors (Steve Best) [RHEL-122044] - kernfs: Move dput() outside of the RCU section. (Steve Best) [RHEL-122044] - kernfs: Drop kernfs_rwsem while invoking lookup_positive_unlocked(). (Steve Best) [RHEL-122044] - kernfs: Use RCU to access kernfs_node::name. (Steve Best) [RHEL-122044] - kernfs: Use RCU to access kernfs_node::parent. (Steve Best) [RHEL-122044] - kernfs: Don't re-lock kernfs_root::kernfs_rwsem in kernfs_fop_readdir(). (Steve Best) [RHEL-122044] - kernfs: Acquire kernfs_rwsem in kernfs_node_dentry(). (Steve Best) [RHEL-122044] - kernfs: Acquire kernfs_rwsem in kernfs_get_parent_dentry(). (Steve Best) [RHEL-122044] - kernfs: Acquire kernfs_rwsem in kernfs_notify_workfn(). (Steve Best) [RHEL-122044] - x86/resctrl: Document the new "mba_MBps_event" file (Steve Best) [RHEL-122044] - x86/resctrl: Add write option to "mba_MBps_event" file (Steve Best) [RHEL-122044] - x86/resctrl: Add "mba_MBps_event" file to CTRL_MON directories (Steve Best) [RHEL-122044] - x86/resctrl: Make mba_sc use total bandwidth if local is not supported (Steve Best) [RHEL-122044] - x86/resctrl: Compute memory bandwidth for all supported events (Steve Best) [RHEL-122044] - x86/resctrl: Modify update_mba_bw() to use per CTRL_MON group event (Steve Best) [RHEL-122044] - x86/resctrl: Prepare for per-CTRL_MON group mba_MBps control (Steve Best) [RHEL-122044] - x86/resctrl: Introduce resctrl_file_fflags_init() to initialize fflags (Steve Best) [RHEL-122044] - x86/resctrl: Use kthread_run_on_cpu() (Steve Best) [RHEL-122044] - x86/paravirt: Remove the WBINVD callback (Steve Best) [RHEL-122044] - x86/microcode/intel: Remove unnecessary cache writeback and invalidation (Steve Best) [RHEL-122044] - x86/resctrl: Support Sub-NUMA cluster mode SNC6 (Steve Best) [RHEL-122044] - x86/resctrl: Slightly clean-up mbm_config_show() (Steve Best) [RHEL-122044] - cpufreq/amd-pstate: Avoid shadowing ret in amd_pstate_ut_check_driver() (Steve Best) [RHEL-104550] - amd-pstate-ut: Reset amd-pstate driver mode after running selftests (Steve Best) [RHEL-104550] - cpufreq/amd-pstate: Disable preferred cores on designs with workload classification (Steve Best) [RHEL-104550] - cpufreq/amd-pstate: Fix setting of CPPC.min_perf in active mode for performance governor (Steve Best) [RHEL-104550] - cpupower: Fix a bug where the -t option of the set subcommand was not working. (Steve Best) [RHEL-110832] - pm: cpupower: Fix printing of CORE, CPU fields in cpupower-monitor (Steve Best) [RHEL-110832] - pm: cpupower: Fix the snapshot-order of tsc,mperf, clock in mperf_stop() (Steve Best) [RHEL-110832] - cpupower: Implement CPU physical core querying (Steve Best) [RHEL-110832] - dmaengine: dw: dmamux: Fix device reference leak in rzn1_dmamux_route_allocate (Jerry Snitselaar) [RHEL-117902] - dmaengine: ti: edma: Fix memory allocation size for queue_priority_map (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Fix double free in idxd_setup_wqs() (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Fix refcount underflow on module unload (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Remove improper idxd_free (Jerry Snitselaar) [RHEL-117902] - dmaengine: qcom: bam_dma: Fix DT error handling for num-channels/ees (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Remove __packed from structures (Jerry Snitselaar) [RHEL-117902] - dmaengine: ti: Do not enable by default during compile testing (Jerry Snitselaar) [RHEL-117902] - dmaengine: sh: Do not enable SH_DMAE_BASE by default during compile testing (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Fix warning for deadcode.deadstore (Jerry Snitselaar) [RHEL-117902] - dmaengine: qcom: gpi: Drop unused gpi_write_reg_field() (Jerry Snitselaar) [RHEL-117902] - dmaengine: dw-edma: Drop unused dchan2dev() and chan2dev() (Jerry Snitselaar) [RHEL-117902] - dmaengine: Add devm_dma_request_chan() (Jerry Snitselaar) [RHEL-117902] - dma: dw-edma: Fix build warning in dw_edma_pcie_probe() (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Remove unused pointer and macro (Jerry Snitselaar) [RHEL-117902] - dmaengine: sh: rz-dmac: Add RZ/V2H(P) support (Jerry Snitselaar) [RHEL-117902] - dmaengine: sh: rz-dmac: Allow for multiple DMACs (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Narrow the restriction on BATCH to ver. 1 only (Jerry Snitselaar) [RHEL-117902] - dmaengine: ti: Add NULL check in udma_probe() (Jerry Snitselaar) [RHEL-117902] - dmaengine: dw-edma: Add HDMA NATIVE map check (Jerry Snitselaar) [RHEL-117902] - dmaengine: ptdma: Remove dead code from pt_dmaengine_register() (Jerry Snitselaar) [RHEL-117902] - dmaengine: ptdma: Remove unused pointer dma_cmd_cache (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Fix ->poll() return value (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Refactor remove call with idxd_cleanup() helper (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Add missing idxd cleanup to fix memory leak in remove call (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: fix memory leak in error handling path of idxd_pci_probe (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: fix memory leak in error handling path of idxd_alloc (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Add missing cleanups in cleanup internals (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Add missing cleanup for early error out in idxd_setup_internals (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: fix memory leak in error handling path of idxd_setup_groups (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: fix memory leak in error handling path of idxd_setup_engines (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: fix memory leak in error handling path of idxd_setup_wqs (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Fix allowing write() from different address spaces (Jerry Snitselaar) [RHEL-117902] - dmaengine: ti: k3-udma: Add missing locking (Jerry Snitselaar) [RHEL-117902] - dmaengine: ti: k3-udma: Use cap_mask directly from dma_device structure instead of a local copy (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: cdev: Fix uninitialized use of sva in idxd_cdev_open (Jerry Snitselaar) [RHEL-117902] - dmaengine: Remove device_prep_dma_imm_data from struct dma_device (Jerry Snitselaar) [RHEL-117902] - dmaengine: ti: edma: support sw triggered chans in of_edma_xlate() (Jerry Snitselaar) [RHEL-117902] - dmaengine: ti: k3-udma: Enable second resource range for BCDMA and PKTDMA (Jerry Snitselaar) [RHEL-117902] - dmaengine: Fix typo in comment (Jerry Snitselaar) [RHEL-117902] - dmaengine: bcm2835-dma: fix warning when CONFIG_PM=n (Jerry Snitselaar) [RHEL-117902] - dmaengine: idxd: Delete unnecessary NULL check (Jerry Snitselaar) [RHEL-117902] - dmaengine: Use str_enable_disable-like helpers (Jerry Snitselaar) [RHEL-117902] - dmaengine: dw: Switch to LATE_SIMPLE_DEV_PM_OPS() (Jerry Snitselaar) [RHEL-117902] - dmaengine: Unify checks in dma_request_chan() (Jerry Snitselaar) [RHEL-117902] - dmaengine: Add a comment on why it's okay when kasprintf() fails (Jerry Snitselaar) [RHEL-117902] - dmaengine: Use dma_request_channel() instead of __dma_request_channel() (Jerry Snitselaar) [RHEL-117902] - dmaengine: Replace dma_request_slave_channel() by dma_request_chan() (Jerry Snitselaar) [RHEL-117902] - x86/cpu: Make all all CPUID leaf names consistent (Jerry Snitselaar) [RHEL-117902] - x86/fpu: Remove unnecessary CPUID level check (Jerry Snitselaar) [RHEL-117902] - x86/fpu: Move CPUID leaf definitions to common code (Jerry Snitselaar) [RHEL-117902] - x86/tsc: Remove CPUID "frequency" leaf magic numbers. (Jerry Snitselaar) [RHEL-117902] - x86/cpu: Refresh DCA leaf reading code (Jerry Snitselaar) [RHEL-117902] - x86/cpu: Remove unnecessary MwAIT leaf checks (Jerry Snitselaar) [RHEL-117902] - x86/cpu: Use MWAIT leaf definition (Jerry Snitselaar) [RHEL-117902] - crypto: ccp - Use int type to store negative error codes (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Fix incorrect payload size calculation in psp_poulate_hsti() (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Fix typo in psp_populate_hsti function name (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Remove redundant __GFP_ZERO (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Fix checks for SNP_VLEK_LOAD input buffer length (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Add support to enable CipherTextHiding on SNP_INIT_EX (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Introduce new API interface to indicate SEV-SNP Ciphertext hiding feature (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Add support for SNP_FEATURE_INFO command (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Cache SEV platform status and platform state (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - New bit-field definitions for SNP_PLATFORM_STATUS command (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Always pass in an error pointer to __sev_platform_shutdown_locked() (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - reduce stack usage in ccp_run_aes_gcm_cmd (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Fix crash when rebind ccp device for ccp.ko (Vladis Dronov) [RHEL-106909 RHEL-107608] {CVE-2025-38581} - crypto: ccp - Fix locking on alloc failure handling (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Fix SNP panic notifier unregistration (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Fix dereferencing uninitialized error pointer (Vladis Dronov) [RHEL-106909 RHEL-107608] {CVE-2025-39729} - crypto: ccp - Add missing bootloader info reg for pspv6 (Vladis Dronov) [RHEL-106909 RHEL-107608] - KVM: SVM: Add missing member in SNP_LAUNCH_START command structure (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Add missing tee info reg for teev2 (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Add missing bootloader info reg for pspv5 (Vladis Dronov) [RHEL-106909 RHEL-107608] - dt-bindings: crypto: Convert amd,ccp-seattle-v1a to DT schema (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Add support for PCI device 0x17D8 (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Include crypto/utils.h for crypto_memneq (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Fix __sev_snp_shutdown_locked (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Add missing header inclusions (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Silence may-be-uninitialized warning in sev_ioctl_do_pdh_export (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Move SEV/SNP Platform initialization to KVM (Vladis Dronov) [RHEL-106909 RHEL-107608] - KVM: SVM: Add support to initialize SEV/SNP functionality in KVM (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Add new SEV/SNP platform shutdown API (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Register SNP panic notifier only if SNP is enabled (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Reset TMR size at SNP Shutdown (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Ensure implicit SEV/SNP init and shutdown in ioctls (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Move dev_info/err messages for SEV/SNP init and shutdown (Vladis Dronov) [RHEL-106909 RHEL-107608] - crypto: ccp - Abort doing SEV INIT if SNP INIT fails (Vladis Dronov) [RHEL-106909 RHEL-107608] - iommu/amd: Allow matching ACPI HID devices without matching UIDs (Jerry Snitselaar) [RHEL-89838] - redhat/configs: set CONFIG_IMA_KEXEC_EXTRA_MEMORY_KB default value (Baoquan He) [RHEL-114162] - kexec_file: use SHA-256 library API instead of crypto_shash API (Baoquan He) [RHEL-114162] - crash: fix spelling mistake "crahskernel" -> "crashkernel" (Baoquan He) [RHEL-114162] - ima: make the kexec extra memory configurable (Baoquan He) [RHEL-114162] - ima: verify if the segment size has changed (Baoquan He) [RHEL-114162] - ima: kexec: move IMA log copy from kexec load to execute (Baoquan He) [RHEL-114162] - ima: kexec: define functions to copy IMA log at soft boot (Baoquan He) [RHEL-114162] - ima: kexec: skip IMA segment validation after kexec soft reboot (Baoquan He) [RHEL-114162] - kexec: define functions to map and unmap segments (Baoquan He) [RHEL-114162] - ima: define and call ima_alloc_kexec_file_buf() (Baoquan He) [RHEL-114162] - ima: rename variable the seq_file "file" to "ima_kexec_file" (Baoquan He) [RHEL-114162] - ima: kexec: silence RCU list traversal warning (Baoquan He) [RHEL-114162] - selftests/kexec: Add x86_64 selftest for kexec-jump and exception handling (Baoquan He) [RHEL-114162] - x86/kexec: Invalidate GDT/IDT from relocate_kernel() instead of earlier (Baoquan He) [RHEL-114162] - x86/kexec: Add 8250 MMIO serial port output (Baoquan He) [RHEL-114162] - x86/kexec: Add 8250 serial port output (Baoquan He) [RHEL-114162] - x86/early_printk: Harden early_serial (Baoquan He) [RHEL-114162] - x86/boot: Mark start_secondary() with __noendbr (Baoquan He) [RHEL-114162] - x86/kexec: Debugging support: Dump registers on exception (Baoquan He) [RHEL-114162] - x86/kexec: Debugging support: Load an IDT and basic exception entry points (Baoquan He) [RHEL-114162] - x86/kexec: Merge x86_32 and x86_64 code using macros from (Baoquan He) [RHEL-114162] - kexec_core: accept unaccepted kexec segments' destination addresses (Baoquan He) [RHEL-114162] - powerpc/crash: use generic crashkernel reservation (Baoquan He) [RHEL-114162] - powerpc: insert System RAM resource to prevent crashkernel conflict (Baoquan He) [RHEL-114162] - powerpc/crash: preserve user-specified memory limit (Baoquan He) [RHEL-114162] - powerpc/crash: use generic APIs to locate memory hole for kdump (Baoquan He) [RHEL-114162] - crash: let arch decide usable memory range in reserved area (Baoquan He) [RHEL-114162] - crash: remove an unused argument from reserve_crashkernel_generic() (Baoquan He) [RHEL-114162] - kexec: initialize ELF lowest address to ULONG_MAX (Baoquan He) [RHEL-114162] - x86/kexec: Add relocate_kernel() debugging support: Load a GDT (Baoquan He) [RHEL-114162] - printk: Check CON_SUSPEND when unblanking a console (Baoquan He) [RHEL-114162] - printk: Rename console_start to console_resume (Baoquan He) [RHEL-114162] - printk: Rename console_stop to console_suspend (Baoquan He) [RHEL-114162] - printk: Rename resume_console to console_resume_all (Baoquan He) [RHEL-114162] - printk: Rename suspend_console to console_suspend_all (Baoquan He) [RHEL-114162] - crash: Remove KEXEC_CORE_NOTE_NAME (Baoquan He) [RHEL-114162] - s390/crash: Use note name macros (Baoquan He) [RHEL-114162] - s390/kdump: Provide is_kdump_kernel() implementation (Baoquan He) [RHEL-114162] - crash: Use note name macros (Baoquan He) [RHEL-114162] - proc/kcore: use percpu_rw_semaphore for kclist_lock (Baoquan He) [RHEL-114162] - proc/kcore: don't walk list on every read (Baoquan He) [RHEL-114162] - proc/kcore: mark proc entry as permanent (Baoquan He) [RHEL-114162] - powerpc/crash: Use note name macros (Baoquan He) [RHEL-114162] - binfmt_elf: Use note name macros (Baoquan He) [RHEL-114162] - elf: Define note name macros (Baoquan He) [RHEL-114162] - riscv: Allow ptrace control of the tagged address ABI (Baoquan He) [RHEL-114162] - x86/kexec: Use typedef for relocate_kernel_fn function prototype (Baoquan He) [RHEL-114162] - x86/kexec: Cope with relocate_kernel() not being at the start of the page (Baoquan He) [RHEL-114162] - kexec_core: Add and update comments regarding the KEXEC_JUMP flow (Baoquan He) [RHEL-114162] - x86/kexec: Mark machine_kexec() with __nocfi (Baoquan He) [RHEL-114162] - x86/kexec: Fix location of relocate_kernel with -ffunction-sections (Baoquan He) [RHEL-114162] - x86/kexec: Fix stack and handling of re-entry point for ::preserve_context (Baoquan He) [RHEL-114162] - x86/kexec: Use correct swap page in swap_pages function (Baoquan He) [RHEL-114162] - x86/kexec: Ensure preserve_context flag is set on return to kernel (Baoquan He) [RHEL-114162] - x86/kexec: Disable global pages before writing to control page (Baoquan He) [RHEL-114162] - x86: Fix build regression with CONFIG_KEXEC_JUMP enabled (Baoquan He) [RHEL-114162] - x86/kexec: Mark relocate_kernel page as ROX instead of RWX (Baoquan He) [RHEL-114162] - x86/kexec: Clean up register usage in relocate_kernel() (Baoquan He) [RHEL-114162] - x86/kexec: Eliminate writes through kernel mapping of relocate_kernel page (Baoquan He) [RHEL-114162] - x86/kexec: Drop page_list argument from relocate_kernel() (Baoquan He) [RHEL-114162] - x86/kexec: Add data section to relocate_kernel (Baoquan He) [RHEL-114162] - x86/kexec: Move relocate_kernel to kernel .data section (Baoquan He) [RHEL-114162] - x86/kexec: Invoke copy of relocate_kernel() instead of the original (Baoquan He) [RHEL-114162] - x86/kexec: Copy control page into place in machine_kexec_prepare() (Baoquan He) [RHEL-114162] - x86/kexec: Allocate PGD for x86_64 transition page tables separately (Baoquan He) [RHEL-114162] - x86/kexec: Only swap pages for ::preserve_context mode (Baoquan He) [RHEL-114162] - x86/kexec: Use named labels in swap_pages in relocate_kernel_64.S (Baoquan He) [RHEL-114162] - x86/kexec: Clean up and document register use in relocate_kernel_64.S (Baoquan He) [RHEL-114162] - x86/kexec: Restore GDT on return from ::preserve_context kexec (Baoquan He) [RHEL-114162] - fanotify: add watchdog for permission events (Miklos Szeredi) [RHEL-44601] - tmpfs: add support for multigrain timestamps (Carlos Maiolino) [RHEL-121527] - btrfs: convert to multigrain timestamps (Carlos Maiolino) [RHEL-121527] - ext4: switch to multigrain timestamps (Carlos Maiolino) [RHEL-121527] - xfs: switch to multigrain timestamps (Carlos Maiolino) [RHEL-121527] - Documentation: add a new file documenting multigrain timestamps (Carlos Maiolino) [RHEL-121527] - fs: add percpu counters for significant multigrain timestamp events (Carlos Maiolino) [RHEL-121527] - fs: tracepoints around multigrain timestamp events (Carlos Maiolino) [RHEL-121527] - fs: handle delegated timestamps in setattr_copy_mgtime (Carlos Maiolino) [RHEL-121527] - fs: have setattr_copy handle multigrain timestamps appropriately (Carlos Maiolino) [RHEL-121527] - fs: add infrastructure for multigrain timestamps (Carlos Maiolino) [RHEL-121527] - timekeeping: Add percpu counter for tracking floor swap events (Carlos Maiolino) [RHEL-121527] - timekeeping: Add interfaces for handling timestamps with a floor value (Carlos Maiolino) [RHEL-121527] - tcp: Don't call reqsk_fastopen_remove() in tcp_conn_request(). (Paolo Abeni) [RHEL-115580] - tcp: Clear tcp_sk(sk)->fastopen_rsk in tcp_disconnect(). (Paolo Abeni) [RHEL-115580] {CVE-2025-39955} - tcp: fix __tcp_close() to only send RST when required (Paolo Abeni) [RHEL-115580] - net: fix segmentation after TCP/UDP fraglist GRO (Paolo Abeni) [RHEL-115580] - tcp: call tcp_measure_rcv_mss() for ooo packets (Paolo Abeni) [RHEL-115580] - tcp: fix tcp_ofo_queue() to avoid including too much DUP SACK range (Paolo Abeni) [RHEL-115580] - tcp: fix passive TFO socket having invalid NAPI ID (Paolo Abeni) [RHEL-115580] - tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen() behavior (Paolo Abeni) [RHEL-115580] - fs: writeback: fix use-after-free in __mark_inode_dirty() (CKI Backport Bot) [RHEL-117211] {CVE-2025-39866} - redhat/configs: Re-enable Raspberry Pi support in automotive (Radu Rendec) [RHEL-122494] - spi: ljca: Remove Wentong's e-mail address (Mattijs Korpershoek) [RHEL-104570] - spi: rpc-if: Add resume support for RZ/G3E (Mattijs Korpershoek) [RHEL-104570] - spi: rpc-if: Drop deprecated SIMPLE_DEV_PM_OPS (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: Add OCT-DTR mode support (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: add the support for sample data from DQS pad (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: Add the DDR LUT command support (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: set back to dll override mode when clock rate < 100MHz (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: extract function nxp_fspi_dll_override() (Mattijs Korpershoek) [RHEL-104570] - spi: mt65xx: add dual and quad mode for standard spi device (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: simplify clock handling by using devm_clk_get_enabled() (Mattijs Korpershoek) [RHEL-104570] - spi: rename SPI_CS_CNT_MAX => SPI_DEVICE_CS_CNT_MAX (Mattijs Korpershoek) [RHEL-104570] - spi: reduce device chip select limit again (Mattijs Korpershoek) [RHEL-104570] - spi: don't check spi_controller::num_chipselect when parsing a dt device (Mattijs Korpershoek) [RHEL-104570] - spi: drop check for validity of device chip selects (Mattijs Korpershoek) [RHEL-104570] - spi: move unused device CS initialization to __spi_add_device() (Mattijs Korpershoek) [RHEL-104570] - spi: keep track of number of chipselects in spi_device (Mattijs Korpershoek) [RHEL-104570] - spi: fix return code when spi device has too many chipselects (Mattijs Korpershoek) [RHEL-104570] - spi: Group CS related fields in struct spi_device (Mattijs Korpershoek) [RHEL-104570] - spi: amlogic: Fix error checking on regmap_write call (Mattijs Korpershoek) [RHEL-104570] - spi: omap2-mcspi: drive SPI_CLK on transfer_setup() (Mattijs Korpershoek) [RHEL-104570] - serial: qcom-geni: Load UART qup Firmware from linux side (Mattijs Korpershoek) [RHEL-104570] - spi: geni-qcom: Load spi qup Firmware from linux side (Mattijs Korpershoek) [RHEL-104570] - soc: qcom: geni-se: Add support to load QUP SE Firmware via Linux subsystem (Mattijs Korpershoek) [RHEL-104570] - soc: qcom: geni-se: Cleanup register defines and update copyright (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: qcom: se-common: Add QUP Peripheral-specific properties for I2C, SPI, and SERIAL bus (Mattijs Korpershoek) [RHEL-104570] - spi: amlogic: add driver for Amlogic SPI Flash Controller (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: add Amlogic A113L2 SFC (Mattijs Korpershoek) [RHEL-104570] - redhat/configs: Disable CONFIG_SPI_VIRTIO in generic (Mattijs Korpershoek) [RHEL-104570] - SPI: Add virtio SPI driver (Mattijs Korpershoek) [RHEL-104570] - virtio-spi: Add virtio-spi.h (Mattijs Korpershoek) [RHEL-104570] - virtio: Add ID for virtio SPI (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Add support for sama7d65 QSPI (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: add support for SAM9X7 QSPI controller (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: add padcalib, 2xgclk, and dllon capabilities (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-quadspi: Use BIT() macros where possible (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-quadspi: Fix cqspi_setup_flash() (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-quadspi: Flush posted register writes before DAC access (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-quadspi: Flush posted register writes before INDAC access (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: unregister ECC engine on probe error and device remove (Mattijs Korpershoek) [RHEL-104570] - spi: mxs: fix "transfered"->"transferred" (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Report FIFO overflows as errors (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Increase target mode DMA buffer size (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Use whole page for DMA buffers (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Use non-coherent memory for DMA (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Stub out DMA functions (Mattijs Korpershoek) [RHEL-104570] - spi: fsl-dspi: Store status directly in cur_msg->status (Mattijs Korpershoek) [RHEL-104570] - spi: fsl-dspi: Avoid using -EINPROGRESS error code (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: samsung: Drop S3C2443 (Mattijs Korpershoek) [RHEL-104570] - spi: s3c64xx: Drop S3C2443 (Mattijs Korpershoek) [RHEL-104570] - spi: apple: Add "apple,t8103-spi" compatible (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Add compatible for S32G (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Parameterize reading num-cs from hardware (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Treat prescale_max == 0 as no erratum (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Constify devtype datas (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: lpspi: Document support for S32G (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Clear status register after disabling the module (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Reset FIFO and disable module on transfer abort (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Set correct chip-select polarity bit (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Fix transmissions when using CONT (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: fsl-lpspi: Add i.MX94 support (Mattijs Korpershoek) [RHEL-104570] - spi: rb4xx: use devm for clk_prepare_enable (Mattijs Korpershoek) [RHEL-104570] - spi: rb4xx: add COMPILE_TEST support (Mattijs Korpershoek) [RHEL-104570] - spi: rb4xx: depend on OF (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-quadspi: Implement refcount to handle unbind during busy (Mattijs Korpershoek) [RHEL-104570] - spi: microchip-core-qspi: stop checking viability of op->max_freq in supports_op callback (Mattijs Korpershoek) [RHEL-104570] - spi: st: fix PM macros to use CONFIG_PM instead of CONFIG_PM_SLEEP (Mattijs Korpershoek) [RHEL-104570] - spi: s3c64xx: Remove the use of dev_err_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: pxa2xx: Remove the use of dev_err_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: mt65xx: Remove the use of dev_err_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: Remove the use of dev_err_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: SPISG: Remove the use of dev_err_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Remove the use of dev_err_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: SPISG: Use devm_kcalloc() in aml_spisg_clk_init() (Mattijs Korpershoek) [RHEL-104570] - spi: offload trigger: adi-util-sigma-delta: clean up imports (Mattijs Korpershoek) [RHEL-104570] - MAINTAINERS: merge TRIGGER SOURCE sections (Mattijs Korpershoek) [RHEL-104570] - spi: spl022: use min_t() to improve code (Mattijs Korpershoek) [RHEL-104570] - spi: npcm-fiu: use min_t() to improve code (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: use min_t() to improve code (Mattijs Korpershoek) [RHEL-104570] - spi: remove unneeded 'fast_io' parameter in regmap_config (Mattijs Korpershoek) [RHEL-104570] - spi: mtk-snfi: Remove redundant semicolons (Mattijs Korpershoek) [RHEL-104570] - spi: bcm2835: Remove redundant semicolons (Mattijs Korpershoek) [RHEL-104570] - spi: loopback-test: Don't use %%pK through printk (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: remove 'clr*status' members of struct 'qpic_ecc' (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: remove unused 'dev' member of struct 'qpic_ecc' (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: handle 'use_ecc' parameter of qcom_spi_config_cw_read() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: avoid double assignment in qcom_spi_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Clamp too high speed_hz (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: fix calculating of ECC OOB regions' properties (Mattijs Korpershoek) [RHEL-104570] - spi: nxp-fspi: Remove error print for devm_add_action_or_reset() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: add spi_mem_adjust_op_freq() in spi_mem_supports_op() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Add missing kdoc argument (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: use correct CW_PER_PAGE value for OOB write (Mattijs Korpershoek) [RHEL-104570] - spi: cs42l43: Property entry should be a null-terminated array (Mattijs Korpershoek) [RHEL-104570] - spi: atmel: Add support for handling GCLK as a clock source (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: atmel,at91rm9200-spi: Add support for optional 'spi_gclk' clock (Mattijs Korpershoek) [RHEL-104570] - spi: atmel: simplify MR register update in cs_activate() (Mattijs Korpershoek) [RHEL-104570] - spi: sunplus: sp7021: Clean up coding style (Mattijs Korpershoek) [RHEL-104570] - spi: SPISG: Fix less than zero comparison on a u32 variable (Mattijs Korpershoek) [RHEL-104570] - spi: intel: Allow writeable MTD partition with module param (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: don't hardcode ECC steps (Mattijs Korpershoek) [RHEL-104570] - spi: spi-sg2044-nor: Add SPI-NOR controller for SG2042 (Mattijs Korpershoek) [RHEL-104570] - spi: spi-sg2044-nor: Add configurable chip_info (Mattijs Korpershoek) [RHEL-104570] - spi: spidev: Add an entry for the ABB spi sensors (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: trivial-devices: Document ABB sensors (Mattijs Korpershoek) [RHEL-104570] - spi: Add Amlogic SPISG driver (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: Add binding document of Amlogic SPISG controller (Mattijs Korpershoek) [RHEL-104570] - spi: gpio: Use explicit 'unsigned int' for parameter types (Mattijs Korpershoek) [RHEL-104570] - spi: stm32-ospi: Fix NULL vs IS_ERR() bug in stm32_ospi_get_resources() (Mattijs Korpershoek) [RHEL-104570] - spi: Add check for 8-bit transfer with 8 IO mode support (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: simplify bad block marker duplication (Mattijs Korpershoek) [RHEL-104570] - spi: xilinx: Fix block comment style and minor cleanups (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Convert to DEFINE_SIMPLE_DEV_PM_OPS() (Mattijs Korpershoek) [RHEL-104570] - spi: rspi: Convert to DEFINE_SIMPLE_DEV_PM_OPS() (Mattijs Korpershoek) [RHEL-104570] - spi: stm32-ospi: Use of_reserved_mem_region_to_resource() for "memory-region" (Mattijs Korpershoek) [RHEL-104570] - redhat/configs: Disable CONFIG_SPI_RZV2H_RSPI (Mattijs Korpershoek) [RHEL-104570] - spi: Add driver for the RZ/V2H(P) RSPI IP (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: Document the RZ/V2H(P) RSPI (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: add support for 8 bits ECC strength (Mattijs Korpershoek) [RHEL-104570] - mtd: nand: qpic-common: add defines for ECC_MODE values (Mattijs Korpershoek) [RHEL-104570] - spi: stm32: delete stray tabs in stm32h7_spi_data_idleness() (Mattijs Korpershoek) [RHEL-104570] - spi: stm32: fix sram pool free in probe error path (Mattijs Korpershoek) [RHEL-104570] - spi: stm32: fix pointer-to-pointer variables usage (Mattijs Korpershoek) [RHEL-104570] - spi: spi-pci1xxxx: enable concurrent DMA read/write across SPI transfers (Mattijs Korpershoek) [RHEL-104570] - spi: offload trigger: add ADI Util Sigma-Delta SPI driver (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: trigger-source: add ADI Util Sigma-Delta SPI (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Clear completion counter before initiating transfer (Mattijs Korpershoek) [RHEL-104570] - spi: spi-pci1xxxx: Add support for per-instance DMA interrupt vectors (Mattijs Korpershoek) [RHEL-104570] - spi: microchip-core-qspi: Add regular transfers (Mattijs Korpershoek) [RHEL-104570] - spi: microchip-core-qspi: remove unused param from mchp_coreqspi_write_op() (Mattijs Korpershoek) [RHEL-104570] - spi: microchip-core-qspi: set min_speed_hz during probe (Mattijs Korpershoek) [RHEL-104570] - mtd: nand: qpic_common: use {cmd,data}_sgl_nitems for sg_init_table() (Mattijs Korpershoek) [RHEL-104570] - mtd: nand: qpic_common: prevent out of bounds access of BAM arrays (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: reallocate BAM transactions (Mattijs Korpershoek) [RHEL-104570] - mtd: rawnand: qcom: finish converting register to FIELD_PREP (Mattijs Korpershoek) [RHEL-104570] - spi: falcon: mark falcon_sflash_xfer() as static (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: Check return value of devm_mutex_init() (Mattijs Korpershoek) [RHEL-104570] - spi: stm32: deprecate `st,spi-midi-ns` property (Mattijs Korpershoek) [RHEL-104570] - spi: stm32: use STM32 DMA with STM32 MDMA to enhance DDR use (Mattijs Korpershoek) [RHEL-104570] - spi: stm32: Check for cfg availability in stm32_spi_probe (Mattijs Korpershoek) [RHEL-104570] - spi: stm32: Add SPI_READY mode to spi controller (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Revert unintended dependency change in config SPI_FSL_DSPI (Mattijs Korpershoek) [RHEL-104570] - spi: tegra210-qspi: Remove cache operations (Mattijs Korpershoek) [RHEL-104570] - spi: spi-pci1xxxx: Drop MSI-X usage as unsupported by DMA engine (Mattijs Korpershoek) [RHEL-104570] - spi: stm32-ospi: clean up on error in probe() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mt65xx: Add support for MT6991 Dimensity 9400 SPI IPM (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: mediatek,spi-mt65xx: Add support for MT6991/MT8196 SPI (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: spi: add compatibles for mt7988 (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Use `devm_dma_request_chan()` (Mattijs Korpershoek) [RHEL-104570] - spi: st: Switch from CONFIG_PM_SLEEP guards to pm_sleep_ptr() (Mattijs Korpershoek) [RHEL-104570] - spi: stm32-ospi: Make usage of reset_control_acquire/release() API (Mattijs Korpershoek) [RHEL-104570] - spi: offload: check offload ops existence before disabling the trigger (Mattijs Korpershoek) [RHEL-104570] - spi: loongson: Fix build warnings about export.h (Mattijs Korpershoek) [RHEL-104570] - spi: omap2-mcspi: Disable multi-mode when the previous message kept CS asserted (Mattijs Korpershoek) [RHEL-104570] - spi: omap2-mcspi: Disable multi mode when CS should be kept asserted after message (Mattijs Korpershoek) [RHEL-104570] - spi: spi-pci1xxxx: Fix error code in probe (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Take into account the actual maximum frequency (Mattijs Korpershoek) [RHEL-104570] - mtd: spinand: Enhance the logic when picking a variant (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Use picoseconds for calculating the op durations (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: remove 'qpic_snand_op' structure (Mattijs Korpershoek) [RHEL-104570] - spi: bcm63xx-hsspi: fix shared reset (Mattijs Korpershoek) [RHEL-104570] - spi: bcm63xx-spi: fix shared reset (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: document the limited bit error reporting capability (Mattijs Korpershoek) [RHEL-104570] - spi: spi-pci1xxxx: Fix Probe failure with Dual SPI instance with INTx interrupts (Mattijs Korpershoek) [RHEL-104570] - spi: spi-pci1xxxx: Add support for 25MHz Clock frequency in C0 (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: use NANDC_STEP_SIZE consistently (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Enable support for S32G platforms (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: spi: dspi: Add S32G support (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Enable modified transfer protocol on S32G (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Reinitialize DSPI regs after resuming for S32G (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Use DMA for S32G controller in target mode (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Avoid setup_accel logic for DMA transfers (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Use spi_alloc_target for target (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Add config and regmaps for S32G platforms (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Define regmaps per device (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Re-use one volatile regmap for both device types (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Reset SR flags before sending a new message (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Halt the module after a new message transfer (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: restrict register range for regmap access (Mattijs Korpershoek) [RHEL-104570] - spi: loopback-test: fix up const pointer issue in rx_ranges_cmp() (Mattijs Korpershoek) [RHEL-104570] - spi: gpio: fix const issue in spi_to_spi_gpio() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: remove superfluous parameters of qcom_spi_check_error() (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Move register definitions to (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Document frame start sync pulse mode (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Double maximum DMA transfer size using two groups (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Simplify BRG's Division Ratio (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Increase TX FIFO size for R-Car V4H/V4M (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Correct RX FIFO size for R-Car Gen3 (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Correct RX FIFO size for R-Car Gen2 (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Add core support for dual-group transfers (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Correct SIMDR2_GRPMASK (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: SIFCTR bitfield conversion (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: SICTR bitfield conversion (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: SITSCR/SIRSCR bitfield conversion (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: SITMDR2 and SIRMDR2 bitfield conversion (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: SITMDR1/SIRMDR1 bitfield conversion (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Make words/fs unsigned in FIFO helpers (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Make words/bits unsigned in sh_msiof_spi_txrx_once() (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Use bool for boolean flags (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Complete using dev in sh_msiof_spi_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Fix maximum DMA transfer size (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Remove unneeded compatible values (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: Drop comma after OF match table sentinel (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: return early on error from qcom_spi_io_op() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: extend FIELD_PREP() macro usage (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: use CW_PER_PAGE_MASK bitmask (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: reuse qcom_spi_check_raw_flash_errors() (Mattijs Korpershoek) [RHEL-104570] - spi: tegra210-quad: Add support for internal DMA (Mattijs Korpershoek) [RHEL-104570] - spi: tegra114: Use value to check for invalid delays (Mattijs Korpershoek) [RHEL-104570] - spi: loopback-test: Simplify strange loopback value check (Mattijs Korpershoek) [RHEL-104570] - spi: loopback-test: Do not split 1024-byte hexdumps (Mattijs Korpershoek) [RHEL-104570] - spi: spi-sun4i: fix early activation (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: validate user/chip specific ECC properties (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-quadspi: Assume device could match via platform (Mattijs Korpershoek) [RHEL-104570] - spi: cs42l43: Make handling missing spk-id GPIOs explicit (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Fix printed error code during DMA setup (Mattijs Korpershoek) [RHEL-104570] - spi: axi-spi-engine: omit SYNC from offload instructions (Mattijs Korpershoek) [RHEL-104570] - spi: axi-spi-engine: optimize bits_per_word for offload (Mattijs Korpershoek) [RHEL-104570] - spi: axi-spi-engine: don't repeat mode config for offload (Mattijs Korpershoek) [RHEL-104570] - spi: axi-spi-engine: wait for completion in setup (Mattijs Korpershoek) [RHEL-104570] - spi: nxp-fspi: use devm instead of remove for driver detach (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: remove the unchecked return value for nxp_fspi_clk_disable_unprep (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: use guard(mutex) to simplify the code (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: enable runtime pm for fspi (Mattijs Korpershoek) [RHEL-104570] - spi: spi-nxp-fspi: remove the goto in probe (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: fix NAND_READ_LOCATION_2 register handling (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: remove unused 'wlen' member of 'struct qpic_spi_nand' (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Add fix to avoid divide error (Mattijs Korpershoek) [RHEL-104570] - spi: rpc-if: Add write support for memory-mapped area (Mattijs Korpershoek) [RHEL-104570] - spi: tegra114: Don't fail set_cs_timing when delays are zero (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: propagate errors from qcom_spi_block_erase() (Mattijs Korpershoek) [RHEL-104570] - spi: offload: check for match callback when a trigger is being registered (Mattijs Korpershoek) [RHEL-104570] - spi: offload: remove unnecessary check on trigger->ops (Mattijs Korpershoek) [RHEL-104570] - spi: stm32-ospi: Fix an error handling path in stm32_ospi_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: ignore driver probing if it was MSIOF Sound (Mattijs Korpershoek) [RHEL-104570] - spi: sh-msiof: use dev in sh_msiof_spi_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: dw: Use spi_bpw_to_bytes() helper (Mattijs Korpershoek) [RHEL-104570] - spi: Add spi_bpw_to_bytes() helper and use it (Mattijs Korpershoek) [RHEL-104570] - spi: pci1xxxx: Use non-hybrid PCI devres API (Mattijs Korpershoek) [RHEL-104570] - spi: spi-cavium-thunderx: Use non-hybrid PCI devres API (Mattijs Korpershoek) [RHEL-104570] - spi: spi-imx: Add check for spi_imx_setupxfer() (Mattijs Korpershoek) [RHEL-104570] - spi: tegra210-quad: Update dummy sequence configuration (Mattijs Korpershoek) [RHEL-104570] - spi: tegra210-quad: modify chip select (CS) deactivation (Mattijs Korpershoek) [RHEL-104570] - spi: tegra210-quad: remove redundant error handling code (Mattijs Korpershoek) [RHEL-104570] - spi: tegra210-quad: Fix X1_X2_X4 encoding and support x4 transfers (Mattijs Korpershoek) [RHEL-104570] - spi: meson-spicc: add DMA support (Mattijs Korpershoek) [RHEL-104570] - spi: fsl-qspi: Optimize fsl_qspi struct (Mattijs Korpershoek) [RHEL-104570] - spi: amd: add CONFIG_PCI dependency (Mattijs Korpershoek) [RHEL-104570] - spi: sun4i: add support for GPIO chip select lines (Mattijs Korpershoek) [RHEL-104570] - mtd: rawnand: qcom: Fix read len for onfi param page (Mattijs Korpershoek) [RHEL-104570] - mtd: rawnand: qcom: Fix last codeword read in qcom_param_page_type_exec() (Mattijs Korpershoek) [RHEL-104570] - mtd: rawnand: qcom: Pass 18 bit offset from NANDc base to BAM base (Mattijs Korpershoek) [RHEL-104570] - spi: fsl-qspi: Simplify probe error handling using managed API (Mattijs Korpershoek) [RHEL-104570] - spi: fsl-spi: Remove redundant probe error message (Mattijs Korpershoek) [RHEL-104570] - spi: fsl-qspi: Fix double cleanup in probe error path (Mattijs Korpershoek) [RHEL-104570] - spi: intel: Improve resource mapping (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Fix an IS_ERR() vs NULL check in probe (Mattijs Korpershoek) [RHEL-104570] - spi: xcomm: use new GPIO line value setter callbacks (Mattijs Korpershoek) [RHEL-104570] - spi: Add support for Double Transfer Rate (DTR) mode (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Add PCI-based driver for AMD HID2 SPI controller (Mattijs Korpershoek) [RHEL-104570] - spi: bcm2835: Restore native CS probing when pinctrl-bcm2835 is absent (Mattijs Korpershoek) [RHEL-104570] - spi: bcm2835: Do not call gpiod_put() on invalid descriptor (Mattijs Korpershoek) [RHEL-104570] - spi: tegra210-quad: add rate limiting and simplify timeout error message (Mattijs Korpershoek) [RHEL-104570] - spi: tegra210-quad: use WARN_ON_ONCE instead of WARN_ON for timeouts (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-qspi: revert "Improve spi memory performance" (Mattijs Korpershoek) [RHEL-104570] - spi: cadence: Fix out-of-bounds array access in cdns_mrvl_xspi_setup_clock() (Mattijs Korpershoek) [RHEL-104570] - spi: Simplify conditionals in spi_set_cs() (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Fix unbalanced pm_runtime by using devm_ API (Mattijs Korpershoek) [RHEL-104570] - spi: fsl-qspi: use devm function instead of driver remove (Mattijs Korpershoek) [RHEL-104570] - spi: SPI_QPIC_SNAND should be tristate and depend on MTD (Mattijs Korpershoek) [RHEL-104570] - spi: spi-stm32-ospi: Make "resets" a required property (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: st,stm32mp25-ospi: Make "resets" a required property (Mattijs Korpershoek) [RHEL-104570] - spi-rockchip: Fix register out of bounds access (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: use kmalloc() for OOB buffer allocation (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Introduce a default ->exec_op() debug log (Mattijs Korpershoek) [RHEL-104570] - spi: Fix reference count leak in slave_show() (Mattijs Korpershoek) [RHEL-104570] - spi: stm32-ospi: Include "gpio/consumer.h" (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mux: Fix coverity issue, unchecked return value (Mattijs Korpershoek) [RHEL-104570] - spi: sophgo: fix incorrect type for ret in sg2044_spifmc_write() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: avoid memleak in qcom_spi_ecc_init_ctx_pipelined() (Mattijs Korpershoek) [RHEL-104570] - spi: Use inclusive language (Mattijs Korpershoek) [RHEL-104570] - spi: sg2044-nor: Convert to dev_err_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: sg2044-nor: Fully convert to device managed resources (Mattijs Korpershoek) [RHEL-104570] - spi: sg2044-nor: fix uninitialized variable in probe (Mattijs Korpershoek) [RHEL-104570] - spi: stm32-ospi: Fix an IS_ERR() vs NULL bug in stm32_ospi_get_resources() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic-snand: Fix ECC_CFG_ECC_DISABLE shift in qcom_spi_read_last_cw() (Mattijs Korpershoek) [RHEL-104570] - spi: stm32: Remove unnecessary print function dev_err() (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-qspi: Improve spi memory performance (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-qspi: Fix probe on AM62A LP SK (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: spi-sg2044-nor: Change SOPHGO SG2042 (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: spi-sg2044-nor: Add SOPHGO SG2042 (Mattijs Korpershoek) [RHEL-104570] - spi: sophgo: add SG2044 SPI NOR controller driver (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: spi: add SG2044 SPI NOR controller driver (Mattijs Korpershoek) [RHEL-104570] - spi: mt65xx: add PM QoS support (Mattijs Korpershoek) [RHEL-104570] - spi: microchip-core: prevent RX overflows when transmit size > FIFO size (Mattijs Korpershoek) [RHEL-104570] - spi: spidev: Add an entry for the gocontroll moduline module slot (Mattijs Korpershoek) [RHEL-104570] - MAINTAINERS: adjust the file entry in GOCONTROLL MODULINE MODULE SLOT (Mattijs Korpershoek) [RHEL-104570] - MAINTAINERS: add maintainer for the GOcontroll Moduline module slot (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: connector: Add the GOcontroll Moduline module slot bindings (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: vendor-prefixes: add GOcontroll (Mattijs Korpershoek) [RHEL-104570] - spi: spi-imx: convert timeouts to secs_to_jiffies() (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: convert timeouts to secs_to_jiffies() (Mattijs Korpershoek) [RHEL-104570] - mtd: nand: Drop explicit test for built-in CONFIG_SPI_QPIC_SNAND (Mattijs Korpershoek) [RHEL-104570] - redhat/configs: Disable CONFIG_SPI_QPIC_SNAND (Mattijs Korpershoek) [RHEL-104570] - spi: spi-qpic: add driver for QCOM SPI NAND flash Interface (Mattijs Korpershoek) [RHEL-104570] - mtd: rawnand: qcom: Fix build issue on x86 architecture (Mattijs Korpershoek) [RHEL-104570] - mtd: rawnand: qcom: fix broken config in qcom_param_page_type_exec (Mattijs Korpershoek) [RHEL-104570] - mtd: rawnand: qcom: use FIELD_PREP and GENMASK (Mattijs Korpershoek) [RHEL-104570] - mtd: nand: Add qpic_common API file (Mattijs Korpershoek) [RHEL-104570] - mtd: rawnand: qcom: Add qcom prefix to common api (Mattijs Korpershoek) [RHEL-104570] - mtd: rawnand: qcom: cleanup qcom_nandc driver (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: Introduce qcom,spi-qpic-snand (Mattijs Korpershoek) [RHEL-104570] - spi: stm32: Add OSPI driver (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: spi: Add STM32 OSPI controller (Mattijs Korpershoek) [RHEL-104570] - spi: s3c64xx: extend description of compatible's fifo_depth (Mattijs Korpershoek) [RHEL-104570] - spi: offload: fix use after free (Mattijs Korpershoek) [RHEL-104570] - spi: fix missing offload_flags doc (Mattijs Korpershoek) [RHEL-104570] - spi: spi-offload-trigger-pwm: add extra headers (Mattijs Korpershoek) [RHEL-104570] - spi: offload: types: include linux/bits.h (Mattijs Korpershoek) [RHEL-104570] - MAINTAINERS: adjust the file entry in SPI OFFLOAD (Mattijs Korpershoek) [RHEL-104570] - spi: axi-spi-engine: implement offload support (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: axi-spi-engine: add SPI offload properties (Mattijs Korpershoek) [RHEL-104570] - spi: add offload TX/RX streaming APIs (Mattijs Korpershoek) [RHEL-104570] - spi: offload-trigger: add PWM trigger driver (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: trigger-source: add generic PWM trigger source (Mattijs Korpershoek) [RHEL-104570] - spi: offload: add support for hardware triggers (Mattijs Korpershoek) [RHEL-104570] - spi: add basic support for SPI offloading (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: remove references to runtime PM on error path (Mattijs Korpershoek) [RHEL-104570] - spi: sn-f-ospi: Fix division by zero (Mattijs Korpershoek) [RHEL-104570] - spi: gpio: Support a single always-selected device (Mattijs Korpershoek) [RHEL-104570] - spi: gpio: Remove stale documentation part (Mattijs Korpershoek) [RHEL-104570] - spi: Replace custom fsleep() implementation (Mattijs Korpershoek) [RHEL-104570] - spi: pxa2xx: Fix regression when toggling chip select on LPSS devices (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Fix warning in doc-comment (Mattijs Korpershoek) [RHEL-104570] - spi: fsi: Batch TX operations (Mattijs Korpershoek) [RHEL-104570] - spi: realtek-rtl-snand: Drop unneeded assignment for cache_type (Mattijs Korpershoek) [RHEL-104570] - spi: omap2-mcspi: Correctly handle devm_clk_get_optional() errors (Mattijs Korpershoek) [RHEL-104570] - spi: zynqmp-gqspi: Always acknowledge interrupts (Mattijs Korpershoek) [RHEL-104570] - spi: zynqmp-gqspi: Clean up fillgenfifo (Mattijs Korpershoek) [RHEL-104570] - spi: zynqmp-gqspi: Add helpers for enabling/disabling DMA (Mattijs Korpershoek) [RHEL-104570] - spi: zynqmp-gqspi: Add some more debug prints (Mattijs Korpershoek) [RHEL-104570] - spi: zynqmp-gqspi: Reformat long line (Mattijs Korpershoek) [RHEL-104570] - spi: pxa2xx: Introduce __lpss_ssp_update_priv() helper (Mattijs Korpershoek) [RHEL-104570] - spi: amd: Fix -Wuninitialized in amd_spi_exec_mem_op() (Mattijs Korpershoek) [RHEL-104570] - spi: ti-qspi: Use syscon_regmap_lookup_by_phandle_args (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Estimate the time taken by operations (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Update to current device naming terminology (Mattijs Korpershoek) [RHEL-104570] - spi: fsl-spi: Remove display of virtual address (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-quadspi: Enable SPI_TX_QUAD (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Create macros for DTR operation (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Reorder spi-mem macro assignments (Mattijs Korpershoek) [RHEL-104570] - spi: zynqmp-gqspi: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: zynq-qspi: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: spi-ti-qspi: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: spi-sn-f-ospi: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: nxp-fspi: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: mxic: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: mt65xx: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: microchip-core-qspi: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: fsl-qspi: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: dw: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-qspi: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: amlogic-spifc-a1: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: amd: Drop redundant check (Mattijs Korpershoek) [RHEL-104570] - spi: amd: Support per spi-mem operation frequency switches (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Add a new controller capability (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Extend spi-mem operations with a per-operation maximum frequency (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Use devm_ clock management (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Support sclk_x2 version (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-qspi: Memory barriers after memory-mapped I/O (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Using normal memory for dma (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Fix error in remove progress (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Factor out switching to Serial Memory Mode to function (Mattijs Korpershoek) [RHEL-104570] - spi: spidev: Align ordering of spidev_spi_ids[] and spidev_dt_ids[] (Mattijs Korpershoek) [RHEL-104570] - spi: mxs: support effective_speed_hz (Mattijs Korpershoek) [RHEL-104570] - spi: Deduplicate deferred probe checks in spi_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: Unify firmware node type checks (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Support pm ops (Mattijs Korpershoek) [RHEL-104570] - i2c: lpc2k: Add check for clk_enable() (Mattijs Korpershoek) [RHEL-104570] - spi: zynq-qspi: Add check for clk_enable() (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip: Fix PM runtime count on no-op cs (Mattijs Korpershoek) [RHEL-104570] - spi: omap2-mcspi: Fix the IS_ERR() bug for devm_clk_get_optional_enabled() (Mattijs Korpershoek) [RHEL-104570] - spi: intel: Add Panther Lake SPI controller support (Mattijs Korpershoek) [RHEL-104570] - spi: spi-cadence-qspi: Disable STIG mode for Altera SoCFPGA. (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Optimize the judgment mechanism completed by the controller (Mattijs Korpershoek) [RHEL-104570] - spi: spi-kspi2: Add KEBA SPI controller support (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Add support for sama7g5 QSPI (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Create `atmel_qspi_ops` to support newer SoC families (Mattijs Korpershoek) [RHEL-104570] - spi: mpc52xx: Add cancel_work_sync before module remove (Mattijs Korpershoek) [RHEL-104570] - spi: apple: Set use_gpio_descriptors to true (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Fix register name in verbose logging function (Mattijs Korpershoek) [RHEL-104570] - spi: Fix acpi deferred irq probe (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-quadspi: Support for device reset via OSPI controller (Mattijs Korpershoek) [RHEL-104570] - spi: cadence-quadspi: Use quirks to set dma_set_mask instead of compatible string for 64-bit DMA support (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Support ACPI (Mattijs Korpershoek) [RHEL-104570] - spi: aspeed: Fix an error handling path in aspeed_spi_[read|write]_user() (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Embedded DMA only support 4B aligned address (Mattijs Korpershoek) [RHEL-104570] - spi-imx: prevent overflow when estimating transfer time (Mattijs Korpershoek) [RHEL-104570] - spi: sc18is602: Switch to generic firmware properties and drop of_match_ptr() (Mattijs Korpershoek) [RHEL-104570] - spi: imx: support word delay (Mattijs Korpershoek) [RHEL-104570] - spi: imx: pass struct spi_transfer to prepare_transfer() (Mattijs Korpershoek) [RHEL-104570] - spi: cs42l43: Add GPIO speaker id support to the bridge configuration (Mattijs Korpershoek) [RHEL-104570] - spi: Delete useless checks (Mattijs Korpershoek) [RHEL-104570] - spi: apple: Remove unnecessary .owner for apple_spi_driver (Mattijs Korpershoek) [RHEL-104570] - spi: apple: Add driver for Apple SPI controller (Mattijs Korpershoek) [RHEL-104570] - spi: dt-bindings: apple,spi: Add binding for Apple SPI controllers (Mattijs Korpershoek) [RHEL-104570] - spi: Use of_property_present() for non-boolean properties (Mattijs Korpershoek) [RHEL-104570] - spi: axi-spi-engine: Emit trace events for spi transfers (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: rtl-snand: Correctly handle DMA transfers (Mattijs Korpershoek) [RHEL-104570] - spi: Replace deprecated PCI functions (Mattijs Korpershoek) [RHEL-104570] - spi: spidev: Add an entry for lwn,bk4-spi (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: misc: lwn,bk4-spi: Add binding (Mattijs Korpershoek) [RHEL-104570] - mtd: spinand: Constify struct nand_ecc_engine_ops (Mattijs Korpershoek) [RHEL-104570] - spi: make class structs const (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Add Realtek SPI-NAND controller (Mattijs Korpershoek) [RHEL-104570] - dt-bindings: spi: Add realtek,rtl9301-snand (Mattijs Korpershoek) [RHEL-104570] - spi: intel: Add protected and locked attributes (Mattijs Korpershoek) [RHEL-104570] - spi: spi-imx: Fix casting warnings (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-dspi: Fix casting warnings (Mattijs Korpershoek) [RHEL-104570] - spi: tegra210-quad: Avoid shift-out-of-bounds (Mattijs Korpershoek) [RHEL-104570] - spi: Provide defer reason if getting irq during probe fails (Mattijs Korpershoek) [RHEL-104570] - spi: spi-ti-qspi: remove redundant assignment to variable ret (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: support effective_speed_hz (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Fix specifiers in fsl_lpspi_set_bitrate (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Adjust type of scldiv (Mattijs Korpershoek) [RHEL-104570] - spi: mxic: Add support for swapping byte (Mattijs Korpershoek) [RHEL-104570] - spi: spi-mem: Allow specifying the byte order in Octal DTR mode (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip: Use dev_{err,warn}_probe() in the probe path (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Use dev_err_probe() in the probe path (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip-sfc: Perform trivial code cleanups (Mattijs Korpershoek) [RHEL-104570] - spi: rockchip: Perform trivial code cleanups (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Add HIDDMA basic read support (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Set controller address mode (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Add support for HID2 SPI controller (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Optimize IO operations (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Updates to set tx/rx count functions (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Replace ioread/iowrite calls (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Enable dual and quad I/O modes (Mattijs Korpershoek) [RHEL-104570] - spi: spi_amd: Sort headers alphabetically (Mattijs Korpershoek) [RHEL-104570] - spi: Switch back to struct platform_driver::remove() (Mattijs Korpershoek) [RHEL-104570] - spi: slave-mt27xx: Call clk_disable_unprepare() only once in mtk_spi_slave_probe() (Mattijs Korpershoek) [RHEL-104570] - spi: airoha: do not keep {tx,rx} dma buffer always mapped (Mattijs Korpershoek) [RHEL-104570] - spi: zynqmp-gqspi: Undo runtime PM changes at driver exit time​ (Mattijs Korpershoek) [RHEL-104570] - spi: atmel-quadspi: Add cs_hold and cs_inactive setting support (Mattijs Korpershoek) [RHEL-104570] - spi: fix typo in the comment (Mattijs Korpershoek) [RHEL-104570] - spi: spi-fsl-lpspi: Use IRQF_NO_AUTOEN flag in request_irq() (Mattijs Korpershoek) [RHEL-104570] - spi: remove {devm_}spi_alloc_master/slave() (Mattijs Korpershoek) [RHEL-104570] - spi: slave-mt27xx: switch to use spi_alloc_target() (Mattijs Korpershoek) [RHEL-104570] - spi: ch341: switch to use devm_spi_alloc_host() (Mattijs Korpershoek) [RHEL-104570] - Documentation: devres: add missing devm_acpi_dma_controller_free() helper (Mattijs Korpershoek) [RHEL-104570] - media: usb/msi2500: switch to use spi_alloc_host() (Mattijs Korpershoek) [RHEL-104570] - perf test attr: Add missing int_mist.uop_dropping event to test-stat files (Anubhav Shelat) [RHEL-78200] - perf bpf-filter: Fix opts declaration on older libbpfs (Anubhav Shelat) [RHEL-78200] - perf evsel: Ensure the fallback message is always written to (Anubhav Shelat) [RHEL-78200] - perf build-id: Ensure snprintf string is empty when size is 0 (Anubhav Shelat) [RHEL-78200] - perf drm_pmu: Fix fd_dir leaks in for_each_drm_fdinfo_in_dir() (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update tigerlake metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update skylake metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update sierraforest metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update sapphirerapids events/metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update sandybridge metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update rocketlake metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update meteorlake events/metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update lunarlake events/metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update jaketown metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update ivybridge/ivytown metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update icelake metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update haswell metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update graniterapids events/metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update grandridge metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update emeraldrapids events/metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update cascadelakex metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update broadwell metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update arrowlake events/metrics (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update alderlake events/metrics (Anubhav Shelat) [RHEL-78200] - perf parse-events: Handle fake PMUs in CPU terms (Anubhav Shelat) [RHEL-78200] - libbpf: Add the ability to suppress perf event enablement (Anubhav Shelat) [RHEL-78200] - perf maps: Ensure kmap is set up for all inserts (Anubhav Shelat) [RHEL-78200] - perf lock: Provide a host_env for session new (Anubhav Shelat) [RHEL-78200] - perf subcmd: avoid crash in exclude_cmds when excludes is empty (Anubhav Shelat) [RHEL-78200] - perf symbol-elf: Add support for the block argument for libbfd (Anubhav Shelat) [RHEL-78200] - perf test: Checking BPF metadata collection fails on version string (Anubhav Shelat) [RHEL-78200] - perf tests: Fix "PE file support" test build (Anubhav Shelat) [RHEL-78200] - perf bpf-utils: Harden get_bpf_prog_info_linear (Anubhav Shelat) [RHEL-78200] - perf bpf-utils: Constify bpil_array_desc (Anubhav Shelat) [RHEL-78200] - perf bpf-event: Fix use-after-free in synthesis (Anubhav Shelat) [RHEL-78200] - perf symbol: Add blocking argument to filename__read_build_id (Anubhav Shelat) [RHEL-78200] - perf test: Fix a build error in x86 topdown test (Anubhav Shelat) [RHEL-78200] - perf bpf-filter: Enable events manually (Anubhav Shelat) [RHEL-78200] - perf/core: Handle buffer mapping fail correctly in perf_mmap() (Anubhav Shelat) [RHEL-78200] {CVE-2025-38564} - perf/core: Exit early on perf_mmap() fail (Anubhav Shelat) [RHEL-78200] {CVE-2025-38565} - perf/core: Don't leak AUX buffer refcount on allocation failure (Anubhav Shelat) [RHEL-78200] - perf/core: Prevent VMA split of buffer mappings (Anubhav Shelat) [RHEL-78200] {CVE-2025-38563} - perf/core: Preserve AUX buffer allocation failure result (Anubhav Shelat) [RHEL-78200] - perf record: Cache build-ID of hit DSOs only (Anubhav Shelat) [RHEL-78200] - perf test: Ensure lock contention using pipe mode (Anubhav Shelat) [RHEL-78200] - perf python: Stop using deprecated PyUnicode_AsString() (Anubhav Shelat) [RHEL-78200] - RISC-V: perf/kvm: Add reporting of interrupt events (Anubhav Shelat) [RHEL-78200] - perf list: Skip ABI PMUs when printing pmu values (Anubhav Shelat) [RHEL-78200] - perf list: Remove tracepoint printing code (Anubhav Shelat) [RHEL-78200] - perf tp_pmu: Add event APIs (Anubhav Shelat) [RHEL-78200] - perf tp_pmu: Factor existing tracepoint logic to new file (Anubhav Shelat) [RHEL-78200] - perf parse-events: Remove non-json software events (Anubhav Shelat) [RHEL-78200] - perf jevents: Add common software event json (Anubhav Shelat) [RHEL-78200] - perf tools: Remove libtraceevent in .gitignore (Anubhav Shelat) [RHEL-78200] - perf test: Fix comment ordering (Anubhav Shelat) [RHEL-78200] - perf sort: Use perf_env to set arch sort keys and header (Anubhav Shelat) [RHEL-78200] - perf test: Move PERF_SAMPLE_WEIGHT_STRUCT parsing to common test (Anubhav Shelat) [RHEL-78200] - perf sample: Remove arch notion of sample parsing (Anubhav Shelat) [RHEL-78200] - perf env: Remove global perf_env (Anubhav Shelat) [RHEL-78200] - perf trace: Avoid global perf_env with evsel__env (Anubhav Shelat) [RHEL-78200] - perf auxtrace: Pass perf_env from session through to mmap read (Anubhav Shelat) [RHEL-78200] - perf machine: Explicitly pass in host perf_env (Anubhav Shelat) [RHEL-78200] - perf bench synthesize: Avoid use of global perf_env (Anubhav Shelat) [RHEL-78200] - perf top: Make perf_env locally scoped (Anubhav Shelat) [RHEL-78200] - perf session: Add host_env argument to perf_session__new (Anubhav Shelat) [RHEL-78200] - perf test: Avoid use perf_env (Anubhav Shelat) [RHEL-78200] - perf header: Clean up use of perf_env (Anubhav Shelat) [RHEL-78200] - perf evlist: Change env variable to session (Anubhav Shelat) [RHEL-78200] - perf session: Add accessor for session->header.env (Anubhav Shelat) [RHEL-78200] - perf record: Make --buildid-mmap the default (Anubhav Shelat) [RHEL-78200] - perf jitdump: Directly mark the jitdump DSO (Anubhav Shelat) [RHEL-78200] - perf dso: Move build_id to dso_id (Anubhav Shelat) [RHEL-78200] - perf build-id: Ensure struct build_id is empty before use (Anubhav Shelat) [RHEL-78200] - perf build-id: Mark DSO in sample callchains (Anubhav Shelat) [RHEL-78200] - perf build-id: Change sprintf functions to snprintf (Anubhav Shelat) [RHEL-78200] - perf build-id: Truncate to avoid overflowing the build_id data (Anubhav Shelat) [RHEL-78200] - perf build-id: Reduce size of "size" variable (Anubhav Shelat) [RHEL-78200] - perf metricgroups: Add NO_THRESHOLD_AND_NMI constraint (Anubhav Shelat) [RHEL-78200] - perf parse-events: Fix missing slots for Intel topdown metric events (Anubhav Shelat) [RHEL-78200] - perf topdown: Use attribute to see an event is a topdown metic or slots (Anubhav Shelat) [RHEL-78200] - perf parse-events: Support user CPUs mixed with threads/processes (Anubhav Shelat) [RHEL-78200] - perf evsel: Add evsel__open_per_cpu_and_thread (Anubhav Shelat) [RHEL-78200] - perf parse-events: Minor __add_event refactoring (Anubhav Shelat) [RHEL-78200] - perf pmus: Factor perf_pmus__find_by_attr out of evsel__find_pmu (Anubhav Shelat) [RHEL-78200] - perf evsel: Use libperf perf_evsel__exit (Anubhav Shelat) [RHEL-78200] - libperf evsel: Factor perf_evsel__exit out of perf_evsel__delete (Anubhav Shelat) [RHEL-78200] - libperf evsel: Rename own_cpus to pmu_cpus (Anubhav Shelat) [RHEL-78200] - perf tool_pmu: Allow num_cpus(_online) to be specific to a cpumask (Anubhav Shelat) [RHEL-78200] - perf parse-events: Allow the cpu term to be a PMU or CPU range (Anubhav Shelat) [RHEL-78200] - perf stat: Don't size aggregation ids from user_requested_cpus (Anubhav Shelat) [RHEL-78200] - perf stat: Avoid buffer overflow to the aggregation map (Anubhav Shelat) [RHEL-78200] - perf parse-events: Warn if a cpu term is unsupported by a CPU (Anubhav Shelat) [RHEL-78200] - perf pfm: Don't force loading of all PMUs (Anubhav Shelat) [RHEL-78200] - perf stat: Remove duplicated include in stat-shadow.c (Anubhav Shelat) [RHEL-78200] - perf: ftrace: add graph tracer options args/retval/retval-hex/retaddr (Anubhav Shelat) [RHEL-78200] - powerpc: Don't use %%pK through printk (Anubhav Shelat) [RHEL-78200] - perf build: Always disable stack protection for BPF skeleton objects (Anubhav Shelat) [RHEL-78200] - perf flamegraph: Fix minor pylint/type hint issues (Anubhav Shelat) [RHEL-78200] - perf ftrace latency: Add -e option to measure time between two events (Anubhav Shelat) [RHEL-78200] - perf tests bp_account: Fix leaked file descriptor (Anubhav Shelat) [RHEL-78200] - perf list: Remove trailing A in PAI crypto event 4210 (Anubhav Shelat) [RHEL-78200] - perf/x86/intel/uncore: Add iMC freerunning for Panther Lake (Anubhav Shelat) [RHEL-78200] - perf/x86/intel/uncore: Add Panther Lake support (Anubhav Shelat) [RHEL-78200] - perf/x86/intel/uncore: Support customized MMIO map size (Anubhav Shelat) [RHEL-78200] - perf/x86/intel/uncore: Support MSR portal for discovery tables (Anubhav Shelat) [RHEL-78200] - perf: arm_pmuv3: Call kvm_vcpu_pmu_resync_el0() before enabling counters (Anubhav Shelat) [RHEL-78200] - perf: arm_pmu: Don't disable counter in armpmu_add() (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update TigerLake events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update SkylakeX events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update SierraForest events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update SapphireRapids events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Add PantherLake events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update MeteorLake events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update LunarLake events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update IcelakeX events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update GraniteRapids events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update GrandRidge events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update EmeraldRapids events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update CascadelakeX events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update Arrowlake events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update AlderlakeN events (Anubhav Shelat) [RHEL-78200] - perf vendor events: Update Alderlake events (Anubhav Shelat) [RHEL-78200] - tools/build: Fix s390(x) cross-compilation with clang (Anubhav Shelat) [RHEL-78200] - perf test: Add more test cases to sched test (Anubhav Shelat) [RHEL-78200] - perf sched: Fix memory leaks in 'perf sched latency' (Anubhav Shelat) [RHEL-78200] - perf sched: Use RC_CHK_EQUAL() to compare pointers (Anubhav Shelat) [RHEL-78200] - perf sched: Fix memory leaks for evsel->priv in timehist (Anubhav Shelat) [RHEL-78200] - perf sched: Fix thread leaks in 'perf sched timehist' (Anubhav Shelat) [RHEL-78200] - perf sched: Fix memory leaks in 'perf sched map' (Anubhav Shelat) [RHEL-78200] - perf sched: Free thread->priv using priv_destructor (Anubhav Shelat) [RHEL-78200] - perf sched: Make sure it frees the usage string (Anubhav Shelat) [RHEL-78200] - perf tests make: Add NO_LIBDW=1 to minimal and add standalone test (Anubhav Shelat) [RHEL-78200] - perf header: Fix pipe mode header dumping (Anubhav Shelat) [RHEL-78200] - perf test: In forked mode add check that fds aren't leaked (Anubhav Shelat) [RHEL-78200] - perf dso: With ref count checking, avoid dso_data holding dso live (Anubhav Shelat) [RHEL-78200] - perf hwmon_pmu: Hold path rather than fd (Anubhav Shelat) [RHEL-78200] - perf test code-reading: Avoid a leak of cpus and threads (Anubhav Shelat) [RHEL-78200] - perf dso: Add missed dso__put to dso__load_kcore (Anubhav Shelat) [RHEL-78200] - perf genelf: Fix NO_LIBDW=1 build (Anubhav Shelat) [RHEL-78200] - perf list: Add IBM z17 event descriptions (Anubhav Shelat) [RHEL-78200] - perf tools: Fix use-after-free in help_unknown_cmd() (Anubhav Shelat) [RHEL-78200] - perf test: Add libsubcmd help tests (Anubhav Shelat) [RHEL-78200] - perf test: Check test suite description properly (Anubhav Shelat) [RHEL-78200] - perf test: Add sched latency and script shell tests (Anubhav Shelat) [RHEL-78200] - perf test: Name the noploop process (Anubhav Shelat) [RHEL-78200] - perf build: Specify shellcheck should use bash (Anubhav Shelat) [RHEL-78200] - perf test annotate: Use --percent-limit rather than head to reduce output (Anubhav Shelat) [RHEL-78200] - perf test: Add basic callgraph test to record testing (Anubhav Shelat) [RHEL-78200] - perf drm_pmu: Fix spelling mistake "bufers" -> "buffers" (Anubhav Shelat) [RHEL-78200] - perf test: perf header test fails on s390 (Anubhav Shelat) [RHEL-78200] - perf stat: Fix uncore aggregation number (Anubhav Shelat) [RHEL-78200] - perf build: Fix a build error on REFCNT_CHECKING=1 (Anubhav Shelat) [RHEL-78200] - tools/perf: Add --exclude-buildids option to perf archive command (Anubhav Shelat) [RHEL-78200] - perf annotate: Fix source code annotate with objdump (Anubhav Shelat) [RHEL-78200] - tools: Remove libcrypto dependency (Anubhav Shelat) [RHEL-78200] - perf genelf: Remove libcrypto dependency and use built-in sha1() (Anubhav Shelat) [RHEL-78200] - perf util: add a basic SHA-1 implementation (Anubhav Shelat) [RHEL-78200] - perf build: enable -fno-strict-aliasing (Anubhav Shelat) [RHEL-78200] - perf top: populate PMU capabilities data in perf_env (Anubhav Shelat) [RHEL-78200] - perf tools: move perf_pmus__find_core_pmu() prototype to pmus.h (Anubhav Shelat) [RHEL-78200] - perf trace: Split BPF skel code to util/bpf_trace_augment.c (Anubhav Shelat) [RHEL-78200] - perf test: Change all remaining #!/bin/sh to #!/bin/bash (Anubhav Shelat) [RHEL-78200] - perf header: Don't write empty BPF/BTF info (Anubhav Shelat) [RHEL-78200] - perf header: Display message if BPF/BTF info is empty (Anubhav Shelat) [RHEL-78200] - perf header: Allow tracing of attr events (Anubhav Shelat) [RHEL-78200] - perf header: In pipe mode dump features without --header/-I (Anubhav Shelat) [RHEL-78200] - perf tests: Add a DRM PMU test (Anubhav Shelat) [RHEL-78200] - perf drm_pmu: Add a tool like PMU to expose DRM information (Anubhav Shelat) [RHEL-78200] - perf parse-events: Avoid scanning PMUs that can't contain events (Anubhav Shelat) [RHEL-78200] - perf debug: Add function symbols to dump_stack (Anubhav Shelat) [RHEL-78200] - perf tools: Remove excess variable declarations (Anubhav Shelat) [RHEL-78200] - perf test: Replace grep perl regexp with awk (Anubhav Shelat) [RHEL-78200] - libperf evsel: Add missed puts and asserts (Anubhav Shelat) [RHEL-78200] - perf trace: Add missed freeing of ordered events and thread (Anubhav Shelat) [RHEL-78200] - perf script: Add -e option to flamegraph script (Anubhav Shelat) [RHEL-78200] - perf build: The bfd features are opt-in, stop testing for them by default (Anubhav Shelat) [RHEL-78200] - perf build: Add the libpfm devel fedora package name to the hint (Anubhav Shelat) [RHEL-78200] - perf script: Handle -i option for perf script flamegraph (Anubhav Shelat) [RHEL-78200] - perf unwind-libdw: skip non-regular files (Anubhav Shelat) [RHEL-78200] - perf trace: Show zero value in STRARRAY (Anubhav Shelat) [RHEL-78200] - perf srcline: Lower verbosity on addr2line debug messages (Anubhav Shelat) [RHEL-78200] - perf build: Suggest java-latest-openjdk-devel instead of old 1.8.0 one (Anubhav Shelat) [RHEL-78200] - perf test: add test for BPF metadata collection (Anubhav Shelat) [RHEL-78200] - perf tools: display the new PERF_RECORD_BPF_METADATA event (Anubhav Shelat) [RHEL-78200] - perf record: collect BPF metadata from new programs (Anubhav Shelat) [RHEL-78200] - perf record: collect BPF metadata from existing BPF programs (Anubhav Shelat) [RHEL-78200] - perf build: detect support for libbpf's emit_strings option (Anubhav Shelat) [RHEL-78200] - perf header: remove unecessary core id test (Anubhav Shelat) [RHEL-78200] - perf test: Add header shell test (Anubhav Shelat) [RHEL-78200] - perf parse-events: Set default GH modifier properly (Anubhav Shelat) [RHEL-78200] - perf test: Expand user space event reading (rdpmc) tests (Anubhav Shelat) [RHEL-78200] - perf vendor events arm64: Update FUJITSU-MONAKA pmu event (Anubhav Shelat) [RHEL-78200] - syscall_user_dispatch: Add PR_SYS_DISPATCH_INCLUSIVE_ON (Anubhav Shelat) [RHEL-78200] - perf thread: Ensure comm_lock held for comm_list (Anubhav Shelat) [RHEL-78200] - perf: Fix libjvmti.c sign compare error (Anubhav Shelat) [RHEL-78200] - perf script: perf script tests fails with segfault (Anubhav Shelat) [RHEL-78200] - perf test trace: Change the regex pattern in the struct test (Anubhav Shelat) [RHEL-78200] - perf test trace: Use --sort-events in BTF general tests (Anubhav Shelat) [RHEL-78200] - tools/build: Remove some unused libbpf pre-1.0 feature test logic (Anubhav Shelat) [RHEL-78200] - perf trace: Remove --map-dump documentation (Anubhav Shelat) [RHEL-78200] - perf test trace: Remove set -e for BTF general tests (Anubhav Shelat) [RHEL-78200] - perf test trace: Stop tracing hrtimer_setup event in trace enum test (Anubhav Shelat) [RHEL-78200] - perf test trace: Remove set -e and print trace test's error messages (Anubhav Shelat) [RHEL-78200] - perf test trace: Use shell's -f flag to check if vmlinux exists (Anubhav Shelat) [RHEL-78200] - perf thread_map: Remove uid options (Anubhav Shelat) [RHEL-78200] - perf target: Remove uid from target (Anubhav Shelat) [RHEL-78200] - perf bench evlist-open-close: Switch user option to use BPF filter (Anubhav Shelat) [RHEL-78200] - perf trace: Switch user option to use BPF filter (Anubhav Shelat) [RHEL-78200] - perf top: Switch user option to use BPF filter (Anubhav Shelat) [RHEL-78200] - perf tests record: Add basic uid filtering test (Anubhav Shelat) [RHEL-78200] - perf bpf-filter: Improve error messages (Anubhav Shelat) [RHEL-78200] - perf record: Switch user option to use BPF filter (Anubhav Shelat) [RHEL-78200] - perf parse-events: Add parse_uid_filter helper (Anubhav Shelat) [RHEL-78200] - perf target: Separate parse_uid into its own function (Anubhav Shelat) [RHEL-78200] - perf parse-events filter: Use evsel__find_pmu (Anubhav Shelat) [RHEL-78200] - sched/fair: Block delayed tasks on throttled hierarchy during dequeue (Luis Claudio R. Goncalves) [RHEL-69492] - selftests/mm: fix va_high_addr_switch.sh failure on x86_64 (Chunyu Hu) [RHEL-110506] - selftests/mm: alloc hugepages in va_high_addr_switch test (Chunyu Hu) [RHEL-110506] - selftests/mm: skip hugevm test if kernel config file is not present (Chunyu Hu) [RHEL-110506] - bus: mhi: host: pci_generic: Add Telit FN990B40 modem support (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: Detect events pointing to unexpected TREs (Jose Ignacio Tornos Martinez) [RHEL-122260] {CVE-2025-39790} - bus: mhi: host: pci_generic: Add Foxconn T99W696 modem (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: Use str_true_false() helper (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: pci_generic: Add support for EM929x and set MRU to 32768 for better performance. (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: Fix endianness of BHI vector table (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: pci_generic: Disable runtime PM for QDU100 (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: pci_generic: Fix the modem name of Foxconn T99W640 (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: Make local functions static (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: pci_generic: Add Telit FN920C04 modem support (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: pci_generic: Remove redundant assign resource usage (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: host: Fix conflict between power_up and SYSERR (Jose Ignacio Tornos Martinez) [RHEL-122260] - bus: mhi: ep: Update read pointer only after buffer is written (Jose Ignacio Tornos Martinez) [RHEL-122260] {CVE-2025-38429} - sched: Add some KABI padding (Phil Auld) [RHEL-114238] - scsi: ufs: ufs-qcom: Fix ESI null pointer dereference (Myron Stowe) [RHEL-120705] - scsi: ufs: ufs-qcom: Update esi_vec_mask for HW major version >= 6 (Myron Stowe) [RHEL-120705] - irqchip/msi-lib: Fix fwnode refcount in msi_lib_irq_domain_select() (Myron Stowe) [RHEL-120705] - irqchip/irq-msi-lib: Fix build with PCI disabled (Myron Stowe) [RHEL-120705] - PCI/MSI: Prevent recursive locking in pci_msix_write_tph_tag() (Myron Stowe) [RHEL-120705] - PCI/MSI: Size device MSI domain with the maximum number of vectors (Myron Stowe) [RHEL-120705] - irqchip: Drop MSI_CHIP_FLAG_SET_ACK from unsuspecting MSI drivers (Myron Stowe) [RHEL-120705] - PCI/MSI: Handle the NOMASK flag correctly for all PCI/MSI backends (Myron Stowe) [RHEL-120705] - irqchip/msi-lib: Add IRQ_DOMAIN_FLAG_FWNODE_PARENT handling (Myron Stowe) [RHEL-120705] - PCI/MSI: Remove the conditional parent [un]mask logic (Myron Stowe) [RHEL-120705] - irqchip/msi-lib: Honor the MSI_FLAG_PCI_MSI_MASK_PARENT flag (Myron Stowe) [RHEL-120705] - PCI/MSI: Check MSI_FLAG_PCI_MSI_MASK_PARENT in cond_[startup|shutdown]_parent() (Myron Stowe) [RHEL-120705] - PCI/MSI: Add startup/shutdown for per device domains (Myron Stowe) [RHEL-120705] - genirq: Add irq_chip_(startup/shutdown)_parent() (Myron Stowe) [RHEL-120705] - genirq: Remove GENERIC_IRQ_LEGACY (Myron Stowe) [RHEL-120705] - irqdomain: Add device pointer to irq_domain_info and msi_domain_info (Myron Stowe) [RHEL-120705] - irqdomain: Consolidate coding style (Myron Stowe) [RHEL-120705] - irqdomain: Fix kernel-doc and add it to Documentation (Myron Stowe) [RHEL-120705] - Documentation: irqdomain: Update it (Myron Stowe) [RHEL-120705] - Documentation: irq-domain.rst: Simple improvements (Myron Stowe) [RHEL-120705] - Documentation: irq/concepts: Minor improvements (Myron Stowe) [RHEL-120705] - Documentation: irq/concepts: Add commas and reflow (Myron Stowe) [RHEL-120705] - irqdomain: Improve kernel-docs of functions (Myron Stowe) [RHEL-120705] - irqdomain: Make struct irq_domain_info variables const (Myron Stowe) [RHEL-120705] - irqdomain: Use irq_domain_instantiate()'s return value as initializers (Myron Stowe) [RHEL-120705] - irqdomain: Drop irq_linear_revmap() (Myron Stowe) [RHEL-120705] - pinctrl: keembay: Switch to irq_find_mapping() (Myron Stowe) [RHEL-120705] - irqchip/armada-370-xp: Switch to irq_find_mapping() (Myron Stowe) [RHEL-120705] - gpu: ipu-v3: Switch to irq_find_mapping() (Myron Stowe) [RHEL-120705] - gpio: idt3243x: Switch to irq_find_mapping() (Myron Stowe) [RHEL-120705] - sh: Switch to irq_find_mapping() (Myron Stowe) [RHEL-120705] - powerpc: Switch to irq_find_mapping() (Myron Stowe) [RHEL-120705] - irqdomain: Drop irq_domain_add_*() functions (Myron Stowe) [RHEL-120705] - powerpc: Switch irq_domain_add_nomap() to use fwnode (Myron Stowe) [RHEL-120705] - thermal: Switch to irq_domain_create_linear() (Myron Stowe) [RHEL-120705] - soc: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - sh: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - powerpc: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - pinctrl: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - PCI: Switch to irq_domain_create_linear() (Myron Stowe) [RHEL-120705] - nios2: Switch to irq_domain_create_linear() (Myron Stowe) [RHEL-120705] - net: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - misc: hi6421-spmi-pmic: Switch to irq_domain_create_simple() (Myron Stowe) [RHEL-120705] - MIPS: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - mfd: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - memory: omap-gpmc: Switch to irq_domain_create_linear() (Myron Stowe) [RHEL-120705] - mailbox: qcom-ipcc: Switch to irq_domain_create_tree() (Myron Stowe) [RHEL-120705] - irqchip: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - iio: Switch to irq_domain_create_simple() (Myron Stowe) [RHEL-120705] - i2c: Switch to irq_domain_create_linear() (Myron Stowe) [RHEL-120705] - gpu: Switch to irq_domain_create_linear() (Myron Stowe) [RHEL-120705] - gpio: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - EDAC/altera: Switch to irq_domain_create_linear() (Myron Stowe) [RHEL-120705] - bus: moxtet: Switch to irq_domain_create_simple() (Myron Stowe) [RHEL-120705] - ARM: Switch to irq_domain_create_*() (Myron Stowe) [RHEL-120705] - ARC: Switch to irq_domain_create_linear() (Myron Stowe) [RHEL-120705] - irqdomain: Make irq_domain_create_hierarchy() an inline (Myron Stowe) [RHEL-120705] - irqdomain: Drop of_node_to_fwnode() (Myron Stowe) [RHEL-120705] - x86/io_apic: Switch to of_fwnode_handle() (Myron Stowe) [RHEL-120705] - powerpc: Switch to of_fwnode_handle() (Myron Stowe) [RHEL-120705] - irqchip: Switch to of_fwnode_handle() (Myron Stowe) [RHEL-120705] - PCI/MSI: Use bool for MSI enable state tracking (Myron Stowe) [RHEL-120705] - PCI: tegra: Convert to MSI parent infrastructure (Myron Stowe) [RHEL-120705] - PCI: xgene: Convert to MSI parent infrastructure (Myron Stowe) [RHEL-120705] - PCI: apple: Convert to MSI parent infrastructure (Myron Stowe) [RHEL-120705] - irqchip/msi-lib: Honour the MSI_FLAG_NO_AFFINITY flag (Myron Stowe) [RHEL-120705] - irqchip/mvebu: Convert to msi_create_parent_irq_domain() helper (Myron Stowe) [RHEL-120705] - irqchip/gic: Convert to msi_create_parent_irq_domain() helper (Myron Stowe) [RHEL-120705] - genirq/msi: Add helper for creating MSI-parent irq domains (Myron Stowe) [RHEL-120705] - irqchip: Make irq-msi-lib.h globally available (Myron Stowe) [RHEL-120705] - irqchip/gic-v3-its: Use allocation size from the prepare call (Myron Stowe) [RHEL-120705] - genirq/msi: Engage the .msi_teardown() callback on domain removal (Myron Stowe) [RHEL-120705] - genirq/msi: Move prepare() call to per-device allocation (Myron Stowe) [RHEL-120705] - irqchip/gic-v3-its: Implement .msi_teardown() callback (Myron Stowe) [RHEL-120705] - genirq/msi: Add .msi_teardown() callback as the reverse of .msi_prepare() (Myron Stowe) [RHEL-120705] - irqchip/gic-v3-its: Add support for device tree msi-map and msi-mask (Myron Stowe) [RHEL-120705] - dt-bindings: PCI: pci-ep: Add support for iommu-map and msi-map (Myron Stowe) [RHEL-120705] - irqchip/gic-v3-its: Set IRQ_DOMAIN_FLAG_MSI_IMMUTABLE for ITS (Myron Stowe) [RHEL-120705] - irqdomain: Add IRQ_DOMAIN_FLAG_MSI_IMMUTABLE and irq_domain_is_msi_immutable() (Myron Stowe) [RHEL-120705] - platform-msi: Add msi_remove_device_irq_domain() in platform_device_msi_free_irqs_all() (Myron Stowe) [RHEL-120705] - genirq/msi: Rename msi_[un]lock_descs() (Myron Stowe) [RHEL-120705] - scsi: ufs: qcom: Remove the MSI descriptor abuse (Myron Stowe) [RHEL-120705] - PCI/TPH: Replace the broken MSI-X control word update (Myron Stowe) [RHEL-120705] - PCI/MSI: Provide a sane mechanism for TPH (Myron Stowe) [RHEL-120705] - PCI: hv: Switch MSI descriptor locking to guard() (Myron Stowe) [RHEL-120705] - PCI/MSI: Switch msix_capability_init() to guard(msi_desc_lock) (Myron Stowe) [RHEL-120705] - PCI/MSI: Switch msi_capability_init() to guard(msi_desc_lock) (Myron Stowe) [RHEL-120705] - PCI/MSI: Use __free() for affinity masks (Myron Stowe) [RHEL-120705] - PCI/MSI: Set pci_dev:: Msi_enabled late (Myron Stowe) [RHEL-120705] - PCI/MSI: Use guard(msi_desc_lock) where applicable (Myron Stowe) [RHEL-120705] - NTB/msi: Switch MSI descriptor locking to lock guard() (Myron Stowe) [RHEL-120705] - soc: ti: ti_sci_inta_msi: Switch MSI descriptor locking to guard() (Myron Stowe) [RHEL-120705] - genirq/msi: Use lock guards for MSI descriptor locking (Myron Stowe) [RHEL-120705] - cleanup: Provide retain_and_null_ptr() (Myron Stowe) [RHEL-120705] - irqdomain: Support three-cell scheme interrupts (Myron Stowe) [RHEL-120705] - genirq/migration: Use irqd_get_parent_data() in irq_force_complete_move() (Myron Stowe) [RHEL-120705] - irqdomain: Stop using 'host' for domain (Myron Stowe) [RHEL-120705] - irqdomain: Rename irq_get_default_host() to irq_get_default_domain() (Myron Stowe) [RHEL-120705] - irqdomain: Rename irq_set_default_host() to irq_set_default_domain() (Myron Stowe) [RHEL-120705] - PCI/MSI: Convert pci_msi_ignore_mask to per MSI domain flag (Myron Stowe) [RHEL-120705] - genirq: Make a few functions static (Myron Stowe) [RHEL-120705] - irqdomain: Remove extern from function declarations (Myron Stowe) [RHEL-120705] - irqchip/davinci-cp-intc: Remove public header (Myron Stowe) [RHEL-120705] - irqdomain: i2c: Switch to irq_find_mapping() (Myron Stowe) [RHEL-120705] - genirq: Introduce irq_can_move_in_process_context() (Myron Stowe) [RHEL-120705] - genirq: Introduce common irq_force_complete_move() implementation (Myron Stowe) [RHEL-120705] - irqchip/riscv-imsic: Move to common MSI library (Myron Stowe) [RHEL-120705] - irqchip/irq-msi-lib: Optionally set default irq_eoi()/irq_ack() (Myron Stowe) [RHEL-120705] - irqchip/riscv-imsic: Set irq_set_affinity() for IMSIC base (Myron Stowe) [RHEL-120705] - net: clear sk->sk_ino in sk_set_socket(sk, NULL) (Paolo Abeni) [RHEL-115597] - net: lockless sock_i_ino() (Paolo Abeni) [RHEL-115597] - net_sched: gen_estimator: fix est_timer() vs CONFIG_PREEMPT_RT=y (Paolo Abeni) [RHEL-115597] - netpoll: prevent hanging NAPI when netcons gets enabled (Paolo Abeni) [RHEL-115597] - net: netmem: fix skb_ensure_writable with unreadable skbs (Paolo Abeni) [RHEL-115597] - net: Fix TOCTOU issue in sk_is_readable() (Paolo Abeni) [RHEL-115597] - Fix sock_exceed_buf_limit not being triggered in __sk_mem_raise_allocated (Paolo Abeni) [RHEL-115597] - netdev: avoid CFI problems with sock priv helpers (Paolo Abeni) [RHEL-115597] - net: don't dump Tx and uninitialized NAPIs (Paolo Abeni) [RHEL-115597] - Documentation: Fix description format for powerpc RTAS ioctls (Mamatha Inamdar) [RHEL-101977] - powerpc/pseries: Include linux/types.h in papr-platform-dump.h (Mamatha Inamdar) [RHEL-101977] - powerpc/pseries: Add a char driver for physical-attestation RTAS (Mamatha Inamdar) [RHEL-101977] - powerpc/pseries: Add papr-platform-dump character driver for dump retrieval (Mamatha Inamdar) [RHEL-101977] - powerpc/pseries: Add ibm,get-dynamic-sensor-state RTAS call support (Mamatha Inamdar) [RHEL-101977] - powerpc/pseries: Add ibm,set-dynamic-indicator RTAS call support (Mamatha Inamdar) [RHEL-101977] - powerpc/pseries: Add papr-indices char driver for ibm,get-indices (Mamatha Inamdar) [RHEL-101977] - powerpc/pseries: Define papr_indices_io_block for papr-indices ioctls (Mamatha Inamdar) [RHEL-101977] - powerpc/pseries: Define common functions for RTAS sequence calls (Mamatha Inamdar) [RHEL-101977] - ice: fix NULL access of tx->in_use in ice_ll_ts_intr (Petr Oros) [RHEL-113042] - ice: fix NULL access of tx->in_use in ice_ptp_ts_irq (Petr Oros) [RHEL-113042] - redhat/configs: Enable CONFIG_CRASH_DM_CRYPT on RHEL (Coiby Xu) [RHEL-29040] - s390: kexec: initialize kexec_buf struct (Coiby Xu) [RHEL-29040] - arm64: kexec: initialize kexec_buf struct in load_other_segments() (Coiby Xu) [RHEL-29040] - crashdump: add CONFIG_KEYS dependency (Coiby Xu) [RHEL-29040] - crash_dump, nvme: select CONFIGFS_FS as built-in (Coiby Xu) [RHEL-29040] - x86/crash: make the page that stores the dm crypt keys inaccessible (Coiby Xu) [RHEL-29040] - x86/crash: pass dm crypt keys to kdump kernel (Coiby Xu) [RHEL-29040] - crash_dump: retrieve dm crypt keys in kdump kernel (Coiby Xu) [RHEL-29040] - crash_dump: reuse saved dm crypt keys for CPU/memory hot-plugging (Coiby Xu) [RHEL-29040] - crash_dump: store dm crypt keys in kdump reserved memory (Coiby Xu) [RHEL-29040] - crash_dump: make dm crypt keys persist for the kdump kernel (Coiby Xu) [RHEL-29040] - kexec_file: allow to place kexec_buf randomly (Coiby Xu) [RHEL-29040] - vrf: Drop existing dst reference in vrf_ip6_input_dst (Antoine Tenart) [RHEL-115588] - redhat/kernel.spec: make python3-perf glob more specific (Jan Stancek) [RHEL-119658] - net/packet: fix a race in packet_set_ring() and packet_notifier() (Davide Caratti) [RHEL-115601] - af_packet: fix soft lockup issue caused by tpacket_snd() (Davide Caratti) [RHEL-115601] - af_packet: fix the SO_SNDTIMEO constraint not effective on tpacked_snd() (Davide Caratti) [RHEL-115601] - net: vlan: fix VLAN 0 refcount imbalance of toggling filtering during runtime (Davide Caratti) [RHEL-115601] - net: loopback: Avoid sending IP packets without an Ethernet header (Davide Caratti) [RHEL-115601] - xfrm: xfrm_alloc_spi shouldn't use 0 as SPI (Sabrina Dubroca) [RHEL-115581] - xfrm: Duplicate SPI Handling (Sabrina Dubroca) [RHEL-115581] - xfrm: Skip redundant statistics update for crypto offload (Sabrina Dubroca) [RHEL-115581] - xfrm: use kfree_sensitive() for SA secret zeroization (Sabrina Dubroca) [RHEL-115581] - espintcp: remove encap socket caching to avoid reference leak (Sabrina Dubroca) [RHEL-115581] - espintcp: fix skb leaks (Sabrina Dubroca) [RHEL-115581] - xfrm: Use nested-BH locking for nat_keepalive_sk_ipv[46] (Sabrina Dubroca) [RHEL-115581] - tracing: Silence warning when chunk allocation fails in trace_pid_write (Jerome Marchand) [RHEL-115358] {CVE-2025-39914} - trace/fgraph: Fix error handling (Jerome Marchand) [RHEL-115358] - ftrace: Also allocate and copy hash for reading of filter files (Jerome Marchand) [RHEL-115358] {CVE-2025-39689} - ftrace: Fix potential warning in trace_printk_seq during ftrace_dump (Jerome Marchand) [RHEL-115358] {CVE-2025-39813} - tracing: Fix tracing_marker may trigger page fault during preempt_disable (Jerome Marchand) [RHEL-115358] - trace/fgraph: Fix the warning caused by missing unregister notifier (Jerome Marchand) [RHEL-115358] {CVE-2025-39829} - tracing: fprobe-event: Sanitize wildcard for fprobe event name (Jerome Marchand) [RHEL-115358] - tracing: Limit access to parser->buffer when trace_get_user failed (Jerome Marchand) [RHEL-115358] {CVE-2025-39683} - tracing: Remove unneeded goto out logic (Jerome Marchand) [RHEL-115358] - tracing: Add down_write(trace_event_sem) when adding trace event (Jerome Marchand) [RHEL-115358] {CVE-2025-38539} - tracing/osnoise: Fix crash in timerlat_dump_stack() (Jerome Marchand) [RHEL-115358] {CVE-2025-38493} - tracing/probes: Avoid using params uninitialized in parse_btf_arg() (Jerome Marchand) [RHEL-115358] - ring-buffer: Remove ring_buffer_read_prepare_sync() (Jerome Marchand) [RHEL-115358] - kernel: trace: preemptirq_delay_test: use offstack cpu mask (Jerome Marchand) [RHEL-115358] - tracefs: Add d_delete to remove negative dentries (Jerome Marchand) [RHEL-115358] - ring-buffer: Fix buffer locking in ring_buffer_subbuf_order_set() (Jerome Marchand) [RHEL-115358] {CVE-2025-38101} - ftrace: Fix UAF when lookup kallsym after ftrace disabled (Jerome Marchand) [RHEL-115358] {CVE-2025-38346} - ring-buffer: Do not trigger WARN_ON() due to a commit_overrun (Jerome Marchand) [RHEL-115358] {CVE-2025-38267} - ring-buffer: Move cpus_read_lock() outside of buffer->mutex (Jerome Marchand) [RHEL-115358] - tracing: Fix compilation warning on arm32 (Jerome Marchand) [RHEL-115358] - ring-buffer: Fix persistent buffer when commit page is the reader page (Jerome Marchand) [RHEL-115358] - ftrace: Fix preemption accounting for stacktrace filter command (Jerome Marchand) [RHEL-115358] - ftrace: Fix preemption accounting for stacktrace trigger command (Jerome Marchand) [RHEL-115358] - tracing: probes: Fix a possible race in trace_probe_log APIs (Jerome Marchand) [RHEL-115358] - tracing: samples: Initialize trace_array_printk() with the correct function (Jerome Marchand) [RHEL-115358] - tracing: Fix error handling in event_trigger_parse() (Jerome Marchand) [RHEL-115358] - tracing: Rename event_trigger_alloc() to trigger_data_alloc() (Jerome Marchand) [RHEL-115358] - tracing: Do not take trace_event_sem in print_event_fields() (Jerome Marchand) [RHEL-115358] - tracing: Fix oob write in trace_seq_to_buffer() (Jerome Marchand) [RHEL-115358] {CVE-2025-37923} - tracing: Fix filter string testing (Jerome Marchand) [RHEL-115358] - ftrace: fix incorrect hash size in register_ftrace_direct() (Jerome Marchand) [RHEL-115358] - ftrace: Properly merge notrace hashes (Jerome Marchand) [RHEL-115358] - tracing: Do not add length to print format in synthetic events (Jerome Marchand) [RHEL-115358] - tracing: Move histogram trigger variables from stack to per CPU structure (Jerome Marchand) [RHEL-115358] - tracing: Constify struct event_trigger_ops (Jerome Marchand) [RHEL-115358] - ring-buffer: Use flush_kernel_vmap_range() over flush_dcache_folio() (Jerome Marchand) [RHEL-115358] - ftrace: Add cond_resched() to ftrace_graph_set_hash() (Jerome Marchand) [RHEL-115358] {CVE-2025-37940} - tracing: Verify event formats that have "%%*p.." (Jerome Marchand) [RHEL-115358] {CVE-2025-37938} - tracing: Add __print_dynamic_array() helper (Jerome Marchand) [RHEL-115358] - tracing: probe-events: Add comments about entry data storing code (Jerome Marchand) [RHEL-115358] - tracing: Fix synth event printk format for str fields (Jerome Marchand) [RHEL-115358] - tracing: Do not use PERF enums when perf is not defined (Jerome Marchand) [RHEL-115358] - tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER (Jerome Marchand) [RHEL-115358] - tracing/osnoise: Fix possible recursive locking for cpus_read_lock() (Jerome Marchand) [RHEL-115358] - tracing: Fix use-after-free in print_graph_function_flags during tracer switching (Jerome Marchand) [RHEL-115358] {CVE-2025-22035} - tracing: Ensure module defining synth event cannot be unloaded while tracing (Jerome Marchand) [RHEL-115358] - tracing: Correct the refcount if the hist/hist_debug file fails to open (Jerome Marchand) [RHEL-115358] - ring-buffer: Fix bytes_dropped calculation issue (Jerome Marchand) [RHEL-115358] - tracing/hist: Support POLLPRI event for poll on histogram (Jerome Marchand) [RHEL-115358] - tracing/hist: Add poll(POLLIN) support on hist file (Jerome Marchand) [RHEL-115358] - tracing: Switch trace_events_hist.c code over to use guard() (Jerome Marchand) [RHEL-115358] - redhat: use the same cert as UKI's to sign addons (Li Tian) [RHEL-124088] - blk-mq: fix blk_mq_tags double free while nr_requests grown (Ming Lei) [RHEL-118047] - smp: Fix up and expand the smp_call_function_many() kerneldoc (Waiman Long) [RHEL-121178] - smp: Fix spelling in on_each_cpu_cond_mask()'s doc-comment (Waiman Long) [RHEL-121178] - smp: Document preemption and stop_machine() mutual exclusion (Waiman Long) [RHEL-121178] - smp: Wait only if work was enqueued (Waiman Long) [RHEL-121178] - smp: Defer check for local execution in smp_call_function_many_cond() (Waiman Long) [RHEL-121178] - smp: Use cpumask_any_but() in smp_call_function_many_cond() (Waiman Long) [RHEL-121178] - smp: Improve locality in smp_call_function_any() (Waiman Long) [RHEL-121178] - smp/scf: Evaluate local cond_func() before IPI side-effects (Waiman Long) [RHEL-121178] - selftests: fib_nexthops: Add test cases for FDB status change (Guillaume Nault) [RHEL-115577] - selftests: fib_nexthops: Fix creation of non-FDB nexthops (Guillaume Nault) [RHEL-115577] - nexthop: Forbid FDB status change while nexthop is in a group (Guillaume Nault) [RHEL-115577] - ipv4: Fix NULL vs error pointer check in inet_blackhole_dev_init() (Guillaume Nault) [RHEL-115577] - inet: ping: check sock_net() in ping_get_port() and ping_lookup() (Guillaume Nault) [RHEL-115577] - ipv4: Switch inet_addr_hash() to less predictable hash. (Guillaume Nault) [RHEL-115577] - vxlan: Fix NPD in {arp,neigh}_reduce() when using nexthop objects (Guillaume Nault) [RHEL-115591] - vxlan: Fix NPD when refreshing an FDB entry with a nexthop object (Guillaume Nault) [RHEL-115591] - vxlan: vnifilter: Fix unlocked deletion of default FDB entry (Guillaume Nault) [RHEL-115591] - vxlan: Add RCU read-side critical sections in the Tx path (Guillaume Nault) [RHEL-115591] - i2c: tegra: Use internal reset when reset property is not available (Charles Mirabile) [RHEL-113178] - i2c: tegra: Fix reset error handling with ACPI (Charles Mirabile) [RHEL-113178] - selftests: bonding: add fail_over_mac testing (CKI Backport Bot) [RHEL-115579] - bonding: set random address only when slaves already exist (CKI Backport Bot) [RHEL-115579] - bonding: don't force LACPDU tx to ~333 ms boundaries (CKI Backport Bot) [RHEL-115579] - sched: restore the behavior of put_task_struct() for non-rt (Luis Claudio R. Goncalves) [RHEL-73310] - sched: Do not call __put_task_struct() on rt if pi_blocked_on is set (Luis Claudio R. Goncalves) [RHEL-73310] - nbd: restrict sockets to TCP and UDP (Ming Lei) [RHEL-121713] - loop: fix backing file reference leak on validation error (Ming Lei) [RHEL-118049] - brd: use page reference to protect page lifetime (Ming Lei) [RHEL-116171] - sched_ext: idle: Handle migration-disabled tasks in BPF code (Phil Auld) [RHEL-111810] - sched_ext, sched/core: Fix build failure when !FAIR_GROUP_SCHED && EXT_GROUP_SCHED (Phil Auld) [RHEL-111810] - Revert "sched_ext: Skip per-CPU tasks in scx_bpf_reenqueue_local()" (Phil Auld) [RHEL-111810] - selftests/sched_ext: Remove duplicate sched.h header (Phil Auld) [RHEL-111810] - sched/ext: Fix invalid task state transitions on class switch (Phil Auld) [RHEL-111810] {CVE-2025-39780} - sched_ext: idle: Handle migration-disabled tasks in idle selection (Phil Auld) [RHEL-111810] - sched_ext: Fix scx_bpf_reenqueue_local() reference (Phil Auld) [RHEL-111810] - sched/ext: Prevent update_locked_rq() calls with NULL rq (Phil Auld) [RHEL-111810] {CVE-2025-38522} - sched_ext: Drop kfuncs marked for removal in 6.15 (Phil Auld) [RHEL-111810] - sched_ext, rcu: Eject BPF scheduler on RCU CPU stall panic (Phil Auld) [RHEL-111810] - kernel/sched/ext.c: fix typo "occured" -> "occurred" in comments (Phil Auld) [RHEL-111810] - sched_ext, sched/core: Factor out struct scx_task_group (Phil Auld) [RHEL-111810] - sched_ext, sched/core: Don't call scx_group_set_weight() prematurely from sched_create_group() (Phil Auld) [RHEL-111810] - sched_ext: Make scx_group_set_weight() always update tg->scx.weight (Phil Auld) [RHEL-111810] - sched_ext: Return NULL in llc_span (Phil Auld) [RHEL-111810] - sched_ext: Always use SMP versions in kernel/sched/ext_idle.h (Phil Auld) [RHEL-111810] - sched_ext: Always use SMP versions in kernel/sched/ext_idle.c (Phil Auld) [RHEL-111810] - sched_ext: Always use SMP versions in kernel/sched/ext.h (Phil Auld) [RHEL-111810] - sched_ext: Always use SMP versions in kernel/sched/ext.c (Phil Auld) [RHEL-111810] - sched_ext: Make scx_locked_rq() inline (Phil Auld) [RHEL-111810] - sched_ext: Make scx_rq_bypassing() inline (Phil Auld) [RHEL-111810] - sched_ext: idle: Make local functions static in ext_idle.c (Phil Auld) [RHEL-111810] - sched_ext: idle: Remove unnecessary ifdef in scx_bpf_cpu_node() (Phil Auld) [RHEL-111810] - sched_ext: idle: Skip cross-node search with !CONFIG_NUMA (Phil Auld) [RHEL-111810] - sched_ext: idle: Properly handle invalid prev_cpu during idle selection (Phil Auld) [RHEL-111810] - sched_ext: Call ops.update_idle() after updating builtin idle bits (Phil Auld) [RHEL-111810] - selftests/sched_ext: Update test enq_select_cpu_fails (Phil Auld) [RHEL-111810] - sched_ext: idle: Consolidate default idle CPU selection kfuncs (Phil Auld) [RHEL-111810] - selftests/sched_ext: Add test for scx_bpf_select_cpu_and() via test_run (Phil Auld) [RHEL-111810] - sched_ext: idle: Allow scx_bpf_select_cpu_and() from unlocked context (Phil Auld) [RHEL-111810] - sched_ext: idle: Validate locking correctness in scx_bpf_select_cpu_and() (Phil Auld) [RHEL-111810] - sched_ext: Make scx_kf_allowed_if_unlocked() available outside ext.c (Phil Auld) [RHEL-111810] - sched_ext: Explain the temporary situation around scx_root dereferences (Phil Auld) [RHEL-111810] - sched_ext: Add @sch to SCX_CALL_OP*() (Phil Auld) [RHEL-111810] - sched_ext: Cleanup [__]scx_exit/error*() (Phil Auld) [RHEL-111810] - sched_ext: Add @sch to SCX_CALL_OP*() (Phil Auld) [RHEL-111810] - sched_ext: Clean up scx_root usages (Phil Auld) [RHEL-111810] - sched_ext: Avoid NULL scx_root deref in __scx_exit() (Phil Auld) [RHEL-111810] - sched_ext: Add RCU protection to scx_root in DSQ iterator (Phil Auld) [RHEL-111810] - sched_ext: Clean up SCX_EXIT_NONE handling in scx_disable_workfn() (Phil Auld) [RHEL-111810] - sched_ext: Move disable machinery into scx_sched (Phil Auld) [RHEL-111810] - sched_ext: Move event_stats_cpu into scx_sched (Phil Auld) [RHEL-111810] - sched_ext: Factor out scx_read_events() (Phil Auld) [RHEL-111810] - sched_ext: Relocate scx_event_stats definition (Phil Auld) [RHEL-111810] - sched_ext: Move global_dsqs into scx_sched (Phil Auld) [RHEL-111810] - sched_ext: Move dsq_hash into scx_sched (Phil Auld) [RHEL-111810] - sched_ext: Factor out scx_alloc_and_add_sched() (Phil Auld) [RHEL-111810] - sched_ext: Inline create_dsq() into scx_bpf_create_dsq() (Phil Auld) [RHEL-111810] - sched_ext: Use dynamic allocation for scx_sched (Phil Auld) [RHEL-111810] - sched_ext: Avoid NULL scx_root deref through SCX_HAS_OP() (Phil Auld) [RHEL-111810] - sched_ext: Introduce scx_sched (Phil Auld) [RHEL-111810] - sched_ext: Fix rq lock state in hotplug ops (Phil Auld) [RHEL-111810] - sched_ext: Remove duplicate BTF_ID_FLAGS definitions (Phil Auld) [RHEL-111810] - sched_ext: Clarify CPU context for running/stopping callbacks (Phil Auld) [RHEL-111810] - sched_ext: Fix missing rq lock in scx_bpf_cpuperf_set() (Phil Auld) [RHEL-111810] - sched_ext: Track currently locked rq (Phil Auld) [RHEL-111810] - sched_ext: add helper for refill task with default slice (Phil Auld) [RHEL-111810] - sched_ext: change the variable name for slice refill event (Phil Auld) [RHEL-111810] - sched_ext: Improve cross-compilation support in Makefile (Phil Auld) [RHEL-111810] - sched_ext: Make scx_has_op a bitmap (Phil Auld) [RHEL-111810] - sched_ext: Remove scx_ops_allow_queued_wakeup static_key (Phil Auld) [RHEL-111810] - sched_ext: Remove scx_ops_cpu_preempt static_key (Phil Auld) [RHEL-111810] - sched_ext: Remove scx_ops_enq_* static_keys (Phil Auld) [RHEL-111810] - sched_ext: Indentation updates (Phil Auld) [RHEL-111810] - sched_ext: Mark SCX_OPS_HAS_CGROUP_WEIGHT for deprecation (Phil Auld) [RHEL-111810] - sched_ext: Remove cpu.weight / cpu.idle unimplemented warnings (Phil Auld) [RHEL-111810] - sched_ext: Use kvzalloc for large exit_dump allocation (Phil Auld) [RHEL-111810] - selftests/sched_ext: Add test for scx_bpf_select_cpu_and() (Phil Auld) [RHEL-111810] - sched_ext: idle: Introduce scx_bpf_select_cpu_and() (Phil Auld) [RHEL-111810] - sched_ext: idle: Accept an arbitrary cpumask in scx_select_cpu_dfl() (Phil Auld) [RHEL-111810] - sched_ext: idle: Explicitly pass allowed cpumask to scx_select_cpu_dfl() (Phil Auld) [RHEL-111810] - sched_ext: idle: Extend topology optimizations to all tasks (Phil Auld) [RHEL-111810] - sched_ext: Drop "ops" from SCX_OPS_TASK_ITER_BATCH (Phil Auld) [RHEL-111810] - sched_ext: Drop "ops" from scx_ops_{init|exit|enable|disable}[_task]() and friends (Phil Auld) [RHEL-111810] - sched_ext: Drop "ops" from scx_ops_exit(), scx_ops_error() and friends (Phil Auld) [RHEL-111810] - sched_ext: Drop "ops" from scx_ops_bypass(), scx_ops_breather() and friends (Phil Auld) [RHEL-111810] - sched_ext: Drop "ops" from scx_ops_helper, scx_ops_enable_mutex and __scx_ops_enabled (Phil Auld) [RHEL-111810] - sched_ext: Drop "ops" from scx_ops_enable_state and friends (Phil Auld) [RHEL-111810] - tools/sched_ext: Sync with scx repo (Phil Auld) [RHEL-111810] - sched_ext: initialize built-in idle state before ops.init() (Phil Auld) [RHEL-111810] - sched_ext: create_dsq: Return -EEXIST on duplicate request (Phil Auld) [RHEL-111810] - sched_ext: Remove a meaningless conditional goto in scx_select_cpu_dfl() (Phil Auld) [RHEL-111810] - sched_ext: idle: Fix return code of scx_select_cpu_dfl() (Phil Auld) [RHEL-111810] - sched/debug: Remove CONFIG_SCHED_DEBUG from self-test config files (Phil Auld) [RHEL-111810] - sched_ext: idle: Refactor scx_select_cpu_dfl() (Phil Auld) [RHEL-111810] - sched_ext: idle: Honor idle flags in the built-in idle selection policy (Phil Auld) [RHEL-111810] - sched_ext: Skip per-CPU tasks in scx_bpf_reenqueue_local() (Phil Auld) [RHEL-111810] - sched_ext: Add trace point to track sched_ext core events (Phil Auld) [RHEL-111810] - sched_ext: Change the event type from u64 to s64 (Phil Auld) [RHEL-111810] - sched_ext: Validate prev_cpu in scx_bpf_select_cpu_dfl() (Phil Auld) [RHEL-111810] {CVE-2025-21965} - tools/sched_ext: Provide a compatible helper for scx_bpf_events() (Phil Auld) [RHEL-111810] - selftests/sched_ext: Add NUMA-aware scheduler test (Phil Auld) [RHEL-111810] - tools/sched_ext: Provide consistent access to scx flags (Phil Auld) [RHEL-111810] - sched_ext: idle: Fix scx_bpf_pick_any_cpu_node() behavior (Phil Auld) [RHEL-111810] - nodemask: numa: reorganize inclusion path (Phil Auld) [RHEL-111810] - sched_ext: idle: Introduce scx_bpf_nr_node_ids() (Phil Auld) [RHEL-111810] - sched_ext: idle: Introduce node-aware idle cpu kfunc helpers (Phil Auld) [RHEL-111810] - sched_ext: idle: Per-node idle cpumasks (Phil Auld) [RHEL-111810] - sched_ext: idle: Introduce SCX_OPS_BUILTIN_IDLE_PER_NODE (Phil Auld) [RHEL-111810] - sched_ext: idle: Make idle static keys private (Phil Auld) [RHEL-111810] - sched/topology: Introduce for_each_node_numadist() iterator (Phil Auld) [RHEL-111810] - mm/numa: Introduce nearest_node_nodemask() (Phil Auld) [RHEL-111810] - nodemask: add nodes_copy() (Phil Auld) [RHEL-111810] - tools/sched_ext: Sync with scx repo (Phil Auld) [RHEL-111810] - sched_ext: Provides a sysfs 'events' to expose core event counters (Phil Auld) [RHEL-111810] - sched_ext: Implement SCX_OPS_ALLOW_QUEUED_WAKEUP (Phil Auld) [RHEL-111810] - tools/sched_ext: Update enum_defs.autogen.h (Phil Auld) [RHEL-111810] - sched_ext: Take NUMA node into account when allocating per-CPU cpumasks (Phil Auld) [RHEL-111810] - tools/sched_ext: Compatible testing of SCX_ENQ_CPU_SELECTED (Phil Auld) [RHEL-111810] - sched_ext: Add SCX_EV_ENQ_SKIP_MIGRATION_DISABLED (Phil Auld) [RHEL-111810] - sched_ext: Count SCX_EV_DISPATCH_LOCAL_DSQ_OFFLINE in the right spot (Phil Auld) [RHEL-111810] - tool/sched_ext: Event counter dumping updates (Phil Auld) [RHEL-111810] - sched_ext: Print an event, SCX_EV_ENQ_SLICE_DFL, in scx_qmap/central (Phil Auld) [RHEL-111810] - sched_ext: Add an event, SCX_EV_ENQ_SLICE_DFL (Phil Auld) [RHEL-111810] - sched_ext: Print core event count in scx_qmap scheduler (Phil Auld) [RHEL-111810] - sched_ext: Print core event count in scx_central scheduler (Phil Auld) [RHEL-111810] - sched_ext: Add scx_bpf_events() and scx_read_event() for BPF schedulers (Phil Auld) [RHEL-111810] - sched_ext: Add an event, SCX_EV_BYPASS_DURATION (Phil Auld) [RHEL-111810] - sched_ext: Add an event, SCX_EV_BYPASS_DISPATCH (Phil Auld) [RHEL-111810] - sched_ext: Add an event, SCX_EV_BYPASS_ACTIVATE (Phil Auld) [RHEL-111810] - sched_ext: Add an event, SCX_EV_ENQ_SKIP_EXITING (Phil Auld) [RHEL-111810] - sched_ext: Add an event, SCX_EV_DISPATCH_KEEP_LAST (Phil Auld) [RHEL-111810] - sched_ext: Add an event, SCX_EV_DISPATCH_LOCAL_DSQ_OFFLINE (Phil Auld) [RHEL-111810] - sched_ext: Add an event, SCX_EV_SELECT_CPU_FALLBACK (Phil Auld) [RHEL-111810] - sched_ext: Implement event counter infrastructure (Phil Auld) [RHEL-111810] - sched_ext: Move built-in idle CPU selection policy to a separate file (Phil Auld) [RHEL-111810] - uki-virt: add systemd-repart module (Emanuele Giuseppe Esposito) [RHEL-107274] - io_uring/kbuf: always use READ_ONCE() to read ring provided buffer lengths (Jeff Moyer) [RHEL-116130] - io_uring/kbuf: fix signedness in this_len calculation (Jeff Moyer) [RHEL-116130] - cgroup/psi: Set of->priv to NULL upon file release (CKI Backport Bot) [RHEL-119145] {CVE-2025-39881} - kernfs: Fix UAF in polling when open file is released (CKI Backport Bot) [RHEL-119145] {CVE-2025-39881} - firmware: qcom: scm: preserve assign_mem() error return value (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: request the waitqueue irq *after* initializing SCM (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: initialize tzmem before marking SCM as available (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: take struct device as argument in SHM bridge enable (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: remove unused arguments from SHM bridge routines (Eric Chanudet) [RHEL-117514] - docs: firmware: qcom_scm: Fix kernel-doc warning (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM for HP EliteBook Ultra G1q (Eric Chanudet) [RHEL-117514] - firmware: qcom: tzmem: disable sm7150 platform (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM on Asus Zenbook A14 (Eric Chanudet) [RHEL-117514] - firmware: qcom: uefisecapp: fix efivars registration race (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Fix error code in probe() (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: add calls for wrapped key support (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: smc: Narrow 'mempool' variable scope (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: smc: Handle missing SCM device (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Cleanup global '__scm' on probe failures (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Fix missing read barrier in qcom_scm_get_tzmem_pool() (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Fix missing read barrier in qcom_scm_is_available() (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM on Huawei Matebook E Go (sc8280xp) (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM for Windows Dev Kit 2023 (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM for HP Omnibook X14 (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM on the asus vivobook s15 (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM on X1P42100 CRD (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Introduce CP_SMMU_APERTURE_ID (Eric Chanudet) [RHEL-117514] - firmware: qcom: uefisecapp: Allow X1E Devkit devices (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM on Dell XPS 13 9345 (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM on Microsoft Surface Pro 9 5G (Eric Chanudet) [RHEL-117514] - firmware: qcom: scm: Allow QSEECOM on Lenovo Yoga Slim 7x (Eric Chanudet) [RHEL-117514] - macsec: read MACSEC_SA_ATTR_PN with nla_get_uint (CKI Backport Bot) [RHEL-115574] - macsec: MACsec SCI assignment for ES = 0 (CKI Backport Bot) [RHEL-115574] - scsi: lpfc: Copyright updates for 14.4.0.10 patches (Paul Ely) [RHEL-103751] - scsi: lpfc: Update lpfc version to 14.4.0.10 (Paul Ely) [RHEL-103751] - scsi: lpfc: Modify end-of-life adapters' model descriptions (Paul Ely) [RHEL-103751] - scsi: lpfc: Revise CQ_CREATE_SET mailbox bitfield definitions (Paul Ely) [RHEL-103751] - scsi: lpfc: Move clearing of HBA_SETUP flag to before lpfc_sli4_queue_unset (Paul Ely) [RHEL-103751] - scsi: lpfc: Ensure HBA_SETUP flag is used only for SLI4 in dev_loss_tmo_callbk (Paul Ely) [RHEL-103751] - scsi: lpfc: Relocate clearing initial phba flags from link up to link down hdlr (Paul Ely) [RHEL-103751] - scsi: lpfc: Simplify error handling for failed lpfc_get_sli4_parameters cmd (Paul Ely) [RHEL-103751] - scsi: lpfc: Early return out of FDMI cmpl for locally rejected statuses (Paul Ely) [RHEL-103751] - scsi: lpfc: Skip RSCN processing when FC_UNLOADING flag is set (Paul Ely) [RHEL-103751] - scsi: lpfc: Check for hdwq null ptr when cleaning up lpfc_vport structure (Paul Ely) [RHEL-103751] - scsi: lpfc: Update debugfs trace ring initialization messages (Paul Ely) [RHEL-103751] - scsi: lpfc: Revise logging format for failed CT MIB requests (Paul Ely) [RHEL-103751] - sched/deadline: Don't count nr_running for dl_server proxy tasks (Phil Auld) [RHEL-110301] - sched/deadline: Fix RT task potential starvation when expiry time passed (Phil Auld) [RHEL-110301] - sched/deadline: Always stop dl-server before changing parameters (Phil Auld) [RHEL-110301] - sched/deadline: Fix dl_server_stopped() (Phil Auld) [RHEL-110301] - sched/psi: Fix psi_seq initialization (Phil Auld) [RHEL-110301] - sched/topology: Remove sched_domain_topology_level::flags (Phil Auld) [RHEL-110301] - Revert "sched/numa: add statistics of numa balance task" (Phil Auld) [RHEL-110301] - sched/fair: Bump sd->max_newidle_lb_cost when newidle balance fails (Phil Auld) [RHEL-110301] - sched/psi: Optimize psi_group_change() cpu_clock() usage (Phil Auld) [RHEL-110301] - sched/core: Reorganize cgroup bandwidth control interface file writes (Phil Auld) [RHEL-110301] - sched/core: Reorganize cgroup bandwidth control interface file reads (Phil Auld) [RHEL-110301] - sched/core: Relocate tg_get_cfs_*() and cpu_cfs_*_read_*() (Phil Auld) [RHEL-110301] - sched/fair: Move max_cfs_quota_period decl and default_cfs_period() def from fair.c to sched.h (Phil Auld) [RHEL-110301] - sched/eevdf: Correct the comment in place_entity (Phil Auld) [RHEL-110301] - sched/numa: fix task swap by skipping kernel threads (Phil Auld) [RHEL-110301] - sched/numa: add statistics of numa balance task (Phil Auld) [RHEL-110301] - sched,livepatch: Untangle cond_resched() and live-patching (Phil Auld) [RHEL-110301] - sched/numa: add tracepoint that tracks the skipping of numa balancing due to cpuset memory pinning (Phil Auld) [RHEL-110301] - sched/numa: skip VMA scanning on memory pinned to one NUMA node via cpuset.mems (Phil Auld) [RHEL-110301] - sched/core: Tweak wait_task_inactive() to force dequeue sched_delayed tasks (Phil Auld) [RHEL-110301] - sched/topology: Refinement to topology_span_sane speedup (Phil Auld) [RHEL-110301] - sched: Fix trace_sched_switch(.prev_state) (Phil Auld) [RHEL-110301] - sched/topology: improve topology_span_sane speed (Phil Auld) [RHEL-110301] - sched/uclamp: Optimize sched_uclamp_used static key enabling (Phil Auld) [RHEL-110301] - sched/uclamp: Use the uclamp_is_used() helper instead of open-coding it (Phil Auld) [RHEL-110301] - sched/core: Remove duplicate included header file stats.h (Phil Auld) [RHEL-110301] - sched: Add unlikey branch hints to several system calls (Phil Auld) [RHEL-110301] - sched/eevdf: Force propagating min_slice of cfs_rq when {en,de}queue tasks (Phil Auld) [RHEL-110301] - sched/fair: Refactor can_migrate_task() to elimate looping (Phil Auld) [RHEL-110301] - mm/debug_vm_pgtable: clear page table entries at destroy_args() (Herton R. Krzesinski) [RHEL-52253] - Revert "aacraid: Remove depreciated device and vendor PCI id's" (Scott Weaver) [RHEL-106859] - rh_messages.h: add missing aacraid device (Scott Weaver) [RHEL-106859] - i2c: tiny-usb: disable zero-length read messages (Desnes Nunes) [RHEL-116007] - i2c: Use str_read_write() helper (Desnes Nunes) [RHEL-116007] - memstick: core: Zero initialize id_reg in h_memstick_read_dev_id() (Desnes Nunes) [RHEL-116007] - usb: hub: Don't try to recover devices lost during warm reset. (Desnes Nunes) [RHEL-116007] - USB: serial: option: add Telit Cinterion FE910C04 (ECM) composition (Desnes Nunes) [RHEL-116007] - USB: serial: ftdi_sio: add support for NDI EMGUIDE GEMINI (Desnes Nunes) [RHEL-116007] - xhci: dbc: Flush queued requests before stopping dbc (Desnes Nunes) [RHEL-116007] - xhci: dbctty: disable ECHO flag by default (Desnes Nunes) [RHEL-116007] - xhci: Disable stream for xHC controller with XHCI_BROKEN_STREAMS (Desnes Nunes) [RHEL-116007] - usb: xhci: quirk for data loss in ISOC transfers (Desnes Nunes) [RHEL-116007] - usb: typec: displayport: Fix potential deadlock (Desnes Nunes) [RHEL-116007] {CVE-2025-38404} - usb: typec: altmodes/displayport: do not index invalid pin_assignments (Desnes Nunes) [RHEL-116007] {CVE-2025-38391} - usb: typec: tcpm: apply vbus before data bringup in tcpm_src_attach (Desnes Nunes) [RHEL-116007] - USB: serial: option: add Foxconn T99W640 (Desnes Nunes) [RHEL-116007] - thunderbolt: Fix bit masking in tb_dp_port_set_hops() (Desnes Nunes) [RHEL-116007] - thunderbolt: Fix wake on connect at runtime (Desnes Nunes) [RHEL-116007] - Revert "usb: xhci: Implement xhci_handshake_check_state() helper" (Desnes Nunes) [RHEL-116007] - usb: xhci: Skip xhci_reset in xhci_resume if xhci is being removed (Desnes Nunes) [RHEL-116007] - usb: chipidea: udc: disconnect/reconnect from host when do suspend/resume (Desnes Nunes) [RHEL-116007] {CVE-2025-38376} - usb: acpi: fix device link removal (Desnes Nunes) [RHEL-116007] - Logitech C-270 even more broken (Desnes Nunes) [RHEL-116007] - phy: use per-PHY lockdep keys (Desnes Nunes) [RHEL-116007] - phy: tegra: xusb: Fix unbalanced regulator disable in UTMI PHY mode (Desnes Nunes) [RHEL-116007] {CVE-2025-38535} - phy: tegra: xusb: Disable periodic tracking on Tegra234 (Desnes Nunes) [RHEL-116007] - phy: tegra: xusb: Decouple CYA_TRK_CODE_UPDATE_ON_IDLE from trk_hw_mode (Desnes Nunes) [RHEL-116007] - usb: misc: onboard_usb_dev: fix build warning for CONFIG_USB_ONBOARD_DEV_USB5744=n (Desnes Nunes) [RHEL-116007] - usb: typec: tipd: fix typo in TPS_STATUS_HIGH_VOLAGE_WARNING macro (Desnes Nunes) [RHEL-116007] - USB: typec: fix const issue in typec_match() (Desnes Nunes) [RHEL-116007] - USB: gadget: udc: fix const issue in gadget_match_driver() (Desnes Nunes) [RHEL-116007] - USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB (Desnes Nunes) [RHEL-116007] - USB: serial: bus: fix const issue in usb_serial_device_match() (Desnes Nunes) [RHEL-116007] - usb: misc: onboard_usb_dev: Fix usb5744 initialization sequence (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: ti,usb8041: Add binding for TI USB8044 hub controller (Desnes Nunes) [RHEL-116007] - usb: misc: onboard_usb_dev: Add support for TI TUSB8044 hub (Desnes Nunes) [RHEL-116007] - usb: core: config: Use USB API functions rather than constants (Desnes Nunes) [RHEL-116007] - usb: Flush altsetting 0 endpoints before reinitializating them after reset. (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: Add Parade PS8833 Type-C retimer variant (Desnes Nunes) [RHEL-116007] - usb: storage: Ignore UAS driver for SanDisk 3.2 Gen2 storage device (Desnes Nunes) [RHEL-116007] - usb: quirks: Add NO_LPM quirk for SanDisk Extreme 55AE (Desnes Nunes) [RHEL-116007] - usb: typec: tcpm: Use configured PD revision for negotiation (Desnes Nunes) [RHEL-116007] - usb: typec: tcpm: move tcpm_queue_vdm_unlocked to asynchronous work (Desnes Nunes) [RHEL-116007] {CVE-2025-38268} - xhci: Add missing parameter description to xhci_get_endpoint_index() (Desnes Nunes) [RHEL-116007] - usb: xhci: fix host not responding after suspend and resume (Desnes Nunes) [RHEL-116007] - usb: xhci: rename 'irq_control' to 'imod' (Desnes Nunes) [RHEL-116007] - usb: xhci: rename 'irq_pending' to 'iman' (Desnes Nunes) [RHEL-116007] - usb: xhci: cleanup IMOD register comments (Desnes Nunes) [RHEL-116007] - usb: xhci: rework Event Ring Segment Table Address mask (Desnes Nunes) [RHEL-116007] - usb: xhci: rework Event Ring Segment Table Size mask (Desnes Nunes) [RHEL-116007] - usb: xhci: remove '0' write to write-1-to-clear register (Desnes Nunes) [RHEL-116007] - usb: xhci: guarantee that IMAN register is flushed (Desnes Nunes) [RHEL-116007] - usb: xhci: improve Interrupt Management register macros (Desnes Nunes) [RHEL-116007] - usb: xhci: set requested IMODI to the closest supported value (Desnes Nunes) [RHEL-116007] - usb: xhci: cleanup xhci_mem_init() (Desnes Nunes) [RHEL-116007] - usb: xhci: add individual allocation checks in xhci_mem_init() (Desnes Nunes) [RHEL-116007] - usb: xhci: move initialization of the primary interrupter (Desnes Nunes) [RHEL-116007] - usb: xhci: remove error handling from xhci_add_interrupter() (Desnes Nunes) [RHEL-116007] - usb: xhci: move enabling of USB 3 device notifications (Desnes Nunes) [RHEL-116007] - usb: xhci: move doorbell array pointer assignment (Desnes Nunes) [RHEL-116007] - usb: xhci: move DCBAA pointer write (Desnes Nunes) [RHEL-116007] - usb: xhci: refactor xhci_set_cmd_ring_deq() (Desnes Nunes) [RHEL-116007] - usb: xhci: move command ring pointer write (Desnes Nunes) [RHEL-116007] - usb: xhci: move device slot enabling register write (Desnes Nunes) [RHEL-116007] - usb: xhci: relocate pre-allocation initialization (Desnes Nunes) [RHEL-116007] - usb: xhci: Add debugfs support for xHCI port bandwidth (Desnes Nunes) [RHEL-116007] - usb: xhci: Don't log transfer ring segment list on errors (Desnes Nunes) [RHEL-116007] - phy: tegra: p2u: Broaden architecture dependency (Desnes Nunes) [RHEL-116007] - phy: fsl-imx8mq-usb: add i.MX95 tuning support (Desnes Nunes) [RHEL-116007] - phy: fsl-imx8mq-usb: fix phy_tx_vboost_level_from_property() (Desnes Nunes) [RHEL-116007] - dt-bindings: phy: imx8mq-usb: add imx95 tuning support (Desnes Nunes) [RHEL-116007] - dt-bindings: phy: imx8mq-usb: fix fsl,phy-tx-vboost-level-microvolt property (Desnes Nunes) [RHEL-116007] - phy: freescale: imx8m-pcie: Simplify with dev_err_probe() (Desnes Nunes) [RHEL-116007] - dt-bindings: phy: rockchip: Convert RK3399 Type-C PHY to schema (Desnes Nunes) [RHEL-116007] - ucsi_ccg: Disable async suspend in ucsi_ccg_probe() (Desnes Nunes) [RHEL-116007] - thunderbolt: Do not double dequeue a configuration request (Desnes Nunes) [RHEL-116007] {CVE-2025-38174} - USB: serial: ti_usb_3410_5052: drop bogus read urb check (Desnes Nunes) [RHEL-116007] - usb: misc: onboard_usb_dev: Add Parade PS5511 hub support (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: realtek,rts5411: Adapt usb-hub.yaml (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: Add binding for PS5511 hub controller (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: Introduce usb-hub.yaml (Desnes Nunes) [RHEL-116007] - misc: rtsx: Remove deadcode (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: usb-switch: Allow data-lanes property in port (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: generic-ehci: Add VIA/WonderMedia compatible (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: usb-device: relax compatible pattern to a contains (Desnes Nunes) [RHEL-116007] - usb: typec: ucsi: fix Clang -Wsign-conversion warning (Desnes Nunes) [RHEL-116007] - usb: acpi: Prevent null pointer dereference in usb_acpi_add_usb4_devlink() (Desnes Nunes) [RHEL-116007] {CVE-2025-38134} - USB: host: omap: Do not enable by default during compile testing (Desnes Nunes) [RHEL-116007] - usb: typec: mux: fsa4480: add regulator support (Desnes Nunes) [RHEL-116007] - HID: usbhid: Eliminate recurrent out-of-bounds bug in usbhid_parse() (Desnes Nunes) [RHEL-116007] {CVE-2025-38103} - Documentation/admin-guide: Document Thunderbolt/USB4 tunneling events (Desnes Nunes) [RHEL-116007] - thunderbolt: Notify userspace about firmware CM tunneling events (Desnes Nunes) [RHEL-116007] - thunderbolt: Notify userspace about software CM tunneling events (Desnes Nunes) [RHEL-116007] - thunderbolt: Introduce domain event message handler (Desnes Nunes) [RHEL-116007] - usb: typec: Connect Type-C port with associated USB4 port (Desnes Nunes) [RHEL-116007] - thunderbolt: Add Thunderbolt/USB4 <-> USB3 match function (Desnes Nunes) [RHEL-116007] - thunderbolt: Expose usb4_port_index() to other modules (Desnes Nunes) [RHEL-116007] - thunderbolt: Fix a logic error in wake on connect (Desnes Nunes) [RHEL-116007] - misc: rtsx: Enhance the signal handling processes in SVID/SSID 1028:0CE1 platform (Desnes Nunes) [RHEL-116007] - usb: misc: onboard_dev: Add Realtek RTL8188ETV WiFi (0bda:0179) (Desnes Nunes) [RHEL-116007] - Added usb_string function to a namespace (Desnes Nunes) [RHEL-116007] - USB: core: Correct API usb_(enable|disable)_autosuspend() prototypes (Desnes Nunes) [RHEL-116007] - usb: Remove orphaned UDC drivers (Desnes Nunes) [RHEL-116007] - USB: phy: Use str_enable_disable-like helpers (Desnes Nunes) [RHEL-116007] - usb: common: usb-conn-gpio: use a unique name for usb connector device (Desnes Nunes) [RHEL-116007] - usb: hub: Fail fast in USB3 link power management enable path (Desnes Nunes) [RHEL-116007] - usb: hub: reorder USB3 link power management enable requests (Desnes Nunes) [RHEL-116007] - usb: hub: Don't disable LPM completely if device initiated LPM fails (Desnes Nunes) [RHEL-116007] - usb: hub: verify device is configured in usb_device_may_initiate_lpm() (Desnes Nunes) [RHEL-116007] - usb: hub: Block less in USB3 link power management LPM disable path (Desnes Nunes) [RHEL-116007] - usb: Add checks for snprintf() calls in usb_alloc_dev() (Desnes Nunes) [RHEL-116007] - usb: chipidea: imx: add HSIO Block Control wakeup setting (Desnes Nunes) [RHEL-116007] - usb: chipidea: imx: add wakeup interrupt handling (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: usbmisc-imx: add support for i.MX95 platform (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: chipidea: Add i.MX95 compatible string 'fsl,imx95-usb' (Desnes Nunes) [RHEL-116007] - usb: cdc-wdm: avoid setting WDM_READ for ZLP-s (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: smsc,usb3503: Correct indentation and style in DTS example (Desnes Nunes) [RHEL-116007] - usb: cdns3: Remove the invalid comment (Desnes Nunes) [RHEL-116007] - usb: typec: displayport: Receive DP Status Update NAK request exit dp altmode (Desnes Nunes) [RHEL-116007] - usb: typec: tipd: Fix wakeup source leaks on device unbind (Desnes Nunes) [RHEL-116007] - PM: wakeup: implement devm_device_init_wakeup() helper (Desnes Nunes) [RHEL-116007] - usb: typec: tcpci: add regulator support (Desnes Nunes) [RHEL-116007] - usb: typec: tcpm: allow switching to mode accessory to mux properly (Desnes Nunes) [RHEL-116007] - usb: typec: tcpm: allow sink (ufp) to toggle into accessory mode debug (Desnes Nunes) [RHEL-116007] - usb: typec: tcpm: allow to use sink in accessory mode (Desnes Nunes) [RHEL-116007] - usb: typec: mux: do not return on EOPNOTSUPP in {mux, switch}_set (Desnes Nunes) [RHEL-116007] - usb: typec: ucsi: Add the UCSI commands in debugfs (Desnes Nunes) [RHEL-116007] - thunderbolt: Use wake on connect and disconnect over suspend (Desnes Nunes) [RHEL-116007] - redhat/configs: Adding CONFIG_USB_XHCI_SIDEBAND (Desnes Nunes) [RHEL-116007] - usb: host: xhci: Notify xHCI sideband on transfer ring free (Desnes Nunes) [RHEL-116007] - usb: host: xhci-plat: Set XHCI max interrupters if property is present (Desnes Nunes) [RHEL-116007] - usb: host: xhci-mem: Allow for interrupter clients to choose specific index (Desnes Nunes) [RHEL-116007] - usb: host: xhci-mem: Cleanup pending secondary event ring events (Desnes Nunes) [RHEL-116007] - xhci: sideband: add initial api to register a secondary interrupter entity (Desnes Nunes) [RHEL-116007] - usb: typec: tcpm: Use fwnode_get_child_node_count() (Desnes Nunes) [RHEL-116007] - device property: Split fwnode_get_child_node_count() (Desnes Nunes) [RHEL-116007] - usb: dwc2: gadget: Fix enter to hibernation for UTMI+ PHY (Desnes Nunes) [RHEL-116007] - usb: dwc3: qcom: Don't leave BCR asserted (Desnes Nunes) [RHEL-116007] - usb: dwc3: gadget: Fix TRB reclaim logic for short transfers and ZLPs (Desnes Nunes) [RHEL-116007] - usb: dwc3: Abort suspend on soft disconnect failure (Desnes Nunes) [RHEL-116007] - usb: dwc2: gadget: Use USB API functions rather than constants (Desnes Nunes) [RHEL-116007] - usb: dwc3: qcom: Use bulk clock API and devres (Desnes Nunes) [RHEL-116007] - redhat/configs: Adding CONFIG_PHY_SNPS_EUSB2 (Desnes Nunes) [RHEL-116007] - phy: move phy-qcom-snps-eusb2 out of its vendor sub-directory (Desnes Nunes) [RHEL-116007] - redhat/configs: Adding CONFIG_PHY_NXP_PTN3222 (Desnes Nunes) [RHEL-116007] - phy: add NXP PTN3222 eUSB2 to USB2 redriver (Desnes Nunes) [RHEL-116007] - dt-bindings: phy: add NXP PTN3222 eUSB2 to USB2 redriver (Desnes Nunes) [RHEL-116007] - phy: qcom-qusb2: reuse the IPQ6018 settings for IPQ5424 (Desnes Nunes) [RHEL-116007] - Revert "phy: qcom-qusb2: add QUSB2 support for IPQ5424" (Desnes Nunes) [RHEL-116007] - phy: qcom: qmp-pcie: drop bogus x1e80100 qref supply (Desnes Nunes) [RHEL-116007] - phy: qcom-qmp-usb: Fix an NULL vs IS_ERR() bug (Desnes Nunes) [RHEL-116007] {CVE-2025-38275} - usb: dwc3: qcom: Fix error handling in probe (Desnes Nunes) [RHEL-116007] - usb: dwc3: qcom: use modern PM macros (Desnes Nunes) [RHEL-116007] - usb: dwc2: also exit clock_gating when stopping udc while suspended (Desnes Nunes) [RHEL-116007] - usb: dwc3: qcom: Transition to flattened model (Desnes Nunes) [RHEL-116007] - usb: dwc3: qcom: Don't rely on drvdata during probe (Desnes Nunes) [RHEL-116007] - usb: dwc3: core: Don't touch resets and clocks (Desnes Nunes) [RHEL-116007] - usb: dwc3: core: Expose core driver as library (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: Introduce qcom,snps-dwc3 (Desnes Nunes) [RHEL-116007] - usb: dwc3: qcom: Snapshot driver for backwards compatibilty (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: dwc3: Allow connector in USB controller node (Desnes Nunes) [RHEL-116007] - dt-bindings: usb: qcom,dwc3: Add SM8750 compatible (Desnes Nunes) [RHEL-116007] - phy: qcom: qmp-pcie: Fix PHY initialization when powered down by firmware (Desnes Nunes) [RHEL-116007] - phy: qcom: qmp-pcie: Add PHY register retention support (Desnes Nunes) [RHEL-116007] - usb: dwc3: core: Avoid redundant system suspend/resume callbacks (Desnes Nunes) [RHEL-116007] - usb: dwc3: Specify maximum number of XHCI interrupters (Desnes Nunes) [RHEL-116007] - phy: qcom: pcie: Determine has_nocsr_reset dynamically (Desnes Nunes) [RHEL-116007] - phy: qcom: qmp-pcie: Add X1P42100 Gen4x4 PHY (Desnes Nunes) [RHEL-116007] - dt-bindings: phy: qcom,qmp-pcie: Drop reset number constraints (Desnes Nunes) [RHEL-116007] - dt-bindings: phy: qcom,qmp-pcie: Add X1P42100 PCIe Gen4x4 PHY (Desnes Nunes) [RHEL-116007] - phy: qcom: qmp: Add phy register and clk setting for x1e80100 PCIe3 (Desnes Nunes) [RHEL-116007] - dt-bindings: phy: qcom,sc8280xp-qmp-pcie-phy: Document the X1E80100 QMP PCIe PHY Gen4 x8 (Desnes Nunes) [RHEL-116007] - redhat/configs: enable CONFIG_AMD_HFI for x86 on RHEL (Steve Best) [RHEL-107081] - platform/x86/amd: hfi: Fix pcct_tbl leak in amd_hfi_metadata_parser() (Steve Best) [RHEL-107081] - platform/x86/amd: hfi: Add debugfs support (Steve Best) [RHEL-107081] - platform/x86/amd: hfi: Set ITMT priority from ranking data (Steve Best) [RHEL-107081] - platform/x86: hfi: Add power management callback (Steve Best) [RHEL-107081] - platform/x86: hfi: Add online and offline callback support (Steve Best) [RHEL-107081] - x86/msr-index: Add AMD workload classification MSRs (Steve Best) [RHEL-107081] - platform/x86: hfi: Init per-cpu scores for each class (Steve Best) [RHEL-107081] - platform/x86: hfi: Parse CPU core ranking data from shared memory (Steve Best) [RHEL-107081] - platform/x86: hfi: Introduce AMD Hardware Feedback Interface Driver (Steve Best) [RHEL-107081] - l2tp: do not use sock_hold() in pppol2tp_session_get_sock() (Guillaume Nault) [RHEL-115595] - hwmon: (k10temp) Add thermal support for AMD Family 1Ah-based models (Steve Best) [RHEL-104301] - redhat/configs: automotive: switch ufs-qcom to module (Eric Chanudet) [RHEL-119220] - redhat/configs: automotive: switch geni-se and serial-qcom-geni to modules (Eric Chanudet) [RHEL-119220] - redhat/configs: automotive: switch pinctrl_msm and pinctrl_sa8775p to modules (Eric Chanudet) [RHEL-119219] - redhat/configs: automotive disable ARCH_TEGRA_241_SOC (Eric Chanudet) [RHEL-71896] - scsi: lpfc: Fix buffer free/clear order in deferred receive path (CKI Backport Bot) [RHEL-119124] {CVE-2025-39841} - ixgbe: fix ixgbe_orom_civd_info struct layout (CKI Backport Bot) [RHEL-119073] - blk-mq: fix null-ptr-deref in blk_mq_free_tags() from error path (Ming Lei) [RHEL-120078] - blk-mq: Document tags_srcu member in blk_mq_tag_set structure (Ming Lei) [RHEL-120078] - blk-mq: Replace tags->lock with SRCU for tag iterators (Ming Lei) [RHEL-120078] - blk-mq: Defer freeing flush queue to SRCU callback (Ming Lei) [RHEL-120078] - blk-mq: Defer freeing of tags page_list to SRCU callback (Ming Lei) [RHEL-120078] - blk-mq: Pass tag_set to blk_mq_free_rq_map/tags (Ming Lei) [RHEL-120078] - blk-mq: Move flush queue allocation into blk_mq_init_hctx() (Ming Lei) [RHEL-120078] - ucount: fix atomic_long_inc_below() argument type (Joel Savitz) [RHEL-112480] - timens: Add struct seq_file forward declaration (Joel Savitz) [RHEL-112480] - thermal: intel: int340x: Allow temperature override (Steve Best) [RHEL-118754] - thermal: intel: int340x: Add throttling control interface to PTC (Steve Best) [RHEL-118754] - thermal: int340x: processor_thermal: Platform temperature control documentation (Steve Best) [RHEL-118754] - thermal: intel: int340x: Add platform temperature control interface (Steve Best) [RHEL-118754] - NFSv4/flexfiles: Fix layout merge mirror check. (Benjamin Coddington) [RHEL-118737] - netfilter: nft_set_bitmap: fix lockdep splat due to missing annotation (Florian Westphal) [RHEL-115582] - netfilter: br_netfilter: do not check confirmed bit in br_nf_local_in() after confirm (Florian Westphal) [RHEL-115582] - netfilter: nf_reject: don't leak dst refcount for loopback packets (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: reject duplicate device on updates (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: Introduce functions freeing nft_hook objects (Florian Westphal) [RHEL-115582] - ipvs: Fix estimator kthreads preferred affinity (Florian Westphal) [RHEL-115582] - netfilter: nft_socket: remove WARN_ON_ONCE with huge level value (Florian Westphal) [RHEL-115582] - netfilter: conntrack: clean up returns in nf_conntrack_log_invalid_sysctl() (Florian Westphal) [RHEL-115582] - netfilter: ctnetlink: remove refcounting in expectation dumpers (Florian Westphal) [RHEL-115582] - netfilter: ctnetlink: fix refcount leak on table dump (Florian Westphal) [RHEL-115582] - bpf: Check netfilter ctx accesses are aligned (Florian Westphal) [RHEL-115582] - netfilter: xt_nfacct: don't assume acct name is null-terminated (Florian Westphal) [RHEL-115582] - netfilter: conntrack: Remove unused net in nf_conntrack_double_lock() (Florian Westphal) [RHEL-115582] - netfilter: load nf_log_syslog on enabling nf_conntrack_log_invalid (Florian Westphal) [RHEL-115582] - netfilter: conntrack: table full detailed log (Florian Westphal) [RHEL-115582] - bpf: Disable migration in nf_hook_run_bpf(). (Florian Westphal) [RHEL-115582] - netfilter: flowtable: account for Ethernet header in nf_flow_pppoe_proto() (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: adjust lockdep assertions handling (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: export set count and backend name to userspace (Florian Westphal) [RHEL-115582] - netfilter: conntrack: Bound nf_conntrack sysctl writes (Florian Westphal) [RHEL-115582] - netfilter: flowtable: add CLOSING state (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: fix set size with rbtree backend (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: remove the genmask parameter (Florian Westphal) [RHEL-115582] - ipvs: Fix clamp() of ip_vs_conn_tab on small memory systems (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: avoid false-positive lockdep splats with basechain hook (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: avoid false-positive lockdep splats in set walker (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: avoid false-positive lockdep splats with flowtables (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: avoid false-positive lockdep splats with sets (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: avoid false-positive lockdep splat on rule deletion (Florian Westphal) [RHEL-115582] - netfilter: nf_tables: Fix percpu address space issues in nf_tables_api.c (Florian Westphal) [RHEL-115582] - redhat/configs: automotive: make modular/disable NFS support (Dorinda Bassey) [RHEL-87387] - bpf: Tidy verifier bug message (Viktor Malik) [RHEL-78203] - selftests/bpf: Test invalid narrower ctx load (Viktor Malik) [RHEL-78203] - bpf: Reject narrower access to pointer ctx fields (Viktor Malik) [RHEL-78203] - libbpf: Fix handling of BPF arena relocations (Viktor Malik) [RHEL-78203] - btf: Fix virt_to_phys() on arm64 when mmapping BTF (Viktor Malik) [RHEL-78203] - selftests/bpf: Stress test attaching a BPF prog to another BPF prog (Viktor Malik) [RHEL-78203] - s390/bpf: Fix bpf_arch_text_poke() with new_addr == NULL again (Viktor Malik) [RHEL-78203] - selftests/bpf: Add negative test cases for snprintf (Viktor Malik) [RHEL-78203] - bpf: Reject %%p%% format string in bprintf-like helpers (Viktor Malik) [RHEL-78203] - selftests/bpf: adapt one more case in test_lru_map to the new target_free (Viktor Malik) [RHEL-78203] - libbpf: Fix possible use-after-free for externs (Viktor Malik) [RHEL-78203] - libbpf: Fix null pointer dereference in btf_dump__free on allocation failure (Viktor Malik) [RHEL-78203] - bpf: Adjust free target to avoid global starvation of LRU map (Viktor Malik) [RHEL-78203] - bpf: Mark dentry->d_inode as trusted_or_null (Viktor Malik) [RHEL-78203] - net, bpf: Fix RCU usage in task_cls_state() for BPF programs (Viktor Malik) [RHEL-78203] - tools/resolve_btfids: Fix build when cross compiling kernel with clang. (Viktor Malik) [RHEL-78203] - libbpf: Handle unsupported mmap-based /sys/kernel/btf/vmlinux correctly (Viktor Malik) [RHEL-78203] - bpf, arm64: Remove unused-but-set function and variable. (Viktor Malik) [RHEL-78203] - selftests/bpf: Add tests with stack ptr register in conditional jmp (Viktor Malik) [RHEL-78203] - bpf: Do not include stack ptr register in precision backtracking bookkeeping (Viktor Malik) [RHEL-78203] - selftests/bpf: enable many-args tests for arm64 (Viktor Malik) [RHEL-78203] - bpf, arm64: Support up to 12 function arguments (Viktor Malik) [RHEL-78203] - bpf: Check rcu_read_lock_trace_held() in bpf_map_lookup_percpu_elem() (Viktor Malik) [RHEL-78203] - bpf: Avoid __bpf_prog_ret0_warn when jit fails (Viktor Malik) [RHEL-78203] - bpftool: Add support for custom BTF path in prog load/loadall (Viktor Malik) [RHEL-78203] - selftests/bpf: Add unit tests with __bpf_trap() kfunc (Viktor Malik) [RHEL-78203] - bpf: Warn with __bpf_trap() kfunc maybe due to uninitialized variable (Viktor Malik) [RHEL-78203] - bpf: Remove special_kfunc_set from verifier (Viktor Malik) [RHEL-78203] - selftests/bpf: Add test for open coded dmabuf_iter (Viktor Malik) [RHEL-78203] - selftests/bpf: Add test for dmabuf_iter (Viktor Malik) [RHEL-78203] - bpf: Add open coded dmabuf iterator (Viktor Malik) [RHEL-78203] - bpf: Add dmabuf iterator (Viktor Malik) [RHEL-78203] - dma-buf: Rename debugfs symbols (Viktor Malik) [RHEL-78203] - bpf: Fix error return value in bpf_copy_from_user_dynptr (Viktor Malik) [RHEL-78203] - libbpf: Use mmap to parse vmlinux BTF from sysfs (Viktor Malik) [RHEL-78203] - selftests: bpf: Add a test for mmapable vmlinux BTF (Viktor Malik) [RHEL-78203] - btf: Allow mmap of vmlinux btf (Viktor Malik) [RHEL-78203] - mm: rename try_alloc_pages() to alloc_pages_nolock() (Viktor Malik) [RHEL-78203] - selftests/bpf: Add SKIP_LLVM makefile variable (Viktor Malik) [RHEL-78203] - s390/bpf: Use kernel's expoline thunks (Viktor Malik) [RHEL-78203] - s390/bpf: Add macros for calling external functions (Viktor Malik) [RHEL-78203] - s390: always declare expoline thunks (Viktor Malik) [RHEL-78203] - selftests/bpf: Test multi-split BTF (Viktor Malik) [RHEL-78203] - libbpf/btf: Fix string handling to support multi-split BTF (Viktor Malik) [RHEL-78203] - selftests/bpf: Remove unnecessary link dependencies (Viktor Malik) [RHEL-78203] - bpf: WARN_ONCE on verifier bugs (Viktor Malik) [RHEL-78203] - s390/bpf: Remove the orig_call NULL check (Viktor Malik) [RHEL-78203] - bpf: Pass the same orig_call value to trampoline functions (Viktor Malik) [RHEL-78203] - s390/bpf: Store backchain even for leaf progs (Viktor Malik) [RHEL-78203] - libbpf: Check bpf_map_skeleton link for NULL (Viktor Malik) [RHEL-78203] - bpf: Add support for __prog argument suffix to pass in prog->aux (Viktor Malik) [RHEL-78203] - bpf: Fix WARN() in get_bpf_raw_tp_regs (Viktor Malik) [RHEL-78203] - docs: bpf: Fix bullet point formatting warning (Viktor Malik) [RHEL-78203] - selftests/bpf: introduce tests for dynptr copy kfuncs (Viktor Malik) [RHEL-78203] - bpf: Implement dynptr copy kfuncs (Viktor Malik) [RHEL-78203] - helpers: make few bpf helpers public (Viktor Malik) [RHEL-78203] - libbpf: Use proper errno value in nlattr (Viktor Malik) [RHEL-78203] - selftests/bpf: Allow skipping docs compilation (Viktor Malik) [RHEL-78203] - selftests/bpf: test_verifier verbose log overflows (Viktor Malik) [RHEL-78203] - selftests/bpf: test_verifier verbose causes erroneous failures (Viktor Malik) [RHEL-78203] - bpf, docs: document open-coded BPF iterators (Viktor Malik) [RHEL-78203] - bpftool: Display ref_ctr_offset for uprobe link info (Viktor Malik) [RHEL-78203] - selftests/bpf: Add link info test for ref_ctr_offset retrieval (Viktor Malik) [RHEL-78203] - bpf: Add support to retrieve ref_ctr_offset for uprobe perf link (Viktor Malik) [RHEL-78203] - scripts/bpf_doc.py: implement json output format (Viktor Malik) [RHEL-78203] - selftests/bpf: Fix caps for __xlated/jited_unpriv (Viktor Malik) [RHEL-78203] - bpf: Allow some trace helpers for all prog types (Viktor Malik) [RHEL-78203] - selftests/bpf: Verify zero-extension behavior in load-acquire tests (Viktor Malik) [RHEL-78203] - selftests/bpf: Use CAN_USE_LOAD_ACQ_STORE_REL when appropriate (Viktor Malik) [RHEL-78203] - bpf/verifier: Handle BPF_LOAD_ACQ instructions in insn_def_regno() (Viktor Malik) [RHEL-78203] - bpftool: Fix cgroup command to only show cgroup bpf programs (Viktor Malik) [RHEL-78203] - bpftool: Fix regression of "bpftool cgroup tree" EINVAL on older kernels (Viktor Malik) [RHEL-78203] - selftests/bpf: Add test for bpf_list_{front,back} (Viktor Malik) [RHEL-78203] - bpf: Add bpf_list_{front,back} kfunc (Viktor Malik) [RHEL-78203] - bpf: Simplify reg0 marking for the list kfuncs that return a bpf_list_node pointer (Viktor Malik) [RHEL-78203] - selftests/bpf: Add tests for bpf_rbtree_{root,left,right} (Viktor Malik) [RHEL-78203] - bpf: Allow refcounted bpf_rb_node used in bpf_rbtree_{remove,left,right} (Viktor Malik) [RHEL-78203] - bpf: Add bpf_rbtree_{root,left,right} kfunc (Viktor Malik) [RHEL-78203] - bpf: Simplify reg0 marking for the rbtree kfuncs that return a bpf_rb_node pointer (Viktor Malik) [RHEL-78203] - bpf: Check KF_bpf_rbtree_add_impl for the "case KF_ARG_PTR_TO_RB_NODE" (Viktor Malik) [RHEL-78203] - libbpf: Improve BTF dedup handling of "identical" BTF types (Viktor Malik) [RHEL-78203] - bpf: Replace offsetof() with struct_size() (Viktor Malik) [RHEL-78203] - bpf: Fix uninitialized values in BPF_{CORE,PROBE}_READ (Viktor Malik) [RHEL-78203] - selftests/bpf: Add btf dedup test covering module BTF dedup (Viktor Malik) [RHEL-78203] - bpf: Replace offsetof() with struct_size() (Viktor Malik) [RHEL-78203] - libbpf: Use proper errno value in linker (Viktor Malik) [RHEL-78203] - selftests/bpf: Fix kmem_cache iterator draining (Viktor Malik) [RHEL-78203] - libbpf: Add identical pointer detection to btf_dedup_is_equiv() (Viktor Malik) [RHEL-78203] - Use thread-safe function pointer in libbpf_print (Viktor Malik) [RHEL-78203] - libbpf: Remove sample_period init in perf_buffer (Viktor Malik) [RHEL-78203] - selftests/bpf: Fix endianness issue in __qspinlock declaration (Viktor Malik) [RHEL-78203] - selftests/bpf: Fix arena_spin_lock on systems with less than 16 CPUs (Viktor Malik) [RHEL-78203] - selftests/bpf: Fix arena_spin_lock.c build dependency (Viktor Malik) [RHEL-78203] - bpf, docs: Fix non-standard line break (Viktor Malik) [RHEL-78203] - selftests/bpf: Add test to access const void pointer argument in tracing program (Viktor Malik) [RHEL-78203] - bpf: Allow access to const void pointer arguments in tracing programs (Viktor Malik) [RHEL-78203] - bpf: Streamline allowed helpers between tracing and base sets (Viktor Malik) [RHEL-78203] - bpf: Use proper type to calculate bpf_raw_tp_null_args.mask index (Viktor Malik) [RHEL-78203] - selftests/bpf: Add test for attaching kprobe with long event names (Viktor Malik) [RHEL-78203] - selftests/bpf: Add test for attaching uprobe with long event names (Viktor Malik) [RHEL-78203] - libbpf: Fix event name too long error (Viktor Malik) [RHEL-78203] - selftests/bpf: Close the file descriptor to avoid resource leaks (Viktor Malik) [RHEL-78203] - selftests/bpf: Add 5-byte NOP uprobe trigger benchmark (Viktor Malik) [RHEL-78203] - uprobes/x86: Add support to emulate NOP instructions (Viktor Malik) [RHEL-78203] - bpf: Prepare to reuse get_ctx_arg_idx (Viktor Malik) [RHEL-78203] - libbpf: Verify section type in btf_find_elf_sections (Viktor Malik) [RHEL-78203] - libbpf: Fix buffer overflow in bpf_object__init_prog (Viktor Malik) [RHEL-78203] - kbuild, bpf: Enable --btf_features=attributes (Viktor Malik) [RHEL-78203] - selftests/bpf: Add test case for atomic update of fd htab (Viktor Malik) [RHEL-78203] - bpf: Don't allocate per-cpu extra_elems for fd htab (Viktor Malik) [RHEL-78203] - bpf: Add is_fd_htab() helper (Viktor Malik) [RHEL-78203] - bpf: Support atomic update for htab of maps (Viktor Malik) [RHEL-78203] - bpf: Rename __htab_percpu_map_update_elem to htab_map_update_elem_in_place (Viktor Malik) [RHEL-78203] - bpf: Factor out htab_elem_value helper() (Viktor Malik) [RHEL-78203] - selftests/bpf: Fix bpf_nf selftest failure (Viktor Malik) [RHEL-78203] - bpf: Check link_create.flags parameter for multi_uprobe (Viktor Malik) [RHEL-78203] - bpf: Check link_create.flags parameter for multi_kprobe (Viktor Malik) [RHEL-78203] - selftests/bpf: Add BTF.ext line/func info getter tests (Viktor Malik) [RHEL-78203] - libbpf: Add getters for BTF.ext func and line info (Viktor Malik) [RHEL-78203] - selftests/bpf: Convert comma to semicolon (Viktor Malik) [RHEL-78203] - libbpf: Add likely/unlikely macros and use them in selftests (Viktor Malik) [RHEL-78203] - bpf: Fix a comment describing bpf_attr (Viktor Malik) [RHEL-78203] - broadcom: fix support for PTP_EXTTS_REQUEST2 ioctl (Petr Oros) [RHEL-115042] - broadcom: fix support for PTP_PEROUT_DUTY_CYCLE (Petr Oros) [RHEL-115042] - net: ptp: introduce .supported_perout_flags to ptp_clock_info (CKI Backport Bot) [RHEL-115042] - net: ptp: introduce .supported_extts_flags to ptp_clock_info (CKI Backport Bot) [RHEL-115042] - ptp: ocp: reject unsupported periodic output flags (Petr Oros) [RHEL-115042] - net: lan743x: reject unsupported external timestamp requests (Petr Oros) [RHEL-115042] - renesas: reject PTP_STRICT_FLAGS as unsupported (CKI Backport Bot) [RHEL-115042] - selftests/bpf: Skip timer cases when bpf_timer is not supported (Gregory Bell) [RHEL-117860] - bpf: Reject bpf_timer for PREEMPT_RT (Gregory Bell) [RHEL-117860] - ALSA: hda: Use pci_is_display() (Anusha Srivatsa) [RHEL-120364] - iommu/vt-d: Use pci_is_display() (Anusha Srivatsa) [RHEL-120364] - vga_switcheroo: Use pci_is_display() (Anusha Srivatsa) [RHEL-120364] - vfio/pci: Use pci_is_display() (Anusha Srivatsa) [RHEL-120364] - PCI: Add pci_is_display() to check if device is a display controller (Anusha Srivatsa) [RHEL-120364] - mm/kmemleak: avoid deadlock by moving pr_warn() outside kmemleak_lock (Waiman Long) [RHEL-105500] - mm/kmemleak: avoid soft lockup in __kmemleak_do_cleanup() (Waiman Long) [RHEL-105500] - cgroup/cpuset: Remove the unnecessary css_get/put() in cpuset_partition_write() (Waiman Long) [RHEL-110805] - cgroup/cpuset: Fix a partition error with CPU hotplug (Waiman Long) [RHEL-110805] - cgroup/cpuset: Use static_branch_enable_cpuslocked() on cpusets_insane_config_key (Waiman Long) [RHEL-110805] - cgroup/cpuset: drop useless cpumask_empty() in compute_effective_exclusive_cpumask() (Waiman Long) [RHEL-110805] - cgroup/cpuset: Fix obsolete comment in cpuset_css_offline() (Waiman Long) [RHEL-110805] - cgroup/cpuset: Always use cpu_active_mask (Waiman Long) [RHEL-110805] - cgroup/cpuset: Extend kthread_is_per_cpu() check to all PF_NO_SETAFFINITY tasks (Waiman Long) [RHEL-110805] - redhat/configs: automotive: enable RTC_DRV_S32G (Jared Kangas) [RHEL-115734] - arm64: defconfig: add S32G RTC module support (Jared Kangas) [RHEL-115734] - MAINTAINERS: add NXP S32G RTC driver (Jared Kangas) [RHEL-115734] - rtc: s32g: add NXP S32G2/S32G3 SoC support (Jared Kangas) [RHEL-115734] - dt-bindings: rtc: add schema for NXP S32G2/S32G3 SoCs (Jared Kangas) [RHEL-115734] - s390/qeth: Make hw_trap sysfs attribute idempotent (Mete Durlu) [RHEL-99996] - s390/net: Remove NETIUCV device driver (Mete Durlu) [RHEL-99996] - nfsd: discard nfsd_file_get_local() (Scott Mayhew) [RHEL-115854] - NFSv4: handle ERR_GRACE on delegation recalls (Scott Mayhew) [RHEL-115854] - nfsd: nfserr_jukebox in nlm_fopen should lead to a retry (Scott Mayhew) [RHEL-115854] - nfsd: unregister with rpcbind when deleting a transport (Scott Mayhew) [RHEL-115854] - nfsd: decouple the xprtsec policy check from check_nfsd_access() (Scott Mayhew) [RHEL-115854] - Revert "SUNRPC: Don't allow waiting for exiting tasks" (Scott Mayhew) [RHEL-115854] - NFS: Fix the marking of the folio as up to date (Scott Mayhew) [RHEL-115854] - NFS: nfs_invalidate_folio() must observe the offset and size arguments (Scott Mayhew) [RHEL-115854] - NFSv4.2: Serialise O_DIRECT i/o and copy range (Scott Mayhew) [RHEL-115854] - NFSv4.2: Serialise O_DIRECT i/o and clone range (Scott Mayhew) [RHEL-115854] - NFSv4.2: Serialise O_DIRECT i/o and fallocate() (Scott Mayhew) [RHEL-115854] - NFS: Serialise O_DIRECT i/o and truncate() (Scott Mayhew) [RHEL-115854] - nfs/localio: avoid bouncing LOCALIO if nfs_client_is_local() (Scott Mayhew) [RHEL-115854] - nfs/localio: restore creds before releasing pageio data (Scott Mayhew) [RHEL-115854] - NFSv4: Clear the NFS_CAP_XATTR flag if not supported by the server (Scott Mayhew) [RHEL-115854] - NFSv4: Clear NFS_CAP_OPEN_XOR and NFS_CAP_DELEGTIME if not supported (Scott Mayhew) [RHEL-115854] - NFSv4: Clear the NFS_CAP_FS_LOCATIONS flag if it is not set (Scott Mayhew) [RHEL-115854] - NFSv4: Don't clear capabilities that won't be reset (Scott Mayhew) [RHEL-115854] - NFS/localio: nfs_uuid_put() fix the wake up after unlinking the file (Scott Mayhew) [RHEL-115854] - NFS/localio: nfs_uuid_put() fix races with nfs_open/close_local_fh() (Scott Mayhew) [RHEL-115854] - NFS/localio: nfs_close_local_fh() fix check for file closed (Scott Mayhew) [RHEL-115854] - nfsd: avoid ref leak in nfsd_open_local_fh() (Scott Mayhew) [RHEL-115854] - nfsd: don't set the ctime on delegated atime updates (Scott Mayhew) [RHEL-115854] - NFSv4: Remove duplicate lookups, capability probes and fsinfo calls (Scott Mayhew) [RHEL-115854] - NFS: Fix the setting of capabilities when automounting a new filesystem (Scott Mayhew) [RHEL-115854] - nfs/localio: use read_seqbegin() rather than read_seqbegin_or_lock() (Scott Mayhew) [RHEL-115854] - NFS: Fixup allocation flags for nfsiod's __GFP_NORETRY (Scott Mayhew) [RHEL-115854] - SUNRPC: Silence warnings about parameters not being described (Scott Mayhew) [RHEL-115854] - NFS: Clean up pnfs_put_layout_hdr()/pnfs_destroy_layout_final() (Scott Mayhew) [RHEL-115854] - NFS: Fix wakeup of __nfs_lookup_revalidate() in unblock_revalidate() (Scott Mayhew) [RHEL-115854] - NFS: use a hash table for delegation lookup (Scott Mayhew) [RHEL-115854] - NFS: track active delegations per-server (Scott Mayhew) [RHEL-115854] - NFS: move the delegation_watermark module parameter (Scott Mayhew) [RHEL-115854] - NFS: cleanup nfs_inode_reclaim_delegation (Scott Mayhew) [RHEL-115854] - NFS: cleanup error handling in nfs4_server_common_setup (Scott Mayhew) [RHEL-115854] - NFS: drop __exit from nfs_exit_keyring (Scott Mayhew) [RHEL-115854] - NFS: pass struct nfs_client_initdata to nfs4_set_client (Scott Mayhew) [RHEL-115854] - pNFS: Fix disk addr range check in block/scsi layout (Scott Mayhew) [RHEL-115854] - pNFS: Fix stripe mapping in block/scsi layout (Scott Mayhew) [RHEL-115854] - pNFS: Handle RPC size limit for layoutcommits (Scott Mayhew) [RHEL-115854] - pNFS: Add prepare commit trace to block/scsi layout (Scott Mayhew) [RHEL-115854] - pNFS: Fix extent encoding in block/scsi layout (Scott Mayhew) [RHEL-115854] - pNFS: Fix uninited ptr deref in block/scsi layout (Scott Mayhew) [RHEL-115854] - NFS: Remove unused function nfs_umount (Scott Mayhew) [RHEL-115854] - SUNRPC: Remove unused xdr functions (Scott Mayhew) [RHEL-115854] - nfs: create a kernel keyring (Scott Mayhew) [RHEL-115854] - NFS: support the kernel keyring for TLS (Scott Mayhew) [RHEL-115854] - NFS: Allow folio migration for the case of mode == MIGRATE_SYNC (Scott Mayhew) [RHEL-115854] - nfs: new tracepoint in match_stateid operation (Scott Mayhew) [RHEL-115854] - nfs: new tracepoint in nfs_delegation_need_return (Scott Mayhew) [RHEL-115854] - nfs: add a tracepoint to nfs_inode_detach_delegation_locked (Scott Mayhew) [RHEL-115854] - nfs: add cache_validity to the nfs_inode_event tracepoints (Scott Mayhew) [RHEL-115854] - NFS: remove unused pnfs_ld_data field from struct nfs_server (Scott Mayhew) [RHEL-115854] - NFS: remove unused time_delta field from struct nfs_server (Scott Mayhew) [RHEL-115854] - NFS: remove unused wpages field from struct nfs_server (Scott Mayhew) [RHEL-115854] - pnfs: add pnfs_ds_connect trace point (Scott Mayhew) [RHEL-115854] - nfs: use lock_two_nondirectories() (Scott Mayhew) [RHEL-115854] - NFS: Return the file btime in the statx results when appropriate (Scott Mayhew) [RHEL-115854] - nfs: Add timecreate to nfs inode (Scott Mayhew) [RHEL-115854] - Expand the type of nfs_fattr->valid (Scott Mayhew) [RHEL-115854] - nfsd: Drop dprintk in blocklayout xdr functions (Scott Mayhew) [RHEL-115854] - sunrpc: make svc_tcp_sendmsg() take a signed sentp pointer (Scott Mayhew) [RHEL-115854] - sunrpc: rearrange struct svc_rqst for fewer cachelines (Scott Mayhew) [RHEL-115854] - sunrpc: return better error in svcauth_gss_accept() on alloc failure (Scott Mayhew) [RHEL-115854] - sunrpc: reset rq_accept_statp when starting a new RPC (Scott Mayhew) [RHEL-115854] - sunrpc: remove SVC_SYSERR (Scott Mayhew) [RHEL-115854] - sunrpc: fix handling of unknown auth status codes (Scott Mayhew) [RHEL-115854] - NFSD: Simplify struct knfsd_fh (Scott Mayhew) [RHEL-115854] - NFSD: Access a knfsd_fh's fsid by pointer (Scott Mayhew) [RHEL-115854] - Revert "NFSD: Force all NFSv4.2 COPY requests to be synchronous" (Scott Mayhew) [RHEL-115854] - NFSD: Avoid multiple -Wflex-array-member-not-at-end warnings (Scott Mayhew) [RHEL-115854] - NFSD: Use vfs_iocb_iter_write() (Scott Mayhew) [RHEL-115854] - NFSD: Use vfs_iocb_iter_read() (Scott Mayhew) [RHEL-115854] - NFSD: Clean up kdoc for nfsd_open_local_fh() (Scott Mayhew) [RHEL-115854] - NFSD: Clean up kdoc for nfsd_file_put_local() (Scott Mayhew) [RHEL-115854] - NFSD: Remove definition for trace_nfsd_ctl_maxconn (Scott Mayhew) [RHEL-115854] - NFSD: Remove definition for trace_nfsd_file_gc_recent (Scott Mayhew) [RHEL-115854] - NFSD: Remove definitions for unused trace_nfsd_file_lru trace points (Scott Mayhew) [RHEL-115854] - NFSD: Remove definition for trace_nfsd_file_unhash_and_queue (Scott Mayhew) [RHEL-115854] - nfsd: Use correct error code when decoding extents (Scott Mayhew) [RHEL-115854] - NFSD: Remove the cap on number of operations per NFSv4 COMPOUND (Scott Mayhew) [RHEL-115854] - NFSD: Make nfsd_genl_rqstp::rq_ops array best-effort (Scott Mayhew) [RHEL-115854] - NFSD: Rename a function parameter (Scott Mayhew) [RHEL-115854] - NFSD: detect mismatch of file handle and delegation stateid in OPEN op (Scott Mayhew) [RHEL-115854] - nfsd: handle get_client_locked() failure in nfsd4_setclientid_confirm() (Scott Mayhew) [RHEL-115854] - nfsd: Change the type of ek_fsidtype from int to u8 and use kstrtou8 (Scott Mayhew) [RHEL-115854] - sunrpc: new tracepoints around svc thread wakeups (Scott Mayhew) [RHEL-115854] - sunrpc: unexport csum_partial_copy_to_xdr (Scott Mayhew) [RHEL-115854] - sunrpc: simplify xdr_partial_copy_from_skb (Scott Mayhew) [RHEL-115854] - sunrpc: simplify xdr_init_encode_pages (Scott Mayhew) [RHEL-115854] - NFSD: release read access of nfs4_file when a write delegation is returned (Scott Mayhew) [RHEL-115854] - NFSD: Offer write delegation for OPEN with OPEN4_SHARE_ACCESS_WRITE (Scott Mayhew) [RHEL-115854] - nfs_localio: change nfsd_file_put_local() to take a pointer to __rcu pointer (Scott Mayhew) [RHEL-115854] - nfs_localio: protect race between nfs_uuid_put() and nfs_close_local_fh() (Scott Mayhew) [RHEL-115854] - nfs_localio: duplicate nfs_close_local_fh() (Scott Mayhew) [RHEL-115854] - nfs_localio: simplify interface to nfsd for getting nfsd_file (Scott Mayhew) [RHEL-115854] - nfs_localio: always hold nfsd net ref with nfsd_file ref (Scott Mayhew) [RHEL-115854] - nfs_localio: use cmpxchg() to install new nfs_file_localio (Scott Mayhew) [RHEL-115854] - sunrpc/svc: use store_release_wake_up() (Scott Mayhew) [RHEL-115854] - nfsd: use new wake_up_var interfaces. (Scott Mayhew) [RHEL-115854] - vfio: Dump migration features under debugfs (Alex Williamson) [RHEL-118213] - vfio/type1: optimize vfio_unpin_pages_remote() (Alex Williamson) [RHEL-118213] - vfio/type1: introduce a new member has_rsvd for struct vfio_dma (Alex Williamson) [RHEL-118213] - vfio/type1: batch vfio_find_vpfn() in function vfio_unpin_pages_remote() (Alex Williamson) [RHEL-118213] - vfio/type1: optimize vfio_pin_pages_remote() (Alex Williamson) [RHEL-118213] - mm: introduce num_pages_contiguous() (Alex Williamson) [RHEL-118213] - vfio/nvgrace-gpu: Add GB300 SKU to the devid table (Alex Williamson) [RHEL-118213] - vfio/pci: Fix INTx handling on legacy non-PCI 2.3 devices (Alex Williamson) [RHEL-118213] - vfio/pds: replace bitmap_free with vfree (Alex Williamson) [RHEL-118213] - vfio: return -ENOTTY for unsupported device feature (Alex Williamson) [RHEL-118213] - hisi_acc_vfio_pci: Fix reference leak in hisi_acc_vfio_debug_init (Alex Williamson) [RHEL-118213] - vfio/platform: Mark reset drivers for removal (Alex Williamson) [RHEL-118213] - vfio/amba: Mark for removal (Alex Williamson) [RHEL-118213] - MAINTAINERS: Add myself as VFIO-platform reviewer (Alex Williamson) [RHEL-118213] - MAINTAINERS: Add myself as VFIO-platform reviewer (Alex Williamson) [RHEL-118213] - docs: proc.rst: Fix VFIO Device title formatting (Alex Williamson) [RHEL-118213] - vfio: selftests: Fix .gitignore for already tracked files (Alex Williamson) [RHEL-118213] - MAINTAINERS: Update Shameer Kolothum's email address (Alex Williamson) [RHEL-118213] - vfio: selftests: Add a script to help with running VFIO selftests (Alex Williamson) [RHEL-118213] - vfio: selftests: Make iommufd the default iommu_mode (Alex Williamson) [RHEL-118213] - vfio: selftests: Add iommufd mode (Alex Williamson) [RHEL-118213] - vfio: selftests: Add iommufd_compat_type1{,v2} modes (Alex Williamson) [RHEL-118213] - vfio: selftests: Add vfio_type1v2_mode (Alex Williamson) [RHEL-118213] - vfio: selftests: Replicate tests across all iommu_modes (Alex Williamson) [RHEL-118213] - vfio: selftests: Encapsulate IOMMU mode (Alex Williamson) [RHEL-118213] - vfio: selftests: Move helper to get cdev path to libvfio (Alex Williamson) [RHEL-118213] - vfio: selftests: Add driver for Intel DSA (Alex Williamson) [RHEL-118213] - dmaengine: idxd: Allow registers.h to be included from tools/ (Alex Williamson) [RHEL-118213] - tools headers: Import iosubmit_cmds512() (Alex Williamson) [RHEL-118213] - vfio: selftests: Add driver for Intel CBDMA (Alex Williamson) [RHEL-118213] - dmaengine: ioat: Move system_has_dca_enabled() to dma.h (Alex Williamson) [RHEL-118213] - tools headers: Add symlink to linux/pci_ids.h (Alex Williamson) [RHEL-118213] - tools headers: Import x86 MMIO helper overrides (Alex Williamson) [RHEL-118213] - tools headers: Import asm-generic MMIO helpers (Alex Williamson) [RHEL-118213] - tools headers: Add stub definition for __iomem (Alex Williamson) [RHEL-118213] - vfio: sefltests: Add vfio_pci_driver_test (Alex Williamson) [RHEL-118213] - vfio: selftests: Add driver framework (Alex Williamson) [RHEL-118213] - vfio: selftests: Add a helper for matching vendor+device IDs (Alex Williamson) [RHEL-118213] - vfio: selftests: Enable asserting MSI eventfds not firing (Alex Williamson) [RHEL-118213] - vfio: selftests: Keep track of DMA regions mapped into the device (Alex Williamson) [RHEL-118213] - vfio: selftests: Validate 2M/1G HugeTLB are mapped as 2M/1G in IOMMU (Alex Williamson) [RHEL-118213] - vfio: selftests: Add DMA mapping tests for 2M and 1G HugeTLB (Alex Williamson) [RHEL-118213] - vfio: selftests: Add test to reset vfio device. (Alex Williamson) [RHEL-118213] - vfio: selftests: Move vfio dma mapping test to their own file (Alex Williamson) [RHEL-118213] - vfio: selftests: Test basic VFIO and IOMMUFD integration (Alex Williamson) [RHEL-118213] - vfio: selftests: Introduce vfio_pci_device_test (Alex Williamson) [RHEL-118213] - vfio: selftests: Add a helper library for VFIO selftests (Alex Williamson) [RHEL-118213] - selftests: Create tools/testing/selftests/vfio (Alex Williamson) [RHEL-118213] - vfio/nvgrace-gpu: fix grammatical error (Alex Williamson) [RHEL-118213] - vfio/pci: drop redundant conversion to bool (Alex Williamson) [RHEL-118213] - vfio/fsl-mc: Mark for removal (Alex Williamson) [RHEL-118213] - vfio/pci: print vfio-device syspath to fdinfo (Alex Williamson) [RHEL-118213] - vfio/type1: conditional rescheduling while pinning (Alex Williamson) [RHEL-118213] - vfio/qat: add support for intel QAT 6xxx virtual functions (Alex Williamson) [RHEL-118213] - vfio/qat: Remove myself from VFIO QAT PCI driver maintainers (Alex Williamson) [RHEL-118213] - vfio/pci: Do vf_token checks for VFIO_DEVICE_BIND_IOMMUFD (Alex Williamson) [RHEL-118213] - vfio/mlx5: fix possible overflow in tracking max message size (Alex Williamson) [RHEL-118213] - vfio/pci: Separate SR-IOV VF dev_set (Alex Williamson) [RHEL-118213] - vfio/pds: Fix missing detach_ioas op (Alex Williamson) [RHEL-118213] {CVE-2025-38625} - vfio: Prevent open_count decrement to negative (Alex Williamson) [RHEL-118213] - vfio: Fix unbalanced vfio_df_close call in no-iommu mode (Alex Williamson) [RHEL-118213] - irqbypass: Require producers to pass in Linux IRQ number during registration (Alex Williamson) [RHEL-118213] - irqbypass: Use xarray to track producers and consumers (Alex Williamson) [RHEL-118213] - irqbypass: Use guard(mutex) in lieu of manual lock+unlock (Alex Williamson) [RHEL-118213] - irqbypass: Use paired consumer/producer to disconnect during unregister (Alex Williamson) [RHEL-118213] - irqbypass: Explicitly track producer and consumer bindings (Alex Williamson) [RHEL-118213] - irqbypass: Take ownership of producer/consumer token tracking (Alex Williamson) [RHEL-118213] - irqbypass: Drop superfluous might_sleep() annotations (Alex Williamson) [RHEL-118213] - irqbypass: Drop pointless and misleading THIS_MODULE get/put (Alex Williamson) [RHEL-118213] - vfio/type1: Fix error unwind in migration dirty bitmap allocation (Alex Williamson) [RHEL-118213] - vfio/mlx5: Enable the DMA link API (Alex Williamson) [RHEL-118213] - vfio/mlx5: Rewrite create mkey flow to allow better code reuse (Alex Williamson) [RHEL-118213] - vfio/mlx5: Explicitly use number of pages instead of allocated length (Alex Williamson) [RHEL-118213] - hisi_acc_vfio_pci: update function return values. (Alex Williamson) [RHEL-118213] - hisi_acc_vfio_pci: bugfix live migration function without VF device driver (Alex Williamson) [RHEL-118213] {CVE-2025-38283} - hisi_acc_vfio_pci: bugfix the problem of uninstalling driver (Alex Williamson) [RHEL-118213] - hisi_acc_vfio_pci: bugfix cache write-back issue (Alex Williamson) [RHEL-118213] - hisi_acc_vfio_pci: add eq and aeq interruption restore (Alex Williamson) [RHEL-118213] - hisi_acc_vfio_pci: fix XQE dma address error (Alex Williamson) [RHEL-118213] {CVE-2025-38158} - vfio/type1: Remove Fine Grained Superpages detection (Alex Williamson) [RHEL-118213] - vfio/pci: Virtualize zero INTx PIN if no pdev->irq (Alex Williamson) [RHEL-118213] - net: drop UFO packets in udp_rcv_segment() (Paolo Abeni) [RHEL-115602] - vsock/virtio: Validate length in packet header before skb_put() (CKI Backport Bot) [RHEL-114302] {CVE-2025-39718} - redhat: rpminspect: update emptyrpm list for kernel variants (Alexandra Hájková) - ipvs: Rename del_timer in comment in ip_vs_conn_expire_now() (Waiman Long) [RHEL-114125] - scsi: scsi_transport_fc: Rename del_timer() in comment (Waiman Long) [RHEL-114125] - ocfs2: o2net_idle_timer: Rename del_timer_sync in comment (Waiman Long) [RHEL-114125] - bna: bnad_dim_timeout: Rename del_timer_sync in comment (Waiman Long) [RHEL-114125] - treewide, timers: Rename from_timer() to timer_container_of() (Waiman Long) [RHEL-114125] - treewide, timers: Rename destroy_timer_on_stack() as timer_destroy_on_stack() (Waiman Long) [RHEL-114125] - treewide, timers: Rename try_to_del_timer_sync() as timer_delete_sync_try() (Waiman Long) [RHEL-114125] - timers: Rename init_timers() as timers_init() (Waiman Long) [RHEL-114125] - timers: Rename NEXT_TIMER_MAX_DELTA as TIMER_NEXT_MAX_DELTA (Waiman Long) [RHEL-114125] - timers: Rename __init_timer_on_stack() as __timer_init_on_stack() (Waiman Long) [RHEL-114125] - timers: Rename __init_timer() as __timer_init() (Waiman Long) [RHEL-114125] - timers: Rename init_timer_on_stack_key() as timer_init_key_on_stack() (Waiman Long) [RHEL-114125] - timers: Rename init_timer_key() as timer_init_key() (Waiman Long) [RHEL-114125] - treewide: Switch/rename to timer_delete[_sync]() (Waiman Long) [RHEL-114125] - timers: Move *sleep*() and timeout functions into a separate file (Waiman Long) [RHEL-114125] - pwm: gpio: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - wifi: rt2x00: Switch to use hrtimer_update_function() (Waiman Long) [RHEL-114125] - io_uring: Use helper function hrtimer_update_function() (Waiman Long) [RHEL-114125] - serial: xilinx_uartps: Use helper function hrtimer_update_function() (Waiman Long) [RHEL-114125] - RDMA: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - virtio: mem: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - drm/msm: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - stm class: heartbeat: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - i2c: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - iio: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - leds: trigger: pattern: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - mailbox: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - media: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - misc: vcpu_stall_detector: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - mmc: dw_mmc: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - ntb: ntb_pingpong: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - drivers: perf: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - power: reset: ltc2952-poweroff: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - power: supply: ab8500_chargalg: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - powercap: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - pps: generators: pps_gen_parport: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - rtc: class: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - scsi: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - serial: xilinx_uartps: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - serial: sh-sci: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - serial: imx: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - serial: 8250: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - usb: musb: cppi41: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - usb: fotg210-hcd: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - USB: chipidea: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - xfrm: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - octeontx2-pf: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - igc: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - wifi: rt2x00: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - wifi: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net/cdc_ncm: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: wwan: iosm: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: fec: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: stmmac: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: qualcomm: rmnet: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: mvpp2: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: ieee802154: at86rf230: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: sparx5: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: ethernet: hisilicon: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: ethernet: ec_bhf: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: ethernet: cortina: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net: ethernet: ti: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - can: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - can: mcp251xfd: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - can: m_can: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - tcp: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - mac802154: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - net/sched: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - netdev: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - hwrng: timeriomem: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - null_blk: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - PM / devfreq: rockchip-dfi: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - blk_iocost: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - block, bfq: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - tracing/osnoise: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - watchdog: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - ubifs: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - bpf: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - timerfd: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - perf: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - fork: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - lib: test_objpool: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - mm/slab: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - s390/ap_bus: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - perf/x86: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - powerpc/watchdog: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - ARM: 8611/1: l2x0: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - ARM: imx: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - riscv: kvm: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - LoongArch: KVM: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - KVM: x86: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - KVM: s390: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - KVM: PPC: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - KVM: MIPS: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - ALSA: Switch to use hrtimer_setup() (Waiman Long) [RHEL-114125] - signal: Provide ignored_posix_timers list (Waiman Long) [RHEL-114125] - mm: memory-tiering: fix PGPROMOTE_CANDIDATE counting (Rafael Aquini) [RHEL-102533] - NFS: Fix filehandle bounds checking in nfs_fh_to_dentry() (CKI Backport Bot) [RHEL-113615] {CVE-2025-39730} - lib/smp_processor_id: Make migration check unconditional of SMP (Phil Auld) [RHEL-112445] - x86/smpboot: avoid SMT domain attach/destroy if SMT is not enabled (Phil Auld) [RHEL-112445] - x86/smpboot: moves x86_topology to static initialize and truncate (Phil Auld) [RHEL-112445] - x86/smpboot: remove redundant CONFIG_SCHED_SMT (Phil Auld) [RHEL-112445] - smpboot: introduce SDTL_INIT() helper to tidy sched topology setup (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of double_rq_clock_clear_update() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of add_nr_running() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of ENQUEUE_MIGRATED (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of WF_ and SD_ flag sanity checks (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of task_on_cpu() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of rq_pin_lock() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of is_migration_disabled() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of cpu_of() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of the stop-CPU scheduling class (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of the idle scheduling class (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of sched_update_asym_prefer_cpu() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of the scheduler syscalls (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of schedstats (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of scheduler debugging data (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of the deadline scheduling class (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of the RT scheduling class (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of idle_thread_set_boot_cpu() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of sched_exec() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of wake_up_new_task() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of __task_needs_rq_lock() (Phil Auld) [RHEL-112445] - sched/smp: Use the SMP version of try_to_wake_up() (Phil Auld) [RHEL-112445] - sched/smp: Always define rq->hrtick_csd (Phil Auld) [RHEL-112445] - sched/smp: Always define is_percpu_thread() and scheduler_ipi() (Phil Auld) [RHEL-112445] - sched/smp: Make SMP unconditional (Phil Auld) [RHEL-112445] - sched/fair: Fixup wake_up_sync() vs DELAYED_DEQUEUE (Phil Auld) [RHEL-112445] - sched/smp: Always define sched_domains_mutex_lock()/unlock(), def_root_domain and sched_domains_mutex (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/topology.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/syscalls.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/stats.[ch] (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/sched.h (Phil Auld) [RHEL-112445] - sched: Add annotations to RT_GROUP_SCHED fields (Phil Auld) [RHEL-112445] - sched: Add RT_GROUP WARN checks for non-root task_groups (Phil Auld) [RHEL-112445] - sched: Do not construct nor expose RT_GROUP_SCHED structures if disabled (Phil Auld) [RHEL-112445] - sched: Bypass bandwitdh checks with runtime disabled RT_GROUP_SCHED (Phil Auld) [RHEL-112445] - sched: Skip non-root task_groups with disabled RT_GROUP_SCHED (Phil Auld) [RHEL-112445] - sched: Add commadline option for RT_GROUP_SCHED toggling (Phil Auld) [RHEL-112445] - sched: Always initialize rt_rq's task_group (Phil Auld) [RHEL-112445] - sched: Remove unneeed macro wrap (Phil Auld) [RHEL-112445] - sched/fair: Allow decaying util_est when util_avg > CPU capa (Phil Auld) [RHEL-112445] - sched: Convert CONFIG_RT_GROUP_SCHED macros to code conditions (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/rt.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/psi.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/pelt.[ch] (Phil Auld) [RHEL-112445] - sched: Make clangd usable (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/loadavg.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/idle.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/fair.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/debug.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/deadline.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/cputime.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/cpupri.h (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/cpufreq_schedutil.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/core.c (Phil Auld) [RHEL-112445] - sched/uclamp: Align uclamp and util_est and call before freq update (Phil Auld) [RHEL-112445] - sched/util_est: Simplify condition for util_est_{en,de}queue() (Phil Auld) [RHEL-112445] - sched: Switch to use hrtimer_setup() (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/clock.c (Phil Auld) [RHEL-112445] - sched: Clean up and standardize #if/#else/#endif markers in sched/autogroup.[ch] (Phil Auld) [RHEL-112445] - redhat: Remove configs for CONFIG_SCHED_DEBUG (Phil Auld) [RHEL-112445] - sched/debug: Remove CONFIG_SCHED_DEBUG (Phil Auld) [RHEL-112445] - sched/debug, Documentation: Remove (most) CONFIG_SCHED_DEBUG references from documentation (Phil Auld) [RHEL-112445] - sched/debug: Make CONFIG_SCHED_DEBUG functionality unconditional (Phil Auld) [RHEL-112445] - sched/debug: Make 'const_debug' tunables unconditional __read_mostly (Phil Auld) [RHEL-112445] - sched: Reduce the default slice to avoid tasks getting an extra tick (Phil Auld) [RHEL-112445] - sched/debug: Change SCHED_WARN_ON() to WARN_ON_ONCE() (Phil Auld) [RHEL-112445] - rtla/actions: Fix condition for buffer reallocation (Tomas Glozar) [RHEL-89807] - rtla: Fix buffer overflow in actions_parse (Tomas Glozar) [RHEL-89807] - rtla/tests: Test timerlat -P option using actions (Tomas Glozar) [RHEL-100124] - rtla/tests: Add grep checks for base test cases (Tomas Glozar) [RHEL-100124] - Documentation/rtla: Add actions feature (Tomas Glozar) [RHEL-89807] - rtla/tests: Limit duration to maximum of 10s (Tomas Glozar) [RHEL-89807] - rtla/tests: Add tests for actions (Tomas Glozar) [RHEL-89807] - rtla/tests: Check rtla output with grep (Tomas Glozar) [RHEL-89807] - rtla/timerlat: Add action on end feature (Tomas Glozar) [RHEL-89807] - rtla/timerlat: Add continue action (Tomas Glozar) [RHEL-89807] - rtla/timerlat_bpf: Allow resuming tracing (Tomas Glozar) [RHEL-89807] - rtla/timerlat: Add action on threshold feature (Tomas Glozar) [RHEL-89807] - rtla/timerlat: Introduce enum timerlat_tracing_mode (Tomas Glozar) [RHEL-89807] - Documentation/rtla: Describe exit status (Tomas Glozar) [RHEL-89807] - rtla: Set distinctive exit value for failed tests (Tomas Glozar) [RHEL-89807] - rtla: Fix segfault in save_trace_to_file call (Tomas Glozar) [RHEL-89807] - rtla: Refactor save_trace_to_file (Tomas Glozar) [RHEL-89807] - redhat: Temporary stop adding 'kernel' component to SBAT (Vitaly Kuznetsov) [RHEL-71543] - redhat: Switch to implicit enablement of CONFIG_EFI_SBAT_FILE (Vitaly Kuznetsov) [RHEL-71543] - redhat: Add SBAT information to Linux kernel (Vitaly Kuznetsov) [RHEL-71543] - x86/efi: Implement support for embedding SBAT data for x86 (Vitaly Kuznetsov) [RHEL-71543] - efi: Fix .data section size calculations when .sbat is present (Vitaly Kuznetsov) [RHEL-71543] - efi: Drop preprocessor directives from zboot.lds (Vitaly Kuznetsov) [RHEL-71543] - efi: zboot specific mechanism for embedding SBAT section (Vitaly Kuznetsov) [RHEL-71543] - platform/x86/intel: power-domains: Fix error code in tpmi_init() (Steve Best) [RHEL-119043] - platform/x86/intel: power-domains: Add interface to get Linux die ID (Steve Best) [RHEL-119043] - platform/x86/intel-uncore-freq: Check write blocked for ELC (Steve Best) [RHEL-119043] - platform/x86/intel-uncore-freq: avoid non-literal format string (Steve Best) [RHEL-119043] - platform/x86/intel-uncore-freq: Fail module load when plat_info is NULL (Steve Best) [RHEL-119043] - platform/x86/intel-uncore-freq: Add attributes to show die_id (Steve Best) [RHEL-119043] - platform/x86/intel-uncore-freq: Add attributes to show agent types (Steve Best) [RHEL-119043] - platform/x86/intel-uncore-freq: Fix missing uncore sysfs during CPU hotplug (Steve Best) [RHEL-119043] - redhat: revert to using redhatsecureboot504 for RHEL UKI (Vitaly Kuznetsov) [RHEL-122226] - mm/memory-failure: fix VM_BUG_ON_PAGE(PagePoisoned(page)) when unpoison memory (CKI Backport Bot) [RHEL-119165] {CVE-2025-39883} - ppp: fix memory leak in pad_compress_skb (Guillaume Nault) [RHEL-115585] - pptp: fix pptp_xmit() error path (Guillaume Nault) [RHEL-115585] - pptp: ensure minimal skb length in pptp_xmit() (Guillaume Nault) [RHEL-115585] - i40e: fix IRQ freeing in i40e_vsi_request_irq_msix error path (CKI Backport Bot) [RHEL-109728] - redhat/configs: Enable CONFIG_MITIGATION_VMSCAPE for x86 (Waiman Long) [RHEL-114277] - x86/vmscape: Add old Intel CPUs to affected list (Waiman Long) [RHEL-114277] {CVE-2025-40300} - x86/vmscape: Warn when STIBP is disabled with SMT (Waiman Long) [RHEL-114277] {CVE-2025-40300} - x86/bugs: Move cpu_bugs_smt_update() down (Waiman Long) [RHEL-114277] {CVE-2025-40300} - x86/vmscape: Enable the mitigation (Waiman Long) [RHEL-114277] {CVE-2025-40300} - x86/vmscape: Add conditional IBPB mitigation (Waiman Long) [RHEL-114277] {CVE-2025-40300} - x86/vmscape: Enumerate VMSCAPE bug (Waiman Long) [RHEL-114277] {CVE-2025-40300} - Documentation/hw-vuln: Add VMSCAPE documentation (Waiman Long) [RHEL-114277] {CVE-2025-40300} - ptp: prevent possible ABBA deadlock in ptp_clock_freerun() (CKI Backport Bot) [RHEL-115596] - ptp: allow reading of currently dialed frequency to succeed on free-running clocks (CKI Backport Bot) [RHEL-115596] - ptp: fix breakage after ptp_vclock_in_use() rework (CKI Backport Bot) [RHEL-115596] - ptp: remove ptp->n_vclocks check logic in ptp_vclock_in_use() (CKI Backport Bot) [RHEL-115596] - icmp: fix icmp_ndo_send address translation for reply direction (CKI Backport Bot) [RHEL-115578] - ipv6: annotate data-races around rt->fib6_nsiblings (CKI Backport Bot) [RHEL-115578] - ipv6: fix possible infinite loop in fib6_info_uses_dev() (CKI Backport Bot) [RHEL-115578] {CVE-2025-38587} - ipv6: prevent infinite loop in rt6_nlmsg_size() (CKI Backport Bot) [RHEL-115578] {CVE-2025-38588} - ndisc: extend RCU protection in ndisc_send_skb() (CKI Backport Bot) [RHEL-115578] {CVE-2025-21760} - ndisc: ndisc_send_redirect() must use dev_get_by_index_rcu() (CKI Backport Bot) [RHEL-115578] - ipv6: Use RCU in ip6_input() (CKI Backport Bot) [RHEL-115578] - ipv6: icmp: convert to dev_net_rcu() (CKI Backport Bot) [RHEL-115578] - redhat/configs: automotive: enable FSL_EDMA (Jared Kangas) [RHEL-115725] - dmaengine: fsl-edma: Fix return code for unhandled interrupts (Jared Kangas) [RHEL-115725] - dmaegnine: fsl-edma: add edma error interrupt handler (Jared Kangas) [RHEL-115725] - dt-bindings: dma: fsl-edma: increase maxItems of interrupts and interrupt-names (Jared Kangas) [RHEL-115725] - dmaengine: fsl-edma: free irq correctly in remove path (Jared Kangas) [RHEL-115725] - dmaengine: fsl-edma: cleanup chan after dma_async_device_unregister (Jared Kangas) [RHEL-115725] - dt-bindings: dma: fsl,edma: Add i.MX94 support (Jared Kangas) [RHEL-115725] - dmaengine: fsl-edma: Add missing newlines to log messages (Jared Kangas) [RHEL-115725] - dmaengine: fsl-edma: implement the cleanup path of fsl_edma3_attach_pd() (Jared Kangas) [RHEL-115725] - dmaengine: fsl-edma: read/write multiple registers in cyclic transactions (Jared Kangas) [RHEL-115725] - dmaengine: fsl-edma: add support for S32G based platforms (Jared Kangas) [RHEL-115725] - dt-bindings: dma: fsl-edma: add nxp,s32g2-edma compatible string (Jared Kangas) [RHEL-115725] - dmaengine: fsl-edma: remove FSL_EDMA_DRV_SPLIT_REG check when parsing muxbase (Jared Kangas) [RHEL-115725] - dmaengine: fsl-edma: select of_dma_xlate based on the dmamuxs presence (Jared Kangas) [RHEL-115725] - wireguard: device: enable threaded NAPI (CKI Backport Bot) [RHEL-115598] - wireguard: allowedips: add WGALLOWEDIP_F_REMOVE_ME flag (CKI Backport Bot) [RHEL-115598] - NFS: Fix a race when updating an existing write (CKI Backport Bot) [RHEL-113858] {CVE-2025-39697} - selftests: bonding: add test for passive LACP mode (Hangbin Liu) [RHEL-100461] - bonding: send LACPDUs periodically in passive mode after receiving partner's LACPDU (Hangbin Liu) [RHEL-100461] - bonding: update LACP activity flag after setting lacp_active (Hangbin Liu) [RHEL-100461] - nvmet-tcp: fix callback lock for TLS handshake (Maurizio Lombardi) [RHEL-110941] - nvme: fix misaccounting of nvme-mpath inflight I/O (Maurizio Lombardi) [RHEL-110941] - nvme: revert the cross-controller atomic write size validation (Maurizio Lombardi) [RHEL-110941] - nvme: fix endianness of command word prints in nvme_log_err_passthru() (Maurizio Lombardi) [RHEL-110941] - nvme-pci: refresh visible attrs after being checked (Maurizio Lombardi) [RHEL-110941] - nvmet: fix memory leak of bio integrity (Maurizio Lombardi) [RHEL-110941] - nvme: correctly account for namespace head reference counter (Maurizio Lombardi) [RHEL-110941] - nvme: Fix incorrect cdw15 value in passthru error logging (Maurizio Lombardi) [RHEL-110941] - nvme: fix atomic write size validation (Maurizio Lombardi) [RHEL-110941] - nvme: refactor the atomic write unit detection (Maurizio Lombardi) [RHEL-110941] - nvme: reset delayed remove_work after reconnect (Maurizio Lombardi) [RHEL-110941] - nvme: spelling fixes (Maurizio Lombardi) [RHEL-110941] - nvme-tcp: fix I/O stalls on congested sockets (Maurizio Lombardi) [RHEL-110941] - nvme-tcp: remove tag set when second admin queue config fails (Maurizio Lombardi) [RHEL-110941] - nvme: enable vectored registered bufs for passthrough cmds (Maurizio Lombardi) [RHEL-110941] - nvme: fix implicit bool to flags conversion (Maurizio Lombardi) [RHEL-110941] - nvme: fix command limits status code (Maurizio Lombardi) [RHEL-110941] - nvme: rename nvme_mpath_shutdown_disk to nvme_mpath_remove_disk (Maurizio Lombardi) [RHEL-110941] - nvme-multipath: introduce delayed removal of the multipath head node (Maurizio Lombardi) [RHEL-110941] - nvme-pci: derive and better document max segments limits (Maurizio Lombardi) [RHEL-110941] - nvme-pci: use struct_size for allocation struct nvme_dev (Maurizio Lombardi) [RHEL-110941] - nvme-pci: add a symolic name for the small pool size (Maurizio Lombardi) [RHEL-110941] - nvme-pci: use a better encoding for small prp pool allocations (Maurizio Lombardi) [RHEL-110941] - nvme-pci: rename the descriptor pools (Maurizio Lombardi) [RHEL-110941] - nvme-pci: remove struct nvme_descriptor (Maurizio Lombardi) [RHEL-110941] - nvme-pci: store aborted state in flags variable (Maurizio Lombardi) [RHEL-110941] - nvme-pci: don't try to use SGLs for metadata on the admin queue (Maurizio Lombardi) [RHEL-110941] - nvme-pci: make PRP list DMA pools per-NUMA-node (Maurizio Lombardi) [RHEL-110941] - dmapool: add NUMA affinity support (Maurizio Lombardi) [RHEL-110941] - nvme-pci: factor out a nvme_init_hctx_common() helper (Maurizio Lombardi) [RHEL-110941] - nvme-fc: do not reference lsrsp after failure (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: don't wait for lport cleanup (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: add missing fcloop_callback_host_done (Maurizio Lombardi) [RHEL-110941] - nvmet-fc: take tgtport refs for portentry (Maurizio Lombardi) [RHEL-110941] - nvmet-fc: free pending reqs on tgtport unregister (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: drop response if targetport is gone (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: allocate/free fcloop_lsreq directly (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: prevent double port deletion (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: access fcpreq only when holding reqlock (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: update refs on tfcp_req (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: refactor fcloop_delete_local_port (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: refactor fcloop_nport_alloc and track lport (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: remove nport from list on last user (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: track ref counts for nports (Maurizio Lombardi) [RHEL-110941] - nvmet-auth: use SHASH_DESC_ON_STACK (Maurizio Lombardi) [RHEL-110941] - nvme-auth: use SHASH_DESC_ON_STACK (Maurizio Lombardi) [RHEL-110941] - nvmet: simplify the nvmet_req_init() interface (Maurizio Lombardi) [RHEL-110941] - nvmet: support completion queue sharing (Maurizio Lombardi) [RHEL-110941] - nvmet: fabrics: add CQ init and destroy (Maurizio Lombardi) [RHEL-110941] - nvmet: cq: prepare for completion queue sharing (Maurizio Lombardi) [RHEL-110941] - nvmet: add a helper function for cqid checking (Maurizio Lombardi) [RHEL-110941] - nvmet-auth: authenticate on admin queue only (Maurizio Lombardi) [RHEL-110941] - nvme-auth: do not re-authenticate queues with no prior authentication (Maurizio Lombardi) [RHEL-110941] - nvme-tcp: remove redundant check to ctrl->opts (Maurizio Lombardi) [RHEL-110941] - nvme-pci: add NVME_QUIRK_NO_DEEPEST_PS quirk for SOLIDIGM P44 Pro (Maurizio Lombardi) [RHEL-110941] - nvme: all namespaces in a subsystem must adhere to a common atomic write size (Maurizio Lombardi) [RHEL-110941] - nvme: multipath: enable BLK_FEAT_ATOMIC_WRITES for multipathing (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: remove NVMET_PCI_EPF_Q_IS_SQ (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: improve debug message (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: cleanup nvmet_pci_epf_raise_irq() (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: do not fall back to using INTX if not supported (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: clear completion queue IRQ flag on delete (Maurizio Lombardi) [RHEL-110941] - nvmet-auth: always free derived key data (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: cleanup link state management (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: clear CC and CSTS when disabling the controller (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: always fully initialize completion entries (Maurizio Lombardi) [RHEL-110941] - nvmet: auth: use NULL to clear a pointer in nvmet_auth_sq_free() (Maurizio Lombardi) [RHEL-110941] - crypto,fs: Separate out hkdf_extract() and hkdf_expand() (Maurizio Lombardi) [RHEL-110941] - nvmet-fc: put ref when assoc->del_work is already scheduled (Maurizio Lombardi) [RHEL-110941] - nvmet-fc: take tgtport reference only once (Maurizio Lombardi) [RHEL-110941] - nvmet-fc: update tgtport ref per assoc (Maurizio Lombardi) [RHEL-110941] - nvmet-fc: inline nvmet_fc_free_hostport (Maurizio Lombardi) [RHEL-110941] - nvmet-fc: inline nvmet_fc_delete_assoc (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: add ref counting to lport (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: replace kref with refcount (Maurizio Lombardi) [RHEL-110941] - nvmet-fcloop: swap list_add_tail arguments (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: Keep completion queues mapped (Maurizio Lombardi) [RHEL-110941] - nvmet: replace max(a, min(b, c)) by clamp(val, lo, hi) (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: Always configure BAR0 as 64-bit (Maurizio Lombardi) [RHEL-110941] - nvmet: Remove duplicate uuid_copy (Maurizio Lombardi) [RHEL-110941] - nvme: zns: Simplify nvme_zone_parse_entry() (Maurizio Lombardi) [RHEL-110941] - nvmet: pci-epf: Remove redundant 'flush_workqueue()' calls (Maurizio Lombardi) [RHEL-110941] - nvmet: add tls_concat and tls_key debugfs entries (Maurizio Lombardi) [RHEL-110941] - nvmet-tcp: support secure channel concatenation (Maurizio Lombardi) [RHEL-110941] - nvmet: Add 'sq' argument to alloc_ctrl_args (Maurizio Lombardi) [RHEL-110941] - nvme-fabrics: reset admin connection for secure concatenation (Maurizio Lombardi) [RHEL-110941] - nvme-tcp: request secure channel concatenation (Maurizio Lombardi) [RHEL-110941] - nvme-keyring: add nvme_tls_psk_refresh() (Maurizio Lombardi) [RHEL-110941] - nvme: add nvme_auth_derive_tls_psk() (Maurizio Lombardi) [RHEL-110941] - nvme: add nvme_auth_generate_digest() (Maurizio Lombardi) [RHEL-110941] - nvme: add nvme_auth_generate_psk() (Maurizio Lombardi) [RHEL-110941] - redhat/configs: automotive: Disable COMPAT_32BIT_TIME SGETMASK_SYSCALL and IA32_EMULATION configs (Dorinda Bassey) [RHEL-85628] - bonding: don't set oif to bond dev when getting NS target destination (CKI Backport Bot) [RHEL-101175] - smb: client: fix file open check in __cifs_unlink() (Paulo Alcantara) [RHEL-108683] - smb: client: fix data loss due to broken rename(2) (Paulo Alcantara) [RHEL-108683] - smb: client: fix compound alignment with encryption (Paulo Alcantara) [RHEL-108683] - smb: client: fix race with concurrent opens in rename(2) (Paulo Alcantara) [RHEL-108683] - smb: client: fix race with concurrent opens in unlink(2) (Paulo Alcantara) [RHEL-108683] - mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu(). (Guillaume Nault) [RHEL-115575] - dm: split write BIOs on zone boundaries when zone append is not emulated (Ming Lei) [RHEL-97177] - dm: Check for forbidden splitting of zone write operations (Ming Lei) [RHEL-97177] - dm: dm-crypt: Do not partially accept write BIOs with zoned targets (Ming Lei) [RHEL-97177] - dm: Always split write BIOs to zoned device limits (Ming Lei) [RHEL-97177] - block: Introduce bio_needs_zone_write_plugging() (Ming Lei) [RHEL-97177] - block: Make REQ_OP_ZONE_FINISH a write operation (Ming Lei) [RHEL-97177] - efivarfs: Fix slab-out-of-bounds in efivarfs_d_compare (CKI Backport Bot) [RHEL-118459] {CVE-2025-39817} - ipv6: sr: Fix MAC comparison to be constant-time (CKI Backport Bot) [RHEL-115599] - ipv6: sr: validate HMAC algorithm ID in seg6_hmac_info_add (CKI Backport Bot) [RHEL-115599] - seg6: Fix validation of nexthop addresses (CKI Backport Bot) [RHEL-115599] - platform/x86:intel/vsec: Change return type of intel_vsec_register (Steve Best) [RHEL-110838] - platform/x86/intel/pmc: Add Bartlett Lake support to intel_pmc_core (Steve Best) [RHEL-110838] - platform/x86/intel/pmc: Add Panther Lake support to Intel PMC SSRAM Telemetry (Steve Best) [RHEL-110838] - platform/x86/intel/pmc: Add Lunar Lake support to Intel PMC SSRAM Telemetry (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Improve pmc_core_get_lpm_req() (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Move error handling to init function (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Use devm for mutex_init (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Create Intel PMC SSRAM Telemetry driver (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Remove unneeded io operations (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Remove unneeded header file inclusion (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Convert index variables to be unsigned (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Move PMC devid to core.h (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Rename core_ssram to ssram_telemetry (Steve Best) [RHEL-110838] - platform/x86:intel/pmc: Move PMC Core related functions (Steve Best) [RHEL-110838] - scsi: target: core: Generate correct identifiers for PR OUT transport IDs (Maurizio Lombardi) [RHEL-111938] - scsi: target: Fix NULL pointer dereference in core_scsi3_decode_spec_i_port() (Maurizio Lombardi) [RHEL-111938] - scsi: target: core: Constify struct target_opcode_descriptor (Maurizio Lombardi) [RHEL-111938] - scsi: target: core: Constify enabled() in struct target_opcode_descriptor (Maurizio Lombardi) [RHEL-111938] - scsi: target: Move delayed/ordered tracking to per CPU (Maurizio Lombardi) [RHEL-111938] - scsi: target: Move I/O path stats to per CPU (Maurizio Lombardi) [RHEL-111938] - scsi: target: Remove size arguments when calling strscpy() (Maurizio Lombardi) [RHEL-111938] - scsi: target: iscsi: Fix timeout on deleted connection (Maurizio Lombardi) [RHEL-111938] - scsi: target: tcm_loop: Fix wrong abort tag (Maurizio Lombardi) [RHEL-111938] - scsi: target: Replace deprecated strncpy() with strscpy() (Maurizio Lombardi) [RHEL-111938] - scsi: target: iscsi: Fix typos (Maurizio Lombardi) [RHEL-111938] - scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr() (Maurizio Lombardi) [RHEL-111938] - scsi: target: spc: Fix RSOC parameter data header size (Maurizio Lombardi) [RHEL-111938] - scsi: target: core: Add line break to status show (Maurizio Lombardi) [RHEL-111938] - scsi: target: Remove unused functions (Maurizio Lombardi) [RHEL-111938] - ice: don't leave device non-functional if Tx scheduler config fails (Petr Oros) [RHEL-106471] - drm/amdgpu: Include sdma_4_4_4.bin (Peter Colberg) [RHEL-117567] - redhat: use new x86/aarch64 signing key (801/804) (Jan Stancek) [RHEL-116728] - powerpc/pseries: Correct secvar format representation for static key management (Mamatha Inamdar) [RHEL-101962] - powerpc/secvar: Expose secvars relevant to the key management mode (Mamatha Inamdar) [RHEL-101962] - integrity/platform_certs: Allow loading of keys in the static key management mode (Mamatha Inamdar) [RHEL-101962] - powercap: dtpm_cpu: Fix NULL pointer dereference in get_pd_power_uw() (Steve Best) [RHEL-110835] - powercap: intel_rapl: Add support for Bartlett Lake platform (Steve Best) [RHEL-110835] - powercap: intel_rapl_msr: Add PL4 support for Panther Lake (Steve Best) [RHEL-110835] - PM: EM: Rework the depends on for CONFIG_ENERGY_MODEL (Steve Best) [RHEL-110835] - nvdimm: Correct some typos in comments (Jeff Moyer) [RHEL-96846] - nvdimm: rectify the illogical code within nd_dax_probe() (Jeff Moyer) [RHEL-96846] - libnvdimm: Remove unused nd_region_conflict (Jeff Moyer) [RHEL-96846] - libnvdimm: Remove unused nd_attach_ndns (Jeff Moyer) [RHEL-96846] - libnvdimm/labels: Fix divide error in nd_label_data_init() (Jeff Moyer) [RHEL-96846] - tcp: add tcp_rto_max_ms sysctl (Antoine Tenart) [RHEL-115393] - tcp: add the ability to control max RTO (Antoine Tenart) [RHEL-115393] - tcp: use tcp_reset_xmit_timer() (Antoine Tenart) [RHEL-115393] - tcp: add a @pace_delay parameter to tcp_reset_xmit_timer() (Antoine Tenart) [RHEL-115393] - tcp: remove tcp_reset_xmit_timer() @max_when argument (Antoine Tenart) [RHEL-115393] - redhat/configs: Disable CONFIG_EFI_MIXED in RHEL (Lenny Szubowicz) [RHEL-115521] - cpupower: Allow control of boost feature on non-x86 based systems with boost support. (Steve Best) [RHEL-111892] - tools/power/cpupower: Add documentation for some recently introduced options (Steve Best) [RHEL-111892] - i2c: i801: Hide Intel Birch Stream SoC TCO WDT (Steve Best) [RHEL-113184] - i2c: smbus: introduce Write Disable-aware SPD instantiating functions (Steve Best) [RHEL-113184] - i2c: i801: Use MMIO if available (Steve Best) [RHEL-113184] - i2c: i801: Switch to iomapped register access (Steve Best) [RHEL-113184] - i2c: i801: Improve too small kill wait time in i801_check_post (Steve Best) [RHEL-113184] - i2c: i801: Move i801_wait_intr and i801_wait_byte_done in the code (Steve Best) [RHEL-113184] - i2c: i801: Cosmetic improvements (Steve Best) [RHEL-113184] - i2c: i801: Remove unnecessary PCI function call (Steve Best) [RHEL-113184] - platform/x86: dell-smo8800: Move instantiation of lis3lv02d i2c_client from i2c-i801 to dell-lis3lv02d (Steve Best) [RHEL-113184] - platform/x86: dell-smo8800: Move SMO88xx acpi_device_ids to dell-smo8800-ids.h (Steve Best) [RHEL-113184] - ice: fix Rx page leak on multi-buffer frames (Petr Oros) [RHEL-104682] - hsr: use netdev_master_upper_dev_link() when linking lower ports (Hangbin Liu) [RHEL-100715] - selftest: net: Fix weird setsockopt() in bind_bhash.c. (CKI Backport Bot) [RHEL-115594] - netfilter: nft_flowtable.sh: re-run with random mtu sizes (CKI Backport Bot) [RHEL-115594] - selftests: rtnetlink.sh: remove esp4_offload after test (CKI Backport Bot) [RHEL-115594] - selftests: netfilter: ipvs.sh: Explicity disable rp_filter on interface tunl0 (CKI Backport Bot) [RHEL-115594] - selftests: net: increase inter-packet timeout in udpgro.sh (CKI Backport Bot) [RHEL-115594] - selftests: net: lib: fix shift count out of range (CKI Backport Bot) [RHEL-115594] - selftests: net: exit cleanly on SIGTERM / timeout (CKI Backport Bot) [RHEL-115594] - locking/local_lock: fix _Generic() matching of local_trylock_t (Gregory Bell) [RHEL-78202] - locking/local_lock, mm: replace localtry_ helpers with local_trylock_t type (Gregory Bell) [RHEL-78202] - mm/page_alloc: ensure try_alloc_pages() plays well with unaccepted memory (Gregory Bell) [RHEL-78202] - mm/page_alloc: Fix try_alloc_pages (Gregory Bell) [RHEL-78202] - mm/page_alloc: avoid second trylock of zone->lock (Gregory Bell) [RHEL-78202] - mm: Fix the flipped condition in gfpflags_allow_spinning() (Gregory Bell) [RHEL-78202] - mm: restore documentation for __free_pages() (Gregory Bell) [RHEL-78202] - bpf: Use try_alloc_pages() to allocate pages for bpf needs. (Gregory Bell) [RHEL-78202] - mm, bpf: Use memcg in try_alloc_pages(). (Gregory Bell) [RHEL-78202] - memcg: Use trylock to access memcg stock_lock. (Gregory Bell) [RHEL-78202] - mm, bpf: Introduce free_pages_nolock() (Gregory Bell) [RHEL-78202] - mm, bpf: Introduce try_alloc_pages() for opportunistic page allocation (Gregory Bell) [RHEL-78202] - locking/local_lock: Introduce localtry_lock_t (Gregory Bell) [RHEL-78202] - rqspinlock: Choose trylock fallback for NMI waiters (Gregory Bell) [RHEL-78202] - stackdepot: fix stack_depot_save_flags() in NMI context (Gregory Bell) [RHEL-78202] - selftests/bpf: verify jset handling in CFG computation (Gregory Bell) [RHEL-78202] - selftests/bpf: Add a kernel flag test for LSM bpf hook (Gregory Bell) [RHEL-78202] - security: Propagate caller information in bpf hooks (Gregory Bell) [RHEL-78202] - libbpf: Export bpf_object__prepare symbol (Gregory Bell) [RHEL-78202] - selftests/bpf: fix implementation of smp_mb() (Gregory Bell) [RHEL-78202] - bpf: handle jset (if a & b ...) as a jump in CFG computation (Gregory Bell) [RHEL-78202] - selftests/bpf: Avoid passing out-of-range values to __retval() (Gregory Bell) [RHEL-78202] - selftests/bpf: Correct typo in __clang_major__ macro (Gregory Bell) [RHEL-78202] - samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora (Gregory Bell) [RHEL-78202] - bpf: Add namespace to BPF internal symbols (Gregory Bell) [RHEL-78202] - selftests/bpf: add test for softlock when modifying hashmap while iterating (Gregory Bell) [RHEL-78202] - bpf: fix possible endless loop in BPF map iteration (Gregory Bell) [RHEL-78202] - selftests/bpf: Mitigate sockmap_ktls disconnect_after_delete failure (Gregory Bell) [RHEL-78202] - bpf: Convert queue_stack map to rqspinlock (Gregory Bell) [RHEL-78202] - bpf: Use architecture provided res_smp_cond_load_acquire (Gregory Bell) [RHEL-78202] - selftests/bpf: Make res_spin_lock AA test condition stronger (Gregory Bell) [RHEL-78202] - selftests/bpf: Support struct/union presets in veristat (Gregory Bell) [RHEL-78202] - selftests/bpf: Make res_spin_lock test less verbose (Gregory Bell) [RHEL-78202] - selftests/bpf: Fix verifier_private_stack test failure (Gregory Bell) [RHEL-78202] - selftests/bpf: Add selftests for load-acquire/store-release when register number is invalid (Gregory Bell) [RHEL-78202] - bpf: Fix out-of-bounds read in check_atomic_load/store() (Gregory Bell) [RHEL-78202] - bpf: Add struct_ops context information to struct bpf_prog_aux (Gregory Bell) [RHEL-78202] - selftests/bpf: Sanitize pointer prior fclose() (Gregory Bell) [RHEL-78202] - selftests/bpf: Add tests for rqspinlock (Gregory Bell) [RHEL-78202] - bpf: Maintain FIFO property for rqspinlock unlock (Gregory Bell) [RHEL-78202] - bpf: Implement verifier support for rqspinlock (Gregory Bell) [RHEL-78202] - bpf: Introduce rqspinlock kfuncs (Gregory Bell) [RHEL-78202] - bpf: Convert lpm_trie.c to rqspinlock (Gregory Bell) [RHEL-78202] - bpf: Convert percpu_freelist.c to rqspinlock (Gregory Bell) [RHEL-78202] - bpf: Convert hashtab.c to rqspinlock (Gregory Bell) [RHEL-78202] - rqspinlock: Add locktorture support (Gregory Bell) [RHEL-78202] - rqspinlock: Add entry to Makefile, MAINTAINERS (Gregory Bell) [RHEL-78202] - rqspinlock: Add macros for rqspinlock usage (Gregory Bell) [RHEL-78202] - rqspinlock: Add basic support for CONFIG_PARAVIRT (Gregory Bell) [RHEL-78202] - rqspinlock: Add a test-and-set fallback (Gregory Bell) [RHEL-78202] - rqspinlock: Add deadlock detection and recovery (Gregory Bell) [RHEL-78202] - rqspinlock: Protect waiters in trylock fallback from stalls (Gregory Bell) [RHEL-78202] - rqspinlock: Protect waiters in queue from stalls (Gregory Bell) [RHEL-78202] - rqspinlock: Protect pending bit owners from stalls (Gregory Bell) [RHEL-78202] - rqspinlock: Hardcode cond_acquire loops for arm64 (Gregory Bell) [RHEL-78202] - rqspinlock: Add support for timeouts (Gregory Bell) [RHEL-78202] - rqspinlock: Drop PV and virtualization support (Gregory Bell) [RHEL-78202] - rqspinlock: Add rqspinlock.h header (Gregory Bell) [RHEL-78202] - locking: Copy out qspinlock.c to kernel/bpf/rqspinlock.c (Gregory Bell) [RHEL-78202] - locking: Allow obtaining result of arch_mcs_spin_lock_contended (Gregory Bell) [RHEL-78202] - locking: Move common qspinlock helpers to a private header (Gregory Bell) [RHEL-78202] - selftests/bpf: Test kfuncs that set and remove xattr from BPF programs (Gregory Bell) [RHEL-78202] - bpf: fs/xattr: Add BPF kfuncs to set and remove xattrs (Gregory Bell) [RHEL-78202] - selftests/bpf: Extend test fs_kfuncs to cover security.bpf. xattr names (Gregory Bell) [RHEL-78202] - fs/xattr: bpf: Introduce security.bpf. xattr name prefix (Gregory Bell) [RHEL-78202] - bpf: clarify a misleading verifier error message (Gregory Bell) [RHEL-78202] - selftests/bpf: Add selftest for attaching fexit to __noreturn functions (Gregory Bell) [RHEL-78202] - bpf: Reject attaching fexit/fmod_ret to __noreturn functions (Gregory Bell) [RHEL-78202] - bpf: Only fails the busy counter check in bpf_cgrp_storage_get if it creates storage (Gregory Bell) [RHEL-78202] - locking: Move MCS struct definition to public header (Gregory Bell) [RHEL-78202] - bpf: Make perf_event_read_output accessible in all program types. (Gregory Bell) [RHEL-78202] - bpftool: Using the right format specifiers (Gregory Bell) [RHEL-78202] - bpftool: Add -Wformat-signedness flag to detect format errors (Gregory Bell) [RHEL-78202] - selftests/bpf: Test freplace from user namespace (Gregory Bell) [RHEL-78202] - libbpf: Pass BPF token from find_prog_btf_id to BPF_BTF_GET_FD_BY_ID (Gregory Bell) [RHEL-78202] - bpf: Return prog btf_id without capable check (Gregory Bell) [RHEL-78202] - bpf: BPF token support for BPF_BTF_GET_FD_BY_ID (Gregory Bell) [RHEL-78202] - bpf, x86: Fix objtool warning for timed may_goto (Gregory Bell) [RHEL-78202] - bpf: Check map->record at the beginning of check_and_free_fields() (Gregory Bell) [RHEL-78202] - selftests/bpf: Fix string read in strncmp benchmark (Gregory Bell) [RHEL-78202] - selftests/bpf: Fix sockopt selftest failure on powerpc (Gregory Bell) [RHEL-78202] - selftests/bpf: Fix arena_spin_lock compilation on PowerPC (Gregory Bell) [RHEL-78202] - bpf: bpftool: Setting error code in do_loader() (Gregory Bell) [RHEL-78202] - selftests/bpf: Fix selection of static vs. dynamic LLVM (Gregory Bell) [RHEL-78202] - bpf: preload: Add MODULE_DESCRIPTION (Gregory Bell) [RHEL-78202] - selftests: bpf: fix duplicate selftests in cpumask_success. (Gregory Bell) [RHEL-78202] - selftests/bpf: Convert comma to semicolon (Gregory Bell) [RHEL-78202] - bpf: fix missing kdoc string fields in cpumask.c (Gregory Bell) [RHEL-78202] - selftests: bpf: add bpf_cpumask_populate selftests (Gregory Bell) [RHEL-78202] - bpf: add kfunc for populating cpumask bits (Gregory Bell) [RHEL-78202] - selftests/bpf: Fix cap_enable_effective() return code (Gregory Bell) [RHEL-78202] - selftests/bpf: Add tests for arena spin lock (Gregory Bell) [RHEL-78202] - selftests/bpf: Introduce arena spin lock (Gregory Bell) [RHEL-78202] - selftests/bpf: Introduce cond_break_label (Gregory Bell) [RHEL-78202] - bpf, docs: Fix broken link to renamed bpf_iter_task_vmas.c (Gregory Bell) [RHEL-78202] - bpf: correct use/def for may_goto instruction (Gregory Bell) [RHEL-78202] - selftests/bpf: test cases for compute_live_registers() (Gregory Bell) [RHEL-78202] - bpf: use register liveness information for func_states_equal (Gregory Bell) [RHEL-78202] - bpf: simple DFA-based live registers analysis (Gregory Bell) [RHEL-78202] - bpf: get_call_summary() utility function (Gregory Bell) [RHEL-78202] - bpf: jmp_offset() and verbose_insn() utility functions (Gregory Bell) [RHEL-78202] - selftests/bpf: Add selftests for load-acquire and store-release instructions (Gregory Bell) [RHEL-78202] - bpf, x86: Support load-acquire and store-release instructions (Gregory Bell) [RHEL-78202] - bpf, arm64: Support load-acquire and store-release instructions (Gregory Bell) [RHEL-78202] - arm64: insn: Add load-acquire and store-release instructions (Gregory Bell) [RHEL-78202] - arm64: insn: Add BIT(23) to {load,store}_ex's mask (Gregory Bell) [RHEL-78202] - bpf, x86: Add x86 JIT support for timed may_goto (Gregory Bell) [RHEL-78202] - bpf: Add verifier support for timed may_goto (Gregory Bell) [RHEL-78202] - bpf: Introduce load-acquire and store-release instructions (Gregory Bell) [RHEL-78202] - selftests/bpf: Add tests for bpf_object__prepare (Gregory Bell) [RHEL-78202] - libbpf: Split bpf object load into prepare/load (Gregory Bell) [RHEL-78202] - libbpf: Introduce more granular state for bpf_object (Gregory Bell) [RHEL-78202] - libbpf: Use map_is_created helper in map setters (Gregory Bell) [RHEL-78202] - bpf: Factor out check_load_mem() and check_store_reg() (Gregory Bell) [RHEL-78202] - bpf: Factor out check_atomic_rmw() (Gregory Bell) [RHEL-78202] - bpf: Factor out atomic_ptr_type_ok() (Gregory Bell) [RHEL-78202] - bpf: no longer acquire map_idr_lock in bpf_map_inc_not_zero() (Gregory Bell) [RHEL-78202] - veristat: Report program type guess results to sdterr (Gregory Bell) [RHEL-78202] - veristat: Strerror expects positive number (errno) (Gregory Bell) [RHEL-78202] - veristat: @files-list.txt notation for object files list (Gregory Bell) [RHEL-78202] - selftests/bpf: Add tests for extending sleepable global subprogs (Gregory Bell) [RHEL-78202] - selftests/bpf: Test sleepable global subprogs in atomic contexts (Gregory Bell) [RHEL-78202] - bpf: Summarize sleepable global subprogs (Gregory Bell) [RHEL-78202] - bpf/selftests: test_select_reuseport_kern: Remove unused header (Gregory Bell) [RHEL-78202] - selftests/bpf: Fixes for test_maps test (Gregory Bell) [RHEL-78202] - selftests/bpf: Add selftests allowing cgroup prog pre-ordering (Gregory Bell) [RHEL-78202] - bpf: Allow pre-ordering for bpf cgroup progs (Gregory Bell) [RHEL-78202] - selftests/bpf: Allow auto port binding for bpf nf (Gregory Bell) [RHEL-78202] - selftests/bpf: Allow auto port binding for cgroup connect (Gregory Bell) [RHEL-78202] - selftests/bpf: Add tests for bpf_dynptr_copy (Gregory Bell) [RHEL-78202] - bpf/helpers: Introduce bpf_dynptr_copy kfunc (Gregory Bell) [RHEL-78202] - bpf/helpers: Refactor bpf_dynptr_read and bpf_dynptr_write (Gregory Bell) [RHEL-78202] - selftests/bpf: Introduce veristat test (Gregory Bell) [RHEL-78202] - selftests/bpf: Implement setting global variables in veristat (Gregory Bell) [RHEL-78202] - selftests/bpf: Test bpf_usdt_arg_size() function (Gregory Bell) [RHEL-78202] - libbpf: Implement bpf_usdt_arg_size BPF function (Gregory Bell) [RHEL-78202] - bpf: Fix deadlock between rcu_tasks_trace and event_mutex. (Gregory Bell) [RHEL-78202] - docs/bpf: Document some special sdiv/smod operations (Gregory Bell) [RHEL-78202] - selftests/bpf: Test gen_pro/epilogue that generate kfuncs (Gregory Bell) [RHEL-78202] - bpf: Search and add kfuncs in struct_ops prologue and epilogue (Gregory Bell) [RHEL-78202] - bpf: abort verification if env->cur_state->loop_entry != NULL (Gregory Bell) [RHEL-78202] - kbuild, bpf: Correct pahole version that supports distilled base btf feature (Gregory Bell) [RHEL-78202] - libbpf: Fix out-of-bound read (Gregory Bell) [RHEL-78202] - bpf: Fix kmemleak warning for percpu hashmap (Gregory Bell) [RHEL-78202] - bpf: arm64: Silence "UBSAN: negation-overflow" warning (Gregory Bell) [RHEL-78202] - bpf: Refactor check_ctx_access() (Gregory Bell) [RHEL-78202] - selftests/bpf: Test struct_ops program with __ref arg calling bpf_tail_call (Gregory Bell) [RHEL-78202] - bpf: Do not allow tail call in strcut_ops program with __ref argument (Gregory Bell) [RHEL-78202] - libbpf: Fix hypothetical STT_SECTION extern NULL deref case (Gregory Bell) [RHEL-78202] - selftests/bpf: Add tests for bpf_copy_from_user_task_str (Gregory Bell) [RHEL-78202] - bpf: Add bpf_copy_from_user_task_str() kfunc (Gregory Bell) [RHEL-78202] - mm: Add copy_remote_vm_str() for readng C strings from remote VM (Gregory Bell) [RHEL-78202] - libbpf: Wrap libbpf API direct err with libbpf_err (Gregory Bell) [RHEL-78202] - selftests/bpf: ns_current_pid_tgid: Use test_progs's ns_ feature (Gregory Bell) [RHEL-78202] - selftests/bpf: tc_links/tc_opts: Unserialize tests (Gregory Bell) [RHEL-78202] - selftests/bpf: Optionally open a dedicated namespace to run test in it (Gregory Bell) [RHEL-78202] - selftests/bpf: ns_current_pid_tgid: Rename the test function (Gregory Bell) [RHEL-78202] - bpf: fix env->peak_states computation (Gregory Bell) [RHEL-78202] - bpf: free verifier states when they are no longer referenced (Gregory Bell) [RHEL-78202] - bpf: use list_head to track explored states and free list (Gregory Bell) [RHEL-78202] - bpf: do not update state->loop_entry in get_loop_entry() (Gregory Bell) [RHEL-78202] - bpf: make state->dfs_depth < state->loop_entry->dfs_depth an invariant (Gregory Bell) [RHEL-78202] - bpf: detect infinite loop in get_loop_entry() (Gregory Bell) [RHEL-78202] - selftests/bpf: check states pruning for deeply nested iterator (Gregory Bell) [RHEL-78202] - bpf: don't do clean_live_states when state->loop_entry->branches > 0 (Gregory Bell) [RHEL-78202] - selftests/bpf: test correct loop_entry update in copy_verifier_state (Gregory Bell) [RHEL-78202] - bpf: copy_verifier_state() should copy 'loop_entry' field (Gregory Bell) [RHEL-78202] - selftests/bpf: Test returning referenced kptr from struct_ops programs (Gregory Bell) [RHEL-78202] - bpf: Allow struct_ops prog to return referenced kptr (Gregory Bell) [RHEL-78202] - selftests/bpf: Test referenced kptr arguments of struct_ops programs (Gregory Bell) [RHEL-78202] - bpf: Support getting referenced kptr from struct_ops argument (Gregory Bell) [RHEL-78202] - bpf: Make every prog keep a copy of ctx_arg_info (Gregory Bell) [RHEL-78202] - selftests/bpf: add test for LDX/STX/ST relocations over array field (Gregory Bell) [RHEL-78202] - libbpf: fix LDX/STX/ST CO-RE relocation size adjustment logic (Gregory Bell) [RHEL-78202] - selftests/bpf: Add selftest for may_goto (Gregory Bell) [RHEL-78202] - selftests/bpf: Introduce __load_if_JITed annotation for tests (Gregory Bell) [RHEL-78202] - bpf: Fix array bounds error with may_goto (Gregory Bell) [RHEL-78202] - bpftool: Check map name length when map create (Gregory Bell) [RHEL-78202] - bpf: lsm: Add two more sleepable hooks (Gregory Bell) [RHEL-78202] - bpf: Sync uapi bpf.h header for the tooling infra (Gregory Bell) [RHEL-78202] - selftests/bpf: Select NUMA_NO_NODE to create map (Gregory Bell) [RHEL-78202] - selftests/bpf: Define SYS_PREFIX for powerpc (Gregory Bell) [RHEL-78202] - bpftool: Using the right format specifiers (Gregory Bell) [RHEL-78202] - bpf: define KF_ARENA_* flags for bpf_arena kfuncs (Gregory Bell) [RHEL-78202] - selftests/bpf: Correct the check of join cgroup (Gregory Bell) [RHEL-78202] - bpf: Add comment about helper freeze (Gregory Bell) [RHEL-78202] - selftests/bpf: Support dynamically linking LLVM if static is not available (Gregory Bell) [RHEL-78202] - selftests/bpf: Add a BTF verification test for kflagged type_tag (Gregory Bell) [RHEL-78202] - bpf: Allow kind_flag for BTF type and decl tags (Gregory Bell) [RHEL-78202] - selftests/bpf: Add a btf_dump test for type_tags (Gregory Bell) [RHEL-78202] - libbpf: Check the kflag of type tags in btf_dump (Gregory Bell) [RHEL-78202] - docs/bpf: Document the semantics of BTF tags with kind_flag (Gregory Bell) [RHEL-78202] - libbpf: Introduce kflag for type_tags and decl_tags in BTF (Gregory Bell) [RHEL-78202] - bpftool: Fix readlink usage in get_fd_type (Gregory Bell) [RHEL-78202] - bpf: Use kallsyms to find the function name of a struct_ops's stub function (Gregory Bell) [RHEL-78202] - redhat/configs: automotive: Disable CONFIG_USERFAULTFD config (Dorinda Bassey) [RHEL-87371] - tcp_bpf: Fix the sk_mem_uncharge logic in tcp_bpf_sendmsg (CKI Backport Bot) [RHEL-79008] {CVE-2024-56633} - cxl/Documentation: Remove 'mixed' from sysfs mode doc (John W. Linville) [RHEL-107284] - cxl: mce: fix typo "notifer" (John W. Linville) [RHEL-107284] - fwctl/cxl: Fix uuid_t usage in uapi (John W. Linville) [RHEL-107284] - cxl/edac: Fix potential memory leak issues (John W. Linville) [RHEL-107284] - cxl/edac: Fix the min_scrub_cycle of a region miscalculation (John W. Linville) [RHEL-107284] - cxl: fix return value in cxlctl_validate_set_features() (John W. Linville) [RHEL-107284] - cxl/edac: Support for finding memory operation attributes from the current boot (John W. Linville) [RHEL-107284] - cxl/edac: Add support for PERFORM_MAINTENANCE command (John W. Linville) [RHEL-107284] - cxl/edac: Add CXL memory device ECS control feature (John W. Linville) [RHEL-107284] - cxl/edac: Add CXL memory device patrol scrub control feature (John W. Linville) [RHEL-107284] - cxl: Update prototype of function get_support_feature_info() (John W. Linville) [RHEL-107284] - cxl/features: Remove the inline specifier from to_cxlfs() (John W. Linville) [RHEL-107284] - cxl/feature: Remove redundant code of get supported features (John W. Linville) [RHEL-107284] - Documentation: Update the CXL Maturity Map (John W. Linville) [RHEL-107284] - cxl: Sync up the driver-api/cxl documentation (John W. Linville) [RHEL-107284] - cxl: docs - access-coordinates doc fixups (John W. Linville) [RHEL-107284] - cxl: update documentation structure in prep for new docs (John W. Linville) [RHEL-107284] - cxl/hdm: Clean up a debug printk (John W. Linville) [RHEL-107284] - cxl: Add a dev_dbg() when a decoder was added to a port (John W. Linville) [RHEL-107284] - cxl/region: Add a dev_err() on missing target list entries (John W. Linville) [RHEL-107284] - cxl/region: Add a dev_warn() on registration failure (John W. Linville) [RHEL-107284] - cxl/region: Add function to find a port's switch decoder by range (John W. Linville) [RHEL-107284] - cxl/region: Factor out code to find a root decoder's region (John W. Linville) [RHEL-107284] - cxl/region: Factor out code to find the root decoder (John W. Linville) [RHEL-107284] - cxl/port: Replace put_cxl_root() by a cleanup helper (John W. Linville) [RHEL-107284] - cxl/region: Move find_cxl_root() to cxl_add_to_region() (John W. Linville) [RHEL-107284] - cxl/region: Avoid duplicate call of cxl_port_pick_region_decoder() (John W. Linville) [RHEL-107284] - cxl/region: Rename function to cxl_port_pick_region_decoder() (John W. Linville) [RHEL-107284] - cxl: Introduce parent_port_of() helper (John W. Linville) [RHEL-107284] - cxl/pci: Add comments to cxl_hdm_decode_init() (John W. Linville) [RHEL-107284] - cxl/pci: Moving code in cxl_hdm_decode_init() (John W. Linville) [RHEL-107284] - cxl: Remove else after return (John W. Linville) [RHEL-107284] - cxl/test: Address missing MODULE_DESCRIPTION warnings for cxl_test (John W. Linville) [RHEL-107284] - cxl/acpi: Verify CHBS length for CXL2.0 (John W. Linville) [RHEL-107284] - cxl: Remove always true condition for cxlctl_validate_hw_command() (John W. Linville) [RHEL-107284] - cxl/core/regs.c: Skip Memory Space Enable check for RCD and RCH Ports (John W. Linville) [RHEL-107284] - cxl/feature: Update out_len in set feature failure case (John W. Linville) [RHEL-107284] - cxl: Fix devm host device for CXL fwctl initialization (John W. Linville) [RHEL-107284] - cxl/pci: Drop the parameter is_port of cxl_gpf_get_dvsec() (John W. Linville) [RHEL-107284] - cxl/pci: Update Port GPF timeout only when the first EP attaching (John W. Linville) [RHEL-107284] - cxl/core: Fix caching dport GPF DVSEC issue (John W. Linville) [RHEL-107284] - cxl/region: Fix the first aliased address miscalculation (John W. Linville) [RHEL-107284] - cxl/test: Add Set Feature support to cxl_test (John W. Linville) [RHEL-107284] - cxl/test: Add Get Feature support to cxl_test (John W. Linville) [RHEL-107284] - cxl: Add support to handle user feature commands for set feature (John W. Linville) [RHEL-107284] - cxl: Add support to handle user feature commands for get feature (John W. Linville) [RHEL-107284] - cxl: Add support for fwctl RPC command to enable CXL feature commands (John W. Linville) [RHEL-107284] - cxl: Move cxl feature command structs to user header (John W. Linville) [RHEL-107284] - cxl: Add FWCTL support to CXL (John W. Linville) [RHEL-107284] - cxl/region: Quiet some dev_warn()s in extended linear cache setup (John W. Linville) [RHEL-107284] - cxl: Fix warning from emitting resource_size_t as long long int on 32bit systems (John W. Linville) [RHEL-107284] - cxl/test: Define a CFMWS capable of a 3 way HB interleave (John W. Linville) [RHEL-107284] - cxl/mem: Do not return error if CONFIG_CXL_MCE unset (John W. Linville) [RHEL-107284] - tools/testing/cxl: Set Shutdown State support (John W. Linville) [RHEL-107284] - cxl/pmem: Export dirty shutdown count via sysfs (John W. Linville) [RHEL-107284] - cxl/pmem: Rename cxl_dirty_shutdown_state() (John W. Linville) [RHEL-107284] - cxl/pci: Introduce cxl_gpf_get_dvsec() (John W. Linville) [RHEL-107284] - cxl/pci: Support Global Persistent Flush (GPF) (John W. Linville) [RHEL-107284] - cxl/pmem: debug invalid serial number data (John W. Linville) [RHEL-107284] - cxl/cdat: Remove redundant gp_port initialization (John W. Linville) [RHEL-107284] - cxl/memdev: Remove unused partition values (John W. Linville) [RHEL-107284] - cxl/region: Drop goto pattern of construct_region() (John W. Linville) [RHEL-107284] - cxl/region: Drop goto pattern in cxl_dax_region_alloc() (John W. Linville) [RHEL-107284] - cxl/core: Use guard() to drop goto pattern of cxl_dpa_alloc() (John W. Linville) [RHEL-107284] - cxl/core: Use guard() to drop the goto pattern of cxl_dpa_free() (John W. Linville) [RHEL-107284] - cxl/memdev: cxl_memdev_ioctl() cleanup (John W. Linville) [RHEL-107284] - cxl/core: cxl_mem_sanitize() cleanup (John W. Linville) [RHEL-107284] - cxl/core: Use guard() to replace open-coded down_read/write() (John W. Linville) [RHEL-107284] - cxl: Add mce notifier to emit aliased address for extended linear cache (John W. Linville) [RHEL-107284] - cxl: Add extended linear cache address alias emission for cxl events (John W. Linville) [RHEL-107284] - acpi/hmat / cxl: Add extended linear cache support for CXL (John W. Linville) [RHEL-107284] - cxl: Setup exclusive CXL features that are reserved for the kernel (John W. Linville) [RHEL-107284] - cxl/mbox: Add SET_FEATURE mailbox command (John W. Linville) [RHEL-107284] - cxl/mbox: Add GET_FEATURE mailbox command (John W. Linville) [RHEL-107284] - cxl/test: Add Get Supported Features mailbox command support (John W. Linville) [RHEL-107284] - cxl: Add Get Supported Features command for kernel usage (John W. Linville) [RHEL-107284] - cxl: Enumerate feature commands (John W. Linville) [RHEL-107284] - cxl: Refactor user ioctl command path from mds to mailbox (John W. Linville) [RHEL-107284] - cxl/port: Constify 'struct bin_attribute' (John W. Linville) [RHEL-107284] - cxl: Cleanup partition size and perf helpers (John W. Linville) [RHEL-107284] - cxl: Kill enum cxl_decoder_mode (John W. Linville) [RHEL-107284] - cxl: Make cxl_dpa_alloc() DPA partition number agnostic (John W. Linville) [RHEL-107284] - cxl: Introduce 'struct cxl_dpa_partition' and 'struct cxl_range_info' (John W. Linville) [RHEL-107284] - cxl: Introduce to_{ram,pmem}_{res,perf}() helpers (John W. Linville) [RHEL-107284] - cxl: Remove the CXL_DECODER_MIXED mistake (John W. Linville) [RHEL-107284] - EDAC/amd64: Fix size calculation for Non-Power-of-Two DIMMs (Joel Savitz) [RHEL-101168] - vsock: Fix transport_* TOCTOU (CKI Backport Bot) [RHEL-106016] {CVE-2025-38461} - cpufreq/amd-pstate: Fix a regression leading to EPP 0 after resume (Steve Best) [RHEL-106954] - cpufreq/amd-pstate: Add support for the "Requested CPU Min frequency" BIOS option (Steve Best) [RHEL-106954] - cpufreq/amd-pstate: Add offline, online and suspend callbacks for amd_pstate_driver (Steve Best) [RHEL-106954] - hwmon: (k10temp) Add support for Zen5 Ryzen Desktop (Steve Best) [RHEL-118516] - hwmon: (k10temp) add support for cyan skillfish (Steve Best) [RHEL-118516] - x86/topology: Implement topology_is_core_online() to address SMT regression (Mark Langsdorf) [RHEL-114092] - ACPI/IORT: Fix memory leak in iort_rmr_alloc_sids() (Mark Langsdorf) [RHEL-114092] - ACPI: pfr_update: Fix the driver update version check (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Fix resource leak by remove callback in .exit.text (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: fix potential NULL dereference in __einj_error_inject() (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Check if user asked for EINJV2 injection (Mark Langsdorf) [RHEL-114092] - ACPI: EC: Relax sanity check of the ECDT ID string (Mark Langsdorf) [RHEL-114092] - ACPI: processor: perflib: Move problematic pr->performance check (Mark Langsdorf) [RHEL-114092] - ACPI: Fix typos (Mark Langsdorf) [RHEL-114092] - ACPI/PCI: Remove space before newline (Mark Langsdorf) [RHEL-114092] - ACPI: processor: throttling: Remove space before newline (Mark Langsdorf) [RHEL-114092] - ACPI: processor: perflib: Fix initial _PPC limit application (Mark Langsdorf) [RHEL-114092] - ACPI: TAD: Replace sprintf() with sysfs_emit() (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: handle synchronous exceptions in task work (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: send SIGBUS to current task if synchronous memory error not recovered (Mark Langsdorf) [RHEL-114092] - ACPI: fan: Update debug message in fan_get_state_acpi4() (Mark Langsdorf) [RHEL-114092] - PCI/PM: Set power.strict_midlayer in pci_pm_init() (Mark Langsdorf) [RHEL-114092] - ACPI: PM: Set/clear power.strict_midlayer in prepare/complete (Mark Langsdorf) [RHEL-114092] - PM: sleep: Add strict_midlayer flag to struct dev_pm_info (Mark Langsdorf) [RHEL-114092] - PM: runtime: Introduce __rpm_get_driver_callback() (Mark Langsdorf) [RHEL-114092] - PM: Check power.needs_force_resume in pm_runtime_force_suspend() (Mark Langsdorf) [RHEL-114092] - PM: runtime: Clear power.needs_force_resume in pm_runtime_reinit() (Mark Langsdorf) [RHEL-114092] - PM: Make pm_runtime_force_resume() work with DPM_FLAG_SMART_SUSPEND (Mark Langsdorf) [RHEL-114092] - PM: Move two sleep-related functions under CONFIG_PM_SLEEP (Mark Langsdorf) [RHEL-114092] - PM: Use true/false as power.needs_force_resume values (Mark Langsdorf) [RHEL-114092] - ACPI: fan: Replace sprintf() with sysfs_emit() (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Fix trigger actions (Mark Langsdorf) [RHEL-114092] - ACPI: processor: fix acpi_object initialization (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: GHES: add TAINT_MACHINE_CHECK on GHES panic path (Mark Langsdorf) [RHEL-114092] - ACPI: LPSS: Remove AudioDSP related ID (Mark Langsdorf) [RHEL-114092] - ACPI: fan: Replace sprintf()/scnprintf() with sysfs_emit() in show() functions (Mark Langsdorf) [RHEL-114092] - ACPI: PM: Set .detach in acpi_general_pm_domain definition (Mark Langsdorf) [RHEL-114092] - ACPI: pfr_update: Add more debug information when firmware update failed (Mark Langsdorf) [RHEL-114092] - ACPI: proc: Prefer to use octal permission (Mark Langsdorf) [RHEL-114092] - ACPI: proc: Use str_enabled_disabled() helper (Mark Langsdorf) [RHEL-114092] - ACPI: proc: Remove unused header (Mark Langsdorf) [RHEL-114092] - ACPI: proc: Use correct format specifier and drop casting (Mark Langsdorf) [RHEL-114092] - ACPI: wakeup: Drop unneeded casting for sleep_state (Mark Langsdorf) [RHEL-114092] - ACPICA: Decrease `AcpiExTracePoint` verbosity (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Fix check and iounmap of uninitialized pointer p (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Fix less than zero comparison on a size_t variable (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: prevent memory corruption in error_type_set() (Mark Langsdorf) [RHEL-114092] - ACPICA: Refuse to evaluate a method if arguments are missing (Mark Langsdorf) [RHEL-114092] - ACPI: Enable CONFIG_ACPI_DEBUG by default (Mark Langsdorf) [RHEL-114092] - ACPI: DPTF: Support for Wildcat Lake (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Enable EINJv2 error injections (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Create debugfs files to enter device id and syndrome (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Discover EINJv2 parameters (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Add einjv2 extension struct (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Enable the discovery of EINJv2 capabilities (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Fix kernel test sparse warnings (Mark Langsdorf) [RHEL-114092] - ACPICA: actbl1: Add EINJv2 get error type action (Mark Langsdorf) [RHEL-114092] - ACPICA: actbl1: Update values to hex to follow ACPI specs (Mark Langsdorf) [RHEL-114092] - ACPI: resource: Use IRQ override on MACHENIKE 16P (Mark Langsdorf) [RHEL-114092] - ACPI: EC: Ignore ECDT tables with an invalid ID string (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Fix NULL pointer dereference when nosmp is used (Mark Langsdorf) [RHEL-114092] - ACPI: PAD: Update arguments of mwait_idle_with_hints() (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Do not fail einj_init() on faux_device_create() failure (Mark Langsdorf) [RHEL-114092] - ACPI: processor: Rescan "dead" SMT siblings during initialization (Mark Langsdorf) [RHEL-114092] - ACPICA: Switch back to using strncpy() in acpi_ut_safe_strncpy() (Mark Langsdorf) [RHEL-114092] - ACPI: MRRM: Silence error code static checker warning (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Clean up on error in einj_probe() (Mark Langsdorf) [RHEL-114092] - ACPI: MRRM: Fix default max memory region (Mark Langsdorf) [RHEL-114092] - ACPI: irq: Introduce acpi_get_gsi_dispatcher() (Mark Langsdorf) [RHEL-114092] - ACPI: bus: Bail out if acpi_kobj registration fails (Mark Langsdorf) [RHEL-114092] - ACPI: thermal: Execute _SCP before reading trip points (Mark Langsdorf) [RHEL-114092] - ACPI: OSI: Stop advertising support for "3.0 _SCP Extensions" (Mark Langsdorf) [RHEL-114092] - ACPI: tables: Improve logging around acpi_initialize_tables() (Mark Langsdorf) [RHEL-114092] - ACPI: VIOT: Remove (explicitly) unused header (Mark Langsdorf) [RHEL-114092] - ACPI: MRRM: Add /sys files to describe memory ranges (Mark Langsdorf) [RHEL-114092] - ACPI: MRRM: Minimal parse of ACPI MRRM table (Mark Langsdorf) [RHEL-114092] - ACPICA: Update copyright year (Mark Langsdorf) [RHEL-114092] - ACPICA: Replace strncpy() with memcpy() (Mark Langsdorf) [RHEL-114092] - ACPICA: infrastructure: Add new DMT_BUF types and shorten a long name (Tony Luck) [RHEL-114092] - ACPICA: Utilities: Fix spelling mistake "Incremement" -> "Increment" (Mark Langsdorf) [RHEL-114092] - ACPICA: utilities: Fix overflow check in vsnprintf() (Mark Langsdorf) [RHEL-114092] - ACPICA: MRRM: Some cleanups (Mark Langsdorf) [RHEL-114092] - ACPICA: actbl2.h: MRRM: Add typedef and other definitions (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Remove redundant calls to einj_get_available_error_type() (Mark Langsdorf) [RHEL-114092] - ACPI: EC: Add device to acpi_ec_no_wakeup[] qurik list (Mark Langsdorf) [RHEL-114092] - ACPI: resource: fix a typo for MECHREVO in irq1_edge_low_force_override[] (Mark Langsdorf) [RHEL-114092] - ACPI: PPTT: Fix processor subtable walk (Mark Langsdorf) [RHEL-114092] - firmware: SDEI: Allow sdei initialization without ACPI_APEI_GHES (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Fix probe error message (Mark Langsdorf) [RHEL-114092] - ACPICA: Apply pack(1) to union aml_resource (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Add three functions related to autonomous selection (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Modify cppc_get_auto_sel_caps() to cppc_get_auto_sel() (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Refactor register value get and set ABIs (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Add cppc_set_reg_val() (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Extract cppc_get_reg_val_in_pcc() (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Rename cppc_get_perf() to cppc_get_reg_val() (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Optimize cppc_get_perf() (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Add IS_OPTIONAL_CPC_REG macro to judge if a cpc_reg is optional (Mark Langsdorf) [RHEL-114092] - ACPI: CPPC: Simplify PCC shared memory region handling (Mark Langsdorf) [RHEL-114092] - ACPI: PCC: Simplify PCC shared memory region handling (Mark Langsdorf) [RHEL-114092] - mailbox: pcc: Refactor and simplify check_and_ack() (Mark Langsdorf) [RHEL-114092] - mailbox: pcc: Always map the shared memory communication address (Mark Langsdorf) [RHEL-114092] - mailbox: pcc: Refactor error handling in irq handler into separate function (Mark Langsdorf) [RHEL-114092] - mailbox: pcc: Use acpi_os_ioremap() instead of ioremap() (Mark Langsdorf) [RHEL-114092] - mailbox: pcc: Return early if no GAS register from pcc_mbox_cmd_complete_check (Mark Langsdorf) [RHEL-114092] - mailbox: pcc: Drop unnecessary endianness conversion of pcc_hdr.flags (Mark Langsdorf) [RHEL-114092] - mailbox: pcc: Always clear the platform ack interrupt first (Mark Langsdorf) [RHEL-114092] - mailbox: pcc: Fix the possible race in updation of chan_in_use flag (Mark Langsdorf) [RHEL-114092] - mailbox: pcc: Check before sending MCTP PCC response ACK (Mark Langsdorf) [RHEL-114092] - ACPICA: Add support for printing AML arguments when trace point enabled (Mark Langsdorf) [RHEL-114092] - ACPI: processor: idle: Remove redundant pr->power.count assignment (Mark Langsdorf) [RHEL-114092] - ACPI: APEI: EINJ: Transition to the faux device interface (Mark Langsdorf) [RHEL-114092] - ACPI: processor: idle: Set pr->flags.power unconditionally (Mark Langsdorf) [RHEL-114092] - ACPI: battery: Round capacity percengate to closest integer (Mark Langsdorf) [RHEL-114092] - ACPICA: exserial: don't forget to handle FFixedHW opregions for reading (Mark Langsdorf) [RHEL-114092] - ACPI: processor: idle: Remove obsolete comment (Mark Langsdorf) [RHEL-114092] - ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls (Mark Langsdorf) [RHEL-114092] - ACPI: EC: Set ec_no_wakeup for Lenovo Go S (Mark Langsdorf) [RHEL-114092] - x86/acpi: Don't limit CPUs to 1 for Xen PV guests due to disabled ACPI (Mark Langsdorf) [RHEL-114092] - ACPI: video: Handle fetching EDID as ACPI_TYPE_PACKAGE (Mark Langsdorf) [RHEL-114092] - ACPI: processor: idle: Return an error if both P_LVL{2,3} idle states are invalid (Mark Langsdorf) [RHEL-114092] - ACPI: platform_profile: Optimize _aggregate_choices() (Mark Langsdorf) [RHEL-114092] - ACPI: x86: Extend Lenovo Yoga Tab 3 quirk with skip GPIO event-handlers (Mark Langsdorf) [RHEL-114092] - ACPI: resource: Skip IRQ override on ASUS Vivobook 14 X1404VAP (Mark Langsdorf) [RHEL-114092] - ACPI: PNP: Add Intel OC Watchdog IDs to non-PNP device list (Mark Langsdorf) [RHEL-114092] - ACPI: NUMA: Use str_enabled_disabled() helper function (Mark Langsdorf) [RHEL-114092] - ACPICA: Fix warnings from PR #295 merge (Mark Langsdorf) [RHEL-114092] - ACPICA: fix acpi parse and parseext cache leaks (Mark Langsdorf) [RHEL-114092] - ACPICA: fix acpi operand cache leak in dswstate.c (Mark Langsdorf) [RHEL-114092] - ACPI: platform_profile: Improve platform_profile_unregister() (Mark Langsdorf) [RHEL-114092] - ACPI: fan: cleanup resources in the error path of .probe() (Mark Langsdorf) [RHEL-114092] - ACPI: sysfs: Constify 'struct bin_attribute' (Mark Langsdorf) [RHEL-114092] - ACPI: BGRT: Constify 'struct bin_attribute' (Mark Langsdorf) [RHEL-114092] - ACPI: processor_idle: Use acpi_idle_play_dead() for all C-states (Mark Langsdorf) [RHEL-114092] - scsi: mpi3mr: Update driver version to 8.15.0.5.50 (Chandrakanth Patil) [RHEL-111654] - scsi: mpi3mr: Fix premature TM timeouts on virtual drives (Chandrakanth Patil) [RHEL-111654] - scsi: mpi3mr: Update MPI headers to revision 37 (Chandrakanth Patil) [RHEL-111654] - scsi: mpi3mr: Fix I/O failures during controller reset (Chandrakanth Patil) [RHEL-111654] - scsi: mpi3mr: Fix controller init failure on fault during queue creation (Chandrakanth Patil) [RHEL-111654] - scsi: mpi3mr: Fix device loss during enclosure reboot due to zero link speed (Chandrakanth Patil) [RHEL-111654] - scsi: mpi3mr: Serialize admin queue BAR writes on 32-bit systems (Chandrakanth Patil) [RHEL-111654] - scsi: mpi3mr: Fix race between config read submit and interrupt completion (Chandrakanth Patil) [RHEL-111654] - scsi: mpi3mr: Correctly handle ATA device errors (Chandrakanth Patil) [RHEL-111654] - selftests: tls: add tests for zero-length records (CKI Backport Bot) [RHEL-114328] {CVE-2025-39682} - tls: fix handling of zero-length records on the rx_list (CKI Backport Bot) [RHEL-114328] {CVE-2025-39682} - cxgb4: Avoid removal of uninserted tid (Jakub Ramaseuski) [RHEL-75570] - SUNRPC: call xs_sock_process_cmsg for all cmsg (Scott Mayhew) [RHEL-112414] - sctp: linearize cloned gso packets in sctp_rcv (CKI Backport Bot) [RHEL-113338] {CVE-2025-38718} - kabi: enable check-kabi (Čestmír Kalina) [RHEL-113009] - kabi: add symbol zgid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol zap_vma_ptes to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xsk_uses_need_wakeup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xsk_tx_release to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xsk_tx_peek_release_desc_batch to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xsk_tx_peek_desc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xsk_tx_completed to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xsk_set_tx_need_wakeup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xsk_set_rx_need_wakeup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xsk_get_pool_from_qid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xsk_clear_rx_need_wakeup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xp_set_rxq_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xp_raw_get_dma to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xp_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xp_fill_cb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xp_dma_unmap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xp_dma_map to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xp_can_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xp_alloc_batch to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xp_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xfrm_aead_get_byname to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_warn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_set_features_flag to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_rxq_info_unreg_mem_model to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_rxq_info_unreg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_rxq_info_reg_mem_model to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __xdp_rxq_info_reg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_rxq_info_is_reg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_return_frame_rx_napi to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_return_frame_bulk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_return_frame to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_return_buff to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_master_redirect to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_flush_frame_bulk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_features_set_redirect_target to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_features_clear_redirect_target to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_do_redirect to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_do_flush to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xdp_convert_zc_to_xdp_frame to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xa_store to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xa_load to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __xa_insert to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xa_find_after to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xa_find to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xa_erase to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol xa_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __xa_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_return_thunk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_rsi to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_rdx to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_rdi to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_rcx to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_rbx to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_rbp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_rax to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_r9 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_r8 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_r15 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_r14 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_r13 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_r12 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_r11 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __x86_indirect_thunk_r10 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol x86_cpu_to_apicid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __warn_printk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol wake_up_process to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __wake_up_locked to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __wake_up to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol wait_for_completion_timeout to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol wait_for_completion_io_timeout to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol wait_for_completion_interruptible to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol wait_for_completion to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vzalloc_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vsprintf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vsnprintf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vscnprintf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vm_munmap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vm_mmap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vmemmap_base to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vmalloc_to_page to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vmalloc_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __vmalloc_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vmalloc_node_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vmalloc_base to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vmalloc_array_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vlan_dev_vlan_id to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vlan_dev_real_dev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __virt_addr_valid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vfs_unlink to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vfs_mknod to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vfs_mkdir to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vfs_fsync_range to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol vfree to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_undefined to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_teardown_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_setup_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_possible_blades to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __uv_hub_info_list to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_get_hubless_system to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __uv_cpu_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_bios_obj_count to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_bios_install_heap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_bios_get_pci_topology to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_bios_get_master_nasid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_bios_get_heapsize to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_bios_get_geoinfo to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_bios_enum_ports to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol uv_bios_enum_objs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol usleep_range_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol up_write to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol up_read to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol up to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_sysctl_table to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_switchdev_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_switchdev_blocking_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_reboot_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_netevent_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_netdevice_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_netdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_kprobe to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_inetaddr_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_inet6addr_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_chrdev_region to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __unregister_chrdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol unregister_blkdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol udp_tunnel_nic_ops to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __udelay to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_unregister_driver to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_termios_encode_baud_rate to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_std_termios to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_register_driver to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_port_link_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_port_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_port_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_flip_buffer_push to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_driver_kref_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tty_buffer_request_room to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __tty_alloc_driver to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tsc_khz to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol try_module_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __trace_trigger_soft_disabled to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __trace_set_current_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_seq_putc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_seq_printf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_raw_output_prep to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_print_bitmask_seq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __tracepoint_xdp_exception to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __tracepoint_write_msr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __tracepoint_sched_set_state_tp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __tracepoint_read_msr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __tracepoint_mmap_lock_start_locking to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __tracepoint_mmap_lock_released to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __tracepoint_mmap_lock_acquire_returned to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_handle_return to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_event_reg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_event_raw_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_event_printf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_event_ignore_this_pid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_event_buffer_reserve to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_event_buffer_commit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_array_set_clr_event to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_array_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol trace_array_get_by_name to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol touch_softlockup_watchdog to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tls_validate_xmit_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tls_get_record to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tls_encrypt_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tls_device_sk_destruct to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol timer_shutdown_sync to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol timer_shutdown to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol timer_delete_sync to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol timer_delete to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol timecounter_read to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol timecounter_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol timecounter_cyc2time to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol time64_to_tm to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol this_cpu_off to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tcp_gro_complete to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __tasklet_schedule to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tasklet_kill to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol tasklet_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sys_tz to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol system_wq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol system_unbound_wq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol system_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sysfs_streq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sysfs_remove_group to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sysfs_remove_file_ns to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sysfs_remove_bin_file to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __sysfs_match_string to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sysfs_emit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sysfs_create_group to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sysfs_create_file_ns to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sysfs_create_bin_file to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol synchronize_rcu to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol synchronize_net to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol synchronize_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sync_blockdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __symbol_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __symbol_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol switchdev_handle_port_obj_del to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol switchdev_handle_port_obj_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol switchdev_handle_port_attr_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __sw_hweight64 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __sw_hweight32 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol submit_bio_noacct to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol submit_bio to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strstr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strsep to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strrchr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strnlen to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strncpy_from_user to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strncpy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strncmp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strncasecmp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strlen to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strlcat to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strim to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strcspn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strcpy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strcmp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strchr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strcat to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol strcasecmp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol static_key_slow_inc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol static_key_slow_dec to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol static_key_enable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol static_key_disable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol static_key_count to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol starget_for_each_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __stack_chk_fail to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sscanf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sprintf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sort to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol softnet_data to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sock_gen_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sn_region_size to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol snprintf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sn_partition_id to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol smp_call_function_single_async to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol smp_call_function_single to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol smp_call_function_many to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol smp_call_function to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol slab_build_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sk_skb_reason_drop to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sk_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_tstamp_tx to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_realloc_headroom to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_queue_tail to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_push to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_pull to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __skb_pad to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __skb_gso_segment to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __skb_flow_dissect to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_dequeue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_copy_header to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_copy_expand to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_copy_bits to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_copy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_clone_tx_timestamp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_clone to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_checksum_help to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol skb_add_rx_frag_netmem to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sk_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sized_strscpy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol single_release to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol single_open to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol simple_write_to_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol simple_strtoul to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol simple_strtol to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol simple_read_from_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol simple_open to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol simple_attr_release to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol simple_attr_open to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol si_meminfo to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_pcopy_to_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_pcopy_from_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_next to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_nents to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_miter_stop to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_miter_start to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_miter_next to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_copy_to_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_copy_from_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sg_copy_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol set_user_nice to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol set_normalized_timespec64 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol set_memory_wc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol set_cpus_allowed_ptr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol set_capacity to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol set_blocksize to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol seq_write to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol seq_release to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol seq_read to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __seq_puts to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol seq_putc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol seq_printf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol seq_open to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol seq_lseek to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol send_sig_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol send_sig to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol secure_tcpv6_seq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol secure_tcp_seq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol secpath_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sdev_prefix_printk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __SCT__tp_func_xdp_exception to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __SCT__preempt_schedule_notrace to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __SCT__preempt_schedule to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __SCT__might_resched to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __SCT__cond_resched to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_unblock_requests to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_scan_target to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_scan_host to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_sanitize_inquiry_string to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_rescan_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_remove_target to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_remove_host to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_remove_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_print_command to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_normalize_sense to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsilun_to_int to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __scsi_iterate_devices to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_is_sdev_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_is_host_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_is_fc_rport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_host_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_host_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_host_busy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_host_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_get_vpd_page to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_done to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_dma_unmap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_dma_map to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_device_type to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_device_set_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_device_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_device_lookup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_device_from_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_change_queue_depth to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_build_sense_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_build_sense to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_block_requests to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_add_host_with_dma to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scsi_add_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scnprintf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol scmd_printk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __SCK__tp_func_xdp_exception to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol schedule_timeout_uninterruptible to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol schedule_timeout to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol schedule to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sched_clock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_rphy_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_rphy_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_remove_host to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_release_transport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_port_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_port_delete_phy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_port_delete to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_port_alloc_num to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_port_add_phy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_port_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_phy_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_phy_delete to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_phy_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_phy_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_expander_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_end_device_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_attach_transport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol sas_ata_ncq_prio_supported to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rtnl_unlock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rtnl_trylock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rtnl_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rtnl_is_locked to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rps_may_expire_flow to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol round_jiffies to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol root_device_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __root_device_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rht_bucket_nested_insert to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rht_bucket_nested to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __rht_bucket_nested to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rhashtable_walk_stop to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rhashtable_walk_start_check to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rhashtable_walk_next to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rhashtable_walk_exit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rhashtable_walk_enter to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rhashtable_insert_slow to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rhashtable_init_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rhashtable_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol reset_devices to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol request_threaded_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __request_region to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __request_module to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol request_firmware_nowait to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol request_firmware to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rep_movs_alternative to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol remove_wait_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol remove_proc_entry to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol remap_pfn_range to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __release_region to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol release_firmware to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_switchdev_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_switchdev_blocking_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_reboot_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_netevent_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_netdevice_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_netdevice to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_netdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_kprobe to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_inetaddr_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_inet6addr_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol register_chrdev_region to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __register_chrdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __register_blkdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __refrigerator to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol refcount_warn_saturate to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rdma_user_mmap_io to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rdma_user_mmap_entry_remove to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rdma_user_mmap_entry_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rdma_user_mmap_entry_insert to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rdma_user_mmap_entry_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rdma_read_gid_l2_fields to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rdma_query_gid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __rdma_block_iter_start to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __rdma_block_iter_next to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rdma_alloc_hw_stats_struct to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rcuref_get_slowpath to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __rcu_read_unlock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __rcu_read_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rb_next to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol rb_first to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_write_unlock_irqrestore to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_write_unlock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_write_lock_irqsave to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_write_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_spin_unlock_irqrestore to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_spin_unlock_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_spin_unlock_bh to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_spin_unlock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_spin_trylock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_spin_lock_irqsave to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_spin_lock_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_spin_lock_bh to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_spin_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_read_unlock_irqrestore to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_read_unlock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_read_lock_irqsave to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _raw_read_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ___ratelimit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol radix_tree_lookup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol queue_work_on to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol queue_limits_commit_update to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol queue_delayed_work_on to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol qdisc_reset to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pv_ops to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __put_user_nocheck_4 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __put_user_8 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __put_user_4 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __put_user_2 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol put_disk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __put_devmap_managed_folio_refs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol put_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptrs_per_p4d to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptp_schedule_worker to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptp_parse_header to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptp_find_pin to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptp_clock_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptp_clock_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptp_clock_index to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptp_clock_event to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptp_classify_raw to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ptp_cancel_worker_sync to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ___pskb_trim to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __pskb_pull_tail to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pskb_expand_head to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol proc_remove to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol proc_mkdir to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol proc_dostring to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol proc_create_data to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol proc_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol priv_to_devlink to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __printk_ratelimit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _printk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol print_hex_dump to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol prepare_to_wait_event to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol prepare_to_wait to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol prepare_creds to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pm_schedule_suspend to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __pm_runtime_resume to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __pm_runtime_idle to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pldmfw_op_pci_match_record to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pldmfw_flash_image to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pid_task to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_validate_pause to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_support_asym_pause to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_stop to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_start_aneg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_start to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol physical_mask to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_set_max_speed to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_set_asym_pause to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phys_base to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_mii_ioctl to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_ethtool_ksettings_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_ethtool_ksettings_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_disconnect to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_connect to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol phy_attached_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pgprot_writecombine to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pgdir_shift to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol perf_trace_run_bpf_submit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol perf_trace_buf_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __per_cpu_offset to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcpu_hot to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcpu_alloc_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcix_set_mmrbc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_write_config_word to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_write_config_dword to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_write_config_byte to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_wake_from_d3 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_wait_for_pending_transaction to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_vpd_find_ro_info_keyword to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_vpd_check_csum to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_vpd_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_vfs_assigned to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_unregister_driver to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_try_set_mwi to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_sriov_set_totalvfs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_set_power_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_set_mwi to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_set_master to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_select_bars to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_save_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_restore_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_restore_msi_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_reset_bus to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_request_selected_regions to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_request_regions to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_release_selected_regions to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_release_regions to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __pci_register_driver to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_read_vpd to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_read_config_word to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_read_config_dword to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_read_config_byte to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_prepare_to_sleep to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_num_vf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_msix_free_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_msix_can_alloc_dyn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_msix_alloc_irq_at to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcim_iomap_table to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcim_iomap_regions to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcim_enable_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_irq_vector to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_irq_get_affinity to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_iov_virtfn_devfn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_iounmap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_ioremap_bar to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_iomap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_get_slot to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_get_dsn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_get_domain_bus_and_slot to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_get_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_free_irq_vectors to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_find_ext_capability to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_find_capability to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_set_readrq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_ptm_enabled to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_print_link_status to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_enable_wake to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_enable_sriov to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_enable_ptm to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_enable_msix_range to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_enable_msi to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_enable_device_mem to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_enable_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_get_readrq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_flr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_capability_write_word to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_capability_read_word to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_capability_read_dword to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_capability_clear_and_set_word_unlocked to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pcie_capability_clear_and_set_word_locked to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_disable_sriov to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_disable_rom to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_disable_msix to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_disable_msi to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_disable_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_dev_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_dev_present to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_device_is_present to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_dev_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_clear_mwi to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_clear_master to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_choose_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_cfg_access_unlock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_cfg_access_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_bus_type to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_alloc_irq_vectors_affinity to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_alloc_irq_vectors to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pci_aer_clear_nonfatal_status to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol path_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_ushort to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_ulong to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_ullong to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_uint to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_short to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_long to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_int to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_charp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_byte to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_ops_bool to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol param_array_ops to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol panic_notifier_list to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol panic to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol page_pool_put_unrefed_netmem to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol page_pool_disable_direct_recycling to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol page_pool_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol page_pool_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol page_pool_alloc_pages to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol page_pool_alloc_frag to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol page_offset_base to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol page_frag_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __page_frag_cache_drain to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol pack_fields_u8 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvmet_fc_unregister_targetport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvmet_fc_register_targetport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvmet_fc_rcv_ls_req to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvmet_fc_rcv_fcp_req to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvmet_fc_rcv_fcp_abort to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvmet_fc_invalidate_host to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvme_fc_unregister_remoteport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvme_fc_unregister_localport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvme_fc_set_remoteport_devloss to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvme_fc_rescan_remoteport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvme_fc_register_remoteport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvme_fc_register_localport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvme_fc_rcv_ls_req to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nvme_fc_io_getuuid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __num_online_cpus to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol numa_node to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ns_to_timespec64 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nr_cpu_ids to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol noop_llseek to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol node_to_cpumask_map to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol node_states to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __node_distance to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol nla_find to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol net_ratelimit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_tx_wake_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_tx_unlock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_tx_stop_all_queues to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_tx_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_set_xps_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_set_tso_max_size to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_set_tso_max_segs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_set_real_num_tx_queues to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_set_real_num_rx_queues to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_schedule_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_rx to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_receive_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_queue_set_napi to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __netif_napi_del to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_napi_add_weight to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_get_num_default_rss_queues to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_device_detach to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_device_attach to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_carrier_on to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netif_carrier_off to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol net_dim_get_rx_moderation to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol net_dim to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_warn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_walk_all_upper_dev_rcu to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_update_features to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_unbind_sb_channel to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_state_change to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_set_tc_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_set_sb_channel to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_set_num_tc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_rx_handler_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_rx_handler_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_rss_key_fill to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_reset_tc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_refcnt_read to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_printk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_port_same_parent_id to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_pick_tx to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_notice to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_master_upper_dev_get_rcu to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_master_upper_dev_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_lower_get_next to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_features_change to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_err to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_crit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_core_stats_inc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol netdev_bind_sb_channel_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __netdev_alloc_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __netdev_alloc_frag_align to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __neigh_event_send to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol neigh_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ndo_dflt_fdb_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ndo_dflt_bridge_getlink to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __ndelay to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol napi_schedule_prep to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __napi_schedule_irqoff to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __napi_schedule to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol napi_gro_receive to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol napi_enable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol napi_disable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol napi_consume_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol napi_complete_done to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol napi_build_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol napi_alloc_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __napi_alloc_frag_align to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol names_cachep to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mutex_unlock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mutex_trylock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mutex_lock_interruptible to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mutex_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mutex_is_locked to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __mutex_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol msleep_interruptible to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol msleep to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __msecs_to_jiffies to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mpi_read_raw_data to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mpi_powm to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mpi_get_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mpi_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mpi_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol module_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol module_layout to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __module_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mod_timer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mod_delayed_work_on to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mmu_notifier_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mmu_notifier_get_locked to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mmput to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __mmap_lock_do_trace_start_locking to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __mmap_lock_do_trace_released to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __mmap_lock_do_trace_acquire_returned to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mlx5_core_uplink_netdev_event_replay to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mlx5_core_access_reg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mlx5_blocking_notifier_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mlx5_blocking_notifier_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol misc_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol misc_deregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol metadata_dst_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol metadata_dst_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memset to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mem_section to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mempool_kmalloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mempool_kfree to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mempool_free_slab to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mempool_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mempool_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mempool_create_node_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mempool_alloc_slab to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mempool_alloc_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memory_read_from_buffer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memmove to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memdup_user_nul to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memdup_user to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memcpy_toio to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memcpy_fromio to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memcpy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memcmp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memchr_inv to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol memchr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdio_mii_ioctl to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdiobus_write to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdiobus_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __mdiobus_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdiobus_read to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdiobus_get_phy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdiobus_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdiobus_c45_write to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdiobus_c45_read to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdiobus_alloc_size to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol mdio45_probe to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol loops_per_jiffy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol lookup_one_len to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol local_clock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __local_bh_enable_ip to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __list_del_entry_valid_or_report to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __list_add_valid_or_report to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol libie_rx_pt_lut to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol libeth_rx_recycle_slow to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol libeth_rx_fq_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol libeth_rx_fq_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kvfree_call_rcu to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ktime_get_with_offset to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ktime_get_ts64 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ktime_get_snapshot to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ktime_get_seconds to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ktime_get_real_ts64 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ktime_get_real_seconds to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ktime_get_raw_ts64 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ktime_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_use_mm to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_unuse_mm to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_stop to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_should_stop to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_queue_work to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_queue_delayed_work to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_destroy_worker to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_delayed_work_timer_fn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_create_worker_on_node to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_create_on_node to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_complete_and_exit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_cancel_work_sync to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_cancel_delayed_work_sync to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kthread_bind to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kstrtoull to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kstrtouint to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kstrtou8 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kstrtou16 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kstrtos16 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kstrtoll to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kstrtoint to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kstrtobool to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ksize to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol krealloc_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kobject_uevent_env to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kobject_uevent to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kobject_set_name to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kobject_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kobject_init_and_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kobject_get_unless_zero to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kobject_create_and_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kmemdup_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kmem_cache_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kmem_cache_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __kmem_cache_create_args to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kmem_cache_alloc_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kmalloc_size_roundup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __kmalloc_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __kmalloc_node_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __kmalloc_large_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __kmalloc_large_node_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kmalloc_caches to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __kmalloc_cache_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __kmalloc_cache_node_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kill_pid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kill_pgrp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kill_fasync to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kfree_sensitive to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kfree to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kexec_crash_loaded to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kern_path_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kern_path to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kernel_write to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kernel_sigaction to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kernel_read to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol kasprintf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol jiffies_to_usecs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol jiffies_to_msecs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol jiffies to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol iter_div_u64_rem to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol is_vmalloc_addr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol is_uv_system to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol irq_set_affinity_notifier to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol irq_set_affinity to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol irq_poll_sched to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol irq_poll_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol irq_poll_enable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol irq_poll_disable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol irq_poll_complete to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol irq_modify_status to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol irq_cpu_rmap_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __irq_apply_affinity_hint to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ipv6_skip_exthdr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ipv6_find_hdr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ipv6_ext_hdr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ipv6_chk_addr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __ipv6_addr_type to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol iput to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ip_tos2prio to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ip_route_output_flow to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ip_queue_xmit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __ip_dev_find to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ip_compute_csum to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ip6_route_output_flags to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ip6_dst_hoplimit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __iowrite64_copy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol iowrite32 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol iounmap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ioremap_wc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ioremap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __ioread32_copy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ioread32 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol iomem_resource to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol invalidate_bdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol int_to_scsilun to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __init_waitqueue_head to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol init_wait_entry to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol init_uts_ns to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol init_user_ns to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol init_timer_key to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __init_swait_queue_head to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __init_rwsem to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol init_net to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __inet_lookup_established to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol inet_del_protocol to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol inet_add_protocol to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __inet6_lookup_established to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol in_dev_finish_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ilookup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol idr_remove to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol idr_find to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol idr_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol idr_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ida_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ida_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ida_alloc_range to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_unregister_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_umem_release to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_umem_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_umem_find_best_pgsz to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_umem_dmabuf_get_pinned to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_sg_to_pages to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_set_device_ops to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_register_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_query_port to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_modify_qp_is_ok to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_get_eth_speed to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_dispatch_event to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ibdev_warn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ibdev_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_device_set_netdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_device_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_device_get_by_netdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ibdev_err to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol I_BDEV to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ib_dealloc_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _ib_alloc_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol i2c_smbus_write_byte_data to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol i2c_smbus_read_byte_data to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol i2c_new_client_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol i2c_del_adapter to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol i2c_bit_add_bus to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hwmon_notify_event to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hwmon_device_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hwmon_device_register_with_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hwmon_device_register_with_groups to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hwmon_device_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __hw_addr_unsync_dev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __hw_addr_sync_dev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __hw_addr_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hugetlb_optimize_vmemmap_key to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hrtimer_start_range_ns to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hrtimer_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hrtimer_forward to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol hrtimer_cancel to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol high_memory to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol gnss_register_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol gnss_put_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol gnss_insert_raw to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol gnss_deregister_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol gnss_allocate_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol get_zeroed_page_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol get_user_pages_remote to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __get_user_nocheck_4 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __get_user_4 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __get_user_2 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol get_random_u32 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol get_random_u16 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol get_random_bytes to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol get_free_pages_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol get_device_system_crosststamp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol get_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol get_cpu_idle_time to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol generic_file_write_iter to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol generic_file_read_iter to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fs_bio_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol freezing_slow_path to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol free_percpu to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol free_pages to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __free_pages to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol free_netdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol free_irq_cpu_rmap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol free_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol free_cpumask_var to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fput to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __fortify_panic to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __folio_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __flush_workqueue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flush_work to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flush_signals to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_vlan to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_tcp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_pppoe to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_ports to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_l2tpv3 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_ipv6_addrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_ipv4_addrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_ip to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_icmp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_eth_addrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_enc_ports to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_enc_opts to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_enc_keyid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_enc_ipv6_addrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_enc_ipv4_addrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_enc_ip to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_enc_control to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_cvlan to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_control to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_rule_match_basic to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_keys_dissector to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_indr_dev_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_indr_dev_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_indr_block_cb_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_block_cb_setup_simple to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol flow_block_cb_lookup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fixed_size_llseek to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol firmware_request_nowarn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol finish_wait to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol find_vma to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol find_pid_ns to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _find_next_zero_bit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _find_next_bit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _find_next_and_bit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _find_last_bit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol find_get_pid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _find_first_zero_bit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _find_first_bit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol filp_open to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol filp_close to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol file_ns_capable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol file_bdev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fget to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __fentry__ to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_vport_terminate to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_vport_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_remove_host to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_remote_port_rolechg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_remote_port_delete to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_remote_port_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_release_transport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_host_post_vendor_event to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_host_post_event to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_host_fpin_rcv to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_get_event_number to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_eh_timed_out to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_eh_should_retry_cmd to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_block_scsi_eh to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_block_rport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fc_attach_transport to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol fasync_helper to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol event_triggers_call to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol eth_validate_addr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol eth_type_trans to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_sprintf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_rxfh_context_lost to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_puts to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_params_from_link_mode to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_op_get_ts_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_op_get_link to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_intersect_link_masks to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_forced_speed_maps_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_convert_link_mode_to_legacy_u32 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ethtool_convert_legacy_u32_to_link_mode to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol eth_platform_get_mac_address to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol eth_get_headlen to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol ether_setup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol enable_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol empty_zero_page to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol emergency_restart to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol elfcorehdr_addr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __dynamic_pr_debug to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __dynamic_netdev_dbg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __dynamic_ibdev_dbg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __dynamic_dev_dbg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dump_stack to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dst_release to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol driver_remove_file to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol driver_for_each_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol driver_create_file to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dql_reset to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dql_completed to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dput to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_pin_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_pin_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_pin_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_pin_on_pin_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_pin_on_pin_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_pin_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_pin_change_ntf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_netdev_pin_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_netdev_pin_clear to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_device_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_device_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_device_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_device_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dpll_device_change_ntf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol down_write_trylock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol down_write to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol down_trylock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol down_read_trylock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol down_read to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol down_interruptible to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol downgrade_write to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol down to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol do_wait_intr_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol do_trace_write_msr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol do_trace_read_msr to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol do_trace_netlink_extack to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol done_path_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dmi_get_system_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dmi_first_match to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dmi_find_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_unmap_sg_attrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_unmap_page_attrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __dma_sync_single_for_device to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __dma_sync_single_for_cpu to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_set_mask to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_set_coherent_mask to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_pool_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_pool_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_pool_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_pool_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dmam_free_coherent to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_map_sg_attrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_map_page_attrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dmam_alloc_attrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_get_required_mask to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_free_attrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dma_alloc_attrs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol disable_irq_nosync to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol disable_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dget_parent to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _dev_warn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_uc_del to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_uc_add_excl to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_uc_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_trans_start to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_set_promiscuity to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_set_name to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_set_mtu to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_set_mac_address to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_remove_pack to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __dev_queue_xmit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _dev_printk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_open to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _dev_notice to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devm_request_threaded_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devm_mdiobus_alloc_size to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devm_kmemdup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devm_kmalloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devm_kfree to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devm_kasprintf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devm_hwmon_device_register_with_groups to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devm_free_irq to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_mc_del_global to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_mc_del to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_mc_add_global to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_mc_add_excl to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_mc_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devmap_managed_key to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __devm_add_action to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_unlock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_region_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_region_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_rate_nodes_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_rate_node_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_rate_leaf_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_rate_leaf_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_port_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_port_register_with_ops to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_port_fn_devlink_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_params_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_params_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_param_driverinit_value_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_param_driverinit_value_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_nested_devlink_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_remote_reload_actions_performed to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_priv to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_port_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_port_register_with_ops to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_port_attrs_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_params_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_params_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_info_version_stored_put_ext to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_info_version_stored_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_info_version_running_put_ext to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_info_version_running_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_info_version_fixed_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_info_serial_number_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_info_board_serial_number_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_health_reporter_state_update to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_health_reporter_recovery_done to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_health_reporter_priv to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_health_reporter_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_health_reporter_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_health_report to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_fmsg_u8_pair_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_fmsg_u32_pair_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_fmsg_string_pair_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_fmsg_pair_nest_start to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_fmsg_pair_nest_end to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_fmsg_obj_nest_start to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_fmsg_obj_nest_end to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_fmsg_dump_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_fmsg_binary_pair_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_flash_update_timeout_notify to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_flash_update_status_notify to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devlink_alloc_ns to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_health_reporter_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_health_reporter_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol devl_assert_locked to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_kfree_skb_irq_reason to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_kfree_skb_any_reason to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _dev_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_wakeup_disable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_show_string to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_set_wakeup_enable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_set_wakeup_capable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_remove_file to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_initialize to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_del to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_create_file to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_add_disk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol device_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_get_stats to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_get_by_name to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _dev_err to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_driver_string to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _dev_crit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_close to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_addr_mod to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_addr_del to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_addr_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dev_add_pack to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol destroy_workqueue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol del_gendisk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol delayed_work_timer_fn to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __delay to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol default_wake_function to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol default_llseek to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol debugfs_remove to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol debugfs_lookup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol debugfs_create_u32 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol debugfs_create_file_full to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol debugfs_create_dir to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol debugfs_create_devm_seqfile to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol debugfs_attr_write to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol debugfs_attr_read to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dcbnl_ieee_notify to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dcb_ieee_setapp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dcb_ieee_getapp_prio_dscp_mask_map to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dcb_ieee_getapp_mask to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dcb_ieee_delapp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dcb_getapp to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dca_unregister_notify to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dca_remove_requester to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dca_register_notify to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dca_add_requester to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol dca3_get_tag to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol current_work to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _ctype to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol csum_partial to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol csum_ipv6_magic to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol crypto_shash_update to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol crypto_shash_final to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol crypto_destroy_tfm to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol crypto_alloc_shash to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol crc_t10dif to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol crc32_le to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cpu_sibling_map to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __cpu_present_mask to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __cpu_possible_mask to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __cpu_online_mask to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cpumask_next_wrap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cpumask_local_spread to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cpu_khz to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cpu_info to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __cpuhp_state_remove_instance to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __cpuhp_state_add_instance to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __cpuhp_setup_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __cpuhp_remove_state to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cpufreq_quick_get to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cpu_bit_bitmap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _copy_to_user to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __copy_overflow to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _copy_from_user to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol consume_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __const_udelay to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol const_pcpu_hot to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol config_group_init_type_name to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol config_group_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol configfs_unregister_subsystem to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol configfs_register_subsystem to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol complete_all to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol complete to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol commit_creds to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol clock_t_to_jiffies to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol class_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol class_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol class_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol class_create to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __check_object_size to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cdev_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cdev_del to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cdev_alloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cdev_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cc_mkdec to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol capable to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cancel_work_sync to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cancel_delayed_work_sync to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cancel_delayed_work to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol call_usermodehelper to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol call_switchdev_notifiers to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol call_netdevice_notifiers to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol cachemode2protval to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol byte_rev_table to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol build_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol BUG_func to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_update to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_remove to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_lookup to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_last to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_insert to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_get_prev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_geo64 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_geo32 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol btree_destroy to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bsg_setup_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bsg_remove_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bsg_job_done to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bsearch to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __break_lease to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_warn_invalid_xdp_action to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_trace_run8 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_trace_run5 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_trace_run4 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_trace_run3 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_trace_run2 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_trace_run1 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_stats_enabled_key to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_prog_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_prog_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_master_redirect_enabled_key to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bpf_dispatcher_xdp_func to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol boot_cpu_data to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blockdev_superblock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blk_status_to_errno to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blk_start_plug to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blk_stack_limits to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blk_queue_rq_timeout to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blk_mq_unique_tag to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blk_mq_tagset_busy_iter to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blk_mq_map_queues to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blk_mq_map_hw_queues to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blk_finish_plug to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol blkcg_get_fc_appid to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __blk_alloc_disk to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bitmap_zalloc to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_xor to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_weight to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_subset to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_set to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bitmap_print_to_pagebuf to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bitmap_parselist to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_or to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_intersects to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bitmap_from_arr32 to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bitmap_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bitmap_find_next_zero_area_off to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_equal to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_clear to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_andnot to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __bitmap_and to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bioset_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bioset_exit to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bio_put to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bio_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bio_endio to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bio_clone_blkg_association to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bio_associate_blkg to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bio_alloc_clone to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bio_alloc_bioset to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _bin2bcd to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bdev_thaw to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bdev_freeze to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bdev_file_open_by_path to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol bdev_file_open_by_dev to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol auxiliary_driver_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __auxiliary_driver_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol auxiliary_device_init to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __auxiliary_device_add to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol autoremove_wake_function to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol atomic_notifier_chain_unregister to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol atomic_notifier_chain_register to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol _atomic_dec_and_lock to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol argv_split to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol argv_free to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol arch_touch_nmi_watchdog to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol alloc_workqueue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __alloc_skb to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol alloc_pages_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol __alloc_pages_noprof to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol alloc_netdev_mqs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol alloc_etherdev_mqs to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol alloc_cpu_rmap to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol alloc_cpumask_var_node to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol alloc_chrdev_region to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol add_wait_queue_exclusive to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol add_wait_queue to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol add_timer to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol acpi_get_table to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol acpi_disabled to stablelist (Čestmír Kalina) [RHEL-113009] - kabi: add symbol abort_creds to stablelist (Čestmír Kalina) [RHEL-113009] - x86/mce/amd: Add default names for MCA banks and blocks (Steve Best) [RHEL-117597] - x86/mce: Don't remove sysfs if thresholding sysfs init fails (Steve Best) [RHEL-117597] - ceph: fix client race condition where r_parent becomes stale before sending message (Alex Markuze) [RHEL-117609] - ceph: fix client race condition validating r_parent before applying state (Alex Markuze) [RHEL-117609] - arm64: dts: s32g: Add USB device tree information for s32g2/s32g3 (Jared Kangas) [RHEL-116642] - arm64: dts: s32g: add RTC node (Jared Kangas) [RHEL-116642] - arm64: dts: Add DSPI entries for S32G platforms (Jared Kangas) [RHEL-116642] - arm64: dts: s32gxxxa-rdb: Add PCA85073A RTC module over I2C0 (Jared Kangas) [RHEL-116642] - arm64: dts: s32g: add FlexCAN[0..3] support for s32g2 and s32g3 (Jared Kangas) [RHEL-116642] - arm64: dts: s32g: add the eDMA nodes (Jared Kangas) [RHEL-116642] - arm64: dts: s32g399a-rdb3: Add INA231 sensor entry over I2C4 (Jared Kangas) [RHEL-116642] - arm64: dts: s32g: add common 'S32G-EVB' and 'S32G-RDB' board support (Jared Kangas) [RHEL-116642] - arm64: dts: s32g: add I2C[0..2] support for s32g2 and s32g3 (Jared Kangas) [RHEL-116642] - arm64: dts: s32g2: Disable support for SD/eMMC UHS mode (Jared Kangas) [RHEL-116642] - arm64: dts: s32g: Add S32G2/S32G3 uSDHC pinmux (Jared Kangas) [RHEL-116642] - x86/mm/init: Handle the special case of device private pages in add_pages(), to not increase max_pfn and trigger dma_addressing_limited() bounce buffers (Ricardo Robaina) [RHEL-110657] - x86/kaslr: Reduce KASLR entropy on most x86 systems (Ricardo Robaina) [RHEL-110657] - x86/boot/compressed: Remove unused header includes from kaslr.c (Ricardo Robaina) [RHEL-110657] - pidfs: Fix memory leak in pidfd_info() (Waiman Long) [RHEL-113598] - fhandle: do_handle_open() should get FD with user flags (Waiman Long) [RHEL-113598] - Documentation/sysctl: coredump: add %%F for pidfd number (Waiman Long) [RHEL-113598] - pidfs: never refuse ppid == 0 in PIDFD_GET_INFO (Waiman Long) [RHEL-113598] - fs/fhandle.c: fix a race in call of has_locked_children() (Waiman Long) [RHEL-113598] {CVE-2025-38306} - coredump: reflow dump helpers a little (Waiman Long) [RHEL-113598] - coredump: massage do_coredump() (Waiman Long) [RHEL-113598] - coredump: massage format_corename() (Waiman Long) [RHEL-113598] - coredump: hand a pidfd to the usermode coredump helper (Waiman Long) [RHEL-113598] - coredump: fix error handling for replace_fd() (Waiman Long) [RHEL-113598] - pidfs: move O_RDWR into pidfs_alloc_file() (Waiman Long) [RHEL-113598] - selftests: coredump: Raise timeout to 2 minutes (Waiman Long) [RHEL-113598] - selftests: coredump: Fix test failure for slow machines (Waiman Long) [RHEL-113598] - selftests: coredump: Properly initialize pointer (Waiman Long) [RHEL-113598] - pidfs: ensure that PIDFS_INFO_EXIT is available (Waiman Long) [RHEL-113598] - pidfs/selftests: ensure correct headers for ioctl handling (Waiman Long) [RHEL-113598] - selftests/pidfd: fix header inclusion (Waiman Long) [RHEL-113598] - pidfs: allow to retrieve exit information (Waiman Long) [RHEL-113598] - pidfs: record exit code and cgroupid at exit (Waiman Long) [RHEL-113598] - pidfs: use private inode slab cache (Waiman Long) [RHEL-113598] - pidfs: move setting flags into pidfs_alloc_file() (Waiman Long) [RHEL-113598] - pidfd: rely on automatic cleanup in __pidfd_prepare() (Waiman Long) [RHEL-113598] - pidfs: switch to copy_struct_to_user() (Waiman Long) [RHEL-113598] - pidfs: improve ioctl handling (Waiman Long) [RHEL-113598] - selftests: remove unneeded include (Waiman Long) [RHEL-113598] - pidfs: allow bind-mounts (Waiman Long) [RHEL-113598] - pidfs: lookup pid through rbtree (Waiman Long) [RHEL-113598] - selftests/pidfd: add pidfs file handle selftests (Waiman Long) [RHEL-113598] - pidfs: check for valid ioctl commands (Waiman Long) [RHEL-113598] - pidfs: implement file handle support (Waiman Long) [RHEL-113598] - exportfs: add permission method (Waiman Long) [RHEL-113598] - fhandle: pull CAP_DAC_READ_SEARCH check into may_decode_fh() (Waiman Long) [RHEL-113598] - exportfs: add open method (Waiman Long) [RHEL-113598] - fhandle: simplify error handling (Waiman Long) [RHEL-113598] - pseudofs: add support for export_ops (Waiman Long) [RHEL-113598] - pidfs: support FS_IOC_GETVERSION (Waiman Long) [RHEL-113598] - pidfs: remove 32bit inode number handling (Waiman Long) [RHEL-113598] - pidfs: rework inode number allocation (Waiman Long) [RHEL-113598] - selftests: coredump: Add stackdump test (Waiman Long) [RHEL-113598] - fs/proc: do_task_stat: Fix ESP not readable during coredump (Waiman Long) [RHEL-113598] - fs: fix is_mnt_ns_file() (Waiman Long) [RHEL-113598] - pidfd: add ioctl to retrieve pid info (Waiman Long) [RHEL-113598] - EDAC/bluefield: Don't use bluefield_edac_readl() result on error (Jennifer Berringer) [RHEL-103880] - EDAC/bluefield: Use Arm SMC for EMI access on BlueField-2 (Jennifer Berringer) [RHEL-103880] - EDAC/bluefield: Fix potential integer overflow (Jennifer Berringer) [RHEL-103880] {CVE-2024-53161} - RAS/AMD/FMPM: Get masked address (Aristeu Rozanski) [RHEL-87601] - RAS/AMD/ATL: Include row[13] bit in row retirement (Aristeu Rozanski) [RHEL-87601] - xfs: do not propagate ENODATA disk errors into xattr code (Carlos Maiolino) [RHEL-115731] - Fix packaging for libcpupower python binding debuginfo (John B. Wyatt IV) [RHEL-83442] - Enable building libcpupower bindings for ELN/Rawhide (John B. Wyatt IV) [RHEL-83442] - mm: swap: fix potential buffer overflow in setup_clusters() (CKI Backport Bot) [RHEL-114865] {CVE-2025-39727} - net/mlx5: Not returning mlx5_link_info table when speed is unknown (Li Tian) [RHEL-113425] - sctp: linearize cloned gso packets in sctp_rcv (CKI Backport Bot) [RHEL-113341] {CVE-2025-38718} - Bluetooth: hci_event: Disconnect device when BIG sync is lost (David Marlin) [RHEL-107922] - Bluetooth: hci_event: Add support for handling LE BIG Sync Lost event (David Marlin) [RHEL-107922] - Bluetooth: hci_conn: Fix not cleaning up Broadcaster/Broadcast Source (David Marlin) [RHEL-107922] - Bluetooth: hci_conn: Fix running bis_cleanup for hci_conn->type PA_LINK (David Marlin) [RHEL-107922] - Bluetooth: ISO: Fix getname not returning broadcast fields (David Marlin) [RHEL-107922] - Bluetooth: hci_core: Fix not accounting for BIS/CIS/PA links separately (David Marlin) [RHEL-107922] - Bluetooth: Add PA_LINK to distinguish BIG sync and PA sync connections (David Marlin) [RHEL-107922] - Bluetooth: hci_sync: Prevent unintended PA sync when SID is 0xFF (David Marlin) [RHEL-107922] - Bluetooth: hci_sync: Fix scan state after PA Sync has been established (David Marlin) [RHEL-107922] - PM: wakeup: implement devm_device_init_wakeup() helper (David Marlin) [RHEL-107922] - Bluetooth: btusb: Fix potential NULL dereference on kmalloc failure (David Marlin) [RHEL-107922] - Bluetooth: hci_devcd_dump: fix out-of-bounds via dev_coredumpv (David Marlin) [RHEL-107922] - Bluetooth: L2CAP: Fix attempting to adjust outgoing MTU (David Marlin) [RHEL-107922] - Bluetooth: btusb: QCA: Fix downloading wrong NVM for WCN6855 GF variant without board ID (David Marlin) [RHEL-107922] - Bluetooth: hci_dev: replace 'quirks' integer by 'quirk_flags' bitmap (David Marlin) [RHEL-107922] - Bluetooth: hci_core: add missing braces when using macro parameters (David Marlin) [RHEL-107922] - Bluetooth: hci_core: fix typos in macros (David Marlin) [RHEL-107922] - Bluetooth: SMP: Fix using HCI_ERROR_REMOTE_USER_TERM on timeout (David Marlin) [RHEL-107922] - Bluetooth: SMP: If an unallowed command is received consider it a failure (David Marlin) [RHEL-107922] - Bluetooth: btintel: Check if controller is ISO capable on btintel_classify_pkt_type (David Marlin) [RHEL-107922] - Bluetooth: hci_sync: fix connectable extended advertising when using static random address (David Marlin) [RHEL-107922] - Bluetooth: Fix null-ptr-deref in l2cap_sock_resume_cb() (David Marlin) [RHEL-107922] - Bluetooth: hci_event: Fix not marking Broadcast Sink BIS as connected (David Marlin) [RHEL-107922] - Bluetooth: hci_sync: Fix attempting to send HCI_Disconnect to BIS handle (David Marlin) [RHEL-107922] - Bluetooth: hci_core: Remove check of BDADDR_ANY in hci_conn_hash_lookup_big_state (David Marlin) [RHEL-107922] - Bluetooth: hci_sync: Fix not disabling advertising instance (David Marlin) [RHEL-107922] - Bluetooth: HCI: Set extended advertising data synchronously (David Marlin) [RHEL-107922] - Bluetooth: MGMT: mesh_send: check instances prior disabling advertising (David Marlin) [RHEL-107922] - Bluetooth: MGMT: set_mesh: update LE scan interval and window (David Marlin) [RHEL-107922] - Bluetooth: hci_sync: revert some mesh modifications (David Marlin) [RHEL-107922] - Bluetooth: Prevent unintended pause by checking if advertising is active (David Marlin) [RHEL-107922] - driver: bluetooth: hci_qca:fix unable to load the BT driver (David Marlin) [RHEL-107922] - Bluetooth: L2CAP: Fix L2CAP MTU negotiation (David Marlin) [RHEL-107922] - Bluetooth: btintel_pcie: Fix potential race condition in firmware download (David Marlin) [RHEL-107922] - Bluetooth: MGMT: Fix sparse errors (David Marlin) [RHEL-107922] - Bluetooth: ISO: Fix not using bc_sid as advertisement SID (David Marlin) [RHEL-107922] - Bluetooth: ISO: Fix using BT_SK_PA_SYNC to detect BIS sockets (David Marlin) [RHEL-107922] - Bluetooth: eir: Fix possible crashes on eir_create_adv_data (David Marlin) [RHEL-107922] - Bluetooth: hci_sync: Fix broadcast/PA when using an existing instance (David Marlin) [RHEL-107922] - Bluetooth: Fix NULL pointer deference on eir_get_service_data (David Marlin) [RHEL-107922] - Bluetooth: MGMT: Protect mgmt_pending list with its own lock (David Marlin) [RHEL-107922] - Bluetooth: MGMT: Fix UAF on mgmt_remove_adv_monitor_complete (David Marlin) [RHEL-107922] - Bluetooth: btintel_pcie: Reduce driver buffer posting to prevent race condition (David Marlin) [RHEL-107922] - Bluetooth: btintel_pcie: Increase the tx and rx descriptor count (David Marlin) [RHEL-107922] - Bluetooth: btintel_pcie: Fix driver not posting maximum rx buffers (David Marlin) [RHEL-107922] - Bluetooth: hci_core: fix list_for_each_entry_rcu usage (David Marlin) [RHEL-107922] - Bluetooth: L2CAP: Fix not responding with L2CAP_CR_LE_ENCRYPTION (David Marlin) [RHEL-107922] - Bluetooth: hci_qca: move the SoC type check to the right place (David Marlin) [RHEL-107922] - Bluetooth: btnxpuart: Fix missing devm_request_irq() return value check (David Marlin) [RHEL-107922] - Bluetooth: MGMT: reject malformed HCI_CMD_SYNC commands (David Marlin) [RHEL-107922] - Bluetooth: btintel: Check dsbr size from EFI variable (David Marlin) [RHEL-107922] - Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach() (David Marlin) [RHEL-107922] - Bluetooth: btusb: Add new VID/PID 13d3/3584 for MT7922 (David Marlin) [RHEL-107922] - Bluetooth: separate CIS_LINK and BIS_LINK link types (David Marlin) [RHEL-107922] - Bluetooth: btusb: Add new VID/PID 13d3/3630 for MT7925 (David Marlin) [RHEL-107922] - Bluetooth: add support for SIOCETHTOOL ETHTOOL_GET_TS_INFO (David Marlin) [RHEL-107922] - Bluetooth: btintel_pcie: Dump debug registers on error (David Marlin) [RHEL-107922] - Bluetooth: ISO: Fix getpeername not returning sockaddr_iso_bc fields (David Marlin) [RHEL-107922] - Bluetooth: ISO: Fix not using SID from adv report (David Marlin) [RHEL-107922] - Bluetooth: btnxpuart: Implement host-wakeup feature (David Marlin) [RHEL-107922] - Bluetooth: btusb: Add RTL8851BE device 0x0bda:0xb850 (David Marlin) [RHEL-107922] - Bluetooth: hci_uart: Remove unnecessary NULL check before release_firmware() (David Marlin) [RHEL-107922] - Bluetooth: btmtksdio: Fix wakeup source leaks on device unbind (David Marlin) [RHEL-107922] - Bluetooth: btmrvl_sdio: Fix wakeup source leaks on device unbind (David Marlin) [RHEL-107922] - Bluetooth: btintel_pcie: Do not generate coredump for diagnostic events (David Marlin) [RHEL-107922] - Bluetooth: btusb: Add new VID/PID 13d3/3613 for MT7925 (David Marlin) [RHEL-107922] - use uniform permission checks for all mount propagation changes (Ian Kent) [RHEL-107307] {CVE-2025-38498} - do_change_type(): refuse to operate on unmounted/not ours mounts (Ian Kent) [RHEL-107307] {CVE-2025-38498} - configs: enable Tegra264 SoC with serial and BPMP (Marcin Juszkiewicz) [RHEL-109772] - arm64: defconfig: Enable Tegra HSP and BPMP (Marcin Juszkiewicz) [RHEL-109772] - dmaengine: tegra210-adma: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-109772] - dmaengine: tegra210-adma: check for adma max page (Marcin Juszkiewicz) [RHEL-109772] - dmaengine: tegra210-adma: Use div_u64 for 64 bit division (Marcin Juszkiewicz) [RHEL-109772] - dmaengine: tegra210-adma: Support channel page (Marcin Juszkiewicz) [RHEL-109772] - soc/tegra: cbb: Add support for CBB fabrics in Tegra264 (Marcin Juszkiewicz) [RHEL-109772] - soc/tegra: cbb: Support HW lookup to get timed out target address (Marcin Juszkiewicz) [RHEL-109772] - soc/tegra: cbb: Improve handling for per SoC fabric data (Marcin Juszkiewicz) [RHEL-109772] - soc/tegra: cbb: Make error interrupt enable and status per SoC (Marcin Juszkiewicz) [RHEL-109772] - soc/tegra: cbb: Change master/slave to initiator/target (Marcin Juszkiewicz) [RHEL-109772] - soc/tegra: Enable support for Tegra264 (Marcin Juszkiewicz) [RHEL-109772] - soc/tegra: pmc: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-109772] - soc/tegra: Add Tegra264 APBMISC compatible string (Marcin Juszkiewicz) [RHEL-109772] - soc/tegra: cbb: Clear ERR_FORCE register with ERR_STATUS (Marcin Juszkiewicz) [RHEL-109772] - memory: tegra: Add Tegra264 MC and EMC support (Marcin Juszkiewicz) [RHEL-109772] - dt-bindings: memory: tegra: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-109772] - firmware: tegra: bpmp: Add support on Tegra264 (Marcin Juszkiewicz) [RHEL-109772] - firmware: tegra: bpmp: Fix build failure for tegra264-only config (Marcin Juszkiewicz) [RHEL-109772] - ASoC: tegra: CIF: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-109772] - ASoC: tegra: ADMAIF: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-109772] - ASoC: tegra: ASRC: Update ARAM address (Marcin Juszkiewicz) [RHEL-109772] - ASoC: tegra: Update PLL rate for Tegra264 (Marcin Juszkiewicz) [RHEL-109772] - ASoC: tegra: I2S: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-109772] - ASoC: tegra: AMX: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-109772] - ASoC: tegra: ADX: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-109772] - ASoC: tegra: AHUB: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-109772] - ASoC: tegra: Tegra264 support in isomgr_bw (Marcin Juszkiewicz) [RHEL-109772] - serial: tegra-utc: Add driver for Tegra UART Trace Controller (UTC) (Marcin Juszkiewicz) [RHEL-109772] - PCI: mvebu: Fix use of for_each_of_range() iterator (Myron Stowe) [RHEL-107597] - agp/amd64: Check AGP Capability before binding to unsupported devices (Myron Stowe) [RHEL-107597] - ata: pata_macio: Fix PCI region leak (Myron Stowe) [RHEL-107597] - PCI: host-generic: Set driver_data before calling gen_pci_init() (Myron Stowe) [RHEL-107597] - PCI: apple: Add tracking of probed root ports (Myron Stowe) [RHEL-107597] - PCI/PTM: Build debugfs code only if CONFIG_DEBUG_FS is enabled (Myron Stowe) [RHEL-107597] - PCI: pciehp: Ignore belated Presence Detect Changed caused by DPC (Myron Stowe) [RHEL-107597] - MAINTAINERS: Update Manivannan Sadhasivam email address (Myron Stowe) [RHEL-107597] - MAINTAINERS: Update Krzysztof Wilczyński email address (Myron Stowe) [RHEL-107597] - PCI: Remove unnecessary linesplit in __pci_setup_bridge() (Myron Stowe) [RHEL-107597] - PCI: WARN (not BUG()) when we fail to assign optional resources (Myron Stowe) [RHEL-107597] - PCI: Remove unused pci_printk() (Myron Stowe) [RHEL-107597] - PCI: Add CONFIG_MMU dependency (Myron Stowe) [RHEL-107597] - x86/PCI: Drop 'pci' suffix from intel_mid_pci.c (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: microchip,pcie-host: Fix DMA coherency property (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: Convert v3,v360epc-pci to DT schema (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom: Add MHI registers for IPQ9574 (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: Remove obsolete .txt docs (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: Convert marvell,armada8k-pcie to schema (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: Convert Marvell EBU to schema (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: sifive,fu740-pcie: Fix include placement in DTS example (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: Correct indentation and style in DTS example (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: dwc: rockchip: Add rk3562 support (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: dw: rockchip: Add rk3576 support (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom,pcie-sc8180x: Add 'global' interrupt (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom: Allow IPQ6018 to use 8 MSI and one 'global' interrupt (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom: Allow IPQ8074 to use 8 MSI and one 'global' interrupt (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom: Allow MSM8998 to use 8 MSI and one 'global' interrupt (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom: Add 'global' interrupt for SDM845 SoC (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom,pcie-sc7280: Add 'global' interrupt (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom,pcie-sa8775p: Add 'global' interrupt (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom,pcie-sm8350: Add 'global' interrupt (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom,pcie-sm8250: Add 'global' interrupt (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom,pcie-sm8150: Add 'global' interrupt (Myron Stowe) [RHEL-107597] - PCI: qcom-ep: Mask PTM_UPDATING interrupt (Myron Stowe) [RHEL-107597] - PCI: Add debugfs support for exposing PTM context (Myron Stowe) [RHEL-107597] - PCI: tegra194: Create debugfs directory only when CONFIG_PCIEASPM is enabled (Myron Stowe) [RHEL-107597] - PCI: rockchip-ep: Mark RK3399 as intx_capable (Myron Stowe) [RHEL-107597] - PCI: rockchip: Fix order of rockchip_pci_core_rsts (Myron Stowe) [RHEL-107597] - PCI: rcar-gen4: Document how to obtain platform firmware (Myron Stowe) [RHEL-107597] - PCI: rcar-gen4: set ep BAR4 fixed size (Myron Stowe) [RHEL-107597] - PCI: qcom: Add support for IPQ5018 (Myron Stowe) [RHEL-107597] - dt-bindings: PCI: qcom: Add IPQ5018 SoC (Myron Stowe) [RHEL-107597] - PCI: dwc: Add support for configuring lane equalization presets (Myron Stowe) [RHEL-107597] - PCI: Add lane equalization register offsets (Myron Stowe) [RHEL-107597] - PCI: dwc: Update pci->num_lanes to maximum supported link width (Myron Stowe) [RHEL-107597] - PCI: of: Add of_pci_get_equalization_presets() API (Myron Stowe) [RHEL-107597] - PCI: mvebu: Use for_each_of_range() iterator for parsing "ranges" (Myron Stowe) [RHEL-107597] - PCI: ls-gen4: Use to_delayed_work() (Myron Stowe) [RHEL-107597] - PCI: imx6: Save and restore the LUT setting during suspend/resume for i.MX95 SoC (Myron Stowe) [RHEL-107597] - PCI: imx6: Add PLL lock check for i.MX95 SoC (Myron Stowe) [RHEL-107597] - PCI: imx6: Add workaround for errata ERR051586 (Myron Stowe) [RHEL-107597] - PCI: imx6: Add workaround for errata ERR051624 (Myron Stowe) [RHEL-107597] - PCI: imx6: Toggle the core reset for i.MX95 PCIe (Myron Stowe) [RHEL-107597] - PCI: imx6: Call dw_pcie_wait_for_link() from start_link() callback only when required (Myron Stowe) [RHEL-107597] - PCI: imx6: Skip link up workaround for newer platforms (Myron Stowe) [RHEL-107597] - PCI: dwc: Make link training more robust by setting PORT_LOGIC_LINK_WIDTH to one lane (Myron Stowe) [RHEL-107597] - PCI: dwc: ep: Fix errno typo (Myron Stowe) [RHEL-107597] - PCI: dwc: ep: Use FIELD_GET() where applicable (Myron Stowe) [RHEL-107597] - PCI: qcom: Replace PERST# sleep time with proper macro (Myron Stowe) [RHEL-107597] - PCI: dw-rockchip: Replace PERST# sleep time with proper macro (Myron Stowe) [RHEL-107597] - PCI: host-common: Convert to library for host controller drivers (Myron Stowe) [RHEL-107597] - PCI: cadence: Simplify J721e link status check (Myron Stowe) [RHEL-107597] - PCI: mobiveil: Return bool from link up check (Myron Stowe) [RHEL-107597] - PCI: dwc: Return bool from link up check (Myron Stowe) [RHEL-107597] - PCI: dw-rockchip: Fix PHY function call sequence in rockchip_pcie_phy_deinit() (Myron Stowe) [RHEL-107597] - PCI: dw-rockchip: Use rockchip_pcie_link_up() to check link up instead of open coding (Myron Stowe) [RHEL-107597] - PCI: dw-rockchip: Reorganize register and bitfield definitions (Myron Stowe) [RHEL-107597] - PCI: dw-rockchip: Remove unused PCIE_CLIENT_GENERAL_DEBUG definition (Myron Stowe) [RHEL-107597] - PCI: dw-rockchip: Move rockchip_pcie_ep_hide_broken_ats_cap_rk3588() to dw_pcie_ep_ops::init() (Myron Stowe) [RHEL-107597] - PCI: dw-rockchip: Enable ASPM L0s capability for both RC and EP modes (Myron Stowe) [RHEL-107597] - PCI: dw-rockchip: Remove PCIE_L0S_ENTRY check from rockchip_pcie_link_up() (Myron Stowe) [RHEL-107597] - PCI: j721e: Fix host/endpoint dependencies (Myron Stowe) [RHEL-107597] - PCI: j721e: Add support to build as a loadable module (Myron Stowe) [RHEL-107597] - PCI: cadence-ep: Introduce cdns_pcie_ep_disable() helper for cleanup (Myron Stowe) [RHEL-107597] - PCI: cadence-host: Introduce cdns_pcie_host_disable() helper for cleanup (Myron Stowe) [RHEL-107597] - PCI: cadence: Add support to build pcie-cadence library as a kernel module (Myron Stowe) [RHEL-107597] - PCI: cadence: Remove duplicate message code definitions (Myron Stowe) [RHEL-107597] - PCI: cadence: Fix runtime atomic count underflow (Myron Stowe) [RHEL-107597] - PCI: apple: Add T602x PCIe support (Myron Stowe) [RHEL-107597] - PCI: apple: Abstract register offsets via a SoC-specific structure (Myron Stowe) [RHEL-107597] - PCI: apple: Use gpiod_set_value_cansleep in probe flow (Myron Stowe) [RHEL-107597] - PCI: apple: Drop poll for CORE_RC_PHYIF_STAT_REFCLK (Myron Stowe) [RHEL-107597] - PCI: apple: Move port PHY registers to their own reg items (Myron Stowe) [RHEL-107597] - PCI: apple: Fix missing OF node reference in apple_pcie_setup_port (Myron Stowe) [RHEL-107597] - PCI: apple: Move away from INTMSK{SET,CLR} for INTx and private interrupts (Myron Stowe) [RHEL-107597] - PCI: apple: Dynamically allocate RID-to_SID bitmap (Myron Stowe) [RHEL-107597] - PCI: apple: Move over to standalone probing (Myron Stowe) [RHEL-107597] - PCI: host-generic: Extract an ECAM bridge creation helper from pci_host_common_probe() (Myron Stowe) [RHEL-107597] - dt-bindings: pci: apple,pcie: Add t6020 compatible string (Myron Stowe) [RHEL-107597] - PCI: apple: Set only available ports up (Myron Stowe) [RHEL-107597] - PCI: endpoint: Align pci_epc_set_msix(), pci_epc_ops::set_msix() nr_irqs encoding (Myron Stowe) [RHEL-107597] - PCI: endpoint: Align pci_epc_set_msi(), pci_epc_ops::set_msi() nr_irqs encoding (Myron Stowe) [RHEL-107597] - PCI: endpoint: Align pci_epc_get_msix(), pci_epc_ops::get_msix() return value encoding (Myron Stowe) [RHEL-107597] - PCI: cadence-ep: Correct PBA offset in .set_msix() callback (Myron Stowe) [RHEL-107597] - PCI: dwc: ep: Correct PBA offset in .set_msix() callback (Myron Stowe) [RHEL-107597] - PCI: endpoint: pci-epf-vntb: Simplify ctrl/SPAD space allocation (Myron Stowe) [RHEL-107597] - PCI: endpoint: Retain fixed-size BAR size as well as aligned size (Myron Stowe) [RHEL-107597] - PCI: Add ACS quirk for Loongson PCIe (Myron Stowe) [RHEL-107597] - PCI: Fix lock symmetry in pci_slot_unlock() (Myron Stowe) [RHEL-107597] - PCI: Increment PM usage counter when probing reset methods (Myron Stowe) [RHEL-107597] - PM: runtime: Define pm_runtime_put cleanup helper (Myron Stowe) [RHEL-107597] - irqdomain: pci: Switch to of_fwnode_handle() (Myron Stowe) [RHEL-107597] - PCI: hotplug: Drop superfluous #include directives (Myron Stowe) [RHEL-107597] - PCI: pciehp: Ignore Link Down/Up caused by Secondary Bus Reset (Myron Stowe) [RHEL-107597] - PCI: pciehp: Ignore Presence Detect Changed caused by DPC (Myron Stowe) [RHEL-107597] - PCI: Limit visibility of match_driver flag to PCI core (Myron Stowe) [RHEL-107597] - Revert "iommu/amd: Prevent binding other PCI drivers to IOMMU PCI devices" (Myron Stowe) [RHEL-107597] - PCI: Print the actual delay time in pci_bridge_wait_for_secondary_bus() (Myron Stowe) [RHEL-107597] - PCI: Use PCI_STD_NUM_BARS instead of 6 (Myron Stowe) [RHEL-107597] - PCI: Remove pci_fixup_cardbus() (Myron Stowe) [RHEL-107597] - PCI: Remove function pcim_intx() prototype from pci.h (Myron Stowe) [RHEL-107597] - PCI: Remove hybrid-devres usage warnings from kernel-doc (Myron Stowe) [RHEL-107597] - PCI: Remove redundant set of request functions (Myron Stowe) [RHEL-107597] - PCI: Remove exclusive requests flags from _pcim_request_region() (Myron Stowe) [RHEL-107597] - PCI: Remove pcim_request_region_exclusive() (Myron Stowe) [RHEL-107597] - Documentation/driver-api: Update pcim_enable_device() (Myron Stowe) [RHEL-107597] - PCI: Remove hybrid devres nature from request functions (Myron Stowe) [RHEL-107597] - PCI: Remove pcim_iounmap_regions() (Myron Stowe) [RHEL-107597] - mtip32xx: Remove unnecessary pcim_iounmap_regions() calls (Myron Stowe) [RHEL-107597] - PCI: Update Link Speed after retraining (Myron Stowe) [RHEL-107597] - PCI/bwctrl: Replace lbms_count with PCI_LINK_LBMS_SEEN flag (Myron Stowe) [RHEL-107597] - PCI/ERR: Remove misleading TODO regarding kernel panic (Myron Stowe) [RHEL-107597] - PCI/AER: Add sysfs attributes for log ratelimits (Myron Stowe) [RHEL-107597] - PCI/AER: Add ratelimits to PCI AER Documentation (Myron Stowe) [RHEL-107597] - PCI/AER: Ratelimit correctable and non-fatal error logging (Myron Stowe) [RHEL-107597] - PCI/AER: Simplify add_error_device() (Myron Stowe) [RHEL-107597] - PCI/AER: Convert aer_get_device_error_info(), aer_print_error() to index (Myron Stowe) [RHEL-107597] - PCI/AER: Rename struct aer_stats to aer_info (Myron Stowe) [RHEL-107597] - PCI/AER: Reduce pci_print_aer() correctable error level to KERN_WARNING (Myron Stowe) [RHEL-107597] - PCI/ERR: Add printk level to pcie_print_tlp_log() (Myron Stowe) [RHEL-107597] - PCI/AER: Check log level once and remember it (Myron Stowe) [RHEL-107597] - PCI/AER: Trace error event before ratelimiting (Myron Stowe) [RHEL-107597] - PCI/AER: Update statistics before ratelimiting (Myron Stowe) [RHEL-107597] - PCI/AER: Simplify pci_print_aer() (Myron Stowe) [RHEL-107597] - PCI/AER: Initialize aer_err_info before using it (Myron Stowe) [RHEL-107597] - PCI/AER: Move aer_print_source() earlier in file (Myron Stowe) [RHEL-107597] - PCI/AER: Rename aer_print_port_info() to aer_print_source() (Myron Stowe) [RHEL-107597] - PCI/AER: Extract bus/dev/fn in aer_print_port_info() with PCI_BUS_NUM(), etc (Myron Stowe) [RHEL-107597] - PCI/AER: Consolidate Error Source ID logging in aer_isr_one_error_type() (Myron Stowe) [RHEL-107597] - PCI/AER: Factor COR/UNCOR error handling out from aer_isr_one_error() (Myron Stowe) [RHEL-107597] - PCI/DPC: Log Error Source ID only when valid (Myron Stowe) [RHEL-107597] - PCI/DPC: Initialize aer_err_info before using it (Myron Stowe) [RHEL-107597] - stmmac: Replace deprecated PCI functions (Myron Stowe) [RHEL-107597] - stmmac: Remove pcim_* functions for driver detach (Myron Stowe) [RHEL-107597] - stmmac: loongson: Remove surplus loop (Myron Stowe) [RHEL-107597] - stmmac: loongson: Pass correct arg to PCI function (Myron Stowe) [RHEL-107597] - vdpa: solidrun: Replace deprecated PCI functions (Myron Stowe) [RHEL-107597] - rcu/nocb: Add Safe checks for access offloaded rdp (Luis Claudio R. Goncalves) [RHEL-69516] - perf symbol-minimal: Fix ehdr reading in filename__read_build_id (Michael Petlan) [RHEL-78198] - perf: Fix the POLL_HUP delivery breakage (Michael Petlan) [RHEL-78198] - perf: Avoid undefined behavior from stopping/starting inactive events (Michael Petlan) [RHEL-78198] - perf ui scripts: Switch FILENAME_MAX to NAME_MAX (Michael Petlan) [RHEL-78198] - perf pmu: Switch FILENAME_MAX to NAME_MAX (Michael Petlan) [RHEL-78198] - tools subcmd: Tighten the filename size in check_if_command_finished (Michael Petlan) [RHEL-78198] - perf python: Set index error for invalid thread/cpu map items (Michael Petlan) [RHEL-78198] - perf python: Improve leader copying from evlist (Michael Petlan) [RHEL-78198] - perf python: Correct pyrf_evsel__read for tool PMUs (Michael Petlan) [RHEL-78198] - perf python: Fix thread check in pyrf_evsel__read (Michael Petlan) [RHEL-78198] - perf python: In str(evsel) use the evsel__pmu_name helper (Michael Petlan) [RHEL-78198] - perf jevents: If the long_desc and desc are identical then drop the long_desc (Michael Petlan) [RHEL-78198] - perf expr: Accumulate rather than replace in the context counts (Michael Petlan) [RHEL-78198] - perf stat: Move metric list from config to evlist (Michael Petlan) [RHEL-78198] - perf metricgroup: Factor out for-each function and move out printing (Michael Petlan) [RHEL-78198] - perf pmu: Tolerate failure to read the type for wellknown PMUs (Michael Petlan) [RHEL-78198] - perf spark: Fix includes and add SPDX (Michael Petlan) [RHEL-78198] - perf parse-events: Minor tidy up of event_type helper (Michael Petlan) [RHEL-78198] - perf hwmon_pmu: Avoid shortening hwmon PMU name (Michael Petlan) [RHEL-78198] - kallsyms: fix build without execinfo (Michael Petlan) [RHEL-78198] - perf/core: Fix WARN in perf_sigtrap() (Michael Petlan) [RHEL-78198] - perf: Revert to requiring CAP_SYS_ADMIN for uprobes (Michael Petlan) [RHEL-78198] - perf/core: Fix the WARN_ON_ONCE is out of lock protected region (Michael Petlan) [RHEL-78198] - perf/aux: Fix pending disable flow when the AUX ring buffer overruns (Michael Petlan) [RHEL-78198] - perf test: Directory file descriptor leak (Michael Petlan) [RHEL-78198] - perf evsel: Missed close() when probing hybrid core PMUs (Michael Petlan) [RHEL-78198] - perf mem: Document new output fields (op, cache, mem, dtlb, snoop) (Michael Petlan) [RHEL-78198] - perf test: Restrict uniquifying test to machines with 'uncore_imc' (Michael Petlan) [RHEL-78198] - perf: Fix the throttle error of some clock events (Michael Petlan) [RHEL-78198] - perf symbols: Ignore mapping symbols on riscv (Michael Petlan) [RHEL-78198] - perf: Add comment to enum perf_event_state (Michael Petlan) [RHEL-78198] - perf/core: Fix WARN in perf_cgroup_switch() (Michael Petlan) [RHEL-78198] - perf: Fix cgroup state vs ERROR (Michael Petlan) [RHEL-78198] - perf: Fix sample vs do_exit() (Michael Petlan) [RHEL-78198] - perf callchain: Always populate the addr_location map when adding IP (Michael Petlan) [RHEL-78198] - perf lock contention: Reject more than 10ms delays for safety (Michael Petlan) [RHEL-78198] - perf/x86/intel: Fix incorrect MSR index calculations in intel_pmu_config_acr() (Michael Petlan) [RHEL-78198] - perf trace: Set errpid to false for rseq and set_robust_list (Michael Petlan) [RHEL-78198] - perf symbol: Move demangling code out of symbol-elf.c (Michael Petlan) [RHEL-78198] - perf trace: Always print return value for syscalls returning a pid (Michael Petlan) [RHEL-78198] - perf script: Print PERF_AUX_FLAG_COLLISION flag (Michael Petlan) [RHEL-78198] - perf mem: Show absolute percent in mem_stat output (Michael Petlan) [RHEL-78198] - perf mem: Display sort order only if it's available (Michael Petlan) [RHEL-78198] - perf mem: Describe overhead calculation in brief (Michael Petlan) [RHEL-78198] - perf record: Fix incorrect --user-regs comments (Michael Petlan) [RHEL-78198] - perf test trace_summary: Skip --bpf-summary tests if no libbpf (Michael Petlan) [RHEL-78198] - perf test intel-pt: Skip jitdump test if no libelf (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Avoid race when evlist is being deleted (Michael Petlan) [RHEL-78198] - perf test demangle-java: Don't segv if demangling fails (Michael Petlan) [RHEL-78198] - perf symbol: Fix use-after-free in filename__read_build_id (Michael Petlan) [RHEL-78198] - perf pmu: Avoid segv for missing name/alias_name in wildcarding (Michael Petlan) [RHEL-78198] - perf machine: Factor creating a "live" machine out of dwarf-unwind (Michael Petlan) [RHEL-78198] - perf test: Add AMD IBS sw filter test (Michael Petlan) [RHEL-78198] - perf mem: Count L2 HITM for c2c statistic (Michael Petlan) [RHEL-78198] - perf arm-spe: Add support for SPE Data Source packet on HiSilicon HIP12 (Michael Petlan) [RHEL-78198] - perf/headers: Clean up a bit (Michael Petlan) [RHEL-78198] - perf tests switch-tracking: Fix timestamp comparison (Michael Petlan) [RHEL-78198] - perf pmu intel: Adjust cpumaks for sub-NUMA clusters on graniterapids (Michael Petlan) [RHEL-78198] - perf tests trace_summary.sh: Run in exclusive mode (Michael Petlan) [RHEL-78198] - perf test: Add cgroup summary test case for 'perf trace' (Michael Petlan) [RHEL-78198] - perf python: Add counting.py as example for counting perf events (Michael Petlan) [RHEL-78198] - perf python: Add evlist close support (Michael Petlan) [RHEL-78198] - perf python: Add evsel read method (Michael Petlan) [RHEL-78198] - perf python: Add support for 'struct perf_counts_values' to return counter data (Michael Petlan) [RHEL-78198] - perf/uapi: Clean up a bit (Michael Petlan) [RHEL-78198] - perf/uapi: Fix PERF_RECORD_SAMPLE comments in (Michael Petlan) [RHEL-78198] - perf python: Add evsel cpus and threads functions (Michael Petlan) [RHEL-78198] - libperf threadmap: Add perf_thread_map__idx() (Michael Petlan) [RHEL-78198] - libperf threadmap: Don't segv for index 0 for the NULL 'struct perf_thread_map' pointer (Michael Petlan) [RHEL-78198] - perf test amd: Skip amd-ibs-period test on kernel < v6.15 (Michael Petlan) [RHEL-78198] - perf rwsem: Add clang's -Wthread-safety annotations (Michael Petlan) [RHEL-78198] - perf dso: Minor refactor to allow clang's Wthread-safety analysis (Michael Petlan) [RHEL-78198] - mips/perf: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - xtensa/perf: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - sparc/perf: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - loongarch/perf: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - csky/perf: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - arc/perf: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - alpha/perf: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - perf/apple_m1: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - perf/arm: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - s390/perf: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - powerpc/perf: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - perf/x86/zhaoxin: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - perf/x86/amd: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - perf/x86/intel: Remove driver-specific throttle support (Michael Petlan) [RHEL-78198] - perf: Only dump the throttle log for the leader (Michael Petlan) [RHEL-78198] - perf: Fix the throttle logic for a group (Michael Petlan) [RHEL-78198] - perf ftrace: Use process/session specific trace settings (Michael Petlan) [RHEL-78198] - tools headers compiler: Pick the const_true() define from the kernel sources (Michael Petlan) [RHEL-78198] - perf test probe_vfs_getname: Add regex for searching probe line (Michael Petlan) [RHEL-78198] - perf/core: Add the is_event_in_freq_mode() helper to simplify the code (Michael Petlan) [RHEL-78198] - perf record: Fix a asan runtime error in util/maps.c (Michael Petlan) [RHEL-78198] - perf record: Add 8-byte aligned event type PERF_RECORD_COMPRESSED2 (Michael Petlan) [RHEL-78198] - perf/x86/intel/ds: Remove redundant assignments to sample.period (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Filter non-workload samples (Michael Petlan) [RHEL-78198] - perf/aux: Allocate non-contiguous AUX pages by default (Michael Petlan) [RHEL-78198] - perf test: Allow tolerance for leader sampling test (Michael Petlan) [RHEL-78198] - perf test: Add stat uniquifying test (Michael Petlan) [RHEL-78198] - perf parse-events: Use wildcard processing to set an event to merge into (Michael Petlan) [RHEL-78198] - perf evlist: Make uniquifying counter names consistent (Michael Petlan) [RHEL-78198] - perf report: Add 'tgid' sort key (Michael Petlan) [RHEL-78198] - perf test: Update sysfs path for core PMU caps (Michael Petlan) [RHEL-78198] - perf test: Fix LBR test by ignoring idle task (Michael Petlan) [RHEL-78198] - perf test: Hybrid improvements for metric value validation test (Michael Petlan) [RHEL-78198] - perf list: Display the PMU name associated with a perf metric in JSON (Michael Petlan) [RHEL-78198] - perf metricgroup: Binary search when resolving referred to metrics (Michael Petlan) [RHEL-78198] - perf pmu: Change aliases from list to hashmap (Michael Petlan) [RHEL-78198] - perf fncache: Switch to using hashmap (Michael Petlan) [RHEL-78198] - perf tests: Harden branch stack sampling test (Michael Petlan) [RHEL-78198] - perf parse-events: Add "cpu" term to set the CPU an event is recorded on (Michael Petlan) [RHEL-78198] - perf parse-events: Set is_pmu_core for legacy hardware events (Michael Petlan) [RHEL-78198] - perf stat: Use counter cpumask to skip zero values (Michael Petlan) [RHEL-78198] - libperf cpumap: Add ability to create CPU from a single CPU number (Michael Petlan) [RHEL-78198] - perf tests metrics: Permission related fixes (Michael Petlan) [RHEL-78198] - perf evsel: Add per-thread warning for EOPNOTSUPP open failues (Michael Petlan) [RHEL-78198] - perf scripts python: exported-sql-viewer.py: Fix pattern matching with Python 3 (Michael Petlan) [RHEL-78198] - perf intel-pt: Do not default to recording all switch events (Michael Petlan) [RHEL-78198] - perf intel-pt: Fix PEBS-via-PT data_src (Michael Petlan) [RHEL-78198] - perf test demangle-ocaml: Switch to using dso__demangle_sym() (Michael Petlan) [RHEL-78198] - perf test demangle-java: Switch to using dso__demangle_sym() (Michael Petlan) [RHEL-78198] - perf test demangle-rust: Add Rust demangling test (Michael Petlan) [RHEL-78198] - perf demangle-rust: Remove previous legacy rust decoder (Michael Petlan) [RHEL-78198] - perf symbol-elf: Integrate rust-v0 demangling (Michael Petlan) [RHEL-78198] - perf demangle-rust: Add rustc-demangle C demangler (Michael Petlan) [RHEL-78198] - perf test amd ibs: Fix spelling mistake "Asssuming" -> "Assuming" (Michael Petlan) [RHEL-78198] - perf pmu: Use available core PMU for raw events (Michael Petlan) [RHEL-78198] - perf lock contention: Add -J/--inject-delay option (Michael Petlan) [RHEL-78198] - perf tests: Fix 'perf report' tests installation (Michael Petlan) [RHEL-78198] - perf: Fix confusing aux iteration (Michael Petlan) [RHEL-78198] - perf: Remove too early and redundant CPU hotplug handling (Michael Petlan) [RHEL-78198] - perf: Fix irq work dereferencing garbage (Michael Petlan) [RHEL-78198] - perf: Fix failing inherit_event() doing extra refcount decrement on parent (Michael Petlan) [RHEL-78198] - perf parse-events: Add debug dump of evlist if reordered (Michael Petlan) [RHEL-78198] - perf evlist: Make groups visible in evlist__format_evsels() output (Michael Petlan) [RHEL-78198] - perf evlist: Refactor evlist__scnprintf_evsels() (Michael Petlan) [RHEL-78198] - perf stat: Remove print_mixed_hw_group_error (Michael Petlan) [RHEL-78198] - perf stat: Better hybrid support for the NMI watchdog warning (Michael Petlan) [RHEL-78198] - tools/arch/x86: Move the header to (Michael Petlan) [RHEL-78198] - perf test: Add direct off-cpu tests (Michael Petlan) [RHEL-78198] - perf record --off-cpu: Add --off-cpu-thresh option (Michael Petlan) [RHEL-78198] - perf record --off-cpu: Dump the remaining PERF_SAMPLE_ in sample_type from BPF's stack trace map (Michael Petlan) [RHEL-78198] - perf script: Display off-cpu samples correctly (Michael Petlan) [RHEL-78198] - perf record --off-cpu: Disable perf_event's callchain collection (Michael Petlan) [RHEL-78198] - perf evsel: Assemble off-cpu samples (Michael Petlan) [RHEL-78198] - perf record --off-cpu: Dump off-cpu samples in BPF (Michael Petlan) [RHEL-78198] - perf record --off-cpu: Preparation of off-cpu BPF program (Michael Petlan) [RHEL-78198] - perf record --off-cpu: Parse off-cpu event (Michael Petlan) [RHEL-78198] - perf evsel: Expose evsel__is_offcpu_event() for future use (Michael Petlan) [RHEL-78198] - perf symbol-minimal: Fix double free in filename__read_build_id (Michael Petlan) [RHEL-78198] - perf mem: Add 'dtlb' output field (Michael Petlan) [RHEL-78198] - perf mem: Add 'snoop' output field (Michael Petlan) [RHEL-78198] - perf mem: Add 'cache' and 'memory' output fields (Michael Petlan) [RHEL-78198] - perf hist: Hide unused mem stat columns (Michael Petlan) [RHEL-78198] - perf mem: Add 'op' output field (Michael Petlan) [RHEL-78198] - perf hist: Implement output fields for mem stats (Michael Petlan) [RHEL-78198] - perf hist: Basic support for mem_stat accounting (Michael Petlan) [RHEL-78198] - perf hist: Add struct he_mem_stat (Michael Petlan) [RHEL-78198] - perf hist: Support multi-line header (Michael Petlan) [RHEL-78198] - perf record: Add --sample-mem-info option (Michael Petlan) [RHEL-78198] - perf hist: Remove output field from sort-list properly (Michael Petlan) [RHEL-78198] - perf test perf-report-hierarchy: Add new test (Michael Petlan) [RHEL-78198] - perf test amd ibs: Add sample period unit test (Michael Petlan) [RHEL-78198] - perf mem/c2c amd: Add ldlat support (Michael Petlan) [RHEL-78198] - perf amd ibs: Incorporate Zen5 DTLB and PageSize information (Michael Petlan) [RHEL-78198] - perf amd ibs: Add Load Latency bits in raw dump (Michael Petlan) [RHEL-78198] - perf symbols: Handle 'u' and 'l' symbols in /proc/kallsyms (Michael Petlan) [RHEL-78198] - perf lock contention: Symbolize zone->lock using BTF (Michael Petlan) [RHEL-78198] - perf vendor events arm64: Drop hip08 PublicDescription if same as BriefDescription (Michael Petlan) [RHEL-78198] - perf vendor events arm64: Fill up Desc field for Hisi hip08 hha pmu (Michael Petlan) [RHEL-78198] - perf bench evlist-open-close: Reduce scope of 2 variables (Michael Petlan) [RHEL-78198] - perf tests record: Cleanup improvements (Michael Petlan) [RHEL-78198] - perf tool_pmu: Fix aggregation on duration_time (Michael Petlan) [RHEL-78198] - perf session: Skip unsupported new event types (Michael Petlan) [RHEL-78198] - perf hist: Allow custom output fields in hierarchy mode (Michael Petlan) [RHEL-78198] - perf hist: Set levels in output_field_add() (Michael Petlan) [RHEL-78198] - perf hist: Remove formats in hierarchy when cancel latency (Michael Petlan) [RHEL-78198] - perf hist: Remove formats in hierarchy when cancel children (Michael Petlan) [RHEL-78198] - perf record: Retirement latency cleanup in evsel__config (Michael Petlan) [RHEL-78198] - perf pmu-events: Add retirement latency to JSON events inside of perf (Michael Petlan) [RHEL-78198] - perf stat: Add mean, min, max and last --tpebs-mode options (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Use stats for retirement latency statistics (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Don't close record on read (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Add mutex for tpebs_results (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Add support for updating counts in evsel__tpebs_read (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Refactor tpebs_results list (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Ensure events are opened, factor out finding (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Inline get_perf_record_args (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Reduce scope of the tpebs_events_size variable (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Move the cpumap_buf variable out of evsel__tpebs_open() (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Separate evsel__tpebs_prepare() out of evsel__tpebs_open() (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Rename tpebs_start to evsel__tpebs_open (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Simplify tpebs_cmd (Michael Petlan) [RHEL-78198] - perf intel-tpebs: Cleanup header (Michael Petlan) [RHEL-78198] - perf vendor events: Update westmereep-dp events (Michael Petlan) [RHEL-78198] - perf vendor events: Update westmereep-dp events (Michael Petlan) [RHEL-78198] - perf vendor events: Update westmereep-dp events (Michael Petlan) [RHEL-78198] - perf vendor events: Update tigerlake metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update snowridgex events (Michael Petlan) [RHEL-78198] - perf vendor events: Update skylakex events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update skylake metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update sierraforest events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update sapphirerapids events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update sandybridge metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update rocketlake events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update nehalemex events (Michael Petlan) [RHEL-78198] - perf vendor events: Update nehalemep events (Michael Petlan) [RHEL-78198] - perf vendor events: Update meteorlake events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update lunarlake events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update jaketown metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update ivytown metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update ivybridge metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update icelakex events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update icelake events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update haswellx metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update haswell metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Add graniterapids retirement latencies (Michael Petlan) [RHEL-78198] - perf vendor events: Update grandridge events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update emeraldrapids events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update elkhartlake events (Michael Petlan) [RHEL-78198] - perf vendor events: Update clearwaterforest events (Michael Petlan) [RHEL-78198] - perf vendor events: Update cascadelakex events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update broadwellx metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update broadwellde metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update broadwell metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update bonnell events (Michael Petlan) [RHEL-78198] - perf vendor events: Update arrowlake events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update AlderlakeN events/metrics (Michael Petlan) [RHEL-78198] - perf vendor events: Update alderlake events/metrics (Michael Petlan) [RHEL-78198] - perf/x86: Optimize the is_x86_event (Michael Petlan) [RHEL-78198] - perf/x86/intel: Check the X86 leader for ACR group (Michael Petlan) [RHEL-78198] - perf/core: Fix broken throttling when max_samples_per_tick=1 (Michael Petlan) [RHEL-78198] - perf/x86/amd/uncore: Remove unused 'struct amd_uncore_ctx::node' member (Michael Petlan) [RHEL-78198] - perf/x86/intel: Introduce pairs of PEBS static calls (Michael Petlan) [RHEL-78198] - perf/x86/intel: Rename x86_pmu.pebs to x86_pmu.ds_pebs (Michael Petlan) [RHEL-78198] - perf/x86/intel: Decouple BTS initialization from PEBS initialization (Michael Petlan) [RHEL-78198] - perf/x86/intel: Parse CPUID archPerfmonExt leaves for non-hybrid CPUs (Michael Petlan) [RHEL-78198] - perf/core: Fix event timekeeping merge (Michael Petlan) [RHEL-78198] - perf/core: Fix event->parent life-time issue (Michael Petlan) [RHEL-78198] - perf/core: Fix put_ctx() ordering (Michael Petlan) [RHEL-78198] - perf/core: Fix perf-stat / read() (Michael Petlan) [RHEL-78198] - x86/platform/amd: Move the header to (Michael Petlan) [RHEL-78198] - perf/x86/intel/bts: Replace offsetof() with struct_size() (Michael Petlan) [RHEL-78198] - tools/nolibc/types.h: fix mismatched parenthesis in minor() (Michael Petlan) [RHEL-78198] - perf ui browser hists: Set actions->thread before calling do_zoom_thread() (Michael Petlan) [RHEL-78198] - perf ui browser hists: Simplify the routines that add entries to the popup menu (Michael Petlan) [RHEL-78198] - perf ui browser: Accept the left arrow key as a Zoom out if done on the first column (Michael Petlan) [RHEL-78198] - perf ui browser annotate: Don't show the source code view status initially (Michael Petlan) [RHEL-78198] - perf ui browser annotate: Show in the title the source code view toggle (Michael Petlan) [RHEL-78198] - perf ui browser map: Provide feedback on unhandled hotkeys (Michael Petlan) [RHEL-78198] - perf ui browser hists: Provide feedback on unhandled hotkeys (Michael Petlan) [RHEL-78198] - perf ui browser header: Provide feedback on unhandled hotkeys (Michael Petlan) [RHEL-78198] - perf ui browser annotate: Provide feedback on unhandled hotkeys (Michael Petlan) [RHEL-78198] - perf ui browser annotate-data: Provide feedback on unhandled hotkeys (Michael Petlan) [RHEL-78198] - perf ui browser: Add a warn on unhandled hotkey helper (Michael Petlan) [RHEL-78198] - perf ui browser: Add key_name() helper (Michael Petlan) [RHEL-78198] - tools build: Don't show libbfd build status as it is opt-in (Michael Petlan) [RHEL-78198] - perf check: Add tip about building with libbfd using BUILD_NONDISTRO=1 (Michael Petlan) [RHEL-78198] - perf build: Warn when libdebuginfod devel files are not available (Michael Petlan) [RHEL-78198] - tools build: Don't show libunwind build status as it is opt-in (Michael Petlan) [RHEL-78198] - perf check: Allow showing a tip for opt-in features not built into perf (Michael Petlan) [RHEL-78198] - perf check: Move the FEATURE_STATUS() macro to its only user source file (Michael Petlan) [RHEL-78198] - perf check: Share the feature status printing routine with 'perf version' (Michael Petlan) [RHEL-78198] - tools build: Don't set libunwind as available if test-all.c build succeeds (Michael Petlan) [RHEL-78198] - perf/arch: Record sample last_period before updating on the x86 and PowerPC platforms (Michael Petlan) [RHEL-78198] - perf/x86/intel/bts: Rename local bts_buffer variables for clarity (Michael Petlan) [RHEL-78198] - perf/x86/intel: Support auto counter reload (Michael Petlan) [RHEL-78198] - perf/x86/intel: Add CPUID enumeration for the auto counter reload (Michael Petlan) [RHEL-78198] - perf: Extend the bit width of the arch-specific flag (Michael Petlan) [RHEL-78198] - perf/x86/intel: Track the num of events needs late setup (Michael Petlan) [RHEL-78198] - perf/x86: Add dynamic constraint (Michael Petlan) [RHEL-78198] - perf: Make perf_pmu_unregister() useable (Michael Petlan) [RHEL-78198] - perf: Rename perf_event_exit_task(.child) (Michael Petlan) [RHEL-78198] - perf: Unify perf_event_free_task() / perf_event_exit_task_context() (Michael Petlan) [RHEL-78198] - perf: Simplify perf_event_release_kernel() (Michael Petlan) [RHEL-78198] - perf: Simplify perf_event_free_task() wait (Michael Petlan) [RHEL-78198] - perf: Simplify child event tear-down (Michael Petlan) [RHEL-78198] - perf: Ensure bpf_perf_link path is properly serialized (Michael Petlan) [RHEL-78198] - NFSv4.2: Protect copy offload and clone against 'eof page pollution' (Olga Kornievskaia) [RHEL-95596] - NFS: Protect against 'eof page pollution' (Olga Kornievskaia) [RHEL-95596] - uprobes: Fix race in uprobe_free_utask (Jerome Marchand) [RHEL-111387] - ipv6: reject malicious packets in ipv6_gso_segment() (CKI Backport Bot) [RHEL-113251] {CVE-2025-38572} - wifi: ath12k: Decrement TID on RX peer frag setup error handling (CKI Backport Bot) [RHEL-114710] {CVE-2025-39761} - xfrm: interface: fix use-after-free after changing collect_md xfrm interface (CKI Backport Bot) [RHEL-109531] {CVE-2025-38500} - net: add reserved fields to devlink_port_ops (Ivan Vecera) [RHEL-111907] - net: add reserved fields to devlink_health_reporter_ops (Ivan Vecera) [RHEL-111907] - net: add reserved fields to devlink_port_region_ops (Ivan Vecera) [RHEL-111907] - net: add reserved fields to devlink_region_ops (Ivan Vecera) [RHEL-111907] - net: add reserved fields to devlink_param (Ivan Vecera) [RHEL-111907] - net: add reserved fields to devlink_dpipe_table_ops (Ivan Vecera) [RHEL-111907] - net: add reserved fields to devlink_linecard_ops (Ivan Vecera) [RHEL-111907] - net: add reserved fields to devlink_ops (Ivan Vecera) [RHEL-111907] - net: add reserved fields to devlink_port (Ivan Vecera) [RHEL-111907] - ipv6: mcast: Delay put pmc->idev in mld_del_delrec() (Hangbin Liu) [RHEL-111156] {CVE-2025-38550} - tcp: Correct signedness in skb remaining space calculation (Florian Westphal) [RHEL-107843] {CVE-2025-38463} - ice: use fixed adapter index for E825C embedded devices (Michal Schmidt) [RHEL-111791] - EDAC/amd64: Correct number of UMCs for family 19h models 70h-7fh (Joel Savitz) [RHEL-102253] - platform/x86/intel: power-domains: Use topology_logical_package_id() for package ID (Steve Best) [RHEL-115105] - dpll: zl3073x: Implement devlink flash callback (Ivan Vecera) [RHEL-115367] - dpll: zl3073x: Refactor DPLL initialization (Ivan Vecera) [RHEL-115367] - dpll: zl3073x: Add firmware loading functionality (Ivan Vecera) [RHEL-115367] - dpll: zl3073x: Add low-level flash functions (Ivan Vecera) [RHEL-115367] - dpll: zl3073x: Add functions to access hardware registers (Ivan Vecera) [RHEL-115367] - x86/mce: Make sure CMCI banks are cleared during shutdown on Intel (Steve Best) [RHEL-113399] - x86/mce: Make several functions return bool (Steve Best) [RHEL-113399] - x86/mce/intel: Use MCG_BANKCNT_MASK instead of 0xff (Steve Best) [RHEL-113399] - pinctrl: intel: fix build warnings about export.h (Steve Best) [RHEL-113190] - pinctrl: intel: drop repeated config dependency (Steve Best) [RHEL-113190] - pinctrl: tangier: use devm_kmemdup_array() (Steve Best) [RHEL-113190] - pinctrl: cherryview: use devm_kmemdup_array() (Steve Best) [RHEL-113190] - pinctrl: baytrail: copy communities using devm_kmemdup_array() (Steve Best) [RHEL-113190] - pinctrl: intel: copy communities using devm_kmemdup_array() (Steve Best) [RHEL-113190] - pinctrl: intel: Fix wrong bypass assignment in intel_pinctrl_probe_pwm() (Steve Best) [RHEL-113190] - pinctrl: intel: Import PWM_LPSS namespace for devm_pwm_lpss_probe() (Steve Best) [RHEL-113190] - pinctrl: lynxpoint: Use dedicated helpers for chained IRQ handlers (Steve Best) [RHEL-113190] - pinctrl: baytrail: Use dedicated helpers for chained IRQ handlers (Steve Best) [RHEL-113190] - pinctrl: elkhartlake: Add support for DSW community (Steve Best) [RHEL-113190] - pinctrl: intel: Add a human readable decoder for pull bias values (Steve Best) [RHEL-113190] - net: stmmac: fix TSO DMA API usage causing oops (Izabela Bakollari) [RHEL-84762] - octeon_ep: Fix host hang issue during device reboot (Kamal Heib) [RHEL-90058] - octeon_ep_vf: Resolve netdevice usage count issue (Kamal Heib) [RHEL-90058] - octeon_ep_vf: update tx/rx stats locally for persistence (Kamal Heib) [RHEL-90058] - octeon_ep_vf: remove firmware stats fetch in ndo_get_stats64 (Kamal Heib) [RHEL-90058] - octeon_ep: update tx/rx stats locally for persistence (Kamal Heib) [RHEL-90058] - octeon_ep: remove firmware stats fetch in ndo_get_stats64 (Kamal Heib) [RHEL-90058] - octeon_ep: add ndo ops for VFs in PF driver (Kamal Heib) [RHEL-90058] - net: marvell: use ethtool string helpers (Kamal Heib) [RHEL-90058] - io_uring/futex: ensure io_futex_wait() cleans up properly on failure (CKI Backport Bot) [RHEL-114338] {CVE-2025-39698} - net/sched: Return NULL when htb_lookup_leaf encounters an empty rbtree (CKI Backport Bot) [RHEL-106587] {CVE-2025-38468} - dmaengine: idxd: Check availability of workqueue allocated by idxd wq driver before using (Audra Mitchell) [RHEL-106609] {CVE-2025-38369} - ethtool: Block setting of symmetric RSS when non-symmetric rx-flow-hash is requested (CKI Backport Bot) [RHEL-107023] - flexfiles/pNFS: fix NULL checks on result of ff_layout_choose_ds_for_read (Benjamin Coddington) [RHEL-110294] - pNFS/flexfiles: don't attempt pnfs on fatal DS errors (Benjamin Coddington) [RHEL-110294] - HID: core: Harden s32ton() against conversion to 0 bits (Benjamin Tissoires) [RHEL-111038] {CVE-2025-38556} - Revert "KVM: arm64: Hide ID_AA64MMFR2_EL1.NV from guest and userspace" (Eric Auger) [RHEL-112491] - fs: export anon_inode_make_secure_inode() and fix secretmem LSM bypass (Audra Mitchell) [RHEL-106613] {CVE-2025-38396} - Revert "e1000e: change k1 configuration on MTP and later platforms" (Michal Schmidt) [RHEL-109782] - s390/sclp: Fix SCCB present check (CKI Backport Bot) [RHEL-113560] {CVE-2025-39694} - idpf: convert control queue mutex to a spinlock (CKI Backport Bot) [RHEL-106059] {CVE-2025-38392} - redhat/configs: Enable CONFIG_MITIGATION_TSA for x86 (Waiman Long) [RHEL-83893] - x86/process: Move the buffer clearing before MONITOR (Waiman Long) [RHEL-83893 RHEL-83903] {CVE-2024-36357 CVE-2024-36350} - x86/microcode/AMD: Add TSA microcode SHAs (Waiman Long) [RHEL-83893 RHEL-83903] {CVE-2024-36357 CVE-2024-36350} - KVM: SVM: Advertise TSA CPUID bits to guests (Waiman Long) [RHEL-83893 RHEL-83903] {CVE-2024-36357 CVE-2024-36350} - x86/bugs: Add a Transient Scheduler Attacks mitigation (Waiman Long) [RHEL-83893 RHEL-83903] {CVE-2024-36357 CVE-2024-36350} - x86/bugs: Rename MDS machinery to something more generic (Waiman Long) [RHEL-83893 RHEL-83903] {CVE-2024-36357 CVE-2024-36350} - x86/bugs: Fix spectre_v2 mitigation default on Intel (Waiman Long) [RHEL-83893] - x86/bugs: Restructure ITS mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Fix SRSO reporting on Zen1/2 with SMT disabled (Waiman Long) [RHEL-83893] - x86/idle: Use MONITOR and MWAIT mnemonics in (Waiman Long) [RHEL-83893] - x86/idle: Remove .s output beautifying delimiters from simpler asm() templates (Waiman Long) [RHEL-83893] - x86/idle: Remove MFENCEs for X86_BUG_CLFLUSH_MONITOR in mwait_idle_with_hints() and prefer_mwait_c1_over_halt() (Waiman Long) [RHEL-83893] - x86/cpufeatures: Add X86_FEATURE_APX (Waiman Long) [RHEL-83893] - x86/cpufeatures: Shorten X86_FEATURE_AMD_HETEROGENEOUS_CORES (Waiman Long) [RHEL-83893] - x86/cpufeatures: Shorten X86_FEATURE_CLEAR_BHB_LOOP_ON_VMEXIT (Waiman Long) [RHEL-83893] - x86/cpufeatures: Clean up formatting (Waiman Long) [RHEL-83893] - x86/bugs: Remove X86_BUG_MMIO_UNKNOWN (Waiman Long) [RHEL-83893] - x86/bugs: Restructure SRSO mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure L1TF mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure SSB mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure spectre_v2 mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure BHI mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure spectre_v2_user mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure retbleed mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Allow retbleed=stuff only on Intel (Waiman Long) [RHEL-83893] - x86/bugs: Restructure spectre_v1 mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure GDS mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure SRBDS mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Remove md_clear_*_mitigation() (Waiman Long) [RHEL-83893] - x86/bugs: Restructure RFDS mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure MMIO mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure TAA mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Restructure MDS mitigation (Waiman Long) [RHEL-83893] - x86/bugs: Rename mmio_stale_data_clear to cpu_buf_vm_clear (Waiman Long) [RHEL-83893] - x86/microcode: Consolidate the loader enablement checking (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Fix __apply_microcode_amd()'s return value (Waiman Long) [RHEL-83893] {CVE-2025-22047} - x86: move ZMM exclusion list into CPU feature flag (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Add some forgotten models to the SHA check (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Load only SHA256-checksummed patches (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Add get_patch_level() (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Get rid of the _load_microcode_amd() forward declaration (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Merge early_apply_microcode() into its single callsite (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Remove unused save_microcode_in_initrd_amd() declarations (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Remove ugly linebreak in __verify_patch_section() signature (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Remove ret local var in early_apply_microcode() (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Have __apply_microcode_amd() return bool (Waiman Long) [RHEL-83893] - x86/microcode/AMD: Return bool from find_blobs_in_containers() (Waiman Long) [RHEL-83893] - x86/cpu: Fix formatting of cpuid_bits[] in scattered.c (Waiman Long) [RHEL-83893] - x86/cpufeatures: Add X86_FEATURE_AMD_WORKLOAD_CLASS feature bit (Waiman Long) [RHEL-83893] - drm/virtio: implement virtio_gpu_shutdown (Eric Auger) [RHEL-90224] - io_uring/futex: ensure io_futex_wait() cleans up properly on failure (CKI Backport Bot) [RHEL-114339] {CVE-2025-39698} - redhat: Move the CONFIG_AP and CONFIG_AP_DEBUG switches to the s390x subfolder (Thomas Huth) [RHEL-91273] - RDMA/mana_ib: add support of multiple ports (Maxim Levitsky) [RHEL-109580] - RDMA/mana_ib: add additional port counters (Maxim Levitsky) [RHEL-109580] - RDMA/mana_ib: Fix DSCP value in modify QP (Maxim Levitsky) [RHEL-109580] - net: mana: fix spelling for mana_gd_deregiser_irq() (Maxim Levitsky) [RHEL-109580] - net: mana: Handle Reset Request from MANA NIC (Maxim Levitsky) [RHEL-109580] - net: mana: Handle unsupported HWC commands (Maxim Levitsky) [RHEL-109580] - net: mana: Set tx_packets to post gso processing packet count (Maxim Levitsky) [RHEL-109580] - net: mana: Allocate MSI-X vectors dynamically (Maxim Levitsky) [RHEL-109580] - net: mana: Allow irq_setup() to skip cpus for affinity (Maxim Levitsky) [RHEL-109580] - net: mana: explain irq_setup() algorithm (Maxim Levitsky) [RHEL-109580] - PCI: hv: Allow dynamic MSI-X vector allocation (Maxim Levitsky) [RHEL-109580] - PCI/MSI: Export pci_msix_prepare_desc() for dynamic MSI-X allocations (Maxim Levitsky) [RHEL-109580] - net: mana: Add handler for hardware servicing events (Maxim Levitsky) [RHEL-109580] - RDMA/mana_ib: Add device statistics support (Maxim Levitsky) [RHEL-109580] - net: mana: Expose additional hardware counters for drop and TC via ethtool. (Maxim Levitsky) [RHEL-109580] - net: mana: Fix warnings for missing export.h header inclusion (Maxim Levitsky) [RHEL-109580] - tunnels: reset the GSO metadata before reusing the skb (Antoine Tenart) [RHEL-113911] - netfilter: conntrack: helper: Replace -EEXIST by -EBUSY (Phil Sutter) [RHEL-108858] - s390/sclp: Fix SCCB present check (CKI Backport Bot) [RHEL-113563] {CVE-2025-39694} - config: new config in drivers/phy (Izabela Bakollari) [RHEL-106145] - net: phy: realtek: remove unsed RTL821x_PHYSR* macros (Izabela Bakollari) [RHEL-106145] - net: phy: realtek: make HWMON support a user-visible Kconfig symbol (Izabela Bakollari) [RHEL-106145] - net: phy: realtek: HWMON support for standalone versions of RTL8221B and RTL8251 (Izabela Bakollari) [RHEL-106145] - net: phy: realtek: add hwmon support for temp sensor on RTL822x (Izabela Bakollari) [RHEL-106145] - x86/hyperv: Fix kdump on Azure CVMs (Vitaly Kuznetsov) [RHEL-75576] - cpupower: Improve Python binding's Makefile (John B. Wyatt IV) [RHEL-91191] - cpupower: change binding's makefile to use -lcpupower (John B. Wyatt IV) [RHEL-91191] - pm: cpupower: Add missing residency header changes in cpuidle.h to SWIG (John B. Wyatt IV) [RHEL-91191] - pm: cpupower: Add header changes for cpufreq.h to SWIG bindings (John B. Wyatt IV) [RHEL-91191] - pm: cpupower: Add install and uninstall options to bindings makefile (John B. Wyatt IV) [RHEL-91191] - pm: cpupower: bindings: Add test to confirm cpu state is disabled (John B. Wyatt IV) [RHEL-91191] - pm: cpupower: bindings: Improve disable c_state block (John B. Wyatt IV) [RHEL-91191] - cxl: core/region - ignore interleave granularity when ways=1 (John W. Linville) [RHEL-107880] - posix-cpu-timers: fix race between handle_posix_cpu_timers() and posix_cpu_timer_del() (CKI Backport Bot) [RHEL-112787] {CVE-2025-38352} - netfilter: nf_conntrack: fix crash due to removal of uninitialised entry (Florian Westphal) [RHEL-106441] {CVE-2025-38472} - netfilter: nf_tables: hide clash bit from userspace (Florian Westphal) [RHEL-106441] - selftests: netfilter: conntrack_resize.sh: extend resize test (Florian Westphal) [RHEL-106441] - redhat: Explicitly disable 'hostonly' mode on the dracut cmdline (Vitaly Kuznetsov) [RHEL-109610] - redhat: Directly use 'ukify' for building the UKI (Vitaly Kuznetsov) [RHEL-109610] - redhat: Add SBAT to the UKI unconditionally (Vitaly Kuznetsov) [RHEL-109610] - sunrpc: fix handling of server side tls alerts (Olga Kornievskaia) [RHEL-111072] {CVE-2025-38566} - dpll: add reserved fields to dpll_device_ops and dpll_pin_ops structs (Ivan Vecera) [RHEL-111905] - sunrpc: fix client side handling of tls alerts (Olga Kornievskaia) [RHEL-110814] {CVE-2025-38571} - i40e: report VF tx_dropped with tx_errors instead of tx_discards (Dennis Chen) [RHEL-105134] - kselftests/mm: fix khugepaged build broken (Chunyu Hu) [RHEL-112084] - iommu/virtio: Make instance lookup robust (Eric Auger) [RHEL-108207] - enic: fix incorrect MTU comparison in enic_change_mtu() (CKI Backport Bot) [RHEL-108262] - net/enic: Allow at least 8 RQs to always be used (CKI Backport Bot) [RHEL-108262] - ixgbe: prevent from unwanted interface name changes (CKI Backport Bot) [RHEL-109604] - devlink: let driver opt out of automatic phys_port_name generation (CKI Backport Bot) [RHEL-109604] - redhat: set defaults for RHEL 10.1 (Julio Faracco) - selftests/ftrace: Use readelf to find entry point in uprobe test (Anubhav Shelat) [RHEL-87219] - ublk selftests: add --no_ublk_fixed_fd for not using registered ublk char device (Ming Lei) [RHEL-106845] - ublk: avoid ublk_io_release() called after ublk char dev is closed (Ming Lei) [RHEL-106845] - block: validate QoS before calling __rq_qos_done_bio() (Ming Lei) [RHEL-106845] - md: improve return types of badblocks handling functions (Ming Lei) [RHEL-106845] - raid6: riscv: Fix NULL pointer dereference caused by a missing clobber (Ming Lei) [RHEL-106845] - dm-stripe: limit chunk_sectors to the stripe size (Ming Lei) [RHEL-106845] - md/raid10: set chunk_sectors limit (Ming Lei) [RHEL-106845] - md/raid0: set chunk_sectors limit (Ming Lei) [RHEL-106845] - md: allow removing faulty rdev during resync (Ming Lei) [RHEL-106845] - md/raid5: unset WQ_CPU_INTENSIVE for raid5 unbound workqueue (Ming Lei) [RHEL-106845] - md: remove/add redundancy group only in level change (Ming Lei) [RHEL-106845] - raid6: Add RISC-V SIMD syndrome and recovery calculations (Ming Lei) [RHEL-106845] - md/raid1: Add check for missing source disk in process_checks() (Ming Lei) [RHEL-106845] - md/raid10: fix missing discard IO accounting (Ming Lei) [RHEL-106845] - block: avoid cpu_hotplug_lock depedency on freeze_lock (Ming Lei) [RHEL-106845] - block: decrement block_rq_qos static key in rq_qos_del() (Ming Lei) [RHEL-106845] - block: skip q->rq_qos check in rq_qos_done_bio() (Ming Lei) [RHEL-106845] - blk-mq: fix lockdep warning in __blk_mq_update_nr_hw_queues (Ming Lei) [RHEL-106845] - selftests: ublk: Use ARRAY_SIZE() macro to improve code (Ming Lei) [RHEL-106845] - block: fix kobject double initialization in add_disk (Ming Lei) [RHEL-106845] - block: fix potential deadlock while running nr_hw_queue update (Ming Lei) [RHEL-106845] - block: fix lockdep warning caused by lock dependency in elv_iosched_store (Ming Lei) [RHEL-106845] - block: move elevator queue allocation logic into blk_mq_init_sched (Ming Lei) [RHEL-106845] - ublk: check for unprivileged daemon on each I/O fetch (Ming Lei) [RHEL-106845] - ublk: don't quiesce in ublk_ch_release (Ming Lei) [RHEL-106845] - ublk: remove unused req argument from ublk_sub_req_ref() (Ming Lei) [RHEL-106845] - selftests: ublk: add utils.h (Ming Lei) [RHEL-106845] - selftests: ublk: add helper ublk_handle_uring_cmd() for handle ublk command (Ming Lei) [RHEL-106845] - selftests: ublk: improve flags naming (Ming Lei) [RHEL-106845] - selftests: ublk: remove ublk queue self-defined flags (Ming Lei) [RHEL-106845] - selftests: ublk: pass 'ublk_thread *' to more common helpers (Ming Lei) [RHEL-106845] - selftests: ublk: pass 'ublk_thread *' to ->queue_io() and ->tgt_io_done() (Ming Lei) [RHEL-106845] - selftests: ublk: remove `tag` parameter of ->tgt_io_done() (Ming Lei) [RHEL-106845] - ublk: pass 'const struct ublk_io *' to ublk_[un]map_io() (Ming Lei) [RHEL-106845] - ublk: remove ublk_commit_and_fetch() (Ming Lei) [RHEL-106845] - ublk: add helper ublk_check_fetch_buf() (Ming Lei) [RHEL-106845] - ublk: store auto buffer register data into `struct ublk_io` (Ming Lei) [RHEL-106845] - ublk: move auto buffer register handling into one dedicated helper (Ming Lei) [RHEL-106845] - ublk: avoid to pass `struct ublksrv_io_cmd *` to ublk_commit_and_fetch() (Ming Lei) [RHEL-106845] - ublk: let ublk_fill_io_cmd() cover more things (Ming Lei) [RHEL-106845] - ublk: move fake timeout logic into __ublk_complete_rq() (Ming Lei) [RHEL-106845] - ublk: look up ublk task via its pid in timeout handler (Ming Lei) [RHEL-106845] - ublk: validate ublk server pid (Ming Lei) [RHEL-106845] - ublk: introduce and use ublk_set_canceling helper (Ming Lei) [RHEL-106845] - ublk: speed up ublk server exit handling (Ming Lei) [RHEL-106845] - blk-mq: add number of queue calc helper (Ming Lei) [RHEL-106845] - ublk: cache-align struct ublk_io (Ming Lei) [RHEL-106845] - ublk: remove ubq checks from ublk_{get,put}_req_ref() (Ming Lei) [RHEL-106845] - ublk: optimize UBLK_IO_UNREGISTER_IO_BUF on daemon task (Ming Lei) [RHEL-106845] - ublk: optimize UBLK_IO_REGISTER_IO_BUF on daemon task (Ming Lei) [RHEL-106845] - ublk: return early if blk_should_fake_timeout() (Ming Lei) [RHEL-106845] - ublk: allow UBLK_IO_(UN)REGISTER_IO_BUF on any task (Ming Lei) [RHEL-106845] - ublk: don't take ublk_queue in ublk_unregister_io_buf() (Ming Lei) [RHEL-106845] - ublk: consolidate UBLK_IO_FLAG_{ACTIVE,OWNED_BY_SRV} checks (Ming Lei) [RHEL-106845] - ublk: remove task variable from __ublk_ch_uring_cmd() (Ming Lei) [RHEL-106845] - ublk: handle UBLK_IO_FETCH_REQ earlier (Ming Lei) [RHEL-106845] - ublk: check cmd_op first (Ming Lei) [RHEL-106845] - ublk: remove struct ublk_rq_data (Ming Lei) [RHEL-106845] - ublk: use vmalloc for ublk_device's __queues (Ming Lei) [RHEL-106845] - redhat/configs: Adding CONFIG_BLK_DEV_ZONED_LOOP (Ming Lei) [RHEL-106845] - block: restore default wbt enablement (Ming Lei) [RHEL-106845] - zloop: fix KASAN use-after-free of tag set (Ming Lei) [RHEL-106845] {CVE-2025-38620} - mm: fix vmstat after removing NR_BOUNCE (Ming Lei) [RHEL-106845] - nbd: fix lockdep deadlock warning (Ming Lei) [RHEL-106845] - block: restore two stage elevator switch while running nr_hw_queue update (Ming Lei) [RHEL-106845] - md/raid10: fix set but not used variable in sync_request_write() (Ming Lei) [RHEL-106845] - block: fix module reference leak in mq-deadline I/O scheduler (Ming Lei) [RHEL-106845] - nvme: fix inconsistent RCU list manipulation in nvme_ns_add_to_ctrl_list() (Ming Lei) [RHEL-106845] - block: fix kobject leak in blk_unregister_queue (Ming Lei) [RHEL-106845] - nbd: fix uaf in nbd_genl_connect() error path (Ming Lei) [RHEL-106845] {CVE-2025-38443} - md/md-bitmap: fix GPF in bitmap_get_stats() (Ming Lei) [RHEL-106845] {CVE-2025-38451} - md/md-bitmap: fix stats collection for external bitmaps (Ming Lei) [RHEL-106845] - md/raid1,raid10: strip REQ_NOWAIT from member bios (Ming Lei) [RHEL-106845] - raid10: cleanup memleak at raid10_make_request (Ming Lei) [RHEL-106845] {CVE-2025-38444} - md/raid1: Fix stack memory use after return in raid1_reshape (Ming Lei) [RHEL-106845] {CVE-2025-38445} - brd: fix sleeping function called from invalid context in brd_insert_page() (Ming Lei) [RHEL-106845] - ublk: don't queue request if the associated uring_cmd is canceled (Ming Lei) [RHEL-106845] - block: fix false warning in bdev_count_inflight_rw() (Ming Lei) [RHEL-106845] - ublk: sanity check add_dev input for underflow (Ming Lei) [RHEL-106845] - ublk: setup ublk_io correctly in case of ublk_get_data() failure (Ming Lei) [RHEL-106845] - ublk: update UBLK_F_SUPPORT_ZERO_COPY comment in UAPI header (Ming Lei) [RHEL-106845] - ublk: fix narrowing warnings in UAPI header (Ming Lei) [RHEL-106845] - selftests: ublk: don't take same backing file for more than one ublk devices (Ming Lei) [RHEL-106845] - ublk: build batch from IOs in same io_ring_ctx and io task (Ming Lei) [RHEL-106845] - ublk: santizize the arguments from userspace when adding a device (Ming Lei) [RHEL-106845] {CVE-2025-38182} - aoe: defer rexmit timer downdev work to workqueue (Ming Lei) [RHEL-106845] - aoe: clean device rq_list in aoedev_downdev() (Ming Lei) [RHEL-106845] {CVE-2025-38326} - nvme: always punt polled uring_cmd end_io work to task_work (Ming Lei) [RHEL-106845] - Documentation: ublk: Separate UBLK_F_AUTO_BUF_REG fallback behavior sublists (Ming Lei) [RHEL-106845] - block: Fix bvec_set_folio() for very large folios (Ming Lei) [RHEL-106845] - bio: Fix bio_first_folio() for SPARSEMEM without VMEMMAP (Ming Lei) [RHEL-106845] - block: don't use submit_bio_noacct_nocheck in blk_zone_wplug_bio_work (Ming Lei) [RHEL-106845] {CVE-2025-38302} - block: Clear BIO_EMULATES_ZONE_APPEND flag on BIO completion (Ming Lei) [RHEL-106845] - ublk: document auto buffer registration(UBLK_F_AUTO_BUF_REG) (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: improve behavior on init failure (Ming Lei) [RHEL-106845] - block: drop direction param from bio_integrity_copy_user() (Ming Lei) [RHEL-106845] - selftests: ublk: cover PER_IO_DAEMON in more stress tests (Ming Lei) [RHEL-106845] - Documentation: ublk: document UBLK_F_PER_IO_DAEMON (Ming Lei) [RHEL-106845] - selftests: ublk: add stress test for per io daemons (Ming Lei) [RHEL-106845] - selftests: ublk: add functional test for per io daemons (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: decouple ublk_queues from ublk server threads (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: move per-thread data out of ublk_queue (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: lift queue initialization out of thread (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: tie sqe allocation to io instead of queue (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: plumb q_id in io_uring user_data (Ming Lei) [RHEL-106845] - ublk: have a per-io daemon instead of a per-queue daemon (Ming Lei) [RHEL-106845] - md/md-bitmap: remove parameter slot from bitmap_create() (Ming Lei) [RHEL-106845] - md/md-bitmap: cleanup bitmap_ops->startwrite() (Ming Lei) [RHEL-106845] - md/dm-raid: remove max_write_behind setting limit (Ming Lei) [RHEL-106845] - md/md-bitmap: fix dm-raid max_write_behind setting (Ming Lei) [RHEL-106845] - md/raid1,raid10: don't handle IO error for REQ_RAHEAD and REQ_NOWAIT (Ming Lei) [RHEL-106845] - selftests: ublk: add test for UBLK_F_QUIESCE (Ming Lei) [RHEL-106845] - ublk: add feature UBLK_F_QUIESCE (Ming Lei) [RHEL-106845] - selftests: ublk: add test case for UBLK_U_CMD_UPDATE_SIZE (Ming Lei) [RHEL-106845] - traceevent/block: Add REQ_ATOMIC flag to block trace events (Ming Lei) [RHEL-106845] - ublk: run auto buf unregisgering in same io_ring_ctx with registering (Ming Lei) [RHEL-106845] - io_uring: add helper io_uring_cmd_ctx_handle() (Ming Lei) [RHEL-106845] - ublk: remove io argument from ublk_auto_buf_reg_fallback() (Ming Lei) [RHEL-106845] - ublk: handle ublk_set_auto_buf_reg() failure correctly in ublk_fetch() (Ming Lei) [RHEL-106845] - selftests: ublk: add test for covering UBLK_AUTO_BUF_REG_FALLBACK (Ming Lei) [RHEL-106845] - selftests: ublk: support UBLK_F_AUTO_BUF_REG (Ming Lei) [RHEL-106845] - ublk: support UBLK_AUTO_BUF_REG_FALLBACK (Ming Lei) [RHEL-106845] - ublk: register buffer to local io_uring with provided buf index via UBLK_F_AUTO_BUF_REG (Ming Lei) [RHEL-106845] - ublk: prepare for supporting to register request buffer automatically (Ming Lei) [RHEL-106845] - ublk: convert to refcount_t (Ming Lei) [RHEL-106845] - selftests: ublk: make IO & device removal test more stressful (Ming Lei) [RHEL-106845] - nvmet-tcp: switch to using the crc32c library (Ming Lei) [RHEL-106845] - nvmet: replace strncpy with strscpy (Ming Lei) [RHEL-106845] - nvme-tcp: open-code nvme_tcp_queue_request() for R2T (Ming Lei) [RHEL-106845] - nvme-loop: avoid -Wflex-array-member-not-at-end warning (Ming Lei) [RHEL-106845] - blk-mq: add a copyright notice to blk-mq-dma.c (Ming Lei) [RHEL-106845] - blk-mq: move the DMA mapping code to a separate file (Ming Lei) [RHEL-106845] - cdrom: Remove unnecessary NULL check before unregister_sysctl_table() (Ming Lei) [RHEL-106845] - block: fix elv_update_nr_hw_queues() to reattach elevator (Ming Lei) [RHEL-106845] - brd: avoid extra xarray lookups on first write (Ming Lei) [RHEL-106845] - block: Remove obsolete configs BLK_MQ_{PCI,VIRTIO} (Ming Lei) [RHEL-106845] - block: remove the same_page output argument to bvec_try_merge_page (Ming Lei) [RHEL-106845] - block: unfreeze queue if realloc tag set fails during nr_hw_queues update (Ming Lei) [RHEL-106845] - md: clean up accounting for issued sync IO (Ming Lei) [RHEL-106845] - md: fix is_mddev_idle() (Ming Lei) [RHEL-106845] - md: add a new api sync_io_depth (Ming Lei) [RHEL-106845] - md: record dm-raid gendisk in mddev (Ming Lei) [RHEL-106845] - block: export API to get the number of bdev inflight IO (Ming Lei) [RHEL-106845] - block: clean up blk_mq_in_flight_rw() (Ming Lei) [RHEL-106845] - block: WARN if bdev inflight counter is negative (Ming Lei) [RHEL-106845] - block: reuse part_in_flight_rw for part_in_flight (Ming Lei) [RHEL-106845] - blk-mq: remove blk_mq_in_flight() (Ming Lei) [RHEL-106845] - block: move removing elevator after deleting disk->queue_kobj (Ming Lei) [RHEL-106845] - block: don't quiesce queue for calling elevator_set_none() (Ming Lei) [RHEL-106845] - fs: aio: initialize .ki_write_stream of read-write request (Ming Lei) [RHEL-106845] - dm-integrity: use bio_add_virt_nofail (Ming Lei) [RHEL-106845] - dm-bufio: use bio_add_virt_nofail (Ming Lei) [RHEL-106845] - PM: hibernate: split and simplify hib_submit_io (Ming Lei) [RHEL-106845] - zonefs: use bdev_rw_virt in zonefs_read_super (Ming Lei) [RHEL-106845] - gfs2: use bdev_rw_virt in gfs2_read_super (Ming Lei) [RHEL-106845] - rnbd-srv: use bio_add_virt_nofail (Ming Lei) [RHEL-106845] - bcache: use bio_add_virt_nofail (Ming Lei) [RHEL-106845] - block: simplify bio_map_kern (Ming Lei) [RHEL-106845] - block: pass the operation to bio_{map,copy}_kern (Ming Lei) [RHEL-106845] - block: remove the q argument from blk_rq_map_kern (Ming Lei) [RHEL-106845] - block: add a bio_add_vmalloc helpers (Ming Lei) [RHEL-106845] - block: add a bio_add_max_vecs helper (Ming Lei) [RHEL-106845] - block: add a bdev_rw_virt helper (Ming Lei) [RHEL-106845] - block: add a bio_add_virt_nofail helper (Ming Lei) [RHEL-106845] - block: fix warning on 'make htmldocs' (Ming Lei) [RHEL-106845] - nvme: fix incorrect sizeof (Ming Lei) [RHEL-106845] - nvme: fix write_stream_granularity initialization (Ming Lei) [RHEL-106845] - nvme: use fdp streams if write stream is provided (Ming Lei) [RHEL-106845] - nvme: register fdp parameters with the block layer (Ming Lei) [RHEL-106845] - nvme: add FDP definitions (Ming Lei) [RHEL-106845] - nvme: pass a void pointer to nvme_get/set_features for the result (Ming Lei) [RHEL-106845] - nvme: add a nvme_get_log_lsi helper (Ming Lei) [RHEL-106845] - io_uring: enable per-io write streams (Ming Lei) [RHEL-106845] - block: expose write streams for block device nodes (Ming Lei) [RHEL-106845] - block: introduce a write_stream_granularity queue limit (Ming Lei) [RHEL-106845] - block: introduce max_write_streams queue limit (Ming Lei) [RHEL-106845] - block: add a bi_write_stream field (Ming Lei) [RHEL-106845] - fs: add a write stream field to the kiocb (Ming Lei) [RHEL-106845] - block: only update request sector if needed (Ming Lei) [RHEL-106845] - block: move wbt_enable_default() out of queue freezing from sched ->exit() (Ming Lei) [RHEL-106845] - block: move hctx cpuhp add/del out of queue freezing (Ming Lei) [RHEL-106845] - block: don't acquire ->elevator_lock in blk_mq_map_swqueue and blk_mq_realloc_hw_ctxs (Ming Lei) [RHEL-106845] - block: move hctx debugfs/sysfs registering out of freezing queue (Ming Lei) [RHEL-106845] - block: move elv_register[unregister]_queue out of elevator_lock (Ming Lei) [RHEL-106845] - block: add new helper for disabling elevator switch when deleting disk (Ming Lei) [RHEL-106845] - block: fail to show/store elevator sysfs attribute if elevator is dying (Ming Lei) [RHEL-106845] - block: remove elevator queue's type check in elv_attr_show/store() (Ming Lei) [RHEL-106845] - block: pass elevator_queue to elv_register_queue & unregister_queue (Ming Lei) [RHEL-106845] - block: unifying elevator change (Ming Lei) [RHEL-106845] - block: add `struct elv_change_ctx` for unifying elevator change (Ming Lei) [RHEL-106845] - block: move queue freezing & elevator_lock into elevator_change() (Ming Lei) [RHEL-106845] - block: simplify elevator reattachment for updating nr_hw_queues (Ming Lei) [RHEL-106845] - block: move blk_queue_registered() check into elv_iosched_store() (Ming Lei) [RHEL-106845] - block: fold elevator_disable into elevator_switch (Ming Lei) [RHEL-106845] - block: look up the elevator type in elevator_switch (Ming Lei) [RHEL-106845] - block: don't allow to switch elevator if updating nr_hw_queues is in-progress (Ming Lei) [RHEL-106845] - block: prevent adding/deleting disk during updating nr_hw_queues (Ming Lei) [RHEL-106845] - block: add helper add_disk_final() (Ming Lei) [RHEL-106845] - block: move sched debugfs register into elvevator_register_queue (Ming Lei) [RHEL-106845] - block: add two helpers for registering/un-registering sched debugfs (Ming Lei) [RHEL-106845] - block: use q->elevator with ->elevator_lock held in elv_iosched_show() (Ming Lei) [RHEL-106845] - block: don't call freeze queue in elevator_switch() and elevator_disable() (Ming Lei) [RHEL-106845] - block: move ELEVATOR_FLAG_DISABLE_WBT a request queue flag (Ming Lei) [RHEL-106845] - block: move blk_mq_add_queue_tag_set() after blk_mq_map_swqueue() (Ming Lei) [RHEL-106845] - brd: fix discard end sector (Ming Lei) [RHEL-106845] - brd: fix aligned_sector from brd_do_discard() (Ming Lei) [RHEL-106845] - brd: protect page with rcu (Ming Lei) [RHEL-106845] - ublk: consolidate UBLK_IO_FLAG_OWNED_BY_SRV checks (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: fix include path (Ming Lei) [RHEL-106845] - selftests: ublk: make test_generic_06 silent on success (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: build with -Werror iff WERROR!=0 (Ming Lei) [RHEL-106845] - mm: remove NR_BOUNCE zone stat (Ming Lei) [RHEL-106845] - block: remove bounce buffering support (Ming Lei) [RHEL-106845] - scsi: remove the no_highmem flag in the host (Ming Lei) [RHEL-106845] - usb-storage: reject probe of device one non-DMA HCDs when using highmem (Ming Lei) [RHEL-106845] - scsi: make ppa depend on !HIGHMEM (Ming Lei) [RHEL-106845] - scsi: make imm depend on !HIGHMEM (Ming Lei) [RHEL-106845] - scsi: make aha152x depend on !HIGHMEM (Ming Lei) [RHEL-106845] - block: use writeback_iter (Ming Lei) [RHEL-106845] - ublk: store request pointer in ublk_io (Ming Lei) [RHEL-106845] - ublk: check UBLK_IO_FLAG_OWNED_BY_SRV in ublk_abort_queue() (Ming Lei) [RHEL-106845] - ublk: don't call ublk_dispatch_req() for NEED_GET_DATA (Ming Lei) [RHEL-106845] - ublk: factor out ublk_start_io() helper (Ming Lei) [RHEL-106845] - ublk: don't log uring_cmd cmd_op in ublk_dispatch_req() (Ming Lei) [RHEL-106845] - ublk: take const ubq pointer in ublk_get_iod() (Ming Lei) [RHEL-106845] - ublk: remove misleading "ubq" in "ubq_complete_io_cmd()" (Ming Lei) [RHEL-106845] - ublk: fix "immepdately" typo in comment (Ming Lei) [RHEL-106845] - ublk: factor out ublk_commit_and_fetch (Ming Lei) [RHEL-106845] - block: avoid hctx spinlock for plug with multiple queues (Ming Lei) [RHEL-106845] - block: factor out blk_mq_dispatch_queue_requests() helper (Ming Lei) [RHEL-106845] - block: take rq_list instead of plug in dispatch functions (Ming Lei) [RHEL-106845] - Documentation: Document the new zoned loop block device driver (Ming Lei) [RHEL-106845] - block: new zoned loop block device driver (Ming Lei) [RHEL-106845] - brd: use memcpy_{to,from]_page in brd_rw_bvec (Ming Lei) [RHEL-106845] - brd: split I/O at page boundaries (Ming Lei) [RHEL-106845] - brd: use bvec_kmap_local in brd_do_bvec (Ming Lei) [RHEL-106845] - brd: remove the sector variable in brd_submit_bio (Ming Lei) [RHEL-106845] - brd: pass a bvec pointer to brd_do_bvec (Ming Lei) [RHEL-106845] - ublk: remove unnecessary ubq checks (Ming Lei) [RHEL-106845] - ublk: Add UBLK_U_CMD_UPDATE_SIZE (Ming Lei) [RHEL-106845] - block: blk-rq-qos: guard rq-qos helpers by static key (Ming Lei) [RHEL-106845] - block: ensure that struct blk_mq_alloc_data is fully initialized (Ming Lei) [RHEL-106845] - block: Simplify blk_mq_dispatch_rq_list() and its callers (Ming Lei) [RHEL-106845] - ublk: fix dead loop when canceling io command (Ming Lei) [RHEL-106845] - ublk: remove the check of ublk_need_req_ref() from __ublk_check_and_get_req (Ming Lei) [RHEL-106845] - ublk: enhance check for register/unregister io buffer command (Ming Lei) [RHEL-106845] - ublk: decouple zero copy from user copy (Ming Lei) [RHEL-106845] - selftests: ublk: fix UBLK_F_NEED_GET_DATA (Ming Lei) [RHEL-106845] - ublk: fix race between io_uring_cmd_complete_in_task and ublk_cancel_cmd (Ming Lei) [RHEL-106845] {CVE-2025-37906} - ublk: call ublk_dispatch_req() for handling UBLK_U_IO_NEED_GET_DATA (Ming Lei) [RHEL-106845] - selftests: ublk: common: fix _get_disk_dev_t for pre-9.0 coreutils (Ming Lei) [RHEL-106845] - selftests: ublk: remove useless 'delay_us' from 'struct dev_ctx' (Ming Lei) [RHEL-106845] - selftests: ublk: fix recover test (Ming Lei) [RHEL-106845] - selftests: ublk: add generic_06 for covering fault inject (Ming Lei) [RHEL-106845] - ublk: simplify aborting ublk request (Ming Lei) [RHEL-106845] - ublk: remove __ublk_quiesce_dev() (Ming Lei) [RHEL-106845] - ublk: improve detection and handling of ublk server exit (Ming Lei) [RHEL-106845] - ublk: move device reset into ublk_ch_release() (Ming Lei) [RHEL-106845] - ublk: rely on ->canceling for dealing with ublk_nosrv_dev_should_queue_io (Ming Lei) [RHEL-106845] - ublk: add ublk_force_abort_dev() (Ming Lei) [RHEL-106845] - ublk: properly serialize all FETCH_REQs (Ming Lei) [RHEL-106845] - selftests: ublk: move creating UBLK_TMP into _prep_test() (Ming Lei) [RHEL-106845] - selftests: ublk: add test_stress_05.sh (Ming Lei) [RHEL-106845] - selftests: ublk: support user recovery (Ming Lei) [RHEL-106845] - selftests: ublk: support target specific command line (Ming Lei) [RHEL-106845] - selftests: ublk: increase max nr_queues and queue depth (Ming Lei) [RHEL-106845] - selftests: ublk: set queue pthread's cpu affinity (Ming Lei) [RHEL-106845] - selftests: ublk: setup ring with IORING_SETUP_SINGLE_ISSUER/IORING_SETUP_DEFER_TASKRUN (Ming Lei) [RHEL-106845] - selftests: ublk: add two stress tests for zero copy feature (Ming Lei) [RHEL-106845] - selftests: ublk: run stress tests in parallel (Ming Lei) [RHEL-106845] - selftests: ublk: make sure _add_ublk_dev can return in sub-shell (Ming Lei) [RHEL-106845] - selftests: ublk: cleanup backfile automatically (Ming Lei) [RHEL-106845] - selftests: ublk: add io_uring uapi header (Ming Lei) [RHEL-106845] - selftests: ublk: fix ublk_find_tgt() (Ming Lei) [RHEL-106845] - ublk: don't suggest CONFIG_BLK_DEV_UBLK=Y (Ming Lei) [RHEL-106845] - ublk: pass ublksrv_ctrl_cmd * instead of io_uring_cmd * (Ming Lei) [RHEL-106845] - ublk: don't fail request for recovery & reissue in case of ubq->canceling (Ming Lei) [RHEL-106845] - ublk: fix handling recovery & reissue in ublk_abort_queue() (Ming Lei) [RHEL-106845] {CVE-2025-37759} - selftests: ublk: fix test_stripe_04 (Ming Lei) [RHEL-106845] - io_uring/rsrc: validate buffer count with offset for cloning (Ming Lei) [RHEL-106845] {CVE-2025-38196} - io_uring/memmap: cast nr_pages to size_t before shifting (Ming Lei) [RHEL-106845] - io_uring/poll: fix POLLERR handling (Ming Lei) [RHEL-106845] - io_uring/net: only consider msg_inq if larger than 1 (Ming Lei) [RHEL-106845] - io_uring: don't assume uaddr alignment in io_vec_fill_bvec (Ming Lei) [RHEL-106845] - io_uring/net: always use current transfer count for buffer put (Ming Lei) [RHEL-106845] - io_uring/net: only retry recv bundle for a full transfer (Ming Lei) [RHEL-106845] - io_uring: fix overflow resched cqe reordering (Ming Lei) [RHEL-106845] - io_uring/cmd: axe duplicate io_uring_cmd_import_fixed_vec() declaration (Ming Lei) [RHEL-106845] - io_uring/fdinfo: grab ctx->uring_lock around io_uring_show_fdinfo() (Ming Lei) [RHEL-106845] {CVE-2025-38002} - io_uring/memmap: don't use page_address() on a highmem page (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: fix hybrid polling initialization issue (Ming Lei) [RHEL-106845] - io_uring/sqpoll: Increase task_work submission batch size (Ming Lei) [RHEL-106845] - io_uring: always arm linked timeouts prior to issue (Ming Lei) [RHEL-106845] - io_uring/fdinfo: annotate racy sq/cq head/tail reads (Ming Lei) [RHEL-106845] - io_uring: fix 'sync' handling of io_fallback_tw() (Ming Lei) [RHEL-106845] - io_uring: don't duplicate flushing in io_req_post_cqe (Ming Lei) [RHEL-106845] - io_uring/rsrc: ensure segments counts are correct on kbuf buffers (Ming Lei) [RHEL-106845] - io_uring/rsrc: send exact nr_segs for fixed buffer (Ming Lei) [RHEL-106845] - io_uring/rsrc: refactor io_import_fixed (Ming Lei) [RHEL-106845] - io_uring/rsrc: separate kbuf offset adjustments (Ming Lei) [RHEL-106845] - io_uring/rsrc: don't skip offset calculation (Ming Lei) [RHEL-106845] - io_uring/kbuf: reject zero sized provided buffers (Ming Lei) [RHEL-106845] - io_uring: don't post tag CQEs on file/buffer registration failure (Ming Lei) [RHEL-106845] - io_uring: always do atomic put from iowq (Ming Lei) [RHEL-106845] - selftests: ublk: enable zero copy for stripe target (Ming Lei) [RHEL-106845] - io_uring: support vectored kernel fixed buffer (Ming Lei) [RHEL-106845] - io_uring: add validate_fixed_range() for validate fixed buffer (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: fix an error log line (Ming Lei) [RHEL-106845] - selftests: ublk: kublk: use ioctl-encoded opcodes (Ming Lei) [RHEL-106845] - io_uring/net: avoid import_ubuf for regvec send (Ming Lei) [RHEL-106845] - io_uring/rsrc: check size when importing reg buffer (Ming Lei) [RHEL-106845] - io_uring: cleanup {g,s]etsockopt sqe reading (Ming Lei) [RHEL-106845] - io_uring: hide caches sqes from drivers (Ming Lei) [RHEL-106845] - io_uring: add req flag invariant build assertion (Ming Lei) [RHEL-106845] - Documentation: ublk: remove dead footnote (Ming Lei) [RHEL-106845] - selftests: ublk: specify io_cmd_buf pointer type (Ming Lei) [RHEL-106845] - ublk: specify io_cmd_buf pointer type (Ming Lei) [RHEL-106845] - io_uring: don't pass ctx to tw add remote helper (Ming Lei) [RHEL-106845] - io_uring/msg: initialise msg request opcode (Ming Lei) [RHEL-106845] - io_uring/msg: rename io_double_lock_ctx() (Ming Lei) [RHEL-106845] - io_uring/net: import zc ubuf earlier (Ming Lei) [RHEL-106845] - io_uring/net: set sg_from_iter in advance (Ming Lei) [RHEL-106845] - io_uring/net: clusterise send vs msghdr branches (Ming Lei) [RHEL-106845] - io_uring/net: unify sendmsg setup with zc (Ming Lei) [RHEL-106845] - io_uring/net: combine sendzc flags writes (Ming Lei) [RHEL-106845] - io_uring/net: open code io_net_vec_assign() (Ming Lei) [RHEL-106845] - io_uring/net: open code io_sendmsg_copy_hdr() (Ming Lei) [RHEL-106845] - ublk: store req in ublk_uring_cmd_pdu for ublk_cmd_tw_cb() (Ming Lei) [RHEL-106845] - ublk: avoid redundant io->cmd in ublk_queue_cmd_list() (Ming Lei) [RHEL-106845] - ublk: get ubq from pdu in ublk_cmd_list_tw_cb() (Ming Lei) [RHEL-106845] - ublk: skip 1 NULL check in ublk_cmd_list_tw_cb() loop (Ming Lei) [RHEL-106845] - ublk: remove unused cmd argument to ublk_dispatch_req() (Ming Lei) [RHEL-106845] - selftests: ublk: add test for checking zero copy related parameter (Ming Lei) [RHEL-106845] - selftests: ublk: add more tests for covering MQ (Ming Lei) [RHEL-106845] - ublk: rename ublk_rq_task_work_cb as ublk_cmd_tw_cb (Ming Lei) [RHEL-106845] - ublk: implement ->queue_rqs() (Ming Lei) [RHEL-106845] - ublk: document zero copy feature (Ming Lei) [RHEL-106845] - ublk: add segment parameter (Ming Lei) [RHEL-106845] - ublk: call io_uring_cmd_to_pdu to get uring_cmd pdu (Ming Lei) [RHEL-106845] - ublk: add helper of ublk_need_map_io() (Ming Lei) [RHEL-106845] - ublk: remove two unused fields from 'struct ublk_queue' (Ming Lei) [RHEL-106845] - ublk: comment on ubq->canceling handling in ublk_queue_rq() (Ming Lei) [RHEL-106845] - ublk: make sure ubq->canceling is set when queue is frozen (Ming Lei) [RHEL-106845] {CVE-2025-22068} - io_uring/net: account memory for zc sendmsg (Ming Lei) [RHEL-106845] - io_uring/net: fix io_req_post_cqe abuse by send bundle (Ming Lei) [RHEL-106845] - io_uring/net: use REQ_F_IMPORT_BUFFER for send_zc (Ming Lei) [RHEL-106845] - io_uring: move min_events sanitisation (Ming Lei) [RHEL-106845] - io_uring: rename "min" arg in io_iopoll_check() (Ming Lei) [RHEL-106845] - io_uring: open code __io_post_aux_cqe() (Ming Lei) [RHEL-106845] - io_uring: defer iowq cqe overflow via task_work (Ming Lei) [RHEL-106845] - io_uring: fix retry handling off iowq (Ming Lei) [RHEL-106845] - io_uring/net: only import send_zc buffer once (Ming Lei) [RHEL-106845] - io_uring/cmd: introduce io_uring_cmd_import_fixed_vec (Ming Lei) [RHEL-106845] - io_uring/cmd: add iovec cache for commands (Ming Lei) [RHEL-106845] - io_uring/cmd: don't expose entire cmd async data (Ming Lei) [RHEL-106845] - io_uring: rename the data cmd cache (Ming Lei) [RHEL-106845] - io_uring: rely on io_prep_reg_vec for iovec placement (Ming Lei) [RHEL-106845] - io_uring: introduce io_prep_reg_iovec() (Ming Lei) [RHEL-106845] - io_uring: unify STOP_MULTISHOT with IOU_OK (Ming Lei) [RHEL-106845] - io_uring: return -EAGAIN to continue multishot (Ming Lei) [RHEL-106845] - io_uring: cap cached iovec/bvec size (Ming Lei) [RHEL-106845] - io_uring/net: implement vectored reg bufs for zctx (Ming Lei) [RHEL-106845] - io_uring/net: convert to struct iou_vec (Ming Lei) [RHEL-106845] - io_uring/net: pull vec alloc out of msghdr import (Ming Lei) [RHEL-106845] - io_uring/net: combine msghdr copy (Ming Lei) [RHEL-106845] - io_uring/rw: defer reg buf vec import (Ming Lei) [RHEL-106845] - io_uring/rw: implement vectored registered rw (Ming Lei) [RHEL-106845] - io_uring: add infra for importing vectored reg buffers (Ming Lei) [RHEL-106845] - io_uring: introduce struct iou_vec (Ming Lei) [RHEL-106845] - selftests: ublk: add stripe target (Ming Lei) [RHEL-106845] - selftests: ublk: simplify loop io completion (Ming Lei) [RHEL-106845] - selftests: ublk: enable zero copy for null target (Ming Lei) [RHEL-106845] - selftests: ublk: prepare for supporting stripe target (Ming Lei) [RHEL-106845] - selftests: ublk: move common code into common.c (Ming Lei) [RHEL-106845] - selftests: ublk: increase max buffer size to 1MB (Ming Lei) [RHEL-106845] - selftests: ublk: add single sqe allocator helper (Ming Lei) [RHEL-106845] - selftests: ublk: add generic_01 for verifying sequential IO order (Ming Lei) [RHEL-106845] - selftests: ublk: fix starting ublk device (Ming Lei) [RHEL-106845] - io_uring: enable toggle of iowait usage when waiting on CQEs (Ming Lei) [RHEL-106845] - selftests: ublk: fix write cache implementation (Ming Lei) [RHEL-106845] - selftests: ublk: add variable for user to not show test result (Ming Lei) [RHEL-106845] - selftests: ublk: don't show `modprobe` failure (Ming Lei) [RHEL-106845] - selftests: ublk: add one dependency header (Ming Lei) [RHEL-106845] - io_uring/kbuf: enable bundles for incrementally consumed buffers (Ming Lei) [RHEL-106845] - Revert "io_uring/rsrc: simplify the bvec iter count calculation" (Ming Lei) [RHEL-106845] - selftests: ublk: improve test usability (Ming Lei) [RHEL-106845] - selftests: ublk: add stress test for covering IO vs. killing ublk server (Ming Lei) [RHEL-106845] - selftests: ublk: add one stress test for covering IO vs. removing device (Ming Lei) [RHEL-106845] - selftests: ublk: load/unload ublk_drv when preparing & cleaning up tests (Ming Lei) [RHEL-106845] - selftests: ublk: move zero copy feature check into _add_ublk_dev() (Ming Lei) [RHEL-106845] - selftests: ublk: don't pass ${dev_id} to _cleanup_test() (Ming Lei) [RHEL-106845] - selftests: ublk: support shellcheck and fix all warning (Ming Lei) [RHEL-106845] - selftests: ublk: fix parsing '-a' argument (Ming Lei) [RHEL-106845] - selftests: ublk: add --foreground command line (Ming Lei) [RHEL-106845] - selftests: ublk: fix build failure (Ming Lei) [RHEL-106845] - selftests: ublk: make ublk_stop_io_daemon() more reliable (Ming Lei) [RHEL-106845] - io_uring: Remove unused declaration io_alloc_async_data() (Ming Lei) [RHEL-106845] - io_uring: introduce io_cache_free() helper (Ming Lei) [RHEL-106845] - io_uring/rsrc: skip NULL file/buffer checks in io_free_rsrc_node() (Ming Lei) [RHEL-106845] - io_uring/rsrc: avoid NULL node check on io_sqe_buffer_register() failure (Ming Lei) [RHEL-106845] - io_uring/rsrc: call io_free_node() on io_sqe_buffer_register() failure (Ming Lei) [RHEL-106845] - io_uring/rsrc: free io_rsrc_node using kfree() (Ming Lei) [RHEL-106845] - io_uring/rsrc: split out io_free_node() helper (Ming Lei) [RHEL-106845] - io_uring/rsrc: include io_uring_types.h in rsrc.h (Ming Lei) [RHEL-106845] - ublk: don't cast registered buffer index to int (Ming Lei) [RHEL-106845] - io_uring/nop: use io_find_buf_node() (Ming Lei) [RHEL-106845] - io_uring/rsrc: declare io_find_buf_node() in header file (Ming Lei) [RHEL-106845] - io_uring/ublk: report error when unregister operation fails (Ming Lei) [RHEL-106845] - io_uring: convert cmd_to_io_kiocb() macro to function (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: specify io_uring_cmd_import_fixed() pointer type (Ming Lei) [RHEL-106845] - io_uring/rsrc: use rq_data_dir() to compute bvec dir (Ming Lei) [RHEL-106845] - selftests: ublk: add ublk zero copy test (Ming Lei) [RHEL-106845] - selftests: ublk: add file backed ublk (Ming Lei) [RHEL-106845] - selftests: ublk: add kernel selftests for ublk (Ming Lei) [RHEL-106845] - io_uring: cache nodes and mapped buffers (Ming Lei) [RHEL-106845] - ublk: zc register/unregister bvec (Ming Lei) [RHEL-106845] - io_uring: add support for kernel registered bvecs (Ming Lei) [RHEL-106845] - io_uring/rw: move fixed buffer import to issue path (Ming Lei) [RHEL-106845] - io_uring/rw: move buffer_select outside generic prep (Ming Lei) [RHEL-106845] - io_uring/net: fix build warning for !CONFIG_COMPAT (Ming Lei) [RHEL-106845] - io_uring: rearrange opdef flags by use pattern (Ming Lei) [RHEL-106845] - io_uring/net: extract iovec import into a helper (Ming Lei) [RHEL-106845] - io_uring/net: unify *mshot_prep calls with compat (Ming Lei) [RHEL-106845] - io_uring/net: derive iovec storage later (Ming Lei) [RHEL-106845] - io_uring/net: verify msghdr before copying iovec (Ming Lei) [RHEL-106845] - io_uring/net: isolate msghdr copying code (Ming Lei) [RHEL-106845] - io_uring/net: simplify compat selbuf iov parsing (Ming Lei) [RHEL-106845] - io_uring/net: remove unnecessary REQ_F_NEED_CLEANUP (Ming Lei) [RHEL-106845] - io_uring: combine buffer lookup and import (Ming Lei) [RHEL-106845] - io_uring/net: reuse req->buf_index for sendzc (Ming Lei) [RHEL-106845] - io_uring/nop: reuse req->buf_index (Ming Lei) [RHEL-106845] - io_uring/rsrc: remove redundant check for valid imu (Ming Lei) [RHEL-106845] - io_uring/rw: open code io_prep_rw_setup() (Ming Lei) [RHEL-106845] - io_uring/rw: extract helper for iovec import (Ming Lei) [RHEL-106845] - io_uring/rw: rename io_import_iovec() (Ming Lei) [RHEL-106845] - io_uring/rw: allocate async data in io_prep_rw() (Ming Lei) [RHEL-106845] - io_uring: make io_poll_issue() sturdier (Ming Lei) [RHEL-106845] - io_uring/net: canonise accept mshot handling (Ming Lei) [RHEL-106845] - io_uring/net: fix accept multishot handling (Ming Lei) [RHEL-106845] - io_uring/net: use io_is_compat() (Ming Lei) [RHEL-106845] - io_uring/waitid: use io_is_compat() (Ming Lei) [RHEL-106845] - io_uring/rw: shrink io_iov_compat_buffer_select_prep (Ming Lei) [RHEL-106845] - io_uring/rw: compile out compat param passing (Ming Lei) [RHEL-106845] - io_uring/cmd: optimise !CONFIG_COMPAT flags setting (Ming Lei) [RHEL-106845] - io_uring: introduce io_is_compat() (Ming Lei) [RHEL-106845] - io_uring: use lockless_cq flag in io_req_complete_post() (Ming Lei) [RHEL-106845] - io_uring: pass struct io_tw_state by value (Ming Lei) [RHEL-106845] - io_uring: introduce type alias for io_tw_state (Ming Lei) [RHEL-106845] - io_uring/rsrc: avoid NULL check in io_put_rsrc_node() (Ming Lei) [RHEL-106845] - io_uring: pass ctx instead of req to io_init_req_drain() (Ming Lei) [RHEL-106845] - io_uring: use IO_REQ_LINK_FLAGS more (Ming Lei) [RHEL-106845] - io_uring/net: improve recv bundles (Ming Lei) [RHEL-106845] - io_uring/waitid: use generic io_cancel_remove() helper (Ming Lei) [RHEL-106845] - io_uring/futex: use generic io_cancel_remove() helper (Ming Lei) [RHEL-106845] - io_uring/cancel: add generic cancel helper (Ming Lei) [RHEL-106845] - io_uring/waitid: convert to io_cancel_remove_all() (Ming Lei) [RHEL-106845] - io_uring/futex: convert to io_cancel_remove_all() (Ming Lei) [RHEL-106845] - io_uring/cancel: add generic remove_all helper (Ming Lei) [RHEL-106845] - io_uring/kbuf: uninline __io_put_kbufs (Ming Lei) [RHEL-106845] - io_uring/kbuf: introduce io_kbuf_drop_legacy() (Ming Lei) [RHEL-106845] - io_uring/kbuf: open code __io_put_kbuf() (Ming Lei) [RHEL-106845] - io_uring/kbuf: remove legacy kbuf caching (Ming Lei) [RHEL-106845] - io_uring/kbuf: simplify __io_put_kbuf (Ming Lei) [RHEL-106845] - io_uring/kbuf: move locking into io_kbuf_drop() (Ming Lei) [RHEL-106845] - io_uring/kbuf: remove legacy kbuf kmem cache (Ming Lei) [RHEL-106845] - io_uring/kbuf: remove legacy kbuf bulk allocation (Ming Lei) [RHEL-106845] - io_uring: sanitise ring params earlier (Ming Lei) [RHEL-106845] - io_uring: check for iowq alloc_workqueue failure (Ming Lei) [RHEL-106845] - io_uring: deduplicate caches deallocation (Ming Lei) [RHEL-106845] - io_uring/io-wq: pass io_wq to io_get_next_work() (Ming Lei) [RHEL-106845] - io_uring/io-wq: do not use bogus hash value (Ming Lei) [RHEL-106845] - io_uring/io-wq: cache work->flags in variable (Ming Lei) [RHEL-106845] - io_uring/io-wq: move worker lists to struct io_wq_acct (Ming Lei) [RHEL-106845] - io_uring/io-wq: add io_worker.acct pointer (Ming Lei) [RHEL-106845] - io_uring/io-wq: eliminate redundant io_work_get_acct() calls (Ming Lei) [RHEL-106845] - io_uring/net: fix sendzc double notif flush (Ming Lei) [RHEL-106845] - io_uring/net: don't clear REQ_F_NEED_CLEANUP unconditionally (Ming Lei) [RHEL-106845] - io_uring/rw: ensure reissue path is correctly handled for IOPOLL (Ming Lei) [RHEL-106845] - io_uring/net: save msg_control for compat (Ming Lei) [RHEL-106845] - io_uring/rw: clean up mshot forced sync mode (Ming Lei) [RHEL-106845] - io_uring/rw: move ki_complete init into prep (Ming Lei) [RHEL-106845] - io_uring/rw: don't directly use ki_complete (Ming Lei) [RHEL-106845] - io_uring/rw: forbid multishot async reads (Ming Lei) [RHEL-106845] - io_uring/rsrc: remove unused constants (Ming Lei) [RHEL-106845] - io_uring: fix spelling error in uapi io_uring.h (Ming Lei) [RHEL-106845] - io-wq: backoff when retrying worker creation (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: unconditionally copy SQEs at prep time (Ming Lei) [RHEL-106845] - io_uring/waitid: setup async data in the prep handler (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: remove dead req_has_async_data() check (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: switch sqe to async_data on EAGAIN (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: don't assume io_uring_cmd_data layout (Ming Lei) [RHEL-106845] - io_uring/kbuf: reallocate buf lists on upgrade (Ming Lei) [RHEL-106845] {CVE-2025-21836} - io_uring/waitid: don't abuse io_tw_state (Ming Lei) [RHEL-106845] - io_uring/net: don't retry connect operation on EPOLLERR (Ming Lei) [RHEL-106845] - io_uring/rw: simplify io_rw_recycle() (Ming Lei) [RHEL-106845] - io_uring: remove !KASAN guards from cache free (Ming Lei) [RHEL-106845] - io_uring/net: extract io_send_select_buffer() (Ming Lei) [RHEL-106845] - io_uring/net: clean io_msg_copy_hdr() (Ming Lei) [RHEL-106845] - io_uring/net: make io_net_vec_assign() return void (Ming Lei) [RHEL-106845] - io_uring: add alloc_cache.c (Ming Lei) [RHEL-106845] - io_uring: dont ifdef io_alloc_cache_kasan() (Ming Lei) [RHEL-106845] - io_uring: include all deps for alloc_cache.h (Ming Lei) [RHEL-106845] - io_uring: fix multishots with selected buffers (Ming Lei) [RHEL-106845] - io_uring/register: use atomic_read/write for sq_flags migration (Ming Lei) [RHEL-106845] - io_uring/alloc_cache: get rid of _nocache() helper (Ming Lei) [RHEL-106845] - io_uring: get rid of alloc cache init_once handling (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: cleanup struct io_uring_cmd_data layout (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: use cached cmd_op in io_uring_cmd_sock() (Ming Lei) [RHEL-106845] - io_uring/msg_ring: don't leave potentially dangling ->tctx pointer (Ming Lei) [RHEL-106845] - io_uring/rsrc: Move lockdep assert from io_free_rsrc_node() to caller (Ming Lei) [RHEL-106845] - io_uring/rsrc: remove unused parameter ctx for io_rsrc_node_alloc() (Ming Lei) [RHEL-106845] - io_uring: clean up io_uring_register_get_file() (Ming Lei) [RHEL-106845] - io_uring/rsrc: Simplify buffer cloning by locking both rings (Ming Lei) [RHEL-106845] - io_uring/fdinfo: fix io_uring_show_fdinfo() misuse of ->d_iname (Ming Lei) [RHEL-106845] - io_uring: reuse io_should_terminate_tw() for cmds (Ming Lei) [RHEL-106845] - io_uring: Factor out a function to parse restrictions (Ming Lei) [RHEL-106845] - io_uring/rsrc: require cloned buffers to share accounting contexts (Ming Lei) [RHEL-106845] - io_uring: simplify the SQPOLL thread check when cancelling requests (Ming Lei) [RHEL-106845] - io_uring: expose read/write attribute capability (Ming Lei) [RHEL-106845] - io_uring/rw: don't gate retry on completion context (Ming Lei) [RHEL-106845] - io_uring/rw: handle -EAGAIN retry at IO completion time (Ming Lei) [RHEL-106845] - io_uring/rw: use io_rw_recycle() from cleanup path (Ming Lei) [RHEL-106845] - io_uring/rsrc: simplify the bvec iter count calculation (Ming Lei) [RHEL-106845] - io_uring: ensure io_queue_deferred() is out-of-line (Ming Lei) [RHEL-106845] - io_uring/rw: always clear ->bytes_done on io_async_rw setup (Ming Lei) [RHEL-106845] - io_uring/rw: use NULL for rw->free_iovec assigment (Ming Lei) [RHEL-106845] - io_uring/msg_ring: Drop custom destructor (Ming Lei) [RHEL-106845] - io_uring: Move old async data allocation helper to header (Ming Lei) [RHEL-106845] - io_uring/rw: Allocate async data through helper (Ming Lei) [RHEL-106845] - io_uring/net: Allocate msghdr async data through helper (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: Allocate async data through generic helper (Ming Lei) [RHEL-106845] - io_uring/poll: Allocate apoll with generic alloc_cache helper (Ming Lei) [RHEL-106845] - io_uring/futex: Allocate ifd with generic alloc_cache helper (Ming Lei) [RHEL-106845] - io_uring: Add generic helper to allocate async data (Ming Lei) [RHEL-106845] - io_uring: Fold allocation into alloc_cache helper (Ming Lei) [RHEL-106845] - io_uring: prevent reg-wait speculations (Ming Lei) [RHEL-106845] {CVE-2024-58000} - io_uring: don't vmap single page regions (Ming Lei) [RHEL-106845] - io_uring: clean up io_prep_rw_setup() (Ming Lei) [RHEL-106845] - io_uring/kbuf: fix unintentional sign extension on shift of reg.bgid (Ming Lei) [RHEL-106845] - io_uring/memmap: unify io_uring mmap'ing code (Ming Lei) [RHEL-106845] - io_uring/kbuf: use region api for pbuf rings (Ming Lei) [RHEL-106845] - io_uring/kbuf: remove pbuf ring refcounting (Ming Lei) [RHEL-106845] - io_uring/kbuf: use mmap_lock to sync with mmap (Ming Lei) [RHEL-106845] - io_uring: use region api for CQ (Ming Lei) [RHEL-106845] - io_uring: use region api for SQ (Ming Lei) [RHEL-106845] - io_uring: pass ctx to io_register_free_rings (Ming Lei) [RHEL-106845] - io_uring/memmap: implement mmap for regions (Ming Lei) [RHEL-106845] - io_uring/memmap: implement kernel allocated regions (Ming Lei) [RHEL-106845] - io_uring/memmap: add IO_REGION_F_SINGLE_REF (Ming Lei) [RHEL-106845] - io_uring/memmap: helper for pinning region pages (Ming Lei) [RHEL-106845] - io_uring/memmap: optimise single folio regions (Ming Lei) [RHEL-106845] - io_uring/memmap: reuse io_free_region for failure path (Ming Lei) [RHEL-106845] - io_uring/memmap: account memory before pinning (Ming Lei) [RHEL-106845] - io_uring/memmap: flag regions with user pages (Ming Lei) [RHEL-106845] - io_uring/memmap: flag vmap'ed regions (Ming Lei) [RHEL-106845] - io_uring/rsrc: export io_check_coalesce_buffer (Ming Lei) [RHEL-106845] - io_uring: rename ->resize_lock (Ming Lei) [RHEL-106845] - io_uring: add io_uring_cmd_get_async_data helper (Ming Lei) [RHEL-106845] - io_uring/cmd: let cmds to know about dying task (Ming Lei) [RHEL-106845] - io_uring/cmd: add per-op data to struct io_uring_cmd_data (Ming Lei) [RHEL-106845] - io_uring/cmd: rename struct uring_cache to io_uring_cmd_data (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: defer SQE copying until it's needed (Ming Lei) [RHEL-106845] - io_uring/register: cache old SQ/CQ head reading for copies (Ming Lei) [RHEL-106845] - io_uring/register: document io_register_resize_rings() shared mem usage (Ming Lei) [RHEL-106845] - io_uring/register: use stable SQ/CQ ring data during resize (Ming Lei) [RHEL-106845] - io_uring/rsrc: fixup io_clone_buffers() error handling (Ming Lei) [RHEL-106845] - io_uring: don't touch sqd->thread off tw add (Ming Lei) [RHEL-106845] - io_uring: silence false positive warnings (Ming Lei) [RHEL-106845] - io_uring/timeout: fix multishot updates (Ming Lei) [RHEL-106845] - io_uring/kbuf: use pre-committed buffer address for non-pollable file (Ming Lei) [RHEL-106845] - io_uring/net: always initialize kmsg->msg.msg_inq upfront (Ming Lei) [RHEL-106845] - io_uring/timeout: flush timeouts outside of the timeout lock (Ming Lei) [RHEL-106845] - io_uring/rw: fix downgraded mshot read (Ming Lei) [RHEL-106845] - io_uring/sqpoll: fix sqpoll error handling races (Ming Lei) [RHEL-106845] - io_uring: check if iowq is killed before queuing (Ming Lei) [RHEL-106845] {CVE-2024-56709} - io_uring/register: limit ring resizing to DEFER_TASKRUN (Ming Lei) [RHEL-106845] - io_uring: Fix registered ring file refcount leak (Ming Lei) [RHEL-106845] - io_uring: make ctx->timeout_lock a raw spinlock (Ming Lei) [RHEL-106845] - io_uring/rsrc: don't put/free empty buffers (Ming Lei) [RHEL-106845] - io_uring: Change res2 parameter type in io_uring_cmd_done (Ming Lei) [RHEL-106845] - io_uring/tctx: work around xa_store() allocation error issue (Ming Lei) [RHEL-106845] {CVE-2024-56584} - io_uring: fix corner case forgetting to vunmap (Ming Lei) [RHEL-106845] - io_uring: fix task_work cap overshooting (Ming Lei) [RHEL-106845] - io_uring: check for overflows in io_pin_pages (Ming Lei) [RHEL-106845] {CVE-2024-53187} - io_uring/nop: ensure nop->fd is always initialized (Ming Lei) [RHEL-106845] - io_uring: limit local tw done (Ming Lei) [RHEL-106845] - io_uring: add io_local_work_pending() (Ming Lei) [RHEL-106845] - io_uring/region: return negative -E2BIG in io_create_region() (Ming Lei) [RHEL-106845] - io_uring: protect register tracing (Ming Lei) [RHEL-106845] - io_uring: remove io_uring_cqwait_reg_arg (Ming Lei) [RHEL-106845] - io_uring/region: fix error codes after failed vmap (Ming Lei) [RHEL-106845] - io_uring: restore back registered wait arguments (Ming Lei) [RHEL-106845] - io_uring: add memory region registration (Ming Lei) [RHEL-106845] - io_uring: introduce concept of memory regions (Ming Lei) [RHEL-106845] - io_uring: temporarily disable registered waits (Ming Lei) [RHEL-106845] - io_uring: disable ENTER_EXT_ARG_REG for IOPOLL (Ming Lei) [RHEL-106845] - io_uring: fortify io_pin_pages with a warning (Ming Lei) [RHEL-106845] - switch io_msg_ring() to CLASS(fd) (Ming Lei) [RHEL-106845] - io_uring: fix invalid hybrid polling ctx leaks (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: fix buffer index retrieval (Ming Lei) [RHEL-106845] - io_uring/rsrc: add & apply io_req_assign_buf_node() (Ming Lei) [RHEL-106845] - io_uring/rsrc: remove '->ctx_ptr' of 'struct io_rsrc_node' (Ming Lei) [RHEL-106845] - io_uring/rsrc: pass 'struct io_ring_ctx' reference to rsrc helpers (Ming Lei) [RHEL-106845] - io_uring: avoid normal tw intermediate fallback (Ming Lei) [RHEL-106845] - io_uring/napi: add static napi tracking strategy (Ming Lei) [RHEL-106845] - io_uring/napi: clean up __io_napi_do_busy_loop (Ming Lei) [RHEL-106845] - io_uring/napi: Use lock guards (Ming Lei) [RHEL-106845] - io_uring/napi: improve __io_napi_add (Ming Lei) [RHEL-106845] - io_uring/napi: fix io_napi_entry RCU accesses (Ming Lei) [RHEL-106845] - io_uring/napi: protect concurrent io_napi_entry timeout accesses (Ming Lei) [RHEL-106845] - io_uring: prevent speculating sq_array indexing (Ming Lei) [RHEL-106845] - io_uring: move struct io_kiocb from task_struct to io_uring_task (Ming Lei) [RHEL-106845] - io_uring: remove task ref helpers (Ming Lei) [RHEL-106845] - io_uring: move cancelations to be io_uring_task based (Ming Lei) [RHEL-106845] - io_uring/rsrc: split io_kiocb node type assignments (Ming Lei) [RHEL-106845] - io_uring/rsrc: encode node type and ctx together (Ming Lei) [RHEL-106845] - io_uring: add support for hybrid IOPOLL (Ming Lei) [RHEL-106845] - io_uring/rsrc: allow cloning with node replacements (Ming Lei) [RHEL-106845] - io_uring/rsrc: allow cloning at an offset (Ming Lei) [RHEL-106845] - io_uring/rsrc: get rid of the empty node and dummy_ubuf (Ming Lei) [RHEL-106845] - io_uring/rsrc: add io_reset_rsrc_node() helper (Ming Lei) [RHEL-106845] - io_uring/filetable: kill io_reset_alloc_hint() helper (Ming Lei) [RHEL-106845] - io_uring/filetable: remove io_file_from_index() helper (Ming Lei) [RHEL-106845] - io_uring/rsrc: add io_rsrc_node_lookup() helper (Ming Lei) [RHEL-106845] - io_uring/rsrc: unify file and buffer resource tables (Ming Lei) [RHEL-106845] - io_uring: only initialize io_kiocb rsrc_nodes when needed (Ming Lei) [RHEL-106845] - io_uring/rsrc: add an empty io_rsrc_node for sparse buffer entries (Ming Lei) [RHEL-106845] - io_uring/rsrc: get rid of io_rsrc_node allocation cache (Ming Lei) [RHEL-106845] - io_uring/rsrc: get rid of per-ring io_rsrc_node list (Ming Lei) [RHEL-106845] - io_uring/rsrc: kill io_charge_rsrc_node() (Ming Lei) [RHEL-106845] - io_uring/splice: open code 2nd direct file assignment (Ming Lei) [RHEL-106845] - io_uring: specify freeptr usage for SLAB_TYPESAFE_BY_RCU io_kiocb cache (Ming Lei) [RHEL-106845] - io_uring/rsrc: move struct io_fixed_file to rsrc.h header (Ming Lei) [RHEL-106845] - io_uring/nop: add support for testing registered files and buffers (Ming Lei) [RHEL-106845] - io_uring: add support for fixed wait regions (Ming Lei) [RHEL-106845] - io_uring: change io_get_ext_arg() to use uaccess begin + end (Ming Lei) [RHEL-106845] - io_uring: switch struct ext_arg from __kernel_timespec to timespec64 (Ming Lei) [RHEL-106845] - io_uring/sqpoll: wait on sqd->wait for thread parking (Ming Lei) [RHEL-106845] - io_uring/register: add IORING_REGISTER_RESIZE_RINGS (Ming Lei) [RHEL-106845] - io_uring/memmap: explicitly return -EFAULT for mmap on NULL rings (Ming Lei) [RHEL-106845] - io_uring: abstract out a bit of the ring filling logic (Ming Lei) [RHEL-106845] - io_uring: move max entry definition and ring sizing into header (Ming Lei) [RHEL-106845] - io_uring/net: clean up io_msg_copy_hdr (Ming Lei) [RHEL-106845] - io_uring/net: don't alias send user pointer reads (Ming Lei) [RHEL-106845] - io_uring/net: don't store send address ptr (Ming Lei) [RHEL-106845] - io_uring/net: split send and sendmsg prep helpers (Ming Lei) [RHEL-106845] - io_uring: kill 'imu' from struct io_kiocb (Ming Lei) [RHEL-106845] - io_uring/net: move send zc fixed buffer import to issue path (Ming Lei) [RHEL-106845] - io_uring: remove 'issue_flags' argument for io_req_set_rsrc_node() (Ming Lei) [RHEL-106845] - io_uring/rw: get rid of using req->imu (Ming Lei) [RHEL-106845] - io_uring/uring_cmd: get rid of using req->imu (Ming Lei) [RHEL-106845] - io_uring/rsrc: don't assign bvec twice in io_import_fixed() (Ming Lei) [RHEL-106845] - io_uring: clean up cqe trace points (Ming Lei) [RHEL-106845] - io_uring: static_key for !IORING_SETUP_NO_SQARRAY (Ming Lei) [RHEL-106845] - io_uring: kill io_llist_xchg (Ming Lei) [RHEL-106845] - io_uring: move cancel hash tables to kvmalloc/kvfree (Ming Lei) [RHEL-106845] - io_uring/cancel: get rid of init_hash_table() helper (Ming Lei) [RHEL-106845] - io_uring/poll: get rid of per-hashtable bucket locks (Ming Lei) [RHEL-106845] - io_uring/poll: get rid of io_poll_tw_hash_eject() (Ming Lei) [RHEL-106845] - io_uring/poll: get rid of unlocked cancel hash (Ming Lei) [RHEL-106845] - io_uring/poll: remove 'ctx' argument from io_poll_req_delete() (Ming Lei) [RHEL-106845] - io_uring/msg_ring: add support for sending a sync message (Ming Lei) [RHEL-106845] - io_uring/msg_ring: refactor a few helper functions (Ming Lei) [RHEL-106845] - io_uring/eventfd: move ctx->evfd_last_cq_tail into io_ev_fd (Ming Lei) [RHEL-106845] - io_uring/eventfd: abstract out ev_fd grab + release helpers (Ming Lei) [RHEL-106845] - io_uring/eventfd: move trigger check into a helper (Ming Lei) [RHEL-106845] - io_uring/eventfd: move actual signaling part into separate helper (Ming Lei) [RHEL-106845] - io_uring/eventfd: check for the need to async notifier earlier (Ming Lei) [RHEL-106845] - s390/pci: Allow automatic recovery with minimal driver support (Mete Durlu) [RHEL-110239] - ibmvnic: Increase max subcrq indirect entries with fallback (Mamatha Inamdar) [RHEL-112760] - s390/hypfs: Enable limited access during lockdown (Mete Durlu) [RHEL-111203] - s390/hypfs: Avoid unnecessary ioctl registration in debugfs (Mete Durlu) [RHEL-111203] - hwmon: Add static visibility member to struct hwmon_ops (CKI Backport Bot) [RHEL-105091] - dpll: zl3073x: ZL3073X_I2C and ZL3073X_SPI should depend on NET (Ivan Vecera) [RHEL-104973] - dpll: Make ZL3073X invisible (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Fix build failure (Ivan Vecera) [RHEL-104973] - redhat/configs: enable CONFIG_ZL3073X* (Ivan Vecera) [RHEL-104973] - redhat/configs: enable CONFIG_I2C_MUX_PCA954x on x86 (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Add support to get fractional frequency offset (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Add support to adjust phase (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Implement phase offset monitor feature (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Add support to get phase offset on connected input pin (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Add support to get/set esync on pins (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Add support to get/set frequency on pins (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Implement input pin state setting in automatic mode (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Add support to get/set priority on input pins (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Implement input pin selection in manual mode (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Register DPLL devices and pins (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Read DPLL types and pin properties from system firmware (Ivan Vecera) [RHEL-104973] - dpll: zl3073x: Fetch invariants during probe (Ivan Vecera) [RHEL-104973] - dpll: Add basic Microchip ZL3073x support (Ivan Vecera) [RHEL-104973] - dt-bindings: dpll: Add support for Microchip Azurite chip family (Ivan Vecera) [RHEL-104973] - dt-bindings: dpll: Add DPLL device and pin (Ivan Vecera) [RHEL-104973] - x86/CPU/AMD: Ignore invalid reset reason value (Steve Best) [RHEL-101301] - x86/CPU/AMD: Add X86_FEATURE_ZEN6 (Steve Best) [RHEL-106911] - x86/cpufeatures: Free up unused feature bits (Steve Best) [RHEL-106911] - intel_idle: Allow loading ACPI tables for any family (Steve Best) [RHEL-110839] - intel_idle: Update arguments of mwait_idle_with_hints() (Steve Best) [RHEL-110839] - intel_idle: Rescan "dead" SMT siblings during initialization (Steve Best) [RHEL-110839] - x86/smp: PM/hibernate: Split arch_resume_nosmt() (Steve Best) [RHEL-110839] - intel_idle: Use subsys_initcall_sync() for initialization (Steve Best) [RHEL-110839] - intel_idle: Add C1 demotion on/off sysfs knob (Steve Best) [RHEL-110839] - Move FCH header to a location accessible by all archs (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Add PCSpecialist Lafite Pro V 14M to 8042 quirks list (Steve Best) [RHEL-103121] - platform/x86/amd: pmc: Clear metrics table at start of cycle (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Declare quirk_spurious_8042 for MECHREVO Wujie 14XA (GX4HRXL) (Steve Best) [RHEL-103121] - platform/x86/amd: pmc: Require at least 2.5 seconds between HW sleep cycles (Steve Best) [RHEL-103121] - x86/platform/amd: Move the header to (Steve Best) [RHEL-103121] - x86/mce/amd: Remove shared threshold bank plumbing (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: fix leak in probe() (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Use managed APIs for mutex (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Remove unnecessary line breaks (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Move macros and structures to the PMC header file (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Notify user when platform does not support s0ix transition (Steve Best) [RHEL-103121] - platform/x86: amd: Use *-y instead of *-objs in Makefiles [partial] (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Only disable IRQ1 wakeup where i8042 actually enabled it (Steve Best) [RHEL-103121] - platform/x86/amd: pmc: Use guard(mutex) (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Add STB support for AMD Desktop variants (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Update S2D message id for 1Ah Family 70h model (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Update IP information structure for newer SoCs (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Use ARRAY_SIZE() to fill num_ips information (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Isolate STB code changes to a new file (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Define enum for S2D/PMC msg_port and add helper function (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Update function names to align with new STB file (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Move STB functionality to a new file for better code organization (Steve Best) [RHEL-103121] - platform/x86/amd/pmc: Move STB block into amd_pmc_s2d_init() (Steve Best) [RHEL-103121] - docs: core-api: document the IOVA-based API (Eder Zulian) [RHEL-73606] - dma-mapping: add a dma_need_unmap helper (Eder Zulian) [RHEL-73606] - dma-mapping: Implement link/unlink ranges API (Eder Zulian) [RHEL-73606] - iommu/dma: Factor out a iommu_dma_map_swiotlb helper (Eder Zulian) [RHEL-73606] - dma-mapping: Provide an interface to allow allocate IOVA (Eder Zulian) [RHEL-73606] - iommu: add kernel-doc for iommu_unmap_fast (Eder Zulian) [RHEL-73606] - iommu: generalize the batched sync after map interface (Eder Zulian) [RHEL-73606] - dma-mapping: move the PCI P2PDMA mapping helpers to pci-p2pdma.h (Eder Zulian) [RHEL-73606] - PCI/P2PDMA: Refactor the p2pdma mapping helpers (Eder Zulian) [RHEL-73606] - s390/ism: fix concurrency management in ism_cmd() (Mete Durlu) [RHEL-110207] - redhat/configs: Enable CONFIG_X86_BUS_LOCK_DETECT (John Allen) [RHEL-50321] - x86/bus_lock: Add support for AMD (John Allen) [RHEL-50321] - x86/split_lock: Move Split and Bus lock code to a dedicated file (John Allen) [RHEL-50321] - platform/x86/amd: pmf: Simplify error flow in amd_pmf_init_smart_pc() (Steve Best) [RHEL-104142] - platform/x86/amd: pmf: Prevent amd_pmf_tee_deinit() from running twice (Steve Best) [RHEL-104142] - platform/x86/amd: pmf: Use device managed allocations (Steve Best) [RHEL-104142] - drivers/platform/x86/amd: pmf: Check for invalid Smart PC Policies (Steve Best) [RHEL-104142] - drivers/platform/x86/amd: pmf: Check for invalid sideloaded Smart PC Policies (Steve Best) [RHEL-104142] - platform/x86: amd: pmf: Fix STT limits (Steve Best) [RHEL-104142] - platform/x86/amd/pmf: convert timeouts to secs_to_jiffies() (Steve Best) [RHEL-104142] - platform/x86/amd/pmf: fix cleanup in amd_pmf_init_smart_pc() (Steve Best) [RHEL-104142] - platform/x86/amd/pmf: Update PMF Driver for Compatibility with new PMF-TA (Steve Best) [RHEL-104142] - platform/x86/amd/pmf: Propagate PMF-TA return codes (Steve Best) [RHEL-104142] - platform/x86/amd/pmf: Initialize and clean up `cb_mutex` (Steve Best) [RHEL-104142] - platform/x86: amd: Use *-y instead of *-objs in Makefiles [partial] (Steve Best) [RHEL-104142] - platform/x86/amd/pmf: Get SRA sensor data from AMD SFH driver (Steve Best) [RHEL-104142] - platform/x86/amd: pmf: Switch to guard(mutex) (Steve Best) [RHEL-104142] - platform/x86/amd/pmf: Enable Custom BIOS Inputs for PMF-TA (Steve Best) [RHEL-104142] - platform/x86/amd: pmf: Drop all quirks (Steve Best) [RHEL-104142] - platform/x86/amd/pmf: Switch to platform_get_resource() and devm_ioremap_resource() (Steve Best) [RHEL-104142] - platform/x86/amd/pmf: Use dev_err_probe() to simplify error handling (Steve Best) [RHEL-104142] - netfs: Fix unbuffered write error handling (Paulo Alcantara) [RHEL-104442] - redhat/configs: enable CONFIG_TCG_ARM_CRB_FFA on aarch64 (Marcin Juszkiewicz) [RHEL-102692] - tpm_crb_ffa: Remove unused export (Marcin Juszkiewicz) [RHEL-102692] - tpm_crb: ffa_tpm: Implement driver compliant to CRB over FF-A (Marcin Juszkiewicz) [RHEL-102692] - tpm_crb: Add support for the ARM FF-A start method (Marcin Juszkiewicz) [RHEL-102692] - ACPICA: Add start method for ARM FF-A (Marcin Juszkiewicz) [RHEL-102692] - Documentation: tpm: Add documentation for the CRB FF-A interface (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Fix the missing entry in struct ffa_indirect_msg_hdr (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Replace mutex with rwlock to avoid sleep in atomic context (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Move memory allocation outside the mutex locking (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Fix memory leak by freeing notifier callback node (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Skip Rx buffer ownership release if not acquired (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Set dma_mask for ffa devices (Marcin Juszkiewicz) [RHEL-102692] {CVE-2025-38043} - firmware: arm_ffa: Skip the first/partition ID when parsing vCPU list (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Explicitly cast return value from NOTIFICATION_INFO_GET (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Explicitly cast return value from FFA_VERSION before comparison (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Handle ffa_notification_get correctly at virtual FF-A instance (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Allow multiple UUIDs per partition to register SRI callback (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Add support for handling framework notifications (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Add support for {un,}registration of framework notifications (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Stash ffa_device instead of notify_type in notifier_cb_info (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Refactoring to prepare for framework notification support (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Remove unnecessary declaration of ffa_partitions_cleanup() (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Reject higher major version as incompatible (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Upgrade FF-A version to v1.2 in the driver (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Add support for passing UUID in FFA_MSG_SEND2 (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Unregister the FF-A devices when cleaning up the partitions (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Handle the presence of host partition in the partition info (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Refactor addition of partition information into XArray (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Fix big-endian support in __ffa_partition_info_regs_get() (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Fix big-endian support in __ffa_partition_info_get() (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Align sync_send_receive{,2} function prototypes (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Replace UUID buffer to standard UUID format (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Replace SCMI by FF-A in the macro (Marcin Juszkiewicz) [RHEL-102692] - firmware: arm_ffa: Fix the race around setting ffa_dev->properties (Marcin Juszkiewicz) [RHEL-102692] - perf sched timehist: decode process names of processes in zombie state (Anubhav Shelat) [RHEL-68347] - tools/power turbostat: version 2025.09.09 (Steve Best) [RHEL-110366] - tools/power turbostat: Handle non-root legacy-uncore sysfs permissions (Steve Best) [RHEL-110366] - tools/power turbostat: standardize PER_THREAD_PARAMS (Steve Best) [RHEL-110366] - tools/power turbostat: Fix DMR support (Steve Best) [RHEL-110366] - tools/power turbostat: add format "average" for external attributes (Steve Best) [RHEL-110366] - tools/power turbostat: delete GET_PKG() (Steve Best) [RHEL-110366] - tools/power turbostat: probe and display L3 cache topology (Steve Best) [RHEL-110366] - tools/power turbostat: Support more than 64 built-in-counters (Steve Best) [RHEL-110366] - tools/power turbostat: Fix bogus SysWatt for forked program (Steve Best) [RHEL-110366] - tools/power turbostat: Handle cap_get_proc() ENOSYS (Steve Best) [RHEL-110366] - tools/power turbostat: Fix build with musl (Steve Best) [RHEL-110366] - tools/power turbostat: verify arguments to params --show and --hide (Steve Best) [RHEL-110366] - tools/power turbostat: regression fix: --show C1E%% (Steve Best) [RHEL-110366] - tools/power turbostat: version 2025.06.08 (Steve Best) [RHEL-110366] - tools/power turbostat: Add initial support for BartlettLake (Steve Best) [RHEL-110366] - x86/cpu: Add CPU model number for Bartlett Lake CPUs with Raptor Cove cores (Steve Best) [RHEL-110366] - tools/power turbostat: Add initial support for DMR (Steve Best) [RHEL-110366] - tools/power turbostat: Dump RAPL sysfs info (Steve Best) [RHEL-110366] - tools/power turbostat: Avoid probing the same perf counters (Steve Best) [RHEL-110366] - tools/power turbostat: Allow probing RAPL with platform_features->rapl_msrs cleared (Steve Best) [RHEL-110366] - tools/power turbostat: Clean up add perf/msr counter logic (Steve Best) [RHEL-110366] - tools/power turbostat: Introduce add_msr_counter() (Steve Best) [RHEL-110366] - tools/power turbostat: Remove add_msr_perf_counter_() (Steve Best) [RHEL-110366] - tools/power turbostat: Remove add_cstate_perf_counter_() (Steve Best) [RHEL-110366] - tools/power turbostat: Remove add_rapl_perf_counter_() (Steve Best) [RHEL-110366] - tools/power turbostat: Quit early for unsupported RAPL counters (Steve Best) [RHEL-110366] - tools/power turbostat: Always check rapl_joules flag (Steve Best) [RHEL-110366] - tools/power turbostat: Fix AMD package-energy reporting (Steve Best) [RHEL-110366] - tools/power turbostat: Fix RAPL_GFX_ALL typo (Steve Best) [RHEL-110366] - tools/power turbostat: Add Android support for MSR device handling (Steve Best) [RHEL-110366] - coredump: Only sort VMAs when core_sort_vma sysctl is set (Herton R. Krzesinski) [RHEL-96077] - misc: pci_endpoint_test: Defer IRQ allocation until ioctl(PCITEST_SET_IRQTYPE) (Myron Stowe) [RHEL-86521] - selftests/pcie_bwctrl: Fix test progs list (Myron Stowe) [RHEL-86521] - PCI: Restore assigned resources fully after release (Myron Stowe) [RHEL-86521] - PCI: Fix typos (Myron Stowe) [RHEL-86521] - PCI: intel-gw: Remove intel_pcie_cpu_addr() (Myron Stowe) [RHEL-86521] - PCI: imx6: Remove imx_pcie_cpu_addr_fixup() (Myron Stowe) [RHEL-86521] - PCI: dwc: Use parent_bus_offset to remove need for .cpu_addr_fixup() (Myron Stowe) [RHEL-86521] - PCI: dwc: ep: Ensure proper iteration over outbound map windows (Myron Stowe) [RHEL-86521] - PCI: dwc: ep: Use devicetree 'reg[addr_space]' to derive CPU -> ATU addr offset (Myron Stowe) [RHEL-86521] - PCI: dwc: ep: Consolidate devicetree handling in dw_pcie_ep_get_resources() (Myron Stowe) [RHEL-86521] - PCI: dwc: ep: Call epc_create() early in dw_pcie_ep_init() (Myron Stowe) [RHEL-86521] - PCI: dwc: Use devicetree 'reg[config]' to derive CPU -> ATU addr offset (Myron Stowe) [RHEL-86521] - PCI: dwc: Add dw_pcie_parent_bus_offset() checking and debug (Myron Stowe) [RHEL-86521] - PCI: dwc: Add dw_pcie_parent_bus_offset() (Myron Stowe) [RHEL-86521] - PCI: dwc: Consolidate devicetree handling in dw_pcie_host_get_resources() (Myron Stowe) [RHEL-86521] - PCI: dwc: Call devm_pci_alloc_host_bridge() early in dw_pcie_host_init() (Myron Stowe) [RHEL-86521] - PCI: dwc: Rename cpu_addr to parent_bus_addr for ATU configuration (Myron Stowe) [RHEL-86521] - PCI: dwc: Use resource start as ioremap() input in dw_pcie_pme_turn_off() (Myron Stowe) [RHEL-86521] - PCI: xilinx-cpm: Add cpm_csr register mapping for CPM5_HOST1 variant (Myron Stowe) [RHEL-86521] - PCI: xilinx-cpm: Add support for Versal Net CPM5NC Root Port controller (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: xilinx-cpm: Add compatible string for CPM5NC Versal Net host (Myron Stowe) [RHEL-86521] - PCI: xilinx-cpm: Fix IRQ domain leak in error path of probe (Myron Stowe) [RHEL-86521] - PCI: qcom-ep: Enable EP mode support for SAR2130P (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: qcom-ep: Add SAR2130P compatible (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: qcom-ep: Consolidate DMA vs non-DMA cases (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: qcom-ep: Enable DMA for SM8450 (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: qcom-ep: Describe optional IOMMU (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: qcom-ep: Describe optional dma-coherent property (Myron Stowe) [RHEL-86521] - PCI: qcom-ep: Mark BAR0/BAR2 as 64bit BARs and BAR1/BAR3 as RESERVED (Myron Stowe) [RHEL-86521] - PCI: mediatek-gen3: Fix inconsistent indentation (Myron Stowe) [RHEL-86521] - PCI: mediatek-gen3: Configure PBUS_CSR registers for EN7581 SoC (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: mediatek-gen3: Add mediatek,pbus-csr phandle array property (Myron Stowe) [RHEL-86521] - PCI: mediatek-gen3: Remove leftover mac_reset assert for Airoha EN7581 SoC (Myron Stowe) [RHEL-86521] - PCI: j721e: Fix the value of .linkdown_irq_regfield for J784S4 (Myron Stowe) [RHEL-86521] - PCI: imx6: Use devm_clk_bulk_get_all() to fetch clocks (Myron Stowe) [RHEL-86521] - PCI: imx6: Identify controller via 'linux,pci-domain', not address (Myron Stowe) [RHEL-86521] - PCI: histb: Fix an error handling path in histb_pcie_probe() (Myron Stowe) [RHEL-86521] - PCI: dw-rockchip: Hide broken ATS capability for RK3588 running in EP mode (Myron Stowe) [RHEL-86521] - PCI: dwc: ep: Add dw_pcie_ep_hide_ext_capability() (Myron Stowe) [RHEL-86521] - PCI: dwc: ep: Return -ENOMEM for allocation failures (Myron Stowe) [RHEL-86521] - perf/dwc_pcie: Move common DWC struct definitions to 'pcie-dwc.h' (Myron Stowe) [RHEL-86521] - PCI: cadence-ep: Fix the driver to send MSG TLP for INTx without data payload (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Make const read-only arrays static (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Make irq_domain_set_info() parameter cast explicit (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Make two changes in MDIO register fields (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Use same constant table for config space access (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Fix potential premature regulator disabling (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Fix error path after a call to regulator_bulk_get() (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Do not assume that register field starts at LSB (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Use internal register to change link capability (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Set generation limit before PCIe link up (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Add BCM2712 support (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Expand inbound window size up to 64GB (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Reuse pcie_cfg_data structure (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: brcmstb: Update bindings for PCIe on BCM2712 (Myron Stowe) [RHEL-86521] - PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() (Myron Stowe) [RHEL-86521] - PCI: altera: Add Agilex support (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: altera: Add binding for Agilex (Myron Stowe) [RHEL-86521] - PCI: tegra: Use helper function for_each_child_of_node_scoped() (Myron Stowe) [RHEL-86521] - PCI: apple: Use helper function for_each_child_of_node_scoped() (Myron Stowe) [RHEL-86521] - PCI: mt7621: Use helper function for_each_available_child_of_node_scoped() (Myron Stowe) [RHEL-86521] - PCI: mediatek: Use helper function for_each_available_child_of_node_scoped() (Myron Stowe) [RHEL-86521] - PCI: kirin: Tidy up _probe() related function with dev_err_probe() (Myron Stowe) [RHEL-86521] - PCI: kirin: Use helper function for_each_available_child_of_node_scoped() (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Add support for PCITEST_IRQ_TYPE_AUTO (Myron Stowe) [RHEL-86521] - PCI: endpoint: pci-epf-test: Expose supported IRQ types in CAPS register (Myron Stowe) [RHEL-86521] - PCI: dw-rockchip: Endpoint mode cannot raise INTx interrupts (Myron Stowe) [RHEL-86521] - PCI: endpoint: Add intx_capable to epc_features struct (Myron Stowe) [RHEL-86521] - selftests: pci_endpoint: Use IRQ_TYPE_* defines from UAPI header (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Use IRQ_TYPE_* defines from UAPI header (Myron Stowe) [RHEL-86521] - PCI: endpoint: pcitest: Add IRQ_TYPE_* defines to UAPI header (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Do not use managed IRQ functions (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Remove global 'irq_type' and 'no_msi' (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Fix 'irq_type' to convey the correct type (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Fix displaying 'irq_type' after 'request_irq' error (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Handle BAR sizes larger than INT_MAX (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Give disabled BARs a distinct error code (Myron Stowe) [RHEL-86521] - misc: pci_endpoint_test: Fix potential truncation in pci_endpoint_test_probe() (Myron Stowe) [RHEL-86521] - selftests: pci_endpoint: Add GET_IRQTYPE checks to each interrupt test (Myron Stowe) [RHEL-86521] - selftests: pci_endpoint: Skip disabled BARs (Myron Stowe) [RHEL-86521] - PCI: dwc: ep: Remove superfluous function dw_pcie_ep_find_ext_capability() (Myron Stowe) [RHEL-86521] - PCI: endpoint: pci-epf-test: Fix double free that causes kernel to oops (Myron Stowe) [RHEL-86521] - PCI: endpoint: Remove unused devm_pci_epc_destroy() (Myron Stowe) [RHEL-86521] - PCI: dw-rockchip: Describe Resizable BARs as Resizable BARs (Myron Stowe) [RHEL-86521] - PCI: keystone: Specify correct alignment requirement (Myron Stowe) [RHEL-86521] - PCI: keystone: Describe Resizable BARs as Resizable BARs (Myron Stowe) [RHEL-86521] - PCI: dwc: ep: Allow EPF drivers to configure the size of Resizable BARs (Myron Stowe) [RHEL-86521] - PCI: dwc: ep: Move dw_pcie_ep_find_ext_capability() (Myron Stowe) [RHEL-86521] - PCI: endpoint: Add pci_epc_bar_size_to_rebar_cap() (Myron Stowe) [RHEL-86521] - PCI: endpoint: Allow EPF drivers to configure the size of Resizable BARs (Myron Stowe) [RHEL-86521] - PCI: endpoint: pci-epf-test: Handle endianness properly (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: Add common schema for devices accessible through PCI BARs (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: fsl,layerscape-pcie-ep: Drop unnecessary status from example (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: fsl,layerscape-pcie-ep: Drop deprecated windows (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: fsl,imx6q-pcie: Add optional DMA interrupt (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: Convert fsl,mpc83xx-pcie to YAML (Myron Stowe) [RHEL-86521] - dt-bindings: PCI: qcom: Document the IPQ5332 PCIe controller (Myron Stowe) [RHEL-86521] - PCI: of: Create device tree PCI host bridge node (Myron Stowe) [RHEL-86521] - PCI: of_property: Constify parameter in of_pci_get_addr_flags() (Myron Stowe) [RHEL-86521] - PCI: of_property: Add support for NULL pdev in of_pci_set_address() (Myron Stowe) [RHEL-86521] - PCI: of: Use device_{add,remove}_of_node() to attach of_node to existing device (Myron Stowe) [RHEL-86521] - s390/pci: Support mmap() of PCI resources except for ISM devices (Myron Stowe) [RHEL-86521] - s390/pci: Introduce pdev->non_mappable_bars and replace VFIO_PCI_MMAP (Myron Stowe) [RHEL-86521] - s390/pci: Fix s390_mmio_read/write syscall page fault handling (Myron Stowe) [RHEL-86521] - PCI: Fix NULL dereference in SR-IOV VF creation error path (Myron Stowe) [RHEL-86521] - PCI: Move cardbus IO size declarations into pci/pci.h (Myron Stowe) [RHEL-86521] - PCI: Make pci_setup_bridge() static (Myron Stowe) [RHEL-86521] - PCI: Move resource reassignment func declarations into pci/pci.h (Myron Stowe) [RHEL-86521] - PCI: Move pci_rescan_bus_bridge_resize() declaration to pci/pci.h (Myron Stowe) [RHEL-86521] - PCI: Fix BAR resizing when VF BARs are assigned (Myron Stowe) [RHEL-86521] - PCI: Do not claim to release resource falsely (Myron Stowe) [RHEL-86521] - PCI: Increase Resizable BAR support from 512 GB to 128 TB (Myron Stowe) [RHEL-86521] - PCI: Rework optional resource handling (Myron Stowe) [RHEL-86521] - PCI: Perform reset_resource() and build fail list in sync (Myron Stowe) [RHEL-86521] - PCI: Use res->parent to check if resource is assigned (Myron Stowe) [RHEL-86521] - PCI: Add debug print when releasing resources before retry (Myron Stowe) [RHEL-86521] - PCI: Indicate optional resource assignment failures (Myron Stowe) [RHEL-86521] - PCI: Always have realloc_head in __assign_resources_sorted() (Myron Stowe) [RHEL-86521] - PCI: Extend enable to check for any optional resource (Myron Stowe) [RHEL-86521] - PCI: Add restore_dev_resource() (Myron Stowe) [RHEL-86521] - PCI: Remove incorrect comment from pci_reassign_resource() (Myron Stowe) [RHEL-86521] - PCI: Consolidate assignment loop next round preparation (Myron Stowe) [RHEL-86521] - PCI: Rename retval to ret (Myron Stowe) [RHEL-86521] - PCI: Use while loop and break instead of gotos (Myron Stowe) [RHEL-86521] - PCI: Refactor pdev_sort_resources() & __dev_sort_resources() (Myron Stowe) [RHEL-86521] - PCI: Converge return paths in __assign_resources_sorted() (Myron Stowe) [RHEL-86521] - PCI: Add dev & res local variables to resource assignment funcs (Myron Stowe) [RHEL-86521] - PCI: Add pci_resource_num() helper (Myron Stowe) [RHEL-86521] - PCI: Check resource_size() separately (Myron Stowe) [RHEL-86521] - PCI: Add pci_resource_is_iov() to identify IOV resources (Myron Stowe) [RHEL-86521] - PCI: Use resource_set_{range,size}() helpers (Myron Stowe) [RHEL-86521] - PCI: Use SZ_* instead of literals in setup-bus.c (Myron Stowe) [RHEL-86521] - PCI: Fix old_size lower bound in calculate_iosize() too (Myron Stowe) [RHEL-86521] - PCI: Allow relaxed bridge window tail sizing for optional resources (Myron Stowe) [RHEL-86521] - PCI: Simplify size1 assignment logic (Myron Stowe) [RHEL-86521] - PCI: Use min_align, not unrelated add_align, for size0 (Myron Stowe) [RHEL-86521] - PCI: Remove add_align overwrite unrelated to size0 (Myron Stowe) [RHEL-86521] - PCI: Cleanup dev->resource + resno to use pci_resource_n() (Myron Stowe) [RHEL-86521] - PCI: Log debug messages about reset method (Myron Stowe) [RHEL-86521] - PCI: Allow PCI bridges to go to D3Hot on all non-x86 (Myron Stowe) [RHEL-86521] - PCI: pciehp: Don't enable HPIE when resuming in poll mode (Myron Stowe) [RHEL-86521] - PCI: pciehp: Avoid unnecessary device replacement check (Myron Stowe) [RHEL-86521] - PCI/portdrv: Only disable pciehp interrupts early when needed (Myron Stowe) [RHEL-86521] - PCI: hotplug: Inline pci_hp_{create,remove}_module_link() (Myron Stowe) [RHEL-86521] - PCI: hotplug: Avoid backpointer dereferencing in has_*_file() (Myron Stowe) [RHEL-86521] - PCI: hotplug: Drop superfluous NULL pointer checks in has_*_file() (Myron Stowe) [RHEL-86521] - PCI: hotplug: Drop superfluous try_module_get() calls (Myron Stowe) [RHEL-86521] - PCI: hotplug: Drop superfluous pci_hotplug_slot_list (Myron Stowe) [RHEL-86521] - PCI: cpcihp: Remove unused .get_power() and .set_power() (Myron Stowe) [RHEL-86521] - PCI: shpchp: Remove 'shpchp_debug' module parameter (Myron Stowe) [RHEL-86521] - PCI: shpchp: Remove unused logging wrappers (Myron Stowe) [RHEL-86521] - PCI: shpchp: Change dbg() -> ctrl_dbg() (Myron Stowe) [RHEL-86521] - PCI: shpchp: Remove logging from module init/exit functions (Myron Stowe) [RHEL-86521] - PCI: Remove stray put_device() in pci_register_host_bridge() (Myron Stowe) [RHEL-86521] - PCI: Fix reference leak in pci_alloc_child_bus() (Myron Stowe) [RHEL-86521] - PCI: Fix reference leak in pci_register_host_bridge() (Myron Stowe) [RHEL-86521] - PCI: Cache offset of Resizable BAR capability (Myron Stowe) [RHEL-86521] - PCI: Enable Configuration RRS SV early (Myron Stowe) [RHEL-86521] - PCI/DOE: Allow enabling DOE without CXL (Myron Stowe) [RHEL-86521] - PCI/DOE: Expose DOE features via sysfs (Myron Stowe) [RHEL-86521] - PCI/DOE: Rename Discovery Response Data Object Contents to type (Myron Stowe) [RHEL-86521] - PCI/DOE: Rename DOE protocol to feature (Myron Stowe) [RHEL-86521] - PCI: Check BAR index for validity (Myron Stowe) [RHEL-86521] - PCI: Fix wrong length of devres array (Myron Stowe) [RHEL-86521] - PCI/bwctrl: Fix NULL pointer dereference on bus number exhaustion (Myron Stowe) [RHEL-86521] - PCI/bwctrl: Fix pcie_bwctrl_select_speed() return type (Myron Stowe) [RHEL-86521] - selftests/pcie_bwctrl: Add 'set_pcie_speed.sh' to TEST_PROGS (Myron Stowe) [RHEL-86521] - PCI/ASPM: Fix link state exit during switch upstream function removal (Myron Stowe) [RHEL-86521] - PCI/ERR: Handle TLP Log in Flit mode (Myron Stowe) [RHEL-86521] - PCI: Track Flit Mode Status & print it with link status (Myron Stowe) [RHEL-86521] - PCI/AER: Descope pci_printk() to aer_printk() (Myron Stowe) [RHEL-86521] - perf/dwc_pcie: Qualify RAS DES VSEC Capability by Vendor, Revision (Myron Stowe) [RHEL-86521] - Documentation: dwc_pcie_pmu: Fix the mnemonics and eventid (Myron Stowe) [RHEL-86521] - perf/dwc_pcie: Fix the event numbers (Myron Stowe) [RHEL-86521] - perf/dwc_pcie: Fix typos in event names (Myron Stowe) [RHEL-86521] - perf/dwc_pcie: Add support for Ampere SoCs (Myron Stowe) [RHEL-86521] - arm64: debug: remove debug exception registration infrastructure (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: split bkpt32 exception entry (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: split brk64 exception entry (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: split hardware watchpoint exception entry (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: split single stepping exception entry (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: refactor reinstall_suspended_bps() (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: split hardware breakpoint exception entry (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: entry: Add entry and exit functions for debug exceptions (Luis Claudio R. Goncalves) [RHEL-69599] - arm64/fpsimd: Do not discard modified SVE state (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: remove break/step handler registration infrastructure (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: call step handlers statically (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: call software breakpoint handlers statically (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: Introduce esr_is_ubsan_brk() (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: refactor aarch32_break_handler() (Luis Claudio R. Goncalves) [RHEL-69599] - arm64: debug: clean up single_step_handler logic (Luis Claudio R. Goncalves) [RHEL-69599] - Initial bringup of riscv64 for centos (Charles Mirabile) [RHEL-101827] - KVM: RISC-V: Use kvm_faultin_pfn() when mapping pfns into the guest (Charles Mirabile) [RHEL-101827] - KVM: RISC-V: Mark "struct page" pfns accessed before dropping mmu_lock (Charles Mirabile) [RHEL-101827] - KVM: RISC-V: Mark "struct page" pfns dirty iff a stage-2 PTE is installed (Charles Mirabile) [RHEL-101827] - RISC-V: Remove unnecessary include from compat.h (Charles Mirabile) [RHEL-101827] - powercap: intel_rapl: Do not change CLAMPING bit if ENABLE bit cannot be changed (Steve Best) [RHEL-111364] - ibmveth: Add multi buffers rx replenishment hcall support (Mamatha Inamdar) [RHEL-104327] - net: ibmveth: Reset the adapter when unexpected states are detected (Mamatha Inamdar) [RHEL-104327] - x86/cpu: Add new Intel CPU model numbers for Wildcatlake and Novalake (Steve Best) [RHEL-95630] - ibmvnic: Use ndo_get_stats64 to fix inaccurate SAR reporting (Mamatha Inamdar) [RHEL-104319] - ibmvnic: Fix hardcoded NUM_RX_STATS/NUM_TX_STATS with dynamic sizeof (Mamatha Inamdar) [RHEL-104319] - ibmvnic: Add stat for tx direct vs tx batched (Mamatha Inamdar) [RHEL-104319] - s390/pci: Do not try re-enabling load/store if device is disabled (Mete Durlu) [RHEL-105599] - s390/pci: Fix stale function handles in error handling (Mete Durlu) [RHEL-105599] - s390/pci: Fix __pcilg_mio_inuser() inline assembly (Mete Durlu) [RHEL-105606] - platform/x86/amd/hsmp: Enhance the print messages to prevent confusion (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Use IS_ENABLED() instead of IS_REACHABLE() (Steve Best) [RHEL-102876] - x86/platform/amd: replace down_timeout() with down_interruptible() (Steve Best) [RHEL-102876] - x86/platform/amd: move final timeout check to after final sleep (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: fix building with CONFIG_HWMON=m (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: acpi: Add sysfs files to display HSMP telemetry (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Report power via hwmon sensors (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Use a single DRIVER_VERSION for all hsmp modules (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Make amd_hsmp and hsmp_acpi as mutually exclusive drivers (Steve Best) [RHEL-102876] - x86/platform/amd: Move the header to (Steve Best) [RHEL-102876] - x86/platform/amd: Clean up the header guards a bit (Steve Best) [RHEL-102876] - x86/platform/amd: Move the header to (Steve Best) [RHEL-102876] - x86/amd_node, platform/x86/amd/hsmp: Have HSMP use SMN through AMD_NODE (Steve Best) [RHEL-102876] - x86/amd_nb: Use rdmsr_safe() in amd_get_mmconfig_range() (Steve Best) [RHEL-102876] - x86/amd_node: Use defines for SMN register offsets (Steve Best) [RHEL-102876] - x86/amd_node: Remove dependency on AMD_NB (Steve Best) [RHEL-102876] - x86/amd_node: Update __amd_smn_rw() error paths (Steve Best) [RHEL-102876] - x86/amd_nb: Move SMN access code to a new amd_node driver (Steve Best) [RHEL-102876] - x86/amd_nb, hwmon: (k10temp): Simplify amd_pci_dev_to_node_id() (Steve Best) [RHEL-102876] - x86/amd_nb: Simplify function 3 search (Steve Best) [RHEL-102876] - x86/amd_nb: Use topology info to get AMD node count (Steve Best) [RHEL-102876] - x86/amd_nb: Simplify root device search (Steve Best) [RHEL-102876] - x86/amd_nb: Simplify function 4 search (Steve Best) [RHEL-102876] - x86: Start moving AMD node functionality out of AMD_NB (Steve Best) [RHEL-102876] - x86/amd_nb: Clean up early_is_amd_nb() (Steve Best) [RHEL-102876] - x86/amd_nb: Restrict init function to AMD-based systems (Steve Best) [RHEL-102876] - x86/amd_nb: Add new PCI IDs for AMD family 0x1a (Steve Best) [RHEL-102876] - platform/x86: amd: Use *-y instead of *-objs in Makefiles [partial] (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Constify 'struct bin_attribute' (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Add support for HSMP protocol version 7 messages (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Change the error type (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Add new error code and error logs (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: mark hsmp_msg_desc_table[] as maybe_unused (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Make hsmp_pdev static instead of global (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Use dev_groups in the driver structure (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Use name space while exporting module symbols (Steve Best) [RHEL-102876] - redhat/configs: Enable CONFIG_AMD_HSMP_ACPI and CONFIG_AMD_HSMP_PLAT on RHEL (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Create separate ACPI, plat and common drivers (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Change generic plat_dev name to hsmp_pdev (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Move ACPI code to acpi.c (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Move platform device specific code to plat.c (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Move structure and macros to header file (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Convert amd_hsmp_rdwr() to a function pointer (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Create wrapper function init_acpi() (Steve Best) [RHEL-102876] - platform/x86/amd/hsmp: Create hsmp/ directory (Steve Best) [RHEL-102876] - redhat: update self-test data for 10.2 (Scott Weaver) - redhat: correct UPSTREAM_BRANCH (Scott Weaver) - redhat: bump RHEL_MINOR for 10.2 (Scott Weaver) - ACPI: PRM: Reduce unnecessary printing to avoid user confusion (Frank Liang) [RHEL-107449] - scsi: aacraid: Stop using PCI_IRQ_AFFINITY (John Meneghini) [RHEL-41234] - loop: use kiocb helpers to fix lockdep warning (Ming Lei) [RHEL-103981] - tipc: Fix use-after-free in tipc_conn_close(). (CKI Backport Bot) [RHEL-106663] {CVE-2025-38464} - sched/deadline: Fix accounting after global limits change (Phil Auld) [RHEL-105980] - tools/sched: Add root_domains_dump.py which dumps root domains info (Phil Auld) [RHEL-105980] - tools/sched: Add dl_bw_dump.py for printing bandwidth accounting info (Phil Auld) [RHEL-105980] - sched/deadline: Initialize dl_servers after SMP (Phil Auld) [RHEL-105980] - sched/deadline: Less agressive dl_server handling (Phil Auld) [RHEL-105980] - sched/deadline: Reset extra_bw to max_bw when clearing root domains (Phil Auld) [RHEL-105980] - sched: Change nr_uninterruptible type to unsigned long (Phil Auld) [RHEL-105980] - sched/fair: Always trigger resched at the end of a protected period (Phil Auld) [RHEL-105980] - sched/fair: Fix entity's lag with run to parity (Phil Auld) [RHEL-105980] - sched/fair: Limit run to parity to the min slice of enqueued entities (Phil Auld) [RHEL-105980] - sched/fair: Remove spurious shorter slice preemption (Phil Auld) [RHEL-105980] - sched/fair: Fix NO_RUN_TO_PARITY case (Phil Auld) [RHEL-105980] - sched: Cancel the slice protection of the idle entity (Phil Auld) [RHEL-105980] - sched/fair: Use protect_slice() instead of direct comparison (Phil Auld) [RHEL-105980] - sched/deadline: Fix dl_server runtime calculation formula (Phil Auld) [RHEL-105980] - sched/core: Fix migrate_swap() vs. hotplug (Phil Auld) [RHEL-105980] - sched: Fix preemption string of preempt_dynamic_none (Phil Auld) [RHEL-105980] - sched/debug: Print the local group's asym_prefer_cpu (Phil Auld) [RHEL-105980] - cpufreq/amd-pstate: Update asym_prefer_cpu when core rankings change (Phil Auld) [RHEL-105980] - sched/topology: Introduce sched_update_asym_prefer_cpu() (Phil Auld) [RHEL-105980] - sched/fair: Use READ_ONCE() to read sg->asym_prefer_cpu (Phil Auld) [RHEL-105980] - RDMA/iwcm: Fix use-after-free of work objects after cm_id destruction (CKI Backport Bot) [RHEL-104286] {CVE-2025-38211} - scsi: mpt3sas: Fix a fw_event memory leak (Tomas Henzl) [RHEL-61878] - bnxt_en: delay pci_alloc_irq_vectors() in the AER path (Michal Schmidt) [RHEL-106550] - eth: bnxt: fix missing ring index trim on error path (Michal Schmidt) [RHEL-106550] {CVE-2025-37873} - treewide: Switch/rename to timer_delete[_sync]() (bnxt) (Michal Schmidt) [RHEL-106550] - eth: bnxt: fix memory leak in queue reset (Michal Schmidt) [RHEL-106550] - eth: bnxt: fix kernel panic in the bnxt_get_queue_stats{rx | tx} (Michal Schmidt) [RHEL-106550] {CVE-2025-21973} - eth: bnxt: do not update checksum in bnxt_xdp_build_skb() (Michal Schmidt) [RHEL-106550] {CVE-2025-21960} - eth: bnxt: fix out-of-range access of vnic_info array (Michal Schmidt) [RHEL-106550] {CVE-2025-22112} - eth: bnxt: do not use BNXT_VNIC_NTUPLE unconditionally in queue restart logic (Michal Schmidt) [RHEL-106550] - eth: bnxt: return fail if interface is down in bnxt_queue_mem_alloc() (Michal Schmidt) [RHEL-106550] {CVE-2025-21974} - eth: bnxt: fix truesize for mb-xdp-pass case (Michal Schmidt) [RHEL-106550 RHEL-87501] {CVE-2025-21961} - eth: bnxt: update header sizing defaults (Michal Schmidt) [RHEL-106550] - net: ethtool: populate the default HDS params in the core (bnxt) (Michal Schmidt) [RHEL-106550] - eth: bnxt: fix string truncation warning in FW version (Michal Schmidt) [RHEL-106550] - eth: bnxt: always recalculate features after XDP clearing, fix null-deref (Michal Schmidt) [RHEL-106550] {CVE-2025-21682} - net: bnxt: use ethtool string helpers (Michal Schmidt) [RHEL-106550] - eth: Fix typo 'accelaration'. 'exprienced' and 'rewritting' (bnxt) (Michal Schmidt) [RHEL-106550] - redhat/kernel.spec: fix leftover typo in Provides line (Jan Stancek) [RHEL-104231] - redhat/kernel.spec: fix uname_variant call sites (Jan Stancek) [RHEL-104231] - redhat/kernel.spec: fix uname_suffix call sites (Jan Stancek) [RHEL-104231] - PCI/PM: Set up runtime PM even for devices without PCI PM (Myron Stowe) [RHEL-90801] - PCI: Explicitly put devices into D0 when initializing (Myron Stowe) [RHEL-90801] - selftests: net: add test case for NAT46 looping back dst (Felix Maurer) [RHEL-96605] - net: clear the dst when changing skb protocol (Felix Maurer) [RHEL-96605] - bpf: Revert "bpf: remove unnecessary rcu_read_{lock,unlock}() in multi-uprobe attach logic" (Felix Maurer) [RHEL-96605] - bpf, sockmap: Avoid using sk_socket after free when sending (Felix Maurer) [RHEL-96605] - xsk: fix an integer overflow in xp_create_and_assign_umem() (Felix Maurer) [RHEL-87917 RHEL-96605] {CVE-2025-21997} - net: Add rx_skb of kfree_skb to raw_tp_null_args[]. (Felix Maurer) [RHEL-96605] - selftests/bpf: Adjust data size to have ETH_HLEN (Felix Maurer) [RHEL-96605] - bpf, test_run: Fix use-after-free issue in eth_skb_pkt_type() (Felix Maurer) [RHEL-100445 RHEL-96605] {CVE-2025-21867} - selftests/bpf: Add some tests with sockmap SK_PASS (Felix Maurer) [RHEL-96605] - bpf: fix recursive lock when verdict program return SK_PASS (Felix Maurer) [RHEL-96605] - proc: fix UAF in proc_get_inode() (CKI Backport Bot) [RHEL-86811] {CVE-2025-21999} - NFSv4.2: another fix for listxattr (Olga Kornievskaia) [RHEL-100709] - tools headers UAPI: Sync KVM's vmx.h header with the kernel sources (Maxim Levitsky) [RHEL-47242] - tools headers UAPI: Sync kvm header with the kernel sources (Maxim Levitsky) [RHEL-47242] - KVM: SVM: Disable interception of SPEC_CTRL iff the MSR exists for the guest (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Preserve host's DEBUGCTLMSR_FREEZE_IN_SMM while running the guest (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Wrap all accesses to IA32_DEBUGCTL with getter/setter APIs (Maxim Levitsky) [RHEL-47242] - KVM: nVMX: Check vmcs12->guest_ia32_debugctl on nested VM-Enter (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Extract checking of guest's DEBUGCTL into helper (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Allow guest to set DEBUGCTL.RTM_DEBUG if RTM is supported (Maxim Levitsky) [RHEL-47242] - KVM: x86: Drop kvm_x86_ops.set_dr6() in favor of a new KVM_RUN flag (Maxim Levitsky) [RHEL-47242] - KVM: x86: Convert vcpu_run()'s immediate exit param into a generic bitmap (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Don't report base TDVMCALLs (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Ensure unused kvm_tdx_capabilities fields are zeroed out (Maxim Levitsky) [RHEL-47242] - KVM: x86: Reject KVM_SET_TSC_KHZ vCPU ioctl for TSC protected guest (Maxim Levitsky) [RHEL-47242] - Documentation: KVM: Fix unexpected unindent warning (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Use kvm_arch_vcpu.host_debugctl to restore the host's DEBUGCTL (Maxim Levitsky) [RHEL-47242] - KVM: x86: avoid underflow when scaling TSC frequency (Maxim Levitsky) [RHEL-47242] - KVM: x86/hyper-v: Skip non-canonical addresses during PV TLB flush (Maxim Levitsky) [RHEL-47242] - Documentation: KVM: Fix unexpected unindent warnings (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Report supported optional TDVMCALLs in TDX capabilities (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Exit to userspace for SetupEventNotifyInterrupt (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Exit to userspace for GetTdVmCallInfo (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TDG.VP.VMCALL (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add new TDVMCALL status code for unsupported subfuncs (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Avoid indirect calls to TDX assembly functions (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Reject direct bits in gpa passed to KVM_PRE_FAULT_MEMORY (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Embed direct bits into gpa for KVM_PRE_FAULT_MEMORY (Maxim Levitsky) [RHEL-47242] - KVM: VMX: use __always_inline for is_td_vcpu and is_td (Maxim Levitsky) [RHEL-47242] - x86/tdx: mark tdh_vp_enter() as __flatten (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Use kvm_x86_call() instead of manual static_call() (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Clean up and macrofy x86_ops (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Define a VMX glue macro for kvm_complete_insn_gp() (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Move vt_apicv_pre_state_restore() to posted_intr.c and tweak name (Maxim Levitsky) [RHEL-47242] - KVM: x86: Revert kvm_x86_ops.mem_enc_ioctl() back to an OPTIONAL hook (Maxim Levitsky) [RHEL-47242] - KVM: SVM: Treat DEBUGCTL[5:2] as reserved (Maxim Levitsky) [RHEL-47242] - Documentation/virt/kvm: Document on Trust Domain Extensions (TDX) (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Make TDX VM type supported (Maxim Levitsky) [RHEL-47242] - KVM: TDX: KVM: TDX: Always honor guest PAT on TDX enabled guests (Maxim Levitsky) [RHEL-47242] - KVM: x86: remove shadow_memtype_mask (Maxim Levitsky) [RHEL-47242] - KVM: x86: Introduce Intel specific quirk KVM_X86_QUIRK_IGNORE_GUEST_PAT (Maxim Levitsky) [RHEL-47242] - KVM: x86: Introduce supported_quirks to block disabling quirks (Maxim Levitsky) [RHEL-47242] - KVM: x86: Allow vendor code to disable quirks (Maxim Levitsky) [RHEL-47242] - KVM: x86: do not allow re-enabling quirks (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Enable guest access to MTRR MSRs (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add a method to ignore hypercall patching (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Ignore setting up mce (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add methods to ignore accesses to TSC (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add methods to ignore VMX preemption timer (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add method to ignore guest instruction emulation (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add methods to ignore accesses to CPU state (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TDG.VP.VMCALL hypercall (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Enable guest access to LMCE related MSRs (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TDX PV rdmsr/wrmsr hypercall (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Implement callbacks for MSR operations (Maxim Levitsky) [RHEL-47242] - KVM: x86: Move KVM_MAX_MCE_BANKS to header file (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TDX PV HLT hypercall (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TDX PV CPUID hypercall (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Kick off vCPUs when SEAMCALL is busy during TD page removal (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Retry locally in TDX EPT violation handler on RET_PF_RETRY (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle EXCEPTION_NMI and EXTERNAL_INTERRUPT (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Detect unexpected SEPT violations due to pending SPTEs (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Add a helper for NMI handling (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle EPT violation/misconfig exit (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle EXIT_REASON_OTHER_SMI (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Move emulation_required to struct vcpu_vt (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add methods to ignore virtual apic related operation (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Force APICv active for TDX guest (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Enforce KVM_IRQCHIP_SPLIT for TDX guests (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Always block INIT/SIPI (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle SMI request as !CONFIG_KVM_SMM (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Implement methods to inject NMI (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TDX PV MMIO hypercall (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Wait lapic expire when timer IRQ was injected (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TDX PV port I/O hypercall (Maxim Levitsky) [RHEL-47242] - KVM: x86: Assume timer IRQ was injected if APIC state is protected (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TDG.VP.VMCALL (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Implement non-NMI interrupt injection (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TDG.VP.VMCALL (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Move posted interrupt delivery code to common header (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle KVM hypercall with TDG.VP.VMCALL (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Disable PI wakeup for IPIv (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add a place holder for handler of TDX hypercalls (TDG.VP.VMCALL) (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add support for find pending IRQ in a protected local APIC (Maxim Levitsky) [RHEL-47242] - KVM: x86: Add a switch_db_regs flag to handle TDX's auto-switched behavior (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add a place holder to handle TDX VM exit (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Save and restore IA32_DEBUGCTL (Maxim Levitsky) [RHEL-47242] - KVM: x86: Move pv_unhalted check out of kvm_vcpu_has_events() (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Disable support for TSX and WAITPKG (Maxim Levitsky) [RHEL-47242] - KVM: x86: Have ____kvm_emulate_hypercall() read the GPRs (Maxim Levitsky) [RHEL-47242] - KVM: TDX: restore user ret MSRs (Maxim Levitsky) [RHEL-47242] - KVM: x86: Allow to update cached values in kvm_user_return_msrs w/o wrmsr (Maxim Levitsky) [RHEL-47242] - KVM: TDX: restore host xsave state when exit from the guest TD (Maxim Levitsky) [RHEL-47242] - KVM: TDX: vcpu_run: save/restore host state(host kernel gs) (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Implement TDX vcpu enter/exit path (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Move common fields of struct vcpu_{vmx,tdx} to a struct (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle SEPT zap error due to page add error in premap (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrapper to enter/exit TDX guest (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Skip updating CPU dirty logging request for TDs (Maxim Levitsky) [RHEL-47242] - KVM: x86: Make cpu_dirty_log_size a per-VM value (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Add parameter "kvm" to kvm_mmu_page_ad_need_write_protect() (Maxim Levitsky) [RHEL-47242] - KVM: Add parameter "kvm" to kvm_cpu_dirty_log_size() and its callers (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle vCPU dissociation (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Finalize VM initialization (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add an ioctl to create initial guest memory (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Export kvm_tdp_map_page() (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Bail out kvm_tdp_map_page() when VM dead (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Implement hook to get max mapping level of private pages (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Implement hooks to propagate changes of TDP MMU mirror page table (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Handle TLB tracking for TDX (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Set per-VM shadow_mmio_value to 0 (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Add setter for shadow_mmio_value (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Require TDP MMU, mmio caching and EPT A/D bits for TDX (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Set gfn_direct_bits to shared bit (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add load_mmu_pgd method for TDX (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add accessors VMX VMCS helpers (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Teach EPT violation helper about private mem (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Split out guts of EPT violation to common/exposed function (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Do not enable page track for TD guest (Maxim Levitsky) [RHEL-47242] - KVM: x86/tdp_mmu: Add a helper function to walk down the TDP MMU (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Implement memslot deletion for TDX (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers for TD measurement of initial contents (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Register TDX host key IDs to cgroup misc controller (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers to remove a TD private page (Maxim Levitsky) [RHEL-47242] - KVM: x86/mmu: Taking guest pa into consideration when calculate tdp level (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers to manage TDX TLB tracking (Maxim Levitsky) [RHEL-47242] - KVM: x86: Introduce KVM_TDX_GET_CPUID (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers to add TD private pages (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Do TDX specific vcpu initialization (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrapper tdh_mem_sept_add() to add SEPT pages (Maxim Levitsky) [RHEL-47242] - KVM: TDX: create/free TDX vcpu structure (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Don't offline the last cpu of one package when there's TDX guest (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Make pmu_intel.c ignore guest TD case (Maxim Levitsky) [RHEL-47242] - KVM: TDX: add ioctl to initialize VM with TDX specific parameters (Maxim Levitsky) [RHEL-47242] - KVM: x86: expose cpuid_entry2_find for TDX (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Support per-VM KVM_CAP_MAX_VCPUS extension check (Maxim Levitsky) [RHEL-47242] - KVM: TDX: create/destroy VM structure (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Get system-wide info about TDX module on initialization (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add place holder for TDX VM specific mem_enc_op ioctl (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add helper functions to print TDX SEAMCALL error (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add TDX "architectural" error codes (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Define TDX architectural definitions (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Add placeholders for TDX VM/vCPU structures (Maxim Levitsky) [RHEL-47242] - KVM: TDX: Get TDX global information (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Initialize TDX during KVM module load (Maxim Levitsky) [RHEL-47242] - KVM: VMX: Refactor VMX module init/exit functions (Maxim Levitsky) [RHEL-47242] - KVM: Export hardware virtualization enabling/disabling functions (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add tdx_guest_keyid_alloc/free() to alloc and free TDX guest KeyID (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Read essential global metadata for KVM (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: allocate tdx_sys_info in static memory (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers for TDX flush operations (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers for TDX VM/vCPU field access (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers for TDX page cache management (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers for TDX vCPU creation (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers for TDX TD creation (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Add SEAMCALL wrappers for TDX KeyID management (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Require the module to assert it has the NO_RBP_MOD mitigation (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Switch to use auto-generated global metadata reading code (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Use dedicated struct members for PAMT entry sizes (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Use auto-generated code to read global metadata (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Start to track all global metadata in one structure (Maxim Levitsky) [RHEL-47242] - x86/virt/tdx: Rename 'struct tdx_tdmr_sysinfo' to reflect the spec better (Maxim Levitsky) [RHEL-47242] - PM: sleep: Fix power.is_suspended cleanup for direct-complete devices (Mark Langsdorf) [RHEL-88904] - drivers/base/memory: Avoid overhead from for_each_present_section_nr() (Mark Langsdorf) [RHEL-88904] - drivers/base/memory: correct the field name in the header (Mark Langsdorf) [RHEL-88904] - hrtimers: Make hrtimer_update_function() less expensive (Mark Langsdorf) [RHEL-88904] - drivers/base/memory: improve add_boot_memory_block() (Mark Langsdorf) [RHEL-88904] - drivers/base/memory: simplify outputting of valid_zones_show() (Mark Langsdorf) [RHEL-88904] - arch_topology: Support SMT control for OF based system (Mark Langsdorf) [RHEL-88904] - PM: sleep: Fix handling devices with direct_complete set on errors (Mark Langsdorf) [RHEL-88904] - PM: clk: Remove unused pm_clk_remove() (Mark Langsdorf) [RHEL-88904] - PM: sleep: core: Fix indentation in dpm_wait_for_children() (Mark Langsdorf) [RHEL-88904] - PM: sleep: Remove unused pm_generic_ wrappers (Mark Langsdorf) [RHEL-88904] - PM: runtime: Unify error handling during suspend and resume (Mark Langsdorf) [RHEL-88904] - PM: sleep: Rearrange dpm_async_fn() and async state clearing (Mark Langsdorf) [RHEL-88904] - PM: sleep: Rename power.async_in_progress to power.work_in_progress (Mark Langsdorf) [RHEL-88904] - PM: core: Tweak pm_runtime_block_if_disabled() return value (Mark Langsdorf) [RHEL-88904] - PM: sleep: Update power.smart_suspend under PM spinlock (Mark Langsdorf) [RHEL-88904] - PM: runtime: Convert pm_runtime_blocked() to static inline (Mark Langsdorf) [RHEL-88904] - PM: sleep: Adjust check before setting power.must_resume (Mark Langsdorf) [RHEL-88904] - PM: runtime: Drop status check from pm_runtime_force_resume() (Mark Langsdorf) [RHEL-88904] - PM: sleep: Suppress sleeping parent warning in special case (Mark Langsdorf) [RHEL-88904] - driver core: Introduce device_{add,remove}_of_node() (Mark Langsdorf) [RHEL-88904] - driver core: faux: only create the device if probe() succeeds (Mark Langsdorf) [RHEL-88904] - drivers: base: component: add function to query the bound status (Mark Langsdorf) [RHEL-88904] - PM: clk: remove unused of_pm_clk_add_clk() (Mark Langsdorf) [RHEL-88904] - drivers: base: component: Add debug message for unbind (Mark Langsdorf) [RHEL-88904] - drivers: base: devres: Fix find_group() documentation (Mark Langsdorf) [RHEL-88904] - PM: runtime: Switch to use hrtimer_setup() (Mark Langsdorf) [RHEL-88904] - hrtimers: Delete hrtimer_init_on_stack() (Mark Langsdorf) [RHEL-88904] - alarmtimer: Switch to use hrtimer_setup() and hrtimer_setup_on_stack() (Mark Langsdorf) [RHEL-88904] - io_uring: Switch to use hrtimer_setup_on_stack() (Mark Langsdorf) [RHEL-88904] - sched/idle: Switch to use hrtimer_setup_on_stack() (Mark Langsdorf) [RHEL-88904] - hrtimers: Delete hrtimer_init_sleeper_on_stack() (Mark Langsdorf) [RHEL-88904] - wait: Switch to use hrtimer_setup_sleeper_on_stack() (Mark Langsdorf) [RHEL-88904] - timers: Switch to use hrtimer_setup_sleeper_on_stack() (Mark Langsdorf) [RHEL-88904] - net: pktgen: Switch to use hrtimer_setup_sleeper_on_stack() (Mark Langsdorf) [RHEL-88904] - futex: Switch to use hrtimer_setup_sleeper_on_stack() (Mark Langsdorf) [RHEL-88904] - fs/aio: Switch to use hrtimer_setup_sleeper_on_stack() (Mark Langsdorf) [RHEL-88904] - hrtimers: Introduce hrtimer_update_function() (Mark Langsdorf) [RHEL-88904] - hrtimers: Introduce hrtimer_setup_sleeper_on_stack() (Mark Langsdorf) [RHEL-88904] - hrtimers: Introduce hrtimer_setup_on_stack() (Mark Langsdorf) [RHEL-88904] - io_uring: Remove redundant hrtimer's callback function setup (Mark Langsdorf) [RHEL-88904] - KVM: x86/xen: Initialize hrtimer in kvm_xen_init_vcpu() (Mark Langsdorf) [RHEL-88904] - drivers: base: devres: Allow to release group on device release (Mark Langsdorf) [RHEL-88904] - drivers: base: component: Allow more space for device name (Mark Langsdorf) [RHEL-88904] - driver core: location: Use str_yes_no() helper function (Mark Langsdorf) [RHEL-88904] - drivers/base/bus.c: fix spelling of "subsystem" (Mark Langsdorf) [RHEL-88904] - driver core: class: Remove needless return in void API class_remove_file() (Mark Langsdorf) [RHEL-88904] - regmap: irq: Use one way of setting all bits in the register (Mark Langsdorf) [RHEL-88904] - devtmpfs: replace ->mount with ->get_tree in public instance (Mark Langsdorf) [RHEL-88904] - regmap: Reorder 'struct regmap' (Mark Langsdorf) [RHEL-88904] - audit,module: restore audit logging in load failure case (Richard Guy Briggs) [RHEL-106924] - redhat/configs: enable SERIAL_AMBA_PL011 for automotive (Radu Rendec) [RHEL-69093] - selftests: net/forwarding: test purge of active DWRR classes (Ivan Vecera) [RHEL-107519] - net/sched: ets: use old 'nbands' while purging unused classes (Ivan Vecera) [RHEL-107519] - r8169: add support for RTL8125BP rev.b (Izabela Bakollari) [RHEL-76227] - Revert "KVM: arm64: Add support for PSCI v1.2 and v1.3" (Eric Auger) [RHEL-105397] - Revert "KVM: selftests: Add test for PSCI SYSTEM_OFF2" (Eric Auger) [RHEL-105397] - Revert "KVM: arm64: Introduce KVM_REG_ARM_VENDOR_HYP_BMAP_2" (Eric Auger) [RHEL-105397] - Revert "KVM: selftests: Add test for KVM_REG_ARM_VENDOR_HYP_BMAP_2" (Eric Auger) [RHEL-105397] - cifs: Fix null-ptr-deref by static initializing global lock (Paulo Alcantara) [RHEL-109065] - cifs: Move the SMB1 transport code out of transport.c (Paulo Alcantara) [RHEL-109065] - smb: client: smb: client: eliminate mid_flags field (Paulo Alcantara) [RHEL-109065] - smb: client: add mid_counter_lock to protect the mid counter counter (Paulo Alcantara) [RHEL-109065] - smb: client: rename server mid_lock to mid_queue_lock (Paulo Alcantara) [RHEL-109065] - smb: client: fix creating symlinks under POSIX mounts (Paulo Alcantara) [RHEL-109065] - smb: client: default to nonativesocket under POSIX mounts (Paulo Alcantara) [RHEL-109065] - smb: client: set symlink type as native for POSIX mounts (Paulo Alcantara) [RHEL-109065] - smb3 client: add way to show directory leases for improved debugging (Paulo Alcantara) [RHEL-109065] - smb: client: get rid of kstrdup() when parsing iocharset mount option (Paulo Alcantara) [RHEL-109065] - smb: client: get rid of kstrdup() when parsing domain mount option (Paulo Alcantara) [RHEL-109065] - smb: client: get rid of kstrdup() when parsing pass2 mount option (Paulo Alcantara) [RHEL-109065] - smb: client: get rid of kstrdup() when parsing pass mount option (Paulo Alcantara) [RHEL-109065] - smb: client: get rid of kstrdup() when parsing user mount option (Paulo Alcantara) [RHEL-109065] - cifs: Add support for creating reparse points over SMB1 (Paulo Alcantara) [RHEL-109065] - cifs: Do not query WSL EAs for native SMB symlink (Paulo Alcantara) [RHEL-109065] - cifs: Optimize CIFSFindFirst() response when not searching (Paulo Alcantara) [RHEL-109065] - cifs: Fix calling CIFSFindFirst() for root path without msearch (Paulo Alcantara) [RHEL-109065] - cifs: add new field to track the last access time of cfid (Paulo Alcantara) [RHEL-109065] - smb: change return type of cached_dir_lease_break() to bool (Paulo Alcantara) [RHEL-109065] - cifs: reset iface weights when we cannot find a candidate (Paulo Alcantara) [RHEL-109065] - netfs: Remove unused declaration netfs_queue_write_request() (Paulo Alcantara) [RHEL-109065] - afs: Set vllist to NULL if addr parsing fails (Paulo Alcantara) [RHEL-109065] - afs: Fix check for NULL terminator (Paulo Alcantara) [RHEL-109065] - Fix SMB311 posix special file creation to servers which do not advertise reparse support (Paulo Alcantara) [RHEL-109065] - netfs: Fix race between cache write completion and ALL_QUEUED being set (Paulo Alcantara) [RHEL-109065] - netfs: Fix copy-to-cache so that it performs collection with ceph+fscache (Paulo Alcantara) [RHEL-109065] - smb: invalidate and close cached directory when creating child entries (Paulo Alcantara) [RHEL-109065] - smb: client: fix use-after-free in crypt_message when using async crypto (Paulo Alcantara) [RHEL-109065] - smb: client: fix use-after-free in cifs_oplock_break (Paulo Alcantara) [RHEL-109065] - cachefiles: Fix the incorrect return value in __cachefiles_write() (Paulo Alcantara) [RHEL-109065] - smb: client: fix native SMB symlink traversal (Paulo Alcantara) [RHEL-109065] - smb: client: fix race condition in negotiate timeout by using more precise timing (Paulo Alcantara) [RHEL-109065] - netfs: Update tracepoints in a number of ways (Paulo Alcantara) [RHEL-109065] - netfs: Renumber the NETFS_RREQ_* flags to make traces easier to read (Paulo Alcantara) [RHEL-109065] - netfs: Merge i_size update functions (Paulo Alcantara) [RHEL-109065] - netfs: Fix i_size updating (Paulo Alcantara) [RHEL-109065] - smb: client: set missing retry flag in cifs_writev_callback() (Paulo Alcantara) [RHEL-109065] - smb: client: set missing retry flag in cifs_readv_callback() (Paulo Alcantara) [RHEL-109065] - smb: client: set missing retry flag in smb2_writev_callback() (Paulo Alcantara) [RHEL-109065] - netfs: Fix ref leak on inserted extra subreq in write retry (Paulo Alcantara) [RHEL-109065] - netfs: Fix looping in wait functions (Paulo Alcantara) [RHEL-109065] - netfs: Provide helpers to perform NETFS_RREQ_IN_PROGRESS flag wangling (Paulo Alcantara) [RHEL-109065] - netfs: Fix double put of request (Paulo Alcantara) [RHEL-109065] - netfs: Fix hang due to missing case in final DIO read result collection (Paulo Alcantara) [RHEL-109065] - cifs: all initializations for tcon should happen in tcon_info_alloc (Paulo Alcantara) [RHEL-109065] - smb: client: fix warning when reconnecting channel (Paulo Alcantara) [RHEL-109065] - smb: client: fix readdir returning wrong type with POSIX extensions (Paulo Alcantara) [RHEL-109065] - cifs: Fix reading into an ITER_FOLIOQ from the smbdirect code (Paulo Alcantara) [RHEL-109065] - cifs: Fix the smbd_response slab to allow usercopy (Paulo Alcantara) [RHEL-109065] - smb: client: fix potential deadlock when reconnecting channels (Paulo Alcantara) [RHEL-109065] - smb: client: remove \t from TP_printk statements (Paulo Alcantara) [RHEL-109065] - smb: client: let smbd_post_send_iter() respect the peers max_send_size and transmit all data (Paulo Alcantara) [RHEL-109065] - smb: client: fix regression with native SMB symlinks (Paulo Alcantara) [RHEL-109065] - smb: minor fix to use SMB2_NTLMV2_SESSKEY_SIZE for auth_key size (Paulo Alcantara) [RHEL-109065] - smb: minor fix to use sizeof to initialize flags_string buffer (Paulo Alcantara) [RHEL-109065] - smb: Use loff_t for directory position in cached_dirents (Paulo Alcantara) [RHEL-109065] - smb: Log an error when close_all_cached_dirs fails (Paulo Alcantara) [RHEL-109065] - cifs: Fix prepare_write to negotiate wsize if needed (Paulo Alcantara) [RHEL-109065] - smb: client: fix max_sge overflow in smb_extract_folioq_to_rdma() (Paulo Alcantara) [RHEL-109065] - smb: client: fix first command failure during re-negotiation (Paulo Alcantara) [RHEL-109065] - cifs: Remove duplicate fattr->cf_dtype assignment from wsl_to_fattr() function (Paulo Alcantara) [RHEL-109065] - smb: fix secondary channel creation issue with kerberos by populating hostname when adding channels (Paulo Alcantara) [RHEL-109065] - smb: improve directory cache reuse for readdir operations (Paulo Alcantara) [RHEL-109065] - net: openvswitch: allow providing upcall pid for the 'execute' command (Aaron Conole) [RHEL-96623] - net: netlink: add nla_get_*_default() accessors (Aaron Conole) [RHEL-96623] - hv_netvsc: Fix panic during namespace deletion with VF (Xiong Xiaoqiang) [RHEL-59569] - net: drv: netdevsim: don't napi_complete() from netpoll (CKI Backport Bot) [RHEL-96595] - netdevsim: don't assume core pre-populates HDS params on GET (CKI Backport Bot) [RHEL-96595] - net: netdevsim: try to close UDP port harness races (CKI Backport Bot) [RHEL-96595] - net: netdevsim: fix nsim_pp_hold_write() (CKI Backport Bot) [RHEL-96595] - netdevsim: prevent bad user input in nsim_dev_health_break_write() (CKI Backport Bot) [RHEL-96595] - selftests: rtnetlink: update netdevsim ipsec output format (CKI Backport Bot) [RHEL-96595] - netdevsim: copy addresses for both in and out paths (CKI Backport Bot) [RHEL-96595] - netdevsim: print human readable IP address (CKI Backport Bot) [RHEL-96595] - redhat/configs: sync CONFIG_SND_HDA_ACPI with ARK (Marcin Juszkiewicz) [RHEL-102696] - ALSA: hda: acpi: Make driver's match data const static (Marcin Juszkiewicz) [RHEL-102696] - ALSA: hda: acpi: Use SYSTEM_SLEEP_PM_OPS() (Marcin Juszkiewicz) [RHEL-102696] - ALSA: hda: Add missing NVIDIA HDA codec IDs (Marcin Juszkiewicz) [RHEL-102696] - ALSA: hda - Add new driver for HDA controllers listed via (Marcin Juszkiewicz) [RHEL-102696] - ALSA: hda/tegra: Add Tegra264 support (Marcin Juszkiewicz) [RHEL-102696] - ice: fix eswitch code memory leak in reset scenario (CKI Backport Bot) [RHEL-108154] {CVE-2025-38417} - kernel.spec: add '-e' option to %%preun for kernel-core and kernel-uki-virt (Xuemin Li) [RHEL-104228] - [RHEL-only] remove Benjamin Tissoires redhat email from .mailmap (Benjamin Tissoires) [RHEL-101770] - HID: appletb-kbd: fix slab use-after-free bug in appletb_kbd_probe (Benjamin Tissoires) [RHEL-101770] - treewide: Switch/rename to timer_delete[_sync]() (Benjamin Tissoires) [RHEL-101770] - HID: appletb-kbd: fix "appletb_backlight" backlight device reference counting (Benjamin Tissoires) [RHEL-101770] - HID: appletb-kbd: fix memory corruption of input_handler_list (Benjamin Tissoires) [RHEL-101770] - HID: HID_APPLETB_KBD should depend on X86 (Benjamin Tissoires) [RHEL-101770] - HID: HID_APPLETB_BL should depend on X86 (Benjamin Tissoires) [RHEL-101770] - HID: Intel-thc-hid: Intel-quicki2c: Enhance QuickI2C reset flow (Benjamin Tissoires) [RHEL-101770] - HID: intel-thc-hid: intel-quicki2c: pass correct arguments to acpi_evaluate_object (Benjamin Tissoires) [RHEL-101770] - Input: synaptics-rmi - fix crash with unsupported versions of F34 (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add more controllers (Benjamin Tissoires) [RHEL-101770] - Input: xpad - fix xpad_device sorting (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add support for several more controllers (Benjamin Tissoires) [RHEL-101770] - Input: xpad - fix Share button on Xbox One controllers (Benjamin Tissoires) [RHEL-101770] - Input: xpad - fix two controller table values (Benjamin Tissoires) [RHEL-101770] - Input: hisi_powerkey - enable system-wakeup for s2idle (Benjamin Tissoires) [RHEL-101770] - Input: synaptics - enable InterTouch on Dell Precision M3800 (Benjamin Tissoires) [RHEL-101770] - Input: synaptics - enable InterTouch on TUXEDO InfinityBook Pro 14 v5 (Benjamin Tissoires) [RHEL-101770] - Input: synaptics - enable InterTouch on Dynabook Portege X30L-G (Benjamin Tissoires) [RHEL-101770] - Input: synaptics - enable InterTouch on Dynabook Portege X30-D (Benjamin Tissoires) [RHEL-101770] - Input: synaptics - enable SMBus for HP Elitebook 850 G1 (Benjamin Tissoires) [RHEL-101770] - Input: mtk-pmic-keys - fix possible null pointer dereference (Benjamin Tissoires) [RHEL-101770] {CVE-2025-37972} - Input: xpad - add support for 8BitDo Ultimate 2 Wireless Controller (Benjamin Tissoires) [RHEL-101770] - Input: cyttsp5 - fix power control issue on wakeup (Benjamin Tissoires) [RHEL-101770] - Input: stmpe-ts - use module alias instead of device table (Benjamin Tissoires) [RHEL-101770] - Input: cyttsp5 - ensure minimum reset pulse width (Benjamin Tissoires) [RHEL-101770] - Input: sparcspkr - avoid unannotated fall-through (Benjamin Tissoires) [RHEL-101770] - input/joystick: magellan: Mark __nonstring look-up table (Benjamin Tissoires) [RHEL-101770] - Input: goodix_berlin - add support for Berlin-A series (Benjamin Tissoires) [RHEL-101770] - Input: iqs7222 - preserve system status register (Benjamin Tissoires) [RHEL-101770] - Input: gscps2 - Describe missing function parameters (Benjamin Tissoires) [RHEL-101770] - Input: i8042 - swap old quirk combination with new quirk for more devices (Benjamin Tissoires) [RHEL-101770] - Input: i8042 - swap old quirk combination with new quirk for several devices (Benjamin Tissoires) [RHEL-101770] - Input: i8042 - add required quirks for missing old boardnames (Benjamin Tissoires) [RHEL-101770] - Input: i8042 - swap old quirk combination with new quirk for NHxxRZQ (Benjamin Tissoires) [RHEL-101770] - Input: pm8941-pwrkey - fix dev_dbg() output in pm8941_pwrkey_irq() (Benjamin Tissoires) [RHEL-101770] - Input: synaptics - hide unused smbus_pnp_ids[] array (Benjamin Tissoires) [RHEL-101770] - Input: apple_z2 - fix potential confusion in Kconfig (Benjamin Tissoires) [RHEL-101770] - Input: matrix_keypad - use fsleep for delays after activating columns (Benjamin Tissoires) [RHEL-101770] - Input: matrix_keypad - add settle time after enabling all columns (Benjamin Tissoires) [RHEL-101770] - Input: xpad - rename QH controller to Legion Go S (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add support for TECNO Pocket Go (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add support for ZOTAC Gaming Zone (Benjamin Tissoires) [RHEL-101770] - Input: goodix-berlin - fix vddio regulator references (Benjamin Tissoires) [RHEL-101770] - Input: goodix-berlin - fix comment referencing wrong regulator (Benjamin Tissoires) [RHEL-101770] - Input: imagis - add support for imagis IST3038H (Benjamin Tissoires) [RHEL-101770] - Input: goodix-berlin - constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - Input: max77693 - add max77705 haptic support (Benjamin Tissoires) [RHEL-101770] - Input: apple_z2 - add a driver for Apple Z2 touchscreens (Benjamin Tissoires) [RHEL-101770] - Input: Switch to use hrtimer_setup() (Benjamin Tissoires) [RHEL-101770] - Input: drop vb2_ops_wait_prepare/finish (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add multiple supported devices (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add 8BitDo SN30 Pro, Hyperkin X91 and Gamesir G7 SE controllers (Benjamin Tissoires) [RHEL-101770] - Input: ads7846 - fix gpiod allocation (Benjamin Tissoires) [RHEL-101770] - Input: wdt87xx_i2c - fix compiler warning (Benjamin Tissoires) [RHEL-101770] - Input: synaptics - fix crash when enabling pass-through port (Benjamin Tissoires) [RHEL-101770] {CVE-2025-21746} - Input: atkbd - map F23 key to support default copilot shortcut (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add support for Nacon Evol-X Xbox One Controller (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add unofficial Xbox 360 wireless receiver clone (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add support for wooting two he (arm) (Benjamin Tissoires) [RHEL-101770] - Input: xpad - improve name of 8BitDo controller 2dc8:3106 (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add QH Electronics VID/PID (Benjamin Tissoires) [RHEL-101770] - Input: i8042 - Add support for platform filter contexts (Benjamin Tissoires) [RHEL-101770] - Input: joystick - use str_off_on() helper in sw_connect() (Benjamin Tissoires) [RHEL-101770] - Input: Use str_enable_disable-like helpers (Benjamin Tissoires) [RHEL-101770] - Input: use guard notation in input core (Benjamin Tissoires) [RHEL-101770] - Input: poller - convert locking to guard notation (Benjamin Tissoires) [RHEL-101770] - Input: mt - make use of __free() cleanup facility (Benjamin Tissoires) [RHEL-101770] - Input: mt - convert locking to guard notation (Benjamin Tissoires) [RHEL-101770] - Input: ff-memless - make use of __free() cleanup facility (Benjamin Tissoires) [RHEL-101770] - Input: ff-memless - convert locking to guard notation (Benjamin Tissoires) [RHEL-101770] - Input: ff-core - make use of __free() cleanup facility (Benjamin Tissoires) [RHEL-101770] - Input: ff-core - convert locking to guard notation (Benjamin Tissoires) [RHEL-101770] - Input: remove evbug driver (Benjamin Tissoires) [RHEL-101770] - Input: mma8450 - add chip ID check in probe (Benjamin Tissoires) [RHEL-101770] - Input: bbnsm_pwrkey - add remove hook (Benjamin Tissoires) [RHEL-101770] - Input: tsc2007 - accept standard properties (Benjamin Tissoires) [RHEL-101770] - Input: xpad - add support for Nacon Pro Compact (Benjamin Tissoires) [RHEL-101770] - Input: mpr121 - use devm_regulator_get_enable_read_voltage() (Benjamin Tissoires) [RHEL-101770] - Input: sun4i-lradc-keys - don't include 'pm_wakeup.h' directly (Benjamin Tissoires) [RHEL-101770] - Input: spear-keyboard - don't include 'pm_wakeup.h' directly (Benjamin Tissoires) [RHEL-101770] - Input: cypress-sf - constify struct i2c_device_id (Benjamin Tissoires) [RHEL-101770] - Input: ads7846 - increase xfer array size in 'struct ser_req' (Benjamin Tissoires) [RHEL-101770] - Input: gpio_keys_polled - avoid using GPIOF_ACTIVE_LOW (Benjamin Tissoires) [RHEL-101770] - Input: gpio_keys - avoid using GPIOF_ACTIVE_LOW (Benjamin Tissoires) [RHEL-101770] - Input: i8042 - fix typo dublicate to duplicate (Benjamin Tissoires) [RHEL-101770] - Input: ads7846 - add dummy command register clearing cycle (Benjamin Tissoires) [RHEL-101770] - Input: cs40l50 - fix wrong usage of INIT_WORK() (Benjamin Tissoires) [RHEL-101770] - Input: maple_keyb - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: locomokbd - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: hilkbd - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: synaptics-rmi4 - switch to using cleanup functions in F34 (Benjamin Tissoires) [RHEL-101770] - Input: synaptics - fix a typo (Benjamin Tissoires) [RHEL-101770] - Input: omap-keypad - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: imagis - fix warning regarding 'imagis_3038_data' being unused (Benjamin Tissoires) [RHEL-101770] - Input: userio - remove unneeded semicolon (Benjamin Tissoires) [RHEL-101770] - Input: sparcspkr - use cleanup facility for device_node (Benjamin Tissoires) [RHEL-101770] - Input: sparcspkr - use device managed memory for 'state' (Benjamin Tissoires) [RHEL-101770] - Input: serio_raw - fix uninitialized variable bug (Benjamin Tissoires) [RHEL-101770] - Input: ts4800-ts - use cleanup facility for device_node (Benjamin Tissoires) [RHEL-101770] - Input: raspberrypi-ts - use cleanup facility for device_node (Benjamin Tissoires) [RHEL-101770] - Input: i8042 - use cleanup facility for device_node (Benjamin Tissoires) [RHEL-101770] - Input: 88pm860x - use cleanup facility for device_node (Benjamin Tissoires) [RHEL-101770] - Input: twl4030-vibra - use cleanup facility for device_node (Benjamin Tissoires) [RHEL-101770] - Input: twl6040-vibra - use cleanup facility for device_node (Benjamin Tissoires) [RHEL-101770] - Input: sun4i-lradc-keys - switch to for_each_child_of_node_scoped (Benjamin Tissoires) [RHEL-101770] - Input: mtk-pmic-keys - switch to for_each_child_of_node_scoped (Benjamin Tissoires) [RHEL-101770] - Input: cap11xx - switch to for_each_child_of_node_scoped (Benjamin Tissoires) [RHEL-101770] - Input: gscps2 - fix compilation error introduced with switch to guards (Benjamin Tissoires) [RHEL-101770] - Input: matrix_keypad - remove duplicated include (Benjamin Tissoires) [RHEL-101770] - Input: xilinx_ps2 - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: userio - switch to using cleanup functions (Benjamin Tissoires) [RHEL-101770] - Input: sun4i-ps2 - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: serio-raw - fix potential serio port name truncation (Benjamin Tissoires) [RHEL-101770] - Input: serio_raw - use guard notation for locks and other resources (Benjamin Tissoires) [RHEL-101770] - Input: serio - use guard notation when acquiring mutexes and spinlocks (Benjamin Tissoires) [RHEL-101770] - Input: serport - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: sa1111ps2 - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: q40kbd - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: ps2mult - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: ps2-gpio - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: i8042 - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: i8042 - tease apart interrupt handler (Benjamin Tissoires) [RHEL-101770] - Input: hyperv-keyboard - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: gscps2 - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: elo - use guard notation when pausing serio port (Benjamin Tissoires) [RHEL-101770] - Input: synaptics-rmi4 - use guard notation when pausing serio port in F03 (Benjamin Tissoires) [RHEL-101770] - Input: sunkbd - use guard notation when pausing serio port (Benjamin Tissoires) [RHEL-101770] - Input: atkbd - use guard notation when pausing serio port (Benjamin Tissoires) [RHEL-101770] - Input: synaptics - use guard notation when pausing serio port (Benjamin Tissoires) [RHEL-101770] - Input: byd - use guard notation when pausing serio port (Benjamin Tissoires) [RHEL-101770] - Input: alps - use guard notation when pausing serio port (Benjamin Tissoires) [RHEL-101770] - Input: libps2 - use guard notation when temporarily pausing serio ports (Benjamin Tissoires) [RHEL-101770] - Input: serio - define serio_pause_rx guard to pause and resume serio ports (Benjamin Tissoires) [RHEL-101770] - Input: sparcspkr - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: rotary_encoder - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: regulator-haptic - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: pwm-beeper - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: powermate - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: pegasus_notetaker - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: max8997_haptic - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: iqs7222 - use cleanup facility for fwnodes (Benjamin Tissoires) [RHEL-101770] - Input: iqs626a - use cleanup facility for fwnodes (Benjamin Tissoires) [RHEL-101770] - Input: iqs269a - use cleanup facility for fwnodes (Benjamin Tissoires) [RHEL-101770] - Input: iqs269a - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: ibm-panel - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: ideapad_slidebar - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: drv2667 - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: drv2665 - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: drv260x - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: kxtj9 - use guard notation when acquiring mutex/disabling irq (Benjamin Tissoires) [RHEL-101770] - Input: da7280 - use guard notation when acquiring mutex and spinlock (Benjamin Tissoires) [RHEL-101770] - Input: cma3000_d0x - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: cm109 - use guard notation when acquiring mutex and spinlock (Benjamin Tissoires) [RHEL-101770] - Input: ati_remote2 - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: ad714x - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: xpad - use guard notation when acquiring mutex and spinlock (Benjamin Tissoires) [RHEL-101770] - Input: turbografx - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: n64joy - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: iforce - use guard notation when acquiring mutex and spinlock (Benjamin Tissoires) [RHEL-101770] - Input: gamecon - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: db9 - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: st-keyscan - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: spear-keyboard - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: pxa27x_keypad - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: pmic8xxx-keypad - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: omap4-keypad - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: matrix_keypad - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: lpc32xx-keys - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: lm8323 - use guard notation when acquiring mutexes (Benjamin Tissoires) [RHEL-101770] - Input: ipaq-micro-keys - use guard notation when acquiring mutex and spinlock (Benjamin Tissoires) [RHEL-101770] - Input: imx_keypad - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: ep93xx_keypad - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: applespi - use guard notation when acquiring spinlock (Benjamin Tissoires) [RHEL-101770] - Input: adp5589-keys - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: elan_i2c - switch to using cleanup functions (Benjamin Tissoires) [RHEL-101770] - Input: psmouse-smbus - use guard notation when acquiring mutex (Benjamin Tissoires) [RHEL-101770] - Input: hycon-hy46xx - add missing dependency on REGMAP_I2C (Benjamin Tissoires) [RHEL-101770] - Input: hideep - add missing dependency on REGMAP_I2C (Benjamin Tissoires) [RHEL-101770] - Input: correct typos in multiple comments across misc drivers (Benjamin Tissoires) [RHEL-101770] - input: Fix typos in comments across various files (Benjamin Tissoires) [RHEL-101770] - Input: novatek-nvt-ts - add support for NT36672A touchscreen (Benjamin Tissoires) [RHEL-101770] - Input: novatek-nvt-ts - replace generic i2c device id with specific IC variant (Benjamin Tissoires) [RHEL-101770] - HID: bpf: abort dispatch if device destroyed (Benjamin Tissoires) [RHEL-101770] {CVE-2025-38016} - HID: quirks: Add ADATA XPG alpha wireless mouse support (Benjamin Tissoires) [RHEL-101770] - HID: hid-steam: Remove the unused variable connected (Benjamin Tissoires) [RHEL-101770] - HID: amd_sfh: Avoid clearing reports for SRA sensor (Benjamin Tissoires) [RHEL-101770] - HID: amd_sfh: Fix SRA sensor when it's the only sensor (Benjamin Tissoires) [RHEL-101770] - HID: wacom: fix shift OOB in kfifo allocation for zero pktlen (Benjamin Tissoires) [RHEL-101770] - HID: uclogic: Add NULL check in uclogic_input_configured() (Benjamin Tissoires) [RHEL-101770] {CVE-2025-38007} - HID: wacom: fix memory leak on size mismatch in wacom_wac_queue_flush() (Benjamin Tissoires) [RHEL-101770] - HID: wacom: handle kzalloc() allocation failure in wacom_wac_queue_flush() (Benjamin Tissoires) [RHEL-101770] - HID: thrustmaster: fix memory leak in thrustmaster_interrupts() (Benjamin Tissoires) [RHEL-101770] - HID: bpf: fix BTN_STYLUS for the XP Pen ACK05 remote (Benjamin Tissoires) [RHEL-101770] - HID: remove superfluous (and wrong) Makefile entry for CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER (Benjamin Tissoires) [RHEL-101770] - HID: Intel-thc-hid: Intel-quickspi: Correct device state names gramatically (Benjamin Tissoires) [RHEL-101770] - HID: wacom: Remove static WACOM_PKGLEN_MAX limit (Benjamin Tissoires) [RHEL-101770] - HID: amd_sfh: Don't show wrong status for amd_sfh_hpd_info() (Benjamin Tissoires) [RHEL-101770 RHEL-85388] - HID: amd_sfh: Default to HPD disabled (Benjamin Tissoires) [RHEL-101770 RHEL-85388] - HID: amd_sfh: Allow configuring whether HPD is enabled or disabled (Benjamin Tissoires) [RHEL-101770 RHEL-85388] - HID: pidff: Fix set_device_control() (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Fix 90 degrees direction name North -> East (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Compute INFINITE value instead of using hardcoded 0xffff (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Clamp effect playback LOOP_COUNT value (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Rename two functions to align them with naming convention (Benjamin Tissoires) [RHEL-101770] - HID: lenovo: silence unreachable code warning (Benjamin Tissoires) [RHEL-101770] - HID: lenovo: Fix to ensure the data as __le32 instead of u32 (Benjamin Tissoires) [RHEL-101770] - HID: bpf: add a v6.11+ compatible BPF fixup for the XPPen ACK05 remote (Benjamin Tissoires) [RHEL-101770] - HID: bpf: new hid_bpf_async.h common header (Benjamin Tissoires) [RHEL-101770] - HID: bpf: import new kfunc from v6.10 & v6.11 (Benjamin Tissoires) [RHEL-101770] - HID: bpf: add support for the XP-Pen Artist Pro 19 (gen2) (Benjamin Tissoires) [RHEL-101770] - HID: bpf: Added updated Kamvas Pro 19 descriptor (Benjamin Tissoires) [RHEL-101770] - HID: bpf: Suppress bogus F13 trigger on Sirius keyboard full fan shortcut (Benjamin Tissoires) [RHEL-101770] - HID: bpf: Add support for the default firmware mode of the Huion K20 (Benjamin Tissoires) [RHEL-101770] - HID: google: don't include '' directly (Benjamin Tissoires) [RHEL-101770] - Hid: Intel-thc-hid: Intel-thc: Fix "dubious: !x | !y" issue (Benjamin Tissoires) [RHEL-101770] - HID: hid-universal-pidff: Fix spelling mistake "sucessfully" -> "successfully" (Benjamin Tissoires) [RHEL-101770] - HID: appletb-kbd: Fix inconsistent indentation and pass -ENODEV to dev_err_probe (Benjamin Tissoires) [RHEL-101770] - HID: hid-appletb-bl: fix incorrect error message for default brightness (Benjamin Tissoires) [RHEL-101770] - HID: hid-appletb-kbd: simplify logic used to switch between media and function keys on pressing fn key (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Remove redundant call to pidff_find_special_keys (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Support device error response from PID_BLOCK_LOAD (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Comment and code style update (Benjamin Tissoires) [RHEL-101770] - HID: hid-universal-pidff: Add Asetek wheelbases support (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Make sure to fetch pool before checking SIMULTANEOUS_MAX (Benjamin Tissoires) [RHEL-101770] {CVE-2025-37942} - HID: hid-appletb-bl: use appletb_bl_brightness_map instead of magic numbers to set default brightness (Benjamin Tissoires) [RHEL-101770] - HID: hid-appletb-kbd: make struct attribute *appletb_kbd_attrs[] static (Benjamin Tissoires) [RHEL-101770] - HID: Enable playstation driver for PlayStation 5 controllers (Benjamin Tissoires) [RHEL-101770] - HID: Enable playstation driver independently of sony driver (Benjamin Tissoires) [RHEL-101770] - HID: core: Add reserved item tag for main items (Benjamin Tissoires) [RHEL-101770] - HID: hid-steam: Mutex cleanup in steam_set_lizard_mode() (Benjamin Tissoires) [RHEL-101770] - HID: hid-appletb-kbd: add support for automatic brightness control while using the touchbar (Benjamin Tissoires) [RHEL-101770] - HID: hid-appletb-kbd: add support for fn toggle between media and function mode (Benjamin Tissoires) [RHEL-101770] - HID: hid-appletb-kbd: add driver for the keyboard mode of Apple Touch Bars (Benjamin Tissoires) [RHEL-101770] - HID: hid-appletb-bl: add driver for the backlight of Apple Touch Bars (Benjamin Tissoires) [RHEL-101770] - HID: intel-thc-hid: Remove deprecated PCI API calls (Benjamin Tissoires) [RHEL-101770] - HID: usbkbd: Fix the bit shift number for LED_KANA (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Factor out pool report fetch and remove excess declaration (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Use macros instead of hardcoded min/max values for shorts (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Simplify pidff_rescale_signed (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Move all hid-pidff definitions to a dedicated header (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Fix null pointer dereference in pidff_find_fields (Benjamin Tissoires) [RHEL-101770] {CVE-2025-37862} - HID: pidff: Factor out code for setting gain (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Rescale time values to match field units (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Define values used in pidff_find_special_fields (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Simplify pidff_upload_effect function (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Completely rework and fix pidff_reset function (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Add PERIODIC_SINE_ONLY quirk (Benjamin Tissoires) [RHEL-101770] - HID: Add hid-universal-pidff driver and supported device ids (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Stop all effects before enabling actuators (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Add FIX_WHEEL_DIRECTION quirk (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Add hid_pidff_init_with_quirks and export as GPL symbol (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Add PERMISSIVE_CONTROL quirk (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Add MISSING_PBO quirk and its detection (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Add MISSING_DELAY quirk and its detection (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Clamp PERIODIC effect period to device's logical range (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Do not send effect envelope if it's empty (Benjamin Tissoires) [RHEL-101770] - HID: pidff: Convert infinite length from Linux API to PID standard (Benjamin Tissoires) [RHEL-101770] - HID: Intel-thc-hid: Intel-quickspi: Correct device state after S4 (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: Fix spelling mistake "intput" -> "input" (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quicki2c: fix potential memory corruption (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-thc: Fix error code in thc_i2c_subip_init() (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quicki2c: Add PM implementation (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quicki2c: Complete THC QuickI2C driver (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quicki2c: Add HIDI2C protocol implementation (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quicki2c: Add THC QuickI2C ACPI interfaces (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quicki2c: Add THC QuickI2C driver hid layer (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quicki2c: Add THC QuickI2C driver skeleton (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quickspi: Add PM implementation (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quickspi: Complete THC QuickSPI driver (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quickspi: Add HIDSPI protocol implementation (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quickspi: Add THC QuickSPI ACPI interfaces (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quickspi: Add THC QuickSPI driver hid layer (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-quickspi: Add THC QuickSPI driver skeleton (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-thc: Add THC I2C config interfaces (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-thc: Add THC SPI config interfaces (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-thc: Add THC interrupt handler (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-thc: Add THC LTR interfaces (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-thc: Add THC DMA interfaces (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-thc: Add APIs for interrupt (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-thc: Add THC PIO operation APIs (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: intel-thc: Add THC registers definition (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc: fix CONFIG_HID dependency (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: fix build errors in um mode (Benjamin Tissoires) [RHEL-101770 RHEL-65753] - HID: intel-thc-hid: Add basic THC driver skeleton (Benjamin Tissoires) [RHEL-101770] - HID: THC: Add documentation (Benjamin Tissoires) [RHEL-101770] - HID: hid-steam: Fix use-after-free when detaching device (Benjamin Tissoires) [RHEL-101770] {CVE-2025-21923} - HID: debug: Fix spelling mistake "Messanger" -> "Messenger" (Benjamin Tissoires) [RHEL-101770] - HID: appleir: Fix potential NULL dereference at raw event handle (Benjamin Tissoires) [RHEL-101770] {CVE-2025-21948} - HID: apple: disable Fn key handling on the Omoton KB066 (Benjamin Tissoires) [RHEL-101770] - HID: i2c-hid: improve i2c_hid_get_report error message (Benjamin Tissoires) [RHEL-101770] - HID: google: fix unused variable warning under !CONFIG_ACPI (Benjamin Tissoires) [RHEL-101770] - HID: nintendo: fix gencon button events map (Benjamin Tissoires) [RHEL-101770] - HID: corsair-void: Update power supply values with a unified work handler (Benjamin Tissoires) [RHEL-101770] {CVE-2025-21952} - HID: hid-steam: Don't use cancel_delayed_work_sync in IRQ context (Benjamin Tissoires) [RHEL-101770] - HID: hid-steam: Move hidraw input (un)registering to work (Benjamin Tissoires) [RHEL-101770] - HID: hid-thrustmaster: fix stack-out-of-bounds read in usb_check_int_endpoints() (Benjamin Tissoires) [RHEL-101770] {CVE-2025-21794} - HID: apple: fix up the F6 key on the Omoton KB066 keyboard (Benjamin Tissoires) [RHEL-101770] - HID: hid-apple: Apple Magic Keyboard a3203 USB-C support (Benjamin Tissoires) [RHEL-101770] - samples/hid: fix broken vmlinux path for VMLINUX_BTF (Benjamin Tissoires) [RHEL-101770] - samples/hid: remove unnecessary -I flags from libbpf EXTRA_CFLAGS (Benjamin Tissoires) [RHEL-101770] - HID: topre: Fix n-key rollover on Realforce R3S TKL boards (Benjamin Tissoires) [RHEL-101770] - HID: multitouch: Add NULL check in mt_input_configured (Benjamin Tissoires) [RHEL-101770 RHEL-81512] {CVE-2024-58020} - HID: winwing: Add NULL check in winwing_init_led() (Benjamin Tissoires) [RHEL-101770] {CVE-2024-58021} - HID: hid-steam: Fix issues with disabling both gamepad mode and lizard mode (Benjamin Tissoires) [RHEL-101770] - HID: ignore non-functional sensor in HP 5MP Camera (Benjamin Tissoires) [RHEL-101770] {CVE-2025-21992} - HID: lenovo: select CONFIG_ACPI_PLATFORM_PROFILE (Benjamin Tissoires) [RHEL-101770] - HID: corsair-void: Initialise memory for psy_cfg (Benjamin Tissoires) [RHEL-101770] - HID: corsair-void: Add missing delayed work cancel for headset status (Benjamin Tissoires) [RHEL-101770] {CVE-2025-21797} - HID: hid-asus: Disable OOBE mode on the ProArt P16 (Benjamin Tissoires) [RHEL-101770] - HID: steelseries: remove unnecessary return (Benjamin Tissoires) [RHEL-101770] - HID: steelseries: export model and manufacturer (Benjamin Tissoires) [RHEL-101770] - HID: steelseries: export charging state for the SteelSeries Arctis 9 headset (Benjamin Tissoires) [RHEL-101770] - HID: steelseries: add SteelSeries Arctis 9 support (Benjamin Tissoires) [RHEL-101770] - HID: steelseries: preparation for adding SteelSeries Arctis 9 support (Benjamin Tissoires) [RHEL-101770] - Input: allocate keycode for phone linking (Benjamin Tissoires) [RHEL-101770] - HID: lenovo: Fix undefined platform_profile_cycle in ThinkPad X12 keyboard patch (Benjamin Tissoires) [RHEL-101770] - HID: amd_sfh: Add support to export device operating states (Benjamin Tissoires) [RHEL-101770] - HID: uclogic: make const read-only array touch_ring_model_params_buf static (Benjamin Tissoires) [RHEL-101770] - HID: hid-steam: Make sure rumble work is canceled on removal (Benjamin Tissoires) [RHEL-101770] - HID: Wacom: Add PCI Wacom device support (Benjamin Tissoires) [RHEL-101770] - HID: core: Fix assumption that Resolution Multipliers must be in Logical Collections (Benjamin Tissoires) [RHEL-101770 RHEL-81480] {CVE-2024-57986} - HID: fix generic desktop D-Pad controls (Benjamin Tissoires) [RHEL-101770] - HID: lenovo: Support for ThinkPad-X12-TAB-1/2 Kbd Fn keys (Benjamin Tissoires) [RHEL-101770] - HID: multitouch: Add quirk for Hantick 5288 touchpad (Benjamin Tissoires) [RHEL-101770] - HID: nintendo: add support for md/gen 6B controller (Benjamin Tissoires) [RHEL-101770] - HID: wacom: Status luminance properties should set brightness of all LEDs (Benjamin Tissoires) [RHEL-101770] - HID: wacom: Improve behavior of non-standard LED brightness values (Benjamin Tissoires) [RHEL-101770] - HID: hid-thrustmaster: Fix warning in thrustmaster_probe by adding endpoint check (Benjamin Tissoires) [RHEL-101770] {CVE-2024-57993} - HID: magicmouse: Update device name for Apple Magic Trackpad (Benjamin Tissoires) [RHEL-101770] - HID: hid-sensor-hub: don't use stale platform-data on remove (Benjamin Tissoires) [RHEL-101770] - HID: multitouch: fix support for Goodix PID 0x01e9 (Benjamin Tissoires) [RHEL-101770] - Revert "HID: multitouch: Add support for lenovo Y9000P Touchpad" (Benjamin Tissoires) [RHEL-101770] - HID: roccat: pyro: constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - HID: roccat: lua: constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - HID: roccat: kovaplus: constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - HID: roccat: koneplus: constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - HID: roccat: kone: constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - HID: roccat: isku: constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - HID: roccat: arvo: constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - HID: roccat: common, konepure, ryos, savu: constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - HID: core: constify 'struct bin_attribute' (Benjamin Tissoires) [RHEL-101770] - HID: core: use utility macros to define sysfs attributes (Benjamin Tissoires) [RHEL-101770] - HID: i2c-hid: introduce qtec vendor, enable re-power-on quirk (Benjamin Tissoires) [RHEL-101770] - HID: i2c-hid: introduce re-power-on quirk (Benjamin Tissoires) [RHEL-101770] - selftests/hid: Add host-tools to .gitignore (Benjamin Tissoires) [RHEL-101770] - HID: wacom: Initialize brightness of LED trigger (Benjamin Tissoires) [RHEL-101770] - selftests/hid: fix kfunc inclusions with newer bpftool (Benjamin Tissoires) [RHEL-101770] - HID: bpf: drop unneeded casts discarding const (Benjamin Tissoires) [RHEL-101770] - HID: bpf: constify hid_ops (Benjamin Tissoires) [RHEL-101770] - selftests: hid: fix typo and exit code (Benjamin Tissoires) [RHEL-101770] - HID: wacom: fix when get product name maybe null pointer (Benjamin Tissoires) [RHEL-101770] {CVE-2024-56629} - HID: i2c-hid: Revert to using power commands to wake on resume (Benjamin Tissoires) [RHEL-101770] - Revert "HID: bpf: allow write access to quirks field in struct hid_device" (Benjamin Tissoires) [RHEL-101770] - HID: multitouch: make mt_set_mode() less cryptic (Benjamin Tissoires) [RHEL-101770] - HID: hid-goodix-spi: Add OF supports (Benjamin Tissoires) [RHEL-101770] - HID: magicmouse: Apple Magic Trackpad 2 USB-C driver support (Benjamin Tissoires) [RHEL-101770] - HID: rmi: Add select RMI4_F3A in Kconfig (Benjamin Tissoires) [RHEL-101770] - HID: wacom: Interpret tilt data from Intuos Pro BT as signed values (Benjamin Tissoires) [RHEL-101770] - HID: steelseries: Add capacity_level mapping (Benjamin Tissoires) [RHEL-101770] - HID: steelseries: Fix battery requests stopping after some time (Benjamin Tissoires) [RHEL-101770] - HID: hid-goodix: Fix HID get/set feature operation overwritten problem (Benjamin Tissoires) [RHEL-101770] - HID: hid-goodix: Return 0 when receiving an empty HID feature package (Benjamin Tissoires) [RHEL-101770] - Input: introduce notion of passive observers for input handlers (Benjamin Tissoires) [RHEL-101770] - iio: hid-sensors: Add proximity and attention IDs (Benjamin Tissoires) [RHEL-101770] - HID: bpf: drop use of Logical|Physical|UsageRange (Benjamin Tissoires) [RHEL-101770] - HID: bpf: Fix Rapoo M50 Plus Silent side buttons (Benjamin Tissoires) [RHEL-101770] - HID: bpf: Fix NKRO on Mistel MD770 (Benjamin Tissoires) [RHEL-101770] - HID: replace BUG_ON() with WARN_ON() (Benjamin Tissoires) [RHEL-101770] - HID: wacom: Set eraser status when either 'Eraser' or 'Invert' usage is set (Benjamin Tissoires) [RHEL-101770] - HID: Kysona: add basic online status (Benjamin Tissoires) [RHEL-101770] - HID: Kysona: check battery status every 5s using a workqueue (Benjamin Tissoires) [RHEL-101770] - HID: Kysona: Add basic battery reporting for Kysona M600 (Benjamin Tissoires) [RHEL-101770] - HID: Add IDs for Kysona (Benjamin Tissoires) [RHEL-101770] - HID: debug: Remove duplicates from 'keys' (Benjamin Tissoires) [RHEL-101770] - HID: Remove default case statement in fetch_item() (Benjamin Tissoires) [RHEL-101770] - HID: corsair-void: Add Corsair Void headset family driver (Benjamin Tissoires) [RHEL-101770] - HID: i2c-hid-of: Drop explicit initialization of struct i2c_device_id::driver_data to 0 (Benjamin Tissoires) [RHEL-101770] - HID: logitech-hidpp: Remove feature_type from hidpp_root_get_feature() (Benjamin Tissoires) [RHEL-101770] - selftests/hid: add test for assigning a given device to hid-generic (Benjamin Tissoires) [RHEL-101770] - HID: add per device quirk to force bind to hid-generic (Benjamin Tissoires) [RHEL-101770] - selftests/hid: allow to parametrize bus/vid/pid/rdesc on the test device (Benjamin Tissoires) [RHEL-101770] - selftests/hid: cleanup C tests by adding a common struct uhid_device (Benjamin Tissoires) [RHEL-101770] - selftests/hid: add dependency on hid_common.h (Benjamin Tissoires) [RHEL-101770] - HID: bpf: allow write access to quirks field in struct hid_device (Benjamin Tissoires) [RHEL-101770] - HID: core: remove one more kmemdup on .probe() (Benjamin Tissoires) [RHEL-101770] - HID: core: save one kmemdup during .probe() (Benjamin Tissoires) [RHEL-101770] - HID: bpf: move HID-BPF report descriptor fixup earlier (Benjamin Tissoires) [RHEL-101770] - HID: stop exporting hid_snto32() (Benjamin Tissoires) [RHEL-101770] - HID: simplify snto32() (Benjamin Tissoires) [RHEL-101770] - HID: simplify code in fetch_item() (Benjamin Tissoires) [RHEL-101770] - benet: fix BUG when creating VFs (Michal Schmidt) [RHEL-106974] - selftests/sched_ext: Fix exit selftest hang on UP (Phil Auld) [RHEL-95973] - ksm_tests: skip hugepage test when Transparent Hugepages are disabled (Li Wang) [RHEL-96270] - selftests/mm: fix UFFDIO_API usage with proper two-step feature negotiation (Li Wang) [RHEL-99146] - smb: client: fix session setup against servers that require SPN (Paulo Alcantara) [RHEL-107111] - smb: client: allow parsing zero-length AV pairs (Paulo Alcantara) [RHEL-107111] - i2c: mlxbf: avoid 64-bit division (Steve Dunnagan) [RHEL-103884] - i2c-mlxbf: Improve I2C bus timing configuration (Steve Dunnagan) [RHEL-103884] - i2c-mlxbf: Add repeated start condition support (Steve Dunnagan) [RHEL-103884] - i2c: mlxbf: Use str_read_write() helper (Steve Dunnagan) [RHEL-103884] - i2c: mlxbf: Use readl_poll_timeout_atomic() for polling (Steve Dunnagan) [RHEL-103884] - drm/vmwgfx: Fix guests running with TDX/SEV (Jocelyn Falempe) [RHEL-101642] - crypto: s390/paes - Fix memory leak on CTR final block (Herbert Xu) [RHEL-106158] - net: atlantic: generate software timestamp just before the doorbell (Izabela Bakollari) [RHEL-105363] - net: atlantic: Avoid -Wflex-array-member-not-at-end warnings (Izabela Bakollari) [RHEL-105363] - net: atlantic: fix warning during hot unplug (Izabela Bakollari) [RHEL-105363] - net: atlantic: support reading SFP module info (Izabela Bakollari) [RHEL-105363] - hv_netvsc: Set VF priv_flags to IFF_NO_ADDRCONF before open to prevent IPv6 addrconf (Li Tian) [RHEL-89855] - ACPI: button: Only send `KEY_POWER` for `ACPI_BUTTON_NOTIFY_STATUS` (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Avoid initializing on non-ACPI platforms (Mark Langsdorf) [RHEL-89362] - platform/x86: thinkpad_acpi: Fix registration of tpacpi platform driver (Mark Langsdorf) [RHEL-89362] - platform/x86: ideapad-laptop: pass a correct pointer to the driver data (Mark Langsdorf) [RHEL-89362] - platform/x86/amd: pmf: Fix missing hidden options for Smart PC (Mark Langsdorf) [RHEL-89362] - platform/x86/amd: pmf: Add balanced-performance to hidden choices (Mark Langsdorf) [RHEL-89362] - platform/x86/amd: pmf: Add 'quiet' to hidden choices (Mark Langsdorf) [RHEL-89362] - platform/x86: acer-wmi: Fix initialization of last_non_turbo_profile (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Fix memory leak in profile_class_is_visible() (Mark Langsdorf) [RHEL-89362] - ACPI: platform-profile: Fix CFI violation when accessing sysfs files (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add a prefix to log messages (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Clean platform_profile_handler (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add support for hidden choices (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Move platform_profile_handler (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Remove platform_profile_handler from exported symbols (Mark Langsdorf) [RHEL-89362] - platform/surface: surface_platform_profile: Use devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - platform/x86: asus-wmi: Use devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - platform/x86: ideapad-laptop: Use devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - platform/x86: dell-pc: Use devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - platform/x86: amd: pmf: sps: Use devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - platform/x86: acer-wmi: Use devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - platform/x86: inspur_platform_profile: Use devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - platform/x86: hp-wmi: Use devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - platform/x86: thinkpad_acpi: Use devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add `probe` to platform_profile_ops (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add `ops` member to handlers (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Remove platform_profile_handler from callbacks (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Let drivers set drvdata to the class device (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Replace *class_dev member with class_dev (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add devm_platform_profile_register() (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Allow multiple handlers (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Notify class device from platform_profile_notify() (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Check all profile handler to calculate next (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Make sure all profile handlers agree on profile (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add concept of a "custom" profile (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Only show profiles common for all handlers (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Notify change events on register and unregister (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add profile attribute for class interface (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add choices attribute for class interface (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add name attribute to class interface (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Create class for ACPI platform profile (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Use `scoped_cond_guard` (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Use guard(mutex) for register/unregister (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Move matching string for new profile out of mutex (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Move sanity check out of the mutex (Mark Langsdorf) [RHEL-89362] - platform/x86: acer-wmi: use an ACPI bitmap to set the platform profile choices (Mark Langsdorf) [RHEL-89362] - platform/x86: acer-wmi: simplify platform profile cycling (Mark Langsdorf) [RHEL-89362] - platform/x86: acer-wmi: use new helper function for setting overclocks (Mark Langsdorf) [RHEL-89362] - platform/x86: acer-wmi: use WMI calls for platform profile handling (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Pass the profile handler into platform_profile_notify() (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add platform handler argument to platform_profile_remove() (Mark Langsdorf) [RHEL-89362] - ACPI: platform_profile: Add device pointer into platform profile handler (Mark Langsdorf) [RHEL-89362] - platform/x86/dell: dell-pc: Create platform device (Mark Langsdorf) [RHEL-89362] - ACPI: platform-profile: Add a name member to handlers (Mark Langsdorf) [RHEL-89362] - platform/x86: asus-wmi: Use platform_profile_cycle() (Mark Langsdorf) [RHEL-89362] - platform/x86: asus-wmi: Fix inconsistent use of thermal policies (Mark Langsdorf) [RHEL-89362] - platform/x86: acer-wmi: Implement proper hwmon support (Mark Langsdorf) [RHEL-89362] - platform/x86: acer-wmi: Improve error handling when reading gaming system information (Mark Langsdorf) [RHEL-89362] - platform/x86: acer-wmi: Rename ACER_CAP_FAN_SPEED_READ (Mark Langsdorf) [RHEL-89362] - x86/acpi: Replace manual page table initialization with kernel_ident_mapping_init() (Mark Langsdorf) [RHEL-89362] - ACPI: button: Install notifier for system events as well (Mark Langsdorf) [RHEL-89362] - x86/smp: Fix mwait_play_dead() and acpi_processor_ffh_play_dead() noreturn behavior (Mark Langsdorf) [RHEL-89362] - acpi: nfit: fix narrowing conversion in acpi_nfit_ctl (Mark Langsdorf) [RHEL-89362] - hwmon: (acpi_power_meter) Replace the deprecated hwmon_device_register (Mark Langsdorf) [RHEL-89362] - hwmon: (acpi_power_meter) Fix the fake power alarm reporting (Mark Langsdorf) [RHEL-89362] - acpi: numa: Add support to enumerate and store extended linear address mode (Mark Langsdorf) [RHEL-89362] - ACPI: fan: Add fan speed reporting for fans with only _FST (Mark Langsdorf) [RHEL-89362] - ACPI/processor_idle: Export acpi_processor_ffh_play_dead() (Mark Langsdorf) [RHEL-89362] - ACPI: HED: Always initialize before evged (Mark Langsdorf) [RHEL-89362] - x86/ACPI: CPPC: Add missing include (Mark Langsdorf) [RHEL-89362] - ACPI: video: Use str_yes_no() helper in acpi_video_bus_add() (Mark Langsdorf) [RHEL-89362] - ACPI: power: Use str_on_off() helper function (Mark Langsdorf) [RHEL-89362] - ACPI: thermal: Fix stale comment regarding trip points (Mark Langsdorf) [RHEL-89362] - ACPI/processor_idle: Add FFH state handling (Mark Langsdorf) [RHEL-89362] - x86/smp: Allow calling mwait_play_dead with an arbitrary hint (Mark Langsdorf) [RHEL-89362] - ACPI: GTDT: Relax sanity checking on Platform Timers array count (Mark Langsdorf) [RHEL-82670] - ACPI: PRM: Remove unnecessary strict handler address checks (Mark Langsdorf) [RHEL-82670] - ACPI: resource: IRQ override for Eluktronics MECH-17 (Mark Langsdorf) [RHEL-82670] - ACPI: property: Fix return value for nval == 0 in acpi_data_prop_read() (Mark Langsdorf) [RHEL-82670] - ACPI: x86: Add skip i2c clients quirk for Vexia EDU ATLA 10 tablet 5V (Mark Langsdorf) [RHEL-82670] - hwmon: (acpi_power_meter) Fix a check for the return value of read_domain_devices(). (Mark Langsdorf) [RHEL-82670] - APEI: GHES: Have GHES honor the panic= setting (Mark Langsdorf) [RHEL-82670] - mm/early_ioremap: add null pointer checks to prevent NULL-pointer dereference (Mark Langsdorf) [RHEL-82670] - hwmon: (acpi_power_meter) Fix update the power trip points on failure (Mark Langsdorf) [RHEL-82670] - hwmon: (acpi_power_meter) Fix uninitialized variables (Mark Langsdorf) [RHEL-82670] - ACPI: resource: acpi_dev_irq_override(): Check DMI match last (Mark Langsdorf) [RHEL-82670] - ACPI: resource: Add TongFang GM5HG0A to irq1_edge_low_force_override[] (Mark Langsdorf) [RHEL-82670] - ACPI: resource: Add Asus Vivobook X1504VAP to irq1_level_low_skip_override[] (Mark Langsdorf) [RHEL-82670] - ACPI: tables: Use string choice helpers (Mark Langsdorf) [RHEL-82670] - ACPI: property: Consider data nodes as being available (Mark Langsdorf) [RHEL-82670] - ACPI: bus: implement acpi_device_hid when !ACPI (Mark Langsdorf) [RHEL-82670] - ACPI: bus: implement for_each_acpi_consumer_dev when !ACPI (Mark Langsdorf) [RHEL-82670] - ACPI: header: implement acpi_device_handle when !ACPI (Mark Langsdorf) [RHEL-82670] - ACPI: bus: implement acpi_get_physical_device_location when !ACPI (Mark Langsdorf) [RHEL-82670] - ACPI: bus: implement for_each_acpi_dev_match when !ACPI (Mark Langsdorf) [RHEL-82670] - x86/cpu: Move MWAIT leaf definition to common header (Mark Langsdorf) [RHEL-82670] - ACPICA: events/evxfregn: don't release the ContextMutex that was never acquired (Mark Langsdorf) [RHEL-82670] - ACPI: battery: Rename extensions to hook in messages (Mark Langsdorf) [RHEL-82670] - ACPI: OSL: Use usleep_range() in acpi_os_sleep() (Mark Langsdorf) [RHEL-82670] - ACPI: BGRT: Mark bin_attribute as __ro_after_init (Mark Langsdorf) [RHEL-82670] - ACPI: resource: Fix memory resource type union access (Mark Langsdorf) [RHEL-82670] - ACPI/IORT: Add PMCG platform information for HiSilicon HIP09A (Mark Langsdorf) [RHEL-82670] - ACPI: introduce acpi_arch_init() (Mark Langsdorf) [RHEL-82670] - ACPI: x86: Clean up Asus entries in acpi_quirk_skip_dmi_ids[] (Mark Langsdorf) [RHEL-82670] - ACPI: x86: Add skip i2c clients quirk for Acer Iconia One 8 A1-840 (Mark Langsdorf) [RHEL-82670] - ACPI: video: force native for Apple MacbookPro11,2 and Air7,2 (Mark Langsdorf) [RHEL-82670] - ACPI: CPPC: Fix _CPC register setting issue (Mark Langsdorf) [RHEL-82670] - hwmon: (acpi_power_meter) Fix fail to load module on platform without _PMD method (Mark Langsdorf) [RHEL-82670] - ACPI: Switch back to struct platform_driver::remove() (Mark Langsdorf) [RHEL-82670] - ACPI: x86: Add adev NULL check to acpi_quirk_skip_serdev_enumeration() (Mark Langsdorf) [RHEL-82670] - ACPI: x86: Make UART skip quirks work on PCI UARTs without an UID (Mark Langsdorf) [RHEL-82670] - acpi/arm64: remove unnecessary cast (Mark Langsdorf) [RHEL-82670] - acpi/arm64: Adjust error handling procedure in gtdt_parse_timer_block() (Mark Langsdorf) [RHEL-82670] - ACPI: allow building without CONFIG_HAS_IOPORT (Mark Langsdorf) [RHEL-82670] - ACPI: processor_perflib: extend X86 dependency (Mark Langsdorf) [RHEL-82670] - ACPI: scan: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: SBSHC: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: SBS: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: power: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: pci_root: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: pci_link: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: event: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: EC: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: APD: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: thermal: Use strscpy() instead of strcpy() (Mark Langsdorf) [RHEL-82670] - ACPI: battery: Check for error code from devm_mutex_init() call (Mark Langsdorf) [RHEL-82670] - ACPI: GTDT: Tighten the check for the array of platform timer structures (Mark Langsdorf) [RHEL-82670] - ACPI: EC: make EC support compile-time conditional (Mark Langsdorf) [RHEL-82670] - redhat/configs: enable CONFIG_ACPI_EC (Mark Langsdorf) [RHEL-82670] - ACPI: pfr_telemetry: remove redundant error check on ret (Mark Langsdorf) [RHEL-82670] - genirq: Unexport nr_irqs (Mark Langsdorf) [RHEL-82670] - genirq: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - fs/procfs: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - xen/events: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - serial: ucc_uart: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - serial: cpm_uart: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - serial: amba-pl011: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - serial: amba-pl010: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - serial: 8250: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - serial: core: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - scsi: aha152x: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - net: 3com: 3c59x: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - hpet: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - powerpc/cell: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - x86/acpi: Switch to irq_get_nr_irqs() and irq_set_nr_irqs() (Mark Langsdorf) [RHEL-82670] - s390/irq: Switch to irq_get_nr_irqs() (Mark Langsdorf) [RHEL-82670] - genirq: Introduce irq_get_nr_irqs() and irq_set_nr_irqs() (Mark Langsdorf) [RHEL-82670] - ACPI: battery: Register power supply with power_supply_register() (Mark Langsdorf) [RHEL-82670] - ACPI: battery: use DEFINE_SIMPLE_DEV_PM_OPS (Mark Langsdorf) [RHEL-82670] - ACPI: battery: initialize mutexes through devm_ APIs (Mark Langsdorf) [RHEL-82670] - ACPI: battery: allocate driver data through devm_ APIs (Mark Langsdorf) [RHEL-82670] - ACPI: battery: check result of register_pm_notifier() (Mark Langsdorf) [RHEL-82670] - power: supply: core: add wakeup source inhibit by power_supply_config (Mark Langsdorf) [RHEL-82670] - net/mlx5: Reset bw_share field when changing a node's parent (Benjamin Poirier) [RHEL-72227 RHEL-73520] - IB/mlx5: Fix potential deadlock in MR deregistration (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Fix unsafe xarray access in implicit ODP handling (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: reduce stack usage in mlx5_ib_ufile_hw_cleanup (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Fix number of lanes to UNKNOWN when using data_rate_oper (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Reuse per-RQ XDP buffer to avoid stack zeroing overhead (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-94894] - net/mlx5e: Disable MACsec offload for uplink representor profile (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: E-switch, Fix error handling for enabling roce (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Fix lock order in mlx5e_tx_reporter_ptpsq_unhealthy_recover (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: TC, Continue the attr process even if encap entry is invalid (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: E-Switch, Initialize MAC Address for Default GID (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Use custom tunnel header for vxlan gbp (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Move ttc allocation after switch case to prevent leaks (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Fix null-ptr-deref in mlx5_create_{inner_,}ttc_table() (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-37888} - RDMA/mlx5: Fix compilation warning when USER_ACCESS isn't set (Benjamin Poirier) [RHEL-72227 RHEL-73520] - treewide: Switch/rename to timer_delete[_sync]() (mlx5) (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: SHAMPO, Make reserved size independent of page size (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Fix calculation of total invalidated pages (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Fix mlx5_poll_one() cur_qp update flow (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-22086} - RDMA/mlx5: Fix page_size variable overflow (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-99327] {CVE-2025-22091} - RDMA/mlx5: Drop access_flags from _mlx5_mr_cache_alloc() (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Fix cache entry update on dereg error (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Fix MR cache initialization error flow (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Support optional-counters binding for QPs (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Compile fs.c regardless of INFINIBAND_USER_ACCESS config (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Add optional counters for RDMA_TX/RX_packets/bytes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Expose RDMA TRANSPORT flow table types to userspace (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Check enabled UCAPs when creating ucontext (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Create UCAP char devices for supported device capabilities (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Reorder capability check last (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Start health poll after enable hca (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: LAG, reload representors on LAG creation failure (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Fix ethtool -N flow-type ip4 to RSS context (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: TC, Don't offload CT commit if it's the last action (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: CT: Filter legacy rules that are unrelated to nic (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Update pfnum retrieval for devlink port attributes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fw reset, check bridge accessibility at earlier stage (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Lag, use port selection tables when available (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: TX, Utilize WQ fragments edge for multi-packet WQEs (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Always select CONFIG_PAGE_POOL_STATS (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Use right API to free bitmap memory (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Remove NULL check before dev_{put, hold} (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Expose port reset cycle recovery counter via ethtool (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Get counter group size by FW capability (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Access PHY layer counter group as other counter groups (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Ensure each counter group uses its PCAM bit (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, log the unsupported mask in definer (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, use list_move() instead of del/add (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, remove unused code for alias flow tables (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add support for setting parent of nodes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Preserve rate settings when creating a rate node (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Introduce hierarchy level tracking on scheduling nodes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Rename devlink rate parent set function for leaf nodes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add support for dest flow sampler HWS action (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add support for flow meters HWS action (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add API for sharing HWS action by refcount (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add IFC bits for PPCNT recovery counters group (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add RDMA TRANSPORT steering domain support (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Query ADV_RDMA capabilities (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Limit non-privileged commands (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Allow the throttle mechanism to be more dynamic (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add RDMA_CTRL HW capabilities (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Avoid unnecessary use of comma operator (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Properly match IPsec subnet addresses (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Separate address related variables to be in struct (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Lag, Enable Multiport E-Switch offloads on 8 ports LAG (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Enable lanes configuration when auto-negotiation is off (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Refactor link speed handling with mlx5_link_info struct (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Relocate function declarations from port.h to mlx5_core.h (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add trust lockdown error to health syndrome print function (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Expose crr in health buffer (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Log health buffer data on any syndrome (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Avoid report two health errors on same syndrome (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Remove newline at the end of a netlink error message (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Avoid a hundred -Wflex-array-member-not-at-end warnings (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Change POOL_NEXT_SIZE define value and make it global (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add new health syndrome error and crr bit offset (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Symmetric OR-XOR RSS hash control (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Use secs_to_jiffies() instead of msecs_to_jiffies() (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Support RX xfrm state selector's UPSPEC for packet offload (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Add pass flow group for IPSec RX status table (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Add num_reserved_entries param for ipsec_ft_create() (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Skip IPSec RX policy check for crypto offload (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Move IPSec policy check after decryption (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Add correct match to check IPSec syndromes for switchdev mode (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Change the destination of IPSec RX SA miss rule (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Add helper function to update IPSec default destination (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Separate extended link modes request from link modes type selection (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Change eth_proto parameter naming (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Introduce ptys2ethtool_process_link() (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Refactor ptys2ethtool_adver_link() (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Bridge, correct config option description (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add sensor name to temperature event message (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Modify LSB bitmask in temperature event to include only the first bit (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Prefix temperature event bitmap with '0x' for clarity (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Apply rate-limiting to high temperature warning (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: XDP, Enable TX side XDP multi-buffer support (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Expose RSS via devlink rx reporter diagnose (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Add direct TIRs to devlink rx reporter diagnose (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Move RQs diagnose to a dedicated function (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Expose ICM consumption per function (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Rename and move mlx5_esw_query_vport_vhca_id (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: set the tx_queue_len for pfifo_fast (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: reduce rep rxq depth to 256 for ECPF (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: reduce the max log mpwrq sz for ECPF and reps (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Avoid WARN_ON when configuring MQPRIO with HTB offload enabled (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Remove unused mlx5e_tc_flow_action struct (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Remove stray semicolon in LAG port selection table creation (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Support FEC settings for 200G per lane link modes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add support for 200Gbps per lane link modes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Generate PPS IN event on new function for shared clock (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-83170] - net/mlx5: Support one PTP device per hardware clock (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-83170] - net/mlx5: Move PPS notifier and out_work to clock_state (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-83170] - net/mlx5: Add devcom component for the clock shared by functions (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-83170] - net/mlx5: Change clock in mlx5_core_dev to mlx5_clock pointer (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-83170] - net/mlx5: Add API to get mlx5_core_dev from mlx5_clock (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-83170] - net/mlx5: Add init and destruction functions for a single HW clock (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-83170] - net/mlx5: Change parameters for PTP internal functions (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-83170] - net/mlx5: Add helper functions for PTP callbacks (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-83170] - net/mlx5: Remove unused mlx5dr_domain_sync (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Handle errors returned from mlx5r_ib_rate() (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Prevent bridge link show failure for non-eswitch-allowed devices (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Bridge, fix the crash caused by LAG state check (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21970} - net/mlx5: Lag, Check shared fdb before creating MultiPort E-Switch (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Fix incorrect IRQ pool usage when releasing IRQs (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, Rightsize bwc matcher priority (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: DR, use the right action structs for STEv3 (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: handle errors in mlx5_chains_create_table() (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21975} - net/mlx5: Fill out devlink dev info only for PFs (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-93771] - net/mlx5: IRQ, Fix null string in debug print (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Restore missing trace event when enabling vport QoS (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Fix vport QoS cleanup on error (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21882} - RDMA/mlx5: Fix bind QP error cleanup flow (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Fix AH static rate parsing (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Fix implicit ODP hang on parent deregistration (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21886} - RDMA/mlx5: Fix a race for DMABUF MR which can lead to CQE with error (Benjamin Poirier) [RHEL-72227 RHEL-73520] - IB/mlx5: Set and get correct qp_num for a DCT QP (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Fix the recovery flow of the UMR QP (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21892} - net/mlx5e: add missing cpu_to_node to kvzalloc_node in mlx5e_open_xdpredirect_sq (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21717} - RDMA/mlx5: Fix implicit ODP use after free (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21714} - RDMA/mlx5: Fix a race for an ODP MR which leads to CQE with error (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-81281] {CVE-2025-21732} - RDMA/mlx5: Fix indirect mkey ODP page count (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Fix link status down event for MPV (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Handle link status event only for LAG device (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Extend ODP statistics with operation count (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fix unintentional sign extension on shift of dest_attr->vport.vhca_id (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: CT: Offload connections with hardware steering rules (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: CT: Make mlx5_ct_fs_smfs_ct_validate_flow_rule reusable (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: CT: Add initial support for Hardware Steering (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, rework the check if matcher size can be increased (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add nic_cap_reg and vhca_icm_ctrl registers (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: SHAMPO: Introduce new SHAMPO specific HCA caps (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add support for MRTCQ register (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Update mlx5_ifc to support FEC for 200G per lane link modes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, update flow - support through bigger action RTC (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, update flow - remove the use of dual RTCs (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add HWS to steering mode options (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add HWS get capabilities (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, set create match definer to not supported by HWS (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add support for dest vport HWS action (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add HWS fte API functions (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add dest table cache (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, manage flow counters HWS action sharing by refcount (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add HWS modify header API function (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add HWS packet reformat API function (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add HWS actions pool (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add HWS flow group API functions (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add HWS flow table API functions (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add HWS root namespace functions (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Update TX ESN context for IPSec hardware offload (Benjamin Poirier) [RHEL-72227 RHEL-73520 RHEL-85331] - net/mlx5: use do_aux_work for PHC overflow checks (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, set timeout on polling for completion (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, support flow sampler destination (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, use the right size when writing arg data (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, handle returned error value in pool alloc (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, fix definer's HWS_SET32 macro for negative offset (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21800} - net/mlx5: HWS, separate SQ that HWS uses from the usual traffic SQs (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, num_of_rules counter on matcher should be atomic (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, reduce memory consumption of a matcher struct (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, remove wrong deletion of the miss table list (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, change error flow on matcher disconnect (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21751} - net/mlx5: HWS, add error message on failure to move rules (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, simplify allocations as we support only FDB (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, denote how refcounts are protected (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, remove implementation of unused FW commands (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, remove the use of duplicated structs (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, Add support for RDMA RX steering over IB link layer (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Remove PTM support log message (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: DR, add support for ConnectX-8 steering (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: DR, expand SWS STE callbacks and consolidate common structs (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, do not initialize native API queues (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, no need to expose mlx5hws_send_queues_open/close (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, retry insertion to hash table on EBUSY (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add mlx5_fs_pool API (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, add counter object to flow destination (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: LAG, Support LAG over Multi-Host NICs (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: LAG, Refactor lag logic (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Report rx_discards_phy via rx_dropped (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add device cap abs_native_port_num (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Add ifc support for cross-esw scheduling (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add support for new scheduling elements (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add ConnectX-8 device to ifc (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: ifc: Reorganize mlx5_ifc_flow_table_context_bits (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Always start IPsec sequence number from 1 (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Rely on reqid in IPsec tunnel mode (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Fix inversion dependency warning while enabling IPsec tunnel (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21674} - net/mlx5: Clear port select structure when fail to create (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21675} - net/mlx5: SF, Fix add port error handling (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Fix a lockdep warning as part of the write combining test (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Fix RDMA TX steering prio (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Fix variable not being completed when function returns (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2025-21662} - net/mlx5e: Keep netdev when leave switchdev for devlink set legacy only (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Skip restore TC rules for vport rep without loaded flag (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2024-57801} - net/mlx5e: macsec: Maintain TX SA from encoding_sa (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: DR, select MSIX vector 0 for completion queue creation (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Enable multiplane mode only when it is supported (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Enforce same type port association for multiport RoCE (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: DR, prevent potential error pointer dereference (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2024-56660} - net/mlx5e: Remove workaround to avoid syndrome for internal port (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: SD, Use correct mdev to build channel param (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: E-Switch, Fix switching to switchdev mode in MPV (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: E-Switch, Fix switching to switchdev mode with IB device disabled (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS: Properly set bwc queue locks lock classes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS: Fix memory leak in mlx5hws_definer_calc_layout (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Move events notifier registration to be after device registration (Benjamin Poirier) [RHEL-72227 RHEL-73520] {CVE-2024-53224} - RDMA/mlx5: Add implementation for ufile_hw_cleanup device operation (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Ensure active slave attachment to the bond IB device (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Call dev_put() after the blocking notifier (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Support querying per-plane IB PortCounters (Benjamin Poirier) [RHEL-72227 RHEL-73520] - RDMA/mlx5: Support OOO RX WQE consumption (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Introduce data placement ordering bits (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: SHAMPO, Rework header allocation loop (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: SHAMPO, Drop info array (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: SHAMPO, Change frag page setup order during allocation (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: SHAMPO, Fix page_index calculation inconsistency (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: SHAMPO, Simplify UMR allocation for headers (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Make vport QoS enablement more flexible for future extensions (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Integrate esw_qos_vport_enable logic into rate operations (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Generalize scheduling element operations (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Refactor scheduling element configuration bitmasks (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Generalize max_rate and min_rate setting for nodes (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Simplify QoS normalization by removing error handling (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: E-switch, refactor eswitch mode change (Benjamin Poirier) [RHEL-72227 RHEL-73520] - mlx5/core: deduplicate {mlx5_,}eq_update_ci() (Benjamin Poirier) [RHEL-72227 RHEL-73520] - mlx5/core: relax memory barrier in eq_update_ci() (Benjamin Poirier) [RHEL-72227 RHEL-73520] - mlx5/core: Schedule EQ comp tasklet only if necessary (Benjamin Poirier) [RHEL-72227 RHEL-73520] - mlx5_en: use read sequence for gettimex64 (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: do not create xdp_redirect for non-uplink rep (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: move XDP_REDIRECT sq to dynamic allocation (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: HWS, renamed the files in accordance with naming convention (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: DR, moved all the SWS code into a separate directory (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Rework esw qos domain init and cleanup (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: DPLL, Add clock quality level op implementation (Benjamin Poirier) [RHEL-72227 RHEL-73520] - mlx5: simplify EQ interrupt polling logic (Benjamin Poirier) [RHEL-72227 RHEL-73520] - mlx5: fix typo in "mlx5_cqwq_get_cqe_enahnced_comp" (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Update features on ring size change (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5e: Update features on MTU change (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: unique names for per device caches (Benjamin Poirier) [RHEL-68478 RHEL-72227 RHEL-73520 RHEL-79734 RHEL-92435] - net/mlx5: fs, rename modify header struct member action (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: fs, rename packet reformat struct member action (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Only create VEPA flow table when in VEPA mode (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add sync reset drop mode support (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Generalize QoS operations for nodes and vports (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Simplify QoS scheduling element configuration (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Remove vport QoS enabled flag (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Refactor vport QoS to use scheduling node structure (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Refactor vport scheduling element creation function (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Introduce node struct and rename group terminology to node (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Rename vport QoS group reference to parent (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Restrict domain list insertion to root TSAR ancestors (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add parent group support in rate group structure (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Introduce node type to rate group structure (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Refactor QoS group scheduling element creation (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Add support check for TSAR types in QoS scheduling (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: Unify QoS element type checks across NIC and E-Switch (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Refactor locking to a qos domain mutex (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Store rate groups in a qos domain (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Rename rate group 'list' as 'parent_entry' (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Add an explicit 'dev' to vport trace calls (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Store the eswitch in a mlx5_esw_rate_group (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Drop 'esw' param from vport qos functions (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Always create group0 (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Maintain rate group vport members in a list (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Refactor and document bw_share calculation (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Consistently name vport vars as 'vport' (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Rename vport 'tsar' into 'sched_elem'. (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: qos: Flesh out element_attributes in mlx5_ifc.h (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: hw counters: Remove mlx5_fc_create_ex (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: hw counters: Don't maintain a counter count (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: hw counters: Drop unneeded cacheline alignment (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: hw counters: Replace IDR+lists with xarray (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: hw counters: Use kvmalloc for bulk query buffer (Benjamin Poirier) [RHEL-72227 RHEL-73520] - net/mlx5: hw counters: Make fc_stats & fc_pool private (Benjamin Poirier) [RHEL-72227 RHEL-73520] - Revert "drm/gem-dma: Use dma_buf from GEM object instance" (José Expósito) [RHEL-106712] - Revert "drm/gem-shmem: Use dma_buf from GEM object instance" (José Expósito) [RHEL-106712] - Revert "drm/gem-framebuffer: Use dma_buf from GEM object instance" (José Expósito) [RHEL-106712] - Revert "drm/prime: Use dma_buf from GEM object instance" (José Expósito) [RHEL-106712] - drm/framebuffer: Acquire internal references on GEM handles (José Expósito) [RHEL-106712] - drm/gem: Acquire references on GEM handles for framebuffers (CKI Backport Bot) [RHEL-106712] {CVE-2025-38449} - platform/x86/intel/pmc: Fix Arrow Lake U/H NPU PCI ID (Steve Best) [RHEL-23893] - net/sched: Abort __tc_modify_qdisc if parent class does not exist (CKI Backport Bot) [RHEL-107700] - PCI/MSI: Handle lack of irqdomain gracefully (Frank Liang) [RHEL-107953] - arch: x86: add IPC mailbox accessor function and add SoC register access (CKI Backport Bot) [RHEL-105090] - i40e: When removing VF MAC filters, only check PF-set MAC (Jamie Bainbridge) [RHEL-104947] - ext4: fix out-of-bound read in ext4_xattr_inode_dec_ref_all() (CKI Backport Bot) [RHEL-93568] {CVE-2025-22121} - ext4: introduce ITAIL helper (CKI Backport Bot) [RHEL-93568] {CVE-2025-22121} - ext4: avoid journaling sb update on error if journal is destroying (CKI Backport Bot) [RHEL-93605] {CVE-2025-22113} - ext4: define ext4_journal_destroy wrapper (CKI Backport Bot) [RHEL-93605] {CVE-2025-22113} - ALSA: enable AMD legacy SoundWire mach (Jaroslav Kysela) [RHEL-101626] - ALSA: revert aarch64 kunit test workaround (Jaroslav Kysela) [RHEL-101626] - ASoC: SDCA: Allow read-only controls to be deferrable (Jaroslav Kysela) [RHEL-101626] - ASoC: soc-dai: tidyup return value of snd_soc_xlate_tdm_slot_mask() (Jaroslav Kysela) [RHEL-101626] - ASoC: SDCA: Fixup some kernel doc errors (Jaroslav Kysela) [RHEL-101626] - ASoC: SDCA: Add missing default in switch in entity_pde_event() (Jaroslav Kysela) [RHEL-101626] - ASoC: ops: dynamically allocate struct snd_ctl_elem_value (Jaroslav Kysela) [RHEL-101626] - ASoC: amd: acp: Fix pointer assignments for snd_soc_acpi_mach structures (Jaroslav Kysela) [RHEL-101626] - ASoC: SDCA: Update memory allocations to zero initialise (Jaroslav Kysela) [RHEL-101626] - ASoC: mediatek: common: fix device and OF node leak (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: Fix mute LED mask on HP OMEN 16 laptop (Jaroslav Kysela) [RHEL-101626] - sof-client-ipc-flood-test: don't mess with ->d_name (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: Add support for ASUS NUC using CS35L41 HDA (Jaroslav Kysela) [RHEL-101626] - ALSA: compress_offload: tighten ioctl command number checks (Jaroslav Kysela) [RHEL-101626] - soundwire: Revert "soundwire: qcom: Add set_channel_map api support" (Jaroslav Kysela) [RHEL-101626] {CVE-2025-38486} - ALSA: hda/realtek: Add quirk for ASUS ROG Strix G712LWS (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek - Fix mute LED for HP Victus 16-r0xxx (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: Add quirks for some Clevo laptops (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek - Enable mute LED on HP Pavilion Laptop 15-eg100 (Jaroslav Kysela) [RHEL-101626] - ASoC: amd: yc: add quirk for Acer Nitro ANV15-41 internal mic (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook 6 G1a (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: Add mic-mute LED setup for ASUS UM5606 (Jaroslav Kysela) [RHEL-101626] - ASoC: rt721-sdca: fix boost gain calculation error (Jaroslav Kysela) [RHEL-101626] - ASoC: SOF: Intel: hda: Use devm_kstrdup() to avoid memleak. (Jaroslav Kysela) [RHEL-101626] {CVE-2025-38438} - ASoC: Intel: sof-function-topology-lib: Print out the unsupported dmic count (Jaroslav Kysela) [RHEL-101626] - ASoC: fsl_sai: Force a software reset when starting in consumer mode (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek - Add mute LED support for HP Victus 15-fb2xxx (Jaroslav Kysela) [RHEL-101626] - ALSA: ad1816a: Fix potential NULL pointer deref in snd_card_ad1816a_pnp() (Jaroslav Kysela) [RHEL-101626] {CVE-2025-38454} - ASoC: cs35l56: probe() should fail if the device ID is not recognized (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: soc-acpi: arl: Correct order of cs42l43 matches (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: soc-acpi-intel-arl-match: set get_function_tplg_files ops (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: add sof_sdw_get_tplg_files ops (Jaroslav Kysela) [RHEL-101626] - ASoC: soc-acpi: add get_function_tplg_files ops (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: SND_SOC_INTEL_SOF_BOARD_HELPERS select SND_SOC_ACPI_INTEL_MATCH (Jaroslav Kysela) [RHEL-101626] - ASoC: fsl_asrc: use internal measured ratio for non-ideal ratio mode (Jaroslav Kysela) [RHEL-101626] - ASoC: amd: yc: update quirk data for HP Victus (Jaroslav Kysela) [RHEL-101626] - ASoC: amd: yc: Add quirk for MSI Bravo 17 D7VF internal mic (Jaroslav Kysela) [RHEL-101626] - ALSA: sb: Force to disable DMAs once when DMA mode is changed (Jaroslav Kysela) [RHEL-101626] - ALSA: sb: Don't allow changing the DMA mode during operations (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: Fix built-in mic on ASUS VivoBook X507UAR (Jaroslav Kysela) [RHEL-101626] - ALSA: usb-audio: Fix out-of-bounds read in snd_usb_get_audioformat_uac3() (Jaroslav Kysela) [RHEL-101626] {CVE-2025-38249} - ASoC: amd: yc: Add DMI quirk for Lenovo IdeaPad Slim 5 15 (Jaroslav Kysela) [RHEL-101626] - ASoC: codecs: wcd9335: Fix missing free of regulator supplies (Jaroslav Kysela) [RHEL-101626] {CVE-2025-38259} - ASoC: codec: wcd9335: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-101626] - ALSA: usb-audio: Add a quirk for Lenovo Thinkpad Thunderbolt 3 dock (Jaroslav Kysela) [RHEL-101626] - ALSA: hda: Add new pci id for AMD GPU display HD audio controller (Jaroslav Kysela) [RHEL-101626] - ALSA: hda: Ignore unsol events for cards being shut down (Jaroslav Kysela) [RHEL-101626] - ASoC: rt1320: fix speaker noise when volume bar is 100%% (Jaroslav Kysela) [RHEL-101626] - soundwire: amd: add check for status update registers (Jaroslav Kysela) [RHEL-101626] - soundwire: amd: fix for clearing command status register (Jaroslav Kysela) [RHEL-101626] - ASoC: amd: ps: fix for soundwire failures during hibernation exit sequence (Jaroslav Kysela) [RHEL-101626] - soundwire: amd: cancel pending slave status handling workqueue during remove sequence (Jaroslav Kysela) [RHEL-101626] - soundwire: amd: serialize amd manager resume sequence during pm_prepare (Jaroslav Kysela) [RHEL-101626] - soundwire: amd: fix for handling slave alerts after link is down (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: Add quirk for Asus GU605C (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: Fix built-in mic on ASUS VivoBook X513EA (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek - Add mute LED support for HP Victus 16-s1xxx and HP Victus 15-fa1xxx (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/intel: Add Thinkpad E15 to PM deny list (Jaroslav Kysela) [RHEL-101626] - ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound card (Jaroslav Kysela) [RHEL-101626] - ASoC: tegra210_ahub: Add check to of_device_get_match_data() (Jaroslav Kysela) [RHEL-101626] - ASoC: simple-card-utils: fixup dlc->xxx handling for error case (Jaroslav Kysela) [RHEL-101626] - ALSA: hda: cs35l41: Fix swapped l/r audio channels for Acer Helios laptops (Jaroslav Kysela) [RHEL-101626] - ALSA: hda/realtek: Add support for Acer Helios Laptops using CS35L41 HDA (Jaroslav Kysela) [RHEL-101626] - ASoC: intel/sdw_utils: Assign initial value in asoc_sdw_rt_amp_spk_rtd_init() (Jaroslav Kysela) [RHEL-101626] - ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change (Jaroslav Kysela) [RHEL-101626] - ASoC: amd: yc: Add quirk for Lenovo Yoga Pro 7 14ASP9 (Jaroslav Kysela) [RHEL-101626] - ASoC: codecs: wcd937x: Drop unused buck_supply (Jaroslav Kysela) [RHEL-101626] - ASoC: codecs: wcd9375: Fix double free of regulator supplies (Jaroslav Kysela) [RHEL-101626] {CVE-2025-38423} - ASoC: amd: sof_amd_sdw: Fix unlikely uninitialized variable use in create_sdw_dailinks() (Jaroslav Kysela) [RHEL-101626] - ASoC: amd: amd_sdw: Fix unlikely uninitialized variable use in create_sdw_dailinks() (Jaroslav Kysela) [RHEL-101626] - ASoC: meson: meson-card-utils: use of_property_present() for DT parsing (Jaroslav Kysela) [RHEL-101626] - ASoC: qcom: sdm845: Add error handling in sdm845_slim_snd_hw_params() (Jaroslav Kysela) [RHEL-101626] - ALSA: usb-audio: Add implicit feedback quirk for RODE AI-1 (Jaroslav Kysela) [RHEL-101626] - ALSA: usb-audio: Kill timer properly at removal (Jaroslav Kysela) [RHEL-101626] {CVE-2025-38105} - ASoC: ti: omap-hdmi: Re-add dai_link->platform to fix card init (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: avs: Verify content returned by parse_int_array() (Jaroslav Kysela) [RHEL-101626] {CVE-2025-38307} - ASoC: Intel: avs: Fix paths in MODULE_FIRMWARE hints (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: avs: Relocate DSP status registers (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: avs: Read HW capabilities when possible (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: avs: Ignore Vendor-space manipulation for ACE (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: avs: Fix PPLCxFMT calculation (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: avs: PCM operations for LNL-based platforms (Jaroslav Kysela) [RHEL-101626] - ALSA: hda: Allow to fetch hlink by ID (Jaroslav Kysela) [RHEL-101626] - soundwire: only compute port params in specific stream states (Jaroslav Kysela) [RHEL-101626] - ALSA: core: fix up bus match const issues. (Jaroslav Kysela) [RHEL-101626] - ASoC: apple: mca: Constrain channels according to TDM mask (Jaroslav Kysela) [RHEL-101626] - ASoC: SOF: amd: add missing acp descriptor field (Jaroslav Kysela) [RHEL-101626] - ASoC: SOF: ipc4-pcm: Adjust pipeline_list->pipelines allocation type (Jaroslav Kysela) [RHEL-101626] - ASoC: mediatek: mt8195: Set ETDM1/2 IN/OUT to COMP_DUMMY() (Jaroslav Kysela) [RHEL-101626] {CVE-2025-38299} - ASoC: tas2764: Enable main IRQs (Jaroslav Kysela) [RHEL-101626] - ASoC: tas2764: Reinit cache on part reset (Jaroslav Kysela) [RHEL-101626] - ASoC: Intel: avs: Fix deadlock when the failing IPC is SET_D0IX (Jaroslav Kysela) [RHEL-101626] - ASoC: codecs: hda: Fix RPM usage count underflow (Jaroslav Kysela) [RHEL-101626] - ixgbe: add support for FW rollback mode (Corinna Vinschen) [RHEL-99409] - ixgbe: add E610 implementation of FW recovery mode (Corinna Vinschen) [RHEL-99409] - ixgbe: add FW API version check (Corinna Vinschen) [RHEL-99409] - ixgbe: add support for devlink reload (Corinna Vinschen) [RHEL-99409] - ixgbe: add device flash update via devlink (Corinna Vinschen) [RHEL-99409] - ixgbe: extend .info_get() with stored versions (Corinna Vinschen) [RHEL-99409] - ixgbe: add E610 functions getting PBA and FW ver info (Corinna Vinschen) [RHEL-99409] - ixgbe: add .info_get extension specific for E610 devices (Corinna Vinschen) [RHEL-99409] - ixgbe: read the netlist version information (Corinna Vinschen) [RHEL-99409] - ixgbe: read the OROM version information (Corinna Vinschen) [RHEL-99409] - ixgbe: add E610 functions for acquiring flash data (Corinna Vinschen) [RHEL-99409] - ixgbe: add handler for devlink .info_get() (Corinna Vinschen) [RHEL-99409] - ixgbe: add initial devlink support (Corinna Vinschen) [RHEL-99409] - ixgbe: wrap netdev_priv() usage (Corinna Vinschen) [RHEL-99409] - ixgbe: Fix unreachable retry logic in combined and byte I2C write functions (Corinna Vinschen) [RHEL-99409] - treewide: Switch/rename to timer_delete[_sync]() (Corinna Vinschen) [RHEL-99409] - ixgbe: fix media type detection for E610 device (Corinna Vinschen) [RHEL-86538 RHEL-99409] - ixgbe: add support for thermal sensor event reception (Corinna Vinschen) [RHEL-99409] - ixgbe: add PTP support for E610 device (Corinna Vinschen) [RHEL-99409] - ixgbe: fix media cage present detection for E610 device (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Fix possible skb NULL pointer dereference (Corinna Vinschen) [RHEL-99409] - ixgbevf: Fix passing 0 to ERR_PTR in ixgbevf_run_xdp() (Corinna Vinschen) [RHEL-99409] - ixgbe: Fix passing 0 to ERR_PTR in ixgbe_run_xdp() (Corinna Vinschen) [RHEL-99409] - ixgbevf: Remove unused ixgbevf_hv_mbx_ops (Corinna Vinschen) [RHEL-99409] - ixgbevf: Add support for Intel(R) E610 device (Corinna Vinschen) [RHEL-80417 RHEL-99409] - PCI: Add PCI_VDEVICE_SUB helper macro (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Enable link management in E610 device (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Clean up the E610 link management related code (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Add ixgbe_x540 multiple header inclusion protection (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Add support for EEPROM dump in E610 device (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Add support for NVM handling in E610 device (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Add link management support for E610 device (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Add support for E610 device capabilities detection (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Add support for E610 FW Admin Command Interface (Corinna Vinschen) [RHEL-80417 RHEL-99409] - ixgbe: Correct BASE-BX10 compliance code (Corinna Vinschen) [RHEL-99409] - ixgbe: downgrade logging of unsupported VF API version to debug (Corinna Vinschen) [RHEL-99409] - ixgbe: Break include dependency cycle (Corinna Vinschen) [RHEL-99409] - configs: new config in drivers/phy (Izabela Bakollari) [RHEL-75590] - ixgene-v2: prepare for phylib stop exporting phy_10_100_features_array (Izabela Bakollari) [RHEL-75590] - net: gianfar: simplify init_phy() (Izabela Bakollari) [RHEL-75590] - net: ethernet: xgbe: re-add aneg to supported features in PHY quirks (Izabela Bakollari) [RHEL-75590] - r8169: make Kconfig option for LED support user-visible (Izabela Bakollari) [RHEL-75590] - r8169: add PHY c45 ops for MDIO_MMD_VENDOR2 registers (Izabela Bakollari) [RHEL-75590] - net: phy: microchip: limit 100M workaround to link-down events on LAN88xx (Izabela Bakollari) [RHEL-75590] - net: phy: microchip: Use genphy_soft_reset() to purge stale LPA bits (Izabela Bakollari) [RHEL-75590] - net: mdio: mdio-i2c: Add support for single-byte SMBus operations (Izabela Bakollari) [RHEL-75590] - net: usb: asix: ax88772: Increase phy_name size (Izabela Bakollari) [RHEL-75590] - net: aquantia: Use HWMON_CHANNEL_INFO macro to simplify code (Izabela Bakollari) [RHEL-75590] - gpio: cdev: use raw notifier for line state events (Izabela Bakollari) [RHEL-75590] - gpiolib: fix a NULL-pointer dereference when setting direction (Izabela Bakollari) [RHEL-75590] - gpiolib: notify user-space about in-kernel line state changes (Izabela Bakollari) [RHEL-75590] - gpiolib: switch the line state notifier to atomic (Izabela Bakollari) [RHEL-75590] - gpio: cdev: put emitting the line state events on a workqueue (Izabela Bakollari) [RHEL-75590] - gpio: cdev: prepare gpio_desc_to_lineinfo() for being called from atomic (Izabela Bakollari) [RHEL-75590] - gpio: cdev: go back to storing debounce period in the GPIO descriptor (Izabela Bakollari) [RHEL-75590] - gpiolib: unduplicate chip guard in set_config path (Izabela Bakollari) [RHEL-75590] - gpiolib: notify user-space when a driver requests its own desc (Izabela Bakollari) [RHEL-75590] - gpiolib: avoid format string weakness in workqueue interface (Izabela Bakollari) [RHEL-75590] - dt-bindings: net: dp83822: add constraints for mac-termination-ohms (Izabela Bakollari) [RHEL-75590] - dt-bindings: net: ethernet-phy: add property mac-termination-ohms (Izabela Bakollari) [RHEL-75590] - dt-bindings: net: Document support for Aeonsemi PHYs (Izabela Bakollari) [RHEL-75590] - dt-bindings: net: ethernet-phy: add property tx-amplitude-100base-tx-percent (Izabela Bakollari) [RHEL-75590] - dt-bindings: net: ethernet-phy: Add timing-role role property for ethernet PHYs (Izabela Bakollari) [RHEL-75590] - dt-bindings: net: dp83822: Add support for GPIO2 clock output (Izabela Bakollari) [RHEL-75590] - dt-bindings: net: tja11xx: add "nxp,rmii-refclk-out" property (Izabela Bakollari) [RHEL-75590] - dt-bindings: net: marvell,aquantia: add property to override MDI_CFG (Izabela Bakollari) [RHEL-75590] - net: phy: clear phydev->devlink when the link is deleted (Izabela Bakollari) [RHEL-75590] - net: phy: mscc: Stop clearing the the UDPv4 checksum for L2 frames (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Add Airoha AN7583 PHY support (Izabela Bakollari) [RHEL-75590] - net: phy: mscc: Fix memory leak when using one step timestamping (Izabela Bakollari) [RHEL-75590] - net: phy: fix up const issues in to_mdio_device() and to_phy_device() (Izabela Bakollari) [RHEL-75590] - net: phy: add driver for MaxLinear MxL86110 PHY (Izabela Bakollari) [RHEL-75590] - net: phy: fixed_phy: constify status argument where possible (Izabela Bakollari) [RHEL-75590] - net: phy: fixed_phy: remove irq argument from fixed_phy_register (Izabela Bakollari) [RHEL-75590] - net: phy: fixed_phy: remove irq argument from fixed_phy_add (Izabela Bakollari) [RHEL-75590] - net: phy: Add support for Aeonsemi AS21xxx PHYs (Izabela Bakollari) [RHEL-75590] - net: phy: introduce genphy_match_phy_device() (Izabela Bakollari) [RHEL-75590] - net: phy: nxp-c45-tja11xx: simplify .match_phy_device OP (Izabela Bakollari) [RHEL-75590] - net: phy: bcm87xx: simplify .match_phy_device OP (Izabela Bakollari) [RHEL-75590] - net: phy: pass PHY driver to .match_phy_device OP (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: add driver for built-in 2.5G ethernet PHY on MT7988 (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Sort config and file names in Kconfig and Makefile (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: add RTL8127-internal PHY (Izabela Bakollari) [RHEL-75590] - net: phy: microchip: document where the LAN88xx PHYs are used (Izabela Bakollari) [RHEL-75590] - net: phy: fixed_phy: remove fixed_phy_register_with_gpiod (Izabela Bakollari) [RHEL-75590] - net: phy: remove stub for mdiobus_register_board_info (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: Enable temperature measurement in probe again (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: do not require syscon compatible for pio property (Izabela Bakollari) [RHEL-75590] - net: phy: dp83867: use 2ns delay if not specified in DTB (Izabela Bakollari) [RHEL-75590] - net: phy: dp83867: remove check of delay strap configuration (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: Add support for PHY LEDs on RTL8211E (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: use __set_bit() in rtl8211f_led_hw_control_get() (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: Group RTL82* macro definitions (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: add RTL8211F register defines (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: Clean up RTL821x ExtPage access (Izabela Bakollari) [RHEL-75590] - net: phy: micrel: remove KSZ9477 EEE quirks now handled by phylink (Izabela Bakollari) [RHEL-75590] - net: phy: Refactor fwnode_get_phy_node() (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: Add support for WOL magic packet on RTL8211F (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: fix commenting format (Izabela Bakollari) [RHEL-75590] - net: phylink: Drop unused defines for SUPPORTED/ADVERTISED_INTERFACES (Izabela Bakollari) [RHEL-75590] - net: dp83822: Fix OF_MDIO config check (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: Enable temperature sensor for mv88q211x (Izabela Bakollari) [RHEL-75590] - net: phy: remove function stubs (Izabela Bakollari) [RHEL-75590] - net: phy: leds: fix memory leak (Izabela Bakollari) [RHEL-75590] - net: phy: dp83822: Add support for changing the MAC termination (Izabela Bakollari) [RHEL-75590] - net: phy: Add helper for getting MAC termination resistance (Izabela Bakollari) [RHEL-75590] - net: phylink: fix suspend/resume with WoL enabled and link down (Izabela Bakollari) [RHEL-75590] - net: phy: microchip: force IRQ polling mode for lan88xx (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: init val in .phy_led_polarity_set for AN7581 (Izabela Bakollari) [RHEL-75590] - net: phy: remove redundant dependency on NETDEVICES for PHYLINK and PHYLIB (Izabela Bakollari) [RHEL-75590] - net: phy: remove device_phy_find_device (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: add Airoha PHY ID to SoC driver (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: permit to compile test GE SOC PHY driver (Izabela Bakollari) [RHEL-75590] - net: phy: air_en8811h: Add clk provider for CKO pin (Izabela Bakollari) [RHEL-75590] - net: phy: allow MDIO bus PM ops to start/stop state machine for phylink-controlled PHY (Izabela Bakollari) [RHEL-75590] - net: phy: move phy_link_change() prior to mdio_bus_phy_may_suspend() (Izabela Bakollari) [RHEL-75590] - net: phy: broadcom: Correct BCM5221 PHY model detection (Izabela Bakollari) [RHEL-75590] - net: phylink: force link down on major_config failure (Izabela Bakollari) [RHEL-75590] - net: phy: Introduce PHY_ID_SIZE — minimum size for PHY ID string (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: add essential functions to aqr105 driver (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: search for firmware-name in fwnode (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: add probe function to aqr105 for firmware loading (Izabela Bakollari) [RHEL-75590] - net: phy: Add swnode support to mdiobus_scan (Izabela Bakollari) [RHEL-75590] - net: phy: sfp: Add support for SMBus module access (Izabela Bakollari) [RHEL-75590] - net: phylink: add functions to block/unblock rx clock stop (Izabela Bakollari) [RHEL-75590] - net: phylink: add phylink_prepare_resume() (Izabela Bakollari) [RHEL-75590] - net: phylink: Remove unused function pointer from phylink structure (Izabela Bakollari) [RHEL-75590] - net: phy: fixed_phy: transition to the faux device interface (Izabela Bakollari) [RHEL-75590] - net: phy: dp83822: fix transmit amplitude if CONFIG_OF_MDIO not defined (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: disable PHY-mode EEE (Izabela Bakollari) [RHEL-75590] - net: phy: fix genphy_c45_eee_is_active() for disabled EEE (Izabela Bakollari) [RHEL-75590] - net: phy: phy_interface_t: Fix RGMII_TXID code comment (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: remove call to devm_hwmon_sanitize_name (Izabela Bakollari) [RHEL-75590] - net: phy: mxl-gpy: remove call to devm_hwmon_sanitize_name (Izabela Bakollari) [RHEL-75590] - net: phy: tja11xx: remove call to devm_hwmon_sanitize_name (Izabela Bakollari) [RHEL-75590] - broadcom: fix supported flag check in periodic output function (Izabela Bakollari) [RHEL-75590] - net: phy: marvell: Align set_loopback() implementation (Izabela Bakollari) [RHEL-75590] - net: phy: micrel: Add loopback support (Izabela Bakollari) [RHEL-75590] - net: phy: Support speed selection for PHY loopback (Izabela Bakollari) [RHEL-75590] - net: phy: Allow loopback speed selection for PHY drivers (Izabela Bakollari) [RHEL-75590] - phy: fix xa_alloc_cyclic() error handling (Izabela Bakollari) [RHEL-75590] - net: phy: remove unused functions phy_package_[read|write]_mmd (Izabela Bakollari) [RHEL-75590] - net: phy: move PHY package MMD access function declarations from phy.h to phylib.h (Izabela Bakollari) [RHEL-75590] - net: phylink: Use phy_caps to get an interface's capabilities and modes (Izabela Bakollari) [RHEL-75590] - net: phylink: Convert capabilities to linkmodes using phy_caps (Izabela Bakollari) [RHEL-75590] - net: phylink: Add a mapping between MAC_CAPS and LINK_CAPS (Izabela Bakollari) [RHEL-75590] - net: phy: drop phy_settings and the associated lookup helpers (Izabela Bakollari) [RHEL-75590] - net: phylink: Use phy_caps_lookup for fixed-link configuration (Izabela Bakollari) [RHEL-75590] - net: phy: phy_device: Use link_capabilities lookup for PHY aneg config (Izabela Bakollari) [RHEL-75590] - net: phy: phy_caps: Don't skip better duplex macth on non-exact match (Izabela Bakollari) [RHEL-75590] - net: phy: phy_caps: Allow looking-up link caps based on speed and duplex (Izabela Bakollari) [RHEL-75590] - net: phy: phy_caps: Implement link_capabilities lookup by linkmode (Izabela Bakollari) [RHEL-75590] - net: phy: phy_caps: Introduce phy_caps_valid (Izabela Bakollari) [RHEL-75590] - net: phy: phy_caps: Move __set_linkmode_max_speed to phy_caps (Izabela Bakollari) [RHEL-75590] - net: phy: phy_caps: Move phy_speeds to phy_caps (Izabela Bakollari) [RHEL-75590] - net: phy: Use an internal, searchable storage for the linkmodes (Izabela Bakollari) [RHEL-75590] - net: phylink: Remove unused phylink_init_eee (Izabela Bakollari) [RHEL-75590] - net: phy: tja11xx: enable PHY in sleep mode for TJA1102S (Izabela Bakollari) [RHEL-75590] - net: phy: tja11xx: add support for TJA1102S (Izabela Bakollari) [RHEL-75590] - net: phy: nxp-c45-tja11xx: add TJA112XB SGMII PCS restart errata (Izabela Bakollari) [RHEL-75590] - net: phy: nxp-c45-tja11xx: add TJA112X PHY configuration errata (Izabela Bakollari) [RHEL-75590] - net: phy: remove remaining PHY package related definitions from phy.h (Izabela Bakollari) [RHEL-75590] - net: phy: move PHY package related code from phy.h to phy_package.c (Izabela Bakollari) [RHEL-75590] - net: phy: mscc: use new phy_package_shared getters (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: use new phy_package_shared getters (Izabela Bakollari) [RHEL-75590] - net: phy: micrel: use new phy_package_shared getters (Izabela Bakollari) [RHEL-75590] - net: phy: qca807x: use new phy_package_shared getters (Izabela Bakollari) [RHEL-75590] - net: phy: add getters for public members in struct phy_package_shared (Izabela Bakollari) [RHEL-75590] - net: phy: move PHY package code from phy_device.c to own source file (Izabela Bakollari) [RHEL-75590] - gpiolib: Align FLAG_* definitions in the struct gpio_desc (Izabela Bakollari) [RHEL-75590] - net: phy: nxp-c45-tja11xx: add support for TJA1121 (Izabela Bakollari) [RHEL-75590] - net: phy: nxp-c45-tja11xx: add match_phy_device to TJA1103/TJA1104 (Izabela Bakollari) [RHEL-75590] - net: phylink: use pl->link_interface in phylink_expects_phy() (Izabela Bakollari) [RHEL-75590] - net: sfp: add quirk for FS SFP-10GM-T copper SFP+ module (Izabela Bakollari) [RHEL-75590] - net: phy: add phylib-internal.h (Izabela Bakollari) [RHEL-75590] - net: phy: remove unused feature array declarations (Izabela Bakollari) [RHEL-75590] - net: phy: qcom: qca807x fix condition for DAC_DSP_BIAS_CURRENT (Izabela Bakollari) [RHEL-75590] - net: phy: qt2025: Fix hardware revision check comment (Izabela Bakollari) [RHEL-75590] - net: sfp: add quirk for 2.5G OEM BX SFP (Izabela Bakollari) [RHEL-75590] - net: phy: c45: remove local advertisement parameter from genphy_c45_eee_is_active (Izabela Bakollari) [RHEL-75590] - net: phy: c45: use cached EEE advertisement in genphy_c45_ethtool_get_eee (Izabela Bakollari) [RHEL-75590] - net: phy: c45: Don't silently remove disabled EEE modes any longer when writing advertisement register (Izabela Bakollari) [RHEL-75590] - net: phy: remove disabled EEE modes from advertising_eee in phy_probe (Izabela Bakollari) [RHEL-75590] - net: phy: improve phy_disable_eee_mode (Izabela Bakollari) [RHEL-75590] - net: phy: move definition of phy_is_started before phy_disable_eee_mode (Izabela Bakollari) [RHEL-75590] - net: phy: rename phy_set_eee_broken to phy_disable_eee_mode (Izabela Bakollari) [RHEL-93673] - r8169: copy vendor driver 2.5G/5G EEE advertisement constraints (Izabela Bakollari) [RHEL-93673] - r8169: align RTL8126 EEE config with vendor driver (Izabela Bakollari) [RHEL-93673] - r8169: align RTL8125 EEE config with vendor driver (Izabela Bakollari) [RHEL-93673] - r8169: align RTL8125/RTL8126 PHY config with vendor driver (Izabela Bakollari) [RHEL-93673] - net: phy: realtek: add defines for shadowed c45 standard registers (Izabela Bakollari) [RHEL-75590] - gpiolib: protect gpio_chip with SRCU in array_info paths in multi get/set (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: add helper RTL822X_VND2_C22_REG (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: Init PHY private structure for mv88q211x (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: enable temperature sensor in mv88q2xxx_config_init (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: order includes alphabetically (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: align defines (Izabela Bakollari) [RHEL-75590] - net: phy: dp83822: Add support for changing the transmit amplitude voltage (Izabela Bakollari) [RHEL-75590] - net: phy: Add helper for getting tx amplitude gain (Izabela Bakollari) [RHEL-75590] - net: phy: remove helper phy_is_internal (Izabela Bakollari) [RHEL-75590] - net: phy: stop exporting phy_queue_state_machine (Izabela Bakollari) [RHEL-75590] - net: phy: stop exporting feature arrays which aren't used outside phylib (Izabela Bakollari) [RHEL-75590] - net: phy: remove fixup-related definitions from phy.h which are not used outside phylib (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: switch from paged to MMD ops in rtl822x functions (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: improve mmd register access for internal PHY's (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Move some macros to phy-lib for later use (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Add token ring clear bit operation support (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Add token ring set bit operation support (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Add token ring access helper functions in mtk-phy-lib (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Change to more meaningful macros (Izabela Bakollari) [RHEL-75590] - net: phy: c45: improve handling of disabled EEE modes in generic ethtool functions (Izabela Bakollari) [RHEL-75590] - net: phy: rename eee_broken_modes to eee_disabled_modes (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: Add support for PHY LEDs on 88q2xxx (Izabela Bakollari) [RHEL-75590] - net: phy: broadcom: don't include '' directly (Izabela Bakollari) [RHEL-75590] - net: phylink: add support for notifying PCS about EEE (Izabela Bakollari) [RHEL-75590] - net: phylink: provide phylink_mac_implements_lpi() (Izabela Bakollari) [RHEL-75590] - net: phy: dp83tg720: Add randomized polling intervals for link detection (Izabela Bakollari) [RHEL-75590] - net: phy: Add support for driver-specific next update time (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: Use HWMON_CHANNEL_INFO macro to simplify code (Izabela Bakollari) [RHEL-75590] - net: phy: marvell10g: Use HWMON_CHANNEL_INFO macro to simplify code (Izabela Bakollari) [RHEL-75590] - net: phy: marvell: Use HWMON_CHANNEL_INFO macro to simplify code (Izabela Bakollari) [RHEL-75590] - net: phylink: make configuring clock-stop dependent on MAC support (Izabela Bakollari) [RHEL-75590] - net: phy: dp83td510: introduce LED framework support (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: use string choices helpers (Izabela Bakollari) [RHEL-75590] - net: phy: c45-tjaxx: add delay between MDIO write and read in soft_reset (Izabela Bakollari) [RHEL-75590] - net: phylink: fix regression when binding a PHY (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: Fix temperature measurement with reset-gpios (Izabela Bakollari) [RHEL-75590] - net: phylink: always do a major config when attaching a SFP PHY (Izabela Bakollari) [RHEL-75590] - net: phy: remove leftovers from switch to linkmode bitmaps (Izabela Bakollari) [RHEL-75590] - net: phylink: add EEE management (Izabela Bakollari) [RHEL-75590] - net: phylink: add phylink_link_is_up() helper (Izabela Bakollari) [RHEL-75590] - net: phy: add support for querying PHY clock stop capability (Izabela Bakollari) [RHEL-75590] - net: mdio: add definition for clock stop capable bit (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_rds_ptp : Add PEROUT feature library for RDS PTP supported Microchip phys (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1: Enable pin out specific to lan887x phy for PEROUT signal (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_rds_ptp: Header file library changes for PEROUT (Izabela Bakollari) [RHEL-75590] - net: phylink: provide fixed state for 1000base-X and 2500base-X (Izabela Bakollari) [RHEL-75590] - net: phylink: use neg_mode in phylink_mii_c22_pcs_decode_state() (Izabela Bakollari) [RHEL-75590] - net: phylink: pass neg_mode into c22 state decoder (Izabela Bakollari) [RHEL-75590] - net: phylink: pass neg_mode into .pcs_get_state() method (Izabela Bakollari) [RHEL-75590] - net: phylink: use pcs_neg_mode in phylink_mac_pcs_get_state() (Izabela Bakollari) [RHEL-75590] - net: phy: dp83822: Fix typo "outout" -> "output" (Izabela Bakollari) [RHEL-75590] - net: phy: Constify struct mdio_device_id (Izabela Bakollari) [RHEL-75590] - net: phy: remove unused PHY_INIT_TIMEOUT and PHY_FORCE_TIMEOUT (Izabela Bakollari) [RHEL-75590] - net: phy: move realtek PHY driver to its own subdirectory (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: always clear NBase-T lpa (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: clear master_slave_state if link is down (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: clear 1000Base-T lpa if link is down (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: add support for reading MDIO_MMD_VEND2 regs on RTL8125/RTL8126 (Izabela Bakollari) [RHEL-75590] - net: phy: introduce optional polling interface for PHY statistics (Izabela Bakollari) [RHEL-75590] - net: phy: dp83tg720: add statistics support (Izabela Bakollari) [RHEL-75590] - net: phy: dp83td510: add statistics support (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1: depend on PTP_1588_CLOCK_OPTIONAL (Izabela Bakollari) [RHEL-75590] - net: phy: add configuration of rx clock stop mode (Izabela Bakollari) [RHEL-75590] - net: phy: micrel: use helper phy_disable_eee (Izabela Bakollari) [RHEL-75590] - net: phy: dp83822: Add support for PHY LEDs on DP83822 (Izabela Bakollari) [RHEL-75590] - net: phylink: add support for PCS supported_interfaces bitmap (Izabela Bakollari) [RHEL-75590] - net: phy: fix phy_disable_eee (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1 : Add initialization of ptp for lan887x (Izabela Bakollari) [RHEL-75590] - net: phy: Makefile: Add makefile support for rds ptp in Microchip phys (Izabela Bakollari) [RHEL-75590] - net: phy: Kconfig: Add rds ptp library support and 1588 optional flag in Microchip phys (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_rds_ptp : Add rds ptp library for Microchip phys (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_rds_ptp: Add header file for Microchip rds ptp library (Izabela Bakollari) [RHEL-75590] - net: phy: avoid undefined behavior in *_led_polarity_set() (Izabela Bakollari) [RHEL-75590] - net: phy: micrel: Dynamically control external clock of KSZ PHY (Izabela Bakollari) [RHEL-75590] - net: phy: add phy_disable_eee (Izabela Bakollari) [RHEL-75590] - net: phy: ks8995: constify 'struct bin_attribute' (Izabela Bakollari) [RHEL-75590] - net: phylink: improve phylink_sfp_config_phy() error message with missing PHY driver (Izabela Bakollari) [RHEL-75590] - net: phy: dp83822: Add support for GPIO2 clock output (Izabela Bakollari) [RHEL-75590] - net: phy: dp83822: Replace DP83822_DEVADDR with MDIO_MMD_VEND2 (Izabela Bakollari) [RHEL-75590] - net: phy: Add helper for mapping RGMII link speed to clock rate (Izabela Bakollari) [RHEL-75590] - net: phy: update phy_ethtool_get_eee() documentation (Izabela Bakollari) [RHEL-75590] - net: phy: remove genphy_c45_eee_is_active()'s is_enabled arg (Izabela Bakollari) [RHEL-75590] - net: phy: avoid genphy_c45_ethtool_get_eee() setting eee_enabled (Izabela Bakollari) [RHEL-75590] - net: phy: marvell: use phydev->eee_cfg.eee_enabled (Izabela Bakollari) [RHEL-75590] - net: phylink: remove phylink_phy_no_inband() (Izabela Bakollari) [RHEL-75590] - net: phylink: add negotiation of in-band capabilities (Izabela Bakollari) [RHEL-75590] - net: phylink: add pcs_inband_caps() method (Izabela Bakollari) [RHEL-75590] - net: phy: marvell: implement config_inband() method (Izabela Bakollari) [RHEL-75590] - net: phy: add phy_config_inband() (Izabela Bakollari) [RHEL-75590] - net: phy: marvell: implement phy_inband_caps() method (Izabela Bakollari) [RHEL-75590] - net: phy: bcm84881: implement phy_inband_caps() method (Izabela Bakollari) [RHEL-75590] - net: phy: add phy_inband_caps() (Izabela Bakollari) [RHEL-75590] - net: phylink: add debug for phylink_major_config() (Izabela Bakollari) [RHEL-75590] - net: phylink: split cur_link_an_mode into requested and active (Izabela Bakollari) [RHEL-75590] - net: phylink: pass phylink and pcs into phylink_pcs_neg_mode() (Izabela Bakollari) [RHEL-75590] - net: phy: microchip: Reset LAN88xx PHY to ensure clean link state on LAN7800/7850 (Izabela Bakollari) [RHEL-75590] - net: phy: fix phy_ethtool_set_eee() incorrectly enabling LPI (Izabela Bakollari) [RHEL-75590] - net: phy: ensure that genphy_c45_an_config_eee_aneg() sees new value of phydev->eee_cfg.eee_enabled (Izabela Bakollari) [RHEL-75590] - net: phy: fix phylib's dual eee_enabled (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1: Clause-45 PHY loopback support for LAN887x (Izabela Bakollari) [RHEL-75590] - net: phy: c45: don't use temporary linkmode bitmaps in genphy_c45_ethtool_get_eee (Izabela Bakollari) [RHEL-75590] - net: phy: dp83869: fix status reporting for 1000base-x autonegotiation (Izabela Bakollari) [RHEL-75590] - mdio: Remove mdio45_ethtool_gset_npage() (Izabela Bakollari) [RHEL-75590] - include: mdio: Remove mdio45_ethtool_gset() (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: add MT7530 & MT7531's PHY ID macros (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Integrate read/write page helper functions (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Improve readability of mtk-phy-lib.c's mtk_phy_led_hw_ctrl_set() (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Move LED helper functions into mtk phy lib (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek: Re-organize MediaTek ethernet phy drivers (Izabela Bakollari) [RHEL-75590] - net: phylink: clean up phylink_resolve() (Izabela Bakollari) [RHEL-75590] - net: phylink: remove switch() statement in resolve handling (Izabela Bakollari) [RHEL-75590] - net: phylink: move MLO_AN_PHY resolve handling to if() statement (Izabela Bakollari) [RHEL-75590] - net: phylink: move MLO_AN_FIXED resolve handling to if() statement (Izabela Bakollari) [RHEL-75590] - net: phylink: move manual flow control setting (Izabela Bakollari) [RHEL-75590] - net: phy: add phy_set_eee_broken (Izabela Bakollari) [RHEL-75590] - net: phy: convert eee_broken_modes to a linkmode bitmap (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: Add mdix config and reporting (Izabela Bakollari) [RHEL-75590] - net: phy: remove genphy_config_eee_advert (Izabela Bakollari) [RHEL-75590] - net: phy: broadcom: use genphy_c45_an_config_eee_aneg in bcm_config_lre_aneg (Izabela Bakollari) [RHEL-75590] - net: phy: export genphy_c45_an_config_eee_aneg (Izabela Bakollari) [RHEL-75590] - net: phy: make genphy_c45_write_eee_adv() static (Izabela Bakollari) [RHEL-75590] - net: broadcom: use ethtool string helpers (Izabela Bakollari) [RHEL-75590] - net: phy: respect cached advertising when re-enabling EEE (Izabela Bakollari) [RHEL-75590] - net: phy: use ethtool string helpers (Izabela Bakollari) [RHEL-75590] - net: phy: dp83822: Configure RMII mode on DP83825 devices (Izabela Bakollari) [RHEL-75590] - net: phylink: simplify how SFP PHYs are attached (Izabela Bakollari) [RHEL-75590] - net: phylink: validate sfp_select_interface() returned interface (Izabela Bakollari) [RHEL-75590] - net: phylink: add common validation for sfp_select_interface() (Izabela Bakollari) [RHEL-75590] - net: phylink: simplify phylink_parse_fixedlink() (Izabela Bakollari) [RHEL-75590] - gpiolib: add a per-gpio_device line state notification workqueue (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: add RTL8125D-internal PHY (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek-ge-soc: Propagate error code correctly in cal_cycle() (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek-ge-soc: Shrink line wrapping to 80 characters (Izabela Bakollari) [RHEL-75590] - net: phy: mediatek-ge-soc: Fix coding style (Izabela Bakollari) [RHEL-75590] - net: phy: marvell: Add mdix status reporting (Izabela Bakollari) [RHEL-75590] - net: phylink: remove "using_mac_select_pcs" (Izabela Bakollari) [RHEL-75590] - net: phylink: allow mac_select_pcs() to remove a PCS (Izabela Bakollari) [RHEL-75590] - net: phylink: remove use of pl->pcs in phylink_validate_mac_and_pcs() (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: merge the drivers for internal NBase-T PHY's (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: fix return value check in aqr107_config_mdi() (Izabela Bakollari) [RHEL-75590] - net: sfp: change quirks for Alcatel Lucent G-010S-P (Izabela Bakollari) [RHEL-75590] - net: phylink: allow half-duplex modes with RATE_MATCH_PAUSE (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: clear 1000Base-T link partner advertisement (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: change order of calls in C22 read_status() (Izabela Bakollari) [RHEL-75590] - net: phy: realtek: read duplex and gbit master from PHYSR register (Izabela Bakollari) [RHEL-75590] - net: phy: intel-xway: add support for PHY LEDs (Izabela Bakollari) [RHEL-75590] - net: phy: mxl-gpy: correctly describe LED polarity (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: correctly describe LED polarity override (Izabela Bakollari) [RHEL-75590] - net: phy: support 'active-high' property for PHY LEDs (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1s: configure collision detection based on PLCA mode (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1s: add support for Microchip's LAN867X Rev.C2 (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1s: add support for Microchip's LAN867X Rev.C1 (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1s: move LAN867X reset handling to a new function (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1s: add support for Microchip's LAN865X Rev.B1 (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1s: update new initial settings for LAN865X Rev.B0 (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1s: restructure cfg read/write functions arguments (Izabela Bakollari) [RHEL-75590] - net: phy: c45-tja11xx: add support for outputting RMII reference clock (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: poll status register (Izabela Bakollari) [RHEL-75590] - net: phy: Validate PHY LED OPs presence before registering (Izabela Bakollari) [RHEL-75590] - net: phy: smsc: use devm_clk_get_optional_enabled_with_rate() (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1: SQI support for LAN887x (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: Enable auto negotiation for mv88q2110 (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: Make register writer function generic (Izabela Bakollari) [RHEL-75590] - net: phy: marvell-88q2xxx: Align soft reset for mv88q2110 and mv88q2220 (Izabela Bakollari) [RHEL-75590] - net: phy: aquantia: allow forcing order of MDI pairs (Izabela Bakollari) [RHEL-75590] - net: phy: mxl-gpy: add missing support for TRIGGER_NETDEV_LINK_10 (Izabela Bakollari) [RHEL-75590] - net: phy: Add support for PHY timing-role configuration via device tree (Izabela Bakollari) [RHEL-75590] - net: phy: microchip_t1: Interrupt support for lan887x (Izabela Bakollari) [RHEL-75590] - net: phy: mxl-gpy: add basic LED support (Izabela Bakollari) [RHEL-75590] - redhat/configs: Disable TPM2 HMAC sessions (Štěpán Horáček) [RHEL-82779] - cpuidle: Init cpuidle only for present CPUs (Mark Langsdorf) [RHEL-87864] - cpuidle: menu: Update documentation after get_typical_interval() changes (Mark Langsdorf) [RHEL-87864] - cpuidle: menu: Update documentation after previous changes (Mark Langsdorf) [RHEL-87864] - cpuidle: menu: Avoid discarding useful information (Mark Langsdorf) [RHEL-87864] - cpuidle: menu: Eliminate outliers on both ends of the sample set (Mark Langsdorf) [RHEL-87864] - cpuidle: menu: Tweak threshold use in get_typical_interval() (Mark Langsdorf) [RHEL-87864] - cpuidle: menu: Use one loop for average and variance computations (Mark Langsdorf) [RHEL-87864] - cpuidle: menu: Drop a redundant local variable (Mark Langsdorf) [RHEL-87864] - cpuidle: psci: Add trace for PSCI domain idle (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Skip sleep length computation for low latency constraints (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Replace time_span_ns with a flag (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Simplify handling of total events count (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Skip getting the sleep length if wakeups are very frequent (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Simplify counting events used for tick management (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Clarify two code comments (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Drop local variable prev_intercept_idx (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Combine candidate state index checks against 0 (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Reorder candidate state index checks (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Rearrange idle state lookup code (Mark Langsdorf) [RHEL-87864] - cpuidle: teo: Update documentation after previous changes (Mark Langsdorf) [RHEL-87864] - cpuidle: psci: Activate GENPD_FLAG_ACTIVE_WAKEUP with OSI (Mark Langsdorf) [RHEL-87864] - cpuidle: Change :enter_dead() driver callback return type to void (Mark Langsdorf) [RHEL-87864] - cpuidle: Do not return from cpuidle_play_dead() on callback failures (Mark Langsdorf) [RHEL-87864] - powerpc/machdep: Drop include of dma-mapping.h (Mark Langsdorf) [RHEL-87864] - cpuidle: Correct some typos in comments (Mark Langsdorf) [RHEL-87864] - cpuidle: menu: Remove iowait influence (Mark Langsdorf) [RHEL-87864] - mm/memory-tier: fix abstract distance calculation overflow (Rafael Aquini) [RHEL-100684] - net: add debug check in skb_reset_mac_header() (Davide Caratti) [RHEL-96625] - net: skb_reset_mac_len() must check if mac_header was set (Davide Caratti) [RHEL-96625] - vlan: enforce underlying device type (CKI Backport Bot) [RHEL-96625] {CVE-2025-21920} - kernel.spec: add conditional to include rhel trusted certificates (Eric Chanudet) [RHEL-78808] - kernel.spec: Always BuildRequire openssl-devel (Eric Chanudet) [RHEL-78808] - kernel.spec: automotive: disable kernel signature by default (Eric Chanudet) [RHEL-78808] - redhat/configs: automotive: enable extra system cert (Eric Chanudet) [RHEL-78808] - redhat/configs: automotive: Disable module signature with modules_install (Eric Chanudet) [RHEL-78808] - xfs: do not check NEEDSREPAIR if ro,norecovery mount. (CKI Backport Bot) [RHEL-101641] - iavf: fix reset_task for early reset event (Michal Schmidt) [RHEL-83568] - iavf: add support for Rx timestamps to hotpath (Michal Schmidt) [RHEL-83568] - iavf: handle set and get timestamps ops (Michal Schmidt) [RHEL-83568] - iavf: periodically cache PHC time (Michal Schmidt) [RHEL-83568] - iavf: add support for indirect access to PHC time (Michal Schmidt) [RHEL-83568] - iavf: add initial framework for registering PTP clock (Michal Schmidt) [RHEL-83568] - iavf: negotiate PTP capabilities (Michal Schmidt) [RHEL-83568] - iavf: add support for negotiating flexible RXDID format (Michal Schmidt) [RHEL-83568] - iavf: Implement checking DD desc field (Michal Schmidt) [RHEL-83568] - iavf: refactor iavf_clean_rx_irq to support legacy and flex descriptors (Michal Schmidt) [RHEL-83568] - iavf: define Rx descriptors as qwords (Michal Schmidt) [RHEL-83568] - iavf: allow changing VLAN state without calling PF (Michal Schmidt) [RHEL-83568] - iavf: Remove unused declarations (Michal Schmidt) [RHEL-83568] - iavf: add support to exchange qos capabilities (Michal Schmidt) [RHEL-83568] - iavf: Add net_shaper_ops support (Michal Schmidt) [RHEL-83568] - redhat/configs: automotive: Enable CONFIG_BOOTPARAM_HUNG_TASK_PANIC config (Dorinda Bassey) [RHEL-87368] - i2c/designware: Fix an initialization issue (CKI Backport Bot) [RHEL-106627] {CVE-2025-38380} - ice: default to TIME_REF instead of TXCO on E825-C (Petr Oros) [RHEL-104246] - ice: move TSPLL init calls to ice_ptp.c (Petr Oros) [RHEL-104246] - ice: fall back to TCXO on TSPLL lock fail (Petr Oros) [RHEL-104246] - ice: wait before enabling TSPLL (Petr Oros) [RHEL-104246] - ice: add multiple TSPLL helpers (Petr Oros) [RHEL-104246] - ice: use bitfields instead of unions for CGU regs (Petr Oros) [RHEL-104246] - ice: read TSPLL registers again before reporting status (Petr Oros) [RHEL-104246] - ice: clear time_sync_en field for E825-C during reprogramming (Petr Oros) [RHEL-104246] - ice: add TSPLL log config helper (Petr Oros) [RHEL-104246] - ice: use designated initializers for TSPLL consts (Petr Oros) [RHEL-104246] - ice: remove ice_tspll_params_e825 definitions (Petr Oros) [RHEL-104246] - ice: fix E825-C TSPLL register definitions (Petr Oros) [RHEL-104246] - ice: rename TSPLL and CGU functions and definitions (Petr Oros) [RHEL-104246] - ice: move TSPLL functions to a separate file (Petr Oros) [RHEL-104246] - ice: enable timesync operation on 2xNAC E825 devices (Petr Oros) [RHEL-104246] - ice: refactor ice_sbq_msg_dev enum (Petr Oros) [RHEL-104246] - ice: remove SW side band access workaround for E825 (Petr Oros) [RHEL-104246] - igb: xsk: solve negative overflow of nb_pkts in zerocopy mode (Corinna Vinschen) [RHEL-105952] - dpll: add phase_offset_monitor_get/set callback ops (Ivan Vecera) [RHEL-104979] - dpll: add phase-offset-monitor feature to netlink spec (Ivan Vecera) [RHEL-104979] - net_sched: ets: fix a race in ets_qdisc_change() (Davide Caratti) [RHEL-96604] {CVE-2025-38107} - net_sched: sch_sfq: reject invalid perturb period (Davide Caratti) [RHEL-96604] {CVE-2025-38193} - net_sched: sch_sfq: fix a potential crash on gso_skb handling (Davide Caratti) [RHEL-96604] {CVE-2025-38115} - net_sched: prio: fix a race in prio_tune() (Davide Caratti) [RHEL-96604] {CVE-2025-38083} - net_sched: red: fix a race in __red_change() (Davide Caratti) [RHEL-96604] {CVE-2025-38108} - net_sched: tbf: fix a race in tbf_change() (Davide Caratti) [RHEL-96604] - net: ch9200: fix uninitialised access during mii_nway_restart (CKI Backport Bot) [RHEL-101222] {CVE-2025-38086} - idpf: fix null-ptr-deref in idpf_features_check (Michal Schmidt) [RHEL-79686] - idpf: protect shutdown from reset (Michal Schmidt) [RHEL-79686] - idpf: fix potential memory leak on kcalloc() failure (Michal Schmidt) [RHEL-79686] - idpf: fix offloads support for encapsulated packets (Michal Schmidt) [RHEL-79686] - idpf: fix adapter NULL pointer dereference on reboot (Michal Schmidt) [RHEL-78633 RHEL-79686] {CVE-2025-22065} - idpf: check error for register_netdev() on init (Michal Schmidt) [RHEL-79686] {CVE-2025-22116} - idpf: fix checksums set in idpf_rx_rsc() (Michal Schmidt) [RHEL-79686] {CVE-2025-21890} - libeth: move idpf_rx_csum_decoded and idpf_rx_extracted (Michal Schmidt) [RHEL-79686] - idpf: record rx queue in skb for RSC packets (Michal Schmidt) [RHEL-79686] - idpf: fix handling rsc packet with a single segment (Michal Schmidt) [RHEL-79686] - idpf: fix transaction timeouts on reset (Michal Schmidt) [RHEL-79686] - idpf: add more info during virtchnl transaction timeout/salt mismatch (Michal Schmidt) [RHEL-79686] - idpf: convert workqueues to unbound (Michal Schmidt) [RHEL-79686 RHEL-82472] {CVE-2024-58057} - idpf: Acquire the lock before accessing the xn->salt (Michal Schmidt) [RHEL-79686] - idpf: add read memory barrier when checking descriptor done bit (Michal Schmidt) [RHEL-79686] - redhat/configs: automotive: Disable CONFIG_FS_DAX config (Dorinda Bassey) [RHEL-87374] - tls: always refresh the queue when reading sock (CKI Backport Bot) [RHEL-106093] {CVE-2025-38471} - devlink: Add new "clock_id" generic device param (Ivan Vecera) [RHEL-104975] - devlink: Add support for u64 parameters (Ivan Vecera) [RHEL-104975] - netlink: specs: devlink: replace underscores with dashes in names (Ivan Vecera) [RHEL-104975] - devlink: Add new "enable_phc" generic device param (Ivan Vecera) [RHEL-104975] - netlink: fix policy dump for int with validation callback (Ivan Vecera) [RHEL-104975] - devlink: use DEVLINK_VAR_ATTR_TYPE_* instead of NLA_* in fmsg (Ivan Vecera) [RHEL-104975] - devlink: avoid param type value translations (Ivan Vecera) [RHEL-104975] - devlink: define enum for attr types of dynamic attributes (Ivan Vecera) [RHEL-104975] - tools: ynl-gen: allow noncontiguous enums (Ivan Vecera) [RHEL-104975] - Bluetooth: hci_core: Fix use-after-free in vhci_flush() (CKI Backport Bot) [RHEL-103272] {CVE-2025-38250} - drm/amdkfd: add hqd_sdma_get_doorbell callbacks for gfx7/8 (José Expósito) [RHEL-75958] - Revert "drm/amd/display: pause the workload setting in dm" (José Expósito) [RHEL-75958] - redhat: Update DRM version (José Expósito) [RHEL-75958] - drm/amd/display: Fix AMDGPU_MAX_BL_LEVEL value (José Expósito) [RHEL-75958] - drm/amd/display: Export full brightness range to userspace (José Expósito) [RHEL-75958] - drm/amd/display: Optimize custom brightness curve (José Expósito) [RHEL-75958] - drm/amd/display: Only read ACPI backlight caps once (José Expósito) [RHEL-75958] - drm/amd/display: Fix default DC and AC levels (José Expósito) [RHEL-75958] - drm/amd/display: Add debugging message for brightness caps (José Expósito) [RHEL-75958] - drm/amd/display: Get LTTPR IEEE OUI/Device ID From Closest LTTPR To Host (José Expósito) [RHEL-75958] - drm/amd/display: Add early 8b/10b channel equalization test pattern sequence (José Expósito) [RHEL-75958] - drm/amdgpu/mes: add missing locking in helper functions (José Expósito) [RHEL-75958] - drm/amd/display: Fix mpv playback corruption on weston (José Expósito) [RHEL-75958] - drm/amd/display: Add dc cap for dp tunneling (José Expósito) [RHEL-75958] - drm/amd/display: Add more checks for DSC / HUBP ONO guarantees (José Expósito) [RHEL-75958] - drm/amdgpu: add kicker fws loading for gfx11/smu13/psp13 (José Expósito) [RHEL-75958] - drm/amdgpu: switch job hw_fence to amdgpu_fence (José Expósito) [RHEL-75958] - drm/amdgpu: Fix SDMA UTC_L1 handling during start/stop sequences (José Expósito) [RHEL-75958] - drm/i915/dsi: Fix off by one in BXT_MIPI_TRANS_VTOTAL (José Expósito) [RHEL-75958] - drm/xe: Fix early wedge on GuC load failure (José Expósito) [RHEL-75958] - drm/xe: Fix taking invalid lock on wedge (José Expósito) [RHEL-75958] - drm/xe: Fix memset on iomem (José Expósito) [RHEL-75958] - drm/amd/display: Check dce_hwseq before dereferencing it (José Expósito) [RHEL-75958] - drm/amdgpu: Add kicker device detection (José Expósito) [RHEL-75958] - drm/amdgpu: VCN v5_0_1 to prevent FW checking RB during DPG pause (José Expósito) [RHEL-75958] - drm/amd/display: Fix RMCM programming seq errors (José Expósito) [RHEL-75958] - drm/xe/guc_submit: add back fix (José Expósito) [RHEL-75958] - drm/xe/sched: stop re-submitting signalled jobs (José Expósito) [RHEL-75958] - drm/xe/vm: move rebind_work init earlier (José Expósito) [RHEL-75958] - drm/amd/display: Correct non-OLED pre_T11_delay. (José Expósito) [RHEL-75958] - drm/amdgpu: disable workload profile switching when OD is enabled (José Expósito) [RHEL-75958] - drm/amdgpu: amdgpu_vram_mgr_new(): Clamp lpfn to total vram (José Expósito) [RHEL-75958] - drm/amd/display: Add null pointer check for get_first_active_display() (José Expósito) [RHEL-75958] - drm/bridge: cdns-dsi: Wait for Clk and Data Lanes to be ready (José Expósito) [RHEL-75958] - drm/bridge: cdns-dsi: Check return value when getting default PHY config (José Expósito) [RHEL-75958] - drm/bridge: cdns-dsi: Fix connecting to next bridge (José Expósito) [RHEL-75958] - drm/bridge: cdns-dsi: Fix phy de-init and flag it so (José Expósito) [RHEL-75958] - drm/bridge: cdns-dsi: Fix the clock variable for mode_valid() (José Expósito) [RHEL-75958] - drm/i915/dp_mst: Work around Thunderbolt sink disconnect after SINK_COUNT_ESI read (José Expósito) [RHEL-75958] - drm/i915/ptl: Use everywhere the correct DDI port clock select mask (José Expósito) [RHEL-75958] - drm/amdkfd: Fix race in GWS queue scheduling (José Expósito) [RHEL-75958] - drm/udl: Unregister device before cleaning up on disconnect (José Expósito) [RHEL-75958] - drm/tegra: Fix a possible null pointer dereference (José Expósito) [RHEL-75958] - drm/tegra: Assign plane type before registration (José Expósito) [RHEL-75958] - drm/simpledrm: Do not upcast in release helpers (José Expósito) [RHEL-75958] - drm/panel: simple: Tianma TM070JDHG34-00: add delays (José Expósito) [RHEL-75958] - drm/cirrus-qemu: Fix pitch programming (José Expósito) [RHEL-75958] - drm/ast: Fix comment on modeset lock (José Expósito) [RHEL-75958] - drm/xe: Process deferred GGTT node removals on device unwind (José Expósito) [RHEL-75958] - drm/xe/guc: Explicitly exit CT safe mode on unwind (José Expósito) [RHEL-75958] - drm/bridge: ti-sn65dsi86: Add HPD for DisplayPort connector type (José Expósito) [RHEL-75958] - drm/bridge: ti-sn65dsi86: make use of debugfs_init callback (José Expósito) [RHEL-75958] - drm/i915: fix build error some more (José Expósito) [RHEL-75958] - drm/amd: Adjust output for discovery error handling (José Expósito) [RHEL-75958] - drm: writeback: Fix drm_writeback_connector_cleanup signature (José Expósito) [RHEL-75958] - drm/xe: move DPT l2 flush to a more sensible place (José Expósito) [RHEL-75958] - drm/xe: Move DSB l2 flush to a more sensible place (José Expósito) [RHEL-75958] - drm/i915/snps_hdmi_pll: Fix 64-bit divisor truncation by using div64_u64 (José Expósito) [RHEL-75958] - drm/xe/display: Add check for alloc_ordered_workqueue() (José Expósito) [RHEL-75958] - drm/amdgpu/mes: add compatibility checks for set_hw_resource_1 (José Expósito) [RHEL-75958] - drm/amd/display: Add sanity checks for drm_edid_raw() (José Expósito) [RHEL-75958] - drm/i915/display: Add check for alloc_ordered_workqueue() and alloc_workqueue() (José Expósito) [RHEL-75958] - Revert "drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1" (José Expósito) [RHEL-75958] - drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1 (José Expósito) [RHEL-75958] - drm/scheduler: signal scheduled fence when kill job (José Expósito) [RHEL-75958] - drm/amdgpu: seq64 memory unmap uses uninterruptible lock (José Expósito) [RHEL-75958] - drm/amdgpu/vcn2.5: read back register after written (José Expósito) [RHEL-75958] - drm/amdgpu/vcn3: read back register after written (José Expósito) [RHEL-75958] - drm/amdgpu/vcn4: read back register after written (José Expósito) [RHEL-75958] - drm/amdgpu/vcn5.0.1: read back register after written (José Expósito) [RHEL-75958] - amd/amdkfd: fix a kfd_process ref leak (José Expósito) [RHEL-75958] - Revert "drm/amd/display: Fix VUpdate offset calculations for dcn401" (José Expósito) [RHEL-75958] - drm/xe/bmg: Update Wa_16023588340 (José Expósito) [RHEL-75958] - drm/amdkfd: move SDMA queue reset capability check to node_show (José Expósito) [RHEL-75958] - drm/i915/pmu: Fix build error with GCOV and AutoFDO enabled (José Expósito) [RHEL-75958] - drm/nouveau/bl: increase buffer size to avoid truncate warning (José Expósito) [RHEL-75958] - drm/nouveau: fix a use-after-free in r535_gsp_rpc_push() (José Expósito) [RHEL-75958] - drm/nouveau/gsp: split rpc handling out on its own (José Expósito) [RHEL-75958] - drm/ssd130x: fix ssd132x_clear_screen() columns (José Expósito) [RHEL-75958] - drm/xe/svm: Fix regression disallowing 64K SVM migration (José Expósito) [RHEL-75958] - drm/appletbdrm: Make appletbdrm depend on X86 (José Expósito) [RHEL-75958] - udmabuf: use sgtable-based scatterlist wrappers (José Expósito) [RHEL-75958] - drm/panel: simple: Add POWERTIP PH128800T004-ZZA01 panel entry (José Expósito) [RHEL-75958] - drm/xe/uc: Remove static from loop variable (José Expósito) [RHEL-75958] - drm/amdgpu: Add indirect L1_TLB_CNTL reg programming for VFs (José Expósito) [RHEL-75958] - drm/amdkfd: Set SDMA_RLCx_IB_CNTL/SWITCH_INSIDE_IB (José Expósito) [RHEL-75958] - drm/amd/display: Restructure DMI quirks (José Expósito) [RHEL-75958] - drm/amd/display: Correct prefetch calculation (José Expósito) [RHEL-75958] - drm/amd/pm: Reset SMU v13.0.x custom settings (José Expósito) [RHEL-75958] - drm/amd/display: Fix VUpdate offset calculations for dcn401 (José Expósito) [RHEL-75958] - drm/amdgpu/gfx9: fix CSIB handling (José Expósito) [RHEL-75958] - drm/amd/display: disable EASF narrow filter sharpening (José Expósito) [RHEL-75958] - drm/amdgpu/gfx8: fix CSIB handling (José Expósito) [RHEL-75958] - drm/amdgpu: Disallow partition query during reset (José Expósito) [RHEL-75958] - drm/amdgpu: fix MES GFX mask (José Expósito) [RHEL-75958] - drm/amd/display: Fix Vertical Interrupt definitions for dcn32, dcn401 (José Expósito) [RHEL-75958] - drm/amd/display: Correct SSC enable detection for DCN351 (José Expósito) [RHEL-75958] - drm/amd/display: Update IPS sequential_ono requirement checks (José Expósito) [RHEL-75958] - drm/xe/vf: Fix guc_info debugfs for VFs (José Expósito) [RHEL-75958] - drm/xe: Use copy_from_user() instead of __copy_from_user() (José Expósito) [RHEL-75958] - drm/amdgpu/gfx7: fix CSIB handling (José Expósito) [RHEL-75958] - drm/ttm/tests: fix incorrect assert in ttm_bo_unreserve_bulk() (José Expósito) [RHEL-75958] - drm/amd/display: fix zero value for APU watermark_c (José Expósito) [RHEL-75958] - drm: panel-orientation-quirks: Add ZOTAC Gaming Zone (José Expósito) [RHEL-75958] - drm/amdgpu/gfx10: fix CSIB handling (José Expósito) [RHEL-75958] - drm/amd/display: Do Not Consider DSC if Valid Config Not Found (José Expósito) [RHEL-75958] - drm/amdgpu: Add basic validation for RAS header (José Expósito) [RHEL-75958] - drm/amd/display: Skip to enable dsc if it has been off (José Expósito) [RHEL-75958] - drm/amd/display: Add NULL pointer checks in dm_force_atomic_commit() (José Expósito) [RHEL-75958] - drm/nouveau/gsp: fix rm shutdown wait condition (José Expósito) [RHEL-75958] - drm/amd/display: Avoid divide by zero by initializing dummy pitch to 1 (José Expósito) [RHEL-75958] - drm/nouveau: fix hibernate on disabled GPU (José Expósito) [RHEL-75958] - drm/amdgpu/gfx11: fix CSIB handling (José Expósito) [RHEL-75958] - drm/amdkfd: Drop workaround for GC v9.4.3 revID 0 (José Expósito) [RHEL-75958] - drm/bridge: anx7625: change the gpiod_set_value API (José Expósito) [RHEL-75958] - drm/panthor: Don't update MMU_INT_MASK in panthor_mmu_irq_handler() (José Expósito) [RHEL-75958] - drm/bridge: anx7625: enable HPD interrupts (José Expósito) [RHEL-75958] - drm/panel/sharp-ls043t1le01: Use _multi variants (José Expósito) [RHEL-75958] - drm/bridge: analogix_dp: Add irq flag IRQF_NO_AUTOEN instead of calling disable_irq() (José Expósito) [RHEL-75958] - drm/xe: Fix CFI violation when accessing sysfs files (José Expósito) [RHEL-75958] - drm/amd/display: DCN32 null data check (José Expósito) [RHEL-75958] - drm/amdgpu: Fix API status offset for MES queue reset (José Expósito) [RHEL-75958] - drm/dp: add option to disable zero sized address only transactions. (José Expósito) [RHEL-75958] - drm/amdgpu/gfx6: fix CSIB handling (José Expósito) [RHEL-75958] - drm/bridge: select DRM_KMS_HELPER for AUX_BRIDGE (José Expósito) [RHEL-75958] - drm/amd/display: disable DPP RCG before DPP CLK enable (José Expósito) [RHEL-75958] - accel/ivpu: Fix warning in ivpu_gem_bo_free() (José Expósito) [RHEL-75958] - accel/ivpu: Use dma_resv_lock() instead of a custom mutex (José Expósito) [RHEL-75958] - accel/ivpu: Trigger device recovery on engine reset/resume failure (José Expósito) [RHEL-75958] - accel/ivpu: Use firmware names from upstream repo (José Expósito) [RHEL-75958] - accel/ivpu: Improve buffer object logging (José Expósito) [RHEL-75958] - drm/xe/lrc: Use a temporary buffer for WA BB (José Expósito) [RHEL-75958] - drm/xe/pxp: Clarify PXP queue creation behavior if PXP is not ready (José Expósito) [RHEL-75958] - drm/xe/pxp: Use the correct define in the set_property_funcs array (José Expósito) [RHEL-75958] - drm/xe: Rework eviction rejection of bound external bos (José Expósito) [RHEL-75958] - drm/xe/vsec: fix CONFIG_INTEL_VSEC dependency (José Expósito) [RHEL-75958] - drm/xe/vm: move xe_svm_init() earlier (José Expósito) [RHEL-75958] - drm/panel-simple: fix the warnings for the Evervision VGG644804 (José Expósito) [RHEL-75958] - drm/i915/display: Fix u32 overflow in SNPS PHY HDMI PLL setup (José Expósito) [RHEL-75958] - drm/amdgpu/gfx10: Refine Cleaner Shader for GFX10.1.10 (José Expósito) [RHEL-75958] - drm/i915/guc: Handle race condition where wakeref count drops below 0 (José Expósito) [RHEL-75958] - drm/i915/psr: Fix using wrong mask in REG_FIELD_PREP (José Expósito) [RHEL-75958] - drm/i915/guc: Check if expecting reply before decrementing outstanding_submission_g2h (José Expósito) [RHEL-75958] - drm/xe: Add missing documentation of rpa_freq (José Expósito) [RHEL-75958] - drm/xe: Make xe_gt_freq part of the Documentation (José Expósito) [RHEL-75958] - drm/bridge: analogix_dp: Fix clk-disable removal (José Expósito) [RHEL-75958] - drm/bridge: analogix_dp: Add support to get panel from the DP AUX bus (José Expósito) [RHEL-75958] - drm/bridge: analogix_dp: Remove CONFIG_PM related check in analogix_dp_bind()/analogix_dp_unbind() (José Expósito) [RHEL-75958] - accel/ivpu: Reorder Doorbell Unregister and Command Queue Destruction (José Expósito) [RHEL-75958] - drm/bridge: analogix_dp: Remove the unnecessary calls to clk_disable_unprepare() during probing (José Expósito) [RHEL-75958] - drm/connector: only call HDMI audio helper plugged cb if non-null (José Expósito) [RHEL-75958] - drm/panic: Use a decimal fifo to avoid u64 by u64 divide (José Expósito) [RHEL-75958] - drm/panic: clean Clippy warning (José Expósito) [RHEL-75958] - drm/xe/guc: Make creation of SLPC debugfs files conditional (José Expósito) [RHEL-75958] - drm/xe/guc: Don't expose GuC privileged debugfs files if VF (José Expósito) [RHEL-75958] - drm/xe/guc: Refactor GuC debugfs initialization (José Expósito) [RHEL-75958] - drm/i915/dp_mst: Use the correct connector while computing the link BPP limit on MST (José Expósito) [RHEL-75958] - drm/amd/display: Don't check for NULL divisor in fixpt code (José Expósito) [RHEL-75958] - drm/tegra: rgb: Fix the unbound reference count (José Expósito) [RHEL-75958] - drm/vkms: Adjust vkms_state->active_planes allocation type (José Expósito) [RHEL-75958] - drm: rcar-du: Fix memory leak in rcar_du_vsps_init() (José Expósito) [RHEL-75958] - drm/bridge: lt9611uxc: Fix an error handling path in lt9611uxc_probe() (José Expósito) [RHEL-75958] - drm/panel: samsung-sofef00: Drop s6e3fc2x01 support (José Expósito) [RHEL-75958] - drm/amdgpu: Refine Cleaner Shader MEC firmware version for GFX10.1.x GPUs (José Expósito) [RHEL-75958] - drm/panthor: Fix the panthor_gpu_coherency_init() error path (José Expósito) [RHEL-75958] - drm/panthor: Update panthor_mmu::irq::mask when needed (José Expósito) [RHEL-75958] - drm/panthor: Call panthor_gpu_coherency_init() after PM resume() (José Expósito) [RHEL-75958] - drm/panthor: Fix GPU_COHERENCY_ACE[_LITE] definitions (José Expósito) [RHEL-75958] - drm/amd/pp: Fix potential NULL pointer dereference in atomctrl_initialize_mc_reg_table (José Expósito) [RHEL-75958] - drm/xe/d3cold: Set power state to D3Cold during s2idle/s3 (José Expósito) [RHEL-75958] - drm/vmwgfx: Fix dumb buffer leak (José Expósito) [RHEL-75958] - drm/ci: fix merge request rules (José Expósito) [RHEL-75958] - drm/vmwgfx: Add error path for xa_store in vmw_bo_add_detached_resource (José Expósito) [RHEL-75958] - drm/vmwgfx: Add seqno waiter for sync_files (José Expósito) [RHEL-75958] - Revert "drm/amd/display: more liberal vmin/vmax update for freesync" (José Expósito) [RHEL-75958] - redhat/configs: automotive: Disable CONFIG_NUMA config (Dorinda Bassey) [RHEL-86292] - cpufreq: Fix setting policy limits when frequency tables are used (Mark Langsdorf) [RHEL-83800] - cpufreq: Avoid using inconsistent policy->min and policy->max (Mark Langsdorf) [RHEL-83800] - cpufreq: fix compile-test defaults (Mark Langsdorf) [RHEL-83800] - cpufreq: cppc: Fix invalid return value in .get() callback (Mark Langsdorf) [RHEL-83800] - cpufreq: intel_pstate: Fix hwp_get_cpu_scaling() (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Enable ITMT support after initializing core rankings (Mark Langsdorf) [RHEL-83800] - cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() (Mark Langsdorf) [RHEL-83800] - cpufreq: scmi: Fix null-ptr-deref in scmi_cpufreq_get_rate() (Mark Langsdorf) [RHEL-83800] - cpufreq: apple-soc: Fix null-ptr-deref in apple_soc_cpufreq_get_rate() (Mark Langsdorf) [RHEL-83800] - cpufreq: Do not enable by default during compile testing (Mark Langsdorf) [RHEL-83800] - cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist (Mark Langsdorf) [RHEL-83800] - cpufreq: sun50i: prevent out-of-bounds access (Mark Langsdorf) [RHEL-83800] - cpufreq: Reference count policy in cpufreq_update_limits() (Mark Langsdorf) [RHEL-83800] - cpufreq: Init cpufreq only for present CPUs (Mark Langsdorf) [RHEL-83800] - cpufreq: tegra186: Share policy per cluster (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Fix min_limit perf and freq updation for performance governor (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Drop actions in amd_pstate_epp_cpu_offline() (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Stop caching EPP (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Rework CPPC enabling (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Drop debug statements for policy setting (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Update cppc_req_cached for shared mem EPP writes (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Move all EPP tracing into *_update_perf and *_set_epp functions (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Cache CPPC request in shared mem case too (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Replace all AMD_CPPC_* macros with masks (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate-ut: Adjust variable scope (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate-ut: Run on all of the correct CPUs (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate-ut: Drop SUCCESS and FAIL enums (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate-ut: Allow lowest nonlinear and lowest to be the same (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate-ut: Use _free macro to free put policy (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Drop `cppc_cap1_cached` (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Overhaul locking (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Move perf values into a union (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Drop min and max cached frequencies (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Show a warning when a CPU fails to setup (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Invalidate cppc_req_cached during suspend (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Fix the clamping of perf values (Mark Langsdorf) [RHEL-83800] - cpufreq: tegra194: Allow building for Tegra234 (Mark Langsdorf) [RHEL-83800] - cpufreq: intel_pstate: Avoid SMP calls to get cpu-type (Mark Langsdorf) [RHEL-83800] - cpufreq: ppc_cbe: Remove powerpc Cell driver (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Remove the unncecessary driver_lock in amd_pstate_update_limits (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Use scope based cleanup for cpufreq_policy refs (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Add missing NULL ptr check in amd_pstate_update (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Remove the unnecessary cpufreq_update_policy call (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Modularize perf<->freq conversion (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Convert all perf values to u8 (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Pass min/max_limit_perf as min/max_perf to amd_pstate_update (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Remove the redundant des_perf clamping in adjust_perf (Mark Langsdorf) [RHEL-83800] - cpufreq/amd-pstate: Modify the min_perf calculation in adjust_perf callback (Mark Langsdorf) [RHEL-83800] - cpufreq: intel_pstate: Relocate platform preference check (Mark Langsdorf) [RHEL-83800] - cpufreq: governor: Fix negative 'idle_time' handling in dbs_update() (Mark Langsdorf) [RHEL-83800] - cpufreq: enable 1200Mhz clock speed for armada-37xx (Mark Langsdorf) [RHEL-83800] - cpufreq: intel_pstate: Make it possible to avoid enabling CAS (Mark Langsdorf) [RHEL-83800] - cpufreq: qcom: Set .set_boost directly (Mark Langsdorf) [RHEL-83800] - cpufreq: Remove cpufreq_enable_boost_support() (Mark Langsdorf) [RHEL-83800] - cpufreq: staticize policy_has_boost_freq() (Mark Langsdorf) [RHEL-83800] - cpufreq: cppc: Set policy->boost_supported (Mark Langsdorf) [RHEL-83800] - cpufreq: apple: Set .set_boost directly (Mark Langsdorf) [RHEL-83800] - cpufreq: Restrict enabling boost on policies with no boost frequencies (Mark Langsdorf) [RHEL-83800] - cpufreq: amd: Set policy->boost_supported (Mark Langsdorf) [RHEL-83800] - cpufreq: dt: Set .set_boost directly (Mark Langsdorf) [RHEL-83800] - cpufreq: scmi: Set .set_boost directly (Mark Langsdorf) [RHEL-83800] - cpufreq: powernv: Set .set_boost directly (Mark Langsdorf) [RHEL-83800] - cpufreq: speedstep: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: Export cpufreq_boost_set_sw() (Mark Langsdorf) [RHEL-83800] - cpufreq: vexpress: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: Stop checking for duplicate available/boost freq attributes (Mark Langsdorf) [RHEL-83800] - cpufreq: tegra: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: virtual: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: Remove cpufreq_generic_attrs (Mark Langsdorf) [RHEL-83800] - cpufreq: staticize cpufreq_boost_trigger_state() (Mark Langsdorf) [RHEL-83800] - cpufreq: powernv: Stop setting common freq attributes (Mark Langsdorf) [RHEL-83800] - cpufreq: sc520_freq: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: spear: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: scmi: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: powernow: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: scpi: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: sh: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: pmac: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: qoriq: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: qcom: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: imx6q: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: davinci: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: kirkwood: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: p4: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: omap: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: e_powersaver: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: elanfreq: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: pasemi: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: mediatek: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: acpi: Stop setting common freq attributes (Mark Langsdorf) [RHEL-83800] - cpufreq: brcmstb: Stop setting common freq attributes (Mark Langsdorf) [RHEL-83800] - cpufreq: Always create freq-table related sysfs file (Mark Langsdorf) [RHEL-83800] - cpufreq: bmips: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: dt: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: apple: Stop setting cpufreq_driver->attr field (Mark Langsdorf) [RHEL-83800] - cpufreq: amd-pstate: Remove unnecessary driver_lock in set_boost (Mark Langsdorf) [RHEL-83800] - cpufreq: scpi: compare kHz instead of Hz (Mark Langsdorf) [RHEL-83800] - acpi-cpufreq: Fix nominal_freq units to KHz in get_max_boost_ratio() (Mark Langsdorf) [RHEL-83800] - cpufreq: ACPI: Re-sync CPU boost state on system resume (Mark Langsdorf) [RHEL-83800] - cpufreq: acpi: Set policy->boost_supported (Mark Langsdorf) [RHEL-83800] - cpufreq: Introduce policy->boost_supported flag (Mark Langsdorf) [RHEL-83800] - cpufreq: Use str_enable_disable() helper (Mark Langsdorf) [RHEL-83800] - cpufreq: prevent NULL dereference in cpufreq_online() (Mark Langsdorf) [RHEL-83800] - cpufreq: ACPI: Remove set_boost in acpi_cpufreq_cpu_init() (Mark Langsdorf) [RHEL-83800] - cpufreq: CPPC: Fix wrong max_freq in policy initialization (Mark Langsdorf) [RHEL-83800] - cpufreq: Introduce a more generic way to set default per-policy boost flag (Mark Langsdorf) [RHEL-83800] - cpufreq: Fix re-boost issue after hotplugging a CPU (Mark Langsdorf) [RHEL-83800] - cpufreq: s3c64xx: Fix compilation warning (Mark Langsdorf) [RHEL-83800] - cpufreq: Use str_enable_disable()-like helpers (Mark Langsdorf) [RHEL-83800] - cpufreq: ACPI: Fix max-frequency computation (Mark Langsdorf) [RHEL-83800] - cpufreq: Move endif to the end of Kconfig file (Mark Langsdorf) [RHEL-83800] - cpufreq: sparc: change kzalloc to kcalloc (Mark Langsdorf) [RHEL-83800] - cpufreq: qcom: Implement clk_ops::determine_rate() for qcom_cpufreq* clocks (Mark Langsdorf) [RHEL-83800] - cpufreq: qcom: Fix qcom_cpufreq_hw_recalc_rate() to query LUT if LMh IRQ is not available (Mark Langsdorf) [RHEL-83800] - cpufreq: apple-soc: Add Apple A7-A8X SoC cpufreq support (Mark Langsdorf) [RHEL-83800] - cpufreq: apple-soc: Set fallback transition latency to APPLE_DVFS_TRANSITION_TIMEOUT (Mark Langsdorf) [RHEL-83800] - cpufreq: apple-soc: Increase cluster switch timeout to 400us (Mark Langsdorf) [RHEL-83800] - cpufreq: apple-soc: Use 32-bit read for status register (Mark Langsdorf) [RHEL-83800] - cpufreq: apple-soc: Allow per-SoC configuration of APPLE_DVFS_CMD_PS1 (Mark Langsdorf) [RHEL-83800] - cpufreq: apple-soc: Drop setting the PS2 field on M2+ (Mark Langsdorf) [RHEL-83800] - cpufreq: fix using cpufreq-dt as module (Mark Langsdorf) [RHEL-83800] - cpufreq: scmi: Register for limit change notifications (Mark Langsdorf) [RHEL-83800] - cpufreq: maple: Remove maple driver (Mark Langsdorf) [RHEL-83800] - cpufreq: ACPI: Simplify MSR read on the boot CPU (Mark Langsdorf) [RHEL-83800] - cpufreq: sun50i: add a100 cpufreq support (Mark Langsdorf) [RHEL-83800] - cpufreq: mediatek-hw: Fix wrong return value in mtk_cpufreq_get_cpu_power() (Mark Langsdorf) [RHEL-83800] - cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_power() (Mark Langsdorf) [RHEL-83800] - cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_cost() (Mark Langsdorf) [RHEL-83800] - cpufreq: scmi: Fix cleanup path when boost enablement fails (Mark Langsdorf) [RHEL-83800] - cpufreq: CPPC: Fix possible null-ptr-deref for cppc_get_cpu_cost() (Mark Langsdorf) [RHEL-83800] - cpufreq: CPPC: Fix possible null-ptr-deref for cpufreq_cpu_get_raw() (Mark Langsdorf) [RHEL-83800] - Revert "cpufreq: brcmstb-avs-cpufreq: Fix initial command check" (Mark Langsdorf) [RHEL-83800] - cpufreq: add virtual-cpufreq driver (Mark Langsdorf) [RHEL-83800] - redhat/configs: enable the virtual-cpufreq driver (Mark Langsdorf) [RHEL-83800] - cpufreq: Switch back to struct platform_driver::remove() (Mark Langsdorf) [RHEL-83800] - cpufreq: use proper units for frequency (Mark Langsdorf) [RHEL-83800] - cpufreq: ti-cpufreq: Remove revision offsets in AM62 family (Mark Langsdorf) [RHEL-83800] - cpufreq: ti-cpufreq: Allow backward compatibility for efuse syscon (Mark Langsdorf) [RHEL-83800] - cppc_cpufreq: Remove HiSilicon CPPC workaround (Mark Langsdorf) [RHEL-83800] - Re-enable vxcan (CONFIG_CAN_VXCAN) for automotive (Radu Rendec) [RHEL-83276] - redhat/configs: automotive: builtin virtio-mmio (Eric Chanudet) [RHEL-82312] - redhat/configs: automotive: set CONFIG_TIMEOUT_PANIC (Enric Balletbo i Serra) [RHEL-76119] - platform/x86: dell-wmi-sysman: Fix WMI data block retrieval in sysfs callbacks (CKI Backport Bot) [RHEL-106717] {CVE-2025-38412} - bus: mhi: host: Fix race between unprepare and queue_buf (Mattijs Korpershoek) [RHEL-93880] - bus: mhi: host: pci_generic: Add support for SA8775P endpoint (Mattijs Korpershoek) [RHEL-93880] - bus: mhi: host: Remove unused functions (Mattijs Korpershoek) [RHEL-93880] - PCI: epf-mhi: Update device ID for SA8775P (Mattijs Korpershoek) [RHEL-93880] - bus: mhi: host: Avoid possible uninitialized fw_load_type (Mattijs Korpershoek) [RHEL-93880] - bus: mhi: host: Add a policy to enable image transfer via BHIe in PBL (Mattijs Korpershoek) [RHEL-93880] - bus: mhi: host: Refactor BHI/BHIe based firmware loading (Mattijs Korpershoek) [RHEL-93880] - bus: mhi: host: pci_generic: fix MHI BAR mapping (Mattijs Korpershoek) [RHEL-93880] - bus: mhi: host: pci_generic: Use pcim_iomap_region() to request and map MHI BAR (Mattijs Korpershoek) [RHEL-93880] - net: openvswitch: Fix the dead loop of MPLS parse (Aaron Conole) [RHEL-95608] - devres: Move devm_*_action*() APIs to devres.h (CKI Backport Bot) [RHEL-105008] - fwctl: Fix repeated device word in log message (Benjamin Poirier) [RHEL-86015] - mlx5: Create an auxiliary device for fwctl_mlx5 (Benjamin Poirier) [RHEL-86015] - fwctl/mlx5: Support for communicating with mlx5 fw (Benjamin Poirier) [RHEL-86015] - fwctl: Add documentation (Benjamin Poirier) [RHEL-86015] - fwctl: FWCTL_RPC to execute a Remote Procedure Call to device firmware (Benjamin Poirier) [RHEL-86015] - taint: Add TAINT_FWCTL (Benjamin Poirier) [RHEL-86015] - fwctl: FWCTL_INFO to return basic information about the device (Benjamin Poirier) [RHEL-86015] - fwctl: Basic ioctl dispatch for the character device (Benjamin Poirier) [RHEL-86015] - fwctl: Add basic structure for a class subsystem with a cdev (Benjamin Poirier) [RHEL-86015] - net: bridge: Do not offload IGMP/MLD messages (Mohammad Heib) [RHEL-75595] - bridge: mcast: Fix use-after-free during router port configuration (Mohammad Heib) [RHEL-75595] - bridge: netfilter: Fix forwarding of fragmented packets (Mohammad Heib) [RHEL-75595] - selftests: net/bridge : add tests for per vlan snooping with stp state changes (Mohammad Heib) [RHEL-75595] - net: bridge: mcast: update multicast contex when vlan state is changed (Mohammad Heib) [RHEL-75595] - net: bridge: mcast: re-implement br_multicast_{enable, disable}_port functions (Mohammad Heib) [RHEL-75595] - net: bridge: switchdev: do not notify new brentries as changed (Mohammad Heib) [RHEL-75595] - net: bridge: locally receive all multicast packets if IFF_ALLMULTI is set (Mohammad Heib) [RHEL-75595] - net: bridge: mcast: Notify on mdb offload failure (Mohammad Heib) [RHEL-75595] - net: bridge: Add offload_fail_notification bopt (Mohammad Heib) [RHEL-75595] - net: bridge: mcast: Add offload failed mdb flag (Mohammad Heib) [RHEL-75595] - selftests: test_bridge_neigh_suppress: Test unicast ARP/NS with suppression (Mohammad Heib) [RHEL-75595] - net: bridge: Prevent unicast ARP/NS packets from being suppressed by bridge (Mohammad Heib) [RHEL-75595] - net: Remove RTNL dance for SIOCBRADDIF and SIOCBRDELIF. (Mohammad Heib) [RHEL-75595] - net: switchdev: Convert blocking notification chain to a raw one (Mohammad Heib) [RHEL-75595] - bridge: mdb: Allow replace of a host-joined group (Mohammad Heib) [RHEL-75595] - bridge: Make br_is_nd_neigh_msg() accept pointer to "const struct sk_buff" (Mohammad Heib) [RHEL-75595] - selftests: net: Add a VLAN bridge binding selftest (Mohammad Heib) [RHEL-75595] - net: bridge: Handle changes in VLAN_FLAG_BRIDGE_BINDING (Mohammad Heib) [RHEL-75595] - net: bridge: Extract a helper to handle bridge_binding toggles (Mohammad Heib) [RHEL-75595] - net: bridge: constify 'struct bin_attribute' (Mohammad Heib) [RHEL-75595] - bridge: Allow deleting FDB entries with non-existent VLAN (Mohammad Heib) [RHEL-75595] - net: bridge: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (Mohammad Heib) [RHEL-75595] - wifi: rtw88: fix the 'para' buffer size to avoid reading out of bounds (CKI Backport Bot) [RHEL-103170] {CVE-2025-38159} - tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer (Xin Long) [RHEL-96627] - net: tipc: fix refcount warning in tipc_aead_encrypt (Xin Long) [RHEL-96627] - tipc: use kfree_sensitive() for aead cleanup (Xin Long) [RHEL-96627] - net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done (Xin Long) [RHEL-96627] - tipc: fix NULL pointer dereference in tipc_mon_reinit_self() (Xin Long) [RHEL-96627] - tipc: Removing deprecated strncpy() (Xin Long) [RHEL-96627] - tipc: fix memory leak in tipc_link_xmit (Xin Long) [RHEL-96627] - wifi: mt76: mt7925: add rfkill_poll for hardware rfkill (Jose Ignacio Tornos Martinez) [RHEL-100945] - wifi: ath12k: fix invalid access to memory (CKI Backport Bot) [RHEL-103230] {CVE-2025-38292} - netlink: specs: dpll: replace underscores with dashes in names (CKI Backport Bot) [RHEL-101739] - dpll: fix xa_alloc_cyclic() error handling (CKI Backport Bot) [RHEL-101739] - dpll: Add an assertion to check freq_supported_num (CKI Backport Bot) [RHEL-101739] - tools: ynl-gen: de-kdocify enums with no doc for entries (CKI Backport Bot) [RHEL-101739] - redhat/configs: automotive: enable MHI_BUS_EP (Mattijs Korpershoek) [RHEL-85098] - arp: use RCU protection in arp_xmit() (Guillaume Nault) [RHEL-96598] - ipv4: use RCU protection in __ip_rt_update_pmtu() (Guillaume Nault) [RHEL-96598] - geneve: Suppress list corruption splat in geneve_destroy_tunnels(). (Guillaume Nault) [RHEL-96614] - geneve: Fix use-after-free in geneve_find_dev(). (Guillaume Nault) [RHEL-96614] - irqchip/gic-v3-its: Fix over allocation in itt_alloc_pool() (Gavin Shan) [RHEL-105602] - irqchip/gic-v3-its: Rely on genpool alignment (Gavin Shan) [RHEL-105602] - irqchip/gic-v3-its: Share ITS tables with a non-trusted hypervisor (Gavin Shan) [RHEL-105602] - NFSv4/flexfiles: Fix handling of NFS level errors in I/O (Olga Kornievskaia) [RHEL-102164] - NFSv4/pNFS: Fix a race to wake on NFS_LAYOUT_DRAIN (Olga Kornievskaia) [RHEL-102164] - nfs: Clean up /proc/net/rpc/nfs when nfs_fs_proc_net_init() fails. (Olga Kornievskaia) [RHEL-102164] - sunrpc: fix loop in gss seqno cache (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Cleanup/fix initial rq_pages allocation (Olga Kornievskaia) [RHEL-102164] - NFSD: Avoid corruption of a referring call list (Olga Kornievskaia) [RHEL-102164] - flexfiles/pNFS: update stats on NFS4ERR_DELAY for v4.1 DSes (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Remove dead code from xs_tcp_tls_setup_socket() (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Prevent hang on NFS mount with xprtsec=[m]tls (Olga Kornievskaia) [RHEL-102164] - nfs: ignore SB_RDONLY when remounting nfs (Olga Kornievskaia) [RHEL-102164] - nfs: clear SB_RDONLY before getting superblock (Olga Kornievskaia) [RHEL-102164] - NFS: always probe for LOCALIO support asynchronously (Olga Kornievskaia) [RHEL-102164] - pnfs/flexfiles: connect to NFSv3 DS using TLS if MDS connection uses TLS (Olga Kornievskaia) [RHEL-102164] - NFS: add localio to sysfs (Olga Kornievskaia) [RHEL-102164] - nfs: use writeback_iter directly (Olga Kornievskaia) [RHEL-102164] - nfs: refactor nfs_do_writepage (Olga Kornievskaia) [RHEL-102164] - nfs: don't return AOP_WRITEPAGE_ACTIVATE from nfs_do_writepage (Olga Kornievskaia) [RHEL-102164] - nfs: fold nfs_page_async_flush into nfs_do_writepage (Olga Kornievskaia) [RHEL-102164] - NFSv4: Always set NLINK even if the server doesn't support it (Olga Kornievskaia) [RHEL-102164] - NFSv4: Allow FREE_STATEID to clean up delegations (Olga Kornievskaia) [RHEL-102164] - NFSv4: Don't check for OPEN feature support in v4.1 (Olga Kornievskaia) [RHEL-102164] - NFSv4.2: fix setattr caching of TIME_[MODIFY|ACCESS]_SET when timestamps are delegated (Olga Kornievskaia) [RHEL-102164] - NFS: Add support for fallocate(FALLOC_FL_ZERO_RANGE) (Olga Kornievskaia) [RHEL-102164] - fs/nfs/read: fix double-unlock bug in nfs_return_empty_folio() (Olga Kornievskaia) [RHEL-102164] - NFSv4: xattr handlers should check for absent nfs filehandles (Olga Kornievskaia) [RHEL-102164] - nfs: add a refcount tracker for struct net as held by the nfs_client (Olga Kornievskaia) [RHEL-102164] - sunrpc: don't immediately retransmit on seqno miss (Olga Kornievskaia) [RHEL-102164] - sunrpc: implement rfc2203 rpcsec_gss seqnum cache (Olga Kornievskaia) [RHEL-102164] - NFS: Avoid flushing data while holding directory locks in nfs_rename() (Olga Kornievskaia) [RHEL-102164] - NFS/pnfs: Fix the error path in pnfs_layoutreturn_retry_later_locked() (Olga Kornievskaia) [RHEL-102164] - NFSv4/pnfs: Reset the layout state after a layoutreturn (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Bump the maximum payload size for the server (Olga Kornievskaia) [RHEL-102164] - NFSD: Add a "default" block size (Olga Kornievskaia) [RHEL-102164] - NFSD: Remove NFSSVC_MAXBLKSIZE_V2 macro (Olga Kornievskaia) [RHEL-102164] - NFSD: Remove NFSD_BUFSIZE (Olga Kornievskaia) [RHEL-102164] - sunrpc: Remove the RPCSVC_MAXPAGES macro (Olga Kornievskaia) [RHEL-102164] - svcrdma: Adjust the number of entries in svc_rdma_send_ctxt::sc_pages (Olga Kornievskaia) [RHEL-102164] - svcrdma: Adjust the number of entries in svc_rdma_recv_ctxt::rc_pages (Olga Kornievskaia) [RHEL-102164] - sunrpc: Adjust size of socket's receive page array dynamically (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Remove svc_rqst :: rq_vec (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Remove svc_fill_write_vector() (Olga Kornievskaia) [RHEL-102164] - NFSD: Use rqstp->rq_bvec in nfsd_iter_write() (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Export xdr_buf_to_bvec() (Olga Kornievskaia) [RHEL-102164] - NFSD: De-duplicate the svc_fill_write_vector() call sites (Olga Kornievskaia) [RHEL-102164] - NFSD: Use rqstp->rq_bvec in nfsd_iter_read() (Olga Kornievskaia) [RHEL-102164] - sunrpc: Replace the rq_bvec array with dynamically-allocated memory (Olga Kornievskaia) [RHEL-102164] - sunrpc: Replace the rq_pages array with dynamically-allocated memory (Olga Kornievskaia) [RHEL-102164] - sunrpc: Remove backchannel check in svc_init_buffer() (Olga Kornievskaia) [RHEL-102164] - sunrpc: Add a helper to derive maxpages from sv_max_mesg (Olga Kornievskaia) [RHEL-102164] - svcrdma: Reduce the number of rdma_rw contexts per-QP (Olga Kornievskaia) [RHEL-102164] - nfs: Use a folio in nfs_get_link() (Olga Kornievskaia) [RHEL-102164] - nfsd: remove legacy dprintks from GETATTR and STATFS codepaths (Olga Kornievskaia) [RHEL-102164] - nfsd: remove legacy READDIR dprintks (Olga Kornievskaia) [RHEL-102164] - nfsd: remove dprintks for v2/3 RENAME events (Olga Kornievskaia) [RHEL-102164] - nfsd: remove REMOVE/RMDIR dprintks (Olga Kornievskaia) [RHEL-102164] - nfsd: remove old LINK dprintks (Olga Kornievskaia) [RHEL-102164] - nfsd: remove old v2/3 SYMLINK dprintks (Olga Kornievskaia) [RHEL-102164] - nfsd: remove old v2/3 create path dprintks (Olga Kornievskaia) [RHEL-102164] - nfsd: add tracepoint for getattr and statfs events (Olga Kornievskaia) [RHEL-102164] - nfsd: add tracepoint to nfsd_readdir (Olga Kornievskaia) [RHEL-102164] - nfsd: add tracepoint to nfsd_rename (Olga Kornievskaia) [RHEL-102164] - nfsd: add tracepoints for unlink events (Olga Kornievskaia) [RHEL-102164] - nfsd: add tracepoint to nfsd_link() (Olga Kornievskaia) [RHEL-102164] - nfsd: add tracepoint to nfsd_symlink (Olga Kornievskaia) [RHEL-102164] - nfsd: add nfsd_vfs_create tracepoints (Olga Kornievskaia) [RHEL-102164] - nfsd: add a tracepoint to nfsd_lookup_dentry (Olga Kornievskaia) [RHEL-102164] - nfsd: add a tracepoint for nfsd_setattr (Olga Kornievskaia) [RHEL-102164] - NFSD: Add a Call equivalent to the NFSD_TRACE_PROC_RES macros (Olga Kornievskaia) [RHEL-102164] - NFSD: Use sockaddr instead of a generic array (Olga Kornievskaia) [RHEL-102164] - NFSD: Implement FATTR4_CLONE_BLKSIZE attribute (Olga Kornievskaia) [RHEL-102164] - nfsd: use SHA-256 library API instead of crypto_shash API (Olga Kornievskaia) [RHEL-102164] - svcrdma: Unregister the device if svc_rdma_accept() fails (Olga Kornievskaia) [RHEL-102164] - sunrpc: allow SOMAXCONN backlogged TCP connections (Olga Kornievskaia) [RHEL-102164] - nfsd: Initialize ssc before laundromat_work to prevent NULL dereference (Olga Kornievskaia) [RHEL-102164] - sunrpc: add info about xprt queue times to svc_xprt_dequeue tracepoint (Olga Kornievskaia) [RHEL-102164] - nfsd: add commit start/done tracepoints around nfsd_commit() (Olga Kornievskaia) [RHEL-102164] - nfsd: remove redundant WARN_ON_ONCE in nfsd4_write (Olga Kornievskaia) [RHEL-102164] - NFSD: Add experimental setting to disable the use of splice read (Olga Kornievskaia) [RHEL-102164] - NFSD: Add /sys/kernel/debug/nfsd (Olga Kornievskaia) [RHEL-102164] - NFSD: fix race between nfsd registration and exports_proc (Olga Kornievskaia) [RHEL-102164] - NFSD: unregister filesystem in case genl_register_family() fails (Olga Kornievskaia) [RHEL-102164] - sunrpc: fix race in cache cleanup causing stale nextcheck time (Olga Kornievskaia) [RHEL-102164] - sunrpc: update nextcheck time when adding new cache entries (Olga Kornievskaia) [RHEL-102164] - NFSD: Record each NFSv4 call's session slot index (Olga Kornievskaia) [RHEL-102164] - NFSD: Implement CB_SEQUENCE referring call lists (Olga Kornievskaia) [RHEL-102164] - NFSD: Implement CB_SEQUENCE referring call lists (Olga Kornievskaia) [RHEL-102164] - NFSD: Shorten CB_OFFLOAD response to NFS4ERR_DELAY (Olga Kornievskaia) [RHEL-102164] - NFSD: OFFLOAD_CANCEL should mark an async COPY as completed (Olga Kornievskaia) [RHEL-102164] - NFS/localio: Fix a race in nfs_local_open_fh() (Olga Kornievskaia) [RHEL-102164] - nfs: nfs3acl: drop useless assignment in nfs3_get_acl() (Olga Kornievskaia) [RHEL-102164] - nfs: direct: drop useless initializer in nfs_direct_write_completion() (Olga Kornievskaia) [RHEL-102164] - nfs: move the nfs4_data_server_cache into struct nfs_net (Olga Kornievskaia) [RHEL-102164] - nfs: don't share pNFS DS connections between net namespaces (Olga Kornievskaia) [RHEL-102164] - nfs: handle failure of nfs_get_lock_context in unlock path (Olga Kornievskaia) [RHEL-102164] - pNFS/flexfiles: Record the RPC errors in the I/O tracepoints (Olga Kornievskaia) [RHEL-102164] - NFSv4/pnfs: Layoutreturn on close must handle fatal networking errors (Olga Kornievskaia) [RHEL-102164] - NFSv4: Handle fatal ENETDOWN and ENETUNREACH errors (Olga Kornievskaia) [RHEL-102164] - Revert "sunrpc: clean cache_detail immediately when flush is written frequently" (Olga Kornievskaia) [RHEL-102164] - nfsd: decrease sc_count directly if fail to queue dl_recall (Olga Kornievskaia) [RHEL-102164] - nfs: add missing selections of CONFIG_CRC32 (Olga Kornievskaia) [RHEL-102164] - nfs: Add missing release on error in nfs_lock_and_join_requests() (Olga Kornievskaia) [RHEL-102164] - NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() (Olga Kornievskaia) [RHEL-102164] - NFS: Don't allow waiting for exiting tasks (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Don't allow waiting for exiting tasks (Olga Kornievskaia) [RHEL-102164] - NFSv4: Treat ENETUNREACH errors as fatal for state recovery (Olga Kornievskaia) [RHEL-102164] - NFSv4: clp->cl_cons_state < 0 signifies an invalid nfs_client (Olga Kornievskaia) [RHEL-102164] - NFSv4: Further cleanups to shutdown loops (Olga Kornievskaia) [RHEL-102164] - NFS: Shut down the nfs_client only after all the superblocks (Olga Kornievskaia) [RHEL-102164] - SUNRPC: rpc_clnt_set_transport() must not change the autobind setting (Olga Kornievskaia) [RHEL-102164] - SUNRPC: rpcbind should never reset the port to the value '0' (Olga Kornievskaia) [RHEL-102164] - pNFS/flexfiles: Report ENETDOWN as a connection error (Olga Kornievskaia) [RHEL-102164] - pNFS/flexfiles: Treat ENETUNREACH errors as fatal in containers (Olga Kornievskaia) [RHEL-102164] - NFS: Treat ENETUNREACH errors as fatal in containers (Olga Kornievskaia) [RHEL-102164] - NFS: Add a mount option to make ENETUNREACH errors fatal (Olga Kornievskaia) [RHEL-102164] - sunrpc: Add a sysfs file for one-step xprt deletion (Olga Kornievskaia) [RHEL-102164] - sunrpc: Add a sysfs file for adding a new xprt (Olga Kornievskaia) [RHEL-102164] - sunrpc: Add a sysfs files for rpc_clnt information (Olga Kornievskaia) [RHEL-102164] - sunrpc: Add a sysfs attr for xprtsec (Olga Kornievskaia) [RHEL-102164] - NFS: Add implid to sysfs (Olga Kornievskaia) [RHEL-102164] - NFS: Refactor trace_nfs4_offload_cancel (Olga Kornievskaia) [RHEL-102164] - NFS: Use NFSv4.2's OFFLOAD_STATUS operation (Olga Kornievskaia) [RHEL-102164] - NFS: Implement NFSv4.2's OFFLOAD_STATUS operation (Olga Kornievskaia) [RHEL-102164] - NFS: Implement NFSv4.2's OFFLOAD_STATUS XDR (Olga Kornievskaia) [RHEL-102164] - NFS: fix open_owner_id_maxsz and related fields. (Olga Kornievskaia) [RHEL-102164] - NFSv4: Avoid unnecessary scans of filesystems for delayed delegations (Olga Kornievskaia) [RHEL-102164] - NFSv4: Avoid unnecessary scans of filesystems for expired delegations (Olga Kornievskaia) [RHEL-102164] - NFSv4: Avoid unnecessary scans of filesystems for returning delegations (Olga Kornievskaia) [RHEL-102164] - NFSv4: Don't trigger uneccessary scans for return-on-close delegations (Olga Kornievskaia) [RHEL-102164] - NFSD: Add a Kconfig setting to enable delegated timestamps (Olga Kornievskaia) [RHEL-102164] - redhat/configs: add CONFIG_NFSD_V4_DELEG_TIMESTAMPS (Olga Kornievskaia) [RHEL-102164] - sysctl: Fixes nsm_local_state bounds (Olga Kornievskaia) [RHEL-102164] - nfsd: use a long for the count in nfsd4_state_shrinker_count() (Olga Kornievskaia) [RHEL-102164] - nfsd: remove obsolete comment from nfs4_alloc_stid (Olga Kornievskaia) [RHEL-102164] - nfsd: remove unneeded forward declaration of nfsd4_mark_cb_fault() (Olga Kornievskaia) [RHEL-102164] - nfsd: reorganize struct nfs4_delegation for better packing (Olga Kornievskaia) [RHEL-102164] - nfsd: handle errors from rpc_call_async() (Olga Kornievskaia) [RHEL-102164] - nfsd: move cb_need_restart flag into cb_flags (Olga Kornievskaia) [RHEL-102164] - nfsd: replace CB_GETATTR_BUSY with NFSD4_CALLBACK_RUNNING (Olga Kornievskaia) [RHEL-102164] - nfsd: eliminate cl_ra_cblist and NFSD4_CLIENT_CB_RECALL_ANY (Olga Kornievskaia) [RHEL-102164] - nfsd: prevent callback tasks running concurrently (Olga Kornievskaia) [RHEL-102164] - nfsd: disallow file locking and delegations for NFSv4 reexport (Olga Kornievskaia) [RHEL-102164] - nfsd: filecache: drop the list_lru lock during lock gc scans (Olga Kornievskaia) [RHEL-102164] - nfsd: filecache: don't repeatedly add/remove files on the lru list (Olga Kornievskaia) [RHEL-102164] - nfsd: filecache: introduce NFSD_FILE_RECENT (Olga Kornievskaia) [RHEL-102164] - nfsd: filecache: use list_lru_walk_node() in nfsd_file_gc() (Olga Kornievskaia) [RHEL-102164] - nfsd: filecache: use nfsd_file_dispose_list() in nfsd_file_close_inode_sync() (Olga Kornievskaia) [RHEL-102164] - NFSD: Re-organize nfsd_file_gc_worker() (Olga Kornievskaia) [RHEL-102164] - nfsd: filecache: remove race handling. (Olga Kornievskaia) [RHEL-102164] - fs: nfs: acl: Avoid -Wflex-array-member-not-at-end warning (Olga Kornievskaia) [RHEL-102164] - NFSD: Fix callback decoder status codes (Olga Kornievskaia) [RHEL-102164] - nfsd: eliminate special handling of NFS4ERR_SEQ_MISORDERED (Olga Kornievskaia) [RHEL-102164] - nfsd: handle NFS4ERR_BADSLOT on CB_SEQUENCE better (Olga Kornievskaia) [RHEL-102164] - nfsd: when CB_SEQUENCE gets ESERVERFAULT don't increment seq_nr (Olga Kornievskaia) [RHEL-102164] - nfsd: only check RPC_SIGNALLED() when restarting rpc_task (Olga Kornievskaia) [RHEL-102164] - nfsd: always release slot when requeueing callback (Olga Kornievskaia) [RHEL-102164] - nfsd: lift NFSv4.0 handling out of nfsd4_cb_sequence_done() (Olga Kornievskaia) [RHEL-102164] - nfsd: prepare nfsd4_cb_sequence_done() for error handling rework (Olga Kornievskaia) [RHEL-102164] - nfsd: put dl_stid if fail to queue dl_recall (Olga Kornievskaia) [RHEL-102164] - nfsd: allow SC_STATUS_FREEABLE when searching via nfs4_lookup_stateid() (Olga Kornievskaia) [RHEL-102164] - svcrdma: do not unregister device for listeners (Olga Kornievskaia) [RHEL-102164] - NFSD: Fix trace_nfsd_slot_seqid_sequence (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Remove unused make_checksum (Olga Kornievskaia) [RHEL-102164] - NFSD: Return NFS4ERR_FILE_OPEN only when linking an open file (Olga Kornievskaia) [RHEL-102164] - NFSD: Return NFS4ERR_FILE_OPEN only when renaming over an open file (Olga Kornievskaia) [RHEL-102164] - NFSD: Never return NFS4ERR_FILE_OPEN when removing a directory (Olga Kornievskaia) [RHEL-102164] - NFSD: nfsd_unlink() clobbers non-zero status returned from fh_fill_pre_attrs() (Olga Kornievskaia) [RHEL-102164] - nfsd: remove the redundant mapping of nfserr_mlink (Olga Kornievskaia) [RHEL-102164] - NFSD: Skip sending CB_RECALL_ANY when the backchannel isn't up (Olga Kornievskaia) [RHEL-102164] - nfsd: adjust WARN_ON_ONCE in revoke_delegation (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Remove unused krb5_decrypt (Olga Kornievskaia) [RHEL-102164] - sunrpc: clean cache_detail immediately when flush is written frequently (Olga Kornievskaia) [RHEL-102164] - nfsd: drop fh_update() from S_IFDIR branch of nfsd_create_locked() (Olga Kornievskaia) [RHEL-102164] - nfs/vfs: discard d_exact_alias() (Olga Kornievskaia) [RHEL-102164] - sunrpc: suppress warnings for unused procfs functions (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Handle -ETIMEDOUT return from tlshd (Olga Kornievskaia) [RHEL-102164] - NFSv4: Fix a deadlock when recovering state on a sillyrenamed file (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Prevent looping due to rpc_signal_task() races (Olga Kornievskaia) [RHEL-102164] - NFS: Adjust delegated timestamps for O_DIRECT reads and writes (Olga Kornievskaia) [RHEL-102164] - NFS: O_DIRECT writes must check and adjust the file length (Olga Kornievskaia) [RHEL-102164] - nfsd: fix __fh_verify for localio (Olga Kornievskaia) [RHEL-102164] - nfsd: fix uninitialised slot info when a request is retried (Olga Kornievskaia) [RHEL-102164] - sunrpc: simplify rpcauth_cache_shrink_count() (Olga Kornievskaia) [RHEL-102164] - SUNRPC: do not retry on EKEYEXPIRED when user TGT ticket expired (Olga Kornievskaia) [RHEL-102164] - sunrpc: add netns inum and srcaddr to debugfs rpc_xprt info (Olga Kornievskaia) [RHEL-102164] - sunrpc: Remove gss_{de,en}crypt_xdr_buf deadcode (Olga Kornievskaia) [RHEL-102164] - sunrpc: Remove gss_generic_token deadcode (Olga Kornievskaia) [RHEL-102164] - sunrpc: Remove unused xprt_iter_get_xprt (Olga Kornievskaia) [RHEL-102164] - Revert "SUNRPC: Reduce thread wake-up rate when receiving large RPC messages" (Olga Kornievskaia) [RHEL-102164] - nfsd: implement OPEN_ARGS_SHARE_ACCESS_WANT_OPEN_XOR_DELEGATION (Olga Kornievskaia) [RHEL-102164] - nfsd: handle delegated timestamps in SETATTR (Olga Kornievskaia) [RHEL-102164] - nfsd: add support for delegated timestamps (Olga Kornievskaia) [RHEL-102164] - nfsd: rework NFS4_SHARE_WANT_* flag handling (Olga Kornievskaia) [RHEL-102164] - nfsd: add support for FATTR4_OPEN_ARGUMENTS (Olga Kornievskaia) [RHEL-102164] - nfsd: prepare delegation code for handing out *_ATTRS_DELEG delegations (Olga Kornievskaia) [RHEL-102164] - nfsd: rename NFS4_SHARE_WANT_* constants to OPEN4_SHARE_ACCESS_WANT_* (Olga Kornievskaia) [RHEL-102164] - nfsd: switch to autogenerated definitions for open_delegation_type4 (Olga Kornievskaia) [RHEL-102164] - nfs_common: make include/linux/nfs4.h include generated nfs4_1.h (Olga Kornievskaia) [RHEL-102164] - nfsd: fix handling of delegated change attr in CB_GETATTR (Olga Kornievskaia) [RHEL-102164] - NFSv4.2: make LAYOUTSTATS and LAYOUTERROR MOVEABLE (Olga Kornievskaia) [RHEL-102164] - NFSv4.2: mark OFFLOAD_CANCEL MOVEABLE (Olga Kornievskaia) [RHEL-102164] - NFSv4.2: fix COPY_NOTIFY xdr buf size calculation (Olga Kornievskaia) [RHEL-102164] - NFS: Rename struct nfs4_offloadcancel_data (Olga Kornievskaia) [RHEL-102164] - NFS: Fix typo in OFFLOAD_CANCEL comment (Olga Kornievskaia) [RHEL-102164] - NFS: CB_OFFLOAD can return NFS4ERR_DELAY (Olga Kornievskaia) [RHEL-102164] - SUNRPC: display total RPC tasks for RPC client (Olga Kornievskaia) [RHEL-102164] - SUNRPC: only put task on cl_tasks list after the RPC call slot is reserved. (Olga Kornievskaia) [RHEL-102164] - SUNRPC: Document validity guarantees of the pointer returned by reserve_space (Olga Kornievskaia) [RHEL-102164] - NFSD: Insulate nfsd4_encode_fattr4() from page boundaries in the encode buffer (Olga Kornievskaia) [RHEL-102164] - NFSD: Insulate nfsd4_encode_secinfo() from page boundaries in the encode buffer (Olga Kornievskaia) [RHEL-102164] - NFSD: Refactor nfsd4_do_encode_secinfo() again (Olga Kornievskaia) [RHEL-102164] - NFSD: Insulate nfsd4_encode_readlink() from page boundaries in the encode buffer (Olga Kornievskaia) [RHEL-102164] - NFSD: Insulate nfsd4_encode_read_plus_data() from page boundaries in the encode buffer (Olga Kornievskaia) [RHEL-102164] - NFSD: Insulate nfsd4_encode_read_plus() from page boundaries in the encode buffer (Olga Kornievskaia) [RHEL-102164] - NFSD: Insulate nfsd4_encode_read() from page boundaries in the encode buffer (Olga Kornievskaia) [RHEL-102164] - NFSD: Encode COMPOUND operation status on page boundaries (Olga Kornievskaia) [RHEL-102164] - nfsd: add shrinker to reduce number of slots allocated per session (Olga Kornievskaia) [RHEL-102164] - nfsd: add support for freeing unused session-DRC slots (Olga Kornievskaia) [RHEL-102164] - nfsd: allocate new session-based DRC slots on demand. (Olga Kornievskaia) [RHEL-102164] - nfsd: add session slot count to /proc/fs/nfsd/clients/*/info (Olga Kornievskaia) [RHEL-102164] - nfsd: remove artificial limits on the session-based DRC (Olga Kornievskaia) [RHEL-102164] - nfsd: use an xarray to store v4.1 session slots (Olga Kornievskaia) [RHEL-102164] - sunrpc: remove all connection limit configuration (Olga Kornievskaia) [RHEL-102164] - nfsd: don't use sv_nrthreads in connection limiting calculations. (Olga Kornievskaia) [RHEL-102164] - nfsd: fix legacy client tracking initialization (Olga Kornievskaia) [RHEL-102164] - NFSD: Clean up unused variable (Olga Kornievskaia) [RHEL-102164] - nfsd: trace: remove redundant stateid even deleg_recall (Olga Kornievskaia) [RHEL-102164] - exportfs: Remove EXPORT_OP_ASYNC_LOCK (Olga Kornievskaia) [RHEL-102164] - NLM/NFSD: Fix lock notifications for async-capable filesystems (Olga Kornievskaia) [RHEL-102164] - gfs2/ocfs2: set FOP_ASYNC_LOCK (Olga Kornievskaia) [RHEL-102164] - fs: Introduce FOP_ASYNC_LOCK (Olga Kornievskaia) [RHEL-102164] - x86/sev: Make sure pages are not skipped during kdump (Bandan Das) [RHEL-67539] - x86/sev: Do not touch VMSA pages during SNP guest memory kdump (Bandan Das) [RHEL-67539] - drm/nouveau/nvkm: introduce new GSP reply policy NVKM_GSP_RPC_REPLY_POLL (José Expósito) [RHEL-100737] - drm/nouveau/nvkm: factor out current GSP RPC command policies (José Expósito) [RHEL-100737] - selftests/cgroup: Fix compile error in test_cpu.c (Radostin Stoyanov) [RHEL-80381] - mm: swap_cgroup: remove double initialization of locals (Radostin Stoyanov) [RHEL-80381] - mm: remove the non-useful else after a break in a if statement (Radostin Stoyanov) [RHEL-80381] - mm: remove unnecessary whitespace before a quoted newline (Radostin Stoyanov) [RHEL-80381] - mm: prefer 'unsigned int' to bare use of 'unsigned' (Radostin Stoyanov) [RHEL-80381] - mm: memcontrol: fix swap counter leak from offline cgroup (Radostin Stoyanov) [RHEL-80381] - memcg: factor out mem_cgroup_stat_aggregate() (Radostin Stoyanov) [RHEL-80381] - mm/swap_cgroup: decouple swap cgroup recording and clearing (Radostin Stoyanov) [RHEL-80381] - mm/swap_cgroup: remove global swap cgroup lock (Radostin Stoyanov) [RHEL-80381] - mm/swap_cgroup: remove swap_cgroup_cmpxchg (Radostin Stoyanov) [RHEL-80381] - mm: swap_cgroup: get rid of __lookup_swap_cgroup() (Radostin Stoyanov) [RHEL-80381] - mm: swap_cgroup: allocate swap_cgroup map using vcalloc() (Radostin Stoyanov) [RHEL-80381] - mm, memcontrol: avoid duplicated memcg enable check (Radostin Stoyanov) [RHEL-80381] - memcg/hugetlb: remove memcg hugetlb try-commit-cancel protocol (Radostin Stoyanov) [RHEL-80381] - memcg/hugetlb: introduce mem_cgroup_charge_hugetlb (Radostin Stoyanov) [RHEL-80381] - memcg/hugetlb: introduce memcg_accounts_hugetlb (Radostin Stoyanov) [RHEL-80381] - cgroup: fix race between fork and cgroup.kill (Radostin Stoyanov) [RHEL-80381] - kernel/cgroup: Remove the unused variable climit (Radostin Stoyanov) [RHEL-80381] - fdget_raw() users: switch to CLASS(fd_raw) (Radostin Stoyanov) [RHEL-80381] - css_set_fork(): switch to CLASS(fd_raw, ...) (Radostin Stoyanov) [RHEL-80381] - cgroup/freezer: Add cgroup CGRP_FROZEN flag update helper (Radostin Stoyanov) [RHEL-80381] - cgroup/freezer: Reduce redundant traversal for cgroup_freeze (Radostin Stoyanov) [RHEL-80381] - cgroup/bpf: only cgroup v2 can be attached by bpf programs (Radostin Stoyanov) [RHEL-80381] - Revert "cgroup: Fix memory leak caused by missing cgroup_bpf_offline" (Radostin Stoyanov) [RHEL-80381] - cgroup/rstat: Selftests for niced CPU statistics (Radostin Stoyanov) [RHEL-80381] - cgroup/rstat: Tracking cgroup-level niced CPU time (Radostin Stoyanov) [RHEL-80381] - bnxt_en: Flush FW trace before copying to the coredump (Shruti Parab) [RHEL-76565] - bnxt_en: fix module unload sequence (Shruti Parab) [RHEL-76565] - bnxt_en: Fix ethtool -d byte order for 32-bit values (Shruti Parab) [RHEL-76565] - bnxt_en: Fix out-of-bound memcpy() during ethtool -w (Shruti Parab) [RHEL-76565] - bnxt_en: Fix coredump logic to free allocated buffer (Shruti Parab) [RHEL-76565] - bnxt_en: call pci_alloc_irq_vectors() after bnxt_reserve_rings() (Shruti Parab) [RHEL-76565] - bnxt_en: Add missing skb_mark_for_recycle() in bnxt_rx_vlan() (Shruti Parab) [RHEL-76565] - bnxt_en: Fix ethtool selftest output in one of the failure cases (Shruti Parab) [RHEL-76565] - bnxt_en: Fix error handling path in bnxt_init_chip() (Shruti Parab) [RHEL-76565] - bnxt_en: improve TX timestamping FIFO configuration (Shruti Parab) [RHEL-76565] - bnxt_en: hide CONFIG_DETECT_HUNG_TASK specific code (Shruti Parab) [RHEL-76565] - bnxt_en: Remove unused macros in bnxt_ulp.h (Shruti Parab) [RHEL-76565] - bnxt_en: Remove unused field "ref_count" in struct bnxt_ulp (Shruti Parab) [RHEL-76565] - bnxt_en: Report the ethtool coredump length after copying the coredump (Shruti Parab) [RHEL-76565] - bnxt_en: Change FW message timeout warning (Shruti Parab) [RHEL-76565] - bnxt_en: Linearize TX SKB if the fragments exceed the max (Shruti Parab) [RHEL-76565] - bnxt_en: Mask the bd_cnt field in the TX BD properly (Shruti Parab) [RHEL-76565] - bnxt_en: add .set_module_eeprom_by_page() support (Shruti Parab) [RHEL-76565] - bnxt_en: Refactor bnxt_get_module_eeprom_by_page() (Shruti Parab) [RHEL-76565] - bnxt_en: Update firmware interface to 1.10.3.97 (Shruti Parab) [RHEL-76565] - bnxt_en: Query FW parameters when the CAPS_CHANGE bit is set (Shruti Parab) [RHEL-76565] - bnxt_en: Add devlink support for ENABLE_ROCE nvm parameter (Shruti Parab) [RHEL-76565] - bnxt_en: Refactor bnxt_hwrm_nvm_req() (Shruti Parab) [RHEL-76565] - bnxt_en: Add support for a new ethtool dump flag 3 (Shruti Parab) [RHEL-76565] - bnxt_en: Extend queue stop/start for TX rings (Shruti Parab) [RHEL-76565] - bnxt_en: Refactor TX ring free logic (Shruti Parab) [RHEL-76565] - bnxt_en: Reallocate RX completion ring for TPH support (Shruti Parab) [RHEL-76565] - bnxt_en: Pass NQ ID to the FW when allocating RX/RX AGG rings (Shruti Parab) [RHEL-76565] - bnxt_en: Refactor RX/RX AGG ring parameters setup for P5_PLUS (Shruti Parab) [RHEL-76565] - bnxt_en: Refactor bnxt_free_tx_rings() to free per TX ring (Shruti Parab) [RHEL-76565] - bnxt_en: Refactor completion ring free routine (Shruti Parab) [RHEL-76565] - bnxt_en: Refactor TX ring allocation logic (Shruti Parab) [RHEL-76565] - bnxt_en: Refactor completion ring allocation logic for P5_PLUS chips (Shruti Parab) [RHEL-76565] - bnxt_en: Set NPAR 1.2 support when registering with firmware (Shruti Parab) [RHEL-76565] - eth: bnxt: allocate enough buffer space to meet HDS threshold (Shruti Parab) [RHEL-76565] - eth: bnxt: apply hds_thrs settings correctly (Shruti Parab) [RHEL-76565] - bnxt_en: add support for hds-thresh ethtool command (Shruti Parab) [RHEL-76565] - bnxt_en: add support for tcp-data-split ethtool command (Shruti Parab) [RHEL-76565] - bnxt_en: add support for rx-copybreak ethtool command (Shruti Parab) [RHEL-76565] - bnxt_en: Skip reading PXP registers during ethtool -d if unsupported (Shruti Parab) [RHEL-76565] - bnxt_en: Skip MAC loopback selftest if it is unsupported by FW (Shruti Parab) [RHEL-76565] - bnxt_en: Skip PHY loopback ethtool selftest if unsupported by FW (Shruti Parab) [RHEL-76565] - bnxt_en: Do not allow ethtool -m on an untrusted VF (Shruti Parab) [RHEL-76565] - bnxt_en: Use FW defined resource limits for RoCE (Shruti Parab) [RHEL-76565] - bnxt_en: Fix potential crash when dumping FW log coredump (Shruti Parab) [RHEL-76565] - bnxt_en: handle tpa_info in queue API implementation (Shruti Parab) [RHEL-76565] - bnxt_en: refactor bnxt_alloc_rx_rings() to call bnxt_alloc_rx_agg_bmap() (Shruti Parab) [RHEL-76565] - bnxt_en: refactor tpa_info alloc/free into helpers (Shruti Parab) [RHEL-76565] - bnxt_en: Add FW trace coredump segments to the coredump (Shruti Parab) [RHEL-76565] - bnxt_en: Add a new ethtool -W dump flag (Shruti Parab) [RHEL-76565] - bnxt_en: Add 2 parameters to bnxt_fill_coredump_seg_hdr() (Shruti Parab) [RHEL-76565] - bnxt_en: Add functions to copy host context memory (Shruti Parab) [RHEL-76565] - bnxt_en: Do not free FW log context memory (Shruti Parab) [RHEL-76565] - bnxt_en: Manage the FW trace context memory (Shruti Parab) [RHEL-76565] - bnxt_en: Allocate backing store memory for FW trace logs (Shruti Parab) [RHEL-76565] - bnxt_en: Add a 'force' parameter to bnxt_free_ctx_mem() (Shruti Parab) [RHEL-76565] - bnxt_en: Refactor bnxt_free_ctx_mem() (Shruti Parab) [RHEL-76565] - bnxt_en: Add mem_valid bit to struct bnxt_ctx_mem_type (Shruti Parab) [RHEL-76565] - bnxt_en: Update firmware interface spec to 1.10.3.85 (Shruti Parab) [RHEL-76565] - bnxt_en: optimize gettimex64 (Shruti Parab) [RHEL-76565] - eth: bnxt: use page pool for head frags (Shruti Parab) [RHEL-76565] - bnxt_en: add unlocked version of bnxt_refclk_read (Shruti Parab) [RHEL-76565] - bnxt_en: replace PTP spinlock with seqlock (Shruti Parab) [RHEL-76565] - bnxt_en: cache only 24 bits of hw counter (Shruti Parab) [RHEL-76565] - scsi: core: Fix command pass through retry regression (Ewan D. Milne) [RHEL-89684] - redhat/configs: enable CONFIG_VFAT_FS as a module (Dorinda Bassey) [RHEL-87388] - Revert "redhat/configs: automotive: disable CONFIG_AIO" (Davide Caratti) [RHEL-82719] - x86/CPU/AMD: Terminate the erratum_1386_microcode array (CKI Backport Bot) [RHEL-104883] {CVE-2024-56721} - exfat: fix potential wrong error return from get_block (Pavel Reichl) [RHEL-89708] - exfat: fix missing shutdown check (Pavel Reichl) [RHEL-89708] - exfat: fix the infinite loop in exfat_find_last_cluster() (Pavel Reichl) [RHEL-89708] - exfat: short-circuit zero-byte writes in exfat_file_write_iter (Pavel Reichl) [RHEL-89708] - exfat: fix soft lockup in exfat_clear_bitmap (Pavel Reichl) [RHEL-89708] - exfat: fix just enough dentries but allocate a new cluster to dir (Pavel Reichl) [RHEL-89708] - exfat: fix the infinite loop in __exfat_free_cluster() (Pavel Reichl) [RHEL-89708] - exfat: fix exfat_find_empty_entry() not returning error on failure (Pavel Reichl) [RHEL-89708] - exfat: reduce FAT chain traversal (Pavel Reichl) [RHEL-89708] - exfat: code cleanup for exfat_readdir() (Pavel Reichl) [RHEL-89708] - exfat: remove argument 'p_dir' from exfat_add_entry() (Pavel Reichl) [RHEL-89708] - exfat: move exfat_chain_set() out of __exfat_resolve_path() (Pavel Reichl) [RHEL-89708] - exfat: add exfat_get_dentry_set_by_ei() helper (Pavel Reichl) [RHEL-89708] - exfat: rename argument name for exfat_move_file and exfat_rename_file (Pavel Reichl) [RHEL-89708] - exfat: remove unnecessary read entry in __exfat_rename() (Pavel Reichl) [RHEL-89708] - exfat: fix file being changed by unaligned direct write (Pavel Reichl) [RHEL-89708] - exfat: fix uninit-value in __exfat_get_dentry_set (Pavel Reichl) [RHEL-89708] - PCI/pwrctrl: Cancel outstanding rescan work when unregistering (Myron Stowe) [RHEL-103213] {CVE-2025-38137} - xfs: fix online repair probing when CONFIG_XFS_ONLINE_REPAIR=n (Carlos Maiolino) [RHEL-85590] - xfs: fix the entry condition of exact EOF block allocation optimization (Carlos Maiolino) [RHEL-85590] - xfs: fix scrub tracepoints when inode-rooted btrees are involved (Carlos Maiolino) [RHEL-85590] - xfs: fix mount hang during primary superblock recovery failure (Carlos Maiolino) [RHEL-85590] - xfs: fix simplify extent lookup in xfs_can_free_eofblocks (Carlos Maiolino) [RHEL-85590] - xfs: fix off-by-one error in fsmap's end_daddr usage (Carlos Maiolino) [RHEL-85590] - xfs: unlock inodes when erroring out of xfs_trans_alloc_dir (Carlos Maiolino) [RHEL-85590] - xfs: don't call remap_verify_area with sb write protection held (Carlos Maiolino) [RHEL-85590] - xfs: fix a double completion for buffers on in-memory targets (Carlos Maiolino) [RHEL-85590] - mm/gup: revert "mm: gup: fix infinite loop within __get_longterm_locked" (CKI Backport Bot) [RHEL-101826] - perf/x86/intel: Add PMU support for Clearwater Forest (Michael Petlan) [RHEL-45092 RHEL-47453] - x86/cpu/amd: Fix workaround for erratum 1054 (Michael Petlan) [RHEL-98689] - Revert "Bluetooth: btusb: add sysfs attribute to control USB alt setting" (David Marlin) [RHEL-93658] - Bluetooth: btusb: Add HCI Drv commands for configuring altsetting (David Marlin) [RHEL-93658] - Bluetooth: Introduce HCI Driver protocol (David Marlin) [RHEL-93658] - Bluetooth: Add ABI doc for sysfs reset (David Marlin) [RHEL-93658] - Revert "Bluetooth: btusb: Configure altsetting for HCI_USER_CHANNEL" (David Marlin) [RHEL-93658] - Bluetooth: btusb: use skb_pull to avoid unsafe access in QCA dump handling (David Marlin) [RHEL-93658] - Bluetooth: L2CAP: Fix not checking l2cap_chan security level (David Marlin) [RHEL-93658] - Bluetooth: hci_event: Fix not using key encryption size when its known (David Marlin) [RHEL-93658] - Bluetooth: MGMT: Fix MGMT_OP_ADD_DEVICE invalid device flags (David Marlin) [RHEL-93658] - Bluetooth: L2CAP: copy RX timestamp to new fragments (David Marlin) [RHEL-93658] - Bluetooth: btintel_pcie: Add additional to checks to clear TX/RX paths (David Marlin) [RHEL-93658] - Bluetooth: btmtksdio: Do close if SDIO card removed without close (David Marlin) [RHEL-93658] - Bluetooth: btmtksdio: Check function enabled before doing close (David Marlin) [RHEL-93658] - Bluetooth: btusb: avoid NULL pointer dereference in skb_dequeue() (David Marlin) [RHEL-93658] - Bluetooth: btintel_pcie: Avoid redundant buffer allocation (David Marlin) [RHEL-93658] - Bluetooth: hci_conn: Fix not setting timeout for BIG Create Sync (David Marlin) [RHEL-93658] - Bluetooth: hci_conn: Fix not setting conn_timeout for Broadcast Receiver (David Marlin) [RHEL-93658] - Bluetooth: vhci: Avoid needless snprintf() calls (David Marlin) [RHEL-93658] - Bluetooth: l2cap: Process valid commands in too long frame (David Marlin) [RHEL-93658] - Bluetooth: l2cap: Check encryption key size on incoming connection (David Marlin) [RHEL-93658] - Bluetooth: btnxpuart: Add an error message if FW dump trigger fails (David Marlin) [RHEL-93658] - Bluetooth: btnxpuart: Revert baudrate change in nxp_shutdown (David Marlin) [RHEL-93658] - Bluetooth: increment TX timestamping tskey always for stream sockets (David Marlin) [RHEL-93658] - Bluetooth: qca: fix NV variant for one of WCN3950 SoCs (David Marlin) [RHEL-93658] - Bluetooth: btrtl: Prevent potential NULL dereference (David Marlin) [RHEL-93658] - Bluetooth: hci_event: Fix sending MGMT_EV_DEVICE_FOUND for invalid address (David Marlin) [RHEL-93658] - Bluetooth: MGMT: Add LL Privacy Setting (David Marlin) [RHEL-93658] - Bluetooth: hci_event: Fix handling of HCI_EV_LE_DIRECT_ADV_REPORT (David Marlin) [RHEL-93658] - Bluetooth: btnxpuart: Fix kernel panic during FW release (David Marlin) [RHEL-93658] - Bluetooth: btnxpuart: Handle bootloader error during cmd5 and cmd7 (David Marlin) [RHEL-93658] - Bluetooth: btnxpuart: Add correct bootloader error codes (David Marlin) [RHEL-93658] - t blameBluetooth: btintel: Fix leading white space (David Marlin) [RHEL-93658] - Bluetooth: btintel: Add support to configure TX power (David Marlin) [RHEL-93658] - Bluetooth: btmtksdio: Prevent enabling interrupts after IRQ handler removal (David Marlin) [RHEL-93658] - Bluetooth: btmtk: Remove the resetting step before downloading the fw (David Marlin) [RHEL-93658] - Bluetooth: SCO: add TX timestamping (David Marlin) [RHEL-93658] - Bluetooth: L2CAP: add TX timestamping (David Marlin) [RHEL-93658] - Bluetooth: ISO: add TX timestamping (David Marlin) [RHEL-93658] - Bluetooth: add support for skb TX SND/COMPLETION timestamping (David Marlin) [RHEL-93658] - HCI: coredump: Log devcd dumps into the monitor (David Marlin) [RHEL-93658] - Bluetooth: HCI: Add definition of hci_rp_remote_name_req_cancel (David Marlin) [RHEL-93658] - Bluetooth: hci_vhci: Mark Sync Flow Control as supported (David Marlin) [RHEL-93658] - Bluetooth: hci_core: Enable buffer flow control for SCO/eSCO (David Marlin) [RHEL-93658] - Bluetooth: btintel_pci: Fix build warning (David Marlin) [RHEL-93658] - Bluetooth: btintel_pcie: Trigger device coredump on hardware exception (David Marlin) [RHEL-93658] - Bluetooth: btnxpuart: Add support to set BD address (David Marlin) [RHEL-93658] - Bluetooth: btnxpuart: Add support for HCI coredump feature (David Marlin) [RHEL-93658] - Bluetooth: btnxpuart: Move vendor specific initialization to .post_init (David Marlin) [RHEL-93658] - Bluetooth: btintel_pcie: Add support for device coredump (David Marlin) [RHEL-93658] - Bluetooth: btusb: Fix regression in the initialization of fake Bluetooth controllers (David Marlin) [RHEL-93658] - Bluetooth: Disable SCO support if READ_VOICE_SETTING is unsupported/broken (David Marlin) [RHEL-93658] - Bluetooth: Add quirk for broken READ_PAGE_SCAN_TYPE (David Marlin) [RHEL-93658] - Bluetooth: Add quirk for broken READ_VOICE_SETTING (David Marlin) [RHEL-93658] - Bluetooth: btintel_pcie: Read hardware exception data (David Marlin) [RHEL-93658] - Bluetooth: btintel_pcie: Setup buffers for firmware traces (David Marlin) [RHEL-93658] - Bluetooth: qca: add WCN3950 support (David Marlin) [RHEL-93658] - Bluetooth: qca: simplify WCN399x NVM loading (David Marlin) [RHEL-93658] - dt-bindings: net: bluetooth: qualcomm: document WCN3950 (David Marlin) [RHEL-93658] - bluetooth: btnxpuart: Support for controller wakeup gpio config (David Marlin) [RHEL-93658] - Bluetooth: hci_qca: use the power sequencer for wcn6750 (David Marlin) [RHEL-93658] - Bluetooth: btusb: Add 2 HWIDs for MT7922 (David Marlin) [RHEL-93658] - Bluetooth: hci_uart: Fix another race during initialization (David Marlin) [RHEL-93658] - Bluetooth: hci_uart: fix race during initialization (David Marlin) [RHEL-93658] - Bluetooth: btintel: Add DSBR support for ScP (David Marlin) [RHEL-93658] - Bluetooth: Fix code style warning (David Marlin) [RHEL-93658] - Bluetooth: MGMT: Remove unused mgmt_*_discovery_complete (David Marlin) [RHEL-93658] - Bluetooth: MGMT: Remove unused mgmt_pending_find_data (David Marlin) [RHEL-93658] - Bluetooth: btusb: Add 13 USB device IDs for Qualcomm WCN785x (David Marlin) [RHEL-93658] - Bluetooth: btintel_pcie: Add device id of Whale Peak (David Marlin) [RHEL-93658] - Bluetooth: btintel: Add support for Intel Scorpius Peak (David Marlin) [RHEL-93658] - Bluetooth: btusb: Add new VID/PID for WCN785x (David Marlin) [RHEL-93658] - Bluetooth: btusb: mediatek: Add err code to btusb claim iso printout (David Marlin) [RHEL-93658] - Bluetooth: hci_event: Fix connection regression between LE and non-LE adapters (David Marlin) [RHEL-93658] - Bluetooth: Fix error code in chan_alloc_skb_cb() (David Marlin) [RHEL-93658] - Bluetooth: hci_event: Fix enabling passive scanning (David Marlin) [RHEL-93658] - Bluetooth: btusb: Configure altsetting for HCI_USER_CHANNEL (David Marlin) [RHEL-93658] - Bluetooth: Add check for mgmt_alloc_skb() in mgmt_device_connected() (David Marlin) [RHEL-93658] - Bluetooth: Add check for mgmt_alloc_skb() in mgmt_remote_name() (David Marlin) [RHEL-93658] - bluetooth: btusb: Initialize .owner field of force_poll_sync_fops (David Marlin) [RHEL-93658] - Bluetooth: L2CAP: Fix L2CAP_ECRED_CONN_RSP response (David Marlin) [RHEL-93658] - Bluetooth: Always allow SCO packets for user channel (David Marlin) [RHEL-93658] - Bluetooth: btintel_pcie: Fix a potential race condition (David Marlin) [RHEL-93658] - Bluetooth: L2CAP: accept zero as a special value for MTU auto-selection (David Marlin) [RHEL-93658] - Bluetooth: Fix possible infinite recursion of btusb_reset (David Marlin) [RHEL-93658] - Bluetooth: btusb: mediatek: Add locks for usb_driver_claim_interface() (David Marlin) [RHEL-93658] - Bluetooth: qca: Fix poor RF performance for WCN6855 (David Marlin) [RHEL-93658] - Bluetooth: Allow reset via sysfs (David Marlin) [RHEL-93658] - Bluetooth: Get rid of cmd_timeout and use the reset callback (David Marlin) [RHEL-93658] - Bluetooth: Remove the cmd timeout count in btusb (David Marlin) [RHEL-93658] - Bluetooth: btmtk: Remove resetting mt7921 before downloading the fw (David Marlin) [RHEL-93658] - Bluetooth: btusb: Add RTL8851BE device 13d3:3600 (David Marlin) [RHEL-93658] - dt-bindings: bluetooth: Utilize PMU abstraction for WCN6750 (David Marlin) [RHEL-93658] - Bluetooth: btusb: Add MT7921e device 13d3:3576 (David Marlin) [RHEL-93658] - Bluetooth: qca: Expand firmware-name to load specific rampatch (David Marlin) [RHEL-93658] - Bluetooth: qca: Update firmware-name to support board specific nvm (David Marlin) [RHEL-93658] - dt-bindings: net: bluetooth: qca: Expand firmware-name property (David Marlin) [RHEL-93658] - Bluetooth: btusb: Add new VID/PID 13d3/3610 for MT7922 (David Marlin) [RHEL-93658] - Bluetooth: btusb: add sysfs attribute to control USB alt setting (David Marlin) [RHEL-93658] - Bluetooth: btusb: Add ID 0x2c7c:0x0130 for Qualcomm WCN785x (David Marlin) [RHEL-93658] - Bluetooth: hci: Remove deadcode (David Marlin) [RHEL-93658] - Bluetooth: MGMT: Mark LL Privacy as stable (David Marlin) [RHEL-93658] - Bluetooth: iso: Allow BIG re-sync (David Marlin) [RHEL-93658] - ALSA: update RHEL kconfigs for 6.15 upstream code (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: acp70: Fix for missing acp_dev_data structure (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Verify kcalloc() status when setting constraints (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Fix possible null-ptr-deref when initing hw (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: Add schema for "awinic,aw88166" (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Create DAI drivers from DisCo (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Create ALSA controls from DisCo (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Create DAPM widgets and routes from DisCo (Jaroslav Kysela) [RHEL-80658] - ASoC: dapm: Add component level pin switches (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Move allocation of PDE delays array (Jaroslav Kysela) [RHEL-80658] - kunit: configs: Add some Cirrus Logic modules to all_tests (Jaroslav Kysela) [RHEL-80658] - of: Add of_property_read_u16_index (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: wm8904: Add DMIC, GPIO, MIC and EQ support (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: mediatek,mt8188-mt6359: Add mediatek,accdet (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: mediatek,mt8188-mt6359: Add mediatek,adsp property (Jaroslav Kysela) [RHEL-80658] - Documentation: driver: add SoundWire BRA description (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: add regulator support to dmic codec (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: fsl,audmix: make 'dais' property to be optional (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: fsl,audmix: Document audio graph port (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: fsl,sai: Document audio graph port (Jaroslav Kysela) [RHEL-80658] - regcache: Add support for sorting defaults arrays (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: mediatek,mt8188-mt6359: Add DMIC backend to dai-link (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: imx-card: Add playback-only and capture-only property (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: wcd937x-sdw: Add static channel mapping support (Jaroslav Kysela) [RHEL-80658] - HID: hid-plantronics: Add mic mute mapping and generalize quirks (Jaroslav Kysela) [RHEL-80658] - dt-bindings: mfd: motorola-cpcap: Document audio-codec interrupts (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Fix minor typo (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Remove regmap module macros (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Fix kcalloc() sizes (Jaroslav Kysela) [RHEL-80658] - devres: Introduce devm_kmemdup_array() (Jaroslav Kysela) [RHEL-80658] - driver core: Split devres APIs to device/devres.h (Jaroslav Kysela) [RHEL-80658] - err.h: move IOMEM_ERR_PTR() to err.h (Jaroslav Kysela) [RHEL-80658] - ALSA: ppc: Remove i2c client removal hack (Jaroslav Kysela) [RHEL-80658] - platform/x86: Switch back to struct platform_driver::remove() (Jaroslav Kysela) [RHEL-80658] - treewide: Switch/rename to timer_delete[_sync]() (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek - Add new HP ZBook laptop with micmute led fixup (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: Add support for HP Agusta using CS35L41 HDA (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14ASP10 (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek - restore auto-mute mode for Dell Chrome platform (Jaroslav Kysela) [RHEL-80658] - ALSA: pcm: Fix race of buffer access at PCM OSS layer (Jaroslav Kysela) [RHEL-80658] - ALSA: usb-audio: Add sample rate quirk for Microdia JP001 USB Camera (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: hda: Fix UAF when reloading module (Jaroslav Kysela) [RHEL-80658] - ALSA: es1968: Add error handling for snd_pcm_hw_constraint_pow2() (Jaroslav Kysela) [RHEL-80658] - ALSA: sh: SND_AICA should depend on SH_DMA_API (Jaroslav Kysela) [RHEL-80658] - ALSA: usb-audio: Add sample rate quirk for Audioengine D1 (Jaroslav Kysela) [RHEL-80658] - ALSA: ump: Fix a typo of snd_ump_stream_msg_device_info (Jaroslav Kysela) [RHEL-80658] - ALSA/hda: intel-sdw-acpi: Correct sdw_intel_acpi_scan() function parameter (Jaroslav Kysela) [RHEL-80658] - ALSA: seq: Fix delivery of UMP events to group ports (Jaroslav Kysela) [RHEL-80658] - ASoc: SOF: topology: connect DAI to a single DAI link (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: hda-bus: Use PIO mode on ACE2+ platforms (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: ipc4-pcm: Delay reporting is only supported for playback direction (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: ipc4-control: Use SOF_CTRL_CMD_BINARY as numid for bytes_ext (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188-mt6359: Depend on MT6359_ACCDET set or disabled (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188-mt6359: select CONFIG_SND_SOC_MT6359_ACCDET (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: fix for irq handler return status (Jaroslav Kysela) [RHEL-80658] - ASoC: simple-card-utils: Fix pointer check in graph_util_parse_link_direction (Jaroslav Kysela) [RHEL-80658] {CVE-2025-37934} - ASoC: intel/sdw_utils: Add volume limit to cs35l56 speakers (Jaroslav Kysela) [RHEL-80658] - ASoC: intel/sdw_utils: Add volume limit to cs42l43 speakers (Jaroslav Kysela) [RHEL-80658] - ASoC: stm32: sai: add a check on minimal kernel frequency (Jaroslav Kysela) [RHEL-80658] - ASoC: stm32: sai: skip useless iterations on kernel rate loop (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek - Add more HP laptops which need mute led fixup (Jaroslav Kysela) [RHEL-80658] - soundwire: intel_auxdevice: Fix system suspend/resume handling (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: Fix built-mic regression on other ASUS models (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: catpt: avoid type mismatch in dev_dbg() format (Jaroslav Kysela) [RHEL-80658] - ALSA: usb-audio: Fix duplicated name in MIDI substream names (Jaroslav Kysela) [RHEL-80658] - ALSA: ump: Fix buffer overflow at UMP SysEx message conversion (Jaroslav Kysela) [RHEL-80658] {CVE-2025-37891} - ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx (Jaroslav Kysela) [RHEL-80658] - ALSA: hda: Apply volume control on speaker+lineout for HP EliteStudio AIO (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: bytcr_rt5640: Add DMI quirk for Acer Aspire SW3-013 (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Fix devm_snd_soc_register_card(acp-pdm-mach) failure (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Fix NULL pointer deref in acp_i2s_set_tdm_slot (Jaroslav Kysela) [RHEL-80658] {CVE-2025-37919} - ASoC: amd: acp: Fix NULL pointer deref on acp resume path (Jaroslav Kysela) [RHEL-80658] - ASoC: renesas: rz-ssi: Use NOIRQ_SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-acpi-intel-ptl-match: add empty item to ptl_cs42l43_l3[] (Jaroslav Kysela) [RHEL-80658] - ASoC: cs42l43: Disable headphone clamps during type detection (Jaroslav Kysela) [RHEL-80658] - ALSA: usb-audio: Add retry on -EPROTO from usb_set_interface() (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek - Enable speaker for HP platform (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: sof_sdw: Add NULL check in asoc_sdw_rt_dmic_rtd_init() (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-pcm: Fix hw_params() and DAPM widget sequence (Jaroslav Kysela) [RHEL-80658] - ASoC: imx-card: Adjust over allocation of memory in imx_card_parse_of() (Jaroslav Kysela) [RHEL-80658] - firmware: cs_dsp: tests: Depend on FW_CS_DSP rather then enabling it (Jaroslav Kysela) [RHEL-80658] - ASoC: cs-amp-lib-test: Don't select SND_SOC_CS_AMP_LIB (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: Add of_match_table for aw888081 driver (Jaroslav Kysela) [RHEL-80658] - ASoC: fsl: fsl_qmc_audio: Reset audio data pointers on TRIGGER_START event (Jaroslav Kysela) [RHEL-80658] - soundwire: bus: Fix race on the creation of the IRQ domain (Jaroslav Kysela) [RHEL-80658] - ASoC: cs42l43: Reset clamp override on jack removal (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/cirrus_scodec_test: Don't select dependencies (Jaroslav Kysela) [RHEL-80658] - ALSA: azt2320: Replace deprecated strcpy() with strscpy() (Jaroslav Kysela) [RHEL-80658] - ASoC: hdmi-codec: use RTD ID instead of DAI ID for ELD entry (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Constrain path based on BE capabilities (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/tas2781: Remove unnecessary NULL check before release_firmware() (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Fix null-ptr-deref in avs_component_probe() (Jaroslav Kysela) [RHEL-80658] {CVE-2025-37793} - ASoC: fsl_asrc_dma: get codec or cpu dai from backend (Jaroslav Kysela) [RHEL-80658] - ASoC: qcom: Fix sc7280 lpass potential buffer overflow (Jaroslav Kysela) [RHEL-80658] {CVE-2025-37979} - ASoC: dwc: always enable/disable i2s irqs (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs:lpass-wsa-macro: Fix logic of enabling vi channels (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs:lpass-wsa-macro: Fix vi feedback rate (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek - Support mute led function for HP platform (Jaroslav Kysela) [RHEL-80658] - ASoC: imx-card: Add NULL check in imx_card_probe() (Jaroslav Kysela) [RHEL-80658] {CVE-2025-22066} - ASoC: codecs: rt5665: Fix some error handling paths in rt5665_probe() (Jaroslav Kysela) [RHEL-80658] - ASoC: q6apm-dai: make use of q6apm_get_hw_pointer (Jaroslav Kysela) [RHEL-80658] - ASoC: qdsp6: q6apm-dai: fix capture pipeline overruns. (Jaroslav Kysela) [RHEL-80658] - ASoC: qdsp6: q6apm-dai: set 10 ms period and buffer alignment. (Jaroslav Kysela) [RHEL-80658] - ASoC: q6apm: add q6apm_get_hw_pointer helper (Jaroslav Kysela) [RHEL-80658] - ASoC: q6apm-dai: schedule all available frames to avoid dsp under-runs (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: hda/ptl: Move mic privacy change notification sending to a work (Jaroslav Kysela) [RHEL-80658] - ALSA/hda: intel-sdw-acpi: Remove (explicitly) unused header (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: Enable Mute LED on HP OMEN 16 Laptop xd000xx (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: Let SND_SOF_SOF_HDA_SDW_BPT select SND_HDA_EXT_CORE (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/tas2781: Upgrade calibratd-data writing code to support Alpha and Beta dsp firmware (Jaroslav Kysela) [RHEL-80658] - ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path (Jaroslav Kysela) [RHEL-80658] - ASoC: sma1307: Fix error handling in sma1307_setting_loaded() (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: wsa884x: Correct VI sense channel mask (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: wsa883x: Correct VI sense channel mask (Jaroslav Kysela) [RHEL-80658] - ALSA: hda: tas2781-i2c: Remove unnecessary NULL check before release_firmware() (Jaroslav Kysela) [RHEL-80658] - ALSA: hda: cs35l56: Remove unnecessary NULL check before release_firmware() (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: Add support for various HP Laptops using CS35L41 HDA (Jaroslav Kysela) [RHEL-80658] - ALSA: timer: Don't take register_mutex with copy_from/to_user() (Jaroslav Kysela) [RHEL-80658] {CVE-2025-23134} - ASoC: SDCA: Correct handling of selected mode DisCo property (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: yc: update quirk data for new Lenovo model (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: fix micmute LEDs on HP Laptops with ALC3247 (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: fix micmute LEDs on HP Laptops with ALC3315 (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: mediatek: Commonize duplicated functions (Jaroslav Kysela) [RHEL-80658] - ASoC: dmic: Fix NULL pointer dereference (Jaroslav Kysela) [RHEL-80658] - ASoC: wm8904: add DMIC support (Jaroslav Kysela) [RHEL-80658] - ASoC: wm8904: get platform data from DT (Jaroslav Kysela) [RHEL-80658] - ASoC: wm8904: Don't touch GPIO configs set to 0xFFFF (Jaroslav Kysela) [RHEL-80658] - ALSA: oxygen: Fix dependency on CONFIG_PM_SLEEP (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Apply platform_max after deciding control type (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Remove some unnecessary local variables (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Factor out common code from get callbacks (Jaroslav Kysela) [RHEL-80658] - irqdomain: sound: Switch to irq_domain_create_linear() (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Factor out common code from put callbacks (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Factor out common code from info callbacks (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Remove snd_soc_put_volsw_range() (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Remove snd_soc_get_volsw_range() (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Remove snd_soc_info_volsw_range() (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Add control to register value helper (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Replace snd_soc_read_signed() with new helper (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Factor out helper to check valid control values (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Update mask generation to use GENMASK (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Update comments for xr_sx control helpers (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Minor formatting fixups (Jaroslav Kysela) [RHEL-80658] - ASoC: ops-test: Add some basic kunit tests for soc-ops (Jaroslav Kysela) [RHEL-80658] - ALSA: echoaudio: remove unused variable (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2781: Support dsp firmware Alpha and Beta seaies (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: Support mute LED on HP Laptop 15s-du3xxx (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: j721e-evm: Fix clock configuration for ti,j7200-cpb-audio compatible (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: ntp8918: Remove duplicate clk.h header (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: j721e-evm: Reduce log level for EPROBE_DEFER (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-utils: Transition to the faux device interface (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: max98927: Replace devm_kzalloc() with devm_kcalloc() (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: max98373: Replace devm_kzalloc() with devm_kcalloc() (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: ssm4567: Replace devm_kzalloc() with devm_kcalloc() (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Replace devm_kzalloc() with devm_kcalloc() (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Fix acp_common_hw_ops declaration error (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Fix acp_resource duplicate symbol error (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Fix snd_soc_acpi_mach id's duplicate symbol error (Jaroslav Kysela) [RHEL-80658] - ASoC: pcm3168a: Convert to EXPORT_GPL_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: xtensa: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: tegra30: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: tegra20: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: tegra210: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: tegra186: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: sunxi: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: stm: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: of: Convert to EXPORT_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: pci: Convert to EXPORT_NS_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: acpi: Convert to EXPORT_NS_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rockchip: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rcar: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: qcom: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8365: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8195: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8192: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8186: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8183: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8173: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt7986: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt6797: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt2701: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: catpt: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: avs: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: img: Convert to RUNTIME_PM_OPS() and co (Jaroslav Kysela) [RHEL-80658] - ASoC: fsl: Convert to RUNTIME_PM_OPS() and co (Jaroslav Kysela) [RHEL-80658] - ASoC: dwc: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wsa884x: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wsa883x: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wsa881x: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wm8994: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wm8962: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: wm8804: Convert to EXPORT_GPL_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wm5100: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wm2200: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wcd939x: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wcd938x: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: wcd937x: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: ts3a227e: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2552: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: rtq9128: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: rt9120: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: rt722: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt721: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt715: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt712: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt711: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt700-sdw: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt5682-sdw: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt5645: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: rt5514: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: rt1320-sdw: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt1318-sdw: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt1316-sdw: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt1308-sdw: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: rt1017-sdca-sdw: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: pcm512x: Convert to EXPORT_GPL_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: mt6660: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: max98927: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: max9860: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: max98520: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: max98396: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: max98390: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: max98373: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: max98090: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: lpass: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: hdac_hdmi: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: da7213: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: cx2072x: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: cs53l30: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs4349: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs43130: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs42xx8: Convert to EXPORT_GPL_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs42l83: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs42l51: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs42l42: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: cs4234: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs35l34: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs35l33: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs35l32: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ASoC: ak5558: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: ak4458: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: ak4375: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ASoC: au1x: Convert to DEFINE_SIMPLE_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ALSA: ac97: convert timeouts to secs_to_jiffies() (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: Add DMI quirk for ACP6X mic support (Jaroslav Kysela) [RHEL-80658] - ASoC: cs35l56: Remove redundant 'flush_workqueue()' calls (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: wcd937x: fix a potential memory leak in wcd937x_soc_codec_probe() (Jaroslav Kysela) [RHEL-80658] {CVE-2025-37941} - ASoC: soc-pcm: tidyup function name to snd_soc_dpcm_be_can_xxx() (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Fix leak in acp_pci_probe() (Jaroslav Kysela) [RHEL-80658] - ASoC: tlv320adc3xxx: remove unnecessary NULL check before clk_disable_unprepare() (Jaroslav Kysela) [RHEL-80658] - ASoC: tegra: Use non-atomic timeout for ADX status register (Jaroslav Kysela) [RHEL-80658] - ASoC: sma1307: Add NULL check in sma1307_setting_loaded() (Jaroslav Kysela) [RHEL-80658] - ASoC: mt8365: remove unnecessary NULL check before clk_disable_unprepare() (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: davinci-i2s: remove unnecessary NULL check before clk_disable_unprepare() (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add support for GE Entity properties (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add SDCA Control Range data access helper (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add type flag for Controls (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Allow naming of imp def controls (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Use __free() to manage local buffers (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Tidy up initialization write parsing (Jaroslav Kysela) [RHEL-80658] - ASoC: pcm6240: Drop bogus code handling IRQ as GPIO (Jaroslav Kysela) [RHEL-80658] - ASoC: pcm3008: Convert to GPIO descriptors (Jaroslav Kysela) [RHEL-80658] - ASoC: pcm1681: Drop unused include (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188-mt6359: Add accdet headset jack detect support (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: common: Handle mediatek,accdet property (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: Add aw88166 amplifier driver (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: Always honor no_shutup_pins (Jaroslav Kysela) [RHEL-80658] - ALSA: usb-audio: Fix CME quirk for UF series keyboards (Jaroslav Kysela) [RHEL-80658] - ALSA: intel-hdmi-audio: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ALSA: vx222: Convert to DEFINE_SIMPLE_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ALSA: oxygen: Convert to EXPORT_SIMPLE_DEV_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/tegra: Convert to RUNTIME_PM_OPS() & co (Jaroslav Kysela) [RHEL-80658] - ALSA: hda-intel: Convert to RUNTIME_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ALSA: hda: Use RUNTIME_PM_OPS() and pm_ptr() (Jaroslav Kysela) [RHEL-80658] - ALSA: pcm: Convert to SYSTEM_SLEEP_PM_OPS() (Jaroslav Kysela) [RHEL-80658] - ALSA: atmel: Convert to DEFINE_SIMPLE_DEV_PM_OPS() macro (Jaroslav Kysela) [RHEL-80658] - ALSA: ac97: Convert to RUNTIME_PM_OPS() macro (Jaroslav Kysela) [RHEL-80658] - ASoC: sun4i-codec: add h616 card long_name (Jaroslav Kysela) [RHEL-80658] - ASoC: sun4i-codec: support hp-det-gpios property (Jaroslav Kysela) [RHEL-80658] - ASoC: sun4i-codec: correct dapm widgets and controls for h616 (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2770: Fix and redo I/V sense TDM slot setting logic (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2770: Factor out set_ivsense_slots (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2764: Add control concerning overcurrent events (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2764: Extend driver to SN012776 (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: ipc4-topology: Allocate ref_params on stack (Jaroslav Kysela) [RHEL-80658] - ALSA: ctxfi: change dao_set_input functions from kzalloc to kcalloc (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: speyside: Free gpiod table (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Fix for enabling DMIC on acp platforms via _DSD entry (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Refactor renoir platform resource structure (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Refactor rembrant platform resource structure (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Refactor acp63 platform resource structure (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Refactor acp70 platform resource structure (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Remove white line (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Move spin_lock and list initialization to acp-pci driver (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Remove redundant acp_dev_data structure (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Add new interrupt handle callbacks in acp_common_hw_ops (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Refactor acp machine select (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Refactor acp platform device creation (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Refactor dmic-codec platform device creation (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Implement acp_common_hw_ops support for acp platforms (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Remove redundant acp70 chip->name (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: soc-acpi-intel-ptl-match: Add cs42l43 support (Jaroslav Kysela) [RHEL-80658] - ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup() (Jaroslav Kysela) [RHEL-80658] - ASoC: cs35l41: check the return value from spi_setup() (Jaroslav Kysela) [RHEL-80658] - ASoC: rt711-sdca: add DP0 support (Jaroslav Kysela) [RHEL-80658] - soundwire: debugfs: add interface for BPT/BRA transfers (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: hda-sdw-bpt: add CHAIN_DMA support (Jaroslav Kysela) [RHEL-80658] - soundwire: intel_ace2x: add BPT send_async/wait callbacks (Jaroslav Kysela) [RHEL-80658] - soundwire: intel: add BPT context definition (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: hda-sdw-bpt: add helpers for SoundWire BPT DMA (Jaroslav Kysela) [RHEL-80658] - soundwire: intel_auxdevice: add indirection for BPT send_async/wait (Jaroslav Kysela) [RHEL-80658] - soundwire: cadence: add BTP/BRA helpers to format data (Jaroslav Kysela) [RHEL-80658] - soundwire: bus: add bpt_stream pointer (Jaroslav Kysela) [RHEL-80658] - soundwire: bus: add send_async/wait APIs for BPT protocol (Jaroslav Kysela) [RHEL-80658] - soundwire: stream: reuse existing code for BPT stream (Jaroslav Kysela) [RHEL-80658] - soundwire: stream: special-case the bus compute_params() routine (Jaroslav Kysela) [RHEL-80658] - soundwire: stream: extend sdw_alloc_stream() to take 'type' parameter (Jaroslav Kysela) [RHEL-80658] - soundwire: extend sdw_stream_type to BPT (Jaroslav Kysela) [RHEL-80658] - soundwire: cadence: add BTP support for DP0 (Jaroslav Kysela) [RHEL-80658] - ASoC: dmic: add regulator support (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: ptl: Add support for mic privacy (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: hda/shim: Add callbacks to handle mic privacy change for sdw (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: hda-mlink: Add support for mic privacy in VS SHIM registers (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: ipc4: Add support for Intel HW managed mic privacy messaging (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: Create ptl.c as placeholder for Panther Lake features (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: mtl: Stop exporting dsp_ops callback functions (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: lnl/ptl: Only set dsp_ops which differs from MTL (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: mtl: Split up dsp_ops setup code (Jaroslav Kysela) [RHEL-80658] - ALSA: seq: Avoid client data changes during proc reads (Jaroslav Kysela) [RHEL-80658] - ALSA: seq: Improve data consistency at polling (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-dai: add snd_soc_dai_mute_is_ctrled_at_trigger() (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-pcm: reuse dpcm_state_string() (Jaroslav Kysela) [RHEL-80658] - ASoC: dapm: Fix changes to DECLARE_ADAU17X1_DSP_MUX_CTRL (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: soc-acpi-intel-ptl-match: add cs42l43 6x cs35l56 support (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: soc-acpi-intel-lnl-match: add cs42l43 6x cs35l56 support (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: soc-acpi-intel-ptl-match: add sdw multi function mockup codec (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: soc-acpi-intel-lnl-match: add sdw multi function mockup codec (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: add multi-function SDW mockup codec match (Jaroslav Kysela) [RHEL-80658] - ASoC: sdw_utils: add mic and amp dais to 0xaaaa codec (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: soc-acpi-intel-ptl-match: add rt713_vb_l3_rt1320_l12 support (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: soc-acpi-intel-ptl-match: add rt712_vb_l3_rt1320_l2 support (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: adl: add 2xrt1316 audio configuration (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-pcm: merge soc_pcm_hw_update_format/subformat() (Jaroslav Kysela) [RHEL-80658] - ASoC: doc: use SND_SOC_DAILINK_xxx() macro (Jaroslav Kysela) [RHEL-80658] - ASoC: Tidy up SOC_DOUBLE_* and SOC_SINGLE_* helpers (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: tm2_wm5110: Drop unused include (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: tobermory: Drop unused include (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: speyside: Convert to GPIO descriptor (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: lowland: Drop unused include (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: littlemill: Drop unused include (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: bells: Drop unused include (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt6359: Fix DT parse error due to wrong child node name (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7 (Jaroslav Kysela) [RHEL-80658] - ASoC: Tidy up SOC_DOUBLE_R_* helpers (Jaroslav Kysela) [RHEL-80658] - ASoC: dapm: Use ASoC control macros where possible (Jaroslav Kysela) [RHEL-80658] - ASoC: dapm: Add missing SOC_DAPM_DOUBLE_R_TLV() helper (Jaroslav Kysela) [RHEL-80658] - ASoC: atmel: tse850-pcm5142: Use SOC_SINGLE_EXT() helper macro (Jaroslav Kysela) [RHEL-80658] - ASoC: wsa881x: Use SOC_SINGLE_EXT_TLV() helper macro (Jaroslav Kysela) [RHEL-80658] - ASoC: wm9713: Use SOC_DOUBLE_EXT() helper macro (Jaroslav Kysela) [RHEL-80658] - ASoC: wm9712: Use SOC_SINGLE_EXT() helper macro (Jaroslav Kysela) [RHEL-80658] - ASoC: wcd938x: Use SOC_SINGLE_EXT_TLV() helper macro (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2562: Use SOC_SINGLE_EXT_TLV() helper macro (Jaroslav Kysela) [RHEL-80658] - ASoC: sma1307: Use SOC_SINGLE_EXT() helper macro (Jaroslav Kysela) [RHEL-80658] - ASoC: rt715: Remove duplicate SOC_DOUBLE_R_EXT() helper macro (Jaroslav Kysela) [RHEL-80658] - ASoC: Remove unused helper macro (Jaroslav Kysela) [RHEL-80658] - ASoC: fsl_audmix: register card device depends on 'dais' property (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: wsa883x: Implement temperature reading and hwmon (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: hda-dai: Remove unnecessary bool conversion (Jaroslav Kysela) [RHEL-80658] - ASoC: audio-graph-card2-custom-sample.dtsi: remove original sample (Jaroslav Kysela) [RHEL-80658] - ASoC: audio-graph-card2-custom-sample2.dtsi: Separate Sample DT (Jaroslav Kysela) [RHEL-80658] - ASoC: audio-graph-card2-custom-sample1.dtsi: Separate Sample DT (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-dai: remove SND_SOC_DAIFMT_CB{MS}_CF{MS} (Jaroslav Kysela) [RHEL-80658] - ASoC: rockchip: rockchip_rt5645: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: rockchip: rockchip_max98090: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: rockchip: rk3399_gru_sound: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: rockchip: rk3288_hdmi_analog: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8365-dai-pcm: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8365-dai-i2s: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8365-mt6357: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8195-mt6359: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8192-mt6359-rt1015-rt5682: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8186-mt6366: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8183-mt6358-ts3a227-max98357: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8183-da7219-max98357: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8173-rt5650-rt5514: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8173-rt5650-rt5676: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8173-max98090: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8173-rt5650: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt7986-dai-etdm: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt7986-wm8960: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt2701-cs42448: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt2701-wm8960: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: smdk_wm8994pcm: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: midas_wm1811: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: aries_wm8994: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: smdk_wm8994: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: littlemill: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: tm2_wm5110: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: tobermory: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: speyside: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: lowland: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: arndale: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: odroid: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: bells: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: samsung: snow: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: max98357a: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: max98927: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: nau8825: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: ssm4567: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: da7219: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: rt5514: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: rt298: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: rt286: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: intel: rt274: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: tegra: tegra_wm8903: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: tegra: tegra_asoc_machine: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: meson: meson-card-utils: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: meson: t9015: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: ux500: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: lochnagar-sc: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: sgtl5000: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: src4xxx: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: twl4030: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: arizona: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: madera: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm9713: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm9081: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8996: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8995: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8994: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8993: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8991: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8990: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8988: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8985: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8983: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8978: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8974: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8971: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8962: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8961: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8960: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8955: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8940: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8904: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8903: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8900: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8804: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8776: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8770: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8753: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8750: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8741: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8737: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8728: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8711: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8580: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8524: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8523: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8510: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8400: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm8350: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm5100: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: wm2200: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5682s: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5682: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5677: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5670: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5668: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5665: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5663: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5660: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5659: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5651: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5645: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5640: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5631: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt5616: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt1308: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt1305: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt1016: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt1015: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt1011: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt298: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt286: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rt274: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: rk817: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: nau8825: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: nau8824: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: nau8822: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: nau8810: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: nau8540: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: da9055: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: da732x: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: da7219: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: da7218: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: da7210: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs53l30: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs43130: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs42xx8: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs42l73: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs42l56: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs42l52: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs42l51: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs42l42: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs35l34: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs35l33: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs35l32: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs530x: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs4341: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs4271: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs4270: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs4265: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codec: cs4234: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: qcom: sc7280: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: qcom: sc7180: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: pxa: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: mxs: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: fsl: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: omap3pandora: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: omap-twl4030: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: davinci-evm: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: j721e-evm: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: ams-delta: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: osk5912: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: n810: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: Documentation: Codec to Codec: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5677: Update definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt298: Update definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt286: Update definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5682: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5670: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5668: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5665: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5663: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5660: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5659: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5651: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5645: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5640: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt5514: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt274: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt1318: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt1308: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt1305: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt1019: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt1016: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt1015: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: rt1011: Fix definition of device_id tables (Jaroslav Kysela) [RHEL-80658] - ASoC: uniphier: use devm_kmemdup_array() (Jaroslav Kysela) [RHEL-80658] - ASoC: meson: axg-tdm-interface: use devm_kmemdup_array() (Jaroslav Kysela) [RHEL-80658] - ASoC: uda1380: use devm_kmemdup_array() (Jaroslav Kysela) [RHEL-80658] - ASoC: tlv320dac33: use devm_kmemdup_array() (Jaroslav Kysela) [RHEL-80658] - ASoC: hdac_hdmi: use devm_kmemdup_array() (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: use devm_kmemdup_array() (Jaroslav Kysela) [RHEL-80658] - ALSA: seq: seq_oss_event: fix inconsistent indenting warning in note_on_event() (Jaroslav Kysela) [RHEL-80658] - ALSA: es18xx: Fix spelling mistake "grap" -> "grab" (Jaroslav Kysela) [RHEL-80658] - ALSA: usb-audio: enable support for Presonus Studio 1824c within 1810c file (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188: avoid uninitialized variable use (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add helper to write out defaults and fixed values (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add regmap helpers for parsing for DisCo Constant values (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add generic regmap SDCA helpers (Jaroslav Kysela) [RHEL-80658] - ALSA: opti9xx: fix inconsistent indenting warning in snd_opti9xx_configure() (Jaroslav Kysela) [RHEL-80658] - ALSA: emu10k1: fix inconsistent indenting warning in snd_emu10k1_synth_free() (Jaroslav Kysela) [RHEL-80658] - ALSA: pcm: Drop superfluous NULL check in snd_pcm_format_set_silence() (Jaroslav Kysela) [RHEL-80658] - soundwire: amd: change the log level for command response log (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2781: Clean up for some define (Jaroslav Kysela) [RHEL-80658] - ASoC: rt712-sdca: Add FU05 playback switch control (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188-mt6359: Add DMIC support (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188: Add support for DMIC (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188: Treat DMIC_GAINx_CUR as non-volatile (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188: Add reference for dmic clocks (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8188: Add audsys hires clocks (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: acp70: Remove unnecessary if-check (Jaroslav Kysela) [RHEL-80658] - ASoC: q6dsp: q6apm: replace kzalloc() with kcalloc() in q6apm_map_memory_regions() (Jaroslav Kysela) [RHEL-80658] - ASoC: sh: migor: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: ti: rx51: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: kirkwood: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - ASoC: Documentation: DPCM: use inclusive language for SND_SOC_DAIFMT_CBx_CFx (Jaroslav Kysela) [RHEL-80658] - sound/virtio: Fix cancel_sync warnings on uninitialized work_structs (Jaroslav Kysela) [RHEL-80658] {CVE-2025-37805} - ASoC: Intel: avs: Support multi-channel PEAKVOL instantiation (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Honor the invert flag for mixer controls (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Add support for mute for PEAKVOL and GAIN (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Move to the new control operations (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: New volume control operations (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Update VOLUME and add MUTE IPCs (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Add volume control for GAIN module (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Make PEAKVOL configurable from topology (Jaroslav Kysela) [RHEL-80658] - ASoC: topology: Save num_channels value for mixer controls (Jaroslav Kysela) [RHEL-80658] - ASoC: topology: Create kcontrols based on their type (Jaroslav Kysela) [RHEL-80658] - ASoC: imx-card: Add playback_only or capture_only support (Jaroslav Kysela) [RHEL-80658] - ASoC: cros_ec_codec: Use str_enable_disable() helper in wov_enable_put() (Jaroslav Kysela) [RHEL-80658] - ASoC: atmel: atmel-classd: Use str_enabled_disabled() helper (Jaroslav Kysela) [RHEL-80658] - ASoC: fsl: fsl_qmc_audio: Remove unnecessary bool conversions (Jaroslav Kysela) [RHEL-80658] - ALSA: arm: aaci: Constify amba_id table (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: amd: Add depends on CPU_SUP_AMD (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-core: Use str_yes_no() in snd_soc_close_delayed_work() (Jaroslav Kysela) [RHEL-80658] - Documentation: typo fixes (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: fix inconsistent indenting warning in check_and_handle_sdw_dma_irq() (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx: Fix error code in probe() (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx: Fix an IS_ERR() vs NULL bug in imx_parse_ioremap_memory() (Jaroslav Kysela) [RHEL-80658] - ASoC: fsl: imx-pcm-fiq: Switch to use hrtimer_setup() (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: Use str_enable_disable() helper (Jaroslav Kysela) [RHEL-80658] - ASoC: wm_hubs: Use str_enable_disable() in wm_hubs_update_class_w() (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: ipc3: Use str_enabled_disabled() helper function (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Intel: Don't import non-existing module namespace (Jaroslav Kysela) [RHEL-80658] - ASoC: ops: Enforce platform maximum on initial value (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2764: Mark SW_RESET as volatile (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2764: Wait for ramp-down after shutdown (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2764: Power up/down amp on mute ops (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-pcm: cleanup dpcm_fe_dai_do_trigger() (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-pcm: cleanup dpcm_dai_trigger_fe_be() (Jaroslav Kysela) [RHEL-80658] - ASoC: remove dpcm_process_paths() (Jaroslav Kysela) [RHEL-80658] - ASoC: remove update from snd_soc_card (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-pcm: remove duplicate param from __soc_pcm_hw_params() (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-pcm: makes dpcm_dapm_stream_event() void (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-ops: makes snd_soc_read_signed() void (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-core: makes snd_soc_set_dmi_name() local (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-pcm: no need to check dpcm->fe on dpcm_be_connect() (Jaroslav Kysela) [RHEL-80658] - soundwire: slave: fix an OF node reference leak in soundwire slave device (Jaroslav Kysela) [RHEL-80658] - soundwire: Use str_enable_disable-like helpers (Jaroslav Kysela) [RHEL-80658] - soundwire: amd: add soundwire host wake interrupt enable/disable sequence (Jaroslav Kysela) [RHEL-80658] - soundwire: amd: set ACP_PME_EN during runtime suspend sequence (Jaroslav Kysela) [RHEL-80658] - soundwire: amd: set device power state during suspend/resume sequence (Jaroslav Kysela) [RHEL-80658] - soundwire: amd: add support for ACP7.0 & ACP7.1 platforms (Jaroslav Kysela) [RHEL-80658] - soundwire: amd: add debug log for soundwire wake event (Jaroslav Kysela) [RHEL-80658] - soundwire: amd: change the soundwire wake enable/disable sequence (Jaroslav Kysela) [RHEL-80658] - soundwire: Revert "soundwire: intel_auxdevice: start the bus at default frequency" (Jaroslav Kysela) [RHEL-80658] - soundwire: cadence_master: set frame shape and divider based on actual clk freq (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Use str_on_off() in avs_dsp_core_power() (Jaroslav Kysela) [RHEL-80658] - ASoC: tegra: Remove the isomgr_bw APIs export (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: use switch statements for acp pci revision id check (Jaroslav Kysela) [RHEL-80658] - ASoC: adau1701: use gpiod_multi_set_value_cansleep (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx-common: set sdev->pdata->hw_pdata after common is alloc'd (Jaroslav Kysela) [RHEL-80658] - ASoC: fsl_micfil: Add decimation filter bypass mode support (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: wcd93xx-sdw: fix of_property_read_bool() warnings (Jaroslav Kysela) [RHEL-80658] - ASoC: tscs454: Use str_enable_disable() in pll_power_event() (Jaroslav Kysela) [RHEL-80658] - ALSA: hda: intel: Add Lenovo IdeaPad Z570 to probe denylist (Jaroslav Kysela) [RHEL-80658] - ALSA: hda: intel: Fix Optimus when GPU has no sound (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add support for PDE Entity properties (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add support for clock Entity properties (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add support for IT/OT Entity properties (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add Channel Cluster parsing (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add parsing for Control range structures (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add SDCA Control parsing (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add support for Entity 0 (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Parse initialization write table (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Add code to parse Function information (Jaroslav Kysela) [RHEL-80658] - ASoC: SDCA: Minor formatting and naming tweaks (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx: add driver for the imx95 chip (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx: merge imx8 and imx8ulp drivers (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx: merge imx8 and imx8m drivers (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx8: drop unneeded/unused macros/header includes (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx8: use IMX_SOF_* macros (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx8: use common imx chip interface (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: imx: introduce more common structures and functions (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: amd_sdw: Add quirks for Dell SKU's (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: amd-acp70-acpi-match: Add RT1320 & RT722 combination soundwire machine (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: amd-acp70-acpi-match: Add rt722 support (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: add RT711, RT714 & RT1316 support for ACP7.0 platform (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: add machine driver changes for ACP7.0 and ACP7.1 platforms (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: update Pink Sardine platform Kconfig description (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: update file description and copyright year (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: update module description (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: add soundwire wake interrupt handling (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: add soundwire dma interrupts handling for ACP7.0 platform (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: implement function to restore dma config for ACP7.0 platform (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: add ACP7.0 & ACP7.1 specific soundwire dma driver changes (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: add pm ops related hw_ops for ACP7.0 & ACP7.1 platforms (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: add pci driver hw_ops for ACP7.0 & ACP7.1 variants (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: rename acp_restore_sdw_dma_config() function (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: refactor soundwire dma interrupts enable/disable sequence (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: refactor soundwire dma driver code (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: store acp revision id in SoundWire dma driver private data (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: refactor soundwire dma interrupt handling (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: add soundwire dma irq thread callback (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: add callback to read acp pin configuration (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: add callback functions for acp pci driver pm ops (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: add acp pci driver hw_ops for acp6.3 platform (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: use macro for ACP6.3 pci revision id (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: ps: rename structure names, variable and other macros (Jaroslav Kysela) [RHEL-80658] - ASoC: tas2781: Switch to use %%ptTsr (Jaroslav Kysela) [RHEL-80658] - ASoC: audio-graph-card2: use snd_soc_ret() (Jaroslav Kysela) [RHEL-80658] - ASoC: audio-graph-card: use snd_soc_ret() (Jaroslav Kysela) [RHEL-80658] - ASoC: simple-card-utils: use snd_soc_ret() (Jaroslav Kysela) [RHEL-80658] - ASoC: simple-card: use snd_soc_ret() (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-pcm: use snd_soc_ret() (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-utils: care -EOPNOTSUPP on snd_soc_ret() (Jaroslav Kysela) [RHEL-80658] - ASoC: add common snd_soc_ret() and use it (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: ipc4: Add support for split firmware releases (Jaroslav Kysela) [RHEL-80658] - ASoC: dapm: unexport dapm_mark_endpoints_dirty() (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: ipc4-pcm: Move out be_rate initialization from for loop in fixup (Jaroslav Kysela) [RHEL-80658] - ASoC: dapm: unexport snd_soc_dapm_update_dai() (Jaroslav Kysela) [RHEL-80658] - ASoC: dapm: unexport snd_soc_dapm_init() (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt8186: Remove unused mt8186_afe_(suspend|resume)_clock (Jaroslav Kysela) [RHEL-80658] - ASoC: qcom: sdw: Add get and set channel maps support from codec to cpu dais (Jaroslav Kysela) [RHEL-80658] - soundwire: qcom: Add set_channel_map api support (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: wcd937x: Add static channel mapping support in wcd937x-sdw (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: ipc4-topology: Improve the information in prepare_copier prints (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: pcm: Add snd_sof_pcm specific wrappers for dev_dbg() and dev_err() (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: pcm: Move period/buffer configuration print after platform open (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: Relocate and rework functionality for PCM stream freeing (Jaroslav Kysela) [RHEL-80658] - ASoC: rt722: get lane mapping property (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: mediatek: Use str_on_off() helper function (Jaroslav Kysela) [RHEL-80658] - ASoC: amd: acp: Use str_low_high() helper function (Jaroslav Kysela) [RHEL-80658] - ASoC: dmic: Add DSD big endian format support (Jaroslav Kysela) [RHEL-80658] - ALSA: docs: Fix module paths in /sys (Jaroslav Kysela) [RHEL-80658] - ALSA: docs: Fix typo (Jaroslav Kysela) [RHEL-80658] - ASoC: hdmi-codec: dump ELD through procfs (Jaroslav Kysela) [RHEL-80658] - ALSA: hda/hdmi: extract common interface for ELD handling (Jaroslav Kysela) [RHEL-80658] - ALSA: lola: Remove unused lola_(save|restore)_mixer (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: wcd934x: use wcd934x binding header (Jaroslav Kysela) [RHEL-80658] - ASoC: dt-bindings: Add bindings for WCD934x DAIs (Jaroslav Kysela) [RHEL-80658] - ALSA: hda: Select avs-driver by default on MBL (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Add WHM module support (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Remove unused gateway configuration code (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: New gateway configuration mechanism (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Configure basefw on TGL-based platforms (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Move DSP-boot steps into individual functions (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: pcm3168a board selection (Jaroslav Kysela) [RHEL-80658] - ASoC: Intel: avs: Add pcm3168a machine board (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: pcm3168a: Relax probing conditions (Jaroslav Kysela) [RHEL-80658] - ASoC: codecs: pcm3168a: Add ACPI match table (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-core: Stop using of_property_read_bool() for non-boolean properties (Jaroslav Kysela) [RHEL-80658] - ASoC: soc-ops: remove soc-dpcm.h (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: mt6358: Remove unused functions (Jaroslav Kysela) [RHEL-80658] - ASoC: SOF: topology: Use krealloc_array() to replace krealloc() (Jaroslav Kysela) [RHEL-80658] - ASoC: tegra: Add interconnect support (Jaroslav Kysela) [RHEL-80658] - ASoC: rt722-sdca: Make use of new expanded MBQ regmap (Jaroslav Kysela) [RHEL-80658] - ASoC: rt722-sdca: Add some missing readable registers (Jaroslav Kysela) [RHEL-80658] - ASoC: mediatek: Remove unused mtk_memif_set_rate (Jaroslav Kysela) [RHEL-80658] - ALSA: usb-audio: Add quirk for Plantronics headsets to fix control names (Jaroslav Kysela) [RHEL-80658] - ASoC: cpcap: Implement jack detection (Jaroslav Kysela) [RHEL-80658] - ASoC: cpcap: Implement .set_bias_level (Jaroslav Kysela) [RHEL-80658] - ASoC: hdmi-codec: allow to refine formats actually supported (Jaroslav Kysela) [RHEL-80658] - nfsd: don't ignore the return code of svc_proc_register() (CKI Backport Bot) [RHEL-93624] {CVE-2025-22026} - audit: fix suffixed '/' filename matching (Ricardo Robaina) [RHEL-78968 RHEL-90106] - audit: Use str_yes_no() helper function (Ricardo Robaina) [RHEL-78968] - audit: Reorganize kerneldoc parameter names (Ricardo Robaina) [RHEL-78968] - redhat/configs: add LED kernel configs (Rupinderjit Singh) [RHEL-70297] - x86/kaslr: Include instead of (Ricardo Robaina) [RHEL-83843] - selftests: bpf: skip FOU tests in test_tc_tunnel (Felix Maurer) [RHEL-101819] - fs/proc/kcore.c: Clear ret value in read_kcore_iter after successful iov_iter_zero (Lichen Liu) [RHEL-83630] - mm: fix the inaccurate memory statistics issue for users (Luiz Capitulino) [RHEL-101961] - KVM: arm64: Expose new KVM cap for cacheable PFNMAP (Donald Dutile) [RHEL-73607] - KVM: arm64: Allow cacheable stage 2 mapping using VMA flags (Donald Dutile) [RHEL-73607] - KVM: arm64: Block cacheable PFNMAP mapping (Donald Dutile) [RHEL-73607] - KVM: arm64: Assume non-PFNMAP/MIXEDMAP VMAs can be mapped cacheable (Donald Dutile) [RHEL-73607] - KVM: arm64: Rename the device variable to s2_force_noncacheable (Donald Dutile) [RHEL-73607] - io_uring: ensure deferred completions are flushed for multishot (Jeff Moyer) [RHEL-102863] - acpi: nfit: vmalloc-out-of-bounds Read in acpi_nfit_ctl (Jeff Moyer) [RHEL-76136] {CVE-2024-56662} - net/mdiobus: Fix potential out-of-bounds clause 45 read/write access (CKI Backport Bot) [RHEL-102096] {CVE-2025-38110} - vmxnet3: correctly report gso type for UDP tunnels (Izabela Bakollari) [RHEL-96969] - vmxnet3: update MTU after device quiesce (Izabela Bakollari) [RHEL-96969] - vmxnet3: Fix tx queue race condition with XDP (Izabela Bakollari) [RHEL-96969] - vmxnet3: support higher link speeds from vmxnet3 v9 (Izabela Bakollari) [RHEL-96969] - redhat/kernel.spec.template: add drivers/net and drivers/net/hw selftest (Hangbin Liu) [RHEL-95557] - nvme-tcp: sanitize request list handling (CKI Backport Bot) [RHEL-103236] {CVE-2025-38264} - usb: hub: Fix flushing of delayed work used for post resume purposes (Desnes Nunes) [RHEL-102858] - usb: hub: Fix flushing and scheduling of delayed work that tunes runtime pm (Desnes Nunes) [RHEL-102858] - usb: hub: fix detection of high tier USB3 devices behind suspended hubs (Desnes Nunes) [RHEL-102858] - perf test probe_vfs_getname: Skip if no suitable line detected (Jakub Brnak) [RHEL-74228] - net: e1000e: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set() (Corinna Vinschen) [RHEL-99400] - treewide: Switch/rename to timer_delete[_sync]() (Corinna Vinschen) [RHEL-99400] - e1000e: change k1 configuration on MTP and later platforms (Corinna Vinschen) [RHEL-99400] - e1000e: Fix real-time violations on link up (Corinna Vinschen) [RHEL-99400] - e1000e: Link NAPI instances to queues and IRQs (Corinna Vinschen) [RHEL-99400] - e1000e: Remove duplicated writel() in e1000_configure_tx/rx() (Corinna Vinschen) [RHEL-99400] - smb: client: fix perf regression with deferred closes (Paulo Alcantara) [RHEL-96872] - smb: client: disable path remapping with POSIX extensions (Paulo Alcantara) [RHEL-96872] - cifs: update internal version number (Paulo Alcantara) [RHEL-96872] - cifs: add documentation for smbdirect setup (Paulo Alcantara) [RHEL-96872] - cifs: do not disable interface polling on failure (Paulo Alcantara) [RHEL-96872] - cifs: serialize other channels when query server interfaces is pending (Paulo Alcantara) [RHEL-96872] - cifs: deal with the channel loading lag while picking channels (Paulo Alcantara) [RHEL-96872] - smb: client: make use of common smbdirect_socket_parameters (Paulo Alcantara) [RHEL-96872] - smb: smbdirect: introduce smbdirect_socket_parameters (Paulo Alcantara) [RHEL-96872] - smb: client: make use of common smbdirect_socket (Paulo Alcantara) [RHEL-96872] - smb: smbdirect: add smbdirect_socket.h (Paulo Alcantara) [RHEL-96872] - smb: client: make use of common smbdirect.h (Paulo Alcantara) [RHEL-96872] - smb: smbdirect: add smbdirect.h with public structures (Paulo Alcantara) [RHEL-96872] - smb: client: make use of common smbdirect_pdu.h (Paulo Alcantara) [RHEL-96872] - smb: smbdirect: add smbdirect_pdu.h with protocol definitions (Paulo Alcantara) [RHEL-96872] - cifs: update the lock ordering comments with new mutex (Paulo Alcantara) [RHEL-96872] - cifs: dns resolution is needed only for primary channel (Paulo Alcantara) [RHEL-96872] - cifs: update dstaddr whenever channel iface is updated (Paulo Alcantara) [RHEL-96872] - cifs: reset connections for all channels when reconnect requested (Paulo Alcantara) [RHEL-96872] - smb: client: use ParentLeaseKey in cifs_do_create (Paulo Alcantara) [RHEL-96872] - smb: client: use ParentLeaseKey in open_cached_dir (Paulo Alcantara) [RHEL-96872] - smb: client: add ParentLeaseKey support (Paulo Alcantara) [RHEL-96872] - cifs: Fix cifs_query_path_info() for Windows NT servers (Paulo Alcantara) [RHEL-96872] - cifs: Fix validation of SMB1 query reparse point response (Paulo Alcantara) [RHEL-96872] - cifs: Correctly set SMB1 SessionKey field in Session Setup Request (Paulo Alcantara) [RHEL-96872] - cifs: Fix encoding of SMB1 Session Setup NTLMSSP Request in non-UNICODE mode (Paulo Alcantara) [RHEL-96872] - smb: client: add NULL check in automount_fullpath (Paulo Alcantara) [RHEL-96872] - smb: client: Remove an unused function and variable (Paulo Alcantara) [RHEL-96872] - netfs: Fix undifferentiation of DIO reads from unbuffered reads (Paulo Alcantara) [RHEL-96872] - netfs: Fix wait/wake to be consistent about the waitqueue used (Paulo Alcantara) [RHEL-96872] - netfs: Fix the request's work item to not require a ref (Paulo Alcantara) [RHEL-96872] - netfs: Fix setting of transferred bytes with short DIO reads (Paulo Alcantara) [RHEL-96872] - netfs: Fix oops in write-retry from mis-resetting the subreq iterator (Paulo Alcantara) [RHEL-96872] - fs/netfs: remove unused flag NETFS_RREQ_BLOCKED (Paulo Alcantara) [RHEL-96872] - fs/netfs: remove unused flag NETFS_RREQ_DONT_UNLOCK_FOLIOS (Paulo Alcantara) [RHEL-96872] - folio_queue: remove unused field `marks3` (Paulo Alcantara) [RHEL-96872] - fs/netfs: declare field `proc_link` only if CONFIG_PROC_FS=y (Paulo Alcantara) [RHEL-96872] - fs/netfs: remove `netfs_io_request.ractl` (Paulo Alcantara) [RHEL-96872] - fs/netfs: reorder struct fields to eliminate holes (Paulo Alcantara) [RHEL-96872] - fs/netfs: remove unused enum choice NETFS_READ_HOLE_CLEAR (Paulo Alcantara) [RHEL-96872] - fs/netfs: remove unused flag NETFS_ICTX_WRITETHROUGH (Paulo Alcantara) [RHEL-96872] - fs/netfs: remove unused source NETFS_INVALID_WRITE (Paulo Alcantara) [RHEL-96872] - fs/netfs: remove unused flag NETFS_SREQ_SEEK_DATA_READ (Paulo Alcantara) [RHEL-96872] - lib/oid_registry.c: remove unused sprint_OID (Paulo Alcantara) [RHEL-96872] - netfs: Update main API document (Paulo Alcantara) [RHEL-96872] - smb: client: Reset all search buffer pointers when releasing buffer (Paulo Alcantara) [RHEL-96872] - smb: client: Fix use-after-free in cifs_fill_dirent (Paulo Alcantara) [RHEL-96872] - smb: client: fix zero rsize error messages (Paulo Alcantara) [RHEL-96872] - smb: client: fix memory leak during error handling for POSIX mkdir (Paulo Alcantara) [RHEL-96872] - smb: client: Avoid race in open_cached_dir with lease breaks (Paulo Alcantara) [RHEL-96872] - smb3 client: warn when parse contexts returns error on compounded operation (Paulo Alcantara) [RHEL-96872] - smb: client: ensure aligned IO sizes (Paulo Alcantara) [RHEL-96872] - cifs: Fix changing times and read-only attr over SMB1 smb_set_file_info() function (Paulo Alcantara) [RHEL-96872] - cifs: Fix and improve cifs_query_path_info() and cifs_query_file_info() (Paulo Alcantara) [RHEL-96872] - smb: client: fix zero length for mkdir POSIX create context (Paulo Alcantara) [RHEL-96872] - Revert "smb: client: fix TCP timers deadlock after rmmod" (Paulo Alcantara) [RHEL-96872] - Revert "smb: client: Fix netns refcount imbalance causing leaks and use-after-free" (Paulo Alcantara) [RHEL-96872] - smb3 client: fix open hardlink on deferred close file error (Paulo Alcantara) [RHEL-96872] - netfs: Only create /proc/fs/netfs with CONFIG_PROC_FS (Paulo Alcantara) [RHEL-96872] - afs: Fix afs_dynroot_readdir() to not use the RCU read lock (Paulo Alcantara) [RHEL-96872] - smb3: Add defines for two new FileSystemAttributes (Paulo Alcantara) [RHEL-96872] - cifs: Fix querying of WSL CHR and BLK reparse points over SMB1 (Paulo Alcantara) [RHEL-96872] - cifs: Split parse_reparse_point callback to functions: get buffer and parse buffer (Paulo Alcantara) [RHEL-96872] - cifs: Improve handling of name surrogate reparse points in reparse.c (Paulo Alcantara) [RHEL-96872] - cifs: Remove explicit handling of IO_REPARSE_TAG_MOUNT_POINT in inode.c (Paulo Alcantara) [RHEL-96872] - cifs: Fix encoding of SMB1 Session Setup Kerberos Request in non-UNICODE mode (Paulo Alcantara) [RHEL-96872] - cifs: Fix support for WSL-style symlinks (Paulo Alcantara) [RHEL-96872] - smb311 client: fix missing tcon check when mounting with linux/posix extensions (Paulo Alcantara) [RHEL-96872] - cifs: Ensure that all non-client-specific reparse points are processed by the server (Paulo Alcantara) [RHEL-96872] - cifs: update internal version number (Paulo Alcantara) [RHEL-96872] - cifs: Implement is_network_name_deleted for SMB1 (Paulo Alcantara) [RHEL-96872] - cifs: Remove cifs_truncate_page() as it should be superfluous (Paulo Alcantara) [RHEL-96872] - cifs: Do not add FILE_READ_ATTRIBUTES when using GENERIC_READ/EXECUTE/ALL (Paulo Alcantara) [RHEL-96872] - cifs: Improve SMB2+ stat() to work also without FILE_READ_ATTRIBUTES (Paulo Alcantara) [RHEL-96872] - cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES (Paulo Alcantara) [RHEL-96872] - cifs: Fix querying and creating MF symlinks over SMB1 (Paulo Alcantara) [RHEL-96872] - cifs: Fix access_flags_to_smbopen_mode (Paulo Alcantara) [RHEL-96872] - cifs: Fix negotiate retry functionality (Paulo Alcantara) [RHEL-96872] - cifs: Improve handling of NetBIOS packets (Paulo Alcantara) [RHEL-96872] - cifs: Allow to disable or force initialization of NetBIOS session (Paulo Alcantara) [RHEL-96872] - cifs: Add a new xattr system.smb3_ntsd_owner for getting or setting owner (Paulo Alcantara) [RHEL-96872] - cifs: Add a new xattr system.smb3_ntsd_sacl for getting or setting SACLs (Paulo Alcantara) [RHEL-96872] - smb: client: Update IO sizes after reconnection (Paulo Alcantara) [RHEL-96872] - smb: client: Store original IO parameters and prevent zero IO sizes (Paulo Alcantara) [RHEL-96872] - smb:client: smb: client: Add reverse mapping from tcon to superblocks (Paulo Alcantara) [RHEL-96872] - cifs: remove unreachable code in cifs_get_tcp_session() (Paulo Alcantara) [RHEL-96872] - cifs: fix integer overflow in match_server() (Paulo Alcantara) [RHEL-96872] - cifs: Add new mount option -o nounicode to disable SMB1 UNICODE mode (Paulo Alcantara) [RHEL-96872] - cifs: Set default Netbios RFC1001 server name to hostname in UNC (Paulo Alcantara) [RHEL-96872] - smb: client: Fix netns refcount imbalance causing leaks and use-after-free (Paulo Alcantara) [RHEL-96872] - cifs: add validation check for the fields in smb_aces (Paulo Alcantara) [RHEL-96872] - CIFS: Propagate min offload along with other parameters from primary to secondary channels. (Paulo Alcantara) [RHEL-96872] - cifs: Improve establishing SMB connection with NetBIOS session (Paulo Alcantara) [RHEL-96872] - cifs: Fix establishing NetBIOS session for SMB2+ connection (Paulo Alcantara) [RHEL-96872] - cifs: Fix getting DACL-only xattr system.cifs_acl and system.smb3_acl (Paulo Alcantara) [RHEL-96872] - cifs: Check if server supports reparse points before using them (Paulo Alcantara) [RHEL-96872] - cifs: avoid NULL pointer dereference in dbg call (Paulo Alcantara) [RHEL-96872] - smb: client: Remove redundant check in smb2_is_path_accessible() (Paulo Alcantara) [RHEL-96872] - smb: client: Remove redundant check in cifs_oplock_break() (Paulo Alcantara) [RHEL-96872] - smb: mark the new channel addition log as informational log with cifs_info (Paulo Alcantara) [RHEL-96872] - smb: minor cleanup to remove unused function declaration (Paulo Alcantara) [RHEL-96872] - mm/folio_queue: delete __folio_order and use folio_order directly (Paulo Alcantara) [RHEL-96872] - afs: Simplify cell record handling (Paulo Alcantara) [RHEL-96872] - afs: Fix afs_server ref accounting (Paulo Alcantara) [RHEL-96872] - afs: Use the per-peer app data provided by rxrpc (Paulo Alcantara) [RHEL-96872] - rxrpc: Allow the app to store private data on peer structs (Paulo Alcantara) [RHEL-96872] - afs: Drop the net parameter from afs_unuse_cell() (Paulo Alcantara) [RHEL-96872] - afs: Make afs_lookup_cell() take a trace note (Paulo Alcantara) [RHEL-96872] - afs: Improve server refcount/active count tracing (Paulo Alcantara) [RHEL-96872] - afs: Improve afs_volume tracing to display a debug ID (Paulo Alcantara) [RHEL-96872] - afs: Change dynroot to create contents on demand (Paulo Alcantara) [RHEL-96872] - afs: Remove the "autocell" mount option (Paulo Alcantara) [RHEL-96872] - netfs: Fix netfs_unbuffered_read() to return ssize_t rather than int (Paulo Alcantara) [RHEL-96872] - netfs: Fix rolling_buffer_load_from_ra() to not clear mark bits (Paulo Alcantara) [RHEL-96872] - netfs: Call `invalidate_cache` only if implemented (Paulo Alcantara) [RHEL-96872] - netfs: Fix collection of results during pause when collection offloaded (Paulo Alcantara) [RHEL-96872] - afs: Fix afs_atcell_get_link() to check if ws_cell is unset first (Paulo Alcantara) [RHEL-96872] - smb: client: Fix match_session bug preventing session reuse (Paulo Alcantara) [RHEL-96872] - cifs: Fix integer overflow while processing actimeo mount option (Paulo Alcantara) [RHEL-96872] - afs: Fix afs_atcell_get_link() to handle RCU pathwalk (Paulo Alcantara) [RHEL-96872] - cifs: fix incorrect validation for num_aces field of smb_acl (Paulo Alcantara) [RHEL-96872] - smb: common: change the data type of num_aces to le16 (Paulo Alcantara) [RHEL-96872] - cifs: Fix the smb1 readv callback to correctly call netfs (Paulo Alcantara) [RHEL-96872] - afs: Give an afs_server object a ref on the afs_cell object it points to (Paulo Alcantara) [RHEL-96872] - afs: Fix the server_list to unuse a displaced server rather than putting it (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix locking issues with the peer record hash (Paulo Alcantara) [RHEL-96872] - rxrpc: peer->mtu_lock is redundant (Paulo Alcantara) [RHEL-96872] - rxrpc: rxperf: Fix missing decoding of terminal magic cookie (Paulo Alcantara) [RHEL-96872] - cifs: Treat unhandled directory name surrogate reparse points as mount directory nodes (Paulo Alcantara) [RHEL-96872] - cifs: Throw -EOPNOTSUPP error on unsupported reparse point type from parse_reparse_point() (Paulo Alcantara) [RHEL-96872] - smb311: failure to open files of length 1040 when mounting with SMB3.1.1 POSIX extensions (Paulo Alcantara) [RHEL-96872] - smb: client, common: Avoid multiple -Wflex-array-member-not-at-end warnings (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix ipv6 path MTU discovery (Paulo Alcantara) [RHEL-96872] - netfs: Fix setting NETFS_RREQ_ALL_QUEUED to be after all subreqs queued (Paulo Alcantara) [RHEL-96872] - netfs: Add retry stat counters (Paulo Alcantara) [RHEL-96872] - netfs: Fix a number of read-retry hangs (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix alteration of headers whilst zerocopy pending (Paulo Alcantara) [RHEL-96872] - cifs: pick channels for individual subrequests (Paulo Alcantara) [RHEL-96872] - smb: client: change lease epoch type from unsigned int to __u16 (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix race in call state changing vs recvmsg() (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix call state set to not include the SERVER_SECURING state (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix the rxrpc_connection attend queue handling (Paulo Alcantara) [RHEL-96872] - cifs: Fix parsing native symlinks directory/file type (Paulo Alcantara) [RHEL-96872] - cifs: update internal version number (Paulo Alcantara) [RHEL-96872] - cifs: Add support for creating WSL-style symlinks (Paulo Alcantara) [RHEL-96872] - smb3: add support for IAKerb (Paulo Alcantara) [RHEL-96872] - cifs: Fix struct FILE_ALL_INFO (Paulo Alcantara) [RHEL-96872] - cifs: Add support for creating NFS-style symlinks (Paulo Alcantara) [RHEL-96872] - cifs: Add support for creating native Windows sockets (Paulo Alcantara) [RHEL-96872] - cifs: Add mount option -o reparse=none (Paulo Alcantara) [RHEL-96872] - cifs: Add mount option -o symlink= for choosing symlink create type (Paulo Alcantara) [RHEL-96872] - cifs: Fix creating and resolving absolute NT-style symlinks (Paulo Alcantara) [RHEL-96872] - cifs: Simplify reparse point check in cifs_query_path_info() function (Paulo Alcantara) [RHEL-96872] - cifs: Remove symlink member from cifs_open_info_data union (Paulo Alcantara) [RHEL-96872] - cifs: Update description about ACL permissions (Paulo Alcantara) [RHEL-96872] - cifs: Rename struct reparse_posix_data to reparse_nfs_data_buffer and move to common/smb2pdu.h (Paulo Alcantara) [RHEL-96872] - cifs: Remove struct reparse_posix_data from struct cifs_open_info_data (Paulo Alcantara) [RHEL-96872] - cifs: Remove unicode parameter from parse_reparse_point() function (Paulo Alcantara) [RHEL-96872] - cifs: Fix getting and setting SACLs over SMB1 (Paulo Alcantara) [RHEL-96872] - cifs: Remove intermediate object of failed create SFU call (Paulo Alcantara) [RHEL-96872] - cifs: Validate EAs for WSL reparse points (Paulo Alcantara) [RHEL-96872] - cifs: Change translation of STATUS_PRIVILEGE_NOT_HELD to -EPERM (Paulo Alcantara) [RHEL-96872] - cifs: Change translation of STATUS_NOT_A_REPARSE_POINT to -ENODATA (Paulo Alcantara) [RHEL-96872] - cifs: Remove duplicate struct reparse_symlink_data and SYMLINK_FLAG_RELATIVE (Paulo Alcantara) [RHEL-96872] - cifs: Do not attempt to call CIFSGetSrvInodeNumber() without CAP_INFOLEVEL_PASSTHRU (Paulo Alcantara) [RHEL-96872] - cifs: Do not attempt to call CIFSSMBRenameOpenFile() without CAP_INFOLEVEL_PASSTHRU (Paulo Alcantara) [RHEL-96872] - cifs: Remove declaration of dead CIFSSMBQuerySymLink function (Paulo Alcantara) [RHEL-96872] - cifs: Fix printing Status code into dmesg (Paulo Alcantara) [RHEL-96872] - cifs: Add missing NT_STATUS_* codes from nterr.h to nterr.c (Paulo Alcantara) [RHEL-96872] - cifs: Fix endian types in struct rfc1002_session_packet (Paulo Alcantara) [RHEL-96872] - afs: Make /afs/@cell and /afs/.@cell symlinks (Paulo Alcantara) [RHEL-96872] - afs: Add rootcell checks (Paulo Alcantara) [RHEL-96872] - afs: Make /afs/. as well as /afs/ mountpoints (Paulo Alcantara) [RHEL-96872] - netfs: Report on NULL folioq in netfs_writeback_unlock_folios() (Paulo Alcantara) [RHEL-96872] - afs: Add a tracepoint for afs_read_receive() (Paulo Alcantara) [RHEL-96872] - afs: Locally initialise the contents of a new symlink on creation (Paulo Alcantara) [RHEL-96872] - afs: Use the contained hashtable to search a directory (Paulo Alcantara) [RHEL-96872] - afs: Make afs_mkdir() locally initialise a new directory's content (Paulo Alcantara) [RHEL-96872] - netfs: Change the read result collector to only use one work item (Paulo Alcantara) [RHEL-96872] - afs: Make {Y,}FS.FetchData an asynchronous operation (Paulo Alcantara) [RHEL-96872] - afs: Eliminate afs_read (Paulo Alcantara) [RHEL-96872] - afs: Use netfslib for symlinks, allowing them to be cached (Paulo Alcantara) [RHEL-96872] - afs: Use netfslib for directories (Paulo Alcantara) [RHEL-96872] - afs: Make afs_init_request() get a key if not given a file (Paulo Alcantara) [RHEL-96872] - netfs: Add support for caching single monolithic objects such as AFS dirs (Paulo Alcantara) [RHEL-96872] - netfs: Add functions to build/clean a buffer in a folio_queue (Paulo Alcantara) [RHEL-96872] - afs: Add more tracepoints to do with tracking validity (Paulo Alcantara) [RHEL-96872] - cachefiles: Add auxiliary data trace (Paulo Alcantara) [RHEL-96872] - cachefiles: Add some subrequest tracepoints (Paulo Alcantara) [RHEL-96872] - netfs: Remove some extraneous directory invalidations (Paulo Alcantara) [RHEL-96872] - afs: Don't use mutex for I/O operation lock (Paulo Alcantara) [RHEL-96872] - netfs: Don't use bh spinlock (Paulo Alcantara) [RHEL-96872] - netfs: Drop the was_async arg from netfs_read_subreq_terminated() (Paulo Alcantara) [RHEL-96872] - netfs: Drop the error arg from netfs_read_subreq_terminated() (Paulo Alcantara) [RHEL-96872] - netfs: Split retry code out of fs/netfs/write_collect.c (Paulo Alcantara) [RHEL-96872] - netfs: Make netfs_advance_write() return size_t (Paulo Alcantara) [RHEL-96872] - netfs: Abstract out a rolling folio buffer implementation (Paulo Alcantara) [RHEL-96872] - netfs: Add a tracepoint to log the lifespan of folio_queue structs (Paulo Alcantara) [RHEL-96872] - netfs: Use a folio_queue allocation and free functions (Paulo Alcantara) [RHEL-96872] - cachefiles: Clean up some whitespace in trace header (Paulo Alcantara) [RHEL-96872] - netfs: Clean up some whitespace in trace header (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix ability to add more data to a call once MSG_MORE deasserted (Paulo Alcantara) [RHEL-96872] - rxrpc: Disable IRQ, not BH, to take the lock for ->attend_link (Paulo Alcantara) [RHEL-96872] - rxrpc: Implement RACK/TLP to deal with transmission stalls [RFC8985] (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix request for an ACK when cwnd is minimum (Paulo Alcantara) [RHEL-96872] - rxrpc: Manage RTT per-call rather than per-peer (Paulo Alcantara) [RHEL-96872] - rxrpc: Add a reason indicator to the tx_ack tracepoint (Paulo Alcantara) [RHEL-96872] - rxrpc: Add a reason indicator to the tx_data tracepoint (Paulo Alcantara) [RHEL-96872] - rxrpc: Tidy up the ACK parsing a bit (Paulo Alcantara) [RHEL-96872] - rxrpc: Use irq-disabling spinlocks between app and I/O thread (Paulo Alcantara) [RHEL-96872] - rxrpc: Don't allocate a txbuf for an ACK transmission (Paulo Alcantara) [RHEL-96872] - rxrpc: Send jumbo DATA packets (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix initial resend timeout (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix the calculation and use of RTO (Paulo Alcantara) [RHEL-96872] - rxrpc: Display userStatus in rxrpc_rx_ack trace (Paulo Alcantara) [RHEL-96872] - rxrpc: Adjust the rxrpc_rtt_rx tracepoint (Paulo Alcantara) [RHEL-96872] - rxrpc: Generate rtt_min (Paulo Alcantara) [RHEL-96872] - rxrpc: Don't use received skbuff timestamps (Paulo Alcantara) [RHEL-96872] - rxrpc: Store the DATA serial in the txqueue and use this in RTT calc (Paulo Alcantara) [RHEL-96872] - rxrpc: Use the new rxrpc_tx_queue struct to more efficiently process ACKs (Paulo Alcantara) [RHEL-96872] - rxrpc: Adjust names and types of congestion-related fields (Paulo Alcantara) [RHEL-96872] - rxrpc: Display stats about jumbo packets transmitted and received (Paulo Alcantara) [RHEL-96872] - rxrpc: Replace call->acks_first_seq with tracking of the hard ACK point (Paulo Alcantara) [RHEL-96872] - rxrpc: call->acks_hard_ack is now the same call->tx_bottom, so remove it (Paulo Alcantara) [RHEL-96872] - rxrpc: Implement progressive transmission queue struct (Paulo Alcantara) [RHEL-96872] - rxrpc: Don't need barrier for ->tx_bottom and ->acks_hard_ack (Paulo Alcantara) [RHEL-96872] - rxrpc: Timestamp DATA packets before transmitting them (Paulo Alcantara) [RHEL-96872] - rxrpc: Only set DF=1 on initial DATA transmission (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix injection of packet loss (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix CPU time starvation in I/O thread (Paulo Alcantara) [RHEL-96872] - rxrpc: Add a tracepoint to show variables pertinent to jumbo packet size (Paulo Alcantara) [RHEL-96872] - rxrpc: Prepare to be able to send jumbo DATA packets (Paulo Alcantara) [RHEL-96872] - rxrpc: Separate the packet length from the data length in rxrpc_txbuf (Paulo Alcantara) [RHEL-96872] - rxrpc: Implement path-MTU probing using padded PING ACKs (RFC8899) (Paulo Alcantara) [RHEL-96872] - rxrpc: Use a large kvec[] in rxrpc_local rather than every rxrpc_txbuf (Paulo Alcantara) [RHEL-96872] - rxrpc: Request an ACK on impending Tx stall (Paulo Alcantara) [RHEL-96872] - rxrpc: Show stats counter for received reason-0 ACKs (Paulo Alcantara) [RHEL-96872] - rxrpc: Don't set the MORE-PACKETS rxrpc wire header flag (Paulo Alcantara) [RHEL-96872] - rxrpc: Clean up Tx header flags generation handling (Paulo Alcantara) [RHEL-96872] - rxrpc: Use umin() and umax() rather than min_t()/max_t() where possible (Paulo Alcantara) [RHEL-96872] - rxrpc: Fix handling of received connection abort (Paulo Alcantara) [RHEL-96872] - ktime: Add us_to_ktime() (Paulo Alcantara) [RHEL-96872] - netfs: Fix read-retry for fs with no ->prepare_read() (Paulo Alcantara) [RHEL-96872] - netfs: Fix kernel async DIO (Paulo Alcantara) [RHEL-96872] - netfs: Fix is-caching check in read-retry (Paulo Alcantara) [RHEL-96872] - netfs: Work around recursion by abandoning retry if nothing read (Paulo Alcantara) [RHEL-96872] - netfs: Fix missing barriers by using clear_and_wake_up_bit() (Paulo Alcantara) [RHEL-96872] - netfs: Remove redundant use of smp_rmb() (Paulo Alcantara) [RHEL-96872] - cachefiles: Parse the "secctx" immediately (Paulo Alcantara) [RHEL-96872] - netfs: Fix enomem handling in buffered reads (Paulo Alcantara) [RHEL-96872] - netfs: Fix non-contiguous donation between completed reads (Paulo Alcantara) [RHEL-96872] - cifs: update internal version number (Paulo Alcantara) [RHEL-96872] - fscache: Remove duplicate included header (Paulo Alcantara) [RHEL-96872] - rxrpc: Add a tracepoint for aborts being proposed (Paulo Alcantara) [RHEL-96872] - netfs/fscache: Add a memory barrier for FSCACHE_VOLUME_CREATING (Paulo Alcantara) [RHEL-96872] - cachefiles: Fix NULL pointer dereference in object->file (Paulo Alcantara) [RHEL-96872] - cachefiles: Clean up in cachefiles_commit_tmpfile() (Paulo Alcantara) [RHEL-96872] - cachefiles: Fix missing pos updates in cachefiles_ondemand_fd_write_iter() (Paulo Alcantara) [RHEL-96872] - cachefiles: Fix incorrect length return value in cachefiles_ondemand_fd_write_iter() (Paulo Alcantara) [RHEL-96872] - convert cifs_ioctl_copychunk() (Paulo Alcantara) [RHEL-96872] - netfs: Remove unnecessary references to pages (Paulo Alcantara) [RHEL-96872] - netfs: Fix a few minor bugs in netfs_page_mkwrite() (Paulo Alcantara) [RHEL-96872] - netfs: Remove call to folio_index() (Paulo Alcantara) [RHEL-96872] - mlxsw: spectrum_router: Fix use-after-free when deleting GRE net devices (Ivan Vecera) [RHEL-94570] - mlxsw: spectrum_acl_bloom_filter: Workaround for some LLVM versions (Ivan Vecera) [RHEL-94570] - selftests: vxlan_bridge: Test flood with unresolved FDB entry (Ivan Vecera) [RHEL-94570] - mlxsw: Add VXLAN bridge ports to same hardware domain as physical bridge ports (Ivan Vecera) [RHEL-94570] - mlxsw: spectrum_switchdev: Move mlxsw_sp_bridge_vxlan_join() (Ivan Vecera) [RHEL-94570] - mlxsw: spectrum_switchdev: Add an internal API for VXLAN leave (Ivan Vecera) [RHEL-94570] - mlxsw: spectrum: Call mlxsw_sp_bridge_vxlan_{join, leave}() for VLAN-aware bridge (Ivan Vecera) [RHEL-94570] - mlxsw: Trap ARP packets at layer 2 instead of layer 3 (Ivan Vecera) [RHEL-94570] - mlxsw: Add return value check for mlxsw_sp_port_get_stats_raw() (Ivan Vecera) [RHEL-94570] - mlxsw: Enable Tx checksum offload (Ivan Vecera) [RHEL-94570] - mlxsw: spectrum_router: Remove unused functions (Ivan Vecera) [RHEL-94570] - mlxsw: Do not store Tx header length as driver parameter (Ivan Vecera) [RHEL-94570] - mlxsw: Move Tx header handling to PCI driver (Ivan Vecera) [RHEL-94570] - mlxsw: Define Tx header fields in txheader.h (Ivan Vecera) [RHEL-94570] - mlxsw: Initialize txhdr_info according to PTP operations (Ivan Vecera) [RHEL-94570] - mlxsw: Add mlxsw_txhdr_info structure (Ivan Vecera) [RHEL-94570] - net/mlxfw: Drop hard coded max FW flash image size (Ivan Vecera) [RHEL-94570] - mlxsw: Switch to napi_gro_receive() (Ivan Vecera) [RHEL-94570] - mlxsw: spectrum_flower: Do not allow mixing sample and mirror actions (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: sharedbuffer: Ensure no extra packets are counted (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: sharedbuffer: Remove duplicate test cases (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: sharedbuffer: Remove h1 ingress test case (Ivan Vecera) [RHEL-94570] - mlxsw: spectrum_acl_flex_keys: Use correct key block on Spectrum-4 (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: devlink_trap_police: Use defer for test cleanup (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: qos_max_descriptors: Use defer for test cleanup (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: qos_ets_strict: Use defer for test cleanup (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: qos_mc_aware: Use defer for test cleanup (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: sch_red_core: Lower TBF rate (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: sch_red_core: Send more packets for drop tests (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: sch_red_core: Sleep before querying queue depth (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: sch_red_core: Increase backlog size tolerance (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: sch_red_ets: Increase required backlog (Ivan Vecera) [RHEL-94570] - mlxsw: spectrum_acl_flex_keys: Constify struct mlxsw_afk_element_inst (Ivan Vecera) [RHEL-94570] - selftests: mlxsw: rtnetlink: Use devlink_reload() API (Ivan Vecera) [RHEL-94570] - x86/its: Fix an ifdef typo in its_alloc() (Waiman Long) [RHEL-91960] - Revert "mm/execmem: Unify early execmem_cache behaviour" (Waiman Long) [RHEL-91960] - tools arch x86: Sync the msr-index.h copy with the kernel sources (Waiman Long) [RHEL-91960] - x86/its: explicitly manage permissions for ITS pages (Waiman Long) [RHEL-91960] - x86/its: move its_pages array to struct mod_arch_specific (Waiman Long) [RHEL-91960] - x86/Kconfig: only enable ROX cache in execmem when STRICT_MODULE_RWX is set (Waiman Long) [RHEL-91960] - x86/mm/pat: don't collapse pages without PSE set (Waiman Long) [RHEL-91960] - tools headers x86 cpufeatures: Sync with the kernel sources to pick ZEN6 and Indirect Target Selection (ITS) bits (Waiman Long) [RHEL-91960] - tools arch x86: Sync the msr-index.h copy with the kernel sources (Waiman Long) [RHEL-91960] - x86/its: Fix build errors when CONFIG_MODULES=n (Waiman Long) [RHEL-91960] - arm64: proton-pack: Add new CPUs 'k' values for branch mitigation (Waiman Long) [RHEL-91960] - arm64: bpf: Only mitigate cBPF programs loaded by unprivileged users (Waiman Long) [RHEL-91960] {CVE-2025-37963} - arm64: bpf: Add BHB mitigation to the epilogue for cBPF programs (Waiman Long) [RHEL-91960] {CVE-2025-37948} - arm64: proton-pack: Expose whether the branchy loop k value (Waiman Long) [RHEL-91960] - arm64: proton-pack: Expose whether the platform is mitigated by firmware (Waiman Long) [RHEL-91960] - arm64: insn: Add support for encoding DSB (Waiman Long) [RHEL-91960] - redhat/configs: Enable CONFIG_MITIGATION_ITS for x86 (Waiman Long) [RHEL-91960] - selftest/x86/bugs: Add selftests for ITS (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/its: Use dynamic thunks for indirect branches (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/ibt: Keep IBT disabled during alternative patching (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - mm/execmem: Unify early execmem_cache behaviour (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/its: Align RETs in BHB clear sequence to avoid thunking (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/its: Add support for RSB stuffing mitigation (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/its: Add "vmexit" option to skip mitigation on some CPUs (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/its: Enable Indirect Target Selection mitigation (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/its: Add support for ITS-safe return thunk (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/its: Add support for ITS-safe indirect thunk (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/its: Enumerate Indirect Target Selection (ITS) bug (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - Documentation: x86/bugs/its: Add ITS documentation (Waiman Long) [RHEL-91960 RHEL-92176] {CVE-2024-28956} - x86/bhi: Do not set BHI_DIS_S in 32-bit mode (Waiman Long) [RHEL-91960] - x86/bpf: Add IBHF call at end of classic BPF (Waiman Long) [RHEL-91960] - x86/bpf: Call branch history clearing sequence on exit (Waiman Long) [RHEL-91960] - x86/bugs: Add RSB mitigation document (Waiman Long) [RHEL-91960] - x86/bugs: Don't fill RSB on context switch with eIBRS (Waiman Long) [RHEL-91960] - x86/bugs: Don't fill RSB on VMEXIT with eIBRS+retpoline (Waiman Long) [RHEL-91960] - x86/bugs: Fix RSB clearing in indirect_branch_prediction_barrier() (Waiman Long) [RHEL-91960] - x86/bugs: Use SBPB in write_ibpb() if applicable (Waiman Long) [RHEL-91960] - x86/bugs: Rename entry_ibpb() to write_ibpb() (Waiman Long) [RHEL-91960] - x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 (Waiman Long) [RHEL-91960] - x86/bugs: Use the cpu_smt_possible() helper instead of open-coded code (Waiman Long) [RHEL-91960] - x86/bugs: Add AUTO mitigations for mds/taa/mmio/rfds (Waiman Long) [RHEL-91960] - x86/bugs: Relocate mds/taa/mmio/rfds defines (Waiman Long) [RHEL-91960] - x86/bugs: Add X86_BUG_SPECTRE_V2_USER (Waiman Long) [RHEL-91960] - x86/bugs: Remove X86_FEATURE_USE_IBPB (Waiman Long) [RHEL-91960] - x86/bugs: Remove the X86_FEATURE_USE_IBPB check in ib_prctl_set() (Waiman Long) [RHEL-91960] - x86/mm: Remove X86_FEATURE_USE_IBPB checks in cond_mitigation() (Waiman Long) [RHEL-91960] - arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB (Waiman Long) [RHEL-91960] - arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list (Waiman Long) [RHEL-91960] - x86/rfds: Exclude P-only parts from the RFDS affected list (Waiman Long) [RHEL-91960] - x86/cpu: Update x86_match_cpu() to also use cpu-type (Waiman Long) [RHEL-91960] - x86/cpu: Add cpu_type to struct x86_cpu_id (Waiman Long) [RHEL-91960] - x86/cpu: Shorten CPU matching macro (Waiman Long) [RHEL-91960] - x86/cpu: Fix the description of X86_MATCH_VFM_STEPS() (Waiman Long) [RHEL-91960] - module: don't annotate ROX memory as kmemleak_not_leak() (Waiman Long) [RHEL-91960] - x86: re-enable EXECMEM_ROX support (Waiman Long) [RHEL-91960] - module: drop unused module_writable_address() (Waiman Long) [RHEL-91960] - Revert "x86/module: prepare module loading for ROX allocations of text" (Waiman Long) [RHEL-91960] - module: switch to execmem API for remapping as RW and restoring ROX (Waiman Long) [RHEL-91960] - execmem: add API for temporal remapping as RW and restoring ROX afterwards (Waiman Long) [RHEL-91960] - execmem: don't remove ROX cache from the direct map (Waiman Long) [RHEL-91960] - x86/mm/pat: restore large ROX pages after fragmentation (Waiman Long) [RHEL-91960] - x86/mm/pat: drop duplicate variable in cpa_flush() (Waiman Long) [RHEL-91960] - x86/mm/pat: cpa-test: fix length for CPA_ARRAY test (Waiman Long) [RHEL-91960] - Enable the gs_usb CAN bus driver in RHEL (Radu Rendec) [RHEL-90131] - iommu/vt-d: Assign devtlb cache tag on ATS enablement (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Restore context entry setup order for aliased devices (Jerry Snitselaar) [RHEL-89891] - iommu: remove duplicate selection of DMAR_TABLE (Jerry Snitselaar) [RHEL-89891] - iommu/io-pgtable-arm: dynamically allocate selftest device struct (Jerry Snitselaar) [RHEL-89891] - iommu: Allow attaching static domains in iommu_attach_device_pasid() (Jerry Snitselaar) [RHEL-89891] - iommu: Protect against overflow in iommu_pgsize() (Jerry Snitselaar) [RHEL-89891] - dma-mapping: fix missing clear bdr in check_ram_in_range_map() (Jerry Snitselaar) [RHEL-89891] - iommu: Skip PASID validation for devices without PASID capability (Jerry Snitselaar) [RHEL-95265] - iommu: ipmmu-vmsa: avoid Wformat-security warning (Jerry Snitselaar) [RHEL-89891] - iommu: Handle yet another race around registration (Jerry Snitselaar) [RHEL-89891] - iommu/arm-smmu-v3: Fix incorrect return in arm_smmu_attach_dev (Jerry Snitselaar) [RHEL-89891] - platform: Fix race condition during DMA configure at IOMMU probe time (Jerry Snitselaar) [RHEL-89891] - software node: Prevent link creation failure from causing kobj reference count imbalance (Jerry Snitselaar) [RHEL-73600] - PCI: Run quirk_huawei_pcie_sva() before arm_smmu_probe_device() (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Apply quirk_iommu_igfx for 8086:0044 (QM57/QS57) (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Revert ATS timing change to fix boot failure (Jerry Snitselaar) [RHEL-89891] - iommu: Fix two issues in iommu_copy_struct_from_user() (Jerry Snitselaar) [RHEL-89891] - iommu/amd: Fix potential buffer overflow in parse_ivrs_acpihid (Jerry Snitselaar) [RHEL-89891] - iommu/arm-smmu-v3: Fail aliasing StreamIDs more gracefully (Jerry Snitselaar) [RHEL-89891] - iommu/arm-smmu-v3: Fix iommu_device_probe bug due to duplicated stream ids (Jerry Snitselaar) [RHEL-89891] - iommu/arm-smmu-v3: Fix pgsize_bit for sva domains (Jerry Snitselaar) [RHEL-89891 RHEL-92494] - iommu/arm-smmu-v3: Add missing S2FWB feature detection (Jerry Snitselaar) [RHEL-89891] - dma-coherent: Warn if OF reserved memory is beyond current coherent DMA mask (Jerry Snitselaar) [RHEL-89891] - dma-mapping: Fix warning reported for missing prototype (Jerry Snitselaar) [RHEL-89891] - dma-mapping: avoid potential unused data compilation warning (Jerry Snitselaar) [RHEL-89891] - dma/mapping.c: dev_dbg support for dma_addressing_limited (Jerry Snitselaar) [RHEL-89891] - dma/contiguous: avoid warning about unused size_bytes (Jerry Snitselaar) [RHEL-89891] - iommu/tegra241-cmdqv: Fix warnings due to dmam_free_coherent() (Jerry Snitselaar) [RHEL-89891] - iommu: remove unneeded semicolon (Jerry Snitselaar) [RHEL-89891] - iommu/ipmmu-vmsa: Register in a sensible order (Jerry Snitselaar) [RHEL-89891] - iommu: Clear iommu-dma ops on cleanup (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Remove an unnecessary call set_dma_ops() (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Wire up irq_ack() to irq_move_irq() for posted MSIs (Jerry Snitselaar) [RHEL-89891] - iommu: Fix crash in report_iommu_fault() (Jerry Snitselaar) [RHEL-89891] - iommufd: Test attach before detaching pasid (Jerry Snitselaar) [RHEL-89891] - iommufd: Fix iommu_vevent_header tables markup (Jerry Snitselaar) [RHEL-89891] - iommu: Convert unreachable() to BUG() (Jerry Snitselaar) [RHEL-89891] - iommufd: Balance veventq->num_events inc/dec (Jerry Snitselaar) [RHEL-73596] - iommufd: Initialize the flags of vevent in iommufd_viommu_report_event() (Jerry Snitselaar) [RHEL-73596] - vfio: VFIO_DEVICE_[AT|DE]TACH_IOMMUFD_PT support pasid (Jerry Snitselaar) [RHEL-73603] - vfio-iommufd: Support pasid [at|de]tach for physical VFIO devices (Jerry Snitselaar) [RHEL-73603] - ida: Add ida_find_first_range() (Jerry Snitselaar) [RHEL-73603] - iommufd/selftest: Add coverage for reporting max_pasid_log2 via IOMMU_HW_INFO (Jerry Snitselaar) [RHEL-73603] - iommufd: Extend IOMMU_GET_HW_INFO to report PASID capability (Jerry Snitselaar) [RHEL-73603] - iommufd/selftest: Add coverage for iommufd pasid attach/detach (Jerry Snitselaar) [RHEL-73600] - iommufd/selftest: Add test ops to test pasid attach/detach (Jerry Snitselaar) [RHEL-73600] - iommufd/selftest: Add a helper to get test device (Jerry Snitselaar) [RHEL-73600] - iommufd/selftest: Add set_dev_pasid in mock iommu (Jerry Snitselaar) [RHEL-73600] - iommufd: Allow allocating PASID-compatible domain (Jerry Snitselaar) [RHEL-73600] - iommu/vt-d: Add IOMMU_HWPT_ALLOC_PASID support (Jerry Snitselaar) [RHEL-73600] - iommufd: Enforce PASID-compatible domain for RID (Jerry Snitselaar) [RHEL-73600] - iommufd: Support pasid attach/replace (Jerry Snitselaar) [RHEL-73600] - iommufd: Enforce PASID-compatible domain in PASID path (Jerry Snitselaar) [RHEL-73600] - iommufd/device: Add pasid_attach array to track per-PASID attach (Jerry Snitselaar) [RHEL-73600] - iommufd/device: Replace device_list with device_array (Jerry Snitselaar) [RHEL-73600] - iommufd/device: Wrap igroup->hwpt and igroup->device_list into attach struct (Jerry Snitselaar) [RHEL-73600] - iommufd/device: Add helper to detect the first attach of a group (Jerry Snitselaar) [RHEL-73600] - iommufd/device: Replace idev->igroup with local variable (Jerry Snitselaar) [RHEL-73600] - iommufd/device: Only add reserved_iova in non-pasid path (Jerry Snitselaar) [RHEL-73600] - iommufd: Pass @pasid through the device attach/replace path (Jerry Snitselaar) [RHEL-73600] - iommu: Introduce a replace API for device pasid (Jerry Snitselaar) [RHEL-73600] - iommu: Require passing new handles to APIs supporting handle (Jerry Snitselaar) [RHEL-73600] - iommu: Drop sw_msi from iommu_domain (Jerry Snitselaar) [RHEL-88960] - iommufd: Move iommufd_sw_msi and related functions to driver.c (Jerry Snitselaar) [RHEL-88960] - iommu/dma: Remove redundant locking (Jerry Snitselaar) [RHEL-89891] - iommu: Sort out domain user data (Jerry Snitselaar) [RHEL-88960] - iommu/arm-smmu-v3: Set MEV bit in nested STE for DoS mitigations (Jerry Snitselaar) [RHEL-73596] - iommu/arm-smmu-v3: Report events that belong to devices attached to vIOMMU (Jerry Snitselaar) [RHEL-73596] - iommu/arm-smmu-v3: Introduce struct arm_smmu_vmaster (Jerry Snitselaar) [RHEL-73596] - Documentation: userspace-api: iommufd: Update FAULT and VEVENTQ (Jerry Snitselaar) [RHEL-73596] - iommufd/selftest: Add IOMMU_VEVENTQ_ALLOC test coverage (Jerry Snitselaar) [RHEL-73596] - iommufd/selftest: Add IOMMU_TEST_OP_TRIGGER_VEVENT for vEVENTQ coverage (Jerry Snitselaar) [RHEL-73596] - iommufd/selftest: Require vdev_id when attaching to a nested domain (Jerry Snitselaar) [RHEL-73596] - iommufd/viommu: Add iommufd_viommu_report_event helper (Jerry Snitselaar) [RHEL-73596] - iommufd/viommu: Add iommufd_viommu_get_vdev_id helper (Jerry Snitselaar) [RHEL-73596] - iommufd: Add IOMMUFD_OBJ_VEVENTQ and IOMMUFD_CMD_VEVENTQ_ALLOC (Jerry Snitselaar) [RHEL-73596] - iommufd: Rename fault.c to eventq.c (Jerry Snitselaar) [RHEL-73596] - iommufd: Abstract an iommufd_eventq from iommufd_fault (Jerry Snitselaar) [RHEL-73596] - iommufd/fault: Add an iommufd_fault_init() helper (Jerry Snitselaar) [RHEL-73596] - iommufd/fault: Move two fault functions out of the header (Jerry Snitselaar) [RHEL-73596] - iommufd: Fail replace if device has not been attached (Jerry Snitselaar) [RHEL-73596] - iommufd: Set domain->iommufd_hwpt in all hwpt->domain allocators (Jerry Snitselaar) [RHEL-73596] - iommufd: Fix uninitialized rc in iommufd_access_rw() (Jerry Snitselaar) [RHEL-73596] - iommufd: Disallow allocating nested parent domain with fault ID (Jerry Snitselaar) [RHEL-73596] - iommu/amd: Consolidate protection domain free code (Jerry Snitselaar) [RHEL-89891] - iommu/amd: Remove unused forward declaration (Jerry Snitselaar) [RHEL-89891] - iommu/amd: Remove outdated comment (Jerry Snitselaar) [RHEL-89891] - iommu/amd/pgtbl_v2: Improve error handling (Jerry Snitselaar) [RHEL-89891] - iommu/amd: Remove unused variable (Jerry Snitselaar) [RHEL-89891] - iommu/amd: Log IOMMU control register in event log path (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Don't clobber posted vCPU IRTE when host IRQ affinity changes (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Put IRTE back into posted MSI mode if vCPU posting is disabled (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Cleanup intel_context_flush_present() (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Move PRI enablement in probe path (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Move scalable mode ATS enablement to probe path (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Check if SVA is supported when attaching the SVA domain (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Use virt_to_phys() (Jerry Snitselaar) [RHEL-89891] - iommu/vt-d: Fix system hang on reboot -f (Jerry Snitselaar) [RHEL-89891] - iommu: Don't warn prematurely about dodgy probes (Jerry Snitselaar) [RHEL-89891] - iommu: Get DT/ACPI parsing into the proper probe path (Jerry Snitselaar) [RHEL-89891] - iommu: Keep dev->iommu state consistent (Jerry Snitselaar) [RHEL-89891] - iommu: Resolve ops in iommu_init_device() (Jerry Snitselaar) [RHEL-89891] - iommu: Handle race with default domain setup (Jerry Snitselaar) [RHEL-89891] - iommu: Unexport iommu_fwspec_free() (Jerry Snitselaar) [RHEL-89891] - iommu: Swap the order of setting group->pasid_array and calling attach op of iommu drivers (Jerry Snitselaar) [RHEL-89891] - iommu: Store either domain or handle in group->pasid_array (Jerry Snitselaar) [RHEL-89891] - iommu: Drop iommu_group_replace_domain() (Jerry Snitselaar) [RHEL-89891] - iommu: Make @handle mandatory in iommu_{attach|replace}_group_handle() (Jerry Snitselaar) [RHEL-89891] - iommufd: Implement sw_msi support natively (Jerry Snitselaar) [RHEL-73588] - iommu: Turn fault_data to iommufd private pointer (Jerry Snitselaar) [RHEL-73588] - irqchip: Have CONFIG_IRQ_MSI_IOMMU be selected by irqchips that need it (Jerry Snitselaar) [RHEL-73588] - iommu: Make iommu_dma_prepare_msi() into a generic operation (Jerry Snitselaar) [RHEL-73588] - genirq/msi: Refactor iommu_dma_compose_msi_msg() (Jerry Snitselaar) [RHEL-73588] - genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie (Jerry Snitselaar) [RHEL-73588] - iommufd/fault: Remove iommufd_fault_domain_attach/detach/replace_dev() (Jerry Snitselaar) [RHEL-88959] - iommufd: Make attach_handle generic than fault specific (Jerry Snitselaar) [RHEL-88959] - iommu/arm-smmu: Set rpm auto_suspend once during probe (Jerry Snitselaar) [RHEL-89891] - redhat/configs: Enable early lockdown for Arm (Mark Salter) [RHEL-82437] - arm64: add early lockdown for secure boot (Mark Salter) [RHEL-82437] - efi: pass secure boot mode to kernel proper (Mark Salter) [RHEL-82437] - powerpc/defconfigs: Set HZ=1000 on ppc64 and powernv defconfigs (Mamatha Inamdar) [RHEL-102017] - net: ipv4: fix stat increase when udp early demux drops the packet (CKI Backport Bot) [RHEL-102383] - virtio_net: Enforce minimum TX ring size for reliability (Laurent Vivier) [RHEL-84409] - virtio_net: Cleanup '2+MAX_SKB_FRAGS' (Laurent Vivier) [RHEL-84409] - virtio_ring: Fix error reporting in virtqueue_resize (Laurent Vivier) [RHEL-84409] - iommu/s390: allow larger region tables (Christoph Schlameuss) [RHEL-52964] - iommu/s390: support map/unmap for additional table regions (Christoph Schlameuss) [RHEL-52964] - iommu/s390: support iova_to_phys for additional table regions (Christoph Schlameuss) [RHEL-52964] - iommu/s390: support cleanup of additional table regions (Christoph Schlameuss) [RHEL-52964] - iommu/s390: set appropriate IOTA region type (Christoph Schlameuss) [RHEL-52964] - s390/pci: Fix dev.dma_range_map missing sentinel element (Christoph Schlameuss) [RHEL-52964] - iommu/s390: implement iommu passthrough via identity domain (Christoph Schlameuss) [RHEL-52964] - iommu/s390: handle IOAT registration based on domain (Christoph Schlameuss) [RHEL-52964] - s390/pci: store DMA offset in bus_dma_region (Christoph Schlameuss) [RHEL-52964] - s390/pci: check for relaxed translation capability (Christoph Schlameuss) [RHEL-52964] - selftests: drv-net: rss_ctx: Add test for ntuple rules targeting default RSS context (Mohammad Heib) [RHEL-75603] - net: ethtool: Don't check if RSS context exists in case of context 0 (Mohammad Heib) [RHEL-75603] - net: ethtool: remove duplicate defines for family info (Mohammad Heib) [RHEL-75603] - netlink: specs: ethtool: Remove UAPI duplication of phy-upstream enum (Mohammad Heib) [RHEL-75603] - ethtool: cmis_cdb: use correct rpl size in ethtool_cmis_module_poll() (Mohammad Heib) [RHEL-75603] - ethtool: cmis_cdb: Fix incorrect read / write length extension (Mohammad Heib) [RHEL-75603] - net: ethtool: Don't call .cleanup_data when prepare_data fails (Mohammad Heib) [RHEL-75603] - selftests: drv-net: test random value for hds-thresh (Mohammad Heib) [RHEL-75603] - net: ethtool: fix ethtool_ringparam_get_cfg() returns a hds_thresh value always as 0. (Mohammad Heib) [RHEL-75603] - net: ethtool: Export the link_mode_params definitions (Mohammad Heib) [RHEL-75603] - net: ethtool: tsinfo: Fix dump command (Mohammad Heib) [RHEL-75603] - net: ethtool: netlink: Allow NULL nlattrs when getting a phy_device (Mohammad Heib) [RHEL-75603] - selftests: drv-net-hw: Add a test for symmetric RSS hash (Mohammad Heib) [RHEL-75603] - selftests: drv-net: Make rand_port() get a port more reliably (Mohammad Heib) [RHEL-75603] - ethtool: Symmetric OR-XOR RSS hash (Mohammad Heib) [RHEL-75603] - tools: ynl: add all headers to makefile deps (Mohammad Heib) [RHEL-75603] - net: ethtool: fix ioctl confusing drivers about desired HDS user config (Mohammad Heib) [RHEL-75603] - net: move stale comment about ntuple validation (Mohammad Heib) [RHEL-75603] - selftests: net-drv: test adding flow rule to invalid RSS context (Mohammad Heib) [RHEL-75603] - net: ethtool: prevent flow steering to RSS contexts which don't exist (Mohammad Heib) [RHEL-75603] - net: ethtool: tsconfig: Fix netlink type of hwtstamp flags (Mohammad Heib) [RHEL-75603] - ethtool: Add support for 200Gbps per lane link modes (Mohammad Heib) [RHEL-75603] - selftests: drv-net: rss_ctx: don't fail reconfigure test if queue offset not supported (Mohammad Heib) [RHEL-75603] - selftests: drv-net: rss_ctx: add missing cleanup in queue reconfigure (Mohammad Heib) [RHEL-75603] - ethtool: ntuple: fix rss + ring_cookie check (Mohammad Heib) [RHEL-75603] - ethtool: rss: fix hiding unsupported fields in dumps (Mohammad Heib) [RHEL-75603] - ethtool: Fix set RXNFC command with symmetric RSS hash (Mohammad Heib) [RHEL-75603] - net: ethtool: populate the default HDS params in the core (Mohammad Heib) [RHEL-75603] - net: provide pending ring configuration in net_device (Mohammad Heib) [RHEL-75603] - net: ethtool: store netdev in a temp variable in ethnl_default_set_doit() (Mohammad Heib) [RHEL-75603] - net: move HDS config from ethtool state (Mohammad Heib) [RHEL-75603] - net: avoid race between device unregistration and ethnl ops (Mohammad Heib) [RHEL-75603] - net: ethtool: ts: add separate counter for unconfirmed one-step TX timestamps (Mohammad Heib) [RHEL-75603] - selftest: net-drv: hds: add test for HDS feature (Mohammad Heib) [RHEL-75603] - netdevsim: add HDS feature (Mohammad Heib) [RHEL-75603] - net: disallow setup single buffer XDP when tcp-data-split is enabled. (Mohammad Heib) [RHEL-75603] - net: ethtool: add ring parameter filtering (Mohammad Heib) [RHEL-75603] - net: devmem: add ring parameter filtering (Mohammad Heib) [RHEL-75603] - net: ethtool: add support for configuring hds-thresh (Mohammad Heib) [RHEL-75603] - net: ethtool: add hds_config member in ethtool_netdev_state (Mohammad Heib) [RHEL-75603] - Documentation: networking: update PHY error counter diagnostics in twisted pair guide (Mohammad Heib) [RHEL-75603] - net: ethtool: add support for structured PHY statistics (Mohammad Heib) [RHEL-75603] - net: ethtool: plumb PHY stats to PHY drivers (Mohammad Heib) [RHEL-75603] - ethtool: linkstate: migrate linkstate functions to support multi-PHY setups (Mohammad Heib) [RHEL-75603] - Documentation: networking: add Twisted Pair Ethernet diagnostics at OSI Layer 1 (Mohammad Heib) [RHEL-75603] - net: ethtool: Use hwprov under rcu_read_lock (Mohammad Heib) [RHEL-75603] - net: ethtool: Fix suspicious rcu_dereference usage (Mohammad Heib) [RHEL-75603] - net: ethtool: Add support for tsconfig command to get/set hwtstamp config (Mohammad Heib) [RHEL-75603] - net: ethtool: tsinfo: Enhance tsinfo to support several hwtstamp by net topology (Mohammad Heib) [RHEL-75603] - net: Add the possibility to support a selected hwtstamp in netdevice (Mohammad Heib) [RHEL-75603] - net: Make net_hwtstamp_validate accessible (Mohammad Heib) [RHEL-75603] - net: Make dev_get_hwtstamp_phylib accessible (Mohammad Heib) [RHEL-75603] - ethtool: regenerate uapi header from the spec (Mohammad Heib) [RHEL-75603] - ethtool: remove the comments that are not gonna be generated (Mohammad Heib) [RHEL-75603] - ethtool: separate definitions that are gonna be generated (Mohammad Heib) [RHEL-75603] - ynl: include uapi header after all dependencies (Mohammad Heib) [RHEL-75603] - ynl: add missing pieces to ethtool spec to better match uapi header (Mohammad Heib) [RHEL-75603] - ynl: support directional specs in ynl-gen-c.py (Mohammad Heib) [RHEL-75603] - ynl: skip rendering attributes with header property in uapi mode (Mohammad Heib) [RHEL-75603] - ynl: support enum-cnt-name attribute in legacy definitions (Mohammad Heib) [RHEL-75603] - ethtool: Fix wrong mod state in case of verbose and no_mask bitset (Mohammad Heib) [RHEL-75603] - ethtool: Fix access to uninitialized fields in set RXNFC command (Mohammad Heib) [RHEL-75603] - UAPI: ethtool: Avoid flex-array in struct ethtool_link_settings (Mohammad Heib) [RHEL-75603] - selftest: extend test_rss_context_queue_reconfigure for action addition (Mohammad Heib) [RHEL-75603] - selftest: validate RSS+ntuple filters with nonzero ring_cookie (Mohammad Heib) [RHEL-75603] - selftest: include dst-ip in ethtool ntuple rules (Mohammad Heib) [RHEL-75603] - net: ethtool: account for RSS+RXNFC add semantics when checking channel count (Mohammad Heib) [RHEL-75603] - net: ethtool: only allow set_rxnfc with rss + ring_cookie if driver opts in (Mohammad Heib) [RHEL-75603] - Documentation: networking: Add missing PHY_GET command in the message list (Mohammad Heib) [RHEL-75603] - netlink: specs: Add missing phy-ntf command to ethtool spec (Mohammad Heib) [RHEL-75603] - netlink: specs: Add missing bitset attrs to ethtool spec (Mohammad Heib) [RHEL-75603] - selftests: drv-net: rss_ctx: add rss ctx busy testcase (Mohammad Heib) [RHEL-75603] - ethtool: rss: prevent rss ctx deletion when in use (Mohammad Heib) [RHEL-75603] - net: ethtool: Add support for writing firmware blocks using EPL payload (Mohammad Heib) [RHEL-75603] - net: ethtool: Add new parameters and a function to support EPL (Mohammad Heib) [RHEL-75603] - ethtool: rss: fix rss key initialization warning (Mohammad Heib) [RHEL-75603] - media: cx231xx: Remove vidioc_s_ctrl callback (Desnes Nunes) [RHEL-78934] - media: uvcvideo: Remove vidioc_queryctrl (Desnes Nunes) [RHEL-78934] - media: pvrusb2: Remove g/s_ctrl callbacks (Desnes Nunes) [RHEL-78934] - media: pvrusb2: Convert queryctrl to query_ext_ctrl (Desnes Nunes) [RHEL-78934] - media: cx231xx: set device_caps for 417 (Desnes Nunes) [RHEL-78934] {CVE-2025-38044} - media: uvcvideo: Drop the uvc_driver structure (Desnes Nunes) [RHEL-78934] - media: uvcvideo: Add quirk for Actions UVC05 (Desnes Nunes) [RHEL-78934] - media: uvcvideo: implement UVC v1.5 ROI (Desnes Nunes) [RHEL-78934] - media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map (Desnes Nunes) [RHEL-78934] - media: uvcvideo: Introduce uvc_mapping_v4l2_size (Desnes Nunes) [RHEL-78934] - media: uvcvideo: let v4l2_query_v4l2_ctrl() work with v4l2_query_ext_ctrl (Desnes Nunes) [RHEL-78934] - media: uvcvideo: support V4L2_CTRL_WHICH_MIN/MAX_VAL (Desnes Nunes) [RHEL-78934] - media: v4l2-ctrls: add support for V4L2_CTRL_WHICH_MIN/MAX_VAL (Desnes Nunes) [RHEL-78934] - media: v4l2_ctrl: Add V4L2_CTRL_TYPE_RECT (Desnes Nunes) [RHEL-78934] - media: uvcvideo: Factor out query_boundaries from query_ctrl (Desnes Nunes) [RHEL-78934] - media: uvcvideo: add support for compound controls (Desnes Nunes) [RHEL-78934] - media: uvcvideo: Factor out clamping from uvc_ctrl_set (Desnes Nunes) [RHEL-78934] - media: uvcvideo: Support any size for mapping get/set (Desnes Nunes) [RHEL-78934] - media: uvcvideo: uvc_ioctl_(g|s)_ext_ctrls: handle NoP case (Desnes Nunes) [RHEL-78934] - media: uvcvideo: refactor uvc_ioctl_g_ext_ctrls (Desnes Nunes) [RHEL-78934] - media: uvcvideo: Handle uvc menu translation inside uvc_set_le_value (Desnes Nunes) [RHEL-78934] - media: uvcvideo: Handle uvc menu translation inside uvc_get_le_value (Desnes Nunes) [RHEL-78934] - media: dvb-usb-v2: Constify struct i2c_algorithm (Desnes Nunes) [RHEL-78934] - media: dvb-usb: Constify struct i2c_algorithm (Desnes Nunes) [RHEL-78934] - media: cx231xx: Convert enum into a define (Desnes Nunes) [RHEL-78934] - media: dvb-usb: Constify struct usb_device_id (Desnes Nunes) [RHEL-78934] - media: pwc: remove useless header files (Desnes Nunes) [RHEL-78934] - usb: usbtmc: Fix timeout value in get_stb (Desnes Nunes) [RHEL-78934] - usb: usbtmc: Fix read_stb function and get_stb ioctl (Desnes Nunes) [RHEL-78934] - phy: Fix error handling in tegra_xusb_port_init (Desnes Nunes) [RHEL-78934] - phy: tegra: xusb: remove a stray unlock (Desnes Nunes) [RHEL-78934] - xhci: dbc: Avoid event polling busyloop if pending rx transfers are inactive. (Desnes Nunes) [RHEL-78934] - usb: xhci: Don't trust the EP Context cycle bit when moving HW dequeue (Desnes Nunes) [RHEL-78934] - usb: usbtmc: Fix erroneous generic_read ioctl return (Desnes Nunes) [RHEL-78934] - usb: usbtmc: Fix erroneous wait_srq ioctl return (Desnes Nunes) [RHEL-78934] - usb: usbtmc: Fix erroneous get_stb ioctl error returns (Desnes Nunes) [RHEL-78934] - usb: typec: tcpm: delay SNK_TRY_WAIT_DEBOUNCE to SRC_TRYWAIT transition (Desnes Nunes) [RHEL-78934] - USB: usbtmc: use interruptible sleep in usbtmc_read (Desnes Nunes) [RHEL-78934] - usb: typec: ucsi: displayport: Fix NULL pointer access (Desnes Nunes) [RHEL-78934 RHEL-96306] {CVE-2025-37994} - usb: typec: ucsi: displayport: Fix deadlock (Desnes Nunes) [RHEL-78934] {CVE-2025-37967} - usb: misc: onboard_usb_dev: fix support for Cypress HX3 hubs (Desnes Nunes) [RHEL-78934] - usb: uhci-platform: Make the clock really optional (Desnes Nunes) [RHEL-78934] - usb: dwc3: gadget: Make gadget_wakeup asynchronous (Desnes Nunes) [RHEL-78934] - usb: host: tegra: Prevent host controller crash when OTG port is used (Desnes Nunes) [RHEL-78934] - usb: cdnsp: Fix issue with resuming from L1 (Desnes Nunes) [RHEL-78934] - usb: gadget: tegra-xudc: ACK ST_RC after clearing CTRL_RUN (Desnes Nunes) [RHEL-78934] - USB: serial: simple: add OWON HDS200 series oscilloscope support (Desnes Nunes) [RHEL-78934] - USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe (Desnes Nunes) [RHEL-78934] - USB: serial: option: add Sierra Wireless EM9291 (Desnes Nunes) [RHEL-78934] - usb: typec: class: Unlocked on error in typec_register_partner() (Desnes Nunes) [RHEL-78934] - usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 Flash Drive (Desnes Nunes) [RHEL-78934] - USB: wdm: add annotation (Desnes Nunes) [RHEL-78934] - USB: wdm: wdm_wwan_port_tx_complete mutex in atomic context (Desnes Nunes) [RHEL-78934] - USB: wdm: close race between wdm_open and wdm_wwan_port_stop (Desnes Nunes) [RHEL-78934] {CVE-2025-37985} - USB: wdm: handle IO errors in wdm_wwan_port_start (Desnes Nunes) [RHEL-78934] - USB: VLI disk crashes if LPM is used (Desnes Nunes) [RHEL-78934] - usb: dwc3: gadget: check that event count does not exceed event buffer length (Desnes Nunes) [RHEL-78934] {CVE-2025-37810} - USB: storage: quirk for ADATA Portable HDD CH94 (Desnes Nunes) [RHEL-78934] - usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive (Desnes Nunes) [RHEL-78934] - USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) (Desnes Nunes) [RHEL-78934] - usb: cdns3: Fix deadlock when using NCM gadget (Desnes Nunes) [RHEL-78934] {CVE-2025-37812} - usb: chipidea: ci_hdrc_imx: implement usb_phy_init() error handling (Desnes Nunes) [RHEL-78934] - usb: chipidea: ci_hdrc_imx: fix call balance of regulator routines (Desnes Nunes) [RHEL-78934] - usb: chipidea: ci_hdrc_imx: fix usbmisc handling (Desnes Nunes) [RHEL-78934] {CVE-2025-37811} - usb: typec: class: Invalidate USB device pointers on partner unregistration (Desnes Nunes) [RHEL-78934] {CVE-2025-37986} - usb: typec: class: Fix NULL pointer access (Desnes Nunes) [RHEL-78934] {CVE-2025-37809} - xhci: Limit time spent with xHC interrupts disabled during bus resume (Desnes Nunes) [RHEL-78934] - usb: xhci: Fix invalid pointer dereference in Etron workaround (Desnes Nunes) [RHEL-78934] {CVE-2025-37813} - usb: xhci: Fix Short Packet handling rework ignoring errors (Desnes Nunes) [RHEL-78934] - Revert "xhci: Prevent early endpoint restart when handling STALL errors." (Desnes Nunes) [RHEL-78934] - Revert "xhci: Avoid queuing redundant Stop Endpoint command for stalled endpoint" (Desnes Nunes) [RHEL-78934] - phy: tegra: xusb: Use a bitmask for UTMI pad power state tracking (Desnes Nunes) [RHEL-78934] {CVE-2025-38010} - dt-bindings: xilinx: Remove myself from maintainership (Desnes Nunes) [RHEL-78934] - treewide: Switch/rename to timer_delete[_sync]() (Desnes Nunes) [RHEL-78934] - memstick: rtsx_usb_ms: Fix slab-use-after-free in rtsx_usb_ms_drv_remove (Desnes Nunes) [RHEL-78934 RHEL-99039] {CVE-2025-22020} - thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer (Desnes Nunes) [RHEL-78934] - thunderbolt: Scan retimers after device router has been enumerated (Desnes Nunes) [RHEL-78934] - usb: host: cdns3: forward lost power information to xhci (Desnes Nunes) [RHEL-78934] - usb: host: xhci-plat: allow upper layers to signal power loss (Desnes Nunes) [RHEL-78934] - usb: xhci: change xhci_resume() parameters to explicit the desired info (Desnes Nunes) [RHEL-78934] - usb: cdns3-ti: run HW init at resume() if HW was reset (Desnes Nunes) [RHEL-78934] - usb: cdns3-ti: move reg writes to separate function (Desnes Nunes) [RHEL-78934] - usb: cdns3: call cdns_power_is_lost() only once in cdns_resume() (Desnes Nunes) [RHEL-78934] - usb: cdns3: rename hibernated argument of role->resume() to lost_power (Desnes Nunes) [RHEL-78934] - usb: xhci: tegra: rename `runtime` boolean to `is_auto_runtime` (Desnes Nunes) [RHEL-78934] - usb: host: xhci-plat: mvebu: use ->quirks instead of ->init_quirk() func (Desnes Nunes) [RHEL-78934] - usb: dwc3: Don't use %%pK through printk (Desnes Nunes) [RHEL-78934] - usb: core: Don't use %%pK through printk (Desnes Nunes) [RHEL-78934] - dt-bindings: usb: qcom,dwc3: Synchronize minItems for interrupts and -names (Desnes Nunes) [RHEL-78934] - usb: common: usb-conn-gpio: switch psy_cfg from of_node to fwnode (Desnes Nunes) [RHEL-78934] - usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running (Desnes Nunes) [RHEL-78934] - usb: xhci: Don't change the status of stalled TDs on failed Stop EP (Desnes Nunes) [RHEL-78934] - xhci: Avoid queuing redundant Stop Endpoint command for stalled endpoint (Desnes Nunes) [RHEL-78934] - phy: qcom: qmp-usbc: Add qmp configuration for QCS615 (Desnes Nunes) [RHEL-78934] - phy: core: Remove unused phy_pm_runtime_(allow|forbid) (Desnes Nunes) [RHEL-78934] - xhci: Handle spurious events on Etron host isoc enpoints (Desnes Nunes) [RHEL-78934] - usb: xhci: Unify duplicate inc_enq() code (Desnes Nunes) [RHEL-78934] - usb: xhci: Apply the link chain quirk on NEC isoc endpoints (Desnes Nunes) [RHEL-78934] {CVE-2025-22022} - xhci: Prevent early endpoint restart when handling STALL errors. (Desnes Nunes) [RHEL-78934] - usb: xhci: move debug capabilities from trb_in_td() to handle_tx_event() (Desnes Nunes) [RHEL-78934] - usb: xhci: refactor trb_in_td() to be static (Desnes Nunes) [RHEL-78934] - usb: xhci: set page size to the xHCI-supported size (Desnes Nunes) [RHEL-78934] - usb: xhci: correct debug message page size calculation (Desnes Nunes) [RHEL-78934] - usb: xhci: Skip only one TD on Ring Underrun/Overrun (Desnes Nunes) [RHEL-78934] - usb: xhci: Expedite skipping missed isoch TDs on modern HCs (Desnes Nunes) [RHEL-78934] - usb: xhci: Fix isochronous Ring Underrun/Overrun event handling (Desnes Nunes) [RHEL-78934] {CVE-2025-37882} - usb: xhci: Complete 'error mid TD' transfers when handling Missed Service (Desnes Nunes) [RHEL-78934] - usb: xhci: Don't skip on Stopped - Length Invalid (Desnes Nunes) [RHEL-78934] {CVE-2025-22023} - usb: xhci: remove redundant update_ring_for_set_deq_completion() function (Desnes Nunes) [RHEL-78934] - xhci: show correct U1 and U2 timeout values in debug messages (Desnes Nunes) [RHEL-78934] - dt-bindings: usb: dwc3: Add support for rk3562 (Desnes Nunes) [RHEL-78934] - dt-bindings: usb: add rk3576 compatible to rockchip,dwc3 (Desnes Nunes) [RHEL-78934] - usb: storage: shuttle_usbat: Use const for constant array (Desnes Nunes) [RHEL-78934] - usb: storage: sddr55: Use const for constant arrays (Desnes Nunes) [RHEL-78934] - usb: storage: sddr09: Use const for constant arrays (Desnes Nunes) [RHEL-78934] - usb: storage: realtek_cr: Use const for constant arrays (Desnes Nunes) [RHEL-78934] - usb: storage: initializers: Use const for constant array (Desnes Nunes) [RHEL-78934] - usb: storage: datafab: Use const for constant arrays (Desnes Nunes) [RHEL-78934] - usb: storage: alauda: Use const for card ID array (Desnes Nunes) [RHEL-78934] - usb: storage: transport: Use const for constant array (Desnes Nunes) [RHEL-78934] - usb: storage: jumpshot: Use const for constant arrays (Desnes Nunes) [RHEL-78934] - ucsi_ccg: Don't show non-functional attributes (Desnes Nunes) [RHEL-78934] - ucsi_ccg: Don't show failed to get FW build information error (Desnes Nunes) [RHEL-78934] - usb: chipidea: imx: fix some typo (Desnes Nunes) [RHEL-78934] - dt-bindings: usb: generic-xhci: Allow dma-coherent (Desnes Nunes) [RHEL-78934] - usb: ulpi: Remove unused otg_ulpi_create (Desnes Nunes) [RHEL-78934] - usb: core: replace usb_sndaddr0pipe macro with usb_sndctrlpipe (Desnes Nunes) [RHEL-78934] - thunderbolt: Make tb_tunnel_alloc_usb3() error paths consistent with the rest (Desnes Nunes) [RHEL-78934] - usb: Add base USB MCTP definitions (Desnes Nunes) [RHEL-78934] - USB: core: Add eUSB2 descriptor and parsing in USB core (Desnes Nunes) [RHEL-78934] - usb: dwc2: Implement recovery after PM domain off (Desnes Nunes) [RHEL-78934] - usb: dwc2: Refactor backup/restore of registers (Desnes Nunes) [RHEL-78934] - usb: dwc2: gadget: Introduce register restore flags (Desnes Nunes) [RHEL-78934] - docs: Fix typo in usb/CREDITS (Desnes Nunes) [RHEL-78934] - dt-bindings: usb: usb-device: Replace free-form 'reg' with constraints (Desnes Nunes) [RHEL-78934] - usb: misc: onboard_dev: add vdda support for Microchip USB2514 (Desnes Nunes) [RHEL-78934] - dt-bindings: usb: microchip,usb2514: add support for USB2512/USB2513 (Desnes Nunes) [RHEL-78934] - dt-bindings: usb: microchip,usb2514: add support for vdda (Desnes Nunes) [RHEL-78934] - docs: thunderbolt: Allow creating cross-references for ABI (Desnes Nunes) [RHEL-78934] - usb: typec: tcpm: Switch to use hrtimer_setup() (Desnes Nunes) [RHEL-78934] - usb: ehci: Switch to use hrtimer_setup() (Desnes Nunes) [RHEL-78934] - usb: gadget: Switch to use hrtimer_setup() (Desnes Nunes) [RHEL-78934] - usb: dwc2: Switch to use hrtimer_setup() (Desnes Nunes) [RHEL-78934] - USB: serial: mos7840: drop unused defines (Desnes Nunes) [RHEL-78934] - phy: fsl-imx8mq-usb: add tca function driver for imx95 (Desnes Nunes) [RHEL-78934] - redhat/configs: Adding CONFIG_TYPEC_MUX_PS883X (Desnes Nunes) [RHEL-78934] - usb: typec: Add support for Parade PS8830 Type-C Retimer (Desnes Nunes) [RHEL-78934] - dt-bindings: usb: Add Parade PS8830 Type-C retimer bindings (Desnes Nunes) [RHEL-78934] - USB: dwc3: Use syscon_regmap_lookup_by_phandle_args (Desnes Nunes) [RHEL-78934] - usb: dwc3: gadget: Avoid using reserved endpoints on Intel Merrifield (Desnes Nunes) [RHEL-78934] - usb: dwc3: gadget: Add support for snps,reserved-endpoints property (Desnes Nunes) [RHEL-78934] - usb: dwc3: gadget: Refactor loop to avoid NULL endpoints (Desnes Nunes) [RHEL-78934] - dt-bindings: usb: dwc3: Add a property to reserve endpoints (Desnes Nunes) [RHEL-78934] - phy: core: don't require set_mode() callback for phy_get_mode() to work (Desnes Nunes) [RHEL-78934] - r8152: add vendor/device ID pair for Dell Alienware AW1022z (Desnes Nunes) [RHEL-78934] - usb: typec: ucsi: acpi: move LG Gram quirk to ucsi_gram_sync_control() (Desnes Nunes) [RHEL-78934] - usb: typec: ucsi: ccg: move command quirks to ucsi_ccg_sync_control() (Desnes Nunes) [RHEL-78934] - usb: typec: ucsi: return CCI and message from sync_control callback (Desnes Nunes) [RHEL-78934] - usb: typec: ucsi: Enable UCSI commands in debugfs (Desnes Nunes) [RHEL-78934] - usb: typec: ucsi: Rename SET_UOM UCSI command to SET_CCOM (Desnes Nunes) [RHEL-78934] - wifi: ath12k: fix uaf in ath12k_core_init() (CKI Backport Bot) [RHEL-102087] {CVE-2025-38116} - block: flip iter directions in blk_rq_integrity_map_user() (Ming Lei) [RHEL-102497] - net/sched: Always pass notifications when child class becomes empty (Ivan Vecera) [RHEL-75598] - net_sched: hfsc: Address reentrant enqueue adding class to eltree twice (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: Add an HFSC qlen accounting test (Ivan Vecera) [RHEL-75598] - sch_hfsc: Fix qlen accounting bug when using peek in hfsc_enqueue() (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: Add qdisc limit trimming tests (Ivan Vecera) [RHEL-75598] - net_sched: Flush gso_skb list too during ->change() (Ivan Vecera) [RHEL-75598] {CVE-2025-37992} - selftests/tc-testing: Add a test case to cover basic HTB+FQ_CODEL case (Ivan Vecera) [RHEL-75598] - sch_htb: make htb_deactivate() idempotent (Ivan Vecera) [RHEL-75598] {CVE-2025-37953} - selftests: tc-testing: Add TDC tests that exercise reentrant enqueue behaviour (Ivan Vecera) [RHEL-75598] - net_sched: qfq: Fix double list add in class with netem as child qdisc (Ivan Vecera) [RHEL-75598] {CVE-2025-37913} - net_sched: ets: Fix double list add in class with netem as child qdisc (Ivan Vecera) [RHEL-75598] {CVE-2025-37914} - net_sched: hfsc: Fix a UAF vulnerability in class with netem as child qdisc (Ivan Vecera) [RHEL-75598] {CVE-2025-37890} - net_sched: drr: Fix double list add in class with netem as child qdisc (Ivan Vecera) [RHEL-75598] {CVE-2025-37915} - selftests/tc-testing: Add test for HFSC queue emptying during peek operation (Ivan Vecera) [RHEL-75598] - net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too (Ivan Vecera) [RHEL-75598] {CVE-2025-37823} - net_sched: hfsc: Fix a UAF vulnerability in class handling (Ivan Vecera) [RHEL-75598] {CVE-2025-37797} - selftests/tc-testing: Add test for echo of big TC filters (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: sfq: check that a derived limit of 1 is rejected (Ivan Vecera) [RHEL-75598] - net_sched: sch_sfq: move the limit validation (Ivan Vecera) [RHEL-75598] {CVE-2025-37752} - net_sched: sch_sfq: use a temporary work area for validating configuration (Ivan Vecera) [RHEL-75598] - tc: Ensure we have enough buffer space when sending filter netlink notifications (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: Add a test case for FQ_CODEL with ETS parent (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: Add a test case for FQ_CODEL with DRR parent (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: Add a test case for FQ_CODEL with HFSC parent (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: Add a test case for FQ_CODEL with QFQ parent (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: Add a test case for FQ_CODEL with HTB parent (Ivan Vecera) [RHEL-75598] - codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() (Ivan Vecera) [RHEL-75598] {CVE-2025-37798} - sch_ets: make est_qlen_notify() idempotent (Ivan Vecera) [RHEL-75598] - sch_qfq: make qfq_qlen_notify() idempotent (Ivan Vecera) [RHEL-75598] - sch_hfsc: make hfsc_qlen_notify() idempotent (Ivan Vecera) [RHEL-75598] - sch_drr: make drr_qlen_notify() idempotent (Ivan Vecera) [RHEL-75598] - sch_htb: make htb_qlen_notify() idempotent (Ivan Vecera) [RHEL-75598] {CVE-2025-37932} - treewide: Switch/rename to timer_delete[_sync]() (Ivan Vecera) [RHEL-75598] - selftests: tc-testing: fix nat regex matching (Ivan Vecera) [RHEL-75598] - selftests: tc-testing: Add TBF with SKBPRIO queue length corner case test (Ivan Vecera) [RHEL-75598] - net_sched: skbprio: Remove overly strict queue assertions (Ivan Vecera) [RHEL-75598] {CVE-2025-38637} - tc-tests: Update tc police action tests for tc buffer size rounding fixes. (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: Add a test case for DRR class with TC_H_ROOT (Ivan Vecera) [RHEL-75598] - net_sched: Prevent creation of classes with TC_H_ROOT (Ivan Vecera) [RHEL-75598] {CVE-2025-21971} - sched: address a potential NULL pointer dereference in the GRED scheduler. (Ivan Vecera) [RHEL-75598] {CVE-2025-21980} - net: sched: wrap doit/dumpit methods (Ivan Vecera) [RHEL-75598] - net: sched: Remove newline at the end of a netlink error message (Ivan Vecera) [RHEL-75598] - coccinelle: Add missing (GE)NL_SET_ERR_MSG_* to strings ending with newline test (Ivan Vecera) [RHEL-75598] - net: remove '__' from __skb_flow_get_ports() (Ivan Vecera) [RHEL-75598] - skbuff: kill skb_flow_get_ports() (Ivan Vecera) [RHEL-75598] - flow_dissector: Fix port range key handling in BPF conversion (Ivan Vecera) [RHEL-75598] - selftests/net/forwarding: Add a test case for tc-flower of mixed port and port-range (Ivan Vecera) [RHEL-75598] - net: sched: Fix truncation of offloaded action statistics (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: Add a test case for qdisc_tree_reduce_backlog() (Ivan Vecera) [RHEL-75598] - netem: Update sch->q.qlen before qdisc_tree_reduce_backlog() (Ivan Vecera) [RHEL-75598] {CVE-2025-21703} - selftests/tc-testing: Add a test case for pfifo_head_drop qdisc when limit==0 (Ivan Vecera) [RHEL-75598] - net: sched: fix ets qdisc OOB Indexing (Ivan Vecera) [RHEL-75598] {CVE-2025-21692} - net: sched: Disallow replacing of child qdisc from one parent to another (Ivan Vecera) [RHEL-75598] {CVE-2025-21700} - net: tc: improve qdisc error messages (Ivan Vecera) [RHEL-75598] - net: sched: calls synchronize_net() only when needed (Ivan Vecera) [RHEL-75598] - selftests: tc-testing: reduce rshift value (Ivan Vecera) [RHEL-75598] - net_sched: cls_flow: validate TCA_FLOW_RSHIFT attribute (Ivan Vecera) [RHEL-75598] {CVE-2025-21653} - netlink: specs: add uint, sint to netlink-raw schema (Ivan Vecera) [RHEL-75598] - net/sched: netem: account for backlog updates from child qdisc (Ivan Vecera) [RHEL-75598] {CVE-2024-56770} - selftests/tc-testing: sfq: test that kernel rejects limit of 1 (Ivan Vecera) [RHEL-75598] - net_sched: sch_sfq: don't allow 1 packet limit (Ivan Vecera) [RHEL-75598] {CVE-2024-57996} - selinux: use sk_to_full_sk() in selinux_ip_output() (Ivan Vecera) [RHEL-75598] - net/sched: tbf: correct backlog statistic for GSO packets (Ivan Vecera) [RHEL-75598] - tcp: populate XPS related fields of timewait sockets (Ivan Vecera) [RHEL-75598] - net: sched: cls_api: improve the error message for ID allocation failure (Ivan Vecera) [RHEL-75598] - selftests/tc-testing: add tests for qdisc_tree_reduce_backlog (Ivan Vecera) [RHEL-75598] - net: sched: propagate "skip_sw" flag to struct flow_cls_common_offload (Ivan Vecera) [RHEL-75598] - selftests: tc-testing: Fix typo error (Ivan Vecera) [RHEL-75598] - net/sched: act_api: unexport tcf_action_dump_1() (Ivan Vecera) [RHEL-75598] - net: sched: Use rtnl_register_many(). (Ivan Vecera) [RHEL-75598] - net/sched: cbs: Fix integer overflow in cbs_set_port_rate() (Ivan Vecera) [RHEL-75598] - ipv4: tcp: give socket pointer to control skbs (Ivan Vecera) [RHEL-75598] - ipv6: tcp: give socket pointer to control skbs (Ivan Vecera) [RHEL-75598] - net: add skb_set_owner_edemux() helper (Ivan Vecera) [RHEL-75598] - net_sched: sch_fq: prepare for TIME_WAIT sockets (Ivan Vecera) [RHEL-75598] - net: add TIME_WAIT logic to sk_to_full_sk() (Ivan Vecera) [RHEL-75598] - net_sched: sch_sfq: handle bigger packets (Ivan Vecera) [RHEL-75598] - net_sched: sch_fq: add the ability to offload pacing (Ivan Vecera) [RHEL-75598] - net: add IFLA_MAX_PACING_OFFLOAD_HORIZON device attribute (Ivan Vecera) [RHEL-75598] - netem: Include in sch_netem.c (Ivan Vecera) [RHEL-75598] - powerpc/pseries/dlpar: Search DRC index from ibm,drc-indexes for IO add (Mamatha Inamdar) [RHEL-90596] - block/blk-throttle: silence !BLK_DEV_IO_TRACE variable warnings (Ming Lei) [RHEL-97188] - blk-throttle: Prevents the bps restricted io from entering the bps queue again (Ming Lei) [RHEL-97188] - blk-throttle: Split the service queue (Ming Lei) [RHEL-97188] - blk-throttle: Split the blkthrotl queue (Ming Lei) [RHEL-97188] - blk-throttle: Introduce flag "BIO_TG_BPS_THROTTLED" (Ming Lei) [RHEL-97188] - blk-throttle: Split throtl_charge_bio() into bps and iops functions (Ming Lei) [RHEL-97188] - blk-throttle: Refactor tg_dispatch_time by extracting tg_dispatch_bps/iops_time (Ming Lei) [RHEL-97188] - blk-throttle: Rename tg_may_dispatch() to tg_dispatch_time() (Ming Lei) [RHEL-97188] - blk-throttle: Add an additional overflow check to the call calculate_bytes/io_allowed (Ming Lei) [RHEL-97188] - blk-throttle: Delete unnecessary carryover-related fields from throtl_grp (Ming Lei) [RHEL-97188] - blk-throttle: Fix wrong tg->[bytes/io]_disp update in __tg_update_carryover() (Ming Lei) [RHEL-97188] - intel_th: pci: Add Panther Lake-P/U support (Michael Petlan) [RHEL-47423] - intel_th: pci: Add Panther Lake-H support (Michael Petlan) [RHEL-47423] - intel_th: pci: Add Arrow Lake support (Michael Petlan) [RHEL-47423] - kernel.spec: always provide kernel-devel-uname-r (Scott Weaver) [RHEL-88117] - kernel.spec: always provide kernel (Scott Weaver) [RHEL-88117] - kernel.spec: dynamically set provides/requires name (Scott Weaver) [RHEL-88117] - kernel.spec: use %%{name} in partner/internal modules (Scott Weaver) [RHEL-88117] - kernel.spec: introduce with_automotive_build (Scott Weaver) [RHEL-88117] - kernel.spec: add a few macro option comments (Scott Weaver) [RHEL-88117] - kernel.spec: fix kernel-automotive packaging (Scott Weaver) [RHEL-88117] - kernel.spec: honor packaging flags (Scott Weaver) [RHEL-88117] - gitlab-ci: update automotive pipelines (Scott Weaver) [RHEL-88117] - redhat/self-test: update for new automotive variables (Scott Weaver) [RHEL-88117] - kernel.spec: fedora automotive build is not supported (Scott Weaver) [RHEL-88117] - gitignore: kernel-automotive generated files (Scott Weaver) [RHEL-88117] - gitlab-ci: use AUTOMOTIVE_BUILD with dist-srpm (Scott Weaver) [RHEL-88117] - redhat/Makefile: introduce AUTOMOTIVE_BUILD (Scott Weaver) [RHEL-88117] - kernel.spec: updates for automotive-only build (Scott Weaver) [RHEL-88117] - ice/ptp: fix crosstimestamp reporting (Petr Oros) [RHEL-83567] - ice: fix rebuilding the Tx scheduler tree for large queue counts (Petr Oros) [RHEL-83567] - ice: create new Tx scheduler nodes for new queues only (Petr Oros) [RHEL-83567] - ice: fix Tx scheduler error handling in XDP callback (Petr Oros) [RHEL-83567] - ice: Fix LACP bonds without SRIOV environment (Petr Oros) [RHEL-83567] - ice: fix vf->num_mac count with port representors (Petr Oros) [RHEL-83567] - ice: use DSN instead of PCI BDF for ice_adapter index (Petr Oros) [RHEL-83567] - ice: Check VF VSI Pointer Value in ice_vc_add_fdir_fltr() (Petr Oros) [RHEL-83567] - ice: fix Get Tx Topology AQ command error on E830 (Petr Oros) [RHEL-83567] - ice: fix using untrusted value of pkt_len in ice_vc_fdir_parse_raw() (Petr Oros) [RHEL-83567] - ice: fix input validation for virtchnl BW (Petr Oros) [RHEL-83567] - ice: validate queue quanta parameters to prevent OOB access (Petr Oros) [RHEL-83567] - ice: stop truncating queue ids when checking (Petr Oros) [RHEL-83567] - virtchnl: make proto and filter action count unsigned (Petr Oros) [RHEL-83567] - ice: fix reservation of resources for RDMA when disabled (Petr Oros) [RHEL-83567] - ice: health.c: fix compilation on gcc 7.5 (Petr Oros) [RHEL-83567] - ice: E825C PHY register cleanup (Petr Oros) [RHEL-83567] - ice: Refactor E825C PHY registers info struct (Petr Oros) [RHEL-83567] - ice: rename ice_ptp_init_phc_eth56g function (Petr Oros) [RHEL-83567] - ice: Add E830 checksum offload support (Petr Oros) [RHEL-83567] - ice: register devlink prior to creating health reporters (Petr Oros) [RHEL-83567] - ice: Fix switchdev slow-path in LAG (Petr Oros) [RHEL-83567] - ice: fix memory leak in aRFS after reset (Petr Oros) [RHEL-83567] - ice: do not configure destination override for switchdev (Petr Oros) [RHEL-83567] - ice: dpll: Remove newline at the end of a netlink error message (Petr Oros) [RHEL-83567] - ice: Avoid setting default Rx VSI twice in switchdev setup (Petr Oros) [RHEL-83567] - virtchnl: add enumeration for the rxdid format (Petr Oros) [RHEL-83567] - ice: support Rx timestamp on flex descriptor (Petr Oros) [RHEL-83567] - virtchnl: add support for enabling PTP on iAVF (Petr Oros) [RHEL-83567] - ice: refactor ice_fdir_create_dflt_rules() function (Petr Oros) [RHEL-83567] - ice: Implement PTP support for E830 devices (Petr Oros) [RHEL-83567] - ice: Refactor ice_ptp_init_tx_* (Petr Oros) [RHEL-83567] - ice: Add unified ice_capture_crosststamp (Petr Oros) [RHEL-83567] - ice: Process TSYN IRQ in a separate function (Petr Oros) [RHEL-83567] - ice: Use FIELD_PREP for timestamp values (Petr Oros) [RHEL-83567] - ice: Remove unnecessary ice_is_e8xx() functions (Petr Oros) [RHEL-83567] - ice: Don't check device type when checking GNSS presence (Petr Oros) [RHEL-83567] - ice: use generic unrolled_count() macro (Petr Oros) [RHEL-83567] - ice: count combined queues using Rx/Tx count (Petr Oros) [RHEL-83567] - ice: Add check for devm_kzalloc() (Petr Oros) [RHEL-83567] - ice: remove invalid parameter of equalizer (Petr Oros) [RHEL-83567] - ice: fix ice_parser_rt::bst_key array size (Petr Oros) [RHEL-83567] - ice: support FW Recovery Mode (Petr Oros) [RHEL-83567] - ice: Add in/out PTP pin delays (Petr Oros) [RHEL-83567] - ice: use string choice helpers (Petr Oros) [RHEL-83567] - ice: add fw and port health reporters (Petr Oros) [RHEL-83567] - ice: add recipe priority check in search (Petr Oros) [RHEL-83567] - ice: Add MDD logging via devlink health (Petr Oros) [RHEL-83567] - ice: add Tx hang devlink health reporter (Petr Oros) [RHEL-83567] - ice: rename devlink_port.[ch] to port.[ch] (Petr Oros) [RHEL-83567] - ice: cleanup Rx queue context programming functions (Petr Oros) [RHEL-83567] - ice: move prefetch enable to ice_setup_rx_ctx (Petr Oros) [RHEL-83567] - ice: reduce size of queue context fields (Petr Oros) [RHEL-83567] - ice: use for Tx and Rx queue context data (Petr Oros) [RHEL-83567] - ice: use structures to keep track of queue context size (Petr Oros) [RHEL-83567] - ice: remove int_q_state from ice_tlan_ctx (Petr Oros) [RHEL-83567] - ice: fix incorrect PHY settings for 100 GB/s (Petr Oros) [RHEL-83567] - ice: fix max values for dpll pin phase adjust (Petr Oros) [RHEL-83567] - ice: Fix VLAN pruning in switchdev mode (Petr Oros) [RHEL-83567] - ice: Fix NULL pointer dereference in switchdev (Petr Oros) [RHEL-83567] - ice: fix PHY timestamp extraction for ETH56G (Petr Oros) [RHEL-83567] - ice: Unbind the workqueue (Petr Oros) [RHEL-83567] - ice: use stack variable for virtchnl_supported_rxdids (Petr Oros) [RHEL-83567] - ice: initialize pf->supported_rxdids immediately after loading DDP (Petr Oros) [RHEL-83567] - ice: only allow Tx promiscuous for multicast (Petr Oros) [RHEL-83567] - ice: Add support for persistent NAPI config (Petr Oros) [RHEL-83567] - ice: support optional flags in signature segment header (Petr Oros) [RHEL-83567] - ice: refactor "last" segment of DDP pkg (Petr Oros) [RHEL-83567] - ice: extend dump serdes equalizer values feature (Petr Oros) [RHEL-83567] - ice: rework of dump serdes equalizer values feature (Petr Oros) [RHEL-83567] - ice: Support VF queue rate limit and quanta size configuration (Petr Oros) [RHEL-83567] - virtchnl: fix m68k build. (Petr Oros) [RHEL-83567] - virtchnl: support queue rate limit and quanta size configuration (Petr Oros) [RHEL-83567] - ice: Cleanup unused declarations (Petr Oros) [RHEL-83567] - ice: Use common error handling code in two functions (Petr Oros) [RHEL-83567] - ice: Make use of assign_bit() API (Petr Oros) [RHEL-83567] - ice: store max_frame and rx_buf_len only in ice_rx_ring (Petr Oros) [RHEL-83567] - ice: consistently use q_idx in ice_vc_cfg_qs_msg() (Petr Oros) [RHEL-83567] - ice: Implement ethtool reset support (Petr Oros) [RHEL-83567] - nvme-multipath: fix suspicious RCU usage warning (Chris Leech) [RHEL-102650] - livepatch: no need to build kselftests with kernel (Radomir Vrbovsky) [RHEL-70905] - treewide: Switch/rename to timer_delete[_sync]() (Dennis Chen) [RHEL-72659] - sfc: fix NULL dereferences in ef100_process_design_param() (Dennis Chen) [RHEL-72659] - sfc: support X4 devlink flash (Dennis Chen) [RHEL-72659] - sfc: update MCDI protocol headers (Dennis Chen) [RHEL-72659] - sfc: rip out MDIO support (Dennis Chen) [RHEL-72659] - sfc: Remove newline at the end of a netlink error message (Dennis Chen) [RHEL-72659] - sfc: document devlink flash support (Dennis Chen) [RHEL-72659] - sfc: deploy devlink flash images to NIC over MCDI (Dennis Chen) [RHEL-72659] - sfc: extend NVRAM MCDI handlers (Dennis Chen) [RHEL-72659] - sfc: parse headers of devlink flash images (Dennis Chen) [RHEL-72659] - net: sfc: Correct key_len for efx_tc_ct_zone_ht_params (Dennis Chen) [RHEL-72659] - sfc: Use netdev refcount tracking in struct efx_async_filter_insertion (Dennis Chen) [RHEL-72659] - sfc: remove efx_writed_page_locked (Dennis Chen) [RHEL-72659] - net: sfc: use ethtool string helpers (Dennis Chen) [RHEL-72659] - sfc: Remove more unused functions (Dennis Chen) [RHEL-72659] - sfc: Remove unused mcdi functions (Dennis Chen) [RHEL-72659] - sfc: Remove unused efx_mae_mport_vf (Dennis Chen) [RHEL-72659] - sfc: Remove falcon deadcode (Dennis Chen) [RHEL-72659] - sfc: add per-queue RX bytes stats (Dennis Chen) [RHEL-72659] - sfc: implement per-queue TSO (hw_gso) stats (Dennis Chen) [RHEL-72659] - sfc: implement per-queue rx drop and overrun stats (Dennis Chen) [RHEL-72659] - sfc: account XDP TXes in netdev base stats (Dennis Chen) [RHEL-72659] - sfc: add n_rx_overlength to ethtool stats (Dennis Chen) [RHEL-72659] - sfc: implement basic per-queue stats (Dennis Chen) [RHEL-72659] - sfc: remove obsolete counters from struct efx_channel (Dennis Chen) [RHEL-72659] - mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race (Rafael Aquini) [RHEL-101261] {CVE-2025-38085} - mm/hugetlb: unshare page tables during VMA split, not before (Rafael Aquini) [RHEL-101296] {CVE-2025-38084} - tools/testing/vma: add missing function stub (Rafael Aquini) [RHEL-101296] - mm: fix copy_vma() error handling for hugetlb mappings (Rafael Aquini) [RHEL-101296] - crypto: algif_hash - fix double free in hash_accept (CKI Backport Bot) [RHEL-102248] {CVE-2025-38079} - ntb_hw_amd: Add NTB PCI ID for new gen CPU (Jerry Snitselaar) [RHEL-94523] - dmaengine: ptdma: Move variable condition check to the first place and remove redundancy (Jerry Snitselaar) [RHEL-94523] - dmaengine: ptdma: Utilize the AE4DMA engine's multi-queue functionality (Jerry Snitselaar) [RHEL-94523] - dmaengine: ae4dma: Use the MSI count and its corresponding IRQ number (Jerry Snitselaar) [RHEL-94523] - dmaengine: ae4dma: Remove deprecated PCI IDs (Jerry Snitselaar) [RHEL-94523] - dmaengine: ae4dma: Register debugfs using ptdma_debugfs_setup (Jerry Snitselaar) [RHEL-94523] - dmaengine: ptdma: Extend ptdma-debugfs to support multi-queue (Jerry Snitselaar) [RHEL-94523] - dmaengine: ae4dma: Register AE4DMA using pt_dmaengine_register (Jerry Snitselaar) [RHEL-94523] - dmaengine: ptdma: Extend ptdma to support multi-channel and version (Jerry Snitselaar) [RHEL-94523] - redhat/configs: Enable CONFIG_AMD_AE4DMA (Jerry Snitselaar) [RHEL-94523] - dmaengine: ae4dma: Add AMD ae4dma controller driver (Jerry Snitselaar) [RHEL-94523] - Merge DRM changes from upstream v6.14..v6.15 (José Expósito) [RHEL-88418] - redhat/configs: Add new configs from drm 6.15 backport (José Expósito) [RHEL-88418] - powerpc64/ftrace: fix module loading without patchable function entries (Viktor Malik) [RHEL-24555] - powerpc64/ftrace: fix clobbered r15 during livepatching (Viktor Malik) [RHEL-24555] - powerpc/bpf: fix JIT code size calculation of bpf trampoline (Viktor Malik) [RHEL-24555] - powerpc/ftrace: Fix ftrace bug with KASAN=y (Viktor Malik) [RHEL-24555] - powerpc64/bpf: Add support for bpf trampolines (Viktor Malik) [RHEL-24555] - samples/ftrace: Add support for ftrace direct samples on powerpc (Viktor Malik) [RHEL-24555] - powerpc/ftrace: Add support for DYNAMIC_FTRACE_WITH_DIRECT_CALLS (Viktor Malik) [RHEL-24555] - powerpc/ftrace: Add support for DYNAMIC_FTRACE_WITH_CALL_OPS (Viktor Malik) [RHEL-24555] - redhat: Add CONFIG_PPC_FTRACE_OUT_OF_LINE_NUM_RESERVE (Viktor Malik) [RHEL-24555] - powerpc64/ftrace: Support .text larger than 32MB with out-of-line stubs (Viktor Malik) [RHEL-24555] - powerpc64/ftrace: Move ftrace sequence out of line (Viktor Malik) [RHEL-24555] - kbuild: Add generic hook for architectures to use before the final vmlinux link (Viktor Malik) [RHEL-24555] - powerpc/ftrace: Add a postlink script to validate function tracer (Viktor Malik) [RHEL-24555] - powerpc64/bpf: Fold bpf_jit_emit_func_call_hlp() into bpf_jit_emit_func_call_rel() (Viktor Malik) [RHEL-24555] - powerpc/ftrace: Move ftrace stub used for init text before _einittext (Viktor Malik) [RHEL-24555] - powerpc/ftrace: Skip instruction patching if the instructions are the same (Viktor Malik) [RHEL-24555] - powerpc/ftrace: Remove pointer to struct module from dyn_arch_ftrace (Viktor Malik) [RHEL-24555] - powerpc/module_64: Convert #ifdef to IS_ENABLED() (Viktor Malik) [RHEL-24555] - powerpc32/ftrace: Unify 32-bit and 64-bit ftrace entry code (Viktor Malik) [RHEL-24555] - powerpc64/ftrace: Nop out additional 'std' instruction emitted by gcc v5.x (Viktor Malik) [RHEL-24555] - powerpc/kprobes: Use ftrace to determine if a probe is at function entry (Viktor Malik) [RHEL-24555] - powerpc/trace: Account for -fpatchable-function-entry support by toolchain (Viktor Malik) [RHEL-24555] - ACPI: video: Fix random crashes due to bad kfree() (Mark Langsdorf) [RHEL-102414] - bpf: verifier: Refactor helper access type tracking (Jerome Marchand) [RHEL-93930] - selftests/bpf: Convert test_sysctl to prog_tests (Jerome Marchand) [RHEL-93930] - bpf: Specify access type of bpf_sysctl_get_name args (Jerome Marchand) [RHEL-93930] - selftests: netfilter: nft_fib.sh: add type and oif tests with and without VRFs (CKI Backport Bot) [RHEL-88574] - netfilter: nf_tables: nft_fib: consistent l3mdev handling (CKI Backport Bot) [RHEL-88574] - netfilter: nf_tables: nft_fib_ipv6: fix VRF ipv4/ipv6 result discrepancy (CKI Backport Bot) [RHEL-88574] - selftests: netfilter: move fib vrf test to nft_fib.sh (CKI Backport Bot) [RHEL-88574] - selftests: netfilter: nft_fib.sh: add 'type' mode tests (CKI Backport Bot) [RHEL-88574] - selftests: netfilter: nft_fib.sh: check lo packets bypass fib lookup (CKI Backport Bot) [RHEL-88574] - netfilter: nf_tables: add packets conntrack state to debug trace info (CKI Backport Bot) [RHEL-87758] - netfilter: conntrack: make nf_conntrack_id callable without a module dependency (CKI Backport Bot) [RHEL-87758] - tracing: fprobe events: Fix possible UAF on modules (Jerome Marchand) [RHEL-86682] - tracing: gfp: vsprintf: Do not print "none" when using %%pGg printf format (Jerome Marchand) [RHEL-86682] - tracing: tprobe-events: Fix leakage of module refcount (Jerome Marchand) [RHEL-86682] - tracing: tprobe-events: Fix to clean up tprobe correctly when module unload (Jerome Marchand) [RHEL-86682] - tracing: probe-events: Remove unused MAX_ARG_BUF_LEN macro (Jerome Marchand) [RHEL-86682] - tracing: tprobe-events: Reject invalid tracepoint name (Jerome Marchand) [RHEL-86682] - tracing: tprobe-events: Fix a memory leak when tprobe with $retval (Jerome Marchand) [RHEL-86682] - tracing: gfp: Remove duplication of recording GFP flags (Jerome Marchand) [RHEL-86682] - ftrace: Do not add duplicate entries in subops manager ops (Jerome Marchand) [RHEL-86682] - ftrace: Fix accounting of adding subops to a manager ops (Jerome Marchand) [RHEL-86682] - ftrace: Correct preemption accounting for function tracing. (Jerome Marchand) [RHEL-86682] - ring-buffer: Update pages_touched to reflect persistent buffer content (Jerome Marchand) [RHEL-86682] - tracing: Do not allow mmap() of persistent ring buffer (Jerome Marchand) [RHEL-86682] - ring-buffer: Validate the persistent meta data subbuf array (Jerome Marchand) [RHEL-81450 RHEL-86682] {CVE-2025-21777} - tracing: Have the error of __tracing_resize_ring_buffer() passed to user (Jerome Marchand) [RHEL-86682] - ring-buffer: Unlock resize on mmap error (Jerome Marchand) [RHEL-86682] - fgraph: Fix set_graph_notrace with setting TRACE_GRAPH_NOTRACE_BIT (Jerome Marchand) [RHEL-86682] - ftrace: Avoid potential division by zero in function_stat_show() (Jerome Marchand) [RHEL-86682] - tracing/osnoise: Fix resetting of tracepoints (Jerome Marchand) [RHEL-86682] {CVE-2025-21733} - ring-buffer: Do not allow events in NMI with generic atomic64 cmpxchg() (Jerome Marchand) [RHEL-86682] - tracing: gfp: Fix the GFP enum values shown for user space tracing tools (Jerome Marchand) [RHEL-86682] - ring-buffer: Make reading page consistent with the code logic (Jerome Marchand) [RHEL-86682] - selftests/ftrace: Fix to use remount when testing mount GID option (Jerome Marchand) [RHEL-86682] - tracing: Fix using ret variable in tracing_set_tracer() (Jerome Marchand) [RHEL-86682] - MIPS: ftrace: Declare ftrace_get_parent_ra_addr() as static (Jerome Marchand) [RHEL-86682] - ftrace: Fix function profiler's filtering functionality (Jerome Marchand) [RHEL-86682] - fgraph: Add READ_ONCE() when accessing fgraph_array[] (Jerome Marchand) [RHEL-86682] - tracing: Have process_string() also allow arrays (Jerome Marchand) [RHEL-86682] - tracing: Switch trace.c code over to use guard() (Jerome Marchand) [RHEL-86682] - trace/ring-buffer: Do not use TP_printk() formatting for boot mapped buffers (Jerome Marchand) [RHEL-86682] - ring-buffer: Fix overflow in __rb_map_vma (Jerome Marchand) [RHEL-86682] - tracing: Check "%%s" dereference via the field and not the TP_printk format (Jerome Marchand) [RHEL-86682] - tracing: Add "%%s" check in test_event_printk() (Jerome Marchand) [RHEL-86682] - tracing: Add missing helper functions in event pointer dereference check (Jerome Marchand) [RHEL-86682] - tracing: Fix test_event_printk() to process entire print argument (Jerome Marchand) [RHEL-86682] - tracing: Prevent bad count for tracing_cpumask_write (Jerome Marchand) [RHEL-86682] - fgraph: Still initialize idle shadow stacks when starting (Jerome Marchand) [RHEL-86682] - tracing/kprobe: Make trace_kprobe's module callback called after jump_label update (Jerome Marchand) [RHEL-86682] - tracing: Fix cmp_entries_dup() to respect sort() comparison rules (Jerome Marchand) [RHEL-86682] - selftests/ftrace: adjust offset for kprobe syntax error test (Jerome Marchand) [RHEL-86682] - tracing/eprobe: Fix to release eprobe when failed to add dyn_event (Jerome Marchand) [RHEL-86682] - tracing: Constify string literal data member in struct trace_event_call (Jerome Marchand) [RHEL-86682] - ftrace: Fix regression with module command in stack_trace_filter (Jerome Marchand) [RHEL-86682] - tracing: Fix function name for trampoline (Jerome Marchand) [RHEL-86682] - ring-buffer: Limit time with disabled interrupts in rb_check_pages() (Jerome Marchand) [RHEL-86682] - tracing/ftrace: disable preemption in syscall probe (Jerome Marchand) [RHEL-86682] - tracing: Use atomic64_inc_return() in trace_clock_counter() (Jerome Marchand) [RHEL-86682] - parisc/ftrace: Fix function graph tracing disablement (Jerome Marchand) [RHEL-86682] - trace/trace_event_perf: remove duplicate samples on the first tracepoint event (Jerome Marchand) [RHEL-86682] - tracing: Fix function timing profiler to initialize hashtable (Jerome Marchand) [RHEL-86682] - bonding: check xdp prog when set bond mode (Hangbin Liu) [RHEL-96600] - wireguard: netlink: use NLA_POLICY_MASK where possible (CKI Backport Bot) [RHEL-96621] - wireguard: global: add __nonstring annotations for unterminated strings (CKI Backport Bot) [RHEL-96621] - netfilter: bridge: Move specific fragmented packet to slow_path instead of dropping it (CKI Backport Bot) [RHEL-96603] - netfilter: socket: Lookup orig tuple for IPv6 SNAT (CKI Backport Bot) [RHEL-96603] - s390/uv: Improve splitting of large folios that cannot be split while dirty (Thomas Huth) [RHEL-58218] - s390/uv: Always return 0 from s390_wiggle_split_folio() if successful (Thomas Huth) [RHEL-58218] - s390/uv: Don't return 0 from make_hva_secure() if the operation was not successful (Thomas Huth) [RHEL-58218] - KVM: s390: pv: fix race when making a page secure (Thomas Huth) [RHEL-58218] - KVM: s390: remove the last user of page->index (Thomas Huth) [RHEL-92226] - KVM: s390: move PGSTE softbits (Thomas Huth) [RHEL-92226] - KVM: s390: remove useless page->index usage (Thomas Huth) [RHEL-92226] - KVM: s390: move gmap_shadow_pgt_lookup() into kvm (Thomas Huth) [RHEL-92226] - KVM: s390: stop using lists to keep track of used dat tables (Thomas Huth) [RHEL-92226] - KVM: s390: stop using page->index for non-shadow gmaps (Thomas Huth) [RHEL-92226] - KVM: s390: move some gmap shadowing functions away from mm/gmap.c (Thomas Huth) [RHEL-92226] - KVM: s390: get rid of gmap_translate() (Thomas Huth) [RHEL-92226] - KVM: s390: get rid of gmap_fault() (Thomas Huth) [RHEL-92226] - KVM: s390: use __kvm_faultin_pfn() (Thomas Huth) [RHEL-92226] - KVM: s390: move pv gmap functions into kvm (Thomas Huth) [RHEL-92226] - KVM: s390: selftests: fix ucontrol memory region test (Thomas Huth) [RHEL-92226] - KVM: s390: fake memslot for ucontrol VMs (Thomas Huth) [RHEL-92226] - KVM: s390: wrapper for KVM_BUG (Thomas Huth) [RHEL-92226] - KVM: s390: selftests: correct IP.b length in uc_handle_sieic debug output (Thomas Huth) [RHEL-92226] - KVM: s390: selftests: Fix whitespace confusion in ucontrol test (Thomas Huth) [RHEL-92226] - KVM: s390: selftests: Verify reject memory region operations for ucontrol VMs (Thomas Huth) [RHEL-92226] - KVM: s390: selftests: Streamline uc_skey test to issue iske after sske (Thomas Huth) [RHEL-92226] - KVM: s390: selftests: Add uc_skey VM test case (Thomas Huth) [RHEL-92226] - KVM: s390: selftests: Add uc_map_unmap VM test case (Thomas Huth) [RHEL-92226] - Revert "wifi: mwifiex: Fix HT40 bandwidth issue." (Jose Ignacio Tornos Martinez) [RHEL-89169] - Revert "wifi: mt76: Check link_conf pointer in mt76_connac_mcu_sta_basic_tlv()" (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: prevent uninit return in mt7996_mac_sta_add_links (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: scan: Fix 'mlink' dereferenced before IS_ERR_OR_NULL check (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: Fix logical vs bitwise typo (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Fix memory corruption during MLO multicast tx (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: Set n_channels after allocating struct cfg80211_scan_request (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: fix missing hdr_trans_tlv command for broadcast wtbl (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: disable napi on driver removal (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: add support for Killer on MTL (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: fix the type of status_code for negotiated TID to Link Mapping (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: fix out-of-bounds access during multi-link element defragmentation (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-37973} - wifi: iwlwifi: restore missing initialization of async_handlers_list (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: brcm80211: fmac: Add error handling for brcmf_usb_dl_writeimage() (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-37990} - wifi: iwlwifi: fix the check for the SCRATCH register upon resume (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: don't warn if the NIC is gone in resume (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: fix BAID validity check (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: back off on continuous errors (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: only create debugfs symlink if it does not exist (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: inform trans on init failure (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: properly handle async notification in op mode start (Jose Ignacio Tornos Martinez) [RHEL-89169] - Revert "wifi: iwlwifi: make no_160 more generic" (Jose Ignacio Tornos Martinez) [RHEL-89169] - Revert "wifi: iwlwifi: add support for BE213" (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: restore monitor for outgoing frames (Jose Ignacio Tornos Martinez) [RHEL-89169] - gcc-15: work around sequence-point warning (Jose Ignacio Tornos Martinez) [RHEL-89169] - Revert "wifi: mac80211: Update skb's control block key in ieee80211_tx_dequeue()" (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: Restart firmware on iwl_mld_no_wowlan_resume() error (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: pcie: set state to no-FW before reset handshake (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: brcmfmac: fix memory leak in brcmf_get_module_param (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: silence uninitialized variable warning (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: Purge vif txq in ieee80211_do_stop() (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-37794} - wifi: mac80211: Update skb's control block key in ieee80211_tx_dequeue() (Jose Ignacio Tornos Martinez) [RHEL-89169] - iwlwifi: mld: fix building with CONFIG_PM_SLEEP disabled (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: fix PM_SLEEP -Wundef warning (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: reduce scope for uninitialized variable (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: fix locking in mt7996_mac_sta_rc_work() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt792x: re-register CHANCTX_STA_CSA only for the mt7921 series (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Update mt7996_tx to MLO support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_ampdu_action to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework set/get_tsf callabcks to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: set vif default link_id adding/removing vif links (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_mcu_beacon_inband_discov to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_mcu_add_obss_spr to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_net_fill_forward_path to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_update_mu_group to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_mac_sta_poll to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_mac_sta_rc_work to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: remove mt7996_mac_enable_rtscts() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_sta_hw_queue_read to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_set_hw_key to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Add mt7996_sta_link to mt7996_mcu_add_bss_info signature (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_sta_set_4addr and mt7996_sta_set_decap_offload to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_rx_get_wcid to support MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Rely on wcid_to_sta in mt7996_mac_add_txs_skb() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: rework mt7996_mac_write_txwi() for MLO support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Add mt7996_mcu_teardown_mld_sta rouine (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Add mt7996_mcu_sta_mld_setup_tlv() and mt7996_mcu_sta_eht_mld_tlv() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Update mt7996_mcu_add_rate_ctrl to MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Rely on mt7996_vif/sta_link in twt teardown (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Rely on mt7996_vif_link in mt7996_mcu_twt_agrt_update signature (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Update mt7996_mcu_add_sta to MLO support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: Check link_conf pointer in mt76_connac_mcu_sta_basic_tlv() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Support MLO in mt7996_mac_sta_event() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Add mt7996_mac_sta_change_links callback (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Rely on mt7996_sta_link in sta_add/sta_remove callbacks (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Add mt7996_sta_state routine (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Add link_info_changed callback (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Add vif_cfg_changed callback (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Add mt7996_sta_link struct in mt7996_vif_link (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Introduce mt7996_sta_link container (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: Add change_vif_links stub (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: scan: fix setting tx_info fields (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: implement driver specific get_txpower function (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: only mark tx-status-failed frames as ACKed on mt76x0/2 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: use the correct vif link for scanning/roc (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: scan: set vif offchannel link for scanning/roc (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: remove unnecessary key->cipher check for BIP frames (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: fix SER reset trigger on WED reset (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: revise TXS size (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7996: cleanup mt7996_get_power_bound (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7915: cleanup mt7915_get_power_bound (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: add mt76_get_power_bound helper function (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: add MTCL support to enhance the regulatory compliance (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt792x: extend MTCL of APCI to version3 for EHT control (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: remove unused acpi function for clc (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: update the channel usage when the regd domain changed (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: add EHT control support based on the CLC data (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: load the appropriate CLC data based on hardware type (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: update the power-saving flow (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: integrate *mlo_sta_cmd and *sta_cmd (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: adjust rm BSS flow to prevent next connection failure (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: fix the wrong simultaneous cap for MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: fix the wrong link_idx when a p2p_device is present (Jose Ignacio Tornos Martinez) [RHEL-89169] - Revert "wifi: mt76: mt7925: Update mt7925_mcu_uni_[tx,rx]_ba for MLO" (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7921: fix kernel panic due to null pointer dereference (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-22032} - wifi: mt76: mt7925: Simplify HIF suspend handling to avoid suspend fail (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: Remove unnecessary if-check (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: Add check for devm_kstrdup() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: fix country count limitation for CLC (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: ensure wow pattern command align fw format (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7915: fix possible integer overflows in mt7915_muru_stats_show() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: fix fails to enter low power mode in suspend state (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mt76: mt7925: introduce MLO capability control (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: nl80211: re-enable multi-link reconfiguration (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: dvm: Avoid -Wflex-array-member-not-at-end warnings (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: do not use iwlmld for non-wifi7 devices (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: remove a buggy else statement in op_mode selection (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mwifiex: Fix RF calibration data download from file (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mwifiex: Fix premature release of RF calibration data. (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: init wiphy_work before allocating rfkill fails (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-22119} - wifi: mac80211: check basic rates validity in sta_link_apply_parameters (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: fix indentation in ieee80211_set_monitor_channel() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mwifiex: Fix HT40 bandwidth issue. (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: add debugfs to control MLO scan (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: we support v6 of compressed_ba_notif (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: iwl_mld_remove_link can't fail (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: fix copy/paste error (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: make iwl_mld_run_fw_init_sequence static (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: KUnit: test iwl_mld_channel_load_allows_emlsr (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: KUnit: create chanctx with a custom width (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: KUnit: introduce iwl_mld_kunit_link (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: allow EMLSR for unequal bandwidth (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: prevent toggling EMLSR due to FW requests (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: remove IWL_MLD_EMLSR_BLOCKED_FW (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: add support for DHC_TOOLS_UMAC_GET_TAS_STATUS command (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: Ensure wiphy lock is held during debugfs read operations (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: Add support for WIPHY_DEBUGFS_READ_FILE_OPS_MLD macro (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: Rename WIPHY_DEBUGFS_HANDLER_WRAPPER to WIPHY_DEBUGFS_WRITE_HANDLER_WRAPPER (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: nl80211: store chandef on the correct link when starting CAC (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Add __nonstring annotations for unterminated strings (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Enable the new RTL8814AE/RTL8814AU drivers (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Add rtw8814au.c (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Add rtw8814ae.c (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Add rtw8814a.{c,h} (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Add rtw8814a_table.c (part 2/2) (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Add rtw8814a_table.c (part 1/2) (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Add some definitions for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: Update Wi-Fi/Bluetooth coexistence version to 7.0.4 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: Add parser for Bluetooth channel map report version 7 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: Fix coexistence report not show as expected (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: RTL8852BT coexistence Wi-Fi firmware support for 0.29.122.0 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: set force HE TB mode when connecting to 11ax AP (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: 8922a: enable dynamic antenna gain (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: enable dynamic antenna gain based on country (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: refine mechanism of TAS (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: add support for negative values of dBm to linear conversion (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: Fix uninitialized variable with __free() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: use cfg80211_chandef_get_width() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: expose cfg80211_chandef_get_width() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: use supported selectors from assoc in ML reconf (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: remove SSID from ML reconf (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: zd1211rw: Add __nonstring annotations for unterminated strings (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: virt_wifi: Add __nonstring annotations for unterminated strings (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mwifiex: Add __nonstring annotations for unterminated strings (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: avoid selecting bad links (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: fix bad RSSI handling (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: always do MLO scan before link selection (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: Correctly configure the A-MSDU max lengths (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: remove AP keys only for AP STA (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: move the ftm initiator data to ftm-initiator.h (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: enable OMI bandwidth reduction on 6 GHz (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: fix OMI time protection logic (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: use the right iface iterator in low_latency (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: initialize regulatory early (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: assume wiphy is locked when getting BSS ifaces (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: refactor iwl_mld_valid_emlsr_pair (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: track channel_load_not_by_us (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: fix SMPS W/A (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: fix build with CONFIG_PM_SLEEP undefined (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mvm: fix setting the TK when associated (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: don't warn when if there is a FW error (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: bump minimum API version in BZ/SC to 93 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: bump FW API to 98 for BZ/SC/DR devices (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mvm: Fix bit size calculation in iwl_dbgfs_tas_get_status_read (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: w/a FW SMPS mode selection (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: fix debug actions order (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mark Br device not integrated (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: Add new TAS disable reason for invalid table source (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mvm: cleanup of TAS structure and enums (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: fix print for ECKV (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: fix the ECKV UEFI variable name (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: add support for BE213 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: set WMM in ML reconfiguration (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: don't include MLE in ML reconf per-STA profile (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: fix ML reconf reset in disconnect (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: Notify cfg80211 about added link addresses (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: Update the link address when a link is added (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: fix warning on disconnect during failed ML reconf (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: fix userspace_selectors corruption (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211_hwsim: Fix MLD address translation (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: allow 320 MHz FTM measurements (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: improve supported_selector documentation (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: fix U-APSD check in ML reconfiguration (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: allow IR in 20 MHz configurations (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: mlme: support extended MLD capa/ops in assoc (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: allow setting extended MLD capa/ops (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: move link reconfig parameters into a struct (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: pci: correct ISR RDU bit for 8922AE (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: don't reject firmware in blacklist to prevent breaking users (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: correct debug message format in rtw89_build_txpwr_trk_tbl_from_elm() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: update role_maintain H2C command for roles operating on band 1 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: use struct to fill role_maintain H2C command (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: add iwlmld sub-driver (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: remove mld/roc.c (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Report proper tx completion status to mac80211 (Jose Ignacio Tornos Martinez) [RHEL-89169] - dt-bindings: wireless: ath12k: Strip ath12k prefix from calibration property (Jose Ignacio Tornos Martinez) [RHEL-89169] - dt-bindings: wireless: ath11k: Strip ath11k prefix from calibration property (Jose Ignacio Tornos Martinez) [RHEL-89169] - dt-bindings: net: ath11k: document the inputs of the ath11k on WCN6855 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: Deprecate qcom,ath11k-calibration-variant properties (Jose Ignacio Tornos Martinez) [RHEL-89169] - dt-bindings: wireless: ath10k: Strip ath10k prefix from calibration properties (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath10k: Deprecate qcom,ath10k-calibration-variant properties (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: pass BSSID index as input for EMA (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: pass tx arvif for MBSSID and EMA beacon generation (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: refactor transmitted arvif retrieval (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: pass tx arvif for MBSSID and EMA beacon generation (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: refactor transmitted arvif retrieval (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: refactor populating mesh related fields in sinfo (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: reorg sinfo structure elements for mesh (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: Fix spelling mistake "Increate" -> "Increase" (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k/ath12k: Replace irq_set_affinity_hint() with irq_set_affinity_and_hint() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Clear affinity hint before calling ath12k_pci_free_irq() in error path (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-22128} - wifi: ath11k: Clear affinity hint before calling ath11k_pcic_free_irq() in error path (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-23129} - wifi: rtw89: Parse channel from IE to correct invalid hardware reports during scanning (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: add support for HW TKIP crypto (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Improve BSS discovery with hidden SSID in 6 GHz band (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: add Debug Host Command APIs (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: add IWL_MAX_NUM_IGTKS macro (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: add OMI bandwidth reduction APIs (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: remove mvm prefix from iwl_mvm_d3_end_notif (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: remember if the UATS table was read successfully (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: export iwl_get_lari_config_bitmap (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: add support for external 32 KHz clock (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: add a debug level for EHT prints (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mld: add a debug level for PTP prints (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: remove mvm prefix from iwl_mvm_esr_mode_notif (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: use 0xff instead of 0xffffffff for invalid (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: location api cleanup (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: expose update timestamp to drivers (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: add ieee80211_iter_chan_contexts_mtx (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: fix integer overflow in hwmp_route_info_get() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: Fix possible integer promotion issue (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: convert timeouts to secs_to_jiffies() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: Add counter for all monitor interfaces (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add NULL check to validate tpc_stats (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: use link specific bss_conf as well in ath12k_mac_vif_cache_flush() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Extend rtw_debugfs_get_tx_pwr_tbl() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Extend rtw_debugfs_get_phy_info() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Extend rtw_phy_config_swing_table() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Fix rtw_rx_phy_stat() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Fix rtw_init_ht_cap() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Fix rtw_mac_power_switch() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: safely cast mfw_hdr pointer from firmware->data (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: add debug message for unexpected secure firmware (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: propagate error code from rtw89_h2c_tx() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: get sb_sel_ver via get_unaligned_le32() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: add blacklist to avoid obsolete secure firmware (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: add H2C command of TX time for WiFi 7 chips (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: mac: define registers of agg_limit and txcnt_limit to share common flow (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: 8922a: fix incorrect STA-ID in EHT MU PPDU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: rtw8852b{t}: fix TSSI debug timestamps (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Add support for Mercusys MA30N and D-Link DWA-T185 rev. A1 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add missing htt_metadata flag in ath12k_dp_tx() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: remove redundant declaration of ath12k_dp_rx_h_find_peer() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: cleanup ath12k_mac_mlo_ready() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: Add firmware coredump collection support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: use union for vaddr and iaddr in target_mem_chunk (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Support Received FSE Stats (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Support Uplink MUMIMO Trigger Stats (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Support Uplink OFDMA Trigger Stats (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Support Latency Stats (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Support Sounding Stats (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Enable MLO for single split-phy PCI device (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Remove dependency on single_chip_mlo_support for mlo_capable flag (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Enable MLO setup ready and teardown commands for single split-phy device (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Fix locking in "QMI firmware ready" error paths (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add support for MLO Multicast handling in driver (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Update HTT_TCL_METADATA version and bit mask definitions (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: add srng->lock for ath11k_hal_srng_* in monitor mode (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2024-58096} - wifi: ath11k: fix RCU stall while reaping monitor destination ring (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2024-58097} - wifi: ath12k: handle link removal in change_vif_links() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: allocate new links in change_vif_links() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: relocate a few functions in mac.c (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: use arvif instead of link_conf in ath12k_mac_set_key() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: remove redundant logic for initializing arvif (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: remove redundant vif settings during link interface creation (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: introduce ath12k_generic_dbg() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: eliminate redundant debug mask check in ath12k_dbg() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add peer extended Rx statistics debugfs support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Refactor the format of peer rate table information (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add EHT MCS support in Extended Rx statistics (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: fix the ampdu id fetch in the HAL_RX_MPDU_START TLV (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Update the peer id in PPDU end user stats TLV (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add HAL_PHYRX_OTHER_RECEIVE_INFO TLV parsing support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add HAL_RX_PPDU_START_USER_INFO TLV parsing support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add HAL_PHYRX_GENERIC_EHT_SIG TLV parsing support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add HAL_PHYRX_GENERIC_U_SIG TLV parsing support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: add support of station average signal strength (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: implement dump region split (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: add twt operation cmd (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: use correct IMR dump variable (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: support ROC version 6 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: clarify the meaning of IWL_INIT_PHY (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: properly set the names for SC devices (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: make no_160 more generic (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: be less aggressive with re-probe (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: fw: make iwl_send_dbg_dump_complete_cmd() static (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mvm: Indicate support link reconfiguration (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: Indicate support for EPCS (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: cfg: separate 22000/BZ family HT params (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: enable 320 MHz on slow PCIe links (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: don't warn during reprobe (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: Unify TAS block list handling in regulatory.c (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mvm: rename and move iwl_mvm_eval_dsm_rfi() to iwl_rfi_is_enabled_in_bios() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: rework the Tx of the deauth in ieee80211_set_disassoc() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: ensure sdata->work is canceled before initialized. (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: enable removing assoc link (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: aggregation: remove deflink accesses for MLO (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: always send max agg subframe num in strict mode (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: don't unconditionally call drv_mgd_complete_tx() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: remove misplaced drv_mgd_complete_tx() call (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: set ieee80211_prep_tx_info::link_id upon Auth Rx (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: tests: add tests for ieee80211_determine_chan_mode (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: add HT and VHT basic set verification (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211_hwsim: enable strict mode (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: add strict mode disabling workarounds (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: Add processing of TTLM teardown frame (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ieee80211: Add missing EHT MAC capabilities (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: Add support for EPCS configuration (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: Refactor ieee80211_sta_wmm_params() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: cfg80211: Fix trace print for removed links (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mac80211: Drop cooked monitor support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: nl80211/cfg80211: Stop supporting cooked monitor (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mwifiex: Remove unused mwifiex_uap_del_sta_data (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: remove the mvm prefix from iwl_mvm_aux_sta_cmd (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: remove the version number from iwl_dts_measurement_notif_v2 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: remove the mvm prefix from iwl_mvm_ctdp_cmd (Jose Ignacio Tornos Martinez) [RHEL-89169] - dt-bindings: net: rfkill-gpio: enable booting in blocked state (Jose Ignacio Tornos Martinez) [RHEL-89169] - net: rfkill: gpio: allow booting in blocked state (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: Remove old device data (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: Remove unused iwl_bz_name (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mvm: Remove unused iwl_mvm_ftm_add_pasn_sta (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mvm: Remove unused iwl_mvm_ftm_*_add_pasn_sta functions (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: mvm: Remove unused iwl_mvm_rx_missed_vap_notif (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: iwlwifi: dvm: Remove unused iwl_rx_ant_restriction (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: debugfs depends on CFG80211's one (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtlwifi: rtl8192de: Fix typos of debug message of phy setting (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Fix rtw_update_sta_info() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Extend TX power stuff for 3-4 spatial streams (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Rename RTW_RATE_SECTION_MAX to RTW_RATE_SECTION_NUM (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Constify some more structs and arrays (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Extend rtw_fw_send_ra_info() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Extend rf_base_addr and rf_sipi_addr for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Extend struct rtw_pwr_track_tbl for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Fix download_firmware_validate() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Fix __rtw_download_firmware() for RTL8814AU (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Fix a typo of debug message in rtw8723d_iqk_check_tx_failed() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: regd: avoid using BITMAP_FROM_U64() to assign function bitmap (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: Update Wi-Fi/Bluetooth coexistence version to 7.0.3 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: To avoid TWS serials A2DP lag, adjust slot arrangement (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: Assign value over than 0 to avoid firmware timer hang (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: validate multi-firmware header before getting its size (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: fw: validate multi-firmware header before accessing (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: ps: update H2C command with more info for PS (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: call power_on ahead before selecting firmware (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: update channel list in worker when wait flag is set (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: update channel list in reg notifier instead reg worker (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-23133} - wifi: ath12k: Add Support to Calculate and Display TPC Values (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add Support to Parse TPC Event from Firmware (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Dump additional PDEV receive rate HTT stats (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Dump PDEV receive rate HTT stats (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Dump PDEV transmit rate HTT stats (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: fix wrong overriding for VHT Beamformee STS Capability (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: add support for MU EDCA (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add support for reading variant from ACPI to download board data file (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Adjust the timing to access ACPI table (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add Support for enabling or disabling specific features based on ACPI bitflag (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add support for obtaining the buffer type ACPI function bitmap (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: handle ath12k_mac_ieee80211_sta_bw_to_wmi() for link sta (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: relocate ath12k_mac_ieee80211_sta_bw_to_wmi() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Avoid napi_sync() before napi_enable() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: prevent CSA counter to reach 0 and hit WARN_ON_ONCE (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: update the latest CSA counter (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: fix handling of CSA offsets in beacon template command (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: update beacon template function to use arvif structure (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtl8xxxu: retry firmware download on error (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Don't use static local variable in rtw8821c_set_tx_power_index_by_rate (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw88: Don't use static local variable in rtw8822b_set_tx_power_index_by_rate (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtl8xxxu: Enable AP mode for RTL8192CU (RTL8188CUS) (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: pci: not assert wiphy_lock to free early_h2c for PCI probe/remove (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: remove definition of driver mutex (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: manual cosmetic along lockdep_assert_wiphy() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: remove consumers of driver mutex (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: debugfs: use debugfs_short_fops (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: debugfs: use wiphy_locked_debugfs_{read,write}() if needed (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: debugfs: specify buffer size allocated by devm_kazlloc() for reading (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: debugfs: implement file_ops::read/write to replace seq_file (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: use wiphy_work() to replace ieee802111_work() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: add wiphy_lock() to work that isn't held wiphy_lock() yet (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: cleanup unused rtwdev::roc_work (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: regd: refactor init/setup flow and prototype (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: regd: handle supported regulatory functions by country (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: regd: support loading regd table from fw element (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: phy: disable CFO track when two PHY are working simultaneously (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: phy: support EDCCA log per PHY (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: phy: support EDCCA per PHY (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: phy: support ch_info per PHY (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: phy: support DIG per PHY (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: phy: support env_monitor per PHY (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: phy: add PHY context array to support functions per PHY (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: phy: rename to RTW89_PHY_NUM as proper naming (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: remove return for empty tx bitrate in mac_op_sta_statistics (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: fix ath12k_hal_tx_cmd_ext_desc_setup() info1 override (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: remove peer extra rssi update (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath9k: do not submit zero bytes to the entropy pool (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath9k: return by of_get_mac_address (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Fetch regdb.bin file from board-2.bin (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: mwifiex: Constify struct mwifiex_if_ops (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Enable monitor ring mask for QCN9274 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Handle monitor drop TLVs scenario (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Avoid memory leak while enabling statistics (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-37743} - wifi: ath12k: Handle PPDU spread across multiple buffers (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Optimize NAPI budget by adjusting PPDU processing (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Handle end reason for the monitor destination ring (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add drop descriptor handling for monitor ring (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Fix end offset bit definition in monitor ring descriptor (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Fix invalid entry fetch in ath12k_dp_mon_srng_process (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Restructure the code for monitor ring processing (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Avoid code duplication in monitor ring processing (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Avoid multiple times configuring monitor filter (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Enable filter config for monitor destination ring (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Add HTT source ring ID for monitor rings (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Fix pdev lookup in WBM error processing (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Request pdev stats from firmware (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Request beacon stats from firmware (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Request vdev stats from firmware (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: fix memory leak in ath12k_pci_remove() (Jose Ignacio Tornos Martinez) [RHEL-89169] {CVE-2025-37744} - wifi: ath12k: encode max Tx power in scan channel list command (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: fix memory leak in ath11k_xxx_remove() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: report station mode signal strength (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: report station mode receive rate for IEEE 802.11be (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: report station mode transmit rate (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: fix skb_ext_desc leak in ath12k_dp_tx() error path (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Disable MLO in Factory Test Mode (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: add factory test mode support (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: export ath12k_wmi_tlv_hdr for testmode (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath: create common testmode_i.h file for ath drivers (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: Use dma_alloc_noncoherent for rx_tid buffer allocation (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: Fix DMA buffer allocation to resolve SWIOTLB issues (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: Correct immediate cfg_len calculation for scan_offload_be (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: Update Wi-Fi/Bluetooth coexistence version to 7.0.2 (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: Separated Wi-Fi connecting event from Wi-Fi scan event (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: rtw89: coex: Add protect to avoid A2DP lag while Wi-Fi connecting (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Refactor Rx status TLV parsing procedure argument (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Refactor the monitor Tx/RX handler procedure arguments (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath12k: Refactor the monitor Rx parser handler argument (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath9k: use unsigned long for activity check timestamp (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath9k: cleanup struct ath_tx_control and ath_tx_prepare() (Jose Ignacio Tornos Martinez) [RHEL-89169] - wifi: ath11k: convert timeouts to secs_to_jiffies() (Jose Ignacio Tornos Martinez) [RHEL-89169] - config: wifi: disable new unsupported configuration options (Jose Ignacio Tornos Martinez) [RHEL-89169] - config: wifi: enable iwlmld driver (Jose Ignacio Tornos Martinez) [RHEL-89169] - ACPI/HMAT: Move HMAT messages to pr_debug() (Steve Dunnagan) [RHEL-70322] - mm/huge_memory: fix dereferencing invalid pmd migration entry (CKI Backport Bot) [RHEL-96382] {CVE-2025-37958} - lib/group_cpus: fix NULL pointer dereference from group_cpus_evenly() (Ming Lei) [RHEL-100484] - nfsd: use threads array as-is in netlink interface (Benjamin Coddington) [RHEL-96874] - igc: fix lock order in igc_ptp_reset (Corinna Vinschen) [RHEL-83571] - igc: set the RX packet buffer size for TSN mode (Corinna Vinschen) [RHEL-83571] - igc: use FIELD_PREP and GENMASK for existing RX packet buffer size (Corinna Vinschen) [RHEL-83571] - igc: optimize TX packet buffer utilization for TSN mode (Corinna Vinschen) [RHEL-83571] - igc: use FIELD_PREP and GENMASK for existing TX packet buffer size (Corinna Vinschen) [RHEL-83571] - igc: rename I225_RXPBSIZE_DEFAULT and I225_TXPBSIZE_DEFAULT (Corinna Vinschen) [RHEL-83571] - igc: rename xdp_get_tx_ring() for non-xdp usage (Corinna Vinschen) [RHEL-83571] - igc: enable HW vlan tag insertion/stripping by default (Corinna Vinschen) [RHEL-83571] - igc: add lock preventing multiple simultaneous PTM transactions (Corinna Vinschen) [RHEL-83571] - igc: cleanup PTP module if probe fails (Corinna Vinschen) [RHEL-83571] - igc: handle the IGC_PTP_ENABLED flag correctly (Corinna Vinschen) [RHEL-83571] - igc: move ktime snapshot into PTM retry loop (Corinna Vinschen) [RHEL-83571] - igc: increase wait time before retrying PTM (Corinna Vinschen) [RHEL-83571] - igc: fix PTM cycle trigger logic (Corinna Vinschen) [RHEL-83571] - treewide: Switch/rename to timer_delete[_sync]() (Corinna Vinschen) [RHEL-83571] - igc: Fix XSK queue NAPI ID mapping (Corinna Vinschen) [RHEL-83571] - igc: Set buffer type for empty frames in igc_init_empty_frame (Corinna Vinschen) [RHEL-83571] - igc: Fix HW RX timestamp when passed by ZC XDP (Corinna Vinschen) [RHEL-83571] - igc: Avoid unnecessary link down event in XDP_SETUP_PROG process (Corinna Vinschen) [RHEL-83571] - igc: Link queues to NAPI instances (Corinna Vinschen) [RHEL-83571] - igc: Link IRQs to NAPI instances (Corinna Vinschen) [RHEL-83571] - igc: Fix passing 0 to ERR_PTR in igc_xdp_run_prog() (Corinna Vinschen) [RHEL-83571] - igc: Allow hot-swapping XDP program (Corinna Vinschen) [RHEL-83571] - igc: return early when failing to read EECD register (Corinna Vinschen) [RHEL-83571] - igc: Remove unused igc_read/write_pcie_cap_reg (Corinna Vinschen) [RHEL-83571] - igc: Remove unused igc_read/write_pci_cfg wrappers (Corinna Vinschen) [RHEL-83571] - igc: Remove unused igc_acquire/release_nvm (Corinna Vinschen) [RHEL-83571] - igc: remove autoneg parameter from igc_mac_info (Corinna Vinschen) [RHEL-83571] - page_pool: Fix use-after-free in page_pool_recycle_in_ring (Paolo Abeni) [RHEL-96620] - rtnetlink: Allocate vfinfo size for VF GUIDs when supported (Paolo Abeni) [RHEL-96620] - redhat: enable test_kmod, test_module and install kmod selftests (Herton R. Krzesinski) [RHEL-94012] - lib/test_kmod: do not hardcode/depend on any filesystem (Herton R. Krzesinski) [RHEL-94012] - igb: Get rid of spurious interrupts (Corinna Vinschen) [RHEL-83570] - igb: Add support for persistent NAPI config (Corinna Vinschen) [RHEL-83570] - igb: Link queues to NAPI instances (Corinna Vinschen) [RHEL-83570] - igb: Link IRQs to NAPI instances (Corinna Vinschen) [RHEL-83570] - treewide: Switch/rename to timer_delete[_sync]() (Corinna Vinschen) [RHEL-83570] - igb: reject invalid external timestamp requests for 82580-based HW (Corinna Vinschen) [RHEL-83570] - igb: Fix passing 0 to ERR_PTR in igb_run_xdp() (Corinna Vinschen) [RHEL-83570] - igb: Add AF_XDP zero-copy Tx support (Corinna Vinschen) [RHEL-83570] - igb: Add AF_XDP zero-copy Rx support (Corinna Vinschen) [RHEL-83570] - igb: Add XDP finalize and stats update functions (Corinna Vinschen) [RHEL-83570] - igb: Introduce XSK data structures and helpers (Corinna Vinschen) [RHEL-83570] - igb: Introduce igb_xdp_is_enabled() (Corinna Vinschen) [RHEL-83570] - igb: Remove static qualifiers (Corinna Vinschen) [RHEL-83570] - igbvf: remove unused spinlock (Corinna Vinschen) [RHEL-83570] - igb: Fix 2 typos in comments in igb_main.c (Corinna Vinschen) [RHEL-83570] - net: mana: Record doorbell physical address in PF mode (Maxim Levitsky) [RHEL-80095] - scsi: storvsc: Increase the timeouts to storvsc_timeout (Maxim Levitsky) [RHEL-80095] - PCI: hv: Remove unnecessary flex array in struct pci_packet (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Always select CONFIG_SYSFB for Hyper-V guests (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Remove hv_alloc/free_* helpers (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Use kzalloc for panic page allocation (Maxim Levitsky) [RHEL-80095] - uio_hv_generic: Use correct size for interrupt and monitor pages (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Allocate interrupt and monitor pages aligned to system page boundary (Maxim Levitsky) [RHEL-80095] - arch/x86: Provide the CPU number in the wakeup AP callback (Maxim Levitsky) [RHEL-80095] - x86/hyperv: Fix APIC ID and VP index confusion in hv_snp_boot_ap() (Maxim Levitsky) [RHEL-80095] - net: mana: Add support for Multi Vports on Bare metal (Maxim Levitsky) [RHEL-80095] - net: mana: Add support for auxiliary device servicing events (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: unify mana_ib functions to support any gdma device (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Add support of mana_ib for RNIC and ETH nic (Maxim Levitsky) [RHEL-80095] - net: mana: Probe rdma device in mana driver (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Add support of 4M, 1G, and 2G pages (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: support of the zero based MRs (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Access remote atomic for MRs (Maxim Levitsky) [RHEL-80095] - net: mana: Switch to page pool for jumbo frames (Maxim Levitsky) [RHEL-80095] - net: mana: Add metadata support for xdp mode (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Fix integer overflow during queue creation (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Handle net event for pointing to the current netdev (Maxim Levitsky) [RHEL-80095] - net: mana: Change the function signature of mana_get_primary_netdev_rcu (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Use safer allocation function() (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Ensure variable err is initialized (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Implement DMABUF MR support (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Fix error code in probe() (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Add port statistics support (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: request error CQEs when supported (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Query feature_flags bitmask from FW (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: indicate CM support (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: polling of CQs for GSI/UD (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: extend mana QP table (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: implement req_notify_cq (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: UD/GSI work requests (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: create/destroy AH (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: UD/GSI QP creation for kernel (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Create and destroy UD/GSI QP (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: create kernel-level CQs (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: helpers to allocate kernel queues (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: implement get_dma_mr (Maxim Levitsky) [RHEL-80095] - RDMA/mana_ib: Allow registration of DMA-mapped memory in PDs (Maxim Levitsky) [RHEL-80095] - net: mana: Add debug logs in MANA network driver (Maxim Levitsky) [RHEL-80095] - net: mana: Allow tso_max_size to go up-to GSO_MAX_SIZE (Maxim Levitsky) [RHEL-80095] - net: mana: Support holes in device list reply msg (Maxim Levitsky) [RHEL-80095] - net/mana: fix warning in the writer of client oob (Maxim Levitsky) [RHEL-80095] - net: mana: cleanup mana struct after debugfs_remove() (Maxim Levitsky) [RHEL-80095] - hv_netvsc: Use VF's tso_max_size value when data path is VF (Maxim Levitsky) [RHEL-80095] - Drivers: hv: vmbus: Remove vmbus_sendpacket_pagebuffer() (Maxim Levitsky) [RHEL-80095] - hv_netvsc: Remove rmsg_pgcnt (Maxim Levitsky) [RHEL-80095] - hv_netvsc: Preserve contiguous PFN grouping in the page buffer array (Maxim Levitsky) [RHEL-80095] - hv_netvsc: Use vmbus_sendpacket_mpb_desc() to send VMBus messages (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Allow vmbus_sendpacket_mpb_desc() to create multiple ranges (Maxim Levitsky) [RHEL-80095] - hv_netvsc: Replace one-element array with flexible array member (Maxim Levitsky) [RHEL-80095] - hv_netvsc: Link queues to NAPIs (Maxim Levitsky) [RHEL-80095] - hv_netvsc: Don't assume cpu_possible_mask is dense (Maxim Levitsky) [RHEL-80095] - hv_sock: Initializing vsk->trans to NULL to prevent a dangling pointer (Maxim Levitsky) [RHEL-80095] {CVE-2024-53103} - hv_balloon: Fallback to generic_online_page() for non-HV hot added mem (Maxim Levitsky) [RHEL-80095] - scsi: storvsc: Don't report the host packet status as the hv status (Maxim Levitsky) [RHEL-80095] - scsi: storvsc: Ratelimit warning logs to prevent VM denial of service (Maxim Levitsky) [RHEL-80095] {CVE-2025-21690} - scsi: storvsc: Don't assume cpu_possible_mask is dense (Maxim Levitsky) [RHEL-80095] - uio_hv_generic: Add a check for HV_NIC for send, receive buffers setup (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Make the sysfs node size for the ring buffer dynamic (Maxim Levitsky) [RHEL-80095] - uio_hv_generic: Fix sysfs creation path for ring buffer (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Fix bad ref to hv_synic_eventring_tail when CPU goes offline (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Fix bad pointer dereference in hv_get_partition_id (Maxim Levitsky) [RHEL-80095] - x86/hyperv: fix an indentation issue in mshyperv.h (Maxim Levitsky) [RHEL-80095] - x86/hyperv: Add comments about hv_vpset and var size hypercall input args (Maxim Levitsky) [RHEL-80095] - x86/hyperv: Fix check of return value from snp_set_vmsa() (Maxim Levitsky) [RHEL-80095] - x86/hyperv: Add VTL mode callback for restarting the system (Maxim Levitsky) [RHEL-80095] - x86/hyperv: Add VTL mode emergency restart callback (Maxim Levitsky) [RHEL-80095] - hyperv: Remove unused union and structs (Maxim Levitsky) [RHEL-80095] - x86/hyperv: Use named operands in inline asm (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Introduce mshv_root module to expose /dev/mshv to VMMs (Maxim Levitsky) [RHEL-80095] - hyperv: Add definitions for root partition driver to hv headers (Maxim Levitsky) [RHEL-80095] - x86: hyperv: Add mshv_handler() irq handler and setup function (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Introduce per-cpu event ring tail (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Export some functions for use by root partition module (Maxim Levitsky) [RHEL-80095] - acpi: numa: Export node_to_pxm() (Maxim Levitsky) [RHEL-80095] - hyperv: Introduce hv_recommend_using_aeoi() (Maxim Levitsky) [RHEL-80095] - arm64/hyperv: Add some missing functions to arm64 (Maxim Levitsky) [RHEL-80095] - x86/mshyperv: Add support for extended Hyper-V features (Maxim Levitsky) [RHEL-80095] - hyperv: Log hypercall status codes as strings (Maxim Levitsky) [RHEL-80095] - hyperv: Add CONFIG_MSHV_ROOT to gate root partition support (Maxim Levitsky) [RHEL-80095] - hyperv: Change hv_root_partition into a function (Maxim Levitsky) [RHEL-80095] - hyperv: Convert hypercall statuses to linux error codes (Maxim Levitsky) [RHEL-80095] - PCI: hv: Correct a comment (Maxim Levitsky) [RHEL-80095] - drivers/hv: add CPU offlining support (Maxim Levitsky) [RHEL-80095] - drivers/hv: introduce vmbus_channel_set_cpu() (Maxim Levitsky) [RHEL-80095] - cpu: export lockdep_assert_cpus_held() (Maxim Levitsky) [RHEL-80095] - hyperv: Move arch/x86/hyperv/hv_proc.c to drivers/hv (Maxim Levitsky) [RHEL-80095] - hyperv: Move hv_current_partition_id to arch-generic code (Maxim Levitsky) [RHEL-80095] - Drivers: hv: vmbus: Don't release fb_mmio resource in vmbus_free_mmio() (Maxim Levitsky) [RHEL-80095] - x86/hyperv: Fix output argument to hypercall that changes page visibility (Maxim Levitsky) [RHEL-80095] - x86/hyperv/vtl: Stop kernel from probing VTL0 low memory (Maxim Levitsky) [RHEL-80095] - hyperv: Do not overlap the hvcall IO areas in hv_vtl_apicid_to_vp_id() (Maxim Levitsky) [RHEL-80095] - hyperv: Do not overlap the hvcall IO areas in get_vtl() (Maxim Levitsky) [RHEL-80095] - hyperv: Enable the hypercall output page for the VTL mode (Maxim Levitsky) [RHEL-80095] - Drivers: hv: vmbus: Log on missing offers if any (Maxim Levitsky) [RHEL-80095] - Drivers: hv: vmbus: Wait for boot-time offers during boot and resume (Maxim Levitsky) [RHEL-80095] - Drivers: hv: Don't assume cpu_possible_mask is dense (Maxim Levitsky) [RHEL-80095] - x86/hyperv: Don't assume cpu_possible_mask is dense (Maxim Levitsky) [RHEL-80095] - hyperv: Remove the now unused hyperv-tlfs.h files (Maxim Levitsky) [RHEL-80095] - hyperv: Switch from hyperv-tlfs.h to hyperv/hvhdk.h (Maxim Levitsky) [RHEL-80095] - hyperv: Add new Hyper-V headers in include/hyperv (Maxim Levitsky) [RHEL-80095] - hyperv: Clean up unnecessary #includes (Maxim Levitsky) [RHEL-80095] - hyperv: Move hv_connection_id to hyperv-tlfs.h (Maxim Levitsky) [RHEL-80095] - Drivers: hv: util: Avoid accessing a ringbuffer not initialized yet (Maxim Levitsky) [RHEL-80095] {CVE-2024-55916} - Drivers: hv: util: Don't force error code to ENODEV in util_probe() (Maxim Levitsky) [RHEL-80095] - x86/hyperv: Fix hv tsc page based sched_clock for hibernation (Maxim Levitsky) [RHEL-80095] - scsi: fnic: Fix missing DMA mapping error in fnic_send_frame() (Karan Kumar) [RHEL-95446] - scsi: fnic: Set appropriate logging level for log message (Karan Kumar) [RHEL-95446] - scsi: fnic: Add and improve logs in FDMI and FDMI ABTS paths (Karan Kumar) [RHEL-95446] - scsi: fnic: Turn off FDMI ACTIVE flags on link down (Karan Kumar) [RHEL-95446] - scsi: fnic: Fix crash in fnic_wq_cmpl_handler when FDMI times out (Karan Kumar) [RHEL-95446] - spec: fix spec warning for /usr/include/ynl (Alexandra Hájková) [RHEL-101712] - nvme: avoid creating multipath sysfs group under namespace path devices (Maurizio Lombardi) [RHEL-95382] - nvme-pci: acquire cq_poll_lock in nvme_poll_irqdisable (Maurizio Lombardi) [RHEL-95382] - nvme-pci: make nvme_pci_npages_prp() __always_inline (Maurizio Lombardi) [RHEL-95382] - nvme: unblock ctrl state transition for firmware update (Maurizio Lombardi) [RHEL-95382] - nvmet-tcp: don't restore null sk_state_change (Maurizio Lombardi) [RHEL-95382] - nvmet-tcp: select CONFIG_TLS from CONFIG_NVME_TARGET_TCP_TLS (Maurizio Lombardi) [RHEL-95382] - nvme-tcp: select CONFIG_TLS from CONFIG_NVME_TCP_TLS (Maurizio Lombardi) [RHEL-95382] - nvme-tcp: fix premature queue removal and I/O failover (Maurizio Lombardi) [RHEL-95382] - nvme-pci: add quirks for WDC Blue SN550 15b7:5009 (Maurizio Lombardi) [RHEL-95382] - nvme-pci: add quirks for device 126f:1001 (Maurizio Lombardi) [RHEL-95382] - nvme-pci: fix queue unquiesce check on slot_reset (Maurizio Lombardi) [RHEL-95382] - nvmet: fix out-of-bounds access in nvmet_enable_port (Maurizio Lombardi) [RHEL-95382] - nvme-multipath: sysfs links may not be created for devices (Maurizio Lombardi) [RHEL-95382] - nvme: fixup scan failure for non-ANA multipath controllers (Maurizio Lombardi) [RHEL-95382] - nvme: multipath: fix return value of nvme_available_path (Maurizio Lombardi) [RHEL-95382] - nvme: re-read ANA log page after ns scan completes (Maurizio Lombardi) [RHEL-95382] - nvme: requeue namespace scan on missed AENs (Maurizio Lombardi) [RHEL-95382] - nvme-pci: skip nvme_write_sq_db on empty rqlist (Maurizio Lombardi) [RHEL-95382] - nvme/ioctl: move fixed buffer lookup to nvme_uring_cmd_io() (Maurizio Lombardi) [RHEL-95382] - nvme/ioctl: move blk_mq_free_request() out of nvme_map_user_request() (Maurizio Lombardi) [RHEL-95382] - nvme/ioctl: don't warn on vectorized uring_cmd with fixed buffer (Maurizio Lombardi) [RHEL-95382] - nvme: convert timeouts to secs_to_jiffies() (Maurizio Lombardi) [RHEL-95382] - nvmet-fc: Remove unused functions (Maurizio Lombardi) [RHEL-95382] - nvme-pci: remove stale comment (Maurizio Lombardi) [RHEL-95382] - nvme-fc: Utilise min3() to simplify queue count calculation (Maurizio Lombardi) [RHEL-95382] - nvme-multipath: Add visibility for queue-depth io-policy (Maurizio Lombardi) [RHEL-95382] - nvme-multipath: Add visibility for numa io-policy (Maurizio Lombardi) [RHEL-95382] - nvme-multipath: Add visibility for round-robin io-policy (Maurizio Lombardi) [RHEL-95382] - nvme: map uring_cmd data even if address is 0 (Maurizio Lombardi) [RHEL-95382] - io_uring/nvme: pass issue_flags to io_uring_cmd_import_fixed() (Maurizio Lombardi) [RHEL-95382] - sunrpc: handle SVC_GARBAGE during svc auth processing as auth error (CKI Backport Bot) [RHEL-101330] {CVE-2025-38089} - net: fix udp gso skb_segment after pull from frag_list (Paolo Abeni) [RHEL-96626] - net: ipv6: fix UDPv6 GSO segmentation with NAT (Paolo Abeni) [RHEL-96626] - softirq: use bit waits instead of var waits. (Phil Auld) [RHEL-96261] - sched: add wait_var_event_io() (Phil Auld) [RHEL-96261] - sched: Add wait/wake interface for variable updated under a lock. (Phil Auld) [RHEL-96261] - sched: Add test_and_clear_wake_up_bit() and atomic_dec_and_wake_up() (Phil Auld) [RHEL-96261] - sched: Document wait_var_event() family of functions and wake_up_var() (Phil Auld) [RHEL-96261] - sched: Improve documentation for wake_up_bit/wait_on_bit family of functions (Phil Auld) [RHEL-96261] - sched: change wake_up_bit() and related function to expect unsigned long * (Phil Auld) [RHEL-96261] - net-timestamp: COMPLETION timestamp on packet tx completion (Petr Oros) [RHEL-100002] - net: skb: free up one bit in tx_flags (Petr Oros) [RHEL-100002] - selftests/bpf: Add simple bpf tests in the tx path for timestamping feature (Petr Oros) [RHEL-100002] - bpf: Support selective sampling for bpf timestamping (Petr Oros) [RHEL-100002] - bpf: Add BPF_SOCK_OPS_TSTAMP_SENDMSG_CB callback (Petr Oros) [RHEL-100002] - bpf: Add BPF_SOCK_OPS_TSTAMP_ACK_CB callback (Petr Oros) [RHEL-100002] - bpf: Add BPF_SOCK_OPS_TSTAMP_SND_HW_CB callback (Petr Oros) [RHEL-100002] - bpf: Add BPF_SOCK_OPS_TSTAMP_SND_SW_CB callback (Petr Oros) [RHEL-100002] - bpf: Add BPF_SOCK_OPS_TSTAMP_SCHED_CB callback (Petr Oros) [RHEL-100002] - net-timestamp: Prepare for isolating two modes of SO_TIMESTAMPING (Petr Oros) [RHEL-100002] - bpf: Disable unsafe helpers in TX timestamping callbacks (Petr Oros) [RHEL-100002] - bpf: Prevent unsafe access to the sock fields in the BPF timestamping callback (Petr Oros) [RHEL-100002] - bpf: Prepare the sock_ops ctx and call bpf prog for TX timestamping (Petr Oros) [RHEL-100002] - bpf: Add networking timestamping support to bpf_get/setsockopt() (Petr Oros) [RHEL-100002] - selftests: txtimestamp: add SCM_TS_OPT_ID test (Petr Oros) [RHEL-100002] - net_tstamp: add SCM_TS_OPT_ID for RAW sockets (Petr Oros) [RHEL-100002] - net_tstamp: add SCM_TS_OPT_ID to provide OPT_ID in control message (Petr Oros) [RHEL-100002] - selftests: netfilter: nft_concat_range.sh: add datapath check for map fill bug (CKI Backport Bot) [RHEL-99477] - selftests: netfilter: nft_concat_range.sh: prefer per element counters for testing (CKI Backport Bot) [RHEL-99477] - netfilter: nf_set_pipapo_avx2: fix initial map fill (CKI Backport Bot) [RHEL-99477] - selftests: netfilter: nft_concat_range.sh: add coverage for 4bit group representation (CKI Backport Bot) [RHEL-99477] - netfilter: nft_set_pipapo: clamp maximum map bucket size to INT_MAX (CKI Backport Bot) [RHEL-99477] - netfilter: nft_set_pipapo: prevent overflow in lookup table allocation (CKI Backport Bot) [RHEL-99477] - netfilter: nft_inner: Use nested-BH locking for nft_pcpu_tun_ctx (CKI Backport Bot) [RHEL-99473] - netfilter: nft_tunnel: fix geneve_opt dump (CKI Backport Bot) [RHEL-99473] - netfilter: nft_quota: match correctly when the quota just depleted (CKI Backport Bot) [RHEL-99473] - netfilter: nft_set_hash: GC reaps elements with conncount for dynamic sets only (CKI Backport Bot) [RHEL-99473] - netfilter: nf_tables: don't unregister hook when table is dormant (CKI Backport Bot) [RHEL-99473] - redhat/configs: enable CONFIG_PT_RECLAIM (Luiz Capitulino) [RHEL-78258] - mm: pgtable: fix incorrect reclaim of non-empty PTE pages (Luiz Capitulino) [RHEL-78258] - x86: select ARCH_SUPPORTS_PT_RECLAIM if X86_64 (Luiz Capitulino) [RHEL-78258] - x86: mm: free page table pages by RCU instead of semi RCU (Luiz Capitulino) [RHEL-78258] - mm: pgtable: reclaim empty PTE page in madvise(MADV_DONTNEED) (Luiz Capitulino) [RHEL-78258] - mm: make zap_pte_range() handle full within-PMD range (Luiz Capitulino) [RHEL-78258] - mm: do_zap_pte_range: return any_skipped information to the caller (Luiz Capitulino) [RHEL-78258] - mm: zap_install_uffd_wp_if_needed: return whether uffd-wp pte has been re-installed (Luiz Capitulino) [RHEL-78258] - mm: skip over all consecutive none ptes in do_zap_pte_range() (Luiz Capitulino) [RHEL-78258] - mm: introduce do_zap_pte_range() (Luiz Capitulino) [RHEL-78258] - mm: introduce zap_nonpresent_ptes() (Luiz Capitulino) [RHEL-78258] - mm: userfaultfd: recheck dst_pmd entry in move_pages_pte() (Luiz Capitulino) [RHEL-78258] - mm: khugepaged: recheck pmd state in retract_page_tables() (Luiz Capitulino) [RHEL-78258] - docs/mm: add VMA locks documentation (Luiz Capitulino) [RHEL-78258] - redhat/configs: enable CONFIG_TCG_SVSM (Stefano Garzarella) [RHEL-92271] - x86/sev: Register tpm-svsm platform device (Stefano Garzarella) [RHEL-92271] - tpm: Add SNP SVSM vTPM driver (Stefano Garzarella) [RHEL-92271] - svsm: Add header with SVSM_VTPM_CMD helpers (Stefano Garzarella) [RHEL-92271] - x86/sev: Add SVSM vTPM probe/send_command functions (Stefano Garzarella) [RHEL-92271] - KVM: arm64: VHE: Synchronize CPTR trap deactivation (Sebastian Ott) [RHEL-92805] - KVM: arm64: VHE: Synchronize restore of host debug registers (Sebastian Ott) [RHEL-92805] - KVM: arm64: Explicitly treat routing entry type changes as changes (Sebastian Ott) [RHEL-92805] - KVM: arm64: vgic-init: Plug vCPU vs. VGIC creation race (Sebastian Ott) [RHEL-92805] - KVM: arm64: Unmap vLPIs affected by changes to GSI routing information (Sebastian Ott) [RHEL-92805] - KVM: arm64: Resolve vLPI by host IRQ in vgic_v4_unset_forwarding() (Sebastian Ott) [RHEL-92805] - KVM: arm64: Protect vLPI translation with vgic_irq::irq_lock (Sebastian Ott) [RHEL-92805] - KVM: arm64: Use lock guard in vgic_v4_set_forwarding() (Sebastian Ott) [RHEL-92805] - arm64: Add override for MPAM (Sebastian Ott) [RHEL-92805] - KVM: arm64: Drop sort_memblock_regions() (Sebastian Ott) [RHEL-92805] - KVM: arm64: Switch to use hrtimer_setup() (Sebastian Ott) [RHEL-92805] - tools headers UAPI: Sync linux/kvm.h with the kernel sources (Sebastian Ott) [RHEL-92805] - KVM: selftests: Confirm exposing MTE_frac does not break migration (Sebastian Ott) [RHEL-92805] - KVM: arm64: Make MTE_frac masking conditional on MTE capability (Sebastian Ott) [RHEL-92805] - arm64/sysreg: Expose MTE_frac so that it is visible to KVM (Sebastian Ott) [RHEL-92805] - redhat/configs: Enable CONFIG_AMPERE_ERRATUM_AC04_CPU_23 (Sebastian Ott) [RHEL-92805] - arm64: sysreg: Drag linux/kconfig.h to work around vdso build issue (Sebastian Ott) [RHEL-92805] - arm64: errata: Work around AmpereOne's erratum AC04_CPU_23 (Sebastian Ott) [RHEL-92805] - arm64/boot: Enable EL2 requirements for FEAT_PMUv3p9 (Sebastian Ott) [RHEL-92805] - arm64/sysreg: Add register fields for HFGWTR2_EL2 (Sebastian Ott) [RHEL-92805] - arm64/sysreg: Add register fields for HFGRTR2_EL2 (Sebastian Ott) [RHEL-92805] - arm64/sysreg: Add register fields for HFGITR2_EL2 (Sebastian Ott) [RHEL-92805] - arm64/sysreg: Add register fields for HDFGWTR2_EL2 (Sebastian Ott) [RHEL-92805] - arm64/sysreg: Add register fields for HDFGRTR2_EL2 (Sebastian Ott) [RHEL-92805] - arm64/sysreg: Update register fields for ID_AA64MMFR0_EL1 (Sebastian Ott) [RHEL-92805] - KVM: arm64: Allow userspace to request KVM_ARM_VCPU_EL2* (Sebastian Ott) [RHEL-92805] - KVM: arm64: Document NV caps and vcpu flags (Sebastian Ott) [RHEL-92805] - KVM: arm64: selftests: Determine effective counter width in arch_timer_edge_cases (Sebastian Ott) [RHEL-84459 RHEL-92805] - KVM: arm64: selftests: Fix xVAL init in arch_timer_edge_cases (Sebastian Ott) [RHEL-92805] - KVM: arm64: selftests: Fix thread migration in arch_timer_edge_cases (Sebastian Ott) [RHEL-92805] - KVM: arm64: selftests: Fix help text for arch_timer_edge_cases (Sebastian Ott) [RHEL-92805] - smccc: kvm_guest: Align with DISCOVER_IMPL_CPUS ABI (Sebastian Ott) [RHEL-92805] - arm64: Rework checks for broken Cavium HW in the PI code (Sebastian Ott) [RHEL-92805] - KVM: arm64: selftest: Don't try to disable AArch64 support (Sebastian Ott) [RHEL-92805] - KVM: arm64: Fix memory check in host_stage2_set_owner_locked() (Sebastian Ott) [RHEL-92805] - KVM: arm64: Kill HCRX_HOST_FLAGS (Sebastian Ott) [RHEL-92805] - KVM: arm64: Properly save/restore HCRX_EL2 (Sebastian Ott) [RHEL-92805] - KVM: arm64: Prevent userspace from disabling AArch64 support at any virtualisable EL (Sebastian Ott) [RHEL-92805] - KVM: arm64: Force HCR_EL2.xMO to 1 at all times in VHE mode (Sebastian Ott) [RHEL-92805] - KVM: arm64: Fix uninitialized memcache pointer in user_mem_abort() (Sebastian Ott) [RHEL-88996 RHEL-92805] - KVM: arm64: Use acquire/release to communicate FF-A version negotiation (Sebastian Ott) [RHEL-92805] - KVM: arm64: Don't translate FAR if invalid/unsafe (Sebastian Ott) [RHEL-92805] - arm64: Convert HPFAR_EL2 to sysreg table (Sebastian Ott) [RHEL-92805] - KVM: arm64: Only read HPFAR_EL2 when value is architecturally valid (Sebastian Ott) [RHEL-92805] - KVM: arm64: Tear down vGIC on failed vCPU creation (Sebastian Ott) [RHEL-92805] - KVM: arm64: PMU: Reload when resetting (Sebastian Ott) [RHEL-92805] - KVM: arm64: PMU: Reload when user modifies registers (Sebastian Ott) [RHEL-92805] - KVM: arm64: PMU: Fix SET_ONE_REG for vPMC regs (Sebastian Ott) [RHEL-92805] - KVM: arm64: PMU: Assume PMU presence in pmu-emul.c (Sebastian Ott) [RHEL-92805] - KVM: arm64: PMU: Set raw values from user to PM{C,I}NTEN{SET,CLR}, PMOVS{SET,CLR} (Sebastian Ott) [RHEL-92805] - KVM: arm64: Create each pKVM hyp vcpu after its corresponding host vcpu (Sebastian Ott) [RHEL-92805] - KVM: arm64: Factor out pKVM hyp vcpu creation to separate function (Sebastian Ott) [RHEL-92805] - KVM: arm64: Initialize HCRX_EL2 traps in pKVM (Sebastian Ott) [RHEL-92805] - KVM: arm64: Factor out setting HCRX_EL2 traps into separate function (Sebastian Ott) [RHEL-92805] - KVM: arm64: Count pKVM stage-2 usage in secondary pagetable stats (Sebastian Ott) [RHEL-92805] - KVM: arm64: Distinct pKVM teardown memcache for stage-2 (Sebastian Ott) [RHEL-92805] - KVM: arm64: Add flags to kvm_hyp_memcache (Sebastian Ott) [RHEL-92805] - KVM: arm64: selftests: Test that TGRAN*_2 fields are writable (Sebastian Ott) [RHEL-92805] - KVM: arm64: Allow userspace to write ID_AA64MMFR0_EL1.TGRAN*_2 (Sebastian Ott) [RHEL-92805] - KVM: arm64: ptdump: Test PMD_TYPE_MASK for block mapping (Sebastian Ott) [RHEL-92805] - KVM: arm64: Provide 1 event counter on IMPDEF hardware (Sebastian Ott) [RHEL-92805] - KVM: arm64: Remap PMUv3 events onto hardware (Sebastian Ott) [RHEL-92805] - KVM: arm64: Advertise PMUv3 if IMPDEF traps are present (Sebastian Ott) [RHEL-92805] - KVM: arm64: Compute synthetic sysreg ESR for Apple PMUv3 traps (Sebastian Ott) [RHEL-92805] - KVM: arm64: Move PMUVer filtering into KVM code (Sebastian Ott) [RHEL-92805] - KVM: arm64: Use guard() to cleanup usage of arm_pmus_lock (Sebastian Ott) [RHEL-92805] - KVM: arm64: Drop kvm_arm_pmu_available static key (Sebastian Ott) [RHEL-92805] - KVM: arm64: Use a cpucap to determine if system supports FEAT_PMUv3 (Sebastian Ott) [RHEL-92805] - KVM: arm64: Always support SW_INCR PMU event (Sebastian Ott) [RHEL-92805] - KVM: arm64: Compute PMCEID from arm_pmu's event bitmaps (Sebastian Ott) [RHEL-92805] - KVM: arm64: Fix documentation for KVM_CAP_ARM_WRITABLE_IMP_ID_REGS (Sebastian Ott) [RHEL-92805] - KVM: arm64: Copy MIDR_EL1 into hyp VM when it is writable (Sebastian Ott) [RHEL-92805] - KVM: arm64: Copy guest CTR_EL0 into hyp VM (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Fail KVM init if asking for NV without GICv3 (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Allow userland to set VGIC maintenance IRQ (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Fold GICv3 host trapping requirements into guest setup (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Propagate used_lrs between L1 and L0 contexts (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Request vPE doorbell upon nested ERET to L2 (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Respect virtual HCR_EL2.TWx setting (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Add Maintenance Interrupt emulation (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Handle L2->L1 transition on interrupt injection (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Nested GICv3 emulation (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Sanitise ICH_HCR_EL2 accesses (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Plumb handling of GICv3 EL2 accesses (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Add ICH_*_EL2 registers to vpcu_sysreg (Sebastian Ott) [RHEL-92805] - KVM: arm64: nv: Load timer before the GIC (Sebastian Ott) [RHEL-92805] - arm64: sysreg: Add layout for ICH_MISR_EL2 (Sebastian Ott) [RHEL-92805] - arm64: sysreg: Add layout for ICH_VTR_EL2 (Sebastian Ott) [RHEL-92805] - arm64: sysreg: Add layout for ICH_HCR_EL2 (Sebastian Ott) [RHEL-92805] - KVM: selftests: Add test for KVM_REG_ARM_VENDOR_HYP_BMAP_2 (Sebastian Ott) [RHEL-92805] - smccc/kvm_guest: Enable errata based on implementation CPUs (Sebastian Ott) [RHEL-92805] - arm64: Make  _midr_in_range_list() an exported function (Sebastian Ott) [RHEL-92805] - KVM: arm64: Introduce KVM_REG_ARM_VENDOR_HYP_BMAP_2 (Sebastian Ott) [RHEL-92805] - KVM: arm64: Specify hypercall ABI for retrieving target implementations (Sebastian Ott) [RHEL-92805] - arm64: Modify _midr_range() functions to read MIDR/REVIDR internally (Sebastian Ott) [RHEL-92805] - KVM: arm64: Document ordering requirements for irqbypass (Sebastian Ott) [RHEL-92805] - KVM: arm64: vgic-v4: Fall back to software irqbypass if LPI not found (Sebastian Ott) [RHEL-92805] - KVM: arm64: vgic-v4: Only WARN for HW IRQ mismatch when unmapping vLPI (Sebastian Ott) [RHEL-92805] - KVM: arm64: vgic-v4: Only attempt vLPI mapping for actual MSIs (Sebastian Ott) [RHEL-92805] - KVM: selftests: arm64: Test writes to MIDR,REVIDR,AIDR (Sebastian Ott) [RHEL-92805] - KVM: arm64: Allow userspace to change the implementation ID registers (Sebastian Ott) [RHEL-92805] - KVM: arm64: Load VPIDR_EL2 with the VM's MIDR_EL1 value (Sebastian Ott) [RHEL-92805] - KVM: arm64: Maintain per-VM copy of implementation ID regs (Sebastian Ott) [RHEL-92805] - KVM: arm64: Set HCR_EL2.TID1 unconditionally (Sebastian Ott) [RHEL-92805] - KVM: arm64: Advertise FEAT_ECV when possible (Sebastian Ott) [RHEL-92805] - KVM: arm64: Make ID_AA64MMFR4_EL1.NV_frac writable (Sebastian Ott) [RHEL-92805] - KVM: arm64: Allow userspace to limit NV support to nVHE (Sebastian Ott) [RHEL-92805] - KVM: arm64: Move NV-specific capping to idreg sanitisation (Sebastian Ott) [RHEL-92805] - KVM: arm64: Enforce NV limits on a per-idregs basis (Sebastian Ott) [RHEL-92805] - KVM: arm64: Make ID_REG_LIMIT_FIELD_ENUM() more widely available (Sebastian Ott) [RHEL-92805] - KVM: arm64: Consolidate idreg callbacks (Sebastian Ott) [RHEL-92805] - KVM: arm64: Advertise NV2 in the boot messages (Sebastian Ott) [RHEL-92805] - KVM: arm64: Mark HCR.EL2.{NV*,AT} RES0 when ID_AA64MMFR4_EL1.NV_frac is 0 (Sebastian Ott) [RHEL-92805] - KVM: arm64: Mark HCR.EL2.E2H RES0 when ID_AA64MMFR1_EL1.VH is zero (Sebastian Ott) [RHEL-92805] - KVM: arm64: Hide ID_AA64MMFR2_EL1.NV from guest and userspace (Sebastian Ott) [RHEL-92805] - arm64: cpufeature: Handle NV_frac as a synonym of NV2 (Sebastian Ott) [RHEL-92805] - KVM: arm64: Eagerly switch ZCR_EL{1,2} (Sebastian Ott) [RHEL-92805] - KVM: arm64: Mark some header functions as inline (Sebastian Ott) [RHEL-92805] - KVM: arm64: Refactor exit handlers (Sebastian Ott) [RHEL-92805] - KVM: arm64: Refactor CPTR trap deactivation (Sebastian Ott) [RHEL-92805] - KVM: arm64: Remove VHE host restore of CPACR_EL1.SMEN (Sebastian Ott) [RHEL-92805] - KVM: arm64: Remove VHE host restore of CPACR_EL1.ZEN (Sebastian Ott) [RHEL-92805] - KVM: arm64: Remove host FPSIMD saving for non-protected KVM (Sebastian Ott) [RHEL-92805] - KVM: arm64: Drop pkvm_mem_transition for host/hyp donations (Sebastian Ott) [RHEL-92805] - KVM: arm64: Drop pkvm_mem_transition for host/hyp sharing (Sebastian Ott) [RHEL-92805] - KVM: arm64: Drop pkvm_mem_transition for FF-A (Sebastian Ott) [RHEL-92805] - Revert "net: skb: introduce and use a single page frag cache" (Paolo Abeni) [RHEL-90322] - net: allow small head cache usage with large MAX_SKB_FRAGS values (Paolo Abeni) [RHEL-90322] - net: avoid unconditionally touching sk_tsflags on RX (Paolo Abeni) [RHEL-90322] - io_uring/eventfd: ensure io_eventfd_signal() defers another RCU period (Jeff Moyer) [RHEL-75487] {CVE-2025-21655} - io_uring/eventfd: abstract out ev_fd put helper (Jeff Moyer) [RHEL-75487] - xen: balloon: update the NR_BALLOON_PAGES state (Nico Pache) [RHEL-70690] - hv_balloon: update the NR_BALLOON_PAGES state (Nico Pache) [RHEL-70690] - balloon_compaction: update the NR_BALLOON_PAGES state (Nico Pache) [RHEL-70690] - meminfo: add a per node counter for balloon drivers (Nico Pache) [RHEL-70690] - net: use sock_gen_put() when sk_state is TCP_TIME_WAIT (Paolo Abeni) [RHEL-96601] - block: use plug request list tail for one-shot backmerge attempt (Ming Lei) [RHEL-96294] - exfat: fix random stack corruption after get_block (CKI Backport Bot) [RHEL-99440] {CVE-2025-22036} - rtmutex_api: provide correct extern functions (Maxim Levitsky) [RHEL-74410] - rust: add helper for mutex_trylock (Maxim Levitsky) [RHEL-74410] - RISC-V: KVM: use kvm_trylock_all_vcpus when locking all vCPUs (Maxim Levitsky) [RHEL-74410] - KVM: arm64: use kvm_trylock_all_vcpus when locking all vCPUs (Maxim Levitsky) [RHEL-74410] - x86: KVM: SVM: use kvm_lock_all_vcpus instead of a custom implementation (Maxim Levitsky) [RHEL-74410] - KVM: add kvm_lock_all_vcpus and kvm_trylock_all_vcpus (Maxim Levitsky) [RHEL-74410] - locking/mutex: implement mutex_lock_killable_nest_lock (Maxim Levitsky) [RHEL-74410] - locking/mutex: implement mutex_trylock_nested (Maxim Levitsky) [RHEL-74410] - cdc_ether|r8152: ThinkPad Hybrid USB-C/A Dock quirk (CKI Backport Bot) [RHEL-72661] - selftests: bonding: add ipvlan over bond testing (CKI Backport Bot) [RHEL-96617] - selftests: net: lib: Add a couple autodefer helpers (CKI Backport Bot) [RHEL-96617] - selftests: net: lib: Add several autodefer helpers (CKI Backport Bot) [RHEL-96617] - selftests: net: lib: Rename ip_link_master() to ip_link_set_master() (CKI Backport Bot) [RHEL-96617] - bonding: Fix multiple long standing offload races (Hangbin Liu) [RHEL-73802] - bonding: Mark active offloaded xfrm_states (Hangbin Liu) [RHEL-73802] - xfrm: Add explicit dev to .xdo_dev_state_{add,delete,free} (Hangbin Liu) [RHEL-73802] - xfrm: Remove unneeded device check from validate_xmit_xfrm (Hangbin Liu) [RHEL-73802] - xfrm: Use xdo.dev instead of xdo.real_dev (Hangbin Liu) [RHEL-73802] - net/mlx5: Avoid using xso.real_dev unnecessarily (Hangbin Liu) [RHEL-73802] - xfrm: always initialize offload path (Hangbin Liu) [RHEL-73802] - xfrm: check for PMTU in tunnel mode for packet offload (Hangbin Liu) [RHEL-73802] - xfrm: provide common xdo_dev_offload_ok callback implementation (Hangbin Liu) [RHEL-73802] - xfrm: rely on XFRM offload (Hangbin Liu) [RHEL-73802 RHEL-97184] - xfrm: simplify SA initialization routine (Hangbin Liu) [RHEL-73802] - xfrm: delay initialization of offload path till its actually requested (Hangbin Liu) [RHEL-73802] - ynl: devlink: add missing board-serial-number (Petr Oros) [RHEL-75601] - devlink: fix xa_alloc_cyclic() error handling (Petr Oros) [RHEL-75601] - devlink: add devl guard (Petr Oros) [RHEL-75601] - pldmfw: enable selected component update (Petr Oros) [RHEL-75601] - devlink: Improve the port attributes description (Petr Oros) [RHEL-75601] - devlink: add devlink_fmsg_dump_skb() function (Petr Oros) [RHEL-75601] - devlink: add devlink_fmsg_put() macro (Petr Oros) [RHEL-75601] - devlink: Add documentation for OcteonTx2 AF (Petr Oros) [RHEL-75601] - devlink: remove unused devlink_resource_register() (Petr Oros) [RHEL-75601] - devlink: remove unused devlink_resource_occ_get_register() and _unregister() (Petr Oros) [RHEL-75601] - net: dsa: replace devlink resource registration calls by devl_ variants (Petr Oros) [RHEL-75601] - devlink: region: snapshot IDs: consolidate error values (Petr Oros) [RHEL-75601] - devlink: devl_resource_register(): differentiate error codes (Petr Oros) [RHEL-75601] - devlink: use devlink_nl_put_u64() helper (Petr Oros) [RHEL-75601] - devlink: introduce devlink_nl_put_u64() (Petr Oros) [RHEL-75601] - tools: ynl-gen: use names of constants in generated limits (Petr Oros) [RHEL-75601] - tools: ynl-gen: refactor check validation for TypeBinary (Petr Oros) [RHEL-75601] - ice: Add correct PHY lane assignment (Petr Oros) [RHEL-74388] - ice: Fix ETH56G FC-FEC Rx offset value (Petr Oros) [RHEL-74388] - ice: Fix quad registers read on E825 (Petr Oros) [RHEL-74388] - ice: Fix E825 initialization (Petr Oros) [RHEL-74388] - loop: move lo_set_size() out of queue freeze (Ming Lei) [RHEL-88159] - scsi: qla2xxx: Update version to 10.02.09.400-k (Nilesh Javali) [RHEL-90558] - scsi: qla2xxx: Supported speed displayed incorrectly for VPorts (Nilesh Javali) [RHEL-90558] - scsi: qla2xxx: Fix NVMe and NPIV connect issue (Nilesh Javali) [RHEL-90558] - scsi: qla2xxx: Remove check req_sg_cnt should be equal to rsp_sg_cnt (Nilesh Javali) [RHEL-90558] - scsi: qla2xxx: Move FCE Trace buffer allocation to user control (Nilesh Javali) [RHEL-90558] - scsi: qla2xxx: Fix abort in bsg timeout (Nilesh Javali) [RHEL-90558] - ibmvnic: Use kernel helpers for hex dumps (CKI Backport Bot) [RHEL-89030] {CVE-2025-22104} - perf: Fix dangling cgroup pointer in cpuctx (Michael Petlan) [RHEL-78197] - perf/x86/intel: Fix crash in icl_update_topdown_event() (Michael Petlan) [RHEL-78197] - s390/cpumf: Fix double free on error in cpumf_pmu_event_init() (Michael Petlan) [RHEL-78197] - s390/cpum_sf: Simplify release of SDBs and SDBTs (Michael Petlan) [RHEL-78197] - s390/cpum_sf: Fix and protect memory allocation of SDBs with mutex (Michael Petlan) [RHEL-78197] - s390/cpum_sf: Rework call to sf_disable() (Michael Petlan) [RHEL-78197] - s390/cpum_sf: Handle CPU hotplug remove during sampling (Michael Petlan) [RHEL-78197] - s390/cpum_sf: Fix format string in pr_err() (Michael Petlan) [RHEL-78197] - s390/cpum_sf: Use sf_buffer_available() (Michael Petlan) [RHEL-78197] - s390/cpum_sf: Consistently use goto out for function exit (Michael Petlan) [RHEL-78197] - s390/cpum_sf: Do not re-enable event after deletion (Michael Petlan) [RHEL-78197] - s390/cpum_sf: Set bit PMU_F_ENABLED enabled after lpp() invocation (Michael Petlan) [RHEL-78197] - s390/cpum_cf: Correct typo CYLCE (Michael Petlan) [RHEL-78197] - radix-tree: add missing cleanup.h (Michael Petlan) [RHEL-78197] - perf tests metric-only perf stat: Fix tests 84 and 86 s390 (Michael Petlan) [RHEL-78197] - perf trace: Support --summary-mode=cgroup (Michael Petlan) [RHEL-78197] - perf test: Add perf trace summary test (Michael Petlan) [RHEL-78197] - perf trace: Implement syscall summary in BPF (Michael Petlan) [RHEL-78197] - perf trace: Add missing thread__put() in thread__e_machine() (Michael Petlan) [RHEL-78197] - perf trace: Free the files.max entry in files->table (Michael Petlan) [RHEL-78197] - perf trace: Fix leaks of 'struct thread' in set_filter_loop_pids() (Michael Petlan) [RHEL-78197] - perf trace: Fix leaks of 'struct thread' in fprintf_sys_enter() (Michael Petlan) [RHEL-78197] - perf tools: Fix arm64 source package build (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync sound/asound.h with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync linux/prctl.h with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync arch/xtensa/kernel/syscalls/syscall.tbl with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync arch/sparc/kernel/syscalls/syscall.tbl with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync arch/sh/kernel/syscalls/syscall.tbl with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync arch/arm/tools/syscall.tbl with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync arch/x86/entry/syscalls/syscall_32.tbl with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync asm-generic/mman.h with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync asm/cputype.h with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync scripts/syscall.tbl with kernel (Michael Petlan) [RHEL-78197] - tools headers UAPI: sync asm/kvm.h with kernel (Michael Petlan) [RHEL-78197] - perf tools: Fix in-source libperf build (Michael Petlan) [RHEL-78197] - perf tools: Fix arm64 build by generating unistd_64.h (Michael Petlan) [RHEL-78197] - tools headers: Update the syscall table with the kernel sources (Michael Petlan) [RHEL-78197] - perf tools: Remove evsel__handle_error_quirks() (Michael Petlan) [RHEL-78197] - perf libunwind arm64: Fix missing close parens in an if statement (Michael Petlan) [RHEL-78197] - tools headers: Update the uapi/linux/perf_event.h copy with the kernel sources (Michael Petlan) [RHEL-78197] - tools/include: make uapi/linux/types.h usable from assembly (Michael Petlan) [RHEL-78197] - perf bpf-filter: Fix a parsing error with comma (Michael Petlan) [RHEL-78197] - perf report: Fix a memory leak for perf_env on AMD (Michael Petlan) [RHEL-78197] - perf trace: Fix wrong size to bpf_map__update_elem call (Michael Petlan) [RHEL-78197] - perf tools: annotate asm_pure_loop.S (Michael Petlan) [RHEL-78197] - perf python: Fix setup.py mypy errors (Michael Petlan) [RHEL-78197] - perf test: Address attr.py mypy error (Michael Petlan) [RHEL-78197] - perf build: Add pylint build tests (Michael Petlan) [RHEL-78197] - perf build: Add mypy build tests (Michael Petlan) [RHEL-78197] - perf build: Rename TEST_LOGS to SHELL_TEST_LOGS (Michael Petlan) [RHEL-78197] - tools/build: Don't pass test log files to linker (Michael Petlan) [RHEL-78197] - perf bench sched pipe: fix enforced blocking reads in worker_thread (Michael Petlan) [RHEL-78197] - perf build: filter all combinations of -flto for libperl (Michael Petlan) [RHEL-78197] - perf vendor events arm64 AmpereOneX: Fix frontend_bound calculation (Michael Petlan) [RHEL-78197] - perf vendor events arm64: AmpereOne/AmpereOneX: Mark LD_RETIRED impacted by errata (Michael Petlan) [RHEL-78197] - perf trace: Fix evlist memory leak (Michael Petlan) [RHEL-78197] - perf trace: Fix BTF memory leak (Michael Petlan) [RHEL-78197] - perf trace: Make syscall table stable (Michael Petlan) [RHEL-78197] - perf syscalltbl: Mask off ABI type for MIPS system calls (Michael Petlan) [RHEL-78197] - perf build: Remove Makefile.syscalls (Michael Petlan) [RHEL-78197] - perf syscalltbl: Use lookup table containing multiple architectures (Michael Petlan) [RHEL-78197] - perf trace beauty: Add syscalltbl.sh generating all system call tables (Michael Petlan) [RHEL-78197] - perf thread: Add support for reading the e_machine type for a thread (Michael Petlan) [RHEL-78197] - perf dso: Add support for reading the e_machine type for a dso (Michael Petlan) [RHEL-78197] - perf syscalltbl: Remove struct syscalltbl (Michael Petlan) [RHEL-78197] - perf trace: Reorganize syscalls (Michael Petlan) [RHEL-78197] - perf syscalltbl: Remove syscall_table.h (Michael Petlan) [RHEL-78197] - perf dso: kernel-doc for enum dso_binary_type (Michael Petlan) [RHEL-78197] - perf dso: Move libunwind dso_data variables into ifdef (Michael Petlan) [RHEL-78197] - perf report: Disable children column for data type profiling (Michael Petlan) [RHEL-78197] - perf report: Allow hierarchy mode for --children (Michael Petlan) [RHEL-78197] - perf sort: Keep output fields in the same level (Michael Petlan) [RHEL-78197] - libperf: Don't remove -g when EXTRA_CFLAGS are used (Michael Petlan) [RHEL-78197] - perf: intel-tpebs: Fix incorrect usage of zfree() (Michael Petlan) [RHEL-78197] - perf cpumap: Increment reference count for online cpumap (Michael Petlan) [RHEL-78197] - perf dso: fix dso__is_kallsyms() check (Michael Petlan) [RHEL-78197] - perf kwork: Remove unreachable judgments (Michael Petlan) [RHEL-78197] - perf python: Check if there is space to copy all the event (Michael Petlan) [RHEL-78197] - perf python: Don't keep a raw_data pointer to consumed ring buffer space (Michael Petlan) [RHEL-78197] - perf python: Decrement the refcount of just created event on failure (Michael Petlan) [RHEL-78197] - perf python tracepoint.py: Change the COMM using setproctitle if available (Michael Petlan) [RHEL-78197] - perf python: Fixup description of sample.id event member (Michael Petlan) [RHEL-78197] - perf test dso-data: Correctly free test file in read test (Michael Petlan) [RHEL-78197] - perf dso: Use lock annotations to fix asan deadlock (Michael Petlan) [RHEL-78197] - perf mutex: Add annotations for LOCKS_EXCLUDED and LOCKS_RETURNED (Michael Petlan) [RHEL-78197] - perf test: Add pipe output testing for annotate (Michael Petlan) [RHEL-78197] - perf test: Fixes to variable expansion and stdout for diff test (Michael Petlan) [RHEL-78197] - perf libunwind: Fixup conversion perf_sample->user_regs to a pointer (Michael Petlan) [RHEL-78197] - perf script: Update brstack syntax documentation (Michael Petlan) [RHEL-78197] - perf script: Fix typo in branch event mask (Michael Petlan) [RHEL-78197] - perf hist stdio: Do bounds check when printing callchains to avoid UB with new gcc versions (Michael Petlan) [RHEL-78197] - perf units: Fix insufficient array space (Michael Petlan) [RHEL-78197] - perf annotate: Add --code-with-type option. (Michael Petlan) [RHEL-78197] - perf annotate: Implement code + data type annotation (Michael Petlan) [RHEL-78197] - perf annotate: Factor out __hist_entry__get_data_type() (Michael Petlan) [RHEL-78197] - perf annotate: Pass hist_entry to annotate functions (Michael Petlan) [RHEL-78197] - perf annotate: Pass annotation_options to annotation_line__print() (Michael Petlan) [RHEL-78197] - perf annotate: Remove unused len parameter from annotation_line__print() (Michael Petlan) [RHEL-78197] - perf annotate-data: Add annotated_data_type__get_member_name() (Michael Petlan) [RHEL-78197] - perf ftrace: Use atomic inc to update histogram in BPF (Michael Petlan) [RHEL-78197] - perf ftrace: Remove an unnecessary condition check in BPF (Michael Petlan) [RHEL-78197] - perf ftrace: Fix latency stats with BPF (Michael Petlan) [RHEL-78197] - perf test stat: Additional topdown grouping tests (Michael Petlan) [RHEL-78197] - perf x86 evlist: Update comments on topdown regrouping (Michael Petlan) [RHEL-78197] - perf parse-events: Corrections to topdown sorting (Michael Petlan) [RHEL-78197] - perf tools: Improve handling of hybrid PMUs in perf_event_attr__fprintf (Michael Petlan) [RHEL-78197] - perf python tracepoint: Switch to using parse_events (Michael Petlan) [RHEL-78197] - perf python: Add evlist.config to set up record options (Michael Petlan) [RHEL-78197] - perf python: Add evlist all_cpus accessor (Michael Petlan) [RHEL-78197] - perf python: Avoid duplicated code in get_tracepoint_field (Michael Petlan) [RHEL-78197] - perf python: Update ungrouped evsel leader in clone (Michael Petlan) [RHEL-78197] - perf python: Add optional cpus and threads arguments to parse_events (Michael Petlan) [RHEL-78197] - perf python: Add member access to a number of evsel variables (Michael Petlan) [RHEL-78197] - perf python: Add evlist enable and disable methods (Michael Petlan) [RHEL-78197] - perf evlist: Add success path to evlist__create_syswide_maps (Michael Petlan) [RHEL-78197] - perf debug: Avoid stack overflow in recursive error message (Michael Petlan) [RHEL-78197] - perf symbol: Support .gnu_debugdata for symbols (Michael Petlan) [RHEL-78197] - perf tools: Add LZMA decompression from FILE (Michael Petlan) [RHEL-78197] - perf tools: Add dummy functions for !HAVE_LZMA_SUPPORT (Michael Petlan) [RHEL-78197] - perf mem: Don't leak mem event names (Michael Petlan) [RHEL-78197] - perf vendor events riscv: Add SiFive P650 events (Michael Petlan) [RHEL-78197] - perf vendor events riscv: Add SiFive P550 events (Michael Petlan) [RHEL-78197] - perf vendor events riscv: Add SiFive Bullet version 0x0d events (Michael Petlan) [RHEL-78197] - perf vendor events riscv: Add SiFive Bullet version 0x07 events (Michael Petlan) [RHEL-78197] - perf vendor events riscv: Update SiFive Bullet events (Michael Petlan) [RHEL-78197] - perf vendor events riscv: Remove leading zeroes (Michael Petlan) [RHEL-78197] - perf vendor events riscv: Rename U74 to Bullet (Michael Petlan) [RHEL-78197] - perf util: Remove unused perf_config__refresh (Michael Petlan) [RHEL-78197] - perf util: Remove unused perf_pmus__default_pmu_name (Michael Petlan) [RHEL-78197] - perf util: Remove unused perf_data__update_dir (Michael Petlan) [RHEL-78197] - perf util: Remove unused pstack__pop (Michael Petlan) [RHEL-78197] - perf util: Remove unused perf_color_default_config (Michael Petlan) [RHEL-78197] - perf tests: Fix data symbol test with LTO builds (Michael Petlan) [RHEL-78197] - perf report: Fix memory leaks in the hierarchy mode (Michael Petlan) [RHEL-78197] - perf report: Use map_symbol__copy() when copying callchains (Michael Petlan) [RHEL-78197] - perf annotate: Return errors from disasm_line__parse_powerpc() (Michael Petlan) [RHEL-78197] - perf annotate: Add annotation_options.disassembler_used (Michael Petlan) [RHEL-78197] - perf report: Do not process non-JIT BPF ksymbol events (Michael Petlan) [RHEL-78197] - perf test: Fix leak in "Synthesize attr update" test (Michael Petlan) [RHEL-78197] - perf machine: Fix insertion of PERF_RECORD_KSYMBOL related kernel maps (Michael Petlan) [RHEL-78197] - perf maps: Add missing map__set_kmap_maps() when replacing a kernel map (Michael Petlan) [RHEL-78197] - perf maps: Fixup maps_by_name when modifying maps_by_address (Michael Petlan) [RHEL-78197] - perf maps: Set the kmaps for newly created/added kernel maps (Michael Petlan) [RHEL-78197] - perf script: Fix output type for dynamically allocated core PMU's (Michael Petlan) [RHEL-78197] - perf bench: Fix perf bench syscall loop count (Michael Petlan) [RHEL-78197] - perf test: Simplify data symbol test (Michael Petlan) [RHEL-78197] - perf test: Add timeout to datasym workload (Michael Petlan) [RHEL-78197] - perf test: Add trace record and replay test (Michael Petlan) [RHEL-78197] - perf test: Skip perf trace tests when running as non-root (Michael Petlan) [RHEL-78197] - perf test trace_btf_general: Fix shellcheck warning (Michael Petlan) [RHEL-78197] - perf trace: Add tests for BTF general augmentation (Michael Petlan) [RHEL-78197] - perf test: Skip perf probe tests when running as non-root (Michael Petlan) [RHEL-78197] - perf test: Add --metric-only to perf stat output tests (Michael Petlan) [RHEL-78197] - perf arm-spe: Support previous branch target (PBT) address (Michael Petlan) [RHEL-78197] - perf arm-spe: Add branch stack (Michael Petlan) [RHEL-78197] - perf arm-spe: Set sample flags with supplement info (Michael Petlan) [RHEL-78197] - perf arm-spe: Fill branch operations and events to record (Michael Petlan) [RHEL-78197] - perf arm-spe: Decode transactional event (Michael Petlan) [RHEL-78197] - perf arm-spe: Extend branch operations (Michael Petlan) [RHEL-78197] - perf arm-spe: Fix load-store operation checking (Michael Petlan) [RHEL-78197] - perf script: Add not taken event for branch stack (Michael Petlan) [RHEL-78197] - perf script: Add not taken event for branches (Michael Petlan) [RHEL-78197] - perf script: Separate events from branch types (Michael Petlan) [RHEL-78197] - perf script: Refactor sample_flags_to_name() function (Michael Petlan) [RHEL-78197] - perf script: Make printing flags reliable (Michael Petlan) [RHEL-78197] - perf stat: Fix non-uniquified hybrid legacy events (Michael Petlan) [RHEL-78197] - perf tools: Skip BPF sideband event for userspace profiling (Michael Petlan) [RHEL-78197] - perf test: Fix spelling mistake "sythesizing" -> "synthesizing" (Michael Petlan) [RHEL-78197] - perf build: Fix in-tree build due to symbolic link (Michael Petlan) [RHEL-78197] - perf arm-spe: Report error if set frequency (Michael Petlan) [RHEL-78197] - perf lock: Report owner stack in usermode (Michael Petlan) [RHEL-78197] - perf lock: Make rb_tree helper functions generic (Michael Petlan) [RHEL-78197] - perf lock: Retrieve owner callstack in bpf program (Michael Petlan) [RHEL-78197] - perf lock: Add bpf maps for owner stack tracing (Michael Petlan) [RHEL-78197] - perf cpumap: Reduce cpu size from int to int16_t (Michael Petlan) [RHEL-78197] - perf list: Document -v option deduplication feature (Michael Petlan) [RHEL-78197] - perf pmu: Don't double count common sysfs and json events (Michael Petlan) [RHEL-78197] - perf ftrace latency: allow to hide empty buckets (Michael Petlan) [RHEL-78197] - perf ftrace latency: variable histogram buckets (Michael Petlan) [RHEL-78197] - perf annotate-data: Handle direct use of stack pointer without fbreg (Michael Petlan) [RHEL-78197] - perf report: Fix sample number stats for branch entry mode (Michael Petlan) [RHEL-78197] - perf machine: Reuse module path buffer (Michael Petlan) [RHEL-78197] - perf hwmon_pmu: Switch event discovery to io_dir__readdir (Michael Petlan) [RHEL-78197] - perf parse-events: Switch tracepoints to io_dir__readdir (Michael Petlan) [RHEL-78197] - perf events: Remove scandir in thread synthesis (Michael Petlan) [RHEL-78197] - perf header: Switch mem topology to io_dir__readdir (Michael Petlan) [RHEL-78197] - perf maps: Switch modules tree walk to io_dir__readdir (Michael Petlan) [RHEL-78197] - perf parse-events: Tidy name token matching (Michael Petlan) [RHEL-78197] - perf tools: Improve startup time by reducing unnecessary stat() calls (Michael Petlan) [RHEL-78197] - perf report: Fix input reload/switch with symbol sort key (Michael Petlan) [RHEL-78197] - perf report: Support switching data w/ and w/o callchains (Michael Petlan) [RHEL-78197] - perf report: Switch data file correctly in TUI (Michael Petlan) [RHEL-78197] - perf tools: Fix up some comments and code to properly use the event_source bus (Michael Petlan) [RHEL-78197] - perf list: Also append PMU name in verbose mode (Michael Petlan) [RHEL-78197] - perf vendor events arm64: Fix incorrect CPU_CYCLE in metrics expr (Michael Petlan) [RHEL-78197] - perf hist: Shrink struct hist_entry size (Michael Petlan) [RHEL-78197] - perf test: Add tests for latency and parallelism profiling (Michael Petlan) [RHEL-78197] - perf report: Add latency and parallelism profiling documentation (Michael Petlan) [RHEL-78197] - perf report: Add --latency flag (Michael Petlan) [RHEL-78197] - perf report: Add latency output field (Michael Petlan) [RHEL-78197] - perf report: Add parallelism filter (Michael Petlan) [RHEL-78197] - perf report: Switch filtered from u8 to u16 (Michael Petlan) [RHEL-78197] - perf report: Add parallelism sort key (Michael Petlan) [RHEL-78197] - perf report: Add machine parallelism (Michael Petlan) [RHEL-78197] - perf tools: Fix compile error on sample->user_regs (Michael Petlan) [RHEL-78197] - perf tools: Fix compilation error on arm64 (Michael Petlan) [RHEL-78197] - tools build: Fix a number of Wconversion warnings (Michael Petlan) [RHEL-78197] - perf sample: Make user_regs and intr_regs optional (Michael Petlan) [RHEL-78197] - perf test stat_all_metrics: Ensure missing events fail test (Michael Petlan) [RHEL-78197] - perf vendor events: Update Tigerlake events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update SkylakeX events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update Skylake metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update Sierraforest events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update Sapphirerapids events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update Rocketlake events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update Meteorlake events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update/add Lunarlake events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update IcelakeX events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update Icelake events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update HaswellX events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update Haswell events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update/add Graniterapids events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update GrandRidge events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update EmeraldRapids events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Add Clearwaterforest events (Michael Petlan) [RHEL-78197] - perf vendor events: Update CascadelakeX events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update BroadwellX events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update BroadwellDE events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update Broadwell events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Add Arrowlake events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update AlderlakeN events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events: Update Alderlake events/metrics (Michael Petlan) [RHEL-78197] - perf tools: Use symfs when opening debuginfo by path (Michael Petlan) [RHEL-78197] - perf trace: Add --summary-mode option (Michael Petlan) [RHEL-78197] - perf tools: Get rid of now-unused rb_resort.h (Michael Petlan) [RHEL-78197] - perf trace: Convert syscall_stats to hashmap (Michael Petlan) [RHEL-78197] - perf trace: Allocate syscall stats only if summary is on (Michael Petlan) [RHEL-78197] - perf tools: Deadcode removal (Michael Petlan) [RHEL-78197] - perf stat: Changes to event name uniquification (Michael Petlan) [RHEL-78197] - perf stat: Don't merge counters purely on name (Michael Petlan) [RHEL-78197] - perf test: Use cycles event in perf record test for leader_sampling (Michael Petlan) [RHEL-78197] - perf test: Fix perf record test for precise_max (Michael Petlan) [RHEL-78197] - perf: Always feature test reallocarray (Michael Petlan) [RHEL-78197] - perf vendor events arm64: Add V3 events/metrics (Michael Petlan) [RHEL-78197] - perf vendor events arm64: Add N3 events/metrics (Michael Petlan) [RHEL-78197] - perf trace: Fix return value of trace__fprintf_tp_fields (Michael Petlan) [RHEL-78197] - perf/x86/intel: Fix segfault with PEBS-via-PT with sample_freq (Michael Petlan) [RHEL-78197] - perf/x86/intel: KVM: Mask PEBS_ENABLE loaded for guest with vCPU's value. (Michael Petlan) [RHEL-78197] {CVE-2025-37936} - perf/x86/intel/ds: Fix counter backwards of non-precise events counters-snapshotting (Michael Petlan) [RHEL-78197] - perf/x86/intel: Check the X86 leader for pebs_counter_event_group (Michael Petlan) [RHEL-78197] - perf/x86/intel: Only check the group flag for X86 leader (Michael Petlan) [RHEL-78197] - perf/core: Change to POLLERR for pinned events with error (Michael Petlan) [RHEL-78197] - perf/x86/intel: Add Panther Lake support (Michael Petlan) [RHEL-78197] - perf/x86/intel: Allow to update user space GPRs from PEBS records (Michael Petlan) [RHEL-78197] - perf/x86/intel: Don't clear perf metrics overflow bit unconditionally (Michael Petlan) [RHEL-78197] - perf/x86/intel/uncore: Fix the scale of IIO free running counters on SPR (Michael Petlan) [RHEL-78197] - perf/x86/intel/uncore: Fix the scale of IIO free running counters on ICX (Michael Petlan) [RHEL-78197] - perf/x86/intel/uncore: Fix the scale of IIO free running counters on SNR (Michael Petlan) [RHEL-78197] - perf: Fix hang while freeing sigtrap event (Michael Petlan) [RHEL-78197] {CVE-2025-37747} - perf/core: Fix WARN_ON(!ctx) in __free_event() for partial init (Michael Petlan) [RHEL-78197] {CVE-2025-37878} - perf/core: Fix child_total_time_enabled accounting bug at task exit (Michael Petlan) [RHEL-78197] - tools/testing/selftests/powerpc/pmu: Update comment description to mention ISA v3.1 for power10 and above (Michael Petlan) [RHEL-78197] - tools/testing/selftests/powerpc: Add check for power11 pvr for pmu selfests (Michael Petlan) [RHEL-78197] - tools/testing/selftests/powerpc: Enable pmu selftests for power11 (Michael Petlan) [RHEL-78197] - arch/powerpc/perf: Update get_mem_data_src function to use saved values of sier and mmcra regs (Michael Petlan) [RHEL-78197] - arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src (Michael Petlan) [RHEL-78197] - perf: Remove unnecessary parameter of security check (Michael Petlan) [RHEL-78197] - perf: arm_pmu: Move PMUv3-specific data (Michael Petlan) [RHEL-78197] - perf/x86/intel, x86/cpu: Replace Pentium 4 model checks with VFM ones (Michael Petlan) [RHEL-78197] - x86/mm/pat: Replace Intel x86_model checks with VFM ones (Michael Petlan) [RHEL-78197] - x86/cpu/intel: Replace Family 5 model checks with VFM ones (Michael Petlan) [RHEL-78197] - x86/cpu/intel: Replace Family 15 checks with VFM ones (Michael Petlan) [RHEL-78197] - x86/cpu/intel: Replace early Family 6 checks with VFM ones (Michael Petlan) [RHEL-78197] - x86/microcode: Update the Intel processor flag scan check (Michael Petlan) [RHEL-78197] - x86/cpu: Update Intel Family comments (Michael Petlan) [RHEL-78197] - perf/x86/intel, x86/cpu: Simplify Intel PMU initialization (Michael Petlan) [RHEL-78197] - perf/x86/intel: Use cache cpu-type for hybrid PMU selection (Michael Petlan) [RHEL-78197] - perf: Clean up pmu specific data (Michael Petlan) [RHEL-78197] - perf/x86: Remove swap_task_ctx() (Michael Petlan) [RHEL-78197] - perf/x86/lbr: Fix shorter LBRs call stacks for the system-wide mode (Michael Petlan) [RHEL-78197] - perf: Supply task information to sched_task() (Michael Petlan) [RHEL-78197] - perf: attach/detach PMU specific data (Michael Petlan) [RHEL-78197] - locking/percpu-rwsem: Add guard support (Michael Petlan) [RHEL-78197] - perf: Save PMU specific data in task_struct (Michael Petlan) [RHEL-78197] - perf: Extend per event callchain limit to branch stack (Michael Petlan) [RHEL-78197] - perf/ring_buffer: Allow the EPOLLRDNORM flag for poll (Michael Petlan) [RHEL-78197] - perf/core: Use POLLHUP for pinned events in error (Michael Petlan) [RHEL-78197] - perf/core: Use sysfs_emit() instead of scnprintf() (Michael Petlan) [RHEL-78197] - perf/core: Remove optional 'size' arguments from strscpy() calls (Michael Petlan) [RHEL-78197] - perf/x86/intel/bts: Check if bts_ctx is allocated when calling BTS functions (Michael Petlan) [RHEL-78197] - perf/x86: Annotate struct bts_buffer::buf with __counted_by() (Michael Petlan) [RHEL-78197] - perf/core: Clean up perf_try_init_event() (Michael Petlan) [RHEL-78197] - perf/core: Fix perf_mmap() failure path (Michael Petlan) [RHEL-78197] - perf/core: Detach 'struct perf_cpu_pmu_context' and 'struct pmu' lifetimes (Michael Petlan) [RHEL-78197] - perf/core: Lift event->mmap_mutex in perf_mmap() (Michael Petlan) [RHEL-78197] - perf/core: Remove retry loop from perf_mmap() (Michael Petlan) [RHEL-78197] - perf/core: Further simplify perf_mmap() (Michael Petlan) [RHEL-78197] - perf/core: Simplify the perf_mmap() control flow (Michael Petlan) [RHEL-78197] - perf/bpf: Robustify perf_event_free_bpf_prog() (Michael Petlan) [RHEL-78197] - perf/core: Introduce perf_free_addr_filters() (Michael Petlan) [RHEL-78197] - perf/core: Add this_cpc() helper (Michael Petlan) [RHEL-78197] - perf/core: Merge struct pmu::pmu_disable_count into struct perf_cpu_pmu_context::pmu_disable_count (Michael Petlan) [RHEL-78197] - perf/core: Simplify perf_event_alloc() (Michael Petlan) [RHEL-78197] - perf/core: Simplify perf_init_event() (Michael Petlan) [RHEL-78197] - perf/core: Simplify perf_pmu_register() (Michael Petlan) [RHEL-78197] - perf/core: Simplify the perf_pmu_register() error path (Michael Petlan) [RHEL-78197] - perf/core: Simplify the perf_event_alloc() error path (Michael Petlan) [RHEL-78197] - perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type (Michael Petlan) [RHEL-78197] - perf/x86/intel/bts: Allocate bts_ctx only if necessary (Michael Petlan) [RHEL-78197] - perf/core: Move perf_event sysctls into kernel/events (Michael Petlan) [RHEL-78197] - const_structs.checkpatch: add ctl_table (Michael Petlan) [RHEL-78197] - sysctl: make internal ctl_tables const (Michael Petlan) [RHEL-78197] - perf amd ibs: Sync arch/x86/include/asm/amd-ibs.h header with the kernel (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Update DTLB/PageSize decode logic (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Add support for OP Load Latency Filtering (Michael Petlan) [RHEL-78197] - x86/events/amd/iommu: Increase IOMMU_NAME_SIZE (Michael Petlan) [RHEL-78197] - perf/x86/intel: Support PEBS counters snapshotting (Michael Petlan) [RHEL-78197] - perf: Avoid the read if the count is already updated (Michael Petlan) [RHEL-78197] - perf/x86/intel: Avoid disable PMU if !cpuc->enabled in sample read (Michael Petlan) [RHEL-78197] - perf/x86/intel: Apply static call for drain_pebs (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Ceil sample_period to min_period (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Add ->check_period() callback (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Add PMU specific minimum period (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Don't allow freq mode event creation through ->config interface (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Fix ->config to sample period calculation for OP PMU (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Remove pointless sample period check (Michael Petlan) [RHEL-78197] - perf/amd/ibs: Remove IBS_{FETCH|OP}_CONFIG_MASK macros (Michael Petlan) [RHEL-78197] - kernel/fork: only call untrack_pfn_clear() on VMAs duplicated for fork() (Nico Pache) [RHEL-77742] - mm/hugetlb: fix nid mismatch in alloc_surplus_hugetlb_folio() (Nico Pache) [RHEL-77742] - mm: (un)track_pfn_copy() fix + doc improvements (Nico Pache) [RHEL-77742] - mm/gup: fix wrongly calculated returned value in fault_in_safe_writeable() (Nico Pache) [RHEL-77742] - mm/page_alloc: fix deadlock on cpu_hotplug_lock in __accept_page() (Nico Pache) [RHEL-77742] - slab: ensure slab->obj_exts is clear in a newly allocated slab page (Nico Pache) [RHEL-77742] {CVE-2025-37774} - mm: fix apply_to_existing_page_range() (Nico Pache) [RHEL-77742] - mm: fix filemap_get_folios_contig returning batches of identical folios (Nico Pache) [RHEL-77742] - mm/hugetlb: fix set_max_huge_pages() when there are surplus pages (Nico Pache) [RHEL-77742] - mm/compaction: fix bug in hugetlb handling pathway (Nico Pache) [RHEL-77742] - mm: lock PGDAT_RECLAIM_LOCKED with acquire memory ordering (Nico Pache) [RHEL-77742] - mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock (Nico Pache) [RHEL-77742] - mm/hugetlb: update nr_huge_pages and surplus_huge_pages together (Nico Pache) [RHEL-77742] - mm: remove the access_ok() call from gup_fast_fallback() (Nico Pache) [RHEL-77742] - mm/damon/ops: have damon_get_folio return folio even for tail pages (Nico Pache) [RHEL-77742] - mm, percpu: do not consider sleepable allocations atomic (Nico Pache) [RHEL-77742] - x86/mm/pat: Fix VM_PAT handling when fork() fails in copy_page_range() (Nico Pache) [RHEL-77742] {CVE-2025-22090} - lockdep/mm: Fix might_fault() lockdep check of current->mm->mmap_lock (Nico Pache) [RHEL-77742] - mm: slub: call WARN() when detecting a slab corruption (Nico Pache) [RHEL-77742] - mm: slub: Print the broken data before restoring them (Nico Pache) [RHEL-77742] - mm/page_alloc: fix memory accept before watermarks gets initialized (Nico Pache) [RHEL-77742] - memcg: drain obj stock on cpu hotplug teardown (Nico Pache) [RHEL-77742] - mm/huge_memory: drop beyond-EOF folios with the right number of refs (Nico Pache) [RHEL-77742] {CVE-2025-22000} - mm: fix error handling in __filemap_get_folio() with FGP_NOWAIT (Nico Pache) [RHEL-77742] - mm/vma: do not register private-anon mappings with khugepaged during mmap (Nico Pache) [RHEL-77742] - mm/migrate: fix shmem xarray update during migration (Nico Pache) [RHEL-77742] {CVE-2025-22015} - mm/hugetlb: fix surplus pages in dissolve_free_huge_page() (Nico Pache) [RHEL-77742] - filemap: move prefaulting out of hot write path (Nico Pache) [RHEL-77742] - Revert "mm/page_alloc.c: don't show protection in zone's ->lowmem_reserve[] for empty zone" (Nico Pache) [RHEL-77742] - NFS: fix nfs_release_folio() to not deadlock via kcompactd writeback (Nico Pache) [RHEL-77742] {CVE-2025-21908} - mm: abort vma_modify() on merge out of memory failure (Nico Pache) [RHEL-77742] {CVE-2025-21932} - hwpoison, memory_hotplug: lock folio before unmap hwpoisoned folio (Nico Pache) [RHEL-77742] {CVE-2025-21931} - mm: memory-hotplug: check folio ref count first in do_migrate_range (Nico Pache) [RHEL-77742] - mm: memory-failure: update ttu flag inside unmap_poisoned_folio (Nico Pache) [RHEL-77742] {CVE-2025-21907} - mm: hugetlb: avoid fallback for specific node allocation of 1G pages (Nico Pache) [RHEL-77742] - memcg: avoid dead loop when setting memory.max (Nico Pache) [RHEL-77742] - mm,madvise,hugetlb: check for 0-length range after end address adjustment (Nico Pache) [RHEL-77742] - mm: gup: fix infinite loop within __get_longterm_locked (Nico Pache) [RHEL-77742] - kfence: skip __GFP_THISNODE allocations on NUMA systems (Nico Pache) [RHEL-77742] - mm: kmemleak: fix upper boundary check for physical address objects (Nico Pache) [RHEL-77742] - mm/vmscan: fix hard LOCKUP in function isolate_lru_folios (Nico Pache) [RHEL-77742] - mm/compaction: fix UBSAN shift-out-of-bounds warning (Nico Pache) [RHEL-77742] {CVE-2025-21815} - mm/hugetlb: don't map folios writable without VM_WRITE when copying during fork() (Nico Pache) [RHEL-77742] - readahead: properly shorten readahead when falling back to do_page_cache_ra() (Nico Pache) [RHEL-77742] - readahead: don't shorten readahead window in read_pages() (Nico Pache) [RHEL-77742] - ipv6: mcast: extend RCU protection in igmp6_send() (Hangbin Liu) [RHEL-81470] {CVE-2025-21759} - netfilter: ipset: fix region locking in hash types (CKI Backport Bot) [RHEL-96611] - KVM: selftests: access_tracking_perf_test: Add option to skip the sanity check (Maxim Levitsky) [RHEL-92771] - KVM: selftests: Extract guts of THP accessor to standalone sysfs helpers (Maxim Levitsky) [RHEL-92771] - selftests: net: use slowwait to make sure IPv6 setup finished (Hangbin Liu) [RHEL-83477] - selftests: net: use slowwait to stabilize vrf_route_leaking test (Hangbin Liu) [RHEL-84202] - selftests/mm: restore default nr_hugepages value during cleanup in hugetlb_reparenting_test.sh (Chunyu Hu) [RHEL-87655] - selftest/mm: make hugetlb_reparenting_test tolerant to async reparenting (Chunyu Hu) [RHEL-87655] - selftests/mm: generate a temporary mountpoint for cgroup filesystem (Chunyu Hu) [RHEL-87655] - scsi: lpfc: Copyright updates for 14.4.0.9 patches (Dick Kennedy) [RHEL-89473] - scsi: lpfc: Update lpfc version to 14.4.0.9 (Dick Kennedy) [RHEL-89473] - scsi: lpfc: Create lpfc_vmid_info sysfs entry (Dick Kennedy) [RHEL-89473] - scsi: lpfc: Avoid potential ndlp use-after-free in dev_loss_tmo_callbk (Dick Kennedy) [RHEL-89473] - scsi: lpfc: Prevent failure to reregister with NVMe transport after PRLI retry (Dick Kennedy) [RHEL-89473] - scsi: lpfc: Notify FC transport of rport disappearance during PCI fcn reset (Dick Kennedy) [RHEL-89473] - scsi: lpfc: Fix lpfc_check_sli_ndlp() handling for GEN_REQUEST64 commands (Dick Kennedy) [RHEL-89473] - scsi: lpfc: Use memcpy() for BIOS version (Dick Kennedy) [RHEL-89473] - scsi: lpfc: Restore clearing of NLP_UNREG_INP in ndlp->nlp_flag (Dick Kennedy) [RHEL-89473] - selftests: netfilter: nft_queue.sh: include file transfer duration in log message (CKI Backport Bot) [RHEL-99472] - selftests: netfilter: nft_queue.sh: fix warnings with socat 1.8.0.0 (CKI Backport Bot) [RHEL-99472] - selftests: netfilter: run conntrack_dump_flush in netns (CKI Backport Bot) [RHEL-99472] - selftests: netfilter: Add missing gitignore file (CKI Backport Bot) [RHEL-99472] - selftests: netfilter: nft_nat.sh: add test for reverse clash with nat (CKI Backport Bot) [RHEL-99656] - netfilter: nf_nat: also check reverse tuple to obtain clashing entry (CKI Backport Bot) [RHEL-99656] - ipvs: fix uninit-value for saddr in do_output_route4 (CKI Backport Bot) [RHEL-99471] - ipvs: prevent integer overflow in do_ip_vs_get_ctl() (CKI Backport Bot) [RHEL-99471] - redhat/spec: package full bpftool in selftests (Gregory Bell) [RHEL-91378] - redhat: add more namespace selftests to kernel-modules-internal package (Joel Savitz) [RHEL-95481] - selftests/memfd/memfd_test: fix possible NULL pointer dereference (Joel Savitz) [RHEL-94834] - mr: consolidate the ipmr_can_free_table() checks. (CKI Backport Bot) [RHEL-96599] - ipv6: Align behavior across nexthops during path selection (CKI Backport Bot) [RHEL-96599] - ipv6: fix omitted netlink attributes when using RTEXT_FILTER_SKIP_STATS (CKI Backport Bot) [RHEL-96599] - ipv6: Do not consider link down nexthops in path selection (CKI Backport Bot) [RHEL-96599] - ipv6: Start path selection from the first nexthop (CKI Backport Bot) [RHEL-96599] - netlabel: Fix NULL pointer exception caused by CALIPSO on IPv4 sockets (CKI Backport Bot) [RHEL-96599] {CVE-2025-22063} - scsi: sd_zbc: block: Respect bio vector limits for REPORT ZONES buffer (Ewan D. Milne) [RHEL-94045] - scsi: Improve CDL control (Ewan D. Milne) [RHEL-94045] - scsi: core: Clear flags for scsi_cmnd that did not complete (Ewan D. Milne) [RHEL-94045] - scsi: scsi_transport_srp: Replace min/max nesting with clamp() (Ewan D. Milne) [RHEL-94045] - scsi: st: Tighten the page format heuristics with MODE SELECT (Ewan D. Milne) [RHEL-94045] - scsi: st: ERASE does not change tape location (Ewan D. Milne) [RHEL-94045] - scsi: st: Fix array overflow in st_setup() (Ewan D. Milne) [RHEL-94045] - scsi: core: Use a switch statement when attaching VPD pages (Ewan D. Milne) [RHEL-94045] - scsi: logging: Fix scsi_logging_level bounds (Ewan D. Milne) [RHEL-94045] - scsi: scsi_error: Add comments to scsi_check_sense() (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Fix uninitialized variable use (Ewan D. Milne) [RHEL-94045] - scsi: core: Fix missing lock protection (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Do not sleep in atomic sections (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Simplify command handling (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Remove a reference to in_use_bm (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Remove sdebug_device_access_info (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Add support for partitioning the tape (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Reset tape setting at device reset (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Add compression mode page for tapes (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Add read support and update locate for tapes (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Add write support with block lengths and 4 bytes of data (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: Add READ BLOCK LIMITS and modify LOAD for tapes (Ewan D. Milne) [RHEL-94045] - scsi: scsi_debug: First fixes for tapes (Ewan D. Milne) [RHEL-94045] - scsi: usb: Rename the RESERVE and RELEASE constants (Ewan D. Milne) [RHEL-94045] - scsi: st: Add sysfs file position_lost_in_reset (Ewan D. Milne) [RHEL-94045] - scsi: st: Modify st.c to use the new scsi_error counters (Ewan D. Milne) [RHEL-94045] - scsi: core: Add counters for New Media and Power On/Reset UNIT ATTENTIONs (Ewan D. Milne) [RHEL-94045] - scsi: st: Restore some drive settings after reset (Ewan D. Milne) [RHEL-94045] - net: ena: Support persistent per-NAPI config. (Dennis Chen) [RHEL-94831] - treewide: Switch/rename to timer_delete[_sync]() (Dennis Chen) [RHEL-94831] - net: ena: Fix incorrect indentation (Dennis Chen) [RHEL-94831] - net: ena: remove devm from ethtool (Dennis Chen) [RHEL-94831] - net: ena: Remove deadcode (Dennis Chen) [RHEL-94831] - net: ena: Remove autopolling mode (Dennis Chen) [RHEL-94831] - ena: Link queues to NAPIs (Dennis Chen) [RHEL-94831] - ena: Link IRQs to NAPI instances (Dennis Chen) [RHEL-94831] - mm: fix finish_fault() handling for large folios (Aristeu Rozanski) [RHEL-83854] - selftests/bpf: Remove with_addr.sh and with_tunnels.sh (Jerome Marchand) [RHEL-78201] - Build cpp selftests without source fortification (Jerome Marchand) [RHEL-78201] - libbpf: Fix implicit memfd_create() for bionic (Jerome Marchand) [RHEL-78201] - bpf: Use preempt_count() directly in bpf_send_signal_common() (Jerome Marchand) [RHEL-78201] - selftests: bpf: test batch lookup on array of maps with holes (Jerome Marchand) [RHEL-78201] - bpf: skip non exist keys in generic_map_lookup_batch (Jerome Marchand) [RHEL-78201] - bpf: Handle allocation failure in acquire_lock_state (Jerome Marchand) [RHEL-78201] - bpf: verifier: Disambiguate get_constant_map_key() errors (Jerome Marchand) [RHEL-78201] - bpf: selftests: Test constant key extraction on irrelevant maps (Jerome Marchand) [RHEL-78201] - bpf: verifier: Do not extract constant map keys for irrelevant maps (Jerome Marchand) [RHEL-78201] - bpf: Fix softlockup in arena_map_free on 64k page kernel (Jerome Marchand) [RHEL-78201 RHEL-83206] {CVE-2025-21851} - bpf: Fix deadlock when freeing cgroup storage (Jerome Marchand) [RHEL-78201 RHEL-83311] {CVE-2024-58088} - bpf: avoid holding freeze_mutex during mmap operation (Jerome Marchand) [RHEL-78201 RHEL-83351] {CVE-2025-21853} - bpf: unify VM_WRITE vs VM_MAYWRITE use in BPF map mmaping logic (Jerome Marchand) [RHEL-78201] - bpf: Remove unnecessary BTF lookups in bpf_sk_storage_tracing_allowed (Jerome Marchand) [RHEL-78201] - selftests/bpf: Add some tests related to 'may_goto 0' insns (Jerome Marchand) [RHEL-78201] - bpf: Remove 'may_goto 0' instruction in opt_remove_nops() (Jerome Marchand) [RHEL-78201] - bpf: Allow 'may_goto 0' instruction in verifier (Jerome Marchand) [RHEL-78201] - selftests/bpf: Add test case for the freeing of bpf_timer (Jerome Marchand) [RHEL-78201] - bpf: Cancel the running bpf_timer through kworker for PREEMPT_RT (Jerome Marchand) [RHEL-78201] - bpf: Free element after unlock in __htab_map_lookup_and_delete_elem() (Jerome Marchand) [RHEL-78201] - bpf: Bail out early in __htab_map_lookup_and_delete_elem() (Jerome Marchand) [RHEL-78201] - bpf: Free special fields after unlock in htab_lru_map_delete_node() (Jerome Marchand) [RHEL-78201] - libbpf: Work around kernel inconsistently stripping '.llvm.' suffix (Jerome Marchand) [RHEL-78201] - bpf: selftests: verifier: Add nullness elision tests (Jerome Marchand) [RHEL-78201] - bpf: verifier: Support eliding map lookup nullness (Jerome Marchand) [RHEL-78201] - bpf: verifier: Add missing newline on verbose() call (Jerome Marchand) [RHEL-78201] - selftests/bpf: Add distilled BTF test about marking BTF_IS_EMBEDDED (Jerome Marchand) [RHEL-78201] - libbpf: Fix incorrect traversal end type ID when marking BTF_IS_EMBEDDED (Jerome Marchand) [RHEL-78201] - libbpf: Fix return zero when elf_begin failed (Jerome Marchand) [RHEL-78201] - selftests/bpf: Fix btf leak on new btf alloc failure in btf_distill test (Jerome Marchand) [RHEL-78201] - veristat: Load struct_ops programs only once (Jerome Marchand) [RHEL-78201] - bpf: Send signals asynchronously if !preemptible (Jerome Marchand) [RHEL-78201] - veristat: Document verifier log dumping capability (Jerome Marchand) [RHEL-78201] - bpftool: Fix control flow graph segfault during edge creation (Jerome Marchand) [RHEL-78201] - selftests/bpf: Add a test for kprobe multi with unique_match (Jerome Marchand) [RHEL-78201] - libbpf: Add unique_match option for multi kprobe (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} from bpf_selem_free() (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} from bpf_local_storage_free() (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} from bpf_local_storage_alloc() (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} from bpf_selem_alloc() (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable,enable} in bpf_cpumask_release() (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} in bpf_obj_free_fields() (Jerome Marchand) [RHEL-78201] - bpf: Disable migration before calling ops->map_free() (Jerome Marchand) [RHEL-78201] - bpf: Disable migration in bpf_selem_free_rcu (Jerome Marchand) [RHEL-78201] - bpf: Disable migration when cloning sock storage (Jerome Marchand) [RHEL-78201] - bpf: Disable migration when destroying sock storage (Jerome Marchand) [RHEL-78201] - bpf: Disable migration when destroying inode storage (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} from bpf_task_storage_lock helpers (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} from bpf_cgrp_storage_lock helpers (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} in htab_elem_free (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} in ->map_for_each_callback (Jerome Marchand) [RHEL-78201] - bpf: Remove migrate_{disable|enable} from LPM trie (Jerome Marchand) [RHEL-78201] - selftests/bpf: Add kprobe session recursion check test (Jerome Marchand) [RHEL-78201] - bpf: Return error for missed kprobe multi bpf program execution (Jerome Marchand) [RHEL-78201] - bpf: Fix range_tree_set() error handling (Jerome Marchand) [RHEL-78201] - selftests/bpf: add -std=gnu11 to BPF_CFLAGS and CFLAGS (Jerome Marchand) [RHEL-78201] - selftests/bpf: Handle prog/attach type comparison in veristat (Jerome Marchand) [RHEL-78201] - selftests/bpf: add -fno-strict-aliasing to BPF_CFLAGS (Jerome Marchand) [RHEL-78201] - selftests/bpf: test bpf_for within spin lock section (Jerome Marchand) [RHEL-78201] - bpf: Allow bpf_for/bpf_repeat calls while holding a spinlock (Jerome Marchand) [RHEL-78201] - bpf/tests: Add 32 bits only long conditional jump tests (Jerome Marchand) [RHEL-78201] - selftests/bpf: Avoid generating untracked files when running bpf selftests (Jerome Marchand) [RHEL-78201] - bpf: Reject struct_ops registration that uses module ptr and the module btf_id is missing (Jerome Marchand) [RHEL-78201] - bpf: Use refcount_t instead of atomic_t for mmap_count (Jerome Marchand) [RHEL-78201] - bpf: Remove unused MT_ENTRY define (Jerome Marchand) [RHEL-78201] - selftests/bpf: fix veristat comp mode with new stats (Jerome Marchand) [RHEL-78201] - bpf: Fix holes in special_kfunc_list if !CONFIG_NET (Jerome Marchand) [RHEL-78201] - selftests/bpf: Add testcases for BPF_MUL (Jerome Marchand) [RHEL-78201] - bpf, verifier: Improve precision of BPF_MUL (Jerome Marchand) [RHEL-78201] - libbpf: Set MFD_NOEXEC_SEAL when creating memfd (Jerome Marchand) [RHEL-78201] - selftests/bpf: Clear out Python syntax warnings (Jerome Marchand) [RHEL-78201] - bpf: bpf_local_storage: Always use bpf_mem_alloc in PREEMPT_RT (Jerome Marchand) [RHEL-78201] - bpftool: Link zstd lib required by libelf (Jerome Marchand) [RHEL-78201] - veristat: Fix top source line stat collection (Jerome Marchand) [RHEL-78201] - bpf: lsm: Remove hook to bpf_task_storage_free (Jerome Marchand) [RHEL-78201] - bpf: Fix configuration-dependent BTF function references (Jerome Marchand) [RHEL-78201] - selftest/bpf: Replace magic constants by macros (Jerome Marchand) [RHEL-78201] - selftests/bpf: Add tests for fd_array_cnt (Jerome Marchand) [RHEL-78201] - libbpf: prog load: Allow to use fd_array_cnt (Jerome Marchand) [RHEL-78201] - bpf: Add fd_array_cnt attribute for prog_load (Jerome Marchand) [RHEL-78201] - bpf: Refactor check_pseudo_btf_id (Jerome Marchand) [RHEL-78201] - bpf: Move map/prog compatibility checks (Jerome Marchand) [RHEL-78201] - bpf: Add a __btf_get_by_fd helper (Jerome Marchand) [RHEL-78201] - bpftool: bash: Add bash completion for root_id argument (Jerome Marchand) [RHEL-78201] - bpftool: btf: Support dumping a specific types from file (Jerome Marchand) [RHEL-78201] - bpftool: btf: Validate root_type_ids early (Jerome Marchand) [RHEL-78201] - bpftool: man: Add missing format argument to command description (Jerome Marchand) [RHEL-78201] - selftests/bpf: make BPF_TARGET_ENDIAN non-recursive to speed up *.bpf.o build (Jerome Marchand) [RHEL-78201] - libbpf: Extend linker API to support in-memory ELF files (Jerome Marchand) [RHEL-78201] - libbpf: Pull file-opening logic up to top-level functions (Jerome Marchand) [RHEL-78201] - bpftool: Probe for ISA v4 instruction set extension (Jerome Marchand) [RHEL-78201] - kbuild/btf: Propagate CONFIG_WERROR to resolve_btfids (Jerome Marchand) [RHEL-78201] - tools/resolve_btfids: Add --fatal_warnings option (Jerome Marchand) [RHEL-78201] - selftests/bpf: Fix fill_link_info selftest on powerpc (Jerome Marchand) [RHEL-78201] - selftests/bpf: Add more stats into veristat (Jerome Marchand) [RHEL-78201] - selftests/bpf: Consolidate kernel modules into common directory (Jerome Marchand) [RHEL-78201] - libbpf: Fix segfault due to libelf functions not setting errno (Jerome Marchand) [RHEL-78201] - selftests/bpf: Add IRQ save/restore tests (Jerome Marchand) [RHEL-78201] - selftests/bpf: Expand coverage of preempt tests to sleepable kfunc (Jerome Marchand) [RHEL-78201] - bpf: Improve verifier log for resource leak on exit (Jerome Marchand) [RHEL-78201] - bpf: Introduce support for bpf_local_irq_{save,restore} (Jerome Marchand) [RHEL-78201] - bpf: Refactor mark_{dynptr,iter}_read (Jerome Marchand) [RHEL-78201] - bpf: Refactor {acquire,release}_reference_state (Jerome Marchand) [RHEL-78201] - bpf: Consolidate locks and reference state in verifier state (Jerome Marchand) [RHEL-78201] - selftests/bpf: ensure proper root namespace cleanup when test fail (Jerome Marchand) [RHEL-78201] - bpf: Refactor bpf_tracing_func_proto() and remove bpf_get_probe_write_proto() (Jerome Marchand) [RHEL-78201] - bpf: Remove bpf_probe_write_user() warning message (Jerome Marchand) [RHEL-78201] - libbpf: Improve debug message when the base BTF cannot be found (Jerome Marchand) [RHEL-78201] - libbpf: don't adjust USDT semaphore address if .stapsdt.base addr is missing (Jerome Marchand) [RHEL-78201] - samples/bpf: Remove unused variable (Jerome Marchand) [RHEL-78201] - selftests/bpf: remove test_flow_dissector.sh (Jerome Marchand) [RHEL-78201] - selftests/bpf: migrate bpf flow dissectors tests to test_progs (Jerome Marchand) [RHEL-78201] - selftests/bpf: add network helpers to generate udp checksums (Jerome Marchand) [RHEL-78201] - selftests/bpf: use the same udp and tcp headers in tests under test_progs (Jerome Marchand) [RHEL-78201] - selftests/bpf: document pseudo-header checksum helpers (Jerome Marchand) [RHEL-78201] - selftests/bpf: move ip checksum helper to network helpers (Jerome Marchand) [RHEL-78201] - selftests/bpf: Enable generic tc actions in selftests config (Jerome Marchand) [RHEL-78201] - selftests/bpf: migrate flow_dissector namespace exclusivity test (Jerome Marchand) [RHEL-78201] - selftests/bpf: add gre packets testing to flow_dissector (Jerome Marchand) [RHEL-78201] - selftests/bpf: expose all subtests from flow_dissector (Jerome Marchand) [RHEL-78201] - selftests/bpf: re-split main function into dedicated tests (Jerome Marchand) [RHEL-78201] - selftests/bpf: replace CHECK calls with ASSERT macros in flow_dissector test (Jerome Marchand) [RHEL-78201] - selftests/bpf: use ASSERT_MEMEQ to compare bpf flow keys (Jerome Marchand) [RHEL-78201] - selftests/bpf: add a macro to compare raw memory (Jerome Marchand) [RHEL-78201] - sched/isolation: Make use of more than one housekeeping cpu (Phil Auld) [RHEL-8694] - emulex/benet: correct command version selection in be_cmd_get_stats() (Dennis Chen) [RHEL-72657] - emulex/benet: Annotate flash_cookie as nonstring (Dennis Chen) [RHEL-72657] - be2net: fix sleeping while atomic bugs in be_ndo_bridge_getlink (Dennis Chen) [RHEL-72657] - i40e: fix MMIO write access to an invalid page in i40e_clear_hw (Dennis Chen) [RHEL-83569] - treewide: Switch/rename to timer_delete[_sync]() (Dennis Chen) [RHEL-83569] - i40e: use generic unrolled_count() macro (Dennis Chen) [RHEL-83569] - i40e: Remove unused i40e_dcb_hw_get_num_tc (Dennis Chen) [RHEL-83569] - i40e: Remove unused i40e_asq_send_command_v2 (Dennis Chen) [RHEL-83569] - i40e: Remove unused i40e_commit_partition_bw_setting (Dennis Chen) [RHEL-83569] - i40e: Remove unused i40e_del_filter (Dennis Chen) [RHEL-83569] - i40e: Remove unused i40e_get_cur_guaranteed_fd_count (Dennis Chen) [RHEL-83569] - i40e: Deadcode profile code (Dennis Chen) [RHEL-83569] - i40e: Remove unused i40e_(read|write)_phy_register (Dennis Chen) [RHEL-83569] - i40e: Remove unused i40e_blink_phy_link_led (Dennis Chen) [RHEL-83569] - i40e: Deadcode i40e_aq_* (Dennis Chen) [RHEL-83569] - ext4: only dirty folios when data journaling regular files (CKI Backport Bot) [RHEL-91256] - net: hsr: remove synchronize_rcu() from hsr_add_port() (Felix Maurer) [RHEL-84547] - net: hsr: must allocate more bytes for RedBox support (Felix Maurer) [RHEL-84547] - net: hsr: fix fill_frame_info() regression vs VLAN packets (Felix Maurer) [RHEL-84547] - net: hsr: avoid potential out-of-bound access in fill_frame_info() (Felix Maurer) [RHEL-84547] - net: hsr: fix hsr_init_sk() vs network/transport headers. (Felix Maurer) [RHEL-84547] - bonding: assign random address if device address is same as bond (Hangbin Liu) [RHEL-84037] - x86/microcode/AMD: Fix out-of-bounds on systems with CPU-less NUMA nodes (CKI Backport Bot) [RHEL-99005] {CVE-2025-21991} - vmxnet3: Fix malformed packet sizing in vmxnet3_process_xdp (CKI Backport Bot) [RHEL-97117] {CVE-2025-37799} - scsi: smartpqi: Delete a stray tab in pqi_is_parity_write_stream() (Don Brace) [RHEL-96279] - scsi: smartpqi: Update driver version to 2.1.34-035 (Don Brace) [RHEL-96279] - scsi: smartpqi: Fix smp_processor_id() call trace for preemptible kernels (Don Brace) [RHEL-96279] - scsi: smartpqi: Enhance WWID logging logic (Don Brace) [RHEL-96279] - scsi: smartpqi: Add new PCI IDs (Don Brace) [RHEL-96279] - scsi: smartpqi: Take drives offline when controller is offline (Don Brace) [RHEL-96279] - scsi: smartpqi: Use is_kdump_kernel() to check for kdump (Don Brace) [RHEL-96279] - NFS: Extend rdirplus mount option with "force|none" (Benjamin Coddington) [RHEL-91254] - sched_ext: bpf_iter_scx_dsq_new() should always initialize iterator (Phil Auld) [RHEL-92921] - sched/eevdf: Fix se->slice being set to U64_MAX and resulting crash (Phil Auld) [RHEL-92921] - cpufreq/sched: Set need_freq_update in ignore_dl_rate_limit() (Phil Auld) [RHEL-92921] - cpufreq/sched: Explicitly synchronize limits_changed flag handling (Phil Auld) [RHEL-92921] - cpufreq/sched: Fix the usage of CPUFREQ_NEED_UPDATE_LIMITS (Phil Auld) [RHEL-92921] - sched/fair: Adhere to place_entity() constraints (Phil Auld) [RHEL-92921] - include/{topology,cpuset}: Move dl_rebuild_rd_accounting to cpuset.h (Phil Auld) [RHEL-92921] - sched/topology: Stop exposing partition_sched_domains_locked (Phil Auld) [RHEL-92921] - cgroup/cpuset: Remove partition_and_rebuild_sched_domains (Phil Auld) [RHEL-92921] - sched/topology: Remove redundant dl_clear_root_domain call (Phil Auld) [RHEL-92921] - sched/deadline: Rebuild root domain accounting after every update (Phil Auld) [RHEL-92921] - sched/deadline: Generalize unique visiting of root domains (Phil Auld) [RHEL-92921] - sched/topology: Wrappers for sched_domains_mutex (Phil Auld) [RHEL-92921] - sched/deadline: Ignore special tasks when rebuilding domains (Phil Auld) [RHEL-92921] - tracing: Use preempt_model_str() (Phil Auld) [RHEL-92921] - x86: Rely on generic printing of preemption model (Phil Auld) [RHEL-92921] - s390: Rely on generic printing of preemption model (Phil Auld) [RHEL-92921] - powerpc: Rely on generic printing of preemption model (Phil Auld) [RHEL-92921] - Revert "powerpc: traps: Use PREEMPT_RT" (Phil Auld) [RHEL-92921] - arm64: Rely on generic printing of preemption model (Phil Auld) [RHEL-92921] - lib/dump_stack: Use preempt_model_str() (Phil Auld) [RHEL-92921] - sched: Add a generic function to return the preemption string (Phil Auld) [RHEL-92921] - Revert "sched/core: Reduce cost of sched_move_task when config autogroup" (Phil Auld) [RHEL-92921] - rseq: Fix segfault on registration when rseq_cs is non-zero (Phil Auld) [RHEL-92921] - rseq: Update kernel fields in lockstep with CONFIG_DEBUG_RSEQ=y (Phil Auld) [RHEL-92921] - rseq: Fix rseq registration with CONFIG_DEBUG_RSEQ (Phil Auld) [RHEL-92921] - rseq: Fix rseq unregistration regression (Phil Auld) [RHEL-92921] - rseq: Validate read-only fields under DEBUG_RSEQ config (Phil Auld) [RHEL-92921] - sched/membarrier: Fix redundant load of membarrier_state (Phil Auld) [RHEL-92921] - sched: Clarify wake_up_q()'s write to task->wake_q.next (Phil Auld) [RHEL-92921] - freezer, sched: Report frozen tasks as 'D' instead of 'R' (Phil Auld) [RHEL-92921] - dm mpath: replace spin_lock_irqsave with spin_lock_irq (Benjamin Marzinski) [RHEL-89481] - dm-mpath: Don't grab work_mutex while probing paths (Benjamin Marzinski) [RHEL-89481] - dm mpath: Interface for explicit probing of active paths (Benjamin Marzinski) [RHEL-89481] - dm: Allow .prepare_ioctl to handle ioctls directly (Benjamin Marzinski) [RHEL-89481] - redhat/configs: Enable CONFIG_PCIE_TPH (Ivan Vecera) [RHEL-94973] - PCI/TPH: Restore TPH Requester Enable correctly (CKI Backport Bot) [RHEL-94973] - PCI/TPH: Add TPH documentation (CKI Backport Bot) [RHEL-94973] - PCI/TPH: Add Steering Tag support (CKI Backport Bot) [RHEL-94973] - PCI: Add TLP Processing Hints (TPH) support (CKI Backport Bot) [RHEL-94973] - powerpc/pseries/iommu: create DDW for devices with DMA mask less than 64-bits (Eder Zulian) [RHEL-92470] - redhat: configs: enable CONFIG_PACKING (Petr Oros) [RHEL-92667] - lib: packing: catch kunit_kzalloc() failure in the pack() test (CKI Backport Bot) [RHEL-92667] - lib: packing: document recently added APIs (CKI Backport Bot) [RHEL-92667] - lib: packing: add pack_fields() and unpack_fields() (CKI Backport Bot) [RHEL-92667] - lib: packing: demote truncation error in pack() to a warning in __pack() (CKI Backport Bot) [RHEL-92667] - lib: packing: create __pack() and __unpack() variants without error checking (CKI Backport Bot) [RHEL-92667] - lib: packing: use GENMASK() for box_mask (CKI Backport Bot) [RHEL-92667] - lib: packing: use BITS_PER_BYTE instead of 8 (CKI Backport Bot) [RHEL-92667] - lib: packing: fix QUIRK_MSB_ON_THE_RIGHT behavior (CKI Backport Bot) [RHEL-92667] - lib: packing: add additional KUnit tests (CKI Backport Bot) [RHEL-92667] - lib: packing: add KUnit tests adapted from selftests (CKI Backport Bot) [RHEL-92667] - lib: packing: duplicate pack() and unpack() implementations (CKI Backport Bot) [RHEL-92667] - lib: packing: add pack() and unpack() wrappers over packing() (CKI Backport Bot) [RHEL-92667] - lib: packing: remove kernel-doc from header file (CKI Backport Bot) [RHEL-92667] - lib: packing: adjust definitions and implementation for arbitrary buffer lengths (CKI Backport Bot) [RHEL-92667] - lib: packing: refuse operating on bit indices which exceed size of buffer (CKI Backport Bot) [RHEL-92667] - crypto: qat - switch to standard pattern for PCI IDs (Vladis Dronov) [RHEL-72768] - crypto: qat - remove BITS_IN_DWORD() (Vladis Dronov) [RHEL-72768] - crypto: qat - remove initialization in device class (Vladis Dronov) [RHEL-72768] - crypto: qat - add shutdown handler to qat_c3xxx (Vladis Dronov) [RHEL-72768 RHEL-84366] - crypto: qat - remove redundant prototypes in qat_c3xxx (Vladis Dronov) [RHEL-72768 RHEL-84366] - crypto: qat - add shutdown handler to qat_c62x (Vladis Dronov) [RHEL-72768 RHEL-84366] - crypto: qat - remove redundant prototypes in qat_c62x (Vladis Dronov) [RHEL-72768 RHEL-84366] - crypto: qat - add shutdown handler to qat_dh895xcc (Vladis Dronov) [RHEL-72768 RHEL-84366] - crypto: qat - remove redundant prototypes in qat_dh895xcc (Vladis Dronov) [RHEL-72768 RHEL-84366] - crypto: qat - add shutdown handler to qat_420xx (Vladis Dronov) [RHEL-72768 RHEL-84366] - crypto: qat - add shutdown handler to qat_4xxx (Vladis Dronov) [RHEL-72768 RHEL-84366] - crypto: qat - remove access to parity register for QAT GEN4 (Vladis Dronov) [RHEL-72768] - crypto: qat - set parity error mask for qat_420xx (Vladis Dronov) [RHEL-72768] - crypto: qat - optimize allocations for fw authentication (Vladis Dronov) [RHEL-72768] - crypto: qat - remove redundant FW image size check (Vladis Dronov) [RHEL-72768] - crypto: qat - remove unused members in suof structure (Vladis Dronov) [RHEL-72768] - crypto: qat - introduce fuse array (Vladis Dronov) [RHEL-72768] - crypto: qat - add macro to write 64-bit values to registers (Vladis Dronov) [RHEL-72768] - crypto: qat - refactor service parsing logic (Vladis Dronov) [RHEL-72768] - crypto: qat - do not export adf_cfg_services (Vladis Dronov) [RHEL-72768] - crypto: qat - reorder objects in qat_common Makefile (Vladis Dronov) [RHEL-72768] - crypto: qat - fix object goals in Makefiles (Vladis Dronov) [RHEL-72768] - crypto: qat - set command ids as reserved (Vladis Dronov) [RHEL-72768] - crypto: drivers - Use str_enable_disable-like helpers [partial] (Vladis Dronov) [RHEL-72768] - redhat: automotive: remove tech preview message (Scott Weaver) [RHEL-77268] - redhat: automotive: define CONFIG_RH_AUTOMOTIVE (Scott Weaver) [RHEL-77268] - rv: Update RHEL kconfigs for 6.15 upstream code (Gabriele Monaco) [RHEL-92308] - rv: Fix out-of-bound memory access in rv_is_container_monitor() (Gabriele Monaco) [RHEL-92308] - rv: Fix missing unlock on double nested monitors return path (Gabriele Monaco) [RHEL-92308] - handle man-page for rv-mon-sched in redhat/kernel.spec.template (Gabriele Monaco) [RHEL-92308] - Documentation/rv: Add sched pages to the indices (Gabriele Monaco) [RHEL-92308] - tools/rv: Allow rv list to filter for container (Gabriele Monaco) [RHEL-92308] - Documentation/rv: Add docs for the sched monitors (Gabriele Monaco) [RHEL-92308] - verification/dot2k: Add support for nested monitors (Gabriele Monaco) [RHEL-92308] - tools/rv: Add support for nested monitors (Gabriele Monaco) [RHEL-92308] - rv: Add scpd, snep and sncid per-cpu monitors (Gabriele Monaco) [RHEL-92308] - rv: Add snroc per-task monitor (Gabriele Monaco) [RHEL-92308] - rv: Add sco and tss per-cpu monitors (Gabriele Monaco) [RHEL-92308] - rv: Add option for nested monitors and include sched (Gabriele Monaco) [RHEL-92308] - sched: Add sched tracepoints for RV task model (Gabriele Monaco) [RHEL-92308] - rv: Add license identifiers to monitor files (Gabriele Monaco) [RHEL-92308] - tracing: Fix DECLARE_TRACE_CONDITION (Gabriele Monaco) [RHEL-92308] - rv: Reset per-task monitors also for idle tasks (Gabriele Monaco) [RHEL-92308] - verification/dot2k: Implement event type detection (Gabriele Monaco) [RHEL-92308] - verification/dot2k: Auto patch current kernel source (Gabriele Monaco) [RHEL-92308] - verification/dot2k: Simplify manual steps in monitor creation (Gabriele Monaco) [RHEL-92308] - rv: Simplify manual steps in monitor creation (Gabriele Monaco) [RHEL-92308] - verification/dot2k: Add support for name and description options (Gabriele Monaco) [RHEL-92308] - verification/dot2k: More robust template variables (Gabriele Monaco) [RHEL-92308] - verification/dot2k: Unify main.c templates (Gabriele Monaco) [RHEL-92308] - verification/dot2k: Fix template directory detection (Gabriele Monaco) [RHEL-92308] - Documentation/rv: Fix typos (Gabriele Monaco) [RHEL-92308] - verification/dot2: Improve dot parser robustness (Gabriele Monaco) [RHEL-92308] - rv: Fix a typo (Gabriele Monaco) [RHEL-92308] - tools/rv: Correct the grammatical errors in the comments (Gabriele Monaco) [RHEL-92308] - tools/rv: Correct the grammatical errors in the comments (Gabriele Monaco) [RHEL-92308] - unroll: add generic loop unroll helpers (CKI Backport Bot) [RHEL-92674] - tcp: add LINUX_MIB_PAWS_TW_REJECTED counter (Antoine Tenart) [RHEL-88891] - tcp: add TCP_RFC7323_TW_PAWS drop reason (Antoine Tenart) [RHEL-88891] - udp: expand SKB_DROP_REASON_UDP_CSUM use (Antoine Tenart) [RHEL-88891] - tcp: add four drop reasons to tcp_check_req() (Antoine Tenart) [RHEL-88891] - tcp: add a drop_reason pointer to tcp_check_req() (Antoine Tenart) [RHEL-88891] - af_unix: Use consume_skb() in connect() and sendmsg(). (Antoine Tenart) [RHEL-88891] - af_unix: Reuse out_pipe label in unix_stream_sendmsg(). (Antoine Tenart) [RHEL-88891] - af_unix: Clean up error paths in unix_stream_sendmsg(). (Antoine Tenart) [RHEL-88891] - af_unix: Set error only when needed in unix_stream_sendmsg(). (Antoine Tenart) [RHEL-88891] - af_unix: Clean up error paths in unix_stream_connect(). (Antoine Tenart) [RHEL-88891] - af_unix: Set error only when needed in unix_stream_connect(). (Antoine Tenart) [RHEL-88891] - af_unix: Set drop reason in unix_dgram_disconnected(). (Antoine Tenart) [RHEL-88891] - af_unix: Set drop reason in unix_stream_read_skb(). (Antoine Tenart) [RHEL-88891] - af_unix: Set drop reason in manage_oob(). (Antoine Tenart) [RHEL-88891] - af_unix: Set drop reason in __unix_gc(). (Antoine Tenart) [RHEL-88891] - af_unix: Set drop reason in unix_sock_destructor(). (Antoine Tenart) [RHEL-88891] - af_unix: Set drop reason in unix_release_sock(). (Antoine Tenart) [RHEL-88891] - net: dropreason: Gather SOCKET_ drop reasons. (Antoine Tenart) [RHEL-88891] - tcp: add LINUX_MIB_PAWS_OLD_ACK SNMP counter (Antoine Tenart) [RHEL-88891] - tcp: add TCP_RFC7323_PAWS_ACK drop reason (Antoine Tenart) [RHEL-88891] - tcp: add drop_reason support to tcp_disordered_ack() (Antoine Tenart) [RHEL-88891] - net: bridge: add skb drop reasons to the most common drop points (Antoine Tenart) [RHEL-88891] - net: vxlan: rename SKB_DROP_REASON_VXLAN_NO_REMOTE (Antoine Tenart) [RHEL-88891] - net/sched: Add drop reasons for AQM-based qdiscs (Antoine Tenart) [RHEL-88891] - net_sched: sch_cake: Add drop reasons (Antoine Tenart) [RHEL-88891] - net_sched: sch_fq: add three drop_reason (Antoine Tenart) [RHEL-88891] - netfilter: br_netfilter: remove unused conditional and dead code (Antoine Tenart) [RHEL-88891] - ipv4: route: fix drop reason being overridden in ip_route_input_slow (Antoine Tenart) [RHEL-88891] - ip: Return drop reason if in_dev is NULL in ip_route_input_rcu(). (Antoine Tenart) [RHEL-88891] - net: ip: fix unexpected return in fib_validate_source() (Antoine Tenart) [RHEL-88891] - net: ip: make ip_route_use_hint() return drop reasons (Antoine Tenart) [RHEL-88891] - net: ip: make ip_mkroute_input/__mkroute_input return drop reasons (Antoine Tenart) [RHEL-88891] - net: ip: make ip_route_input() return drop reasons (Antoine Tenart) [RHEL-88891] - net: ip: make ip_route_input_noref() return drop reasons (Antoine Tenart) [RHEL-88891] - net: ip: make ip_route_input_rcu() return drop reasons (Antoine Tenart) [RHEL-88891] - net: ip: make ip_route_input_slow() return drop reasons (Antoine Tenart) [RHEL-88891] - net: ip: make ip_mc_validate_source() return drop reason (Antoine Tenart) [RHEL-88891] - net: ip: make ip_route_input_mc() return drop reason (Antoine Tenart) [RHEL-88891] - net: ip: make fib_validate_source() support drop reasons (Antoine Tenart) [RHEL-88891] - objtool, x86/hweight: Remove ANNOTATE_IGNORE_ALTERNATIVE (Joe Lawrence) [RHEL-94124] - jump_label: adjust inline asm to be consistent (Joe Lawrence) [RHEL-94124] - objtool: Speed up SHT_GROUP reindexing (Joe Lawrence) [RHEL-94124] - objtool: Fix up st_info in COMDAT group section (Joe Lawrence) [RHEL-94124] - objtool/rust: add one more `noreturn` Rust function for Rust 1.87.0 (Joe Lawrence) [RHEL-94124] - objtool/rust: add one more `noreturn` Rust function for Rust 1.86.0 (Joe Lawrence) [RHEL-94124] - objtool: Remove ANNOTATE_IGNORE_ALTERNATIVE from CLAC/STAC (Joe Lawrence) [RHEL-94124] - objtool, xen: Fix INSN_SYSCALL / INSN_SYSRET semantics (Joe Lawrence) [RHEL-94124] - objtool: Stop UNRET validation on UD2 (Joe Lawrence) [RHEL-94124] - objtool: Split INSN_CONTEXT_SWITCH into INSN_SYSCALL and INSN_SYSRET (Joe Lawrence) [RHEL-94124] - objtool: Fix INSN_CONTEXT_SWITCH handling in validate_unret() (Joe Lawrence) [RHEL-94124] - objtool: Fix X86_FEATURE_SMAP alternative handling (Joe Lawrence) [RHEL-94124] - x86/hweight: Use asm_inline() instead of asm() (Joe Lawrence) [RHEL-94124] - x86/hweight: Use ASM_CALL_CONSTRAINT in inline asm() (Joe Lawrence) [RHEL-94124] - x86/hweight: Use named operands in inline asm() (Joe Lawrence) [RHEL-94124] - x86: use proper 'clac' and 'stac' opcode names (Joe Lawrence) [RHEL-94124] - KVM: SVM: Set/clear SRSO's BP_SPEC_REDUCE on 0 <=> 1 VM count transitions (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Prevent installing hugepages when mem attributes are changing (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Update dump_ghcb() to use the GHCB snapshot fields (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Check and free obsolete roots in kvm_mmu_reload() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Check that the high 32bits are clear in kvm_arch_vcpu_ioctl_run() (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Forcibly leave SMM mode on SHUTDOWN interception (Maxim Levitsky) [RHEL-82917] - KVM: x86: Do not use kvm_rip_read() unconditionally for KVM_PROFILING (Maxim Levitsky) [RHEL-82917] - KVM: x86: Do not use kvm_rip_read() unconditionally in KVM tracepoints (Maxim Levitsky) [RHEL-82917] - KVM: SVM: WARN if an invalid posted interrupt IRTE entry is added (Maxim Levitsky) [RHEL-82917] - iommu/amd: WARN if KVM attempts to set vCPU affinity without posted intrrupts (Maxim Levitsky) [RHEL-82917] - iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE (Maxim Levitsky) [RHEL-82917] - KVM: x86: Take irqfds.lock when adding/deleting IRQ bypass producer (Maxim Levitsky) [RHEL-82917] - KVM: x86: Explicitly treat routing entry type changes as changes (Maxim Levitsky) [RHEL-82917] - KVM: x86: Reset IRTE to host control if *new* route isn't postable (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Allocate IR data using atomic allocation (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Don't update IRTEs if APICv/AVIC is disabled (Maxim Levitsky) [RHEL-82917] - KVM: arm64, x86: make kvm_arch_has_irq_bypass() inline (Maxim Levitsky) [RHEL-82917] - tools headers: Update the KVM headers with the kernel sources (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Use separate subclasses for PI wakeup lock to squash false positive (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Assert that IRQs are disabled when putting vCPU on PI wakeup list (Maxim Levitsky) [RHEL-82917] - KVM: x86: Explicitly zero-initialize on-stack CPUID unions (Maxim Levitsky) [RHEL-82917] - KVM: Allow building irqbypass.ko as as module when kvm.ko is a module (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Wrap sanity check on number of TDP MMU pages with KVM_PROVE_MMU (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add option to rseq test to override /dev/cpu_dma_latency (Maxim Levitsky) [RHEL-82917] - KVM: x86: Acquire SRCU in KVM_GET_MP_STATE to protect guest memory accesses (Maxim Levitsky) [RHEL-82917] {CVE-2025-23141} - Documentation: kvm: remove KVM_CAP_MIPS_TE (Maxim Levitsky) [RHEL-82917] - Documentation: kvm: organize capabilities in the right section (Maxim Levitsky) [RHEL-82917] - Documentation: kvm: fix some definition lists (Maxim Levitsky) [RHEL-82917] - Documentation: kvm: drop "Capability" heading from capabilities (Maxim Levitsky) [RHEL-82917] - Documentation: kvm: give correct name for KVM_CAP_SPAPR_MULTITCE (Maxim Levitsky) [RHEL-82917] - Documentation: KVM: KVM_GET_SUPPORTED_CPUID now exposes TSC_DEADLINE (Maxim Levitsky) [RHEL-82917] - selftests: kvm: list once tests that are valid on all architectures (Maxim Levitsky) [RHEL-82917] - selftests: kvm: bring list of exit reasons up to date (Maxim Levitsky) [RHEL-82917] - selftests: kvm: revamp MONITOR/MWAIT tests (Maxim Levitsky) [RHEL-82917] - KVM: x86: block KVM_CAP_SYNC_REGS if guest state is protected (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add infrastructure for secure TSC (Maxim Levitsky) [RHEL-82917] - KVM: x86: Push down setting vcpu.arch.user_set_tsc (Maxim Levitsky) [RHEL-82917] - KVM: x86: move vm_destroy callback at end of kvm_arch_destroy_vm (Maxim Levitsky) [RHEL-82917] - KVM: x86: Remove the unreachable case for 0x80000022 leaf in __do_cpuid_func() (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Use named operands in inline asm (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Extract checks on entry/exit control pairs to a helper macro (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Invalidate "next" SNP VMSA GPA even on failure (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Use guard(mutex) to simplify SNP vCPU state updates (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Mark VMCB dirty before processing incoming snp_vmsa_gpa (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Use guard(mutex) to simplify SNP AP Creation error handling (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Simplify request+kick logic in SNP AP Creation handling (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Require AP's "requested" SEV_FEATURES to match KVM's view (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Don't change target vCPU state on AP Creation VMGEXIT error (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Refuse to attempt VRMUN if an SEV-ES+ guest has an invalid VMSA (Maxim Levitsky) [RHEL-82917] - KVM: x86: Always set mp_state to RUNNABLE on wakeup from HLT (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Relax assertion on HLT exits if CPU supports Idle HLT (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Inject #GP if memory operand for INVPCID is non-canonical (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Reject KVM_RUN if userspace forces emulation during nested VM-Enter (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Remove tdp_mmu_for_each_pte() (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Decouple EPT RWX bits from EPT Violation protection bits (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Remove EPT_VIOLATIONS_ACC_*_BIT defines (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Fix spelling mistake "UFFDIO_CONINUE" -> "UFFDIO_CONTINUE" (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Always use IBPB to properly virtualize IBRS (Maxim Levitsky) [RHEL-82917] - x86/bugs: Use a static branch to guard IBPB on vCPU switch (Maxim Levitsky) [RHEL-82917] - x86/bugs: Move the X86_FEATURE_USE_IBPB check into callers (Maxim Levitsky) [RHEL-82917] - KVM: Drop kvm_arch_sync_events() now that all implementations are nops (Maxim Levitsky) [RHEL-82917] - KVM: x86: Fold guts of kvm_arch_sync_events() into kvm_arch_pre_destroy_vm() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Unload MMUs during vCPU destruction, not before (Maxim Levitsky) [RHEL-82917] - KVM: Assert that a destroyed/freed vCPU is no longer visible (Maxim Levitsky) [RHEL-82917] - KVM: x86: Don't load/put vCPU when unloading its MMU during teardown (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Add Idle HLT intercept support (Maxim Levitsky) [RHEL-82917] - tools headers: Update the x86 headers with the kernel sources (Maxim Levitsky) [RHEL-82917] - x86/cpufeatures: Add CPUID feature bit for Idle HLT intercept (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Provide helpers to set the error code (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Convert plain error code numbers to defines (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Pass XFD_ERR as pseudo-payload when injecting #NM (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Don't modify guest XFD_ERR if CR0.TS=1 (Maxim Levitsky) [RHEL-82917] - KVM: x86: Use a dedicated flow for queueing re-injected exceptions (Maxim Levitsky) [RHEL-82917] - KVM: x86: Rename and invert async #PF's send_user_only flag to send_always (Maxim Levitsky) [RHEL-82917] - KVM: x86: Don't inject PV async #PF if SEND_ALWAYS=0 and guest state is protected (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add a nested (forced) emulation intercept test for x86 (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Synthesize nested VM-Exit for supported emulation intercepts (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Allow the caller to provide instruction length on nested VM-Exit (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add a #define for the architectural max instruction length (Maxim Levitsky) [RHEL-82917] - KVM: x86: Plumb the emulator's starting RIP into nested intercept checks (Maxim Levitsky) [RHEL-82917] - KVM: x86: Plumb the src/dst operand types through to .check_intercept() (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Consolidate missing X86EMUL_INTERCEPTED logic in L2 emulation (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Emulate HLT in L2 if it's not intercepted (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Allow emulating RDPID on behalf of L2 (Maxim Levitsky) [RHEL-82917] - KVM: nSVM: Pass next RIP, not current RIP, for nested VM-Exit on emulation (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Check PAUSE_EXITING, not BUS_LOCK_DETECTION, on PAUSE emulation (Maxim Levitsky) [RHEL-82917] - KVM: x86: Override TSC_STABLE flag for Xen PV clocks in kvm_guest_time_update() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Setup Hyper-V TSC page before Xen PV clocks (during clock update) (Maxim Levitsky) [RHEL-82917] - KVM: x86: Remove per-vCPU "cache" of its reference pvclock (Maxim Levitsky) [RHEL-82917] - KVM: x86: Pass reference pvclock as a param to kvm_setup_guest_pvclock() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Set PVCLOCK_GUEST_STOPPED only for kvmclock, not for Xen PV clock (Maxim Levitsky) [RHEL-82917] - KVM: x86: Don't bleed PVCLOCK_GUEST_STOPPED across PV clocks (Maxim Levitsky) [RHEL-82917] - KVM: x86/xen: Use guest's copy of pvclock when starting timer (Maxim Levitsky) [RHEL-82917] - KVM: x86: Process "guest stopped request" once per guest time update (Maxim Levitsky) [RHEL-82917] - KVM: x86: Drop local pvclock_flags variable in kvm_guest_time_update() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Eliminate "handling" of impossible errors during SUSPEND (Maxim Levitsky) [RHEL-82917] - KVM: x86: Don't take kvm->lock when iterating over vCPUs in suspend notifier (Maxim Levitsky) [RHEL-82917] - KVM: x86: Update Xen TSC leaves during CPUID emulation (Maxim Levitsky) [RHEL-82917] - KVM: x86/xen: Move kvm_xen_hvm_config field into kvm_xen (Maxim Levitsky) [RHEL-82917] - KVM: x86/xen: Bury xen_hvm_config behind CONFIG_KVM_XEN=y (Maxim Levitsky) [RHEL-82917] - KVM: x86/xen: Consult kvm_xen_enabled when checking for Xen MSR writes (Maxim Levitsky) [RHEL-82917] - KVM: x86/xen: Add an #ifdef'd helper to detect writes to Xen MSR (Maxim Levitsky) [RHEL-82917] - KVM: x86/xen: Restrict hypercall MSR to unofficial synthetic range (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Walk rmaps (shadow MMU) without holding mmu_lock when aging gfns (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Add support for lockless walks of rmap SPTEs (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Add infrastructure to allow walking rmaps outside of mmu_lock (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Refactor low level rmap helpers to prep for walking w/o mmu_lock (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Only check gfn age in shadow MMU if indirect_shadow_pages > 0 (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Skip shadow MMU test_young if TDP MMU reports page as young (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Age TDP MMU SPTEs without holding mmu_lock (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Always update A/D-disabled SPTEs atomically (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Don't force atomic update if only the Accessed bit is volatile (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Factor out spte atomic bit clearing routine (Maxim Levitsky) [RHEL-82917] - KVM: Allow lockless walk of SPTEs when handing aging mmu_notifier event (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add infrastructure for getting vCPU binary stats (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Adjust number of files rlimit for all "standard" VMs (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Get VM's binary stats FD when opening VM (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add struct and helpers to wrap binary stats cache (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Macrofy vm_get_stat() to auto-generate stat name string (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Assert that __vm_get_stat() actually finds a stat (Maxim Levitsky) [RHEL-82917] - KVM: Rename kvm_handle_hva_range() (Maxim Levitsky) [RHEL-82917] - KVM: SEV: Use long-term pin when registering encrypted memory regions (Maxim Levitsky) [RHEL-82917] - KVM: x86: Defer runtime updates of dynamic CPUID bits until CPUID emulation (Maxim Levitsky) [RHEL-82917] - KVM: x86: Query X86_FEATURE_MWAIT iff userspace owns the CPUID feature bit (Maxim Levitsky) [RHEL-82917] - KVM: x86: Apply TSX_CTRL_CPUID_CLEAR if and only if the vCPU has RTM or HLE (Maxim Levitsky) [RHEL-82917] - KVM: x86: Use for-loop to iterate over XSTATE size entries (Maxim Levitsky) [RHEL-82917] - KVM: x86/cpuid: add type suffix to decimal const 48 fix building warning (Maxim Levitsky) [RHEL-82917] - KVM: x86: Clear pv_unhalted on all transitions to KVM_MP_STATE_RUNNABLE (Maxim Levitsky) [RHEL-82917] - KVM: x86: Introduce kvm_set_mp_state() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Use kvfree_rcu() to free old optimized APIC map (Maxim Levitsky) [RHEL-82917] - KVM: x86: Wake vCPU for PIC interrupt injection iff a valid IRQ was found (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Close VM's binary stats FD when releasing VM (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Fix mostly theoretical leak of VM's binary stats FD (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Actually emit forced emulation prefix for kvm_asm_safe_fep() (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Print out the actual Top-Down Slots count on failure (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Drop the "feature event" param from guest test helpers (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Remove dead code in Intel PMU counters test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Only validate counts for hardware-supported arch events (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Make Intel arch events globally available in PMU counters test (Maxim Levitsky) [RHEL-82917] - KVM: SEV: Use to_kvm_sev_info() for fetching kvm_sev_info struct (Maxim Levitsky) [RHEL-82917] - KVM: x86: Remove unused iommu_domain and iommu_noncoherent from kvm_arch (Maxim Levitsky) [RHEL-82917] - KVM: x86/xen: Only write Xen hypercall page for guest writes to MSR (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add helpers for locally (un)blocking IRQs on x86 (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Use data load to trigger LLC references/misses in Intel PMU (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add printf attribute to _no_printf() (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Remove unneeded semicolon (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add defines for AMD PMU CPUID features and properties (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Fix typos in x86's PMU counter test's macro variable use (Maxim Levitsky) [RHEL-82917] - KVM: x86: Explicitly zero EAX and EBX when PERFMON_V2 isn't supported by KVM (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Fix printf() format goof in SEV smoke test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Ensure all vCPUs hit -EFAULT during initial RO stage (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Don't rely on DebugSwap to restore host DR0..DR3 (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Save host DR masks on CPUs with DebugSwap (Maxim Levitsky) [RHEL-82917] - KVM: x86: Snapshot the host's DEBUGCTL after disabling IRQs (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Manually context switch DEBUGCTL if LBR virtualization is disabled (Maxim Levitsky) [RHEL-82917] - KVM: x86: Snapshot the host's DEBUGCTL in common x86 (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Suppress DEBUGCTL.BTF on AMD (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Drop DEBUGCTL[5:2] from guest's effective value (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Assert that STI blocking isn't set after event injection (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Set RFLAGS.IF=1 in C code, to get VMRUN out of the STI shadow (Maxim Levitsky) [RHEL-82917] - kvm: retry nx_huge_page_recovery_thread creation (Maxim Levitsky) [RHEL-82917] - vhost_task: fix vhost_task_create() documentation (Maxim Levitsky) [RHEL-82917] - vhost: return task creation error instead of NULL (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Process events on nested VM-Exit if injectable IRQ or NMI is pending (Maxim Levitsky) [RHEL-82917] - KVM: x86: Free vCPUs before freeing VM state (Maxim Levitsky) [RHEL-82917] - KVM: x86: Load DR6 with guest value only before entering .vcpu_run() loop (Maxim Levitsky) [RHEL-82917] {CVE-2025-21839} - KVM: nSVM: Enter guest mode before initializing nested NPT MMU (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add CPUID tests for Hyper-V features that need in-kernel APIC (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Manage CPUID array in Hyper-V CPUID test's core helper (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Mark test_hv_cpuid_e2big() static in Hyper-V CPUID test (Maxim Levitsky) [RHEL-82917] - KVM: x86: Reject Hyper-V's SEND_IPI hypercalls if local APIC isn't in-kernel (Maxim Levitsky) [RHEL-82917] {CVE-2025-21779} - KVM: x86/mmu: Ensure NX huge page recovery thread is alive before waking (Maxim Levitsky) [RHEL-82917] - KVM: remove kvm_arch_post_init_vm (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Fix spelling mistake "initally" -> "initially" (Maxim Levitsky) [RHEL-82917] - KVM: Do not restrict the size of KVM-internal memory regions (Maxim Levitsky) [RHEL-82917] - kvm: defer huge page recovery vhost task to later (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Return RET_PF* instead of 1 in kvm_mmu_page_fault() (Maxim Levitsky) [RHEL-82917] - KVM: Disallow all flags for KVM-internal memslots (Maxim Levitsky) [RHEL-82917] - KVM: x86: Drop double-underscores from __kvm_set_memory_region() (Maxim Levitsky) [RHEL-82917] - KVM: Add a dedicated API for setting KVM-internal memslots (Maxim Levitsky) [RHEL-82917] - KVM: Assert slots_lock is held when setting memory regions (Maxim Levitsky) [RHEL-82917] - KVM: Open code kvm_set_memory_region() into its sole caller (ioctl() API) (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Use str_enabled_disabled() helper in svm_hardware_setup() (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Fix comment of handle_vmx_instruction() (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Reinstate __exit attribute for vmx_exit() (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Use str_enabled_disabled() helper in sev_hardware_setup() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Avoid double RDPKRU when loading host/guest PKRU (Maxim Levitsky) [RHEL-82917] - KVM: x86: Use LVT_TIMER instead of an open coded literal (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Prevent aliased memslot GFNs (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Don't zap valid mirror roots in kvm_tdp_mmu_zap_all() (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Take root types for kvm_tdp_mmu_invalidate_all_roots() (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Propagate tearing down mirror page tables (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Propagate building mirror page tables (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Propagate attr_filter to MMU notifier callbacks (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Support mirror root for TDP MMU (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Take root in tdp_mmu_for_each_pte() (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Introduce KVM MMU root types to specify page table type (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Extract root invalid check from tdx_mmu_next_root() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Support GFN direct bits (Maxim Levitsky) [RHEL-82917] - KVM: x86/tdp_mmu: Take struct kvm in iter loops (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Make kvm_tdp_mmu_alloc_root() return void (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Add an is_mirror member for union kvm_mmu_page_role (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Add an external pointer to struct kvm_mmu_page (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add a VM type define for TDX (Maxim Levitsky) [RHEL-82917] - KVM: Add member to struct kvm_gfn_range to indicate private/shared (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Zap invalid roots with mmu_lock holding for write at uninit (Maxim Levitsky) [RHEL-82917] - KVM: guest_memfd: Remove RCU-protected attribute from slot->gmem.file (Maxim Levitsky) [RHEL-82917] - KVM: x86: Refactor __kvm_emulate_hypercall() into a macro (Maxim Levitsky) [RHEL-82917] - KVM: x86: Always complete hypercall via function callback (Maxim Levitsky) [RHEL-82917] - KVM: x86: Bump hypercall stat prior to fully completing hypercall (Maxim Levitsky) [RHEL-82917] - KVM: x86: Move "emulate hypercall" function declarations to x86.h (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add a helper to check for user interception of KVM hypercalls (Maxim Levitsky) [RHEL-82917] - KVM: x86: clear vcpu->run->hypercall.ret before exiting for KVM_EXIT_HYPERCALL (Maxim Levitsky) [RHEL-82917] - KVM: x86: Remove hwapic_irr_update() from kvm_x86_ops (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Honor event priority when emulating PI delivery during VM-Enter (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Use vmcs01's controls shadow to check for IRQ/NMI windows at VM-Enter (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Drop manual vmcs01.GUEST_INTERRUPT_STATUS.RVI check at VM-Enter (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Check for pending INIT/SIPI after entering non-root mode (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Explicitly update vPPR on successful nested VM-Enter (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Allow toggling bits in MSR_IA32_RTIT_CTL when enable bit is cleared (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Defer SVI update to vmcs01 on EOI when L2 is active w/o VID (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add information about pending requests to kvm_exit tracepoint (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add interrupt injection information to the kvm_entry tracepoint (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add test case for MMIO during vectoring on x86 (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add and use a helper function for x86's LIDT (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Handle event vectoring error in check_emulate_instruction() (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Handle event vectoring error in check_emulate_instruction() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Try to unprotect and retry on unhandleable emulation failure (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add emulation status for unhandleable exception vectoring (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add function for vectoring error generation (Maxim Levitsky) [RHEL-82917] - KVM: x86: Use only local variables (no bitmask) to init kvm_cpu_caps (Maxim Levitsky) [RHEL-82917] - KVM: x86: Explicitly track feature flags that are enabled at runtime (Maxim Levitsky) [RHEL-82917] - KVM: x86: Explicitly track feature flags that require vendor enabling (Maxim Levitsky) [RHEL-82917] - KVM: x86: Rename "SF" macro to "SCATTERED_F" (Maxim Levitsky) [RHEL-82917] - KVM: x86: Pull CPUID capabilities from boot_cpu_data only as needed (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add a macro for features that are synthesized into boot_cpu_data (Maxim Levitsky) [RHEL-82917] - KVM: x86: Drop superfluous host XSAVE check when adjusting guest XSAVES caps (Maxim Levitsky) [RHEL-82917] - KVM: x86: Replace (almost) all guest CPUID feature queries with cpu_caps (Maxim Levitsky) [RHEL-82917] - KVM: x86: Shuffle code to prepare for dropping guest_cpuid_has() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Update guest cpu_caps at runtime for dynamic CPUID-based features (Maxim Levitsky) [RHEL-82917] - KVM: x86: Update OS{XSAVE,PKE} bits in guest CPUID irrespective of host support (Maxim Levitsky) [RHEL-82917] - KVM: x86: Drop unnecessary check that cpuid_entry2_find() returns right leaf (Maxim Levitsky) [RHEL-82917] - KVM: x86: Avoid double CPUID lookup when updating MWAIT at runtime (Maxim Levitsky) [RHEL-82917] - KVM: x86: Initialize guest cpu_caps based on KVM support (Maxim Levitsky) [RHEL-82917] - KVM: x86: Treat MONTIOR/MWAIT as a "partially emulated" feature (Maxim Levitsky) [RHEL-82917] - KVM: x86: Extract code for generating per-entry emulated CPUID information (Maxim Levitsky) [RHEL-82917] - KVM: x86: Initialize guest cpu_caps based on guest CPUID (Maxim Levitsky) [RHEL-82917] - KVM: x86: Replace guts of "governed" features with comprehensive cpu_caps (Maxim Levitsky) [RHEL-82917] - KVM: x86: Rename "governed features" helpers to use "guest_cpu_cap" (Maxim Levitsky) [RHEL-82917] - KVM: x86: Advertise HYPERVISOR in KVM_GET_SUPPORTED_CPUID (Maxim Levitsky) [RHEL-82917] - KVM: x86: Advertise TSC_DEADLINE_TIMER in KVM_GET_SUPPORTED_CPUID (Maxim Levitsky) [RHEL-82917] - KVM: x86: Remove all direct usage of cpuid_entry2_find() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Move kvm_find_cpuid_entry{,_index}() up near cpuid_entry2_find() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Always operate on kvm_vcpu data in cpuid_entry2_find() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Remove unnecessary caching of KVM's PV CPUID base (Maxim Levitsky) [RHEL-82917] - KVM: x86: Clear PV_UNHALT for !HLT-exiting only when userspace sets CPUID (Maxim Levitsky) [RHEL-82917] - KVM: x86: Swap incoming guest CPUID into vCPU before massaging in KVM_SET_CPUID2 (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add a macro to init CPUID features that KVM emulates in software (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add a macro to init CPUID features that ignore host kernel support (Maxim Levitsky) [RHEL-82917] - KVM: x86: Harden CPU capabilities processing against out-of-scope features (Maxim Levitsky) [RHEL-82917] - KVM: x86: #undef SPEC_CTRL_SSBD in cpuid.c to avoid macro collisions (Maxim Levitsky) [RHEL-82917] - KVM: x86: Handle kernel- and KVM-defined CPUID words in a single helper (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add a macro to precisely handle aliased 0x1.EDX CPUID features (Maxim Levitsky) [RHEL-82917] - KVM: x86: Add a macro to init CPUID features that are 64-bit only (Maxim Levitsky) [RHEL-82917] - KVM: x86: Rename kvm_cpu_cap_mask() to kvm_cpu_cap_init() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Unpack F() CPUID feature flag macros to one flag per line of code (Maxim Levitsky) [RHEL-82917] - KVM: x86: Account for max supported CPUID leaf when getting raw host CPUID (Maxim Levitsky) [RHEL-82917] - KVM: x86: Do reverse CPUID sanity checks in __feature_leaf() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Don't update PV features caches when enabling enforcement capability (Maxim Levitsky) [RHEL-82917] - KVM: x86: Zero out PV features cache when the CPUID leaf is not present (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Update x86's KVM PV test to match KVM's disabling exits behavior (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Fix a bad TEST_REQUIRE() in x86's KVM PV test (Maxim Levitsky) [RHEL-82917] - KVM: x86: Drop the now unused KVM_X86_DISABLE_VALID_EXITS (Maxim Levitsky) [RHEL-82917] - KVM: x86: Reject disabling of MWAIT/HLT interception when not allowed (Maxim Levitsky) [RHEL-82917] - KVM: x86: Disallow KVM_CAP_X86_DISABLE_EXITS after vCPU creation (Maxim Levitsky) [RHEL-82917] - KVM: x86: Drop now-redundant MAXPHYADDR and GPA rsvd bits from vCPU creation (Maxim Levitsky) [RHEL-82917] - KVM: x86/pmu: Drop now-redundant refresh() during init() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Move __kvm_is_valid_cr4() definition to x86.h (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Verify KVM stuffs runtime CPUID OS bits on CR4 writes (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Refresh vCPU CPUID cache in __vcpu_get_cpuid_entry() (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Assert that vcpu->cpuid is non-NULL when getting CPUID entries (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Update x86's set_sregs_test to match KVM's CPUID enforcement (Maxim Levitsky) [RHEL-82917] - KVM: x86: Account for KVM-reserved CR4 bits when passing through CR4 on VMX (Maxim Levitsky) [RHEL-82917] - KVM: x86: Explicitly do runtime CPUID updates "after" initial setup (Maxim Levitsky) [RHEL-82917] - KVM: x86: Do all post-set CPUID processing during vCPU creation (Maxim Levitsky) [RHEL-82917] - KVM: x86: Limit use of F() and SF() to kvm_cpu_cap_{mask,init_kvm_defined}() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Use feature_bit() to clear CONSTANT_TSC when emulating CPUID (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Override ARCH for x86_64 instead of using ARCH_DIR (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Use canonical $(ARCH) paths for KVM selftests directories (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Provide empty 'all' and 'clean' targets for unsupported ARCHs (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Verify KVM correctly handles mprotect(PROT_READ) (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add a read-only mprotect() phase to mmu_stress_test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Precisely limit the number of guest loops in mmu_stress_test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Use vcpu_arch_put_guest() in mmu_stress_test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Enable mmu_stress_test on arm64 (Maxim Levitsky) [RHEL-82917] - KVM: sefltests: Explicitly include ucall_common.h in mmu_stress_test.c (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Compute number of extra pages needed in mmu_stress_test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Only muck with SREGS on x86 in mmu_stress_test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Rename max_guest_memory_test to mmu_stress_test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Check for a potential unhandled exception iff KVM_RUN succeeded (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Assert that vcpu_{g,s}et_reg() won't truncate (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Return a value from vcpu_get_reg() instead of using an out-param (Maxim Levitsky) [RHEL-82917] - KVM: Move KVM_REG_SIZE() definition to common uAPI header (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Remove redundant TLB flush on guest CR4.PGE change (Maxim Levitsky) [RHEL-82917] - KVM: SVM: Macrofy SEV=n versions of sev_xxx_guest() (Maxim Levitsky) [RHEL-82917] - KVM/x86: add comment to kvm_mmu_do_page_fault() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Plumb in the vCPU to kvm_x86_ops.hwapic_isr_update() (Maxim Levitsky) [RHEL-82917] - KVM: Drop hack that "manually" informs lockdep of kvm->lock vs. vcpu->mutex (Maxim Levitsky) [RHEL-82917] - KVM: Don't BUG() the kernel if xa_insert() fails with -EBUSY (Maxim Levitsky) [RHEL-82917] - Revert "KVM: Fix vcpu_array[0] races" (Maxim Levitsky) [RHEL-82917] - KVM: Grab vcpu->mutex across installing the vCPU's fd and bumping online_vcpus (Maxim Levitsky) [RHEL-82917] - KVM: Verify there's at least one online vCPU when iterating over all vCPUs (Maxim Levitsky) [RHEL-82917] - KVM: Explicitly verify target vCPU is online in kvm_get_vcpu() (Maxim Levitsky) [RHEL-82917] {CVE-2024-58083} - Documentation: kvm: fix typo in api.rst (Maxim Levitsky) [RHEL-82917] - KVM: x86: let it be known that ignore_msrs is a bad idea (Maxim Levitsky) [RHEL-82917] - KVM: VMX: don't include '' directly (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Treat TDP MMU faults as spurious if access is already allowed (Maxim Levitsky) [RHEL-82917] - KVM: x86: Play nice with protected guests in complete_hypercall_exit() (Maxim Levitsky) [RHEL-82917] {CVE-2024-55881} - KVM: SVM: Disable AVIC on SNP-enabled system without HvInUseWrAllowed feature (Maxim Levitsky) [RHEL-82917] - tools headers: Sync x86 kvm and cpufeature headers with the kernel (Maxim Levitsky) [RHEL-82917] - KVM: x86: Break CONFIG_KVM_X86's direct dependency on KVM_INTEL || KVM_AMD (Maxim Levitsky) [RHEL-82917] - KVM: x86: add back X86_LOCAL_APIC dependency (Maxim Levitsky) [RHEL-82917] - Revert "KVM: VMX: Move LOAD_IA32_PERF_GLOBAL_CTRL errata handling out of setup_vmcs_config()" (Maxim Levitsky) [RHEL-82917] - KVM: x86: switch hugepage recovery thread to vhost_task (Maxim Levitsky) [RHEL-82917] - KVM: x86: expose MSR_PLATFORM_INFO as a feature MSR (Maxim Levitsky) [RHEL-82917] - Documentation: KVM: fix malformed table (Maxim Levitsky) [RHEL-82917] - Documentation: kvm: reorganize introduction (Maxim Levitsky) [RHEL-82917] - Documentation: kvm: replace section numbers with links (Maxim Levitsky) [RHEL-82917] - Documentation: kvm: fix a few mistakes (Maxim Levitsky) [RHEL-82917] - KVM: powerpc: remove remaining traces of KVM_CAP_PPC_RMA (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Drop per-VM zapped_obsolete_pages list (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Remove KVM's MMU shrinker (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: WARN if huge page recovery triggered during dirty logging (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Rename make_huge_page_split_spte() to make_small_spte() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Recover TDP MMU huge page mappings in-place instead of zapping (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Refactor TDP MMU iter need resched check (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Demote the WARN on yielded in xxx_cond_resched() to KVM_MMU_WARN_ON (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Check yielded_gfn for forward progress iff resched is needed (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Ensure KVM supports AVX for SEV-ES VMSA FPU test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Drop manual XCR0 configuration from SEV smoke test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Drop manual XCR0 configuration from state test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Drop manual XCR0 configuration from AMX test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Drop manual CR4.OSXSAVE enabling from CR4/CPUID sync test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Verify XCR0 can be "downgraded" and "upgraded" (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Configure XCR0 to max supported value by default (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Rework OSXSAVE CR4=>CPUID test to play nice with AVX insns (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Mask off OSPKE and OSXSAVE when comparing CPUID entries (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Precisely mask off dynamic fields in CPUID test (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Add a testcase for disabling feature MSRs init quirk (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Verify get/set PERF_CAPABILITIES w/o guest PDMC behavior (Maxim Levitsky) [RHEL-82917] - KVM: x86: Remove ordering check b/w MSR_PLATFORM_INFO and MISC_FEATURES_ENABLES (Maxim Levitsky) [RHEL-82917] - KVM: x86: Reject userspace attempts to access ARCH_CAPABILITIES w/o support (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Remove restriction that PMU version > 0 for PERF_CAPABILITIES (Maxim Levitsky) [RHEL-82917] - KVM: x86: Reject userspace attempts to access PERF_CAPABILITIES w/o PDCM (Maxim Levitsky) [RHEL-82917] - KVM: x86: Quirk initialization of feature MSRs to KVM's max configuration (Maxim Levitsky) [RHEL-82917] - KVM: x86: Disallow changing MSR_PLATFORM_INFO after vCPU has run (Maxim Levitsky) [RHEL-82917] - KVM: x86: Co-locate initialization of feature MSRs in kvm_arch_vcpu_create() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Document an erratum in KVM_SET_VCPU_EVENTS on Intel CPUs (Maxim Levitsky) [RHEL-82917] - KVM: x86: AMD's IBPB is not equivalent to Intel's IBPB (Maxim Levitsky) [RHEL-82917] - KVM: x86: Advertise AMD_IBPB_RET to userspace (Maxim Levitsky) [RHEL-82917] - KVM: x86: Fix a comment inside __kvm_set_or_clear_apicv_inhibit() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Fix a comment inside kvm_vcpu_update_apicv() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Batch TLB flushes when zapping collapsible TDP MMU SPTEs (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Drop @max_level from kvm_mmu_max_mapping_level() (Maxim Levitsky) [RHEL-82917] - KVM: x86: Don't emit TLB flushes when aging SPTEs for mmu_notifiers (Maxim Levitsky) [RHEL-82917] - KVM: Allow arch code to elide TLB flushes when aging a young page (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Set Dirty bit for new SPTEs, even if _hardware_ A/D bits are disabled (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Dedup logic for detecting TLB flushes on leaf SPTE changes (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Stop processing TDP MMU roots for test_age if young SPTE found (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Process only valid TDP MMU roots when aging a gfn range (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Use Accessed bit even when _hardware_ A/D bits are disabled (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Set shadow_dirty_mask for EPT even if A/D bits disabled (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Set shadow_accessed_mask for EPT even if A/D bits disabled (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Add a dedicated flag to track if A/D bits are globally enabled (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: WARN and flush if resolving a TDP MMU fault clears MMU-writable (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Fold mmu_spte_update_no_track() into mmu_spte_update() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Drop ignored return value from kvm_tdp_mmu_clear_dirty_slot() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Don't flush TLBs when clearing Dirty bit in shadow MMU (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Don't force flush if SPTE update clears Accessed bit (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Fold all of make_spte()'s writable handling into one if-else (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Always set SPTE's dirty bit if it's created as writable (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Flush remote TLBs iff MMU-writable flag is cleared from RO SPTE (Maxim Levitsky) [RHEL-82917] - KVM: Protect vCPU's "last run PID" with rwlock, not RCU (Maxim Levitsky) [RHEL-82917] - KVM: Return '0' directly when there's no task to yield to (Maxim Levitsky) [RHEL-82917] - KVM: Rework core loop of kvm_vcpu_on_spin() to use a single for-loop (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Use ARRAY_SIZE for array length (Maxim Levitsky) [RHEL-82917] - KVM: selftests: Remove unused macro in the hardware disable test (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Remove the unused variable "gpa" in __invept() (Maxim Levitsky) [RHEL-82917] - KVM: Don't grab reference on VM_MIXEDMAP pfns that have a "struct page" (Maxim Levitsky) [RHEL-82917] - KVM: Drop APIs that manipulate "struct page" via pfns (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Don't mark "struct page" accessed when zapping SPTEs (Maxim Levitsky) [RHEL-82917] - KVM: Make kvm_follow_pfn.refcounted_page a required field (Maxim Levitsky) [RHEL-82917] - KVM: s390: vsie: fix virtual/physical address in unpin_scb() (Maxim Levitsky) [RHEL-82917] - KVM: s390: Use kvm_release_page_dirty() to unpin "struct page" memory (Maxim Levitsky) [RHEL-82917] - KVM: Drop gfn_to_pfn() APIs now that all users are gone (Maxim Levitsky) [RHEL-82917] - KVM: PPC: Explicitly require struct page memory for Ultravisor sharing (Maxim Levitsky) [RHEL-82917] - KVM: arm64: Use __gfn_to_page() when copying MTE tags to/from userspace (Maxim Levitsky) [RHEL-82917] - KVM: Add support for read-only usage of gfn_to_page() (Maxim Levitsky) [RHEL-82917] - KVM: Convert gfn_to_page() to use kvm_follow_pfn() (Maxim Levitsky) [RHEL-82917] - KVM: PPC: Use kvm_vcpu_map() to map guest memory to patch dcbz instructions (Maxim Levitsky) [RHEL-82917] - KVM: PPC: Remove extra get_page() to fix page refcount leak (Maxim Levitsky) [RHEL-82917] - KVM: PPC: Use kvm_faultin_pfn() to handle page faults on Book3s PR (Maxim Levitsky) [RHEL-82917] - KVM: PPC: Book3S: Mark "struct page" pfns dirty/accessed after installing PTE (Maxim Levitsky) [RHEL-82917] - KVM: PPC: Drop unused @kvm_ro param from kvmppc_book3s_instantiate_page() (Maxim Levitsky) [RHEL-82917] - KVM: PPC: Use __kvm_faultin_pfn() to handle page faults on Book3s Radix (Maxim Levitsky) [RHEL-82917] - KVM: PPC: Use __kvm_faultin_pfn() to handle page faults on Book3s HV (Maxim Levitsky) [RHEL-82917] - KVM: arm64: Use __kvm_faultin_pfn() to handle memory aborts (Maxim Levitsky) [RHEL-82917] - KVM: arm64: Mark "struct page" pfns accessed/dirty before dropping mmu_lock (Maxim Levitsky) [RHEL-82917] - KVM: PPC: e500: Use __kvm_faultin_pfn() to handle page faults (Maxim Levitsky) [RHEL-82917] - KVM: PPC: e500: Mark "struct page" pfn accessed before dropping mmu_lock (Maxim Levitsky) [RHEL-82917] - KVM: PPC: e500: Mark "struct page" dirty in kvmppc_e500_shadow_map() (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Use __kvm_faultin_page() to get APIC access page/pfn (Maxim Levitsky) [RHEL-82917] - KVM: VMX: Hold mmu_lock until page is released when updating APIC access page (Maxim Levitsky) [RHEL-82917] - KVM: Move x86's API to release a faultin page to common KVM (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Don't mark unused faultin pages as accessed (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Put refcounted pages instead of blindly releasing pfns (Maxim Levitsky) [RHEL-82917] - KVM: guest_memfd: Provide "struct page" as output from kvm_gmem_get_pfn() (Maxim Levitsky) [RHEL-82917] - KVM: guest_memfd: Pass index, not gfn, to __kvm_gmem_get_pfn() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Convert page fault paths to kvm_faultin_pfn() (Maxim Levitsky) [RHEL-82917] - KVM: Add kvm_faultin_pfn() to specifically service guest page faults (Maxim Levitsky) [RHEL-82917] - KVM: Move declarations of memslot accessors up in kvm_host.h (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Mark pages/folios dirty at the origin of make_spte() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Add helper to "finish" handling a guest page fault (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Add common helper to handle prefetching SPTEs (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Put direct prefetched pages via kvm_release_page_clean() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Add "mmu" prefix fault-in helpers to free up generic names (Maxim Levitsky) [RHEL-82917] - KVM: x86: Don't fault-in APIC access page during initial allocation (Maxim Levitsky) [RHEL-82917] - KVM: Disallow direct access (w/o mmu_notifier) to unpinned pfn by default (Maxim Levitsky) [RHEL-82917] - KVM: Get writable mapping for __kvm_vcpu_map() only when necessary (Maxim Levitsky) [RHEL-82917] - KVM: Pass in write/dirty to kvm_vcpu_map(), not kvm_vcpu_unmap() (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Mark vmcs12's APIC access page dirty when unmapping (Maxim Levitsky) [RHEL-82917] - KVM: Pin (as in FOLL_PIN) pages during kvm_vcpu_map() (Maxim Levitsky) [RHEL-82917] - KVM: Migrate kvm_vcpu_map() to kvm_follow_pfn() (Maxim Levitsky) [RHEL-82917] - KVM: pfncache: Precisely track refcounted pages (Maxim Levitsky) [RHEL-82917] - KVM: Move kvm_{set,release}_page_{clean,dirty}() helpers up in kvm_main.c (Maxim Levitsky) [RHEL-82917] - KVM: Provide refcounted page as output field in struct kvm_follow_pfn (Maxim Levitsky) [RHEL-82917] - KVM: Use plain "struct page" pointer instead of single-entry array (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Add helper to put (unmap) vmcs12 pages (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Drop pointless msr_bitmap_map field from struct nested_vmx (Maxim Levitsky) [RHEL-82917] - KVM: nVMX: Rely on kvm_vcpu_unmap() to track validity of eVMCS mapping (Maxim Levitsky) [RHEL-82917] - KVM: Use NULL for struct page pointer to indicate mremapped memory (Maxim Levitsky) [RHEL-82917] - KVM: Explicitly initialize all fields at the start of kvm_vcpu_map() (Maxim Levitsky) [RHEL-82917] - KVM: Remove pointless sanity check on @map param to kvm_vcpu_(un)map() (Maxim Levitsky) [RHEL-82917] - KVM: Introduce kvm_follow_pfn() to eventually replace "gfn_to_pfn" APIs (Maxim Levitsky) [RHEL-82917] - KVM: Drop unused "hva" pointer from __gfn_to_pfn_memslot() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Drop kvm_page_fault.hva, i.e. don't track intermediate hva (Maxim Levitsky) [RHEL-82917] - KVM: Replace "async" pointer in gfn=>pfn with "no_wait" and error code (Maxim Levitsky) [RHEL-82917] - KVM: Drop extra GUP (via check_user_page_hwpoison()) to detect poisoned page (Maxim Levitsky) [RHEL-82917] - KVM: Return ERR_SIGPENDING from hva_to_pfn() if GUP returns -EGAIN (Maxim Levitsky) [RHEL-82917] - KVM: Annotate that all paths in hva_to_pfn() might sleep (Maxim Levitsky) [RHEL-82917] - KVM: Drop @atomic param from gfn=>pfn and hva=>pfn APIs (Maxim Levitsky) [RHEL-82917] - KVM: Rename gfn_to_page_many_atomic() to kvm_prefetch_pages() (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Use gfn_to_page_many_atomic() when prefetching indirect PTEs (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Mark page/folio accessed only when zapping leaf SPTEs (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Mark folio dirty when creating SPTE, not when zapping/modifying (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Mark new SPTE as Accessed when synchronizing existing SPTE (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Invert @can_unsync and renamed to @synchronizing (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Don't overwrite shadow-present MMU SPTEs when prefaulting (Maxim Levitsky) [RHEL-82917] - KVM: x86/mmu: Skip the "try unsync" path iff the old SPTE was a leaf SPTE (Maxim Levitsky) [RHEL-82917] - KVM: Add kvm_release_page_unused() API to put pages that KVM never consumes (Maxim Levitsky) [RHEL-82917] - x86/virt: Move SEV-specific parsing into arch/x86/virt/svm (Maxim Levitsky) [RHEL-82917] - KVM: s390: selftests: Add regression tests for SORTL and DFLTCC CPU subfunctions (Maxim Levitsky) [RHEL-82917] - scsi: storvsc: Explicitly set max_segment_size to UINT_MAX (Ewan D. Milne) [RHEL-97171] - i2c: tegra: check msg length in SMBUS block read (Steve Dunnagan) [RHEL-89166] - nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request (Olga Kornievskaia) [RHEL-82689] - nfsd: fix access checking for NLM under XPRTSEC policies (Olga Kornievskaia) [RHEL-82689] - net: rename netns_local to netns_immutable (Ivan Vecera) [RHEL-92678] - selftests: Add IPv6 link-local address generation tests for GRE devices. (Guillaume Nault) [RHEL-94024] - tpm: remove kmalloc failure error message (Štěpán Horáček) [RHEL-72764] - tpm: tis: Double the timeout B to 4s (Štěpán Horáček) [RHEL-72764] - char: tpm: tpm-buf: Add sanity check fallback in read helpers (Štěpán Horáček) [RHEL-72764] - tpm: Make chip->{status,cancel,req_canceled} opt (Štěpán Horáček) [RHEL-72764] - tpm: End any active auth session before shutdown (Štěpán Horáček) [RHEL-72764] - tpm_crb: Clean-up and refactor check for idle support (Štěpán Horáček) [RHEL-72764] - tpm/tpm_ftpm_tee: fix struct ftpm_tee_private documentation (Štěpán Horáček) [RHEL-72764] - tpm, tpm_tis: Workaround failed command reception on Infineon devices (Štěpán Horáček) [RHEL-72764] - tpm, tpm_tis: Fix timeout handling when waiting for TPM status (Štěpán Horáček) [RHEL-72764] - tpm: Convert warn to dbg in tpm2_start_auth_session() (Štěpán Horáček) [RHEL-72764] - tpm: Lazily flush auth session when getting random data (Štěpán Horáček) [RHEL-72764] - tpm: ftpm_tee: remove incorrect of_match_ptr annotation (Štěpán Horáček) [RHEL-72764] - tpm: do not start chip while suspended (Štěpán Horáček) [RHEL-72764] - char: tpm: cr50: Add new device/vendor ID 0x50666666 (Štěpán Horáček) [RHEL-72764] - char: tpm: cr50: Move i2c locking to request/relinquish locality ops (Štěpán Horáček) [RHEL-72764] - char: tpm: cr50: Use generic request/relinquish locality ops (Štěpán Horáček) [RHEL-72764] - tpm: ibmvtpm: Set TPM_OPS_AUTO_STARTUP flag on driver (Štěpán Horáček) [RHEL-72764] - libstub,tpm: do not ignore failure case when reading final event log (Štěpán Horáček) [RHEL-72764] - tpm: fix unsigned/signed mismatch errors related to __calc_tpm2_event_size (Štěpán Horáček) [RHEL-72764] - tpm: do not ignore memblock_reserve return value (Štěpán Horáček) [RHEL-72764] - tpm: fix signed/unsigned bug when checking event logs (Štěpán Horáček) [RHEL-72764] - openvswitch: Stricter validation for the userspace action (Eelco Chaudron) [RHEL-84563] - openvswitch: Fix unsafe attribute parsing in output_userspace() (Eelco Chaudron) [RHEL-84563] - net: openvswitch: fix nested key length validation in the set() action (Eelco Chaudron) [RHEL-84563] {CVE-2025-37789} - net: openvswitch: remove misbehaving actions length check (Eelco Chaudron) [RHEL-84563] - openvswitch: use RCU protection in ovs_vport_cmd_fill_info() (Eelco Chaudron) [RHEL-81497 RHEL-84563] {CVE-2025-21761} - openvswitch: fix lockup on tx to unregistering netdev with carrier (Eelco Chaudron) [RHEL-84563] {CVE-2025-21681} - openvswitch: Pass on secpath details for internal port rx. (Eelco Chaudron) [RHEL-84563] - selftests: mptcp: remove rp_filter configuration (Hangbin Liu) [RHEL-80284] - selftests: netfilter: remove rp_filter configuration (Hangbin Liu) [RHEL-80284] - selftests: net: use setup_ns for SRv6 tests and remove rp_filter configuration (Hangbin Liu) [RHEL-80284] - selftests: net: use setup_ns for bareudp testing (Hangbin Liu) [RHEL-80284] - selftests: net: remove redundant rp_filter configuration (Hangbin Liu) [RHEL-80284] - selftests: net: disable rp_filter after namespace initialization (Hangbin Liu) [RHEL-80284] - ndisc: use RCU protection in ndisc_alloc_skb() (Xin Long) [RHEL-81403] {CVE-2025-21764} - tools: ynl: add all headers to makefile deps (Jose Ignacio Tornos Martinez) [RHEL-89935] - selftests: drv-net: add missing trailing backslash (Jose Ignacio Tornos Martinez) [RHEL-89935] - testing: net-drv: add basic shaper test (Jose Ignacio Tornos Martinez) [RHEL-89935] - net-shapers: implement cap validation in the core (Jose Ignacio Tornos Martinez) [RHEL-89935] - net: shaper: implement introspection support (Jose Ignacio Tornos Martinez) [RHEL-89935] - netlink: spec: add shaper introspection support (Jose Ignacio Tornos Martinez) [RHEL-89935] - net-shapers: implement shaper cleanup on queue deletion (Jose Ignacio Tornos Martinez) [RHEL-89935] - net-shapers: implement delete support for NODE scope shaper (Jose Ignacio Tornos Martinez) [RHEL-89935] - net-shapers: implement NL group operation (Jose Ignacio Tornos Martinez) [RHEL-89935] - net-shapers: implement NL set and delete operations (Jose Ignacio Tornos Martinez) [RHEL-89935] - net-shapers: implement NL get operation (Jose Ignacio Tornos Martinez) [RHEL-89935] - netlink: spec: add shaper YAML spec (Jose Ignacio Tornos Martinez) [RHEL-89935] - genetlink: extend info user-storage to match NL cb ctx (Jose Ignacio Tornos Martinez) [RHEL-89935] - perf: arm_cspmu: nvidia: monitor all ports by default (Michael Petlan) [RHEL-89489] - perf: arm_cspmu: nvidia: enable NVLINK-C2C port filtering (Michael Petlan) [RHEL-89489] - perf: arm_cspmu: nvidia: fix sysfs path in the kernel doc (Michael Petlan) [RHEL-89489] - perf: arm_cspmu: nvidia: remove unsupported SCF events (Michael Petlan) [RHEL-89489] - ice: Fix deinitializing VF in error path (Petr Oros) [RHEL-87628] {CVE-2025-21883} - ice: add E830 HW VF mailbox message limit support (Petr Oros) [RHEL-87628] - x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() (Waiman Long) [RHEL-69285] - fs/file.c: add fast path in find_next_fd() (Ian Kent) [RHEL-38569] - fs/file.c: conditionally clear full_fds (Ian Kent) [RHEL-38569] - fs/file.c: remove sanity_check and add likely/unlikely in alloc_fd() (Ian Kent) [RHEL-38569] - redhat/kernel.spec: drop modules-extra-matched for noarch (Jan Stancek) [RHEL-95740] - tracing/osnoise: Allow arbitrarily long CPU string (Tomas Glozar) [RHEL-86520] - RDMA/irdma: Remove deliver net device event (Kamal Heib) [RHEL-87577] - RDMA/irdma: Remove unused irdma_cqp_*_fpm_val_cmd functions (Kamal Heib) [RHEL-87577] - ovl: don't require "metacopy=on" for "verity" (Miklos Szeredi) [RHEL-82858] - ovl: relax redirect/metacopy requirements for lower -> data redirect (Miklos Szeredi) [RHEL-82858] - ovl: make redirect/metacopy rejection consistent (Miklos Szeredi) [RHEL-82858] - ovl: remove unused forward declaration (Miklos Szeredi) [RHEL-82858] - ovl: don't allow datadir only (Miklos Szeredi) [RHEL-82858] - smb: client: fix UAF in decryption with multichannel (CKI Backport Bot) [RHEL-94466] {CVE-2025-37750} - Merge DRM changes from upstream v6.13..v6.14 (José Expósito) [RHEL-75957] - Merge DRM changes from upstream v6.12..v6.13 (José Expósito) [RHEL-75957] - selftests/bpf: lwt_seg6local: Move test to test_progs (Hangbin Liu) [RHEL-82844] - selftests/bpf: lwt_seg6local: Remove unused routes (Hangbin Liu) [RHEL-82844] - selftests/bpf: add missing header include for htons (Hangbin Liu) [RHEL-82844] - memcg: always call cond_resched() after fn() (Radostin Stoyanov) [RHEL-81199] - memcg: fix soft lockup in the OOM process (Radostin Stoyanov) [RHEL-81199] {CVE-2024-57977} - r8169: switch away from deprecated pcim_iomap_table (Izabela Bakollari) [RHEL-89042] - r8169: increase max jumbo packet size on RTL8125/RTL8126 (Izabela Bakollari) [RHEL-89042] - r8169: add support for Intel Killer E5000 (Izabela Bakollari) [RHEL-89042] - r8169: don't scan PHY addresses > 0 (Izabela Bakollari) [RHEL-89042] - r8169: remove redundant hwmon support (Izabela Bakollari) [RHEL-89042] - r8169: add support for RTL8125D rev.b (Izabela Bakollari) [RHEL-89042] - r8169: adjust version numbering for RTL8126 (Izabela Bakollari) [RHEL-89042] - r8169: remove unused flag RTL_FLAG_TASK_RESET_NO_QUEUE_WAKE (Izabela Bakollari) [RHEL-89042] - r8169: use helper r8169_mod_reg8_cond to simplify rtl_jumbo_config (Izabela Bakollari) [RHEL-89042] - r8169: align WAKE_PHY handling with r8125/r8126 vendor drivers (Izabela Bakollari) [RHEL-89042] - r8169: improve rtl_set_d3_pll_down (Izabela Bakollari) [RHEL-89042] - r8169: improve __rtl8169_set_wol (Izabela Bakollari) [RHEL-89042] - r8169: remove leftover locks after reverted change (Izabela Bakollari) [RHEL-89042] - r8169: improve initialization of RSS registers on RTL8125/RTL8126 (Izabela Bakollari) [RHEL-89042] - r8169: fix inconsistent indenting in rtl8169_get_eth_mac_stats (Izabela Bakollari) [RHEL-89042] - r8169: add support for RTL8125D (Izabela Bakollari) [RHEL-89042] - r8169: enable EEE at 2.5G per default on RTL8125B (Izabela Bakollari) [RHEL-89042] - r8169: remove rtl_dash_loop_wait_high/low (Izabela Bakollari) [RHEL-89042] - r8169: avoid duplicated messages if loading firmware fails and switch to warn level (Izabela Bakollari) [RHEL-89042] - r8169: replace custom flag with disable_work() et al (Izabela Bakollari) [RHEL-89042] - r8169: don't take RTNL lock in rtl_task() (Izabela Bakollari) [RHEL-89042] - r8169: implement additional ethtool stats ops (Izabela Bakollari) [RHEL-89042] - r8169: enable SG/TSO on selected chip versions per default (Izabela Bakollari) [RHEL-89042] - r8169: remove original workaround for RTL8125 broken rx issue (Izabela Bakollari) [RHEL-89042] - r8169: don't apply UDP padding quirk on RTL8126A (Izabela Bakollari) [RHEL-89042] - r8169: add support for the temperature sensor being available from RTL8125B (Izabela Bakollari) [RHEL-89042] - perf trace: Add missing perf_tool__init() (Anubhav Shelat) [RHEL-83635] - HID: intel-ish-hid: Fix use-after-free issue in ishtp_hid_remove() (Tony Camuso) [RHEL-93188] - HID: intel-ish-hid: Fix use-after-free issue in hid_ishtp_cl_remove() (Tony Camuso) [RHEL-93188] - HID: intel-ish-hid: ipc: Add Panther Lake PCI device IDs (Tony Camuso) [RHEL-93188] - HID: intel-thc: fix CONFIG_HID dependency (Tony Camuso) [RHEL-93188] - HID: intel-ish-hid: Send clock sync message immediately after reset (Tony Camuso) [RHEL-93188] - HID: intel-ish-hid: fix the length of MNG_SYNC_FW_CLOCK in doorbell (Tony Camuso) [RHEL-93188] - HID: intel-ish-hid: Remove unused ishtp_cl_get_tx_* (Tony Camuso) [RHEL-93188] - HID: intel-ish-hid: Remove unused ishtp_cl_tx_empty (Tony Camuso) [RHEL-93188] - HID: intel-ish-hid: Remove unused ishtp_dev_state_str (Tony Camuso) [RHEL-93188] - HID: intel-ish-hid: Add firmware version sysfs attributes (Tony Camuso) [RHEL-93188] - HID: Fix typo in the comment (Tony Camuso) [RHEL-93188] - HID: ishtp-hid-client: replace fake-flex arrays with flex-array members (Tony Camuso) [RHEL-93188] - selftests: netfilter: fix conntrack stress test failures on debug kernels (Florian Westphal) [RHEL-76546] - selftests: netfilter: add conntrack stress test (Florian Westphal) [RHEL-76546] - netfilter: nf_conntrack: speed up reads from nf_conntrack proc file (Florian Westphal) [RHEL-76546] - NFSv4.2: fix listxattr to return selinux security label (Olga Kornievskaia) [RHEL-87405] - loop: add file_start_write() and file_end_write() (Ming Lei) [RHEL-96222] - loop: don't require ->write_iter for writable files in loop_configure (Ming Lei) [RHEL-96222] - redhat/configs: Enable CONFIG_PROVE_RAW_LOCK_NESTING for debug kernel (Waiman Long) [RHEL-79908] - locking/lockdep: Enforce PROVE_RAW_LOCK_NESTING only if ARCH_SUPPORTS_RT (Waiman Long) [RHEL-79908] - lockdep: Enable PROVE_RAW_LOCK_NESTING with PROVE_LOCKING. (Waiman Long) [RHEL-79908] - bdev: use bdev_io_min() for statx block size (Ming Lei) [RHEL-88003] - powerpc/powernv/memtrace: Fix out of bounds issue in memtrace mmap (Mamatha Inamdar) [RHEL-95931] - powerpc/vas: Return -EINVAL if the offset is non-zero in mmap() (Mamatha Inamdar) [RHEL-95931] - mptcp: Remove unused declaration mptcp_set_owner_r() (Davide Caratti) [RHEL-84538] - selftests: mptcp: validate MPJoin HMacFailure counters (Davide Caratti) [RHEL-84538] - mptcp: only inc MPJoinAckHMacFailure for HMAC failures (Davide Caratti) [RHEL-84538] - selftests: mptcp: close fd_in before returning in main_loop (Davide Caratti) [RHEL-84538] - selftests: mptcp: fix incorrect fd checks in main_loop (Davide Caratti) [RHEL-84538] - mptcp: fix NULL pointer in can_accept_new_subflow (Davide Caratti) [RHEL-84538] {CVE-2025-23145} - mptcp: sockopt: fix getting freebind & transparent (Davide Caratti) [RHEL-84538] - mptcp: sockopt: fix getting IPV6_V6ONLY (Davide Caratti) [RHEL-84538] - mptcp: Fix data stream corruption in the address announcement (Davide Caratti) [RHEL-84538] - tcp: ulp: diag: more info without CAP_NET_ADMIN (Davide Caratti) [RHEL-84538] - tcp: ulp: diag: always print the name if any (Davide Caratti) [RHEL-84538] - mptcp: fix 'scheduling while atomic' in mptcp_pm_nl_append_new_local_addr (Davide Caratti) [RHEL-84538] {CVE-2025-21938} - mptcp: reset when MPTCP opts are dropped after join (Davide Caratti) [RHEL-84538] - mptcp: always handle address removal under msk socket lock (Davide Caratti) [RHEL-84538] {CVE-2025-21875} - mptcp: micro-optimize __mptcp_move_skb() (Davide Caratti) [RHEL-84538] - mptcp: dismiss __mptcp_rmem() (Davide Caratti) [RHEL-84538] - net: dismiss sk_forward_alloc_get() (Davide Caratti) [RHEL-84538] - mptcp: cleanup mem accounting (Davide Caratti) [RHEL-84538] - mptcp: move the whole rx path under msk socket lock protection (Davide Caratti) [RHEL-84538] - mptcp: drop __mptcp_fastopen_gen_msk_ackseq() (Davide Caratti) [RHEL-84538] - mptcp: consolidate subflow cleanup (Davide Caratti) [RHEL-84538] - mptcp: pm: userspace: flags: clearer msg if no remote addr (Davide Caratti) [RHEL-84538] - selftests: mptcp: connect: -f: no reconnect (Davide Caratti) [RHEL-84538] - mptcp: blackhole only if 1st SYN retrans w/o MPC is accepted (Davide Caratti) [RHEL-84538] - mptcp: handle fastopen disconnect correctly (Davide Caratti) [RHEL-84538] {CVE-2025-21705} - mptcp: pm: only set fullmesh for subflow endp (Davide Caratti) [RHEL-84538] {CVE-2025-21706} - mptcp: consolidate suboption status (Davide Caratti) [RHEL-84538] {CVE-2025-21707} - selftests: mptcp: avoid spurious errors on disconnect (Davide Caratti) [RHEL-84538] - mptcp: fix spurious wake-up on under memory pressure (Davide Caratti) [RHEL-84538] - mptcp: be sure to send ack when mptcp-level window re-opens (Davide Caratti) [RHEL-84538] - mptcp: sysctl: avail sched: remove write access (Davide Caratti) [RHEL-84538] - mptcp: prevent excessive coalescing on receive (Davide Caratti) [RHEL-84538] - mptcp: don't always assume copied data in mptcp_cleanup_rbuf() (Davide Caratti) [RHEL-84538] - mptcp: fix recvbuffer adjust on sleeping rcvmsg (Davide Caratti) [RHEL-84538] - mptcp: remove unneeded lock when listing scheds (Davide Caratti) [RHEL-84538] - mptcp: implement mptcp_pm_connection_closed (Davide Caratti) [RHEL-84538] - dim: pass dim_sample to net_dim() by reference (CKI Backport Bot) [RHEL-89803] - dim: make dim_calc_stats() inputs const pointers (CKI Backport Bot) [RHEL-89803] - saner replacement for debugfs_rename() (Jose Ignacio Tornos Martinez) [RHEL-86507] - x86/CPU/AMD: Print the reason for the last reset (Steve Best) [RHEL-89439] - Documentation: Add AMD Zen debugging document (Steve Best) [RHEL-89439] - platform/x86/amd/pmc: Use FCH_PM_BASE definition (Steve Best) [RHEL-89439] - i2c: piix4, x86/platform: Move the SB800 PIIX4 FCH definitions to (Steve Best) [RHEL-89439] - i2c: piix4: Make CONFIG_I2C_PIIX4 dependent on CONFIG_X86 (Steve Best) [RHEL-89439] - unmaintain ahci_xgene, ahci_seattle and hisi_sas_main (Tomas Henzl) [RHEL-81214] - s390/cpumf: Update CPU Measurement facility extended counter set support (Mete Durlu) [RHEL-90739] - ext4: ignore xattrs past end (CKI Backport Bot) [RHEL-94262] {CVE-2025-37738} - ext4: fix off-by-one error in do_split (CKI Backport Bot) [RHEL-93643] {CVE-2025-23150} - lockd: add netlink control interface (Scott Mayhew) [RHEL-71698] - macintosh: declare ctl_table as const (José Expósito) [RHEL-88416] - tty: Make sysctl table const (José Expósito) [RHEL-88416] - sysctl: allow registration of const struct ctl_table (José Expósito) [RHEL-88416] - sysctl: move internal interfaces to const struct ctl_table (José Expósito) [RHEL-88416] - bpf: Constify ctl_table argument of filter function (José Expósito) [RHEL-88416] - hrtimers: Introduce hrtimer_setup() to replace hrtimer_init() (José Expósito) [RHEL-88416] - hrtimers: Add missing hrtimer_init() trace points (José Expósito) [RHEL-88416] - mm/migrate: Add migrate_device_pfns (José Expósito) [RHEL-88416] - mm: allow compound zone device pages (José Expósito) [RHEL-88416] - mm/mm_init: move p2pdma page refcount initialisation to p2pdma (José Expósito) [RHEL-88416] - drm: Move for_each_if() to util_macros.h for wider use (José Expósito) [RHEL-88416] - ksm: add ksm involvement information for each process (CKI Backport Bot) [RHEL-84770] - MAINTAINERS: Add CCA and pKVM CoCO guest support to the ARM64 entry (Mark Salter) [RHEL-80338] - selftests/mm: rename pkey register macro (Mark Salter) [RHEL-80338] - scripts/decode_stacktrace.sh: fix decoding of lines with an additional info (Mark Salter) [RHEL-80338] - scripts/decode_stacktrace.sh: remove trailing space (Mark Salter) [RHEL-80338] - redhat/configs: Enable ARM_CCA_GUEST (Mark Salter) [RHEL-80338] - arm64: Fix 5-level paging support in kexec/hibernate trampoline (Mark Salter) [RHEL-80338] - arm64/sysreg: Get rid of TRFCR_ELx SysregFields (Mark Salter) [RHEL-80338] - arm64: Remove duplicate included header (Mark Salter) [RHEL-80338] - arm64/Kconfig: Drop EXECMEM dependency from ARCH_WANTS_EXECMEM_LATE (Mark Salter) [RHEL-80338] - arm64: asm: Fix typo in pgtable.h (Mark Salter) [RHEL-80338] - arm64/mm: Ensure adequate HUGE_MAX_HSTATE (Mark Salter) [RHEL-80338] - arm64/mm: Drop INIT_MM_CONTEXT() (Mark Salter) [RHEL-80338] - Documentation: Update the behaviour of "kvm-arm.mode" (Mark Salter) [RHEL-80338] - arm64: rsi: Add automatic arm-cca-guest module loading (Mark Salter) [RHEL-80338] - arm64: Document Arm Confidential Compute (Mark Salter) [RHEL-80338] - virt: arm-cca-guest: TSM_REPORT support for realms (Mark Salter) [RHEL-80338] - arm64: Add missing registrations of hwcaps (Mark Salter) [RHEL-80338] - arm64/hwcap: Remove stray references to SF8MMx (Mark Salter) [RHEL-80338] - kselftest/arm64: Add 2024 dpISA extensions to hwcap test (Mark Salter) [RHEL-80338] - KVM: arm64: Allow control of dpISA extensions in ID_AA64ISAR3_EL1 (Mark Salter) [RHEL-80338] - arm64/hwcap: Describe 2024 dpISA extensions to userspace (Mark Salter) [RHEL-80338] - arm64/sysreg: Update ID_AA64SMFR0_EL1 to DDI0601 2024-12 (Mark Salter) [RHEL-80338] - arm64: Filter out SVE hwcaps when FEAT_SVE isn't implemented (Mark Salter) [RHEL-80338] - arm64/sme: Move storage of reg_smidr to __cpuinfo_store_cpu() (Mark Salter) [RHEL-80338] - arm64/sysreg: Update ID_AA64ISAR2_EL1 to DDI0601 2024-09 (Mark Salter) [RHEL-80338] - arm64/sysreg: Update ID_AA64ZFR0_EL1 to DDI0601 2024-09 (Mark Salter) [RHEL-80338] - arm64/sysreg: Update ID_AA64FPFR0_EL1 to DDI0601 2024-09 (Mark Salter) [RHEL-80338] - arm64/sysreg: Update ID_AA64ISAR3_EL1 to DDI0601 2024-09 (Mark Salter) [RHEL-80338] - arm64/sysreg: Update ID_AA64PFR2_EL1 to DDI0601 2024-09 (Mark Salter) [RHEL-80338] - arm64/sysreg: Get rid of CPACR_ELx SysregFields (Mark Salter) [RHEL-80338] - arm64/sysreg: Convert *_EL12 accessors to Mapping (Mark Salter) [RHEL-80338] - arm64/sysreg: Get rid of the TCR2_EL1x SysregFields (Mark Salter) [RHEL-80338] - arm64/sysreg: Allow a 'Mapping' descriptor for system registers (Mark Salter) [RHEL-80338] - arm64/cpufeature: Refactor conditional logic in init_cpu_ftr_reg() (Mark Salter) [RHEL-80338] - arm64: cpufeature: Add HAFT to cpucap_is_possible() (Mark Salter) [RHEL-80338] - arm64: mm: Test for pmd_sect() in vmemmap_check_pmd() (Mark Salter) [RHEL-80338] - arm64/mm: Replace open encodings with PXD_TABLE_BIT (Mark Salter) [RHEL-80338] - arm64/mm: Rename pte_mkpresent() as pte_mkvalid() (Mark Salter) [RHEL-80338] - arm64: Kconfig: force ARM64_PAN=y when enabling TTBR0 sw PAN (Mark Salter) [RHEL-80338] - arm64/mm: Fix Boot panic on Ampere Altra (Mark Salter) [RHEL-80338] - arm64/mm: Override PARange for !LPA2 and use it consistently (Mark Salter) [RHEL-80338] - arm64/mm: Reduce PA space to 48 bits when LPA2 is not enabled (Mark Salter) [RHEL-80338] - bpf, arm64: Emit A64_{ADD,SUB}_I when possible in emit_{lse,ll_sc}_atomic() (Mark Salter) [RHEL-80338] - bpf, arm64: Factor out emit_a64_add_i() (Mark Salter) [RHEL-80338] - bpf, arm64: Simplify if logic in emit_lse_atomic() (Mark Salter) [RHEL-80338] - redhat configs: enable CONFIG_HISILICON_ERRATUM_162100801 (Mark Salter) [RHEL-80338] - arm64: realm: Use aliased addresses for device DMA to shared buffers (Mark Salter) [RHEL-80338] - dma: Introduce generic dma_addr_*crypted helpers (Mark Salter) [RHEL-80338] - dma: Fix encryption bit clearing for dma_to_phys (Mark Salter) [RHEL-80338] - arm64: stacktrace: Don't WARN when unwinding other tasks (Mark Salter) [RHEL-80338] - arm64: stacktrace: Skip reporting LR at exception boundaries (Mark Salter) [RHEL-80338] - kselftest/arm64: mte: Skip the hugetlb tests if MTE not supported on such mappings (Mark Salter) [RHEL-80338] - kselftest/arm64: mte: Use the correct naming for tag check modes in check_hugetlb_options.c (Mark Salter) [RHEL-80338] - arm64/signal: Silence sparse warning storing GCSPR_EL0 (Mark Salter) [RHEL-80338] - irqchip/gicv3-its: Add workaround for hip09 ITS erratum 162100801 (Mark Salter) [RHEL-80338] - clocksource/drivers/arm_arch_timer: Use of_property_present() for non-boolean properties (Mark Salter) [RHEL-80338] - kselftest/arm64: Ensure stable names for GCS stress test results (Mark Salter) [RHEL-80338] - kselftest/arm64: Validate that GCS push and write permissions work (Mark Salter) [RHEL-80338] - arm64: cpufeature: Add GCS to cpucap_is_possible() (Mark Salter) [RHEL-80338] - arm64: disable ARCH_CORRECT_STACKTRACE_ON_KRETPROBE tests (Mark Salter) [RHEL-80338] - crypto: arm64/crct10dif - Remove remaining 64x64 PMULL fallback code (Mark Salter) [RHEL-80338] - crypto: arm64/crct10dif - Use faster 16x64 bit polynomial multiply (Mark Salter) [RHEL-80338] - crypto: arm64/crct10dif - Remove obsolete chunking logic (Mark Salter) [RHEL-80338] - arm64: tls: Fix context-switching of tpidrro_el0 when kpti is enabled (Mark Salter) [RHEL-80338] - arm64/ptrace: Clarify documentation of VL configuration via ptrace (Mark Salter) [RHEL-80338] - arm64/mm: Change protval as 'pteval_t' in map_range() (Mark Salter) [RHEL-80338] - arm64: uprobes: Optimize cache flushes for xol slot (Mark Salter) [RHEL-80338] - arm64: fix .data.rel.ro size assertion when CONFIG_LTO_CLANG (Mark Salter) [RHEL-80338] - arm64/mm: Sanity check PTE address before runtime P4D/PUD folding (Mark Salter) [RHEL-80338] - arm64/fpsimd: Fix a typo (Mark Salter) [RHEL-80338] - arm64: Expose ID_AA64ISAR1_EL1.XS to sanitised feature consumers (Mark Salter) [RHEL-80338] - arm64: Return early when break handler is found on linked-list (Mark Salter) [RHEL-80338] - arm64/mm: Drop _PROT_SECT_DEFAULT (Mark Salter) [RHEL-80338] - arm64: Add command-line override for ID_AA64MMFR0_EL1.ECV (Mark Salter) [RHEL-80338] - arm64: head: Drop SWAPPER_TABLE_SHIFT (Mark Salter) [RHEL-80338] - arm64: cpufeature: add POE to cpucap_is_possible() (Mark Salter) [RHEL-80338] - selftests/mm: Enable pkey_sighandler_tests on arm64 (Mark Salter) [RHEL-80338] - selftests/mm: Use generic pkey register manipulation (Mark Salter) [RHEL-80338] - arm64: signal: Remove unused macro (Mark Salter) [RHEL-80338] - arm64: signal: Remove unnecessary check when saving POE state (Mark Salter) [RHEL-80338] - arm64/scs: Drop unused prototype __pi_scs_patch_vmlinux() (Mark Salter) [RHEL-80338] - arm64/scs: Deal with 64-bit relative offsets in FDE frames (Mark Salter) [RHEL-80338] - arm64/scs: Fix handling of DWARF augmentation data in CIE/FDE frames (Mark Salter) [RHEL-80338] - arm64: preserve pt_regs::stackframe during exec*() (Mark Salter) [RHEL-80338] - arm64: stacktrace: unwind exception boundaries (Mark Salter) [RHEL-80338] - arm64: stacktrace: split unwind_consume_stack() (Mark Salter) [RHEL-80338] - arm64: stacktrace: report recovered PCs (Mark Salter) [RHEL-80338] - arm64: stacktrace: report source of unwind data (Mark Salter) [RHEL-80338] - arm64: stacktrace: move dump_backtrace() to kunwind_stack_walk() (Mark Salter) [RHEL-80338] - arm64: use a common struct frame_record (Mark Salter) [RHEL-80338] - arm64: pt_regs: swap 'unused' and 'pmr' fields (Mark Salter) [RHEL-80338] - arm64: pt_regs: rename "pmr_save" -> "pmr" (Mark Salter) [RHEL-80338] - arm64: pt_regs: remove stale big-endian layout (Mark Salter) [RHEL-80338] - arm64: pt_regs: assert pt_regs is a multiple of 16 bytes (Mark Salter) [RHEL-80338] - arm64: Support AT_HWCAP3 (Mark Salter) [RHEL-80338] - binfmt_elf: Wire up AT_HWCAP3 at AT_HWCAP4 (Mark Salter) [RHEL-80338] - arm64/crc32: Implement 4-way interleave using PMULL (Mark Salter) [RHEL-80338] - arm64/crc32: Reorganize bit/byte ordering macros (Mark Salter) [RHEL-80338] - arm64/lib: Handle CRC-32 alternative in C code (Mark Salter) [RHEL-80338] - arm64: Use SYSTEM_OFF2 PSCI call to power off for hibernate (Mark Salter) [RHEL-80338] - arm64: mops: Document requirements for hypervisors (Mark Salter) [RHEL-80338] - arm64: lib: Use MOPS for copy_page() and clear_page() (Mark Salter) [RHEL-80338] - arm64: lib: Use MOPS for memcpy() routines (Mark Salter) [RHEL-80338] - arm64: mops: Document booting requirement for HCR_EL2.MCE2 (Mark Salter) [RHEL-80338] - arm64: mops: Handle MOPS exceptions from EL1 (Mark Salter) [RHEL-80338] - arm64: probes: Disable kprobes/uprobes on MOPS instructions (Mark Salter) [RHEL-80338] - arm64: optimize flush tlb kernel range (Mark Salter) [RHEL-80338] - arm64: tlbflush: add __flush_tlb_range_limit_excess() (Mark Salter) [RHEL-80338] - arm64: insn: Simulate nop instruction for better uprobe performance (Mark Salter) [RHEL-80338] - arm64: probes: Remove probe_opcode_t (Mark Salter) [RHEL-80338] - arm64: probes: Cleanup kprobes endianness conversions (Mark Salter) [RHEL-80338] - arm64: probes: Move kprobes-specific fields (Mark Salter) [RHEL-80338] - arm64: asm-offsets: remove PREEMPT_DISABLE_OFFSET (Mark Salter) [RHEL-80338] - arm64: asm-offsets: remove DMA_{TO,FROM}_DEVICE (Mark Salter) [RHEL-80338] - arm64: asm-offsets: remove VM_EXEC and PAGE_SZ (Mark Salter) [RHEL-80338] - arm64: asm-offsets: remove MM_CONTEXT_ID (Mark Salter) [RHEL-80338] - arm64: asm-offsets: remove COMPAT_{RT_,SIGFRAME_REGS_OFFSET (Mark Salter) [RHEL-80338] - arm64: asm-offsets: remove VMA_VM_* (Mark Salter) [RHEL-80338] - arm64: asm-offsets: remove TSK_ACTIVE_MM (Mark Salter) [RHEL-80338] - KVM: arm64: Restore TCR2_EL1 register visibility to userspace (Eric Auger) [RHEL-89567] - KVM: arm64: Restore S1PIE register visibility to userspace (Eric Auger) [RHEL-89567] - s390/pci: Serialize device addition and removal (Mete Durlu) [RHEL-94944] - s390/pci: Allow re-add of a reserved but not yet removed device (Mete Durlu) [RHEL-94944] - s390/pci: Prevent self deletion in disable_slot() (Mete Durlu) [RHEL-94944] - s390/pci: Remove redundant bus removal and disable from zpci_release_device() (Mete Durlu) [RHEL-94944] - s390/pci: Fix duplicate pci_dev_put() in disable_slot() when PF has child VFs (Mete Durlu) [RHEL-94944] - s390/pci: Fix missing check for zpci_create_device() error return (Mete Durlu) [RHEL-94944] - s390/pci: Fix potential double remove of hotplug slot (Mete Durlu) [RHEL-94944] - rtla: Define _GNU_SOURCE in timerlat_bpf.c (Tomas Glozar) [RHEL-94187] - ovl: fix UAF in ovl_dentry_update_reval by moving dput() in ovl_link_up (CKI Backport Bot) [RHEL-93461] {CVE-2025-21887} - Enable NVGRACE_GPU_VFIO_PCI nvgrace-vgpu vfio variant driver in RHEL-10.1 (Donald Dutile) [RHEL-86867] - xhci: don't mess with ->d_iname (Desnes Nunes) [RHEL-78931] - debugfs: Fix the missing initializations in __debugfs_file_get() (Desnes Nunes) [RHEL-78931] - debugfs: take debugfs_short_fops definition out of ifdef (Desnes Nunes) [RHEL-78931] - debugfs: allow to store an additional opaque pointer at file creation (Desnes Nunes) [RHEL-78931] - debugfs: don't mess with bits in ->d_fsdata (Desnes Nunes) [RHEL-78931] - debugfs: get rid of dynamically allocation proxy_ops (Desnes Nunes) [RHEL-78931] - debugfs: move ->automount into debugfs_inode_info (Desnes Nunes) [RHEL-78931] - debugfs: separate cache for debugfs inodes (Desnes Nunes) [RHEL-78931] - usb: typec: tcpm: fix state transition for SNK_WAIT_CAPABILITIES state in run_state_machine() (Desnes Nunes) [RHEL-78931] - USB: serial: ftdi_sio: add support for Altera USB Blaster 3 (Desnes Nunes) [RHEL-78931] - thunderbolt: Prevent use-after-free in resume from hibernate (Desnes Nunes) [RHEL-78931] - usb: typec: ucsi: Fix NULL pointer access (Desnes Nunes) [RHEL-78931] {CVE-2025-21918} - usb: quirks: Add DELAY_INIT and NO_LPM for Prolific Mass Storage Card Reader (Desnes Nunes) [RHEL-78931] - USB: serial: option: fix Telit Cinterion FE990A name (Desnes Nunes) [RHEL-78931] - USB: serial: option: add Telit Cinterion FE990B compositions (Desnes Nunes) [RHEL-78931] - USB: serial: option: match on interface class for Telit FN990B (Desnes Nunes) [RHEL-78931] - usb: dwc3: Set SUSPENDENABLE soon after phy init (Desnes Nunes) [RHEL-78931] - usb: hub: lack of clearing xHC resources (Desnes Nunes) [RHEL-78931] - usb: dwc3: gadget: Prevent irq storm when TH re-executes (Desnes Nunes) [RHEL-78931] - xhci: Restrict USB4 tunnel detection for USB3 devices to Intel hosts (Desnes Nunes) [RHEL-78931] - Revert "drivers/card_reader/rtsx_usb: Restore interrupt based detection" (Desnes Nunes) [RHEL-78931] - usb: xhci: Enable the TRB overfetch quirk on VIA VL805 (Desnes Nunes) [RHEL-78931] - usb: typec: ucsi: increase timeout for PPM reset operations (Desnes Nunes) [RHEL-78931] - usb: atm: cxacru: fix a flaw in existing endpoint checks (Desnes Nunes) [RHEL-78931] {CVE-2025-21916} - usb: typec: tcpm: PSSourceOffTimer timeout in PR_Swap enters ERROR_RECOVERY (Desnes Nunes) [RHEL-78931] - usb: roles: set switch registered flag early on (Desnes Nunes) [RHEL-78931] - USB: quirks: add USB_QUIRK_NO_LPM quirk for Teclast dist (Desnes Nunes) [RHEL-78931] - usb: gadget: core: flush gadget workqueue after device removal (Desnes Nunes) [RHEL-78931] {CVE-2025-21838} - usb: core: fix pipe creation for get_bMaxPacketSize0 (Desnes Nunes) [RHEL-78931] - usb: dwc3: Fix timeout issue during controller enter/exit from halt state (Desnes Nunes) [RHEL-78931] - USB: Add USB_QUIRK_NO_LPM quirk for sony xperia xz1 smartphone (Desnes Nunes) [RHEL-78931] - USB: cdc-acm: Fill in Renesas R-Car D3 USB Download mode quirk (Desnes Nunes) [RHEL-78931] - usb: cdc-acm: Fix handling of oversized fragments (Desnes Nunes) [RHEL-78931] - usb: cdc-acm: Check control transfer buffer size before access (Desnes Nunes) [RHEL-78931] {CVE-2025-21704} - usb: xhci: Restore xhci_pci support for Renesas HCs (Desnes Nunes) [RHEL-78931] - USB: pci-quirks: Fix HCCPARAMS register error for LS7A EHCI (Desnes Nunes) [RHEL-78931] - USB: serial: option: drop MeiG Smart defines (Desnes Nunes) [RHEL-78931] - USB: serial: option: fix Telit Cinterion FN990A name (Desnes Nunes) [RHEL-78931] - USB: serial: option: add Telit Cinterion FN990B compositions (Desnes Nunes) [RHEL-78931] - USB: serial: option: add MeiG Smart SLM828 (Desnes Nunes) [RHEL-78931] - usb: dwc2: gadget: remove of_node reference upon udc_stop (Desnes Nunes) [RHEL-78931] - USB: hub: Ignore non-compliant devices with too many configs or interfaces (Desnes Nunes) [RHEL-78931] {CVE-2025-21776} - usb: dwc3: Document nostream_work (Desnes Nunes) [RHEL-78931] - usb: phy: generic: Use proper helper for property detection (Desnes Nunes) [RHEL-78931] - usb: hcd: Bump local buffer size in rh_string() (Desnes Nunes) [RHEL-78931] - usb: typec: tcpci: Prevent Sink disconnection before vPpsShutdown in SPR PPS (Desnes Nunes) [RHEL-78931] - usb: xhci: tegra: Fix OF boolean read warning (Desnes Nunes) [RHEL-78931] - usb: host: xhci-plat: add support compatible ID PNP0D15 (Desnes Nunes) [RHEL-78931] - usb: typec: ucsi: Add a macro definition for UCSI v1.0 (Desnes Nunes) [RHEL-78931] - usb: dwc3: core: Defer the probe until USB power supply ready (Desnes Nunes) [RHEL-78931] - usbip: Correct format specifier for seqnum from %%d to %%u (Desnes Nunes) [RHEL-78931] - usbip: Fix seqnum sign extension issue in vhci_tx_urb (Desnes Nunes) [RHEL-78931] - dt-bindings: usb: snps,dwc3: Split core description (Desnes Nunes) [RHEL-78931] - dt-bindings: usb: qcom,dwc3: Add IPQ5424 to USB DWC3 bindings (Desnes Nunes) [RHEL-78931] - usb: quirks: Add NO_LPM quirk for TOSHIBA TransMemory-Mx device (Desnes Nunes) [RHEL-78931] - usb: dwc3: gadget: Reinitiate stream for all host NoStream behavior (Desnes Nunes) [RHEL-78931] - USB: Use str_enable_disable-like helpers (Desnes Nunes) [RHEL-78931] - USB: typec: Use str_enable_disable-like helpers (Desnes Nunes) [RHEL-78931] - USB: host: Use str_enable_disable-like helpers (Desnes Nunes) [RHEL-78931] - USB: Replace own str_plural with common one (Desnes Nunes) [RHEL-78931] - memstick: core: fix kernel-doc notation (Desnes Nunes) [RHEL-78931] - usb: phy: Remove API devm_usb_put_phy() (Desnes Nunes) [RHEL-78931] - usb: typec: tcpm: set SRC_SEND_CAPABILITIES timeout to PD_T_SENDER_RESPONSE (Desnes Nunes) [RHEL-78931] - usb: host: xhci-plat: Assign shared_hcd->rsrc_start (Desnes Nunes) [RHEL-78931] - usb: dwc3-am62: Fix an OF node leak in phy_syscon_pll_refclk() (Desnes Nunes) [RHEL-78931] - usb: dwc3: Skip resume if pm_runtime_set_active() fails (Desnes Nunes) [RHEL-78931] - dt-bindings: usb: Correct indentation and style in DTS example (Desnes Nunes) [RHEL-78931] - drivers/card_reader/rtsx_usb: Restore interrupt based detection (Desnes Nunes) [RHEL-78931] - media: dvb-usb-v2: af9035: fix ISO C90 compilation error on af9035_i2c_master_xfer (Desnes Nunes) [RHEL-78931] - USB: serial: ch341: use fix-width types consistently (Desnes Nunes) [RHEL-78931] - USB: serial: ch341: add hardware flow control RTS/CTS (Desnes Nunes) [RHEL-78931] - thunderbolt: Expose router DROM through debugfs (Desnes Nunes) [RHEL-78931] - usb: typec: class: Remove both cable_match() and partner_match() (Desnes Nunes) [RHEL-78931] - usb: typec: ucsi: Implement ChromeOS UCSI driver (Desnes Nunes) [RHEL-78931] - usb: cdns3: remove redundant if branch (Desnes Nunes) [RHEL-78931] - thunderbolt: Handle DisplayPort tunnel activation asynchronously (Desnes Nunes) [RHEL-78931] - thunderbolt: Rework tb_tunnel_consumed_bandwidth() (Desnes Nunes) [RHEL-78931] - thunderbolt: Move forward declarations in one place (Desnes Nunes) [RHEL-78931] - thunderbolt: Pass reason to tb_dp_resource_unavailable() (Desnes Nunes) [RHEL-78931] - thunderbolt: Drop tb_tunnel_restart() (Desnes Nunes) [RHEL-78931] - thunderbolt: Rework how tunnel->[init|deinit] hooks are called (Desnes Nunes) [RHEL-78931] - thunderbolt: Show path name in debug log when path is deactivated (Desnes Nunes) [RHEL-78931] - thunderbolt: Make tb_tunnel_one_dp() return void (Desnes Nunes) [RHEL-78931] - thunderbolt: Increase DPRX capabilities read timeout (Desnes Nunes) [RHEL-78931] - thunderbolt: Debug log an invalid config space reply just once (Desnes Nunes) [RHEL-78931] - thunderbolt: Log config space when invalid config space reply is received (Desnes Nunes) [RHEL-78931] - thunderbolt: Drop doubled empty line from ctl.h (Desnes Nunes) [RHEL-78931] - thunderbolt: debugfs: Add write capability to path config space (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Add Kurokesu C1 PRO camera (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Add new quirk definition for the Sonix Technology Co. 292a camera (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Implement dual stream quirk to fix loss of usb packets (Desnes Nunes) [RHEL-78931] - USB: usbip: Update USB/IP OP_REP_IMPORT documentation. (Desnes Nunes) [RHEL-78931] - xhci: Add missing capability definition bits (Desnes Nunes) [RHEL-78931] - xhci: Add command completion parameter support (Desnes Nunes) [RHEL-78931] - xhci: dbgtty: Improve performance by handling received data immediately. (Desnes Nunes) [RHEL-78931] - xhci: dbc: Improve performance by removing delay in transfer event polling. (Desnes Nunes) [RHEL-78931] - phy: qcom-qusb2: Add support for QCS615 (Desnes Nunes) [RHEL-78931] - dt-bindings: usb: qcom,dwc3: Add QCS615 to USB DWC3 bindings (Desnes Nunes) [RHEL-78931] - phy: core: Simplify API of_phy_simple_xlate() implementation (Desnes Nunes) [RHEL-78931] - usb: typec: Print err when displayport fails to enter (Desnes Nunes) [RHEL-78931] - usb: typec: Make active on port altmode writable (Desnes Nunes) [RHEL-78931] - usb: typec: thunderbolt: Remove IS_ERR check for plug (Desnes Nunes) [RHEL-78931] - usb: typec: thunderbolt: Fix loops that iterate TYPEC_PLUG_SOP_P and TYPEC_PLUG_SOP_PP (Desnes Nunes) [RHEL-78931] - usb: typec: Add driver for Thunderbolt 3 Alternate Mode (Desnes Nunes) [RHEL-78931] - redhat/configs: Enable CONFIG_TYPEC_TBT_ALTMODE in RHEL (Desnes Nunes) [RHEL-78931] - usb: typec: Only use SVID for matching altmodes (Desnes Nunes) [RHEL-78931] - modpost: call module_alias_printf() from all do_*_entry() functions (Desnes Nunes) [RHEL-78931] - modpost: pass (struct module *) to do_*_entry() functions (Desnes Nunes) [RHEL-78931] - modpost: introduce module_alias_printf() helper (Desnes Nunes) [RHEL-78931] - modpost: remove unnecessary check in do_acpi_entry() (Desnes Nunes) [RHEL-78931] - modpost: remove incorrect code in do_eisa_entry() (Desnes Nunes) [RHEL-78931] - usb: core: sysfs: Constify 'struct bin_attribute' (Desnes Nunes) [RHEL-78931] - usbip: Accept arbitrarily long scatter-gather list (Desnes Nunes) [RHEL-78931] - usb: typec: tcpm: Add new AMS for Get_Revision response (Desnes Nunes) [RHEL-78931] - usb: typec: tcpm: Add support for parsing pd-revision DT property (Desnes Nunes) [RHEL-78931] - dt-bindings: connector: Add pd-revision property (Desnes Nunes) [RHEL-78931] - usb: typec: tcpci: set local CC to Rd only when cc1/cc2 status is Rp (Desnes Nunes) [RHEL-78931] - USB: usblp: remove redundant semicolon (Desnes Nunes) [RHEL-78931] - USB: Optimize goto logic in API usb_register_driver() (Desnes Nunes) [RHEL-78931] - usb: dwc3: dwc3-am62: Re-initialize controller if lost power in PM suspend (Desnes Nunes) [RHEL-78931] - usb: common: expand documentation for USB functions (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Announce the user our deprecation intentions (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Allow changing noparam on the fly (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Invert default value for nodrop module param (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Propagate buf->error to userspace (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Flush the control cache when we get an event (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Annotate lock requirements for uvc_ctrl_set (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Remove dangling pointers (Desnes Nunes) [RHEL-78931] {CVE-2024-58002} - media: uvcvideo: Remove redundant NULL assignment (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Only save async fh if success (Desnes Nunes) [RHEL-78931] - MAINTAINERS: Add missing file entries for the USB video class driver (Desnes Nunes) [RHEL-78931] - docs: media: update location of the media patches (Desnes Nunes) [RHEL-78931] - MAINTAINERS: update location of media main tree (Desnes Nunes) [RHEL-78931] - MAINTAINERS: mailmap: update Alexey Klimov's email address (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Refactor frame parsing code into a uvc_parse_frame function (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Remove duplicated cap/out code (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Use uvc_query_name in uvc_get_video_ctrl (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Add more logging to uvc_query_ctrl() (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Support partial control reads (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Fix event flags in uvc_ctrl_send_events (Desnes Nunes) [RHEL-78931] - media: uvcvideo: Fix double free in error path (Desnes Nunes) [RHEL-78931] {CVE-2024-57980} - media: uvcvideo: Fix crash during unbind if gpio unit is in use (Desnes Nunes) [RHEL-78931] {CVE-2024-58079} - media: uvcvideo: Reorder uvc_status_init() (Desnes Nunes) [RHEL-78931] - mmc: core: Drop the MMC_RSP_R1_NO_CRC response (Desnes Nunes) [RHEL-78931] - phy: qualcomm: qmp-pcie: add support for SAR2130P (Desnes Nunes) [RHEL-78931] - phy: qualcomm: qmp-pcie: define several new registers (Desnes Nunes) [RHEL-78931] - phy: qualcomm: qmp-pcie: split PCS_LANE1 region (Desnes Nunes) [RHEL-78931] - phy: qualcomm: qmp-combo: add support for SAR2130P (Desnes Nunes) [RHEL-78931] - phy: qcom: qmp: Add phy register and clk setting for QCS615 PCIe (Desnes Nunes) [RHEL-78931] - dt-bindings: phy: qcom,sc8280xp-qmp-pcie-phy: Add SAR2130P compatible (Desnes Nunes) [RHEL-78931] - dt-bindings: phy: qcom,sc8280xp-qmp-pcie-phy: Document the QCS615 QMP PCIe PHY Gen3 x1 (Desnes Nunes) [RHEL-78931] - dt-bindings: phy: qcom,sc8280xp-qmp-usb43dp: Add SAR2130P compatible (Desnes Nunes) [RHEL-78931] - extcon: Drop explicit initialization of struct i2c_device_id::driver_data to 0 (Desnes Nunes) [RHEL-78931] - extcon: realtek: fix NULL deref check in extcon_rtk_type_c_probe (Desnes Nunes) [RHEL-78931] - Documentation: extcon: add documentation for Extcon subsystem (Desnes Nunes) [RHEL-78931] - usb: storage: add a macro for the upper limit of max LUN (Desnes Nunes) [RHEL-78931] - USB: Fix the issue of task recovery failure caused by USB status when S4 wakes up (Desnes Nunes) [RHEL-78931] - usb: chipidea: host: Improve port index sanitizing (Desnes Nunes) [RHEL-78931] - usb: dwc3: core: Disable USB2 retry for DWC_usb31 1.80a and prior (Desnes Nunes) [RHEL-78931] - dt-bindings: usb: qcom,dwc3: Make ss_phy_irq optional for X1E80100 (Desnes Nunes) [RHEL-78931] - usb: collapse USB_STORAGE Kconfig comment (Desnes Nunes) [RHEL-78931] - usb: gadget: functionfs: fix spellos (Desnes Nunes) [RHEL-78931] - usb: dwc3: remove unused sg struct member (Desnes Nunes) [RHEL-78931] - phy: qcom: qmp: Enable IPQ5424 support (Desnes Nunes) [RHEL-78931] - dt-bindings: phy: qcom,qmp-usb: Add IPQ5424 USB3 PHY (Desnes Nunes) [RHEL-78931] - phy: qcom-qusb2: add QUSB2 support for IPQ5424 (Desnes Nunes) [RHEL-78931] - dt-bindings: phy: qcom,qusb2: Document IPQ5424 compatible (Desnes Nunes) [RHEL-78931] - phy: tegra194: p2u: Allow to enable driver on Tegra234 (Desnes Nunes) [RHEL-78931] - serial: 8250_dma: terminate correct DMA in tx_dma_flush() (Derek Barbosa) [RHEL-89498] - serial: 8250: Fix fifo underflow on flush (Derek Barbosa) [RHEL-89498] - tty: serial: 8250: Fix another runtime PM usage counter underflow (Derek Barbosa) [RHEL-89498] - Flush console log from kernel_power_off() (Derek Barbosa) [RHEL-89498] - printk: Fix signed integer overflow when defining LOG_BUF_LEN_MAX (Derek Barbosa) [RHEL-89498] - printk: Defer legacy printing when holding printk_cpu_sync (Derek Barbosa) [RHEL-89498] - redhat: add namespace selftests to kernel-modules-internal package (Joel Savitz) [RHEL-88630] - iommu/amd: Enable support for up to 2K interrupts per function (Eder Zulian) [RHEL-24190] - iommu/amd: Rename DTE_INTTABLEN* and MAX_IRQS_PER_TABLE macro (Eder Zulian) [RHEL-24190] - iommu/amd: Replace slab cache allocator with page allocator (Eder Zulian) [RHEL-24190] - iommu/amd: Introduce generic function to set multibit feature value (Eder Zulian) [RHEL-24190] - qed: remove cast to pointers passed to kfree (John Meneghini) [RHEL-72644] - net: qed: make 'qed_ll2_ops_pass' as __maybe_unused (John Meneghini) [RHEL-72644] - net: qed: fix typos (John Meneghini) [RHEL-72644] - scsi: Constify struct pci_error_handlers (John Meneghini) [RHEL-72644] - scsi: qedf: Constify 'struct bin_attribute' (John Meneghini) [RHEL-72644] - scsi: Constify struct pci_device_id (John Meneghini) [RHEL-72644] - qed: fix possible uninit pointer read in qed_mcp_nvm_info_populate() (John Meneghini) [RHEL-72644] - net/qed: allow old cards not supporting "num_images" to work (John Meneghini) [RHEL-72644] - scsi: qedf: Fix a possible memory leak in qedf_alloc_and_init_sb() (John Meneghini) [RHEL-72644] - scsi: qedf: Remove dead code (John Meneghini) [RHEL-72644] - net: qlogic: use ethtool string helpers (John Meneghini) [RHEL-72644] - tools/net/ynl: ethtool: fix crash when Hardware Clock info is missing (Hangbin Liu) [RHEL-78772] - crypto: iaa - Do not clobber req->base.data (Vladis Dronov) [RHEL-87766] - crypto: iaa - Move compression CRC into request object (Vladis Dronov) [RHEL-87766] - crypto: iaa - Test the correct request flag (Vladis Dronov) [RHEL-87766] - MAINTAINERS: Add Vinicius Gomes to MAINTAINERS for IAA Crypto (Vladis Dronov) [RHEL-87766] - crypto: iaa - Fix IAA disabling that occurs when sync_mode is set to 'async' (Vladis Dronov) [RHEL-87766] - platform/x86/intel/pmt: allow user offset for PMT callbacks (José Expósito) [RHEL-85955] - jiffies: Cast to unsigned long in secs_to_jiffies() conversion (José Expósito) [RHEL-85955] - jiffies: Define secs_to_jiffies() (José Expósito) [RHEL-85955] - ASoC: hdmi-codec: move no_capture_mute to struct hdmi_codec_pdata (José Expósito) [RHEL-85955] - ASoC: hdmi-codec: pass data to get_dai_id too (José Expósito) [RHEL-85955] - kthread: modify kernel-doc function name to match code (José Expósito) [RHEL-85955] - kthread: Fix return value on kzalloc() failure in kthread_affine_preferred() (José Expósito) [RHEL-85955] - rcu: Use kthread preferred affinity for RCU exp kworkers (José Expósito) [RHEL-85955] - treewide: Introduce kthread_run_worker[_on_cpu]() (José Expósito) [RHEL-85955] - kthread: Unify kthread_create_on_cpu() and kthread_create_worker_on_cpu() automatic format (José Expósito) [RHEL-85955] - rcu: Use kthread preferred affinity for RCU boost (José Expósito) [RHEL-85955] - kthread: Implement preferred affinity (José Expósito) [RHEL-85955] - mm: Create/affine kswapd to its preferred node (José Expósito) [RHEL-85955] - mm: Create/affine kcompactd to its preferred node (José Expósito) [RHEL-85955] - kthread: Default affine kthread to its preferred NUMA node (José Expósito) [RHEL-85955] - kthread: Make sure kthread hasn't started while binding it (José Expósito) [RHEL-85955] - sched,arm64: Handle CPU isolation on last resort fallback rq selection (José Expósito) [RHEL-85955] - arm64: Exclude nohz_full CPUs from 32bits el0 support (José Expósito) [RHEL-85955] - lib: test_objpool: Use kthread_run_on_cpu() (José Expósito) [RHEL-85955] - kallsyms: Use kthread_run_on_cpu() (José Expósito) [RHEL-85955] - soc/qman: test: Use kthread_run_on_cpu() (José Expósito) [RHEL-85955] - scsi: qedi: Use kthread_create_on_cpu() (José Expósito) [RHEL-85955] - scsi: bnx2i: Use kthread_create_on_cpu() (José Expósito) [RHEL-85955] - scsi: bnx2fc: Use kthread_create_on_cpu() (José Expósito) [RHEL-85955] - firmware: stratix10-svc: Use kthread_run_on_cpu() (José Expósito) [RHEL-85955] - arm/bL_switcher: Use kthread_run_on_cpu() (José Expósito) [RHEL-85955] - cgroup/dmem: Don't open-code css_for_each_descendant_pre (José Expósito) [RHEL-85955] - cgroup/rdma: Drop bogus PAGE_COUNTER select (José Expósito) [RHEL-85955] - doc/cgroup: Fix title underline length (José Expósito) [RHEL-85955] - drm/doc: Include new drm-compute documentation (José Expósito) [RHEL-85955] - cgroup/dmem: Fix parameters documentation (José Expósito) [RHEL-85955] - cgroup/dmem: Select PAGE_COUNTER (José Expósito) [RHEL-85955] - kernel/cgroup: Add "dmem" memory accounting cgroup (José Expósito) [RHEL-85955] - redhat/configs: Add new configs from drm 6.14 backport (José Expósito) [RHEL-85955] - media: uapi: Add MEDIA_BUS_FMT_RGB101010_1X7X5_{SPWG, JEIDA} (José Expósito) [RHEL-85955] - fbdev: Fix recursive dependencies wrt BACKLIGHT_CLASS_DEVICE (José Expósito) [RHEL-85955] - drm/xe: remove unused xe_pciids.h harder, add missing PCI ID (José Expósito) [RHEL-85955] - drm/xe: switch to common PCI ID macros (José Expósito) [RHEL-85955] - drm/xe/ptl: Add PTL platform definition (José Expósito) [RHEL-85955] - drm/intel/pciids: rename i915_pciids.h to just pciids.h (José Expósito) [RHEL-85955] - drm/i915/pciids: add PVC PCI ID macros (José Expósito) [RHEL-85955] - drm/i915/xe3lpd: reuse xe2lpd definition (José Expósito) [RHEL-85955] - drm/i915/pciids: separate ARL and MTL PCI IDs (José Expósito) [RHEL-85955] - drm/i915/pciids: use designated initializers in INTEL_VGA_DEVICE() (José Expósito) [RHEL-85955] - fs: port files to file_ref (José Expósito) [RHEL-85955] - fs: add file_ref (José Expósito) [RHEL-85955] - fs: protect backing files with rcu (José Expósito) [RHEL-85955] - redhat/configs: Add new configs from drm 6.13 backport (José Expósito) [RHEL-85955] - vmxnet3: unregister xdp rxq info in the reset path (CKI Backport Bot) [RHEL-92474] - ionic: add module eeprom channel data to ionic_if and ethtool (Mohammad Heib) [RHEL-88152] - ionic: support ethtool get_module_eeprom_by_page (Mohammad Heib) [RHEL-88152] - ionic: extend the QSFP module sprom for more pages (Mohammad Heib) [RHEL-88152] - ionic: use ee->offset when returning sprom data (Mohammad Heib) [RHEL-88152] - ionic: no double destroy workqueue (Mohammad Heib) [RHEL-88152] - ionic: Fix netdev notifier unregister on failure (Mohammad Heib) [RHEL-88152] - ionic: remove the unused nb_work (Mohammad Heib) [RHEL-88152] - ionic: add support for QSFP_PLUS_CMIS (Mohammad Heib) [RHEL-88152] - ionic: add speed defines for 200G and 400G (Mohammad Heib) [RHEL-88152] - ionic: Translate IONIC_RC_ENOSUPP to EOPNOTSUPP (Mohammad Heib) [RHEL-88152] - ionic: Use VLAN_ETH_HLEN when possible (Mohammad Heib) [RHEL-88152] - ionic: add asic codes to firmware interface file (Mohammad Heib) [RHEL-88152] - ext4: goto right label 'out_mmap_sem' in ext4_setattr() (Brian Foster) [RHEL-85400] - jbd2: flush filesystem device before updating tail sequence (Brian Foster) [RHEL-85400] - jbd2: increase IO priority for writing revoke records (Brian Foster) [RHEL-85400] - jbd2: Fix comment describing journal_init_common() (Brian Foster) [RHEL-85400] - ext4: prevent an infinite loop in the lazyinit thread (Brian Foster) [RHEL-85400] - ext4: use struct_size() to improve ext4_htree_store_dirent() (Brian Foster) [RHEL-85400] - ext4: annotate struct fname with __counted_by() (Brian Foster) [RHEL-85400] - ext4: use str_yes_no() helper function (Brian Foster) [RHEL-85400] - ext4: prevent delalloc to nodelalloc on remount (Brian Foster) [RHEL-85400] - jbd2: make b_frozen_data allocation always succeed (Brian Foster) [RHEL-85400] - ext4: cleanup variable name in ext4_fc_del() (Brian Foster) [RHEL-85400] - ext4: use string choices helpers (Brian Foster) [RHEL-85400] - jbd2: remove the 'success' parameter from the jbd2_do_replay() function (Brian Foster) [RHEL-85400] - jbd2: remove useless 'block_error' variable (Brian Foster) [RHEL-85400] - jbd2: factor out jbd2_do_replay() (Brian Foster) [RHEL-85400] - jbd2: refactor JBD2_COMMIT_BLOCK process in do_one_pass() (Brian Foster) [RHEL-85400] - jbd2: unified release of buffer_head in do_one_pass() (Brian Foster) [RHEL-85400] - jbd2: remove redundant judgments for check v1 checksum (Brian Foster) [RHEL-85400] - ext4: use ERR_CAST to return an error-valued pointer (Brian Foster) [RHEL-85400] - ext4: partial zero eof block on unaligned inode size extension (Brian Foster) [RHEL-85400] - ext4: disambiguate the return value of ext4_dio_write_end_io() (Brian Foster) [RHEL-85400] - ext4: pass write-hint for buffered IO (Brian Foster) [RHEL-85400] - ext4: fix race in buffer_head read fault injection (Brian Foster) [RHEL-85400] - ext4: don't pass full mapping flags to ext4_es_insert_extent() (Brian Foster) [RHEL-85400] - ext4: mark ctx_*_flags() with __maybe_unused (Brian Foster) [RHEL-85400] - ext4: return error on syncfs after shutdown (Brian Foster) [RHEL-85400] - fs: ext4: Don't use CMA for buffer_head (Brian Foster) [RHEL-85400] - ext4: simplify if condition (Brian Foster) [RHEL-85400] - ext4: fix FS_IOC_GETFSMAP handling (Brian Foster) [RHEL-85400] - ext4: WARN if a full dir leaf block has only one dentry (Brian Foster) [RHEL-85400] - ext4: show the default enabled prefetch_block_bitmaps option (Brian Foster) [RHEL-85400] - ext4: Do not fallback to buffered-io for DIO atomic write (Brian Foster) [RHEL-85400] - ext4: Support setting FMODE_CAN_ATOMIC_WRITE (Brian Foster) [RHEL-85400] - ext4: Check for atomic writes support in write iter (Brian Foster) [RHEL-85400] - ext4: Add statx support for atomic writes (Brian Foster) [RHEL-85400] - ext4: avoid remount errors with 'abort' mount option (Brian Foster) [RHEL-85400] - ext4: supress data-race warnings in ext4_free_inodes_{count,set}() (Brian Foster) [RHEL-85400] - ext4: Call ext4_journal_stop(handle) only once in ext4_dio_write_iter() (Brian Foster) [RHEL-85400] - module: Convert symbol namespace to string literal (Eder Zulian) [RHEL-78707] - iommu/vt-d: Fix possible circular locking dependency (Eder Zulian) [RHEL-78701] - iommu/amd: Fix header file (Eder Zulian) [RHEL-78701] - iommu/vt-d: Fix suspicious RCU usage (Eder Zulian) [RHEL-78701] {CVE-2025-21876} - iommu/vt-d: Remove device comparison in context_setup_pass_through_cb (Eder Zulian) [RHEL-78701] - iommu/amd: Preserve default DTE fields when updating Host Page Table Root (Eder Zulian) [RHEL-78701] - redhat/configs: Remove CONFIG_DMA_API_DEBUG_SG (Eder Zulian) [RHEL-78701] - powerpc/pseries/iommu: IOMMU incorrectly marks MMIO range in DDW (Eder Zulian) [RHEL-78701] {CVE-2024-57999} - scatterlist: fix a typo (Eder Zulian) [RHEL-78701] - docs/core-api: swiotlb: fix typos (Eder Zulian) [RHEL-78701] - redhat/configs: enable ARM_SMMU_MMU_500_CPRE_ERRATA (Eder Zulian) [RHEL-78702] - redhat/configs: Enable CONFIG_ARM_SMMU_V3_IOMMUFD (Eder Zulian) [RHEL-78702] - iommu/vt-d: Make intel_iommu_drain_pasid_prq() cover faults for RID (Eder Zulian) [RHEL-78701] - iommu: Fix a spelling error (Eder Zulian) [RHEL-78701] - iommu/amd: Expicitly enable CNTRL.EPHEn bit in resume path (Eder Zulian) [RHEL-78701] - iommu: Fix potential memory leak in iopf_queue_remove_device() (Eder Zulian) [RHEL-78701] {CVE-2025-21770} - iommu/hyper-v: Don't assume cpu_possible_mask is dense (Eder Zulian) [RHEL-78701] - iommufd: Keep OBJ/IOCTL lists in an alphabetical order (Eder Zulian) [RHEL-78707] - iommufd: Deal with IOMMU_HWPT_FAULT_ID_VALID in iommufd core (Eder Zulian) [RHEL-78707] - iommufd/selftest: Remove domain_alloc_paging() (Eder Zulian) [RHEL-78707] - iommu/amd: Fully decode all combinations of alloc_paging_flags (Eder Zulian) [RHEL-78701] - iommu/amd: Move the nid to pdom_setup_pgtable() (Eder Zulian) [RHEL-78701] - iommu/amd: Change amd_iommu_pgtable to use enum protection_domain_mode (Eder Zulian) [RHEL-78701] - iommu/amd: Remove type argument from do_iommu_domain_alloc() and related (Eder Zulian) [RHEL-78701] - iommu/amd: Remove dev == NULL checks (Eder Zulian) [RHEL-78701] - iommu/amd: Remove domain_alloc() (Eder Zulian) [RHEL-78701] - iommu/amd: Remove unused amd_iommu_domain_update() (Eder Zulian) [RHEL-78701] - iommu/amd: remove return value of amd_iommu_detect (Eder Zulian) [RHEL-78701] - iommu/amd: Remove amd_iommu_apply_erratum_63() (Eder Zulian) [RHEL-75907] - iommu/amd: Lock DTE before updating the entry with WRITE_ONCE() (Eder Zulian) [RHEL-75907] - iommu/amd: Modify clear_dte_entry() to avoid in-place update (Eder Zulian) [RHEL-75907] - iommu/amd: Introduce helper function get_dte256() (Eder Zulian) [RHEL-75907] - iommu/amd: Modify set_dte_entry() to use 256-bit DTE helpers (Eder Zulian) [RHEL-75907] - iommu/amd: Introduce helper function to update 256-bit DTE (Eder Zulian) [RHEL-75907] - iommu/amd: Introduce struct ivhd_dte_flags to store persistent DTE flags (Eder Zulian) [RHEL-75907] - iommu/amd: Disable AMD IOMMU if CMPXCHG16B feature is not supported (Eder Zulian) [RHEL-75907] - iommu/amd: Misc ACPI IVRS debug info clean up (Eder Zulian) [RHEL-75907] - iommu/vt-d: Link cache tags of same iommu unit together (Eder Zulian) [RHEL-78701] - iommu/vt-d: Draining PRQ in sva unbind path when FPD bit set (Eder Zulian) [RHEL-78701] - iommu/vt-d: Remove iommu cap audit (Eder Zulian) [RHEL-78701] - iommu/vt-d: Remove domain_alloc_paging() (Eder Zulian) [RHEL-78701] - iommu/vt-d: Avoid use of NULL after WARN_ON_ONCE (Eder Zulian) [RHEL-78701] {CVE-2025-21833} - iommu: Use str_enable_disable-like helpers (Eder Zulian) [RHEL-78701] - iommu: Remove the remove_dev_pasid op (Eder Zulian) [RHEL-78701] - iommu/amd: Make the blocked domain support PASID (Eder Zulian) [RHEL-78701] - iommu/vt-d: Make the blocked domain support PASID (Eder Zulian) [RHEL-78701] - iommu/arm-smmu-v3: Make the blocked domain support PASID (Eder Zulian) [RHEL-78701] - iommu: Detaching pasid by attaching to the blocked_domain (Eder Zulian) [RHEL-78701] - iommu: Consolidate the ops->remove_dev_pasid usage into a helper (Eder Zulian) [RHEL-78701] - iommu: Prevent pasid attach if no ops->remove_dev_pasid (Eder Zulian) [RHEL-78701] - iommu/arm-smmu-v3: Add missing #include of linux/string_choices.h (Eder Zulian) [RHEL-78702] - iommu/arm-smmu-v3: Use str_read_write helper w/ logs (Eder Zulian) [RHEL-78702] - iommu/io-pgtable-arm: Add way to debug pgtable walk (Eder Zulian) [RHEL-78702] - iommu/io-pgtable-arm: Re-use the pgtable walk for iova_to_phys (Eder Zulian) [RHEL-78702] - iommu/io-pgtable-arm: Make pgtable walker more generic (Eder Zulian) [RHEL-78702] - iommu/arm-smmu: Add ACTLR data and support for qcom_smmu_500 (Eder Zulian) [RHEL-78702] - iommu/arm-smmu: Introduce ACTLR custom prefetcher settings (Eder Zulian) [RHEL-78702] - iommu/arm-smmu: Add support for PRR bit setup (Eder Zulian) [RHEL-78702] - iommu/arm-smmu: Refactor qcom_smmu structure to include single pointer (Eder Zulian) [RHEL-78702] - iommu/arm-smmu: Re-enable context caching in smmu reset operation (Eder Zulian) [RHEL-78702] - iommu/tegra241-cmdqv: Read SMMU IDR1.CMDQS instead of hardcoding (Eder Zulian) [RHEL-78702] - iommu/io-pgtable-arm: Fix cfg reading in arm_lpae_concat_mandatory() (Eder Zulian) [RHEL-78702] - iommu/io-pgtable-arm: Add coverage for different OAS in selftest (Eder Zulian) [RHEL-78702] - iommu/io-pgtable-arm: Fix stage-2 concatenation with 16K (Eder Zulian) [RHEL-78702] - iommu/arm-smmu-v3: Remove domain_alloc_paging() (Eder Zulian) [RHEL-78702] - iommu/arm-smmu-v3: Make domain_alloc_paging_flags() directly determine the S1/S2 (Eder Zulian) [RHEL-78702] - iommu/arm-smmu-v3: Remove arm_smmu_domain_finalise() during attach (Eder Zulian) [RHEL-78702] - iommu/arm-smmu-v3: Document SVA interaction with new pagetable features (Eder Zulian) [RHEL-78702] - iommu: Manage driver probe deferral better (Eder Zulian) [RHEL-78702] - iommu/arm-smmu-v3: Clean up more on probe failure (Eder Zulian) [RHEL-78702] - iommu/arm-smmu: Retire probe deferral workaround (Eder Zulian) [RHEL-78702] - iommu/arm-smmu: Make instance lookup robust (Eder Zulian) [RHEL-78702] - iommu/arm-smmuv3: Update comments about ATS and bypass (Eder Zulian) [RHEL-78702] - iommu/arm-smmu-v3: Log better event records (Eder Zulian) [RHEL-78702] - iommu/arm-smmu-v3: Introduce struct arm_smmu_event (Eder Zulian) [RHEL-78702] - iommu/arm-smmu-qcom: add sdm670 adreno iommu compatible (Eder Zulian) [RHEL-78702] - iommu/vt-d: Avoid draining PRQ in sva mm release path (Eder Zulian) [RHEL-78701] - iommu/amd: Add lockdep asserts for domain->dev_list (Eder Zulian) [RHEL-78701] - iommu/amd: Put list_add/del(dev_data) back under the domain->lock (Eder Zulian) [RHEL-78701] - iommu/arm-smmu-v3: Improve uAPI comment for IOMMU_HW_INFO_TYPE_ARM_SMMUV3 (Eder Zulian) [RHEL-78702] - iommufd/selftest: Cover IOMMU_FAULT_QUEUE_ALLOC in iommufd_fail_nth (Eder Zulian) [RHEL-78707] - iommufd: Fix typos in kernel-doc comments (Eder Zulian) [RHEL-78707] - dma-debug: fix physical address calculation for struct dma_debug_entry (Eder Zulian) [RHEL-78701] - iommu: Rename ops->domain_alloc_user() to domain_alloc_paging_flags() (Eder Zulian) [RHEL-78701] - iommu: Add ops->domain_alloc_nested() (Eder Zulian) [RHEL-78701] - iommu/amd: Improve amd_iommu_release_device() (Eder Zulian) [RHEL-78701] - iommu/amd: Add ops->release_domain (Eder Zulian) [RHEL-78701] - iommu/amd: Reorder attach device code (Eder Zulian) [RHEL-78701] - iommu/amd: Convert dev_data lock from spinlock to mutex (Eder Zulian) [RHEL-78701] - iommu/amd: Rearrange attach device code (Eder Zulian) [RHEL-78701] - iommu/amd: Reduce domain lock scope in attach device path (Eder Zulian) [RHEL-78701] - iommu/amd: Do not detach devices in domain free path (Eder Zulian) [RHEL-78701] - iommu/amd: Remove unused amd_iommus variable (Eder Zulian) [RHEL-78701] - iommu/amd: xarray to track protection_domain->iommu list (Eder Zulian) [RHEL-78701] - iommu/amd: Remove protection_domain.dev_cnt variable (Eder Zulian) [RHEL-78701] - iommu/amd: Use ida interface to manage protection domain ID (Eder Zulian) [RHEL-78701] - iommu/amd: Fix corruption when mapping large pages from 0 (Eder Zulian) [RHEL-78701] - iommu/amd: Do not try copy old DTE resume path (Eder Zulian) [RHEL-78701] - iommu/amd: Use atomic64_inc_return() in iommu.c (Eder Zulian) [RHEL-78701] - iommu: Make set_dev_pasid op support domain replacement (Eder Zulian) [RHEL-78701] - iommu/arm-smmu-v3: Make set_dev_pasid() op support replace (Eder Zulian) [RHEL-78701] - iommu/vt-d: Add set_dev_pasid callback for nested domain (Eder Zulian) [RHEL-78701] - iommu/vt-d: Make identity_domain_set_dev_pasid() to handle domain replacement (Eder Zulian) [RHEL-78701] - iommu/vt-d: Make intel_svm_set_dev_pasid() support domain replacement (Eder Zulian) [RHEL-78701] - iommu/vt-d: Limit intel_iommu_set_dev_pasid() for paging domain (Eder Zulian) [RHEL-78701] - iommu/vt-d: Make intel_iommu_set_dev_pasid() to handle domain replacement (Eder Zulian) [RHEL-78701] - iommu/vt-d: Add iommu_domain_did() to get did (Eder Zulian) [RHEL-78701] - iommu/vt-d: Consolidate the struct dev_pasid_info add/remove (Eder Zulian) [RHEL-78701] - iommu/vt-d: Add pasid replace helpers (Eder Zulian) [RHEL-78701] - iommu/vt-d: Refactor the pasid setup helpers (Eder Zulian) [RHEL-78701] - iommu/vt-d: Add a helper to flush cache for updating present pasid entry (Eder Zulian) [RHEL-78701] - iommu: Pass old domain to set_dev_pasid op (Eder Zulian) [RHEL-78701] - iommu/vt-d: Drain PRQs when domain removed from RID (Eder Zulian) [RHEL-78701] - iommu/vt-d: Drop pasid requirement for prq initialization (Eder Zulian) [RHEL-78701] - iommufd: Enable PRI when doing the iommufd_hwpt_alloc (Eder Zulian) [RHEL-78701] - iommu/vt-d: Move IOMMU_IOPF into INTEL_IOMMU (Eder Zulian) [RHEL-78701] - iommu/vt-d: Remove the pasid present check in prq_event_thread (Eder Zulian) [RHEL-78701] - iommu/vt-d: Separate page request queue from SVM (Eder Zulian) [RHEL-78701] - iommu/vt-d: Drop s1_pgtbl from dmar_domain (Eder Zulian) [RHEL-78701] - iommu/vt-d: Remove unused dmar_msi_read (Eder Zulian) [RHEL-78701] - iommu/vt-d: Increase buffer size for device name (Eder Zulian) [RHEL-78701] - iommu/vt-d: Use PCI_DEVID() macro (Eder Zulian) [RHEL-78701] - iommu/vt-d: Refine intel_iommu_domain_alloc_user() (Eder Zulian) [RHEL-78701] - iommu/vt-d: Refactor first_level_by_default() (Eder Zulian) [RHEL-78701] - iommu/vt-d: Remove domain_update_iommu_superpage() (Eder Zulian) [RHEL-78701] - iommu/vt-d: Remove domain_update_iommu_cap() (Eder Zulian) [RHEL-78701] - iommu/vt-d: Enhance compatibility check for paging domain attach (Eder Zulian) [RHEL-78701] - iommu/vt-d: Remove unused domain_alloc callback (Eder Zulian) [RHEL-78701] - iommu/vt-d: Add domain_alloc_paging support (Eder Zulian) [RHEL-78701] - iommu/iova: Fix typo 'adderss' (Eder Zulian) [RHEL-78701] - iommu: Restore iommu_flush_iotlb_all() (Eder Zulian) [RHEL-78701] - iommu: Fix prototype of iommu_paging_domain_alloc_flags() (Eder Zulian) [RHEL-78701] - iommu: Create __iommu_alloc_identity_domain() (Eder Zulian) [RHEL-78701] - iommu: Put domain allocation in __iommu_group_alloc_blocking_domain() (Eder Zulian) [RHEL-78701] - iommu/amd: Implement global identity domain (Eder Zulian) [RHEL-78701] - iommu/amd: Enhance amd_iommu_domain_alloc_user() (Eder Zulian) [RHEL-78701] - iommu/amd: Pass page table type as param to pdom_setup_pgtable() (Eder Zulian) [RHEL-78701] - iommu/amd: Separate page table setup from domain allocation (Eder Zulian) [RHEL-78701] - iommu/amd: Move V2 page table support check to early_amd_iommu_init() (Eder Zulian) [RHEL-78701] - iommu/amd: Add helper function to check GIOSUP/GTSUP (Eder Zulian) [RHEL-78701] - iommu/arm-smmu-v3: Enhance domain_alloc_user() to allocate PASID capable domain (Eder Zulian) [RHEL-78701] - iommu: Add new flag to explictly request PASID capable domain (Eder Zulian) [RHEL-78701] - iommu: Introduce iommu_paging_domain_alloc_flags() (Eder Zulian) [RHEL-78701] - iommu: Refactor __iommu_domain_alloc() (Eder Zulian) [RHEL-78701] - iommu: Remove iommu_domain_alloc() (Eder Zulian) [RHEL-78701] - drm/nouveau/tegra: Use iommu_paging_domain_alloc() (Eder Zulian) [RHEL-78701] - media: nvidia: tegra: Use iommu_paging_domain_alloc() (Eder Zulian) [RHEL-78701] - remoteproc: Use iommu_paging_domain_alloc() (Eder Zulian) [RHEL-78701] - iommu: Remove useless flush from iommu_create_device_direct_mappings() (Eder Zulian) [RHEL-78701] - iommu/sysfs: constify the class struct (Eder Zulian) [RHEL-78701] - iommu: Remove iommu_present() (Eder Zulian) [RHEL-78701] - iommu: Reorganize kerneldoc parameter names (Eder Zulian) [RHEL-78701] - iommu: Make bus_iommu_probe() static (Eder Zulian) [RHEL-78701] - iommu: Add a kdoc to iommu_unmap() (Eder Zulian) [RHEL-78701] - iommu/io-pgtable-arm: Remove split on unmap behavior (Eder Zulian) [RHEL-78701] - dt-bindings: arm-smmu: document QCS615 APPS SMMU (Eder Zulian) [RHEL-78701] - dt-bindings: iommu: arm,smmu: Add Qualcomm SAR2130P compatible (Eder Zulian) [RHEL-78701] - iommu/io-pgtable-arm: Add self test for the last page in the IAS (Eder Zulian) [RHEL-78701] - iommu/io-pgtable-arm: Fix stage-2 map/unmap for concatenated tables (Eder Zulian) [RHEL-78701] - iommu/arm-smmu-v3: Import IOMMUFD module namespace (Eder Zulian) [RHEL-78707] - iommufd: IOMMU_IOAS_CHANGE_PROCESS selftest (Eder Zulian) [RHEL-78707] - iommufd: Add IOMMU_IOAS_CHANGE_PROCESS (Eder Zulian) [RHEL-78707] - iommufd: Lock all IOAS objects (Eder Zulian) [RHEL-78707] - iommufd: Export do_update_pinned (Eder Zulian) [RHEL-78707] - iommu/arm-smmu-v3: Support IOMMU_HWPT_INVALIDATE using a VIOMMU object (Eder Zulian) [RHEL-73584] - iommu/arm-smmu-v3: Allow ATS for IOMMU_DOMAIN_NESTED (Eder Zulian) [RHEL-73584] - iommu/arm-smmu-v3: Use S2FWB for NESTED domains (Eder Zulian) [RHEL-73584] - iommu/arm-smmu-v3: Support IOMMU_DOMAIN_NESTED (Eder Zulian) [RHEL-73584] - iommu/arm-smmu-v3: Support IOMMU_VIOMMU_ALLOC (Eder Zulian) [RHEL-73584] - iommu/arm-smmu-v3: Expose the arm_smmu_attach interface (Eder Zulian) [RHEL-73584] - iommu/arm-smmu-v3: Implement IOMMU_HWPT_ALLOC_NEST_PARENT (Eder Zulian) [RHEL-73584] - iommu/arm-smmu-v3: Support IOMMU_GET_HW_INFO via struct arm_smmu_hw_info (Eder Zulian) [RHEL-73584] - iommu/arm-smmu-v3: Report IOMMU_CAP_ENFORCE_CACHE_COHERENCY for CANWBS (Eder Zulian) [RHEL-73584] - ACPI/IORT: Support CANWBS memory access flag (Eder Zulian) [RHEL-73584] - ACPICA: IORT: Update for revision E.f (Eder Zulian) [RHEL-73584] - vfio: Remove VFIO_TYPE1_NESTING_IOMMU (Eder Zulian) [RHEL-73584] - Documentation: userspace-api: iommufd: Update vDEVICE (Eder Zulian) [RHEL-73591] - iommufd/selftest: Add vIOMMU coverage for IOMMU_HWPT_INVALIDATE ioctl (Eder Zulian) [RHEL-73591] - iommufd/selftest: Add IOMMU_TEST_OP_DEV_CHECK_CACHE test command (Eder Zulian) [RHEL-73591] - iommufd/selftest: Add mock_viommu_cache_invalidate (Eder Zulian) [RHEL-73591] - iommufd/viommu: Add iommufd_viommu_find_dev helper (Eder Zulian) [RHEL-73591] - iommu: Add iommu_copy_struct_from_full_user_array helper (Eder Zulian) [RHEL-73591] - iommufd: Allow hwpt_id to carry viommu_id for IOMMU_HWPT_INVALIDATE (Eder Zulian) [RHEL-73591] - iommu/viommu: Add cache_invalidate to iommufd_viommu_ops (Eder Zulian) [RHEL-73591] - iommufd/selftest: Add IOMMU_VDEVICE_ALLOC test coverage (Eder Zulian) [RHEL-73591] - iommufd/viommu: Add IOMMUFD_OBJ_VDEVICE and IOMMU_VDEVICE_ALLOC ioctl (Eder Zulian) [RHEL-73591] - Documentation: userspace-api: iommufd: Update vIOMMU (Eder Zulian) [RHEL-73589] - iommufd/selftest: Add IOMMU_VIOMMU_ALLOC test coverage (Eder Zulian) [RHEL-73589] - iommufd/selftest: Add IOMMU_VIOMMU_TYPE_SELFTEST (Eder Zulian) [RHEL-73589] - iommufd/selftest: Add refcount to mock_iommu_device (Eder Zulian) [RHEL-73589] - iommufd/selftest: Prepare for mock_viommu_alloc_domain_nested() (Eder Zulian) [RHEL-73589] - iommufd/selftest: Add container_of helpers (Eder Zulian) [RHEL-73589] - iommufd: Allow pt_id to carry viommu_id for IOMMU_HWPT_ALLOC (Eder Zulian) [RHEL-73589] - iommufd: Add alloc_domain_nested op to iommufd_viommu_ops (Eder Zulian) [RHEL-73589] - iommufd/viommu: Add IOMMU_VIOMMU_ALLOC ioctl (Eder Zulian) [RHEL-73589] - iommufd: Verify object in iommufd_object_finalize/abort() (Eder Zulian) [RHEL-73589] - iommufd: Introduce IOMMUFD_OBJ_VIOMMU and its related struct (Eder Zulian) [RHEL-73589] - iommufd: Move _iommufd_object_alloc helper to a sharable file (Eder Zulian) [RHEL-73589] - iommufd: Move struct iommufd_object to public iommufd header (Eder Zulian) [RHEL-73589] - iommufd: Allow fault reporting for non-PRI PCI devices (Eder Zulian) [RHEL-78707] - iommufd: Selftest coverage for IOMMU_IOAS_MAP_FILE (Eder Zulian) [RHEL-78707] - iommufd: File mappings for mdev (Eder Zulian) [RHEL-78707] - iommufd: Add IOMMU_IOAS_MAP_FILE (Eder Zulian) [RHEL-78707] - iommufd: pfn_reader for file mappings (Eder Zulian) [RHEL-78707] - iommufd: Folio subroutines (Eder Zulian) [RHEL-78707] - iommufd: pfn_reader local variables (Eder Zulian) [RHEL-78707] - iommufd: Generalize iopt_pages address (Eder Zulian) [RHEL-78707] - iommufd: Rename uptr in iopt_alloc_iova() (Eder Zulian) [RHEL-78707] - mm/gup: Add folio_add_pins() (Eder Zulian) [RHEL-78701] - Documentation: userspace-api: iommufd: Update HWPT_PAGING and HWPT_NESTED (Eder Zulian) [RHEL-78701] - dma-mapping: fix swapped dir/flags arguments to trace_dma_alloc_sgt_err (Eder Zulian) [RHEL-78701] - dma-mapping: drop unneeded includes from dma-mapping.h (Eder Zulian) [RHEL-78701] - dma-mapping: trace more error paths (Eder Zulian) [RHEL-78701] - dma-mapping: use trace_dma_alloc for dma_alloc* instead of using trace_dma_map (Eder Zulian) [RHEL-78701] - dma-mapping: trace dma_alloc/free direction (Eder Zulian) [RHEL-78701] - dma-mapping: use macros to define events in a class (Eder Zulian) [RHEL-78701] - dma-mapping: remove an outdated comment from dma-map-ops.h (Eder Zulian) [RHEL-78701] - dma-debug: remove DMA_API_DEBUG_SG (Eder Zulian) [RHEL-78701] - dma-debug: store a phys_addr_t in struct dma_debug_entry (Eder Zulian) [RHEL-78701] - dma-debug: fix a possible deadlock on radix_lock (Eder Zulian) [RHEL-78701] {CVE-2024-47143} - selftests/bpf: Add launch time request to xdp_hw_metadata (Felix Maurer) [RHEL-83555] - xsk: Add launch time hardware offload support to XDP Tx metadata (Felix Maurer) [RHEL-83555] - firmware: cs_dsp: Fix OOB memory read access in KUnit test (ctl cache) (Jaroslav Kysela) [RHEL-93495] - firmware: cs_dsp: Fix OOB memory read access in KUnit test (wmfw info) (Jaroslav Kysela) [RHEL-93495] - firmware: cs_dsp: Fix OOB memory read access in KUnit test (Jaroslav Kysela) [RHEL-93495] - s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log (Thomas Huth) [RHEL-85180] - KVM: s390: Don't use %%pK through debug printing (Thomas Huth) [RHEL-85180] - KVM: s390: Don't use %%pK through tracepoints (Thomas Huth) [RHEL-85180] - s390/vfio-ap: Notify userspace that guest's AP config changed when mdev removed (Thomas Huth) [RHEL-85180] - s390/vfio-ap: Signal eventfd when guest AP configuration is changed (Thomas Huth) [RHEL-85180] - s390/vfio-ccw: Make mdev_types not look like a fake flex array (Thomas Huth) [RHEL-85180] - s390/vfio-ap: Make mdev_types not look like a fake flex array (Thomas Huth) [RHEL-85180] - s390/vfio-ap: Fix indentation in vfio_ap_mdev_ioctl() (Thomas Huth) [RHEL-85180] - KVM: s390: vsie: stop using "struct page" for vsie page (Thomas Huth) [RHEL-85180] - KVM: s390: vsie: stop messing with page refcount (Thomas Huth) [RHEL-85180] - KVM: s390: vsie: stop using page->index (Thomas Huth) [RHEL-85180] - KVM: s390: vsie: fix some corner-cases when grabbing vsie pages (Thomas Huth) [RHEL-85180] - KVM: s390: Reject KVM_SET_GSI_ROUTING on ucontrol VMs (Thomas Huth) [RHEL-85180] - KVM: s390: Reject setting flic pfault attributes on ucontrol VMs (Thomas Huth) [RHEL-85180] - KVM: s390: Increase size of union sca_utility to four bytes (Thomas Huth) [RHEL-85180] - KVM: s390: Remove one byte cmpxchg() usage (Thomas Huth) [RHEL-85180] - KVM: s390: Use try_cmpxchg() instead of cmpxchg() loops (Thomas Huth) [RHEL-85180] - s390/vfio-ap: Remove gmap_convert_to_secure() from vfio_ap_ops (Thomas Huth) [RHEL-85180] - s390/vfio-ap: Switch over to sysfs_emit() (Thomas Huth) [RHEL-85180] - s390/mm: Convert pgste_val() into function (Thomas Huth) [RHEL-85180] - s390/mm: Convert pgprot_val() into function (Thomas Huth) [RHEL-85180] - s390/mm: Use pgprot_val() instead of open coding (Thomas Huth) [RHEL-85180] - uki_addons: add 'fedora' SBAT suffix for UKI addons (Li Tian) [RHEL-93398] - perf python: Remove some unused macros (_PyUnicode_FromString(arg), etc) (Michael Petlan) [RHEL-77936] - redhat/kernel.spec: Remove /usr/share/perf-core from being installed (Michael Petlan) [RHEL-77936] - libapi: Add missing header with NAME_MAX define to io_dir.h (Michael Petlan) [RHEL-77936] - perf evsel: tp_format accessing improvements (Michael Petlan) [RHEL-77936] - perf/x86: Fix non-sampling (counting) events on certain x86 platforms (Michael Petlan) [RHEL-77936] - perf pmu: Handle memory failure in tool_pmu__new() (Michael Petlan) [RHEL-77936] - perf pmu: Dynamically allocate tool PMU (Michael Petlan) [RHEL-77936] - perf pmu: Switch to io_dir__readdir (Michael Petlan) [RHEL-77936] - tools lib api: Add io_dir an allocation free readdir alternative (Michael Petlan) [RHEL-77936] - perf pmu: Rename name matching for no suffix or wildcard variants (Michael Petlan) [RHEL-77936] - perf evsel: Reduce scanning core PMUs in is_hybrid (Michael Petlan) [RHEL-77936] - perf pmus: Restructure pmu_read_sysfs to scan fewer PMUs (Michael Petlan) [RHEL-77936] - perf stat: Fix find_stat for mixed legacy/non-legacy events (Michael Petlan) [RHEL-77936] - perf evsel: Add pmu_name helper (Michael Petlan) [RHEL-77936] - perf tests: Fix Tool PMU test segfault (Michael Petlan) [RHEL-77936] - perf tools: Add skip check in tool_pmu__event_to_str() (Michael Petlan) [RHEL-77936] - perf tools: Fix is_compat_mode build break in ppc64 (Michael Petlan) [RHEL-77936] - perf test: Fix Hwmon PMU test endianess issue (Michael Petlan) [RHEL-77936] - perf machine: Fixup kernel maps ends after adding extra maps (Michael Petlan) [RHEL-77936] - perf maps: Introduce map__set_kmap_maps() for kernel maps (Michael Petlan) [RHEL-77936] - perf x86/topdown: Fix topdown leader sampling test error on hybrid (Michael Petlan) [RHEL-77936] - perf test stat_all_pmu.sh: Correctly check 'perf stat' result (Michael Petlan) [RHEL-77936] - powerpc/perf: Fix ref-counting on the PMU 'vpa_pmu' (Michael Petlan) [RHEL-77936] {CVE-2025-22094} - tools headers: Sync uapi/asm-generic/socket.h with the kernel sources (Michael Petlan) [RHEL-77936] - tools: Unify top-level quiet infrastructure (Michael Petlan) [RHEL-77936] - perf cpumap: Fix die and cluster IDs (Michael Petlan) [RHEL-77936] - perf test: Skip syscall enum test if no landlock syscall (Michael Petlan) [RHEL-77936] - perf trace: Fix runtime error of index out of bounds (Michael Petlan) [RHEL-77936] - perf trace: Fix BPF loading failure (-E2BIG) (Michael Petlan) [RHEL-77936] - perf test: Update event_groups test to use instructions (Michael Petlan) [RHEL-77936] - perf bench: Fix undefined behavior in cmpworker() (Michael Petlan) [RHEL-77936] - perf annotate: Prefer passing evsel to evsel->core.idx (Michael Petlan) [RHEL-77936] - perf lock: Rename fields in lock_type_table (Michael Petlan) [RHEL-77936] - perf lock: Add percpu-rwsem for type filter (Michael Petlan) [RHEL-77936] - perf lock: Fix parse_lock_type which only retrieve one lock flag (Michael Petlan) [RHEL-77936] - perf lock: Fix return code for functions in __cmd_contention (Michael Petlan) [RHEL-77936] - perf hist: Fix width calculation in hpp__fmt() (Michael Petlan) [RHEL-77936] - perf hist: Fix bogus profiles when filters are enabled (Michael Petlan) [RHEL-77936] - perf hist: Deduplicate cmp/sort/collapse code (Michael Petlan) [RHEL-77936] - perf test: Improve verbose documentation (Michael Petlan) [RHEL-77936] - perf test: Add a runs-per-test flag (Michael Petlan) [RHEL-77936] - perf test: Send list output to stdout rather than stderr (Michael Petlan) [RHEL-77936] - perf test: Rename functions and variables for better clarity (Michael Petlan) [RHEL-77936] - perf tools: Expose quiet/verbose variables in Makefile.perf (Michael Petlan) [RHEL-77936] - perf config: Add a function to set one variable in .perfconfig (Michael Petlan) [RHEL-77936] - perf test perftool_testsuite: Return correct value for skipping (Michael Petlan) [RHEL-77936] - perf test perftool_testsuite: Add missing description (Michael Petlan) [RHEL-77936] - perf inject: Fix use without initialization of local variables (Michael Petlan) [RHEL-77936] - perf probe: Rename err label (Michael Petlan) [RHEL-77936] - perf record: Fix segfault with --off-cpu when debuginfo is not enabled (Michael Petlan) [RHEL-77936] - perf tests base_probe: Fix check for the count of existing probes in test_adding_kernel (Michael Petlan) [RHEL-77936] - perf MANIFEST: Add license files (Michael Petlan) [RHEL-77936] - perf test brstack: Speed up running test by using tr -s instead of xargs (Michael Petlan) [RHEL-77936] - perf tools mips: Fix mips syscall generation (Michael Petlan) [RHEL-77936] - perf tests arm_spe: Add test for discard mode (Michael Petlan) [RHEL-77936] - perf tools arm-spe: Don't allocate buffer or tracking event in discard mode (Michael Petlan) [RHEL-77936] - perf tools arm-spe: Pull out functions for aux buffer and tracking setup (Michael Petlan) [RHEL-77936] - perf report: Fix misleading help message about --demangle (Michael Petlan) [RHEL-77936] - perf ftrace: Fix display for range of the first bucket (Michael Petlan) [RHEL-77936] - perf ftrace: Check min/max latency only with bucket range (Michael Petlan) [RHEL-77936] - perf MANIFEST: Add arch/*/include/uapi/asm/bpf_perf_event.h to the perf tarball (Michael Petlan) [RHEL-77936] - perf vendor events arm64: Add FUJITSU-MONAKA PMU event (Michael Petlan) [RHEL-77936] - perf symbol-elf: Avoid a weak cxx_demangle_sym function (Michael Petlan) [RHEL-77936] - perf trace: Fix unaligned access for augmented args (Michael Petlan) [RHEL-77936] - perf test: Mark remaining probe tests as exclusive (Michael Petlan) [RHEL-77936] - perf tools: Remove dependency on libaudit (Michael Petlan) [RHEL-77936] - perf tools s390: Use generic syscall table scripts (Michael Petlan) [RHEL-77936] - perf tools powerpc: Use generic syscall table scripts (Michael Petlan) [RHEL-77936] - perf tools mips: Use generic syscall scripts (Michael Petlan) [RHEL-77936] - perf tools loongarch: Use syscall table (Michael Petlan) [RHEL-77936] - perf tools arm64: Use syscall table (Michael Petlan) [RHEL-77936] - perf tools parisc: Support syscall header (Michael Petlan) [RHEL-77936] - perf tools alpha: Support syscall header (Michael Petlan) [RHEL-77936] - perf tools x86: Use generic syscall scripts (Michael Petlan) [RHEL-77936] - perf tools xtensa: Support syscall header (Michael Petlan) [RHEL-77936] - perf tools sparc: Support syscall headers (Michael Petlan) [RHEL-77936] - perf tools sh: Support syscall headers (Michael Petlan) [RHEL-77936] - perf tools arm: Support syscall headers (Michael Petlan) [RHEL-77936] - perf tools csky: Support generic syscall headers (Michael Petlan) [RHEL-77936] - perf tools arc: Support generic syscall headers (Michael Petlan) [RHEL-77936] - perf tools: Create generic syscall table support (Michael Petlan) [RHEL-77936] - perf test cpumap: Avoid use-after-free following merge (Michael Petlan) [RHEL-77936] - perf llvm-add2line: Remove unused symbol_conf.h include (Michael Petlan) [RHEL-77936] - perf namespaces: Fixup the nsinfo__in_pidns() return type, its bool (Michael Petlan) [RHEL-77936] - perf jitdump: Fixup in_pidns member when java agent and 'perf record' are not in the same pidns (Michael Petlan) [RHEL-77936] - perf namespaces: Introduce nsinfo__set_in_pidns() (Michael Petlan) [RHEL-77936] - perf jitdump: Accept jitdump mmaps emitted from inside containers (Michael Petlan) [RHEL-77936] - perf machine: Don't ignore _etext when not a text symbol (Michael Petlan) [RHEL-77936] - perf maps: Fix display of kernel symbols (Michael Petlan) [RHEL-77936] - perf test: Update ftrace test to use --graph-opts (Michael Petlan) [RHEL-77936] - perf ftrace profile: Add --graph-opts option (Michael Petlan) [RHEL-77936] - perf ftrace: Display latency statistics at the end (Michael Petlan) [RHEL-77936] - perf evsel: Improve the evsel__open_strerror() for EBUSY (Michael Petlan) [RHEL-77936] - perf tests shell task_analyzer: Run this test exclusively (Michael Petlan) [RHEL-77936] - perf tests code-reading: Handle change in objdump output from binutils >= 2.41 on riscv (Michael Petlan) [RHEL-77936] - perf top: Don't complain about lack of vmlinux when not resolving some kernel samples (Michael Petlan) [RHEL-77936] - perf stat: Document and clarify outstate members (Michael Petlan) [RHEL-77936] - perf stat: Document and simplify interval timestamps (Michael Petlan) [RHEL-77936] - perf docs: Add documentation for --force-btf option (Michael Petlan) [RHEL-77936] - perf path: Remove unused is_executable_file() (Michael Petlan) [RHEL-77936] - perf values: Use evsel rather than evsel->idx (Michael Petlan) [RHEL-77936] - perf stream: Use evsel rather than evsel->idx (Michael Petlan) [RHEL-77936] - perf jevents: Provide better path information for broken JSON (Michael Petlan) [RHEL-77936] - perf lock contention: Handle slab objects in -L/--lock-filter option (Michael Petlan) [RHEL-77936] - perf lock contention: Resolve slab object name using BPF (Michael Petlan) [RHEL-77936] - perf lock contention: Run BPF slab cache iterator (Michael Petlan) [RHEL-77936] - perf lock contention: Add and use LCB_F_TYPE_MASK (Michael Petlan) [RHEL-77936] - perf script: Cache the output type (Michael Petlan) [RHEL-77936] - perf python: Correctly throw IndexError (Michael Petlan) [RHEL-77936] - perf python: Add __str__ and __repr__ functions to evsel (Michael Petlan) [RHEL-77936] - perf python: Add __str__ and __repr__ functions to evlist (Michael Petlan) [RHEL-77936] - perf python: Add parse_events function (Michael Petlan) [RHEL-77936] - perf build: Remove test library from python shared object (Michael Petlan) [RHEL-77936] - perf kwork: Make perf_kwork_add_work a callback (Michael Petlan) [RHEL-77936] - perf bench: Remove reference to cmd_inject (Michael Petlan) [RHEL-77936] - perf lock: Move common lock contention code to new file (Michael Petlan) [RHEL-77936] - perf env: Move arch errno function to only use in env (Michael Petlan) [RHEL-77936] - perf intel-pt: Remove stale build comment (Michael Petlan) [RHEL-77936] - perf x86: Define arch_fetch_insn in NO_AUXTRACE builds (Michael Petlan) [RHEL-77936] - perf script: Move perf_sample__sprintf_flags to trace-event-scripting.c (Michael Petlan) [RHEL-77936] - perf script: Move script_fetch_insn to trace-event-scripting.c (Michael Petlan) [RHEL-77936] - perf script: Move script_spec code to trace-event-scripting.c (Michael Petlan) [RHEL-77936] - perf stat: Move stat_config into config.c (Michael Petlan) [RHEL-77936] - perf script: Move find_scripts to browser/scripts.c (Michael Petlan) [RHEL-77936] - perf script: Use openat for directory iteration (Michael Petlan) [RHEL-77936] - perf kvm: Move functions used in util out of builtin (Michael Petlan) [RHEL-77936] - perf script: Move scripting_max_stack out of builtin (Michael Petlan) [RHEL-77936] - perf python: Remove unused #include (Michael Petlan) [RHEL-77936] - perf python: Constify variables and parameters (Michael Petlan) [RHEL-77936] - perf python: Remove python 2 scripting support (Michael Petlan) [RHEL-77936] - perf intel-pt: Add a test for pause / resume (Michael Petlan) [RHEL-77936] - perf intel-pt: Add documentation for pause / resume (Michael Petlan) [RHEL-77936] - perf intel-pt: Improve man page format (Michael Petlan) [RHEL-77936] - perf tools: Add missing_features for aux_start_paused, aux_pause, aux_resume (Michael Petlan) [RHEL-77936] - perf tools: Parse aux-action (Michael Petlan) [RHEL-77936] - perf tools: Add aux-action config term (Michael Petlan) [RHEL-77936] - perf tools: Add aux_start_paused, aux_pause and aux_resume (Michael Petlan) [RHEL-77936] - perf build: Minor improvement for linking libzstd (Michael Petlan) [RHEL-77936] - tools build: Add feature test for libelf with ZSTD (Michael Petlan) [RHEL-77936] - perf tools tests shell base_probe: Enhance print_overall_results to print summary information (Michael Petlan) [RHEL-77936] - perf tools arch powerpc: Add register mask for power11 PVR in extended regs (Michael Petlan) [RHEL-77936] - perf ftrace latency: Fix compiler error for clang 12 (Michael Petlan) [RHEL-77936] - tools build: Test for presence of libtraceevent and libtracefs in test-all.c (Michael Petlan) [RHEL-77936] - tools build feature: Don't set feature-libslang-include-subdir=1 if test-all.c builds (Michael Petlan) [RHEL-77936] - perf tests switch-tracking: Set this test to run exclusively (Michael Petlan) [RHEL-77936] - perf test: Introduce DEFINE_SUITE_EXCLUSIVE() (Michael Petlan) [RHEL-77936] - perf expr: Initialize is_test value in expr__ctx_new() (Michael Petlan) [RHEL-77936] - perf tests: Fix an incorrect type in append_script() (Michael Petlan) [RHEL-77936] - perf test: Remove duplicate word (Michael Petlan) [RHEL-77936] - perf string: Avoid undefined NULL+1 (Michael Petlan) [RHEL-77936] - perf vendor events arm64: Update N2/V2 events from source (Michael Petlan) [RHEL-77936] - perf tools: Avoid unaligned pointer operations (Michael Petlan) [RHEL-77936] - tools build feature: Don't set feature-libcap=1 if libcap-devel isn't available (Michael Petlan) [RHEL-77936] - tools build feature: Add some comments to explain the FEATURE_TESTS logic (Michael Petlan) [RHEL-77936] - perf bpf: Fix two memory leakages when calling perf_env__insert_bpf_prog_info() (Michael Petlan) [RHEL-77936] - perf header: Fix one memory leakage in process_bpf_prog_info() (Michael Petlan) [RHEL-77936] - perf header: Fix one memory leakage in process_bpf_btf() (Michael Petlan) [RHEL-77936] - perf jevents: Fix build issue in '*/' in event descriptions (Michael Petlan) [RHEL-77936] - perf test: Parse 'perf stat' Topdown events for aarch64 (Michael Petlan) [RHEL-77936] - perf probe: Replace unacceptable characters when generating event name (Michael Petlan) [RHEL-77936] - perf ftrace latency: Add --max-latency option (Michael Petlan) [RHEL-77936] - perf ftrace latency: Introduce --min-latency to narrow down into a latency range (Michael Petlan) [RHEL-77936] - perf ftrace latency: Introduce --bucket-range to ask for linear bucketing (Michael Petlan) [RHEL-77936] - perf ftrace latency: Pass ftrace pointer to histogram routines to pass more args (Michael Petlan) [RHEL-77936] - perf tests: Enable tests disabled due to tracepoint parsing (Michael Petlan) [RHEL-77936] - perf evsel: Allow evsel__newtp without libtraceevent (Michael Petlan) [RHEL-77936] - perf evsel: Add/use accessor for tp_format (Michael Petlan) [RHEL-77936] - perf trace-event: Always build trace-event-info.c (Michael Petlan) [RHEL-77936] - perf trace-event: Constify print arguments (Michael Petlan) [RHEL-77936] - tool api fs: Correctly encode errno for read/write open failures (Michael Petlan) [RHEL-77936] - perf env: Ensure failure broken topology file reads are always -1 encoded (Michael Petlan) [RHEL-77936] - perf btf: Make the sigtrap test helper to find a member by name widely available (Michael Petlan) [RHEL-77936] - perf arm-spe: Add support for SPE Data Source packet on AmpereOne (Michael Petlan) [RHEL-77936] - perf arm-spe: Prepare for adding data source packet implementations for other cores (Michael Petlan) [RHEL-77936] - perf cpumap: Add checking for reference counter (Michael Petlan) [RHEL-77936] - perf cpumap: Add more tests for CPU map merging (Michael Petlan) [RHEL-77936] - libperf cpumap: Refactor perf_cpu_map__merge() (Michael Petlan) [RHEL-77936] - perf config: Fix trival typo 'an' -> 'can' (Michael Petlan) [RHEL-77936] - perf script python: Improve physical mem type resolution (Michael Petlan) [RHEL-77936] - perf disasm: Return a proper error when not determining the file type (Michael Petlan) [RHEL-77936] - tools: Sync if_xdp.h uapi tooling header (Michael Petlan) [RHEL-77936] - perf docs: arm_spe: Document new discard mode (Michael Petlan) [RHEL-77936] - perf: arm_spe: Add format option for discard mode (Michael Petlan) [RHEL-77936] - perf: Switch back to struct platform_driver::remove() (Michael Petlan) [RHEL-77936] - perf/amd/ibs: Prevent leaking sensitive data to userspace (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Fix error handling in init_rapl_pmus() (Michael Petlan) [RHEL-77936] - perf/x86: Check data address for IBS software filter (Michael Petlan) [RHEL-77936] - perf/core: Fix perf_pmu_register() vs. perf_init_event() (Michael Petlan) [RHEL-77936] - perf/core: Fix pmus_lock vs. pmus_srcu ordering (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Add support for Intel Arrow Lake U (Michael Petlan) [RHEL-77936] - perf/x86/intel: Use better start period for frequency mode (Michael Petlan) [RHEL-77936] - perf/core: Fix low freq setting via IOC_PERIOD (Michael Petlan) [RHEL-77936] - perf/x86: Fix low freqency setting issue (Michael Petlan) [RHEL-77936] - perf/core: Order the PMU list to fix warning about unordered pmu_ctx_list (Michael Petlan) [RHEL-77936] {CVE-2025-21895} - perf/core: Add RCU read lock protection to perf_iterate_ctx() (Michael Petlan) [RHEL-77936] {CVE-2025-21889} - perf/x86/intel: Fix event constraints for LNC (Michael Petlan) [RHEL-77936] - perf/x86/intel: Ensure LBRs are disabled when a CPU is starting (Michael Petlan) [RHEL-77936] - perf/x86/intel: Fix ARCH_PERFMON_NUM_COUNTER_LEAF (Michael Petlan) [RHEL-77936] - perf/x86/intel: Clean up PEBS-via-PT on hybrid (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Fix the error checking order (Michael Petlan) [RHEL-77936] - perf: map pages in advance (Michael Petlan) [RHEL-77936] - perf/x86/intel/uncore: Support more units on Granite Rapids (Michael Petlan) [RHEL-77936] - perf/x86/intel/uncore: Clean up func_id (Michael Petlan) [RHEL-77936] - perf/x86/intel: Support RDPMC metrics clear mode (Michael Petlan) [RHEL-77936] - perf/x86: Relax privilege filter restriction on AMD IBS (Michael Petlan) [RHEL-77936] - perf/core: Export perf_exclude_event() (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Add core energy counter support for AMD CPUs (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Move the cntr_mask to rapl_pmus struct (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Remove the global variable rapl_msrs (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Modify the generic variable names to *_pkg* (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Add arguments to the init and cleanup functions (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Make rapl_model struct global (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Rename rapl_pmu variables (Michael Petlan) [RHEL-77936] - perf/x86/rapl: Remove the cpu_to_rapl_pmu() function (Michael Petlan) [RHEL-77936] - x86/topology: Introduce topology_logical_core_id() (Michael Petlan) [RHEL-77936] - perf/x86/intel/ds: Simplify the PEBS records processing for adaptive PEBS (Michael Petlan) [RHEL-77936] - perf/x86/intel/ds: Factor out functions for PEBS records processing (Michael Petlan) [RHEL-77936] - perf/x86/intel/ds: Clarify adaptive PEBS processing (Michael Petlan) [RHEL-77936] - perf/core: Check sample_type in perf_sample_save_brstack (Michael Petlan) [RHEL-77936] - perf/core: Check sample_type in perf_sample_save_callchain (Michael Petlan) [RHEL-77936] - perf/core: Save raw sample data conditionally based on sample type (Michael Petlan) [RHEL-77936] - x86/cpu: Replace PEBS use of 'x86_cpu_desc' use with 'x86_cpu_id' (Michael Petlan) [RHEL-77936] - x86/cpu: Expose only stepping min/max interface (Michael Petlan) [RHEL-77936] - x86/cpu: Introduce new microcode matching helper (Michael Petlan) [RHEL-77936] - x86/cpu: Fix typo in x86_match_cpu()'s doc (Michael Petlan) [RHEL-77936] - redhat/spec: fix selftests dependencies (Gregory Bell) [RHEL-88228] - loop: Add sanity check for read/write_iter (Ming Lei) [RHEL-83595] - fs: add kern_path_locked_negative() (Ming Lei) [RHEL-83595] - tools headers: Sync uapi/linux/fcntl.h with the kernel sources (Ming Lei) [RHEL-83595] - perf probe: Pick the correct dwarf die while adding probe points (Ming Lei) [RHEL-83595] - devtmpfs: don't use vfs_getattr_nosec to query i_mode (Ming Lei) [RHEL-83595] - VFS: add common error checks to lookup_one_qstr_excl() (Ming Lei) [RHEL-83595] - VFS: change kern_path_locked() and user_path_locked_at() to never return negative dentry (Ming Lei) [RHEL-83595] - fs: move the bdex_statx call to vfs_getattr_nosec (Ming Lei) [RHEL-83595] - libfs: kill empty_dir_getattr() (Ming Lei) [RHEL-83595] - fs: Simplify getattr interface function checking AT_GETATTR_NOSEC flag (Ming Lei) [RHEL-83595] - fs/stat.c: switch to CLASS(fd_raw) (Ming Lei) [RHEL-83595] - kill getname_statx_lookup_flags() (Ming Lei) [RHEL-83595] - io_statx_prep(): use getname_uflags() (Ming Lei) [RHEL-83595] - getname_maybe_null() - the third variant of pathname copy-in (Ming Lei) [RHEL-83595] - teach filename_lookup() to treat NULL filename as "" (Ming Lei) [RHEL-83595] - dm table: Fix W=1 build warning when mempool_needs_integrity is unused (Ming Lei) [RHEL-83595] - block: move blkdev_{get,put} _no_open prototypes out of blkdev.h (Ming Lei) [RHEL-83595] - block: never reduce ra_pages in blk_apply_bdi_limits (Ming Lei) [RHEL-83595] - block: integrity: Do not call set_page_dirty_lock() (Ming Lei) [RHEL-83595] - loop: stop using vfs_iter_{read,write} for buffered I/O (Ming Lei) [RHEL-83595] - loop: LOOP_SET_FD: send uevents for partitions (Ming Lei) [RHEL-83595] - loop: properly send KOBJ_CHANGED uevent for disk device (Ming Lei) [RHEL-83595] - loop: aio inherit the ioprio of original request (Ming Lei) [RHEL-83595] - block: fix resource leak in blk_register_queue() error path (Ming Lei) [RHEL-83595] - block: add SPDX header line to blk-throttle.h (Ming Lei) [RHEL-83595] - null_blk: Use strscpy() instead of strscpy_pad() in null_add_dev() (Ming Lei) [RHEL-83595] - block: add for_each_mp_bvec() (Ming Lei) [RHEL-83595] - block: don't grab elevator lock during queue initialization (Ming Lei) [RHEL-83595] - block: remove unused nseg parameter (Ming Lei) [RHEL-83595] - io_uring/rw: don't mask in f_iocb_flags (Ming Lei) [RHEL-83595] - docs: sysfs-block: Clarify integrity sysfs attributes (Ming Lei) [RHEL-83595] - block/blk-iocost: ensure 'ret' is set on error (Ming Lei) [RHEL-83595] - block: correct locking order for protecting blk-wbt parameters (Ming Lei) [RHEL-83595] - block: release q->elevator_lock in ioc_qos_write (Ming Lei) [RHEL-83595] - ublk: remove io_cmds list in ublk_queue (Ming Lei) [RHEL-83595] - blk-cgroup: improve policy registration error handling (Ming Lei) [RHEL-83595] - loop: move vfs_fsync() out of loop_update_dio() (Ming Lei) [RHEL-83595] - block: fix a comment in the queue_attrs[] array (Ming Lei) [RHEL-83595] - block: protect debugfs attribute method hctx_busy_show (Ming Lei) [RHEL-83595] - block: remove unnecessary goto labels in debugfs attribute read methods (Ming Lei) [RHEL-83595] - block: protect debugfs attrs using elevator_lock instead of sysfs_lock (Ming Lei) [RHEL-83595] - block: remove unused parameter 'q' parameter in __blk_rq_map_sg() (Ming Lei) [RHEL-83595] - block: fix adding folio to bio (Ming Lei) [RHEL-83595] - block: remove unused parameter (Ming Lei) [RHEL-83595] - badblocks: Fix a nonsense WARN_ON() which checks whether a u64 variable < 0 (Ming Lei) [RHEL-83595] - block: make sure ->nr_integrity_segments is cloned in blk_rq_prep_clone (Ming Lei) [RHEL-83595] - block: protect hctx attributes/params using q->elevator_lock (Ming Lei) [RHEL-83595] - block: protect read_ahead_kb using q->limits_lock (Ming Lei) [RHEL-83595] - block: protect wbt_lat_usec using q->elevator_lock (Ming Lei) [RHEL-83595] - block: protect nr_requests update using q->elevator_lock (Ming Lei) [RHEL-83595] - block: introduce a dedicated lock for protecting queue elevator updates (Ming Lei) [RHEL-83595] - block: remove q->sysfs_lock for attributes which don't need it (Ming Lei) [RHEL-83595] - block: move q->sysfs_lock and queue-freeze under show/store method (Ming Lei) [RHEL-83595] - block: acquire q->limits_lock while reading sysfs attributes (Ming Lei) [RHEL-83595] - badblocks: use sector_t instead of int to avoid truncation of badblocks length (Ming Lei) [RHEL-83595] - badblocks: return boolean from badblocks_set() and badblocks_clear() (Ming Lei) [RHEL-83595] - badblocks: fix missing bad blocks on retry in _badblocks_check() (Ming Lei) [RHEL-83595] - badblocks: fix merge issue when new badblocks align with pre+1 (Ming Lei) [RHEL-83595] - badblocks: try can_merge_front before overlap_front (Ming Lei) [RHEL-83595] - badblocks: fix the using of MAX_BADBLOCKS (Ming Lei) [RHEL-83595] - badblocks: return error if any badblock set fails (Ming Lei) [RHEL-83595] - badblocks: return error directly when setting badblocks exceeds 512 (Ming Lei) [RHEL-83595] - badblocks: attempt to merge adjacent badblocks during ack_all_badblocks (Ming Lei) [RHEL-83595] - badblocks: factor out a helper try_adjacent_combine (Ming Lei) [RHEL-83595] - badblocks: Fix error shitf ops (Ming Lei) [RHEL-83595] - block: Correctly initialize BLK_INTEGRITY_NOGENERATE and BLK_INTEGRITY_NOVERIFY (Ming Lei) [RHEL-83595] - block: ensure correct integrity capability propagation in stacked devices (Ming Lei) [RHEL-83595] - blk-throttle: carry over directly (Ming Lei) [RHEL-83595] - blk-throttle: don't take carryover for prioritized processing of metadata (Ming Lei) [RHEL-83595] - blk-throttle: remove last_bytes_disp and last_ios_disp (Ming Lei) [RHEL-83595] - blk-throttle: fix lower bps rate by throtl_trim_slice() (Ming Lei) [RHEL-83595] - ublk: enforce ublks_max only for unprivileged devices (Ming Lei) [RHEL-83595] - loop: Remove struct loop_func_table (Ming Lei) [RHEL-83595] - ublk: add DMA alignment limit (Ming Lei) [RHEL-83595] - block: split struct bio_integrity_payload (Ming Lei) [RHEL-83595] - block: move the block layer auto-integrity code into a new file (Ming Lei) [RHEL-83595] - block: mark bounce buffering as incompatible with integrity (Ming Lei) [RHEL-83595] - null_blk: do partial IO for bad blocks (Ming Lei) [RHEL-83595] - null_blk: pass transfer size to null_handle_rq() (Ming Lei) [RHEL-83595] - null_blk: replace null_process_cmd() call in null_zone_write() (Ming Lei) [RHEL-83595] - null_blk: introduce badblocks_once parameter (Ming Lei) [RHEL-83595] - null_blk: generate null_blk configfs features string (Ming Lei) [RHEL-83595] - ublk: complete command synchronously on error (Ming Lei) [RHEL-83595] - blk-wbt: Cleanup a comment in wb_timer_fn (Ming Lei) [RHEL-83595] - blk-wbt: Fix some comments (Ming Lei) [RHEL-83595] - loop: take the file system minimum dio alignment into account (Ming Lei) [RHEL-83595] - loop: check in LO_FLAGS_DIRECT_IO in loop_default_blocksize (Ming Lei) [RHEL-83595] - loop: set LO_FLAGS_DIRECT_IO in loop_assign_backing_file (Ming Lei) [RHEL-83595] - loop: factor out a loop_assign_backing_file helper (Ming Lei) [RHEL-83595] - block: Remove commented out code (Ming Lei) [RHEL-83595] - Revert "driver: block: release the lo_work_lock before queue_work" (Ming Lei) [RHEL-83595] - block: refactor rq_qos_wait() (Ming Lei) [RHEL-83595] - block: introduce init_wait_func() (Ming Lei) [RHEL-83595] - loop: release the lo_work_lock before queue_work (Ming Lei) [RHEL-83595] - blk-crypto: add ioctls to create and prepare hardware-wrapped keys (Ming Lei) [RHEL-83595] - blk-crypto: show supported key types in sysfs (Ming Lei) [RHEL-83595] - blk-crypto: add basic hardware-wrapped key support (Ming Lei) [RHEL-83595] - scsi: ufs: crypto: Remove ufs_hba_variant_ops::program_key (Ming Lei) [RHEL-83595] - scsi: ufs: qcom: Convert to use UFSHCD_QUIRK_CUSTOM_CRYPTO_PROFILE (Ming Lei) [RHEL-83595] - scsi: ufs: crypto: Add ufs_hba_from_crypto_profile() (Ming Lei) [RHEL-83595] - scsi: ufs: qcom: Fix crypto key eviction (Ming Lei) [RHEL-83595] - mmc: sdhci-msm: convert to use custom crypto profile (Ming Lei) [RHEL-83595] - mmc: crypto: add mmc_from_crypto_profile() (Ming Lei) [RHEL-83595] - mmc: sdhci-msm: fix crypto key eviction (Ming Lei) [RHEL-83595] - block: Name the RQF flags enum (Ming Lei) [RHEL-83595] - block: fix conversion of GPT partition name to 7-bit (Ming Lei) [RHEL-83595] - ublk: set_params: properly check if parameters can be applied (Ming Lei) [RHEL-83595] - block: make bio_integrity_map_user() static inline (Ming Lei) [RHEL-83595] - scsi: add support for user-meta interface (Ming Lei) [RHEL-83595] - nvme: add support for passing on the application tag (Ming Lei) [RHEL-83595] - block: add support to pass user meta buffer (Ming Lei) [RHEL-83595] - block: introduce BIP_CHECK_GUARD/REFTAG/APPTAG bip_flags (Ming Lei) [RHEL-83595] - io_uring: introduce attributes for read/write and PI support (Ming Lei) [RHEL-83595] - fs: introduce IOCB_HAS_METADATA for metadata (Ming Lei) [RHEL-83595] - fs, iov_iter: define meta io descriptor (Ming Lei) [RHEL-83595] - block: modify bio_integrity_map_user to accept iov_iter as argument (Ming Lei) [RHEL-83595] - block: copy back bounce buffer to user-space correctly in case of split (Ming Lei) [RHEL-83595] - block: define set of integrity flags to be inherited by cloned bip (Ming Lei) [RHEL-83595] - MAINTAINERS: Update maintainers for crypto/marvell (Vladis Dronov) [RHEL-74336] - crypto: octeontx2 - suppress auth failure screaming due to negative tests (Vladis Dronov) [RHEL-74336] - crypto: octeontx2 - Remove unused otx2_cpt_print_uc_dbg_info (Vladis Dronov) [RHEL-74336] - crypto: drivers - Use str_enable_disable-like helpers [partial] (Vladis Dronov) [RHEL-74336] - perf test: Extra verbosity and hypervisor skip for tpebs test (Michael Petlan) [RHEL-82381] - cifs: Fix integer overflow while processing acdirmax mount option (Paulo Alcantara) [RHEL-87947] {CVE-2025-21963} - s390/virtio_ccw: Don't allocate/assign airqs for non-existing queues (CKI Backport Bot) [RHEL-87556] - wifi: ath12k: Fix invalid data access in ath12k_dp_rx_h_undecap_nwifi (CKI Backport Bot) [RHEL-93267] {CVE-2025-37943} - selftest/mm: va_high_addr_switch: add ppc64 support check (Chunyu Hu) [RHEL-87654] - net: ibmveth: make veth_pool_store stop hanging (Mamatha Inamdar) [RHEL-92996] - dm: fix copying after src array boundaries (Benjamin Marzinski) [RHEL-92762] - dm: add missing unlock on in dm_keyslot_evict() (Benjamin Marzinski) [RHEL-92762] - dm: always update the array size in realloc_argv on success (Benjamin Marzinski) [RHEL-92762] - dm-integrity: fix a warning on invalid table line (Benjamin Marzinski) [RHEL-92762] - dm-bufio: don't schedule in atomic context (Benjamin Marzinski) [RHEL-92762] - dm-ebs: fix prefetch-vs-suspend race (Benjamin Marzinski) [RHEL-92762] - dm-verity: fix prefetch-vs-suspend race (Benjamin Marzinski) [RHEL-92762] - dm-integrity: fix non-constant-time tag verification (Benjamin Marzinski) [RHEL-92762] - dm cache: support shrinking the origin device (Benjamin Marzinski) [RHEL-92762] - dm cache: prevent BUG_ON by blocking retries on failed device resumes (Benjamin Marzinski) [RHEL-92762] - dm: fix unconditional IO throttle caused by REQ_PREFLUSH (Benjamin Marzinski) [RHEL-92762] - dm-integrity: set ti->error on memory allocation failure (Benjamin Marzinski) [RHEL-92762] - xfrm: Support ESN context update to hardware for TX (CKI Backport Bot) [RHEL-86505] - redhat: configs: rhel: Enable CX231XX driver (Kate Hsuan) [RHEL-86822] - iomap: avoid avoid truncating 64-bit offset to 32 bits (Brian Foster) [RHEL-85399] - iomap: fix zero padding data issue in concurrent append writes (Brian Foster) [RHEL-85399] - iomap: pass byte granular end position to iomap_add_to_ioend (Brian Foster) [RHEL-85399] - iomap: elide flush from partial eof zero range (Brian Foster) [RHEL-85399] - iomap: lift zeroed mapping handling into iomap_zero_range() (Brian Foster) [RHEL-85399] - iomap: reset per-iter state on non-error iter advances (Brian Foster) [RHEL-85399] - iomap: warn on zero range of a post-eof folio (Brian Foster) [RHEL-85399] - iomap: drop an obsolete comment in iomap_dio_bio_iter (Brian Foster) [RHEL-85399] - iomap: add a merge boundary flag (Brian Foster) [RHEL-85399] - fs: iomap: Atomic write support (Brian Foster) [RHEL-85399] - fs: Export generic_atomic_write_valid() (Brian Foster) [RHEL-85399] - gre: Fix again IPv6 link-local address generation. (Guillaume Nault) [RHEL-69103] - zram: fix NULL pointer in comp_algorithm_show() (Ming Lei) [RHEL-77764] {CVE-2024-53222} - HID: picoLCD: Replace check_fb in favor of struct fb_info.lcd_dev (Jocelyn Falempe) [RHEL-75959] - backlight: led_bl: Hold led_access lock when calling led_sysfs_disable() (Jocelyn Falempe) [RHEL-75959] - fbdev: hyperv_fb: Allow graceful removal of framebuffer (Jocelyn Falempe) [RHEL-75959] - fbdev: hyperv_fb: Simplify hvfb_putmem (Jocelyn Falempe) [RHEL-75959] - fbdev: hyperv_fb: Fix hang in kdump kernel when on Hyper-V Gen 2 VMs (Jocelyn Falempe) [RHEL-75959] - fbdev: hyperv_fb: iounmap() the correct memory when removing a device (Jocelyn Falempe) [RHEL-75959] - fbdev: lcdcfb: Use backlight helper (Jocelyn Falempe) [RHEL-75959] - fbdev: vga16fb: fix orig_video_isVGA confusion (Jocelyn Falempe) [RHEL-75959] - fbdev: omapfb: Use syscon_regmap_lookup_by_phandle_args (Jocelyn Falempe) [RHEL-75959] - fbdev: omapfb: Use of_property_present() to test existence of DT property (Jocelyn Falempe) [RHEL-75959] - fbdev: sm501fb: Use str_enabled_disabled() helper in sm501fb_init_fb() (Jocelyn Falempe) [RHEL-75959] - fbdev: omap: use threaded IRQ for LCD DMA (Jocelyn Falempe) [RHEL-75959] - fbdev: omapfb: Fix an OF node leak in dss_of_port_get_parent_device() (Jocelyn Falempe) [RHEL-75959] - fbdev: efifb: Change the return value type to void (Jocelyn Falempe) [RHEL-75959] - fbdev: omapfb: Remove unused hdmi5_core_handle_irqs (Jocelyn Falempe) [RHEL-75959] - video: hdmi: Remove unused hdmi_infoframe_check (Jocelyn Falempe) [RHEL-75959] - fbdev: radeon: Use const 'struct bin_attribute' callbacks (Jocelyn Falempe) [RHEL-75959] - fbdev: udlfb: Use const 'struct bin_attribute' callback (Jocelyn Falempe) [RHEL-75959] - fbdev: Fix recursive dependencies wrt BACKLIGHT_CLASS_DEVICE (Jocelyn Falempe) [RHEL-75959] - fbdev: omapfb: Remove some deadcode (Jocelyn Falempe) [RHEL-75959] - fbdev: sh7760fb: Fix a possible memory leak in sh7760fb_alloc_mem() (Jocelyn Falempe) [RHEL-75959] - fbdev: omapfb: use new of_graph functions (Jocelyn Falempe) [RHEL-75959] - backlight: Remove notifier (Jocelyn Falempe) [RHEL-75959] - backlight: ktz8866: Fix module autoloading (Jocelyn Falempe) [RHEL-75959] - backlight: 88pm860x_bl: Simplify with scoped for each OF child loop (Jocelyn Falempe) [RHEL-75959] - backlight: lcd: Remove struct fb_videomode from set_mode callback (Jocelyn Falempe) [RHEL-75959] - backlight: lcd: Replace check_fb with controls_device (Jocelyn Falempe) [RHEL-75959] - fbdev: omap: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: imxfb: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: imxfb: Replace check_fb in favor of struct fb_info.lcd_dev (Jocelyn Falempe) [RHEL-75959] - fbdev: clps711x-fb: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: clps711x-fb: Replace check_fb in favor of struct fb_info.lcd_dev (Jocelyn Falempe) [RHEL-75959] - backlight: tdo24m: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: platform_lcd: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: platform_lcd: Remove match_fb from struct plat_lcd_data (Jocelyn Falempe) [RHEL-75959] - backlight: platform_lcd: Remove include statement for (Jocelyn Falempe) [RHEL-75959] - backlight: otm3225a: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: ltv350qv: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: lms501kf03: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: lms501kf03: Remove unnecessary include of (Jocelyn Falempe) [RHEL-75959] - backlight: lms283gf05: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: l4f00242t03: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: jornada720_lcd: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: jornada720_lcd: Include for IOMEM() macro (Jocelyn Falempe) [RHEL-75959] - backlight: ili9320: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: ili922x: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: hx8357: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: corgi_lcd: Use lcd power constants (Jocelyn Falempe) [RHEL-75959] - backlight: lcd: Add LCD_POWER_ constants for power states (Jocelyn Falempe) [RHEL-75959] - backlight: lcd: Test against struct fb_info.lcd_dev (Jocelyn Falempe) [RHEL-75959] - backlight: lcd: Rearrange code in fb_notifier_callback() (Jocelyn Falempe) [RHEL-75959] - fbdev: sh_mobile_lcdc_fb: Use backlight power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: rivafb: Use backlight power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: radeonfb: Use backlight power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: omapfb: Use backlight power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: nvidiafb: Use backlight power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: chipsfb: Use backlight power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: atyfb: Use backlight power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: aty128fb: Use backlight power constants (Jocelyn Falempe) [RHEL-75959] - fbdev: atmel_lcdfb: Use backlight power constants (Jocelyn Falempe) [RHEL-75959] - video: fbdev: mmp: switch to use spi_alloc_host() (Jocelyn Falempe) [RHEL-75959] - smb: client: don't retry IO on failed negprotos with soft mounts (Paulo Alcantara) [RHEL-85526] - acct: perform last write from workqueue (CKI Backport Bot) [RHEL-83184] {CVE-2025-21846} - redhat: add downstream SBAT for UKI addons (Emanuele Giuseppe Esposito) [RHEL-92881] - uki_addons: provide custom SBAT as input parameter (Emanuele Giuseppe Esposito) [RHEL-92881] - uki_addons: remove completely sbat/sbat.conf (Emanuele Giuseppe Esposito) [RHEL-92881] - redhat: create 'systemd-volatile-overlay' addon for UKI (Emanuele Giuseppe Esposito) [RHEL-92882] - vfio/pci: Align huge faults to order (Alex Williamson) [RHEL-89852] - cifs: Fix integer overflow while processing closetimeo mount option (CKI Backport Bot) [RHEL-87906] {CVE-2025-21962} - scsi: iscsi: Fix missing scsi_host_put() in error path (Chris Leech) [RHEL-90551] - scsi: qla4xxx: Constify 'struct bin_attribute' (Chris Leech) [RHEL-90551] - scsi: qedi: Constify 'struct bin_attribute' (Chris Leech) [RHEL-90551] - scsi: qedi: Fix a possible memory leak in qedi_alloc_and_init_sb() (Chris Leech) [RHEL-90551] - net: fix geneve_opt length integer overflow (CKI Backport Bot) [RHEL-87978] {CVE-2025-22055} - tcp: drop secpath at the same time as we currently drop dst (Sabrina Dubroca) [RHEL-70101 RHEL-83227] {CVE-2025-21864} - s390/ism: add release function for struct device (Mete Durlu) [RHEL-73487] {CVE-2025-21856} - s390/qeth: move netif_napi_add_tx() and napi_enable() from under BH (Mete Durlu) [RHEL-73487] - s390/net: Remove LCS driver (Mete Durlu) [RHEL-73487] - s390/netiucv: Switch over to sysfs_emit() (Mete Durlu) [RHEL-73487] - s390: Add z17 elf platform (Mete Durlu) [RHEL-89725] - Revert "serial: 8250: Switch to nbcon console" (John W. Linville) [RHEL-56242] - Revert "serial: 8250: Revert "drop lockdep annotation from serial8250_clear_IER()"" (John W. Linville) [RHEL-56242] - enic: get max rq & wq entries supported by hw, 16K queues (Nelson Escobar) [RHEL-84863] - enic: cleanup of enic wq request completion path (Nelson Escobar) [RHEL-84863] - enic: added enic_wq.c and enic_wq.h (Nelson Escobar) [RHEL-84863] - enic: remove unused function cq_enet_wq_desc_dec (Nelson Escobar) [RHEL-84863] - enic: enable rq extended cq support (Nelson Escobar) [RHEL-84863] - enic: enic rq extended cq defines (Nelson Escobar) [RHEL-84863] - enic: enic rq code reorg (Nelson Escobar) [RHEL-84863] - enic: Move function from header file to c file (Nelson Escobar) [RHEL-84863] - enic: add dependency on Page Pool (Nelson Escobar) [RHEL-84863] - enic: remove copybreak tunable (Nelson Escobar) [RHEL-84863] - enic: Use the Page Pool API for RX (Nelson Escobar) [RHEL-84863] - enic: Simplify RX handler function (Nelson Escobar) [RHEL-84863] - enic: Move RX functions to their own file (Nelson Escobar) [RHEL-84863] - enic: Fix typo in comment in table indexed by link speed (Nelson Escobar) [RHEL-84863] - enic: Obtain the Link speed only after the link comes up (Nelson Escobar) [RHEL-84863] - enic: Move RX coalescing set function (Nelson Escobar) [RHEL-84863] - enic: Move kdump check into enic_adjust_resources() (Nelson Escobar) [RHEL-84863] - enic: Move enic resource adjustments to separate function (Nelson Escobar) [RHEL-84863] - enic: Adjust used MSI-X wq/rq/cq/interrupt resources in a more robust way (Nelson Escobar) [RHEL-84863] - enic: Allocate arrays in enic struct based on VIC config (Nelson Escobar) [RHEL-84863] - enic: Save resource counts we read from HW (Nelson Escobar) [RHEL-84863] - enic: Make MSI-X I/O interrupts come after the other required ones (Nelson Escobar) [RHEL-84863] - enic: Create enic_wq/rq structures to bundle per wq/rq data (Nelson Escobar) [RHEL-84863] - net: introduce per netns packet chains (Paolo Abeni) [RHEL-83393] - cifs: Fix integer overflow while processing acregmax mount option (CKI Backport Bot) [RHEL-87927] {CVE-2025-21964} - sched/fair: Fix potential memory corruption in child_cfs_rq_on_list (CKI Backport Bot) [RHEL-88085] {CVE-2025-21919} - RDMA/core: Silence oversized kvmalloc() warning (Kamal Heib) [RHEL-75593] - RDMA/cma: Fix workqueue crash in cma_netevent_work_handler (Kamal Heib) [RHEL-75593] - RDMA/ucaps: Avoid format-security warning (Kamal Heib) [RHEL-75593] - IB/mad: Check available slots before posting receive WRs (Kamal Heib) [RHEL-75593] - RDMA/core: Pass port to counter bind/unbind operations (Kamal Heib) [RHEL-75593] - RDMA/core: Add support to optional-counters binding configuration (Kamal Heib) [RHEL-75593] - RDMA/core: Create and destroy rdma_counter using rdma_zalloc_drv_obj() (Kamal Heib) [RHEL-75593] - RDMA/core: Fix use-after-free when rename device name (Kamal Heib) [RHEL-75593] - RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject() (Kamal Heib) [RHEL-75593] - docs: infiniband: document the UCAP API (Kamal Heib) [RHEL-75593] - RDMA/uverbs: Add support for UCAPs in context creation (Kamal Heib) [RHEL-75593] - RDMA/uverbs: Introduce UCAP (User CAPabilities) API (Kamal Heib) [RHEL-75593] - RDMA/core: Fixes infiniband sysctl bounds (Kamal Heib) [RHEL-75593] - RDMA/core: Don't expose hw_counters outside of init net namespace (Kamal Heib) [RHEL-75593] - RDMA/core: Fix best page size finding when it can cross SG entries (Kamal Heib) [RHEL-75593] - IB/iser: fix typos in iscsi_iser.c comments (Kamal Heib) [RHEL-75593] - RDMA/core: Use ib_port_state_to_str() for IB state sysfs (Kamal Heib) [RHEL-75593] - IB/cache: Add log messages for IB device state changes (Kamal Heib) [RHEL-75593] - cgroup/cpuset: Add warnings to catch inconsistency in exclusive CPUs (Waiman Long) [RHEL-87521] - selftest/cgroup: Add a remote partition transition test to test_cpuset_prs.sh (Waiman Long) [RHEL-87521] - selftest/cgroup: Clean up and restructure test_cpuset_prs.sh (Waiman Long) [RHEL-87521] - selftest/cgroup: Update test_cpuset_prs.sh to use | as effective CPUs and state separator (Waiman Long) [RHEL-87521] - cgroup/cpuset: Remove unneeded goto in sched_partition_write() and rename it (Waiman Long) [RHEL-87521] - cgroup/cpuset: Code cleanup and comment update (Waiman Long) [RHEL-87521] - cgroup/cpuset: Don't allow creation of local partition over a remote one (Waiman Long) [RHEL-87521] - cgroup/cpuset: Remove remote_partition_check() & make update_cpumasks_hier() handle remote partition (Waiman Long) [RHEL-87521] - cgroup/cpuset: Fix error handling in remote_partition_disable() (Waiman Long) [RHEL-87521] - cgroup/cpuset: Fix incorrect isolated_cpus update in update_parent_effective_cpumask() (Waiman Long) [RHEL-87521] - cgroup/cpuset: Fix race between newly created partition and dying one (Waiman Long) [RHEL-87521] - cgroup/cpuset: Move procfs cpuset attribute under cgroup-v1.c (Waiman Long) [RHEL-87521] - cgroup/cpuset: remove kernfs active break (Waiman Long) [RHEL-87521] - cgroup/cpuset: Prevent leakage of isolated CPUs into sched domains (Waiman Long) [RHEL-87521] - cgroup/cpuset: Remove stale text (Waiman Long) [RHEL-87521] - cgroup/cpuset: Disable cpuset_cpumask_can_shrink() test if not load balancing (Waiman Long) [RHEL-87521] - cgroup/cpuset: Further optimize code if CONFIG_CPUSETS_V1 not set (Waiman Long) [RHEL-87521] - cgroup/cpuset: Enforce at most one rebuild_sched_domains_locked() call per operation (Waiman Long) [RHEL-87521] - cgroup/cpuset: Revert "Allow suppression of sched domain rebuild in update_cpumasks_hier()" (Waiman Long) [RHEL-87521] - cgroup/cpuset: Fix spelling errors in file kernel/cgroup/cpuset.c (Waiman Long) [RHEL-87521] - sched/rt: Fix race in push_rt_task (Phil Auld) [RHEL-86833] - x86/uaccess: Improve performance by aligning writes to 8 bytes in copy_user_generic(), on non-FSRM/ERMS CPUs (Herton R. Krzesinski) [RHEL-86149] - wifi: mac80211: fix MPDU length parsing for EHT 5/6 GHz (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: cancel wiphy_work before freeing wiphy (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21979} - wifi: mac80211: fix SA Query processing in MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: nl80211: fix assoc link handling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: don't queue sdata::work for a non-running sdata (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: flush the station before moving it to UN-AUTHORIZED state (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: trans: cancel restart work on op mode leave (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: fix PNVM timeout for non-MSI-X platforms (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: pcie: Fix TSO preparation (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: nl80211: disable multi-link reconfiguration (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: regulatory: improve invalid hints checking (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21910} - wifi: brcmfmac: keep power during suspend if board requires it (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Fix sparse warning for monitor_sdata (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: fix vendor-specific inheritance (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: fix MLE non-inheritance parsing (Jose Ignacio Tornos Martinez) [RHEL-79792] - bus: mhi: host: pci_generic: Use pci_try_reset_function() to avoid deadlock (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21951} - wifi: iwlwifi: Fix A-MSDU TSO preparation (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: Free pages allocated when failing to build A-MSDU (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: limit printed string from FW file (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21905} - wifi: iwlwifi: mvm: use the right version of the rate API (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: don't try to talk to a dead firmware (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21930} - wifi: iwlwifi: mvm: don't dump the firmware state upon RFKILL while suspend (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: clean up ROC on failure (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21906} - wifi: iwlwifi: fw: avoid using an uninitialized variable (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: fw: allocate chained SG tables for dump (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: remove debugfs dir for virtual monitor (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Cleanup sta TXQs on flush (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: nl80211: reject cooked mode if it is set along with other flags (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21909} - wifi: brcmfmac: use random seed flag for BCM4355 and BCM4364 firmware (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix handling of 6 GHz rules (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: fix NULL pointer dereference in brcmf_txfinalize() (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21744} - wifi: rtw88: add RTW88_LEDS depends on LEDS_CLASS to Kconfig (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wilc1000: unregister wiphy only after netdev registration (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: adjust allocation of colocated AP data (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: fix memory leak in ieee80211_mgd_assoc_ml_reconf() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix key cache handling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Fix uninitialized variable access in ath12k_mac_allocate() function (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Remove ath12k_get_num_hw() helper function (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Refactor the ath12k_hw get helper function argument (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Refactor ath12k_hw set helper function argument (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: add implicit beamforming support for mt7992 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix beacon command during disabling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix ldpc setting (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix definition of tx descriptor (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: connac: adjust phy capabilities based on band constraints (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix incorrect indexing of MIB FW event (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix HE Phy capability (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix the capability of reception of EHT MU PPDU (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: add max mpdu len capability (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7921: avoid undesired changes of the preset regulatory domain (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925e: fix too long of wifi resume time (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix register mapping (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: fix register mapping (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix monitor mode (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: switch to single multi-radio wiphy (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: move all debugfs files to the primary phy (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: connac: rework connac helpers (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: prepare mt7996_mcu_update_bss_color for MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: connac: prepare mt76_connac_mcu_sta_basic_tlv for MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: prepare mt7996_mcu_set_timing for MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: prepare mt7996_mcu_set_tx for MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: prepare mt7996_mcu_add_beacon for MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: prepare mt7996_mcu_add_dev/bss_info for MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: pass wcid to mt7996_mcu_sta_hdr_trans_tlv (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: use emulated hardware scan support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: add multi-radio remain_on_channel functions (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: add multi-radio support to scanning code (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: add multi-radio support to tx scheduling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: add multi-radio support to a few core hw ops (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: remove dev->wcid_phy_mask (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: add chanctx functions for multi-channel phy support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: initialize more wcid fields mt76_wcid_init (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: split link specific data from struct mt7996_vif (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: add vif link specific data structure (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: rename struct mt76_vif to mt76_vif_link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: add support for allocating a phy without hw (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: add code for emulating hardware scanning (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: do not add wcid entries to sta poll list during MCU reset (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: use mac80211 .sta_state op (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: fix omac index assignment after hardware reset (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: firmware restart on devices with a second pcie link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: hold dev->mutex while interacting with the thermal state (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: ensure that only one sta entry is active per mac address (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: only enable tx worker after setting the channel (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: decrease timeout for commonly issued MCU commands (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: reduce the number of command retries (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix rx filter setting for bfee functionality (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: fix eifs value on older chipsets (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: fix slot time for 5/6GHz (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: remove phy->monitor_vif (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: remove mt76_calculate_default_rate() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7921u: Add VID/PID for TP-Link TXE50UH (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: replace zero-length array with flexible-array member (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7921: add rfkill_poll for hardware rfkill (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7921: introduce CSA support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: config the dwell time by firmware (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: do not hold queue lock during initial rx buffer alloc (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Properly handle responses for commands with events (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Cleanup MLO settings post-disconnection (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Update mt7925_mcu_uni_[tx,rx]_ba for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Init secondary link PM state (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Update secondary link PS flow (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Update mt7925_unassign_vif_chanctx for per-link BSS (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Update mt792x_rx_get_wcid for per-link STA (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Update mt7925_mcu_sta_update for BC in ASSOC state (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: Enhance mt7925_mac_link_sta_add to support MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Enhance mt7925_mac_link_bss_add to support MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Fix CNM Timeout with Single Active Link in MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: fix wrong parameter for related cmd of chan info (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Fix incorrect WCID phy_idx assignment (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Fix incorrect WCID assignment for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: Fix incorrect MLD address in bss_mld_tlv for MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: connac: Extend mt76_connac_mcu_uni_add_dev for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: exclude tx backoff time from airtime (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: exclude tx backoff time from airtime (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: fix overflows seen when writing limit attributes (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: fix overflows seen when writing limit attributes (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: fix the invalid ip address for arp offload (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: fix get wrong chip cap from incorrect pointer (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: fix wrong band_idx setting when enable sniffer mode (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: fix NULL deref check in mt7925_change_vif_links (Jose Ignacio Tornos Martinez) [RHEL-79792 RHEL-81390] {CVE-2024-57989} - wifi: mt76: introduce mt792x_config_mac_addr_list routine (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: add module param to select 5 GHz or 6 GHz on MT7916 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: Fix an error handling path in mt7915_add_interface() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7921: fix using incorrect group cipher after disconnection. (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt76u_vendor_request: Do not print error messages when -EPROTO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: avoid double free in auth/assoc timeout (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: ibss: mark IBSS left before leaving (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: ibss: stop transmit when merging IBSS (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: don't flush non-uploaded STAs (Jose Ignacio Tornos Martinez) [RHEL-79792 RHEL-82500] {CVE-2025-21828} - wifi: mac80211: set key link ID to the deflink one (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: pass correct link ID on assoc (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: simplify nested if checks (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: nl80211: simplify nested if checks (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Support parsing EPCS ML element (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Fix common size calculation for ML element (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: Add support for controlling EPCS (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Support dynamic link addition and removal (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Pull link space calculation to a function (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Refactor adding association elements (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: Add support for dynamic addition/removal of links (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: nl80211: Split the links handling of an association request (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ieee80211: Add some missing MLO related definitions (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: nl80211: fix nl80211_start_radar_detection return value (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: skip regulatory for punctured subchannels (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: fix tid removal during mesh forwarding (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: rename iwl_datapath_monitor_notif::mac_id to link_id (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: pcie: make iwl_pcie_d3_complete_suspend() static (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: pcie: make _iwl_trans_pcie_gen2_stop_device() static (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: remove unused tas_rsp variable (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: handle version 3 GET_TAS_STATUS notification (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: extend TAS_CONFIG cmd support for v5 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: remove Mr/Ms radio (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: add WIKO to PPAG approved list (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: support EMLSR on WH/PE (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: config: unify fw/pnvm MODULE_FIRMWARE (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: improve/fix chanctx min_def use logic (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: implement reset escalation (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: implement product reset for TOP errors (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: get the max number of links from the firmware (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: pcie: check for WiAMT/CSME presence (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: Move cfg80211_scan_req_add_chan() n_channels increment earlier (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: prohibit deactivating all links (Jose Ignacio Tornos Martinez) [RHEL-79792 RHEL-82444] {CVE-2024-58061} - wifi: mac80211: tests: add utility to create sdata skeleton (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: also verify requirements in EXT_SUPP_RATES (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: verify BSS membership selectors and basic rates (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: nl80211: permit userspace to pass supported selectors (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: parse BSS selectors and unknown rates (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: skip all known membership selectors (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: log link information in ieee80211_determine_chan_mode (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: fix typo in HE MCS check (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Remove unused basic_rates variable (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: improve stop/wake queue tracing (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: check extended MLD capa/ops in assoc (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: scan: skip duplicate RNR entries (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: mlme: improve messages from config_bw() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: reject per-band vendor elements with MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: clarify key idx documententaion (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: remove an unneeded check in Rx (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: add some support for RX OMI power saving (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: fw: fix repeated words in comments (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Fix duplicated 'the' in comment (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Fix duplicated 'if' in comment (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: Remove a duplicate assignment in iwl_dbgfs_amsdu_len_write() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Use helper function IS_ERR_OR_NULL() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: Fix spelling typo in comment (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: api: remove the double word (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: fix iwl_ssid_exist() check (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Improve code style in pointer declarations (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: fw: fix typo 'adderss' (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: remove unneeded NULL pointer checks (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: fix AP STA comparison (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: cleanup unused variable in trans.h (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: don't count mgmt frames as MPDU (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: fw: api: tdls: remove MVM_ from name (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: avoid NULL pointer dereference (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-58062} - wifi: iwlwifi: bump FW API to 96 for BZ/SC devices (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: fix add stream vs. restart race (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: move fw_dbg_collect to fw debugfs (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: api: remove version number from latest stored_beacon_notif (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: avoid memory leak (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mark that we support TX_CMD_API_S_VER_10 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: add channel_load_not_by_us in iwl_mvm_phy_ctxt (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: add mapping of prph register crf for PE RF (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: Allow entering EMLSR for more band combinations (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: iwl-drv: refactor image loading a bit (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: Remove MVM prefix from TX API macros (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: rename bits in config/boot control register (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: move fw_ver debugfs to firmware runtime (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mld: make iwl_mvm_find_ie_offset a iwlwifi util (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: iwl_fw_error_collect() is always called sync (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: rework firmware error handling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: restart device through NMI (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: unify cmd_queue_full() into nic_error() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: clean up FW restart a bit (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: remove STARTING state (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: restrict MAC start retry to timeouts (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: restrict driver retry loops to timeouts (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: return ERR_PTR from opmode start() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: context-info: add kernel-doc markers (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: interpret STEP URM BIOS configuration (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: fw: read STEP table from correct UEFI var (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: rename iwl_dev_tx_power_common::mac_context_id (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: skip short statistics window when updating EMLSR (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: remove warning on unallocated BAID (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: differentiate NIC error types (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Remove unused ieee80211_smps_is_restrictive (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Move TSO code to shared utility (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: add UHB canada support in GET_TAS_STATUS cmd resp (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: add UHB canada support in TAS_CONFIG cmd (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Use IWL_FW_CHECK() for BAR notif size validation (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: pcie: Add support for new device ids (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: add a new NMI type (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Check BAR packet size before accessing data (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: support BIOS override for 5G9 in CA also in LARI version 8 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: support BIOS override for UNII4 in CA/US also in LARI versions < 12 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: bump FW API to 95 for BZ/SC devices (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: log error for failures after D3 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: update documentation for iwl_nvm_channel_flags (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: Remove mvm prefix from iwl_mvm_compressed_ba_notif (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mvm: Request periodic system statistics earlier (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: remove mvm from session protection cmd's name (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: copy multi-link element from the multi-link probe request's frame body to the generated elements (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: cleanup iwl_mvm_sta_del (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: change disassoc sequence a bit (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: add an option to filter a sta from being flushed (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: send the right link id (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: remove pre-mld code from mld path (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: fix documentation about initial values in station table (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Clean up debugfs_key deadcode (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7921: fix a potential scan no APs (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: Fix EHT NSS radiotap reporting. (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: Add eht radiotap tlv (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7915: Fix mesh scan on MT7916 DBDC (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7615: Convert comma to semicolon (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7925: fix off by one in mt7925_load_clc() (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-57990} - wifi: mt76: mt7921s: fix a potential firmware freeze during startup (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt792x: add P2P_DEVICE support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: set correct background radar capability (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: add support for more variants (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mt76: mt7996: extend flexibility of mt7996_mcu_get_eeprom() (Jose Ignacio Tornos Martinez) [RHEL-79792] - net: remove get_task_comm() and print task comm directly (Jose Ignacio Tornos Martinez) [RHEL-79792] - kernel-wide: add explicity||explicitly to spelling.txt (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add support for LED blinking (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: sdio: Fix disconnection after beacon loss (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: 8703b: Fix RX/TX issues (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Delete rf_type member of struct rtw_sta_info (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add USB PHY configuration (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8922ae: add variant info to support RTL8922AE-VS (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: read hardware capabilities part 1 via firmware command (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: fix race between cancel_hw_scan and hw_scan completion (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21729} - wifi: rtw89: mcc: consider time limits not divisible by 1024 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: pci: treat first receiving part as first segment for 8922AE (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: avoid to init mgnt_entry list twice when WoWLAN failed (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2025-21730} - wifi: rtw89: correct header conversion rule for MLO only (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: chan: fix soft lockup in rtw89_entity_recalc_mgnt_roles() (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-57991} - wifi: rtw89: fix proceeding MCC with wrong scanning state after sequence changes (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath9k: cleanup ath9k_hw_get_nf_hist_mid() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support pdev Puncture Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support AST Entry Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support Transmit Buffer OFDMA Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support Transmit Rate Buffer Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: Add missing Return: to function documentation (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rt2x00: Remove unused rfval values (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: Check the return value of of_property_read_string_index() (Jose Ignacio Tornos Martinez) [RHEL-79792 RHEL-81327] {CVE-2025-21750} - wifi: wilc1000: unregister wiphy only if it has been registered (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-57992} - wifi: mt76: mt7996: fix invalid interface combinations (Jose Ignacio Tornos Martinez) [RHEL-79792] - bus: mhi: host: pci_generic: Enable MSI-X if the endpoint supports (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix tx power, max reg power update to firmware (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: set flag for mgmt no-ack frames in Tx completion (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Include MLO memory in firmware coredump collection (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: handle radar detection with MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix CAC running state during virtual interface start (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: rename CAC_RUNNING flag (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: pci: disable PCI completion timeout control (Jose Ignacio Tornos Martinez) [RHEL-79792] - bus: mhi: host: pci_generic: Add support for QDU100 device (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtl8xxxu: Fix RTL8188EU firmware upload block size (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: debug: print regd for QATAR/UK/THAILAND (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: adjust thermal protection step and more RTL8852BE-VT ID (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: usb: Preallocate and reuse the RX skbs (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Handle C2H_ADAPTIVITY in rtw_fw_c2h_cmd_handle() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: usb: Copy instead of cloning the RX skb (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: 8821a/8812a: Set ptct_efuse_size to 0 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: 8812a: Support RFE type 2 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: rtl8821ae: Fix media status report (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: add __packed attribute to efuse layout struct (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Fix spelling mistake "requestted" -> "requested" (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Avoid explicit type cast in monitor status parse handler (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Change the Tx monitor SRNG ring ID (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Remove unused HAL Rx mask in DP monitor path (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix incorrect TID updation in DP monitor status path (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Fix the misspelled of hal TLV tag HAL_PHYRX_GENERICHT_SIG (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: cleanup Rx peer statistics structure (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Refactor monitor status TLV structure (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Add documentation HTT_H2T_MSG_TYPE_RX_RING_SELECTION_CFG (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Decrease ath12k_mac_station_assoc() stack usage (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Decrease ath12k_sta_rc_update_wk() stack usage (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Decrease ath12k_bss_assoc() stack usage (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Decrease ath12k_mac_op_remain_on_channel() stack usage (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Add support for parsing 64-bit TLVs (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath9k: simplify internal time management (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath9k: cleanup a few (mostly) TX-related routines (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath9k: cleanup ath_txq_skb_done() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: clarify unmodifiable headroom log message (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: advertise MLO support and capabilities (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: assign unique hardware link IDs during QMI host cap (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add ATH12K_FW_FEATURE_MLO capability firmware feature (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: remove warning print in htt mlo offset event message (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add no-op without debug print in WMI Rx event (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add can_activate_links mac operation (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: symmetrize scan vdev creation and deletion during HW scan (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: pass link ID during MLO while delivering skb (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix ar->supports_6ghz usage during hw register (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix ath12k_qmi_alloc_chunk() to handle too large allocations (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: advertise multi device interface combination (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Refactor radio frequency information (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: introduce interface combination cleanup helper (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add helper function to init partner cmem configuration (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add partner device buffer support in receive data path (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: move to HW link id based receive handling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: avoid redundant code in DP Rx error process (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: enable MLO setup and teardown from core (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Add MLO WMI setup and teardown functions (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add support to allocate MLO global memory region (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: refactor ath12k_qmi_alloc_target_mem_chunk() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: send partner device details in QMI MLO capability (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: parse multiple device information from Device Tree (Jose Ignacio Tornos Martinez) [RHEL-79792] - dt-bindings: net: wireless: Describe ath12k PCI module with WSI (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: add missing header include for brcmf_dbg (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmsmac: add gain range check to wlc_phy_iqcal_gainparams_nphy() (Jose Ignacio Tornos Martinez) [RHEL-79792 RHEL-81286] {CVE-2024-58014} - wifi: ath12k: fix read pointer after free in ath12k_mac_assign_vif_to_vdev() (Jose Ignacio Tornos Martinez) [RHEL-79792 RHEL-81448] {CVE-2024-57995} - wifi: rtw89: phy: add dummy C2H event handler for report of TAS power (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8851b: rfk: remove unnecessary assignment of return value of _dpk_dgain_read() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852c: rfk: refine target channel calculation in _rx_dck_channel_calc() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: pci: wait for firmware loading before releasing memory (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: fix memory leaks and invalid access at probe error path (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-58063} - wifi: rtlwifi: destroy workqueue at rtl_deinit_core (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: remove unused check_buddy_priv (Jose Ignacio Tornos Martinez) [RHEL-79792 RHEL-82466] {CVE-2024-58072} - wifi: rtw89: 8922a: update format of RFK pre-notify H2C command v2 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: regd: update regulatory map to R68-R51 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852c: disable ER SU when 4x HE-LTF and 0.8 GI capability differ (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: disable firmware training HE GI and LTF (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: ps: update data for firmware and settings for hardware before/after PS (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: ps: refactor channel info to firmware before entering PS (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: ps: refactor PS flow to support MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Off by one in ath12k_wmi_process_csa_switch_count_event() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix leaking michael_mic for non-primary links (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mwifiex: decrease timeout waiting for host sleep from 10s to 5s (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: fix brcmf_vif_clear_mgmt_ies when stopping AP (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: fix scatter-gather handling by detecting end of sg list (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: introduce mlo_capable flag for device group (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: send QMI host capability after device group is ready (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: move struct ath12k_hw from per device to group (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: refactor core start based on hardware group (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: introduce device group abstraction (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: rename mlo_capable_flags to single_chip_mlo_supp (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: move ATH12K_FLAG_REGISTERED handling to ath12k_mac_register() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: add crystal_cap check to avoid setting as overflow value (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: refine link handling for link_sta_rc_update (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8922a: use RSSI from PHY report in RX descriptor (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852bt: add beacon filter and CQM support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852b: add beacon filter and CQM support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8922a: Extend channel info field length for scan (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211_hwsim: add 6 GHz EHT Mesh capabilities (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: add EHT 320 MHz support for mesh (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: ethtool: add monitor channel reporting (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: get tx power per link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: send MLO links tx power info in GET_INTERFACE (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Replace spaces for tabs in iwl_mvm_vendor_events_idx (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: use wiphy guard (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: define and use wiphy guard (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Accept authentication frames on P2P device (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: fix variable used in for_each_sdata_link() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: fix vif addr when switching from monitor to station (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: fix mbss changed flags corruption on 32 bit systems (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-57899} - bus: mhi: host: Free mhi_buf vector inside mhi_alloc_bhie_table() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: introduce QMI firmware ready flag (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add ath12k_get_num_hw() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add ath12k_ab_to_ah() and ath12k_ab_set_ah() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Refactor core startup (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: ath12k_mac_op_sta_rc_update(): use mac80211 provided link id (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: ath12k_mac_op_set_key(): fix uninitialized symbol 'ret' (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: defer vdev creation for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: ath12k_bss_assoc(): MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: do not return invalid link id for scan link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: ath12k_mac_station_add(): fix potential rx_stats leak (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: ath12k_mac_op_ampdu_action(): MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: ath12k_mac_op_flush(): MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: ath12k_mac_op_tx(): MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: convert struct ath12k::wmi_mgmt_tx_work to struct wiphy_work (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: pass target link_id to ieee80211_nullfunc_get() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: pass target link_id to ieee80211_gtk_rekey_add() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: apply MLD pairwise key to dynamically active links (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: implement ops of change vif/sta links (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: register ops of can_activate_links (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8922a: configure AP_LINK_PS if FW supports (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Use mac80211 sta's link_sta instead of deflink (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Use mac80211 vif's link_conf instead of bss_conf (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: modify chanctx iterators for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add reo queue lookup table for ML peers (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: use arsta instead of sta (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add primary link for data path operations (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: support change_sta_links() mac80211 op (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Add MLO station state change handling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: mark ath11k_wow_convert_8023_to_80211() as noinline (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: mark ath11k_dp_rx_mon_mpdu_pop() as noinline (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: mark some QMI driver event helpers as noinline (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Fix inappropriate use of print_array_to_buf_index() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: add support for QCA6698AQ (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: miscellaneous spelling fixes (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: cleanup struct ath11k_mon_data (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: cleanup struct ath11k_reg_tpc_power_info (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: cleanup struct ath11k_vif (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Fix endianness issue in struct hal_tlv_64_hdr (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: usb: Enable RX aggregation for 8821au/8812au (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: usb: Support USB 3 with RTL8812AU (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support MBSSID Control Frame Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support Transmit PER Rate Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support SoC Common Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support phy counter and TPC stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support Downlink Pager Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath9k: Add RX inactivity detection and reset chip when it occurs (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtl8xxxu: add more missing rtl8192cu USB IDs (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: handle different TX power between RF path (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: introduce dynamic antenna gain feature (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: sar: tweak 6GHz SAR subbands span (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: pci: disable PCIE wake bit when PCIE deinit (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: usb: fix workqueue leak when probe fails (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: fix init_sw_vars leak when probe fails (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: wait for firmware loading before releasing memory (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: rtl8192se: rise completion of firmware loading as last step (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: do not complete firmware loading needlessly (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add additional USB IDs for RTL8812BU (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: 8812au: Add more device IDs (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: 8821au: Add additional devices to the USB_DEVICE list (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: Fix unexpected return buffer manager error for WCN6750/WCN6855 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Fix for out-of bound access error (Jose Ignacio Tornos Martinez) [RHEL-79792 RHEL-81430] {CVE-2024-58015} - wifi: ath9k: miscellaneous spelling fixes (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: pass MBSSID config by reference (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Support EHT 1024 aggregation size in TX (Jose Ignacio Tornos Martinez) [RHEL-79792] - net: rfkill: gpio: Add check for clk_enable() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: Fix oops due to NULL pointer dereference in brcmf_sdiod_sglist_rw() (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-56593} - wifi: Switch back to struct platform_driver::remove() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: release 'root' node in all execution paths (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: don't call power_update_mac in fast suspend (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: s/IWL_MVM_INVALID_STA/IWL_INVALID_STA (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: bump minimum API version in BZ/SC to 92 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: move IWL_LMAC_*_INDEX to fw/api/context.h (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: be less noisy if the NIC is dead in S3 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: support new initiator and responder command version (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: use wiphy locked debugfs for low-latency (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: MLO scan upon channel condition degradation (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: support new versions of the wowlan APIs (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: allow always calling iwl_mvm_get_bss_vif() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: unify link info initialization (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: clarify fw_id_to_link_sta protection (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: Fix an error handling path in nl80211_start_ap() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: fix description of ieee80211_set_active_links() for new sequence (Jose Ignacio Tornos Martinez) [RHEL-79792] - _RESEND_PATCH_v2_04_19_wifi_rt2x00_Remove_redundant_hrtimer_init_ (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Add MLO peer assoc command support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add helper to find multi-link station (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add multi-link flag in peer create command (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Add helpers for multi link peer creation and deletion (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: introduce ath12k_hw_warn() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Refactor sta state machine (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: MLO vdev bringup changes (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: ath12k_mac_vdev_create(): use goto for error handling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: mark QMI driver event helpers as noinline (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: Suspend hardware before firmware mode off for WCN6750 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: Remove some exhalbtc deadcode (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Enable the new RTL8821AU/RTL8812AU drivers (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add rtw8821au.c and rtw8812au.c (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add rtw8812a.{c,h} (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add rtw8821a.{c,h} (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add rtw88xxa.{c,h} (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add rtw8821a_table.{c,h} (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add rtw8812a_table.{c,h} (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: coex: set higher priority to BT when WL scan and BT A2DP exist (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852b: change RF mode to normal mode when set channel (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8922a: fill the missing OP1dB configuration (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: mac: no configure CMAC/DMAC tables for firmware secure boot (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: fw: use common function to parse security section for WiFi 6 chips (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: fw: move v1 MSSC out of __parse_security_section() to share with v0 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: fw: set recorded IDMEM share mode in firmware header to register (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: fw: shrink download size of security section for RTL8852B (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: efuse: read firmware secure info v0 from efuse for WiFi 6 chips (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: efuse: move recognize firmware MSS info v1 to common (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: efuse: move reading efuse of fw secure info to common (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: set pause_data field to avoid transmitting data in scan channels (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: don't check done-ack for entering PS (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcm80211: Remove unused dma_txflush() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: 8812a: Mitigate beacon loss (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: 8821a: Regularly ask for BT info updates (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: coex: Support chips without a scoreboard (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Detect beacon loss with chips other than 8822c (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: usb: Set pkt_info.ls for the reserved page (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Move pwr_track_tbl to struct rtw_rfe_def (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Support TX page sizes bigger than 128 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Make txagc_remnant_ofdm an array (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Enable data rate fallback for older chips (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Let each driver control the power on/off process (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Allow rtw_chip_info.ltecoex_addr to be NULL (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Extend the init table parsing for RTL8812AU (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Allow different C2H RA report sizes (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Dump the HW features only for some chips (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Add some definitions for RTL8821AU/RTL8812AU (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Report the signal strength only if it's known (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8922a: extend RFK handling and consider MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: tweak setting of channel and TX power for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: chan: manage active interfaces (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: Add encryption support for MLO connections (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: Add header conversion for MLO connections (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: convert tasklet to BH workqueue for CE interrupts (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: unlock on error path in rtw89_ops_unassign_vif_chanctx() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: coex: Set Wi-Fi/Bluetooth priority for Wi-Fi scan case (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: fix -Wenum-compare-conditional warnings (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: use MODULE_FIRMWARE() to declare used firmware (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Refactor looping in rtw_phy_store_tx_power_by_rate (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: regd: block 6 GHz if marked as N/A in regd map (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: pci: add quirks by PCI subsystem ID for thermal protection (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: add thermal protection (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix A-MSDU indication in monitor mode (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: use tail MSDU to get MSDU information (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: delete NSS and TX power setting for monitor vdev (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix struct hal_rx_mpdu_start (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix struct hal_rx_phyrx_rssi_legacy_info (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix struct hal_rx_ppdu_start (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix struct hal_rx_ppdu_end_user_stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: remove unused variable monitor_present (Jose Ignacio Tornos Martinez) [RHEL-79792] - mac80211: Remove NOP call to ieee80211_hw_config (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: work around -Wenum-compare-conditional warning (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: re-order assigning channel in activate links (Jose Ignacio Tornos Martinez) [RHEL-79792] - fs: debugfs: fix open proxy for unsafe files (Jose Ignacio Tornos Martinez) [RHEL-79792] - debugfs: fix missing mutex_destroy() in short_fops case (Jose Ignacio Tornos Martinez) [RHEL-79792] - fs: debugfs: differentiate short fops with proxy ops (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: convert debugfs files to short fops (Jose Ignacio Tornos Martinez) [RHEL-79792] - debugfs: add small file operations for most files (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: remove misleading j_0 construction parts (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211_hwsim: use hrtimer_active() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: refactor BW limitation check for CSA parsing (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: filter on monitor interfaces based on configured channel (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: refactor ieee80211_rx_monitor (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: add support for the monitor SKIP_TX flag (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: add monitor SKIP_TX flag (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: add flag to opt out of virtual monitor support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: pass net_device to .set_monitor_channel (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: remove status->ampdu_delimiter_crc (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: report per wiphy radio antenna mask (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: use vif radio mask to limit creating chanctx (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: use vif radio mask to limit ibss scan frequencies (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: add option for vif allowed radios (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: allow IWL_FW_CHECK() with just a string (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: remove redundant check (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: fw: add an error table status getter (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: do not warn about a flush with an empty TX queue (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: remove IWL_MVM_HW_CSUM_DISABLE (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: remove unneeded check (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Remove redundant rcu_read_lock() in reorder buffer (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Remove unused last_amsdu from reorder buffer (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: fw: api: update link context API version (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: log information about HW restart completion (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: prepare the tx_power handling to be per-link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: exit EMLSR earlier if bss_param_ch_cnt is updated (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: iwlwifi: mvm: Add support for prep_add_interface() callback (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: expose ieee80211_chan_width_to_rx_bw() to drivers (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: chan: calculate min_def also for client mode (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: add an option to fake ieee80211_connection_loss (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: parse A-MSDU len from EHT capabilities (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: call rate_control_rate_update() for link STA (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: allow rate_control_rate_init() for links (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: update the right link for tx power (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: __ieee80211_recalc_txpower receives a link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: ieee80211_recalc_txpower receives a link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: remove unneeded parameters (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: make bss_param_ch_cnt available for the low level driver (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: rename IEEE80211_CHANCTX_CHANGE_MIN_WIDTH (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: disallow SMPS in AP mode (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: Add support to indicate that a new interface is to be added (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: sar: add supported UNII-4 frequency range along with UNII-3 of SAR subband (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852c: use 'int' as return type of error code pwr_{on,off}_func() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852bt: use 'int' as return type of error code pwr_{on,off}_func() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852b: use 'int' as return type of error code pwr_{on,off}_func() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8851b: use 'int' as return type of error code pwr_{on,off}_func() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: pci: use 'int' as return type of error code in poll_{tx,rx}dma_ch_idle() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: wow: cast nd_config->delay to u64 in tsf arithmetic (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_config_scan() (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-56539} - wifi: brcmfmac: of: use devm_clk_get_optional_enabled_with_rate() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmsmac: Remove unused brcms_debugfs_get_devdir() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: Remove unused brcmf_cfg80211_get_iftype() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wilc1000: Set MAC after operation mode (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mwifiex: cleanup struct mwifiex_private (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mwifiex: cleanup struct mwifiex_auto_tdls_peer (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wilc1000: Add WILC3000 support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wilc1000: Register wiphy after reading out chipid (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wilc1000: Fold wilc_create_wiphy() into cfg80211.c (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wilc1000: Fill in missing error handling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wilc1000: Fold chip_allow_sleep()/chip_wakeup() into wlan.c (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wilc1000: Clean up usage of wilc_get_chipid() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wilc1000: Keep slot powered on during suspend/resume (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rt2x00: convert comma to semicolon (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: modify link arvif creation and removal for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: update ath12k_mac_op_update_vif_offload() for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: update ath12k_mac_op_conf_tx() for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: modify ath12k_mac_op_set_key() for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: modify ath12k_mac_op_bss_info_changed() for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: modify ath12k_get_arvif_iter() for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: modify ath12k_mac_vif_chan() for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: prepare vif config caching for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: prepare sta data structure for MLO handling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: pass ath12k_link_vif instead of vif/ahvif (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: prepare vif data structure for MLO handling (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support BE OFDMA Pdev Rate Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support Pdev Scheduled Algorithm Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support DMAC Reset Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Add firmware coredump collection support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: add missing lockdep_assert_wiphy() for ath12k_mac_op_ functions (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath10k: avoid NULL pointer error during sdio remove (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-56599} - wifi: ath12k: ath12k_mac_op_sta_state(): clean up update_wk cancellation (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: ath12k_mac_set_key(): remove exit label (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: cleanup unneeded labels (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: switch to using wiphy_lock() and remove ar->conf_mutex (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: convert struct ath12k_sta::update_wk to use struct wiphy_work (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: fix atomic calls in ath12k_mac_op_set_bitrate_mask() (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-56607} - wifi: ath12k: Support Pdev OBSS Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support pdev CCA Stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support pdev Transmit Multi-user stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support Ring and SFM stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Support Self-Generated Transmit stats (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: wow: do not configure CPU IO to receive packets for old firmware (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: coex: Add function to reorder Wi-Fi firmware report index (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: coex: Solved BT PAN profile idle decrease Wi-Fi throughput (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: coex: Reorder Bluetooth info related logic (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: coex: Update priority setting for Wi-Fi is scanning (Jose Ignacio Tornos Martinez) [RHEL-79792] - Revert "wifi: cfg80211: unexport wireless_nlevent_flush()" (Jose Ignacio Tornos Martinez) [RHEL-79792] - wireless: wext: shorten struct iw_ioctl_description (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: unexport wireless_nlevent_flush() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: remove iw_public_data from struct net_device (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: cfg80211: stop exporting wext symbols (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: wext/libipw: move spy implementation to libipw (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ipw2x00/lib80211: move remaining lib80211 into libipw (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mwifiex: don't include lib80211.h (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: nl80211: remove redundant null pointer check in coalescing (Jose Ignacio Tornos Martinez) [RHEL-79792] - mac80211: Reorganize kerneldoc parameter names (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211, cfg80211: miscellaneous spelling fixes (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mac80211: constify ieee80211_ie_build_{he,eht}_oper() chandef (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: Modify print_array_to_buf() to support arrays with 1-based semantics (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: debug: add beacon RSSI for debugging (Jose Ignacio Tornos Martinez) [RHEL-79792] - bus: mhi: host: Fix typos in the comments (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: handle entity active flag per PHY (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: initialize dual HW bands for MLO and control them by link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852ce: set offset K of PCI PHY EQ to manual mode to improve compatibility (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852ce: fix gray code conversion for filter out EQ (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8922ae: disable PCI PHY EQ to improve compatibility (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: pci: consolidate PCI basic configurations for probe and resume (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: move txbaddr/rxbaddr into struct ath12k_dp (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: allow missing memory-regions (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: fix the stack frame size warning in ath11k_vif_wow_set_wakeups (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: enable fw_wmi_diag_event hw param for WCN6750 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath11k: Fix double free issue during SRNG deinit (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath10k: fix the stack frame size warning in ath10k_hw_scan (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath10k: fix the stack frame size warning in ath10k_remain_on_channel (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath10k: fix invalid VHT parameters in supported_vht_mcs_rate_nss2 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath10k: fix invalid VHT parameters in supported_vht_mcs_rate_nss1 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: Parse the RX descriptor with a single function (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8852c: rfk: remove unnecessary assignment of return value of _dpk_dgain_read() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: tweak driver architecture for impending MLO support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: refactor STA related func ahead for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: refactor VIF related func ahead for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: read link_sta corresponding to the link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: read bss_conf corresponding to the link (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: rename rtw89_sta to rtw89_sta_link ahead for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: rename rtw89_vif to rtw89_vif_link ahead for MLO (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw88: use ieee80211_purge_tx_queue() to purge TX skb (Jose Ignacio Tornos Martinez) [RHEL-79792] {CVE-2024-56609} - wifi: rtw88: Constify some arrays and structs (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: rfk: update firmware debug log of DACK to v2 (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: rfk: add firmware debug log of IQK (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: rfk: add firmware debug log of TSSI (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8922a: rfk: support firmware command RX DCK v1 format (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtw89: 8922a: rfk: enlarge TSSI timeout time to 20ms (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: rtlwifi: make read-only arrays static const (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath12k: make read-only array svc_id static const (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath9k: remove ath9k_platform_data (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath9k: btcoex: remove platform_data (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath9k: eeprom: remove platform data (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: mwifiex: Use IRQF_NO_AUTOEN flag in request_irq() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: add flag for random seed during firmware download (Jose Ignacio Tornos Martinez) [RHEL-79792] - dt-bindings: net: wireless: brcm4329-fmac: add clock description for AP6275P (Jose Ignacio Tornos Martinez) [RHEL-79792] - dt-bindings: net: wireless: brcm4329-fmac: add pci14e4,449d (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: Add optional lpo clock enable support (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: brcmfmac: of: Make use of irq_get_trigger_type() (Jose Ignacio Tornos Martinez) [RHEL-79792] - wifi: ath9k: use clamp() in ar9003_aic_cal_post_process() (Jose Ignacio Tornos Martinez) [RHEL-79792] - config: wifi: disable new unsupported configuration options (Jose Ignacio Tornos Martinez) [RHEL-79792] - selftests: netfilter: skip br_netfilter queue tests if kernel is tainted (CKI Backport Bot) [RHEL-82376] - io_uring: prevent opcode speculation (CKI Backport Bot) [RHEL-83233] {CVE-2025-21863} - gitlab-ci: use rhel10 builder image (Michael Hofmann) - selftests: netdevsim: add ethtool features to macsec offload tests (Sabrina Dubroca) [RHEL-26055] - selftests: netdevsim: add test toggling macsec offload (Sabrina Dubroca) [RHEL-26055] - selftests: move macsec offload tests from net/rtnetlink to drivers/net/netdvesim (Sabrina Dubroca) [RHEL-26055] - macsec: inherit lower device's TSO limits when offloading (Sabrina Dubroca) [RHEL-26055] - macsec: clean up local variables in macsec_notify (Sabrina Dubroca) [RHEL-26055] - macsec: add some of the lower device's features when offloading (Sabrina Dubroca) [RHEL-26055] - selftests: netdevsim: add a test checking ethtool features (Sabrina Dubroca) [RHEL-26055] - netdevsim: add more hw_features (Sabrina Dubroca) [RHEL-26055] - ALSA: update RHEL kconfigs for 6.14 upstream code (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: test_bin_error: Fix uninitialized data used as fw version (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: Add quirk for Asus Zenbook S16 (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek - Fixed ASUS platform headset Mic issue (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: test_bin_error: Use same test cases for adsp2 and Halo Core (Jaroslav Kysela) [RHEL-80677] - mfd: cs42l43: Use devres for remove as well (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Ensure cs_dsp_load[_coeff]() returns 0 on success (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Fix built-in mic assignment on ASUS VivoBook X515UA (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Fix built-in mic breakage on ASUS VivoBook X515JA (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Fix built-in mic on another ASUS VivoBook model (Jaroslav Kysela) [RHEL-80677] - soundwire: take in count the bandwidth of a prepared stream (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: test_control_parse: null-terminate test strings (Jaroslav Kysela) [RHEL-80677] - ASoC: simple-card-utils: Don't use __free(device_node) at graph_util_parse_dai() (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Bass speaker fixup for ASUS UM5606KA (Jaroslav Kysela) [RHEL-80677] - ALSA: usb-audio: separate DJM-A9 cap lvl options (Jaroslav Kysela) [RHEL-80677] - jiffies: Cast to unsigned long in secs_to_jiffies() conversion (Jaroslav Kysela) [RHEL-80677] - jiffies: Define secs_to_jiffies() (Jaroslav Kysela) [RHEL-80677] - PCI: pci_ids: add INTEL_HDA_PTL_H (Jaroslav Kysela) [RHEL-80677] - ASoC: cs42l43: convert to SYSTEM_SLEEP_PM_OPS (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Add mute LED quirk for HP Pavilion x360 14-dy1xxx (Jaroslav Kysela) [RHEL-80677] - ASoC: codecs: wm0010: Fix error handling path in wm0010_spi_probe() (Jaroslav Kysela) [RHEL-80677] - ASoC: rt722-sdca: add missing readable registers (Jaroslav Kysela) [RHEL-80677] - ASoC: amd: yc: Support mic on another Lenovo ThinkPad E16 Gen 2 model (Jaroslav Kysela) [RHEL-80677] - ASoC: cs42l43: Fix maximum ADC Volume (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Add support for ASUS Zenbook UM3406KA Laptops using CS35L41 HDA (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Add support for ASUS B5405 and B5605 Laptops using CS35L41 HDA (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Add support for ASUS B3405 and B3605 Laptops using CS35L41 HDA (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Add support for various ASUS Laptops using CS35L41 HDA (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Add support for ASUS ROG Strix G614 Laptops using CS35L41 HDA (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Add support for ASUS ROG Strix GA603 Laptops using CS35L41 HDA (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Add support for ASUS ROG Strix G814 Laptop using CS35L41 HDA (Jaroslav Kysela) [RHEL-80677] - ASoC: ops: Consistently treat platform_max as control value (Jaroslav Kysela) [RHEL-80677] - ASoC: rt1320: set wake_capable = 0 explicitly (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: intel: Add Dell ALC3271 to power_save denylist (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: update ALC222 depop optimize (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: realtek: fix incorrect IS_REACHABLE() usage (Jaroslav Kysela) [RHEL-80677] - ASoC: cs42l43: Add jack delay debounce after suspend (Jaroslav Kysela) [RHEL-80677] - ASoC: codecs: wsa884x: report temps to hwmon in millidegree of Celsius (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: Fix unlikely uninitialized variable use in create_sdw_dailinks() (Jaroslav Kysela) [RHEL-80677] - ALSA: usx2y: validate nrpacks module parameter on probe (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek - add supported Mic Mute LED for Lenovo platform (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: Avoid module auto-load handling at event delivery (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Fix speakers on ASUS EXPERTBOOK P5405CSA 1.0 (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Fix Asus Z13 2025 audio (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Remove (revert) duplicate Ally X config (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Fix microphone regression on ASUS N705UD (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Fix wrong mic setup for ASUS VivoBook 15 (Jaroslav Kysela) [RHEL-80677] - ASoC: cs35l56: Prevent races when soft-resetting using SPI control (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Remove async regmap writes (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: warn both sdw and pch dmic are used (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: Intel: don't check number of sdw links when set dmic_fixup (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl: Rename stream name of SAI DAI driver (Jaroslav Kysela) [RHEL-80677] - ASoC: es8328: fix route from DAC to output (Jaroslav Kysela) [RHEL-80677] - ALSA: usb-audio: Re-add sample rate quirk for Pioneer DJM-900NXS2 (Jaroslav Kysela) [RHEL-80677] - ASoC: tas2764: Set the SDOUT polarity correctly (Jaroslav Kysela) [RHEL-80677] - ASoC: tas2764: Fix power control mask (Jaroslav Kysela) [RHEL-80677] - ALSA: usb-audio: Avoid dropping MIDI events at closing multiple ports (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: Drop UMP events when no UMP-conversion is set (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/conexant: Add quirk for HP ProBook 450 G4 mute LED (Jaroslav Kysela) [RHEL-80677] - ASoC: tas2770: Fix volume scale (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/cirrus: Reduce codec resume time (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/cirrus: Correct the full scale volume set logic (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Add error check for snd_ctl_rename_id() in snd_hda_create_dig_out_ctls() (Jaroslav Kysela) [RHEL-80677] - ASoC: imx-audmix: remove cpu_mclk which is from cpu dai device (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Fixup ALC225 depop procedure (Jaroslav Kysela) [RHEL-80677] - ASoC: cs35l41: Fix acpi_device_hid() not found (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: amd: Add branch prediction hint in ACP IRQ handler (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: amd: Handle IPC replies before FW_BOOT_COMPLETE (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: amd: Drop unused includes from Vangogh driver (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: amd: Add post_fw_run_delay ACP quirk (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: soc-acpi-intel-ptl-match: revise typo of rt713_vb_l2_rt1320_l13 (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: soc-acpi-intel-ptl-match: revise typo of rt712_vb + rt1320 support (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: hda-intel: add Panther Lake-H support (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: Intel: pci-ptl: Add support for PTL-H (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: intel-dsp-config: Add PTL-H support (Jaroslav Kysela) [RHEL-80677] - ASoC: tas2781: drop a redundant code (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: Intel: hda: add softdep pre to snd-hda-codec-hdmi module (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: ipc4-topology: Harden loops for looking up ALH copiers (Jaroslav Kysela) [RHEL-80677] {CVE-2025-21870} - ASoC: cs35l41: Fallback to using HID for system_name if no SUB is available (Jaroslav Kysela) [RHEL-80677] - ASoC: arizona/madera: use fsleep() in up/down DAPM event delays. (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: pcm: Clear the susbstream pointer to NULL on close (Jaroslav Kysela) [RHEL-80677] - ASoC: rsnd: adjust convert rate limitation (Jaroslav Kysela) [RHEL-80677] - ASoC: rsnd: don't indicate warning on rsnd_kctrl_accept_runtime() (Jaroslav Kysela) [RHEL-80677] - ASoC: rsnd: indicate unsupported clock rate (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Limit mic boost on Positivo ARN50 (Jaroslav Kysela) [RHEL-80677] - ASoC: simple-card-utils.c: add missing dlc->of_node (Jaroslav Kysela) [RHEL-80677] - ASoC: rockchip: i2s-tdm: fix shift config for SND_SOC_DAIFMT_DSP_[AB] (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: soc-acpi-intel-mtl-match: declare adr as ull (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: soc-acpi-intel-tgl-match: declare adr as ull (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: Add support for Fatcat board with BT offload enabled in PTL platform (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: Add quirk for Asus Zenbook S14 (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: Add lookup of quirk using PCI subsystem ID (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_micfil: Enable default case in micfil_set_quality() (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Workaround for resume on Dell Venue 11 Pro 7130 (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Fix headset detection failure due to unstable sort (Jaroslav Kysela) [RHEL-80677] - ALSA: pcm: use new array-copying-wrapper (Jaroslav Kysela) [RHEL-80677] - ASoC: codec: es8316: "DAC Soft Ramp Rate" is just a 2 bit control (Jaroslav Kysela) [RHEL-80677] - ASoC: amd: acp: Fix possible deadlock (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: FW_CS_DSP_KUNIT_TEST should not select REGMAP (Jaroslav Kysela) [RHEL-80677] - ALSA: usb-audio: Add delay quirk for iBasso DC07 Pro (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Fix quirk matching for Legion Pro 7 (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: SND_SIU_MIGOR should depend on DMADEVICES (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla 10 tablet 5V (Jaroslav Kysela) [RHEL-80677] - ASoC: da7213: Initialize the mutex (Jaroslav Kysela) [RHEL-80677] - ASoC: use to_platform_device() instead of container_of() (Jaroslav Kysela) [RHEL-80677] - ASoC: acp: Support microphone from Lenovo Go S (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: imx8m: Add entry for new 8M Plus revision (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: imx8: Add entries for new 8QM and 8QXP revisions (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: imx: Add mach entry to select cs42888 topology (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_asrc_m2m: select CONFIG_DMA_SHARED_BUFFER (Jaroslav Kysela) [RHEL-80677] - ASoC: audio-graph-card2: use correct endpoint when getting link parameters (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: imx8m: add SAI2,5,6,7 (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: ti,pcm1681: Fix the binding title (Jaroslav Kysela) [RHEL-80677] - ALSA: usb: fcp: Fix return code from poll ops (Jaroslav Kysela) [RHEL-80677] - ALSA: usb: fcp: Fix incorrect resp->opcode retrieval (Jaroslav Kysela) [RHEL-80677] - ALSA: usb: fcp: Fix meter_levels type to __le32 (Jaroslav Kysela) [RHEL-80677] - ASoC: rockchip: i2s_tdm: Re-add the set_sysclk callback (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Enable Mute LED on HP Laptop 14s-fq1xxx (Jaroslav Kysela) [RHEL-80677] - ASoC: codecs: ES8326: Improved PSRR (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_asrc_m2m: return error value in asrc_m2m_device_run() (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_asrc_m2m: only handle pairs for m2m in the suspend (Jaroslav Kysela) [RHEL-80677] - ALSA: ctxfi: Simplify dao_clear_{left,right}_input() functions (Jaroslav Kysela) [RHEL-80677] - ALSA: usb: fcp: Fix hwdep read ops types (Jaroslav Kysela) [RHEL-80677] - ALSA: scarlett2: Add device_setup option to use FCP driver (Jaroslav Kysela) [RHEL-80677] - ALSA: FCP: Add Focusrite Control Protocol driver (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek - Fixed headphone distorted sound on Acer Aspire A115-31 laptop (Jaroslav Kysela) [RHEL-80677] - ASoC: xilinx: xlnx_spdif: Simpify using devm_clk_get_enabled() (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Support for Ideapad hotkey mute LEDs (Jaroslav Kysela) [RHEL-80677] - ASoC: dapm: add support for preparing streams (Jaroslav Kysela) [RHEL-80677] - ASoC: soc-dai: add snd_soc_dai_prepare() and use it internally (Jaroslav Kysela) [RHEL-80677] - ALSA: usb-audio: Add delay quirk for USB Audio Device (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Transfer firmware in two chunks (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Enable headset mic on Positivo C6400 (Jaroslav Kysela) [RHEL-80677] - ALSA: rawmidi: Make tied_device=0 as default / unknown (Jaroslav Kysela) [RHEL-80677] - ASoC: sun4i-codec: Use new devm clk and reset APIs (Jaroslav Kysela) [RHEL-80677] - ASoC: soc-dapm: remove !card check from snd_soc_dapm_set_bias_level() (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: fsl,micfil: Add compatible string for i.MX943 platform (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_micfil: Add i.MX943 platform support (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Add AZX_DCAPS_NO_TCSEL flag for Loongson HDA devices (Jaroslav Kysela) [RHEL-80677] - ASoC: codecs: Use ARRAY_SIZE() to calculate PEB2466_TLV_SIZE (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: Intel: Use str_yes_no() to improve bdw_dump() (Jaroslav Kysela) [RHEL-80677] - ASoC: audio-graph-card2: Use extra format on each DAI (Jaroslav Kysela) [RHEL-80677] - ASoC: soc-core: Enable to use extra format on each DAI (Jaroslav Kysela) [RHEL-80677] - ASoC: audio-graph-card2: use of_graph_get_port_by_id() at graph_get_next_multi_ep() (Jaroslav Kysela) [RHEL-80677] - ASoC: soc-core: return 0 if np was NULL on snd_soc_daifmt_parse_clock_provider_raw() (Jaroslav Kysela) [RHEL-80677] - ASoC: simple-card: use __free(device_node) for device node (Jaroslav Kysela) [RHEL-80677] - ASoC: audio-graph-card: use __free(device_node) for device node (Jaroslav Kysela) [RHEL-80677] - ASoC: audio-graph-card2: use __free(device_node) for device node (Jaroslav Kysela) [RHEL-80677] - ASoC: codecs: nau8824: fix max volume for Speaker output (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: fsl,mqs: Add compatible string for i.MX943 platform (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_mqs: Add i.MX943 platform support (Jaroslav Kysela) [RHEL-80677] - ALSA: line6: convert timeouts to secs_to_jiffies() (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: Notify UMP EP and FB changes (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: Allow system notification in atomic (Jaroslav Kysela) [RHEL-80677] - ALSA: ump: Update rawmidi name per EP name update (Jaroslav Kysela) [RHEL-80677] - ALSA: ump: Copy safe string name to rawmidi (Jaroslav Kysela) [RHEL-80677] - ALSA: ump: Copy FB name string more safely (Jaroslav Kysela) [RHEL-80677] - ALSA: rawmidi: Bump protocol version to 2.0.5 (Jaroslav Kysela) [RHEL-80677] - ALSA: rawmidi: Show substream activity in info ioctl (Jaroslav Kysela) [RHEL-80677] - ALSA: rawmidi: Expose the tied device number in info ioctl (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Fix compilation of snd_hdac_adsp_xxx() helpers (Jaroslav Kysela) [RHEL-80677] - ASoC: simple-card: Drop unnecessary "dai-tdm-slot-width-map" property presence check (Jaroslav Kysela) [RHEL-80677] - ALSA: sb: Use str_enabled_disabled() helper in info_read() (Jaroslav Kysela) [RHEL-80677] - ALSA: emu10k1: Use str_yes_no() helper (Jaroslav Kysela) [RHEL-80677] - ASoC: Use of_property_present() for non-boolean properties (Jaroslav Kysela) [RHEL-80677] - ASoC: amd: Add ACPI dependency to fix build error (Jaroslav Kysela) [RHEL-80677] - ALSA: rme9652: Simplify with str_yes_no() (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Simplify with str_yes_no() (Jaroslav Kysela) [RHEL-80677] - ASoC: remove disable_route_checks (Jaroslav Kysela) [RHEL-80677] - ASoC: intel: remove disable_route_checks (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Add missing includes (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Adjust IPC traces (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Adjust DSP status register names (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Update ASRC definition (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Improve logging of firmware loading (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Clearly state assumptions of hw_params() (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Add MODULE_FIRMWARE to inform about FW (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Print IPC error messages in lower layer (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Update hda component teardown sequences (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Fix init-config parsing (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Fix theoretical infinite loop (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Fix the minimum firmware version numbers (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: avs: Do not readq() u32 registers (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Add a check for negative sample_space (Jaroslav Kysela) [RHEL-80677] - ASoC: soc-card: remove card check (Jaroslav Kysela) [RHEL-80677] - ALSA: firewire: Simplify with str_on_off() (Jaroslav Kysela) [RHEL-80677] - regmap: sdw-mbq: Add support for SDCA deferred controls (Jaroslav Kysela) [RHEL-80677] - ASoC: SDCA: Update list of entity_0 controls (Jaroslav Kysela) [RHEL-80677] - soundwire: SDCA: Add additional SDCA address macros (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Simplify with str_enable_disable() (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: oss: Simplify with str_enabled_disabled() (Jaroslav Kysela) [RHEL-80677] - ALSA: emu10k1: Simplify with str_on_off() (Jaroslav Kysela) [RHEL-80677] - ALSA: hdspm: Simplify with str_on_off() (Jaroslav Kysela) [RHEL-80677] - ALSA: sonicvibes: Simplify with str_off_on() (Jaroslav Kysela) [RHEL-80677] - ALSA: trident: Simplify with str_on_off() (Jaroslav Kysela) [RHEL-80677] - ASoC: rt5682: Support the ALC5682I-VE codec (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: Correct indentation and style in DTS example (Jaroslav Kysela) [RHEL-80677] - ALSA: ens137x: Use str_on_off() helper in snd_ensoniq_proc_read() (Jaroslav Kysela) [RHEL-80677] - ASoC: madera: Use str_enabled_disabled() helper function (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: renesas,rsnd: remove post-init-providers property (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: Intel: Use str_yes_no() helper in atom_dump() (Jaroslav Kysela) [RHEL-80677] - ASoC: codecs: Add aw88083 amplifier driver (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: Add schema for "awinic,aw88083" (Jaroslav Kysela) [RHEL-80677] - ASoC: simple_card: Show if link is unidirectional (Jaroslav Kysela) [RHEL-80677] - ASoC: simple_card: Improve debugging messages (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: Make dependency on UMP clearer (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: oss: Send fragmented SysEx messages immediately (Jaroslav Kysela) [RHEL-80677] - ALSA: Align the syntax of iov_iter helpers with standard ones (Jaroslav Kysela) [RHEL-80677] - ALSA: AC97: Use str_on_off() helper in snd_ac97_proc_read_main() (Jaroslav Kysela) [RHEL-80677] - ALSA: hda/realtek: Add a comment for alc_fixup_inv_dmic() (Jaroslav Kysela) [RHEL-80677] - ASoC: SDCA: Split function type patching and function naming (Jaroslav Kysela) [RHEL-80677] - ASoC: SDCA: Add missing function type names (Jaroslav Kysela) [RHEL-80677] - ASoC: SDCA: Add bounds check for function address (Jaroslav Kysela) [RHEL-80677] - ASoC: SDCA: Clean up error messages (Jaroslav Kysela) [RHEL-80677] - ASoC: SDCA: Add missing header includes (Jaroslav Kysela) [RHEL-80677] - soundwire: amd: clear wake enable register for power off mode (Jaroslav Kysela) [RHEL-80677] - soundwire: generic_bandwidth_allocation: count the bandwidth of active streams only (Jaroslav Kysela) [RHEL-80677] - SoundWire: pass stream to compute_params() (Jaroslav Kysela) [RHEL-80677] - soundwire: generic_bandwidth_allocation: add lane in sdw_group_params (Jaroslav Kysela) [RHEL-80677] - soundwire: generic_bandwidth_allocation: select data lane (Jaroslav Kysela) [RHEL-80677] - soundwire: generic_bandwidth_allocation: check required freq accurately (Jaroslav Kysela) [RHEL-80677] - soundwire: generic_bandwidth_allocation: correct clk_freq check in sdw_select_row_col (Jaroslav Kysela) [RHEL-80677] - Soundwire: generic_bandwidth_allocation: set frame shape on fly (Jaroslav Kysela) [RHEL-80677] - Soundwire: stream: program BUSCLOCK_SCALE (Jaroslav Kysela) [RHEL-80677] - Soundwire: add sdw_slave_get_scale_index helper (Jaroslav Kysela) [RHEL-80677] - soundwire: generic_bandwidth_allocation: skip DEPREPARED streams (Jaroslav Kysela) [RHEL-80677] - soundwire: stream: set DEPREPARED state earlier (Jaroslav Kysela) [RHEL-80677] - soundwire: add lane_used_bandwidth in struct sdw_bus (Jaroslav Kysela) [RHEL-80677] - soundwire: mipi_disco: read lane mapping properties from ACPI (Jaroslav Kysela) [RHEL-80677] - soundwire: add lane field in sdw_port_runtime (Jaroslav Kysela) [RHEL-80677] - soundwire: bus: Move irq mapping cleanup into devres (Jaroslav Kysela) [RHEL-80677] - ALSA: ad1889: Use str_enabled_disabled() helper function (Jaroslav Kysela) [RHEL-80677] - ALSA: hdsp: Use str_on_off() and str_yes_no() helper functions (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Delete redundant assignments in cs_dsp_test_bin.c (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_asrc_m2m: force cast for snd_pcm_format_t type (Jaroslav Kysela) [RHEL-80677] - ASoC: soc-core: remove redundant assignment to variable ret (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Fix endianness conversion in cs_dsp_mock_wmfw.c (Jaroslav Kysela) [RHEL-80677] - ASoC: cs42l43: don't include '' directly (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Avoid using a u32 as a __be32 in cs_dsp_mock_mem_maps.c (Jaroslav Kysela) [RHEL-80677] - mfd: cs42l43: Increase the SoundWire attach timeout (Jaroslav Kysela) [RHEL-80677] - mfd: cs42l43: Use gpiod_set_raw for GPIO operations (Jaroslav Kysela) [RHEL-80677] - mfd: cs42l43: Prepare support for updated bios patch (Jaroslav Kysela) [RHEL-80677] - ASoC: qcom: sdm845: add handling of secondary MI2S clock (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: avoid large local variables (Jaroslav Kysela) [RHEL-80677] - ASoC: rt715: Remove unused hda_to_sdw (Jaroslav Kysela) [RHEL-80677] - ASoC: simple-card-utils: Unify clock direction by clk_direction (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Fix kerneldoc typos in cs_dsp_mock_bin.c (Jaroslav Kysela) [RHEL-80677] - ASoC: soc-core: tidyup ret handling for card->disable_route_checks (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: mtl-match: Add CDB35L56-EIGHT-C 8x CS35L56 without CS42L43 (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: mtl-match: Add CDB35L56-EIGHT-C with aggregated speakers (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: tgl-match: Add entries for CS35L56 on CDB35L56-EIGHT-C (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: sof-priv: Remove unused SOF_DAI_STREAM() and SOF_FORMATS (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: ipc4-topology: Use macro to set the EXT_PARAM_SIZE in widget setup (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add KUnit testing of client callbacks (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add KUnit testing of wmfw error cases (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add KUnit testing of bin error cases (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add KUnit testing of control read/write (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add KUnit testing of control cache (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add KUnit testing of control parsing (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add KUnit testing of wmfw download (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add KUnit testing of bin file download (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add mock bin file generator for KUnit testing (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add mock wmfw file generator for KUnit testing (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add mock DSP memory map for KUnit testing (Jaroslav Kysela) [RHEL-80677] - firmware: cs_dsp: Add mock regmap for KUnit testing (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: Intel: hda-pcm: Follow the pause_supported flag to drop PAUSE support (Jaroslav Kysela) [RHEL-80677] - ASoC: SOF: Add support for pause supported tokens from topology (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_easrc: register m2m platform device (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_asrc: register m2m platform device (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_asrc_m2m: Add memory to memory function (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_easrc: define functions for memory to memory usage (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_asrc: define functions for memory to memory usage (Jaroslav Kysela) [RHEL-80677] - ALSA: compress: Add output rate and output format support (Jaroslav Kysela) [RHEL-80677] - ALSA: sonicvibes: Use str_on_off() helper in snd_sonicvibes_proc_read() (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: convert rt5682.txt to dt-schema (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: renesas,rz-ssi: Document the Renesas RZ/G3S SoC (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: renesas,rz-ssi: Remove DMA description (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Add suspend to RAM support (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Issue software reset in hw_params API (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Add runtime PM support (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Enable runtime PM autosuspend support (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Rely on the ASoC subsystem to runtime resume/suspend the SSI (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Use goto label names that specify their actions (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Use temporary variable for struct device (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Use readl_poll_timeout_atomic() (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Remove the first argument of rz_ssi_stream_is_play() (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Remove the rz_ssi_get_dai() function (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Remove pdev member of struct rz_ssi_priv (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Fix typo on SSI_RATES macro comment (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Use only the proper amount of dividers (Jaroslav Kysela) [RHEL-80677] - ASoC: renesas: rz-ssi: Terminate all the DMA transactions (Jaroslav Kysela) [RHEL-80677] - ASoC: sun4i-spdif: Add working 24bit audio support (Jaroslav Kysela) [RHEL-80677] - ASoC: sun4i-spdif: Always set the valid data to be the MSB (Jaroslav Kysela) [RHEL-80677] - ASoC: sun4i-spdif: Add clock multiplier settings (Jaroslav Kysela) [RHEL-80677] - ASoC: wm8985: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: wm8904: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: tpa6130a2: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: tlv320aic3x: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: tlv320aic31xx: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: tlv320adc3xxx: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: tas5720: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: tas2781: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: tas2562: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: ssm2602: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoc: pcm6240: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: pcm186x: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: max98095: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: max98090: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: max98088: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: alc5632: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: alc5623: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: adau1977: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: adau1781: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: adau1761: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: ad193x: Remove use of i2c_match_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: qcom,wcd9335: Drop number of DAIs from the header (Jaroslav Kysela) [RHEL-80677] - ASoC: codecs: wcd9335: Add define for number of DAIs (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: soc-acpi-intel-ptl-match: add rt713_vb_l2_rt1320_l13 support (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: soc-acpi-intel-lnl-match: add rt713_vb_l2_rt1320_l13 support (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: soc-acpi-intel-ptl-match: add rt712_vb + rt1320 support (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: Add a dev_dbg message for the SOC_SDW_CODEC_MIC quirk (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: Correct quirk for Lenovo Yoga Slim 7 (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: improve the log of DAI link numbers (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: reduce log level for not using internal dmic (Jaroslav Kysela) [RHEL-80677] - ASoC: Intel: sof_sdw: correct mach_params->dmic_num (Jaroslav Kysela) [RHEL-80677] - ASoC: simple-card-utils: use for_each_of_graph_port() on graph_get_dai_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: simple-card-utils: check port reg first on graph_get_dai_id() (Jaroslav Kysela) [RHEL-80677] - ASoC: simple-card-utils: use __free(device_node) for device node (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_sai: Add sample rate constraint (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_xcvr: Add sample rate constraint (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_micfil: Switch to common sample rate constraint function (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_utils: Add function to constrain rates (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: oss: fix typo in seq_oss_init.c (Jaroslav Kysela) [RHEL-80677] - ALSA: cmipci: Modify the incorrect format specifier (Jaroslav Kysela) [RHEL-80677] - ALSA: lola: Fix typo in lola_clock.c (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: mediatek,mt8188-mt6359: Allow DL_SRC/UL_SRC dai-links (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: mediatek,mt8188-mt6359: Add compatible for mt8390 evk (Jaroslav Kysela) [RHEL-80677] - ASoC: amd: ps: add ZSC control register programming sequence (Jaroslav Kysela) [RHEL-80677] - ASoC: amd: ps: update mach params subsystem_rev variable (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Always check capability at opening a hwdep (Jaroslav Kysela) [RHEL-80677] - ASoC: sdw_utils: cs_amp: Assign non-overlapping TDM masks for each codec on a bus (Jaroslav Kysela) [RHEL-80677] - ASoC: cs35l56: Split SoundWire DAI into separate playback and capture (Jaroslav Kysela) [RHEL-80677] - ALSA: hda: Fix typo in hda_sysfs.h (Jaroslav Kysela) [RHEL-80677] - ALSA: ac97: Modify the incorrect format specifier (Jaroslav Kysela) [RHEL-80677] - ASoC: Drop explicit initialization of struct i2c_device_id::driver_data to 0 (Jaroslav Kysela) [RHEL-80677] - ASoC: sun4i-codec: Add support for Allwinner suniv F1C100s (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: Add Allwinner suniv F1C100s Audio Codec (Jaroslav Kysela) [RHEL-80677] - ASoC: dt-bindings: allwinner: add H616 sun4i audio codec binding (Jaroslav Kysela) [RHEL-80677] - ASoC: sun4i-codec: Add DMA Max Burst field (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: Skip notifications unless subscribed to announce port (Jaroslav Kysela) [RHEL-80677] - ALSA: seq: Notify client and port info changes (Jaroslav Kysela) [RHEL-80677] - ASoC: cs42l51: Constify struct i2c_device_id (Jaroslav Kysela) [RHEL-80677] - ASoC: tas2781: Fix redundant logical jump (Jaroslav Kysela) [RHEL-80677] - ASoC: rockchip: i2s-tdm: Fix a useless call issue (Jaroslav Kysela) [RHEL-80677] - ASoc: mediatek: mt8365: Don't use "proxy" headers (Jaroslav Kysela) [RHEL-80677] - ASoC: mediatek: mt8192-afe-pcm: Simplify probe() with local dev variable (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_xcvr: Add suspend and resume support (Jaroslav Kysela) [RHEL-80677] - ASoC: fsl_xcvr: Use regmap for PHY and PLL registers (Jaroslav Kysela) [RHEL-80677] - ext4: don't over-report free space or inodes in statvfs (CKI Backport Bot) [RHEL-89589] - redhat: generalize rule for kunit and test kmod placement (Jan Stancek) [RHEL-89085] - ice: implement low latency PHY timer updates (Petr Oros) [RHEL-74286] - ice: check low latency PHY timer update firmware capability (Petr Oros) [RHEL-74286] - ice: add lock to protect low latency interface (Petr Oros) [RHEL-74286] - ice: rename TS_LL_READ* macros to REG_LL_PROXY_H_* (Petr Oros) [RHEL-74286] - ice: use read_poll_timeout_atomic in ice_read_phy_tstamp_ll_e810 (Petr Oros) [RHEL-74286] - Bluetooth: L2CAP: Fix corrupted list in hci_chan_del (David Marlin) [RHEL-87896] {CVE-2025-21969} - Bluetooth: L2CAP: Fix slab-use-after-free Read in l2cap_send_cmd (CKI Backport Bot) [RHEL-87896] {CVE-2025-21969} - selftests: tls: check that disconnect does nothing (Sabrina Dubroca) [RHEL-86020] - net: tls: explicitly disallow disconnect (Sabrina Dubroca) [RHEL-86020] - tls: skip setting sk_write_space on rekey (Sabrina Dubroca) [RHEL-86020] - tls: Fix tls_sw_sendmsg error handling (Sabrina Dubroca) [RHEL-86020] - selftests: tls: add rekey tests (Sabrina Dubroca) [RHEL-86020] - selftests: tls: add key_generation argument to tls_crypto_info_init (Sabrina Dubroca) [RHEL-86020] - tls: add counters for rekey (Sabrina Dubroca) [RHEL-86020] - tls: implement rekey for TLS1.3 (Sabrina Dubroca) [RHEL-86020] - tls: block decryption when a rekey is pending (Sabrina Dubroca) [RHEL-86020] - scsi: mpi3mr: Event processing debug improvement (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Add level check to control event logging (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Reset the pending interrupt flag (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Fix pending I/O counter (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Task Abort EH Support (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Update driver version to 8.13.0.5.50 (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Check admin reply queue from Watchdog (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Update timestamp only for supervisor IOCs (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Update MPI Headers to revision 35 (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Fix locking in an error path (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Fix spelling mistake "skiping" -> "skipping" (Chandrakanth Patil) [RHEL-80699] - scsi: mpi3mr: Support for Segmented Hardware Trace buffer (Chandrakanth Patil) [RHEL-80699] - locking/semaphore: Use wake_q to wake up processes outside lock critical section (Waiman Long) [RHEL-74462] - selftests/net: packetdrill: more xfail changes (and a correction) (Hangbin Liu) [RHEL-88651] - selftests/net: packetdrill: make tcp buf limited timing tests benign (Hangbin Liu) [RHEL-88651] - selftests/net: packetdrill: report benign debug flakes as xfail (Hangbin Liu) [RHEL-88651] - selftests/net: packetdrill: import tcp/user_timeout, tcp/validate, tcp/sendfile, tcp/limited-transmit, tcp/syscall_bad_arg (Hangbin Liu) [RHEL-88651] - selftests/net: packetdrill: import tcp/eor, tcp/splice, tcp/ts_recent, tcp/blocking (Hangbin Liu) [RHEL-88651] - selftests/net: packetdrill: import tcp/fast_recovery, tcp/nagle, tcp/timestamping (Hangbin Liu) [RHEL-88651] - selftests/net: packetdrill: import tcp/ecn, tcp/close, tcp/sack, tcp/tcp_info (Hangbin Liu) [RHEL-88651] - cpufreq: intel_pstate: Unchecked MSR aceess in legacy mode (Steve Best) [RHEL-81034] - ipv6: add exception routes to GC list in rt6_insert_exception (Xin Long) [RHEL-39466 RHEL-84411] - OPP: Drop redundant *_opp_attach|detach_genpd() (José Expósito) [RHEL-75956] - cpufreq: qcom-nvmem: Convert to dev_pm_domain_attach|detach_list() (José Expósito) [RHEL-75956] - media: venus: Convert into devm_pm_domain_attach_list() for OPP PM domain (José Expósito) [RHEL-75956] - drm/tegra: gr3d: Convert into devm_pm_domain_attach_list() (José Expósito) [RHEL-75956] - OPP: Drop redundant code in _link_required_opps() (José Expósito) [RHEL-75956] - pmdomain: core: Set the required dev for a required OPP during genpd attach (José Expósito) [RHEL-75956] - pmdomain: core: Manage the default required OPP from a separate function (José Expósito) [RHEL-75956] - xfs: don't over-report free space or inodes in statvfs (Carlos Maiolino) [RHEL-87016] - xfs: report realtime block quota limits on realtime directories (Carlos Maiolino) [RHEL-87016] - redhat: introduce modules-extra-matched meta package (Jan Stancek) [RHEL-87452] - ext4: fix OOB read when checking dotdot dir (CKI Backport Bot) [RHEL-87989] {CVE-2025-37785} - selftests: net: fdb_notify: Add a test for FDB notifications (Izabela Bakollari) [RHEL-78790] - selftests: net: lib: Add kill_process (Izabela Bakollari) [RHEL-78790] - selftests: net: lib: Move checks from forwarding/lib.sh here (Izabela Bakollari) [RHEL-78790] - selftests: net: lib: Move tests_run from forwarding/lib.sh here (Izabela Bakollari) [RHEL-78790] - selftests: net: lib: Move logging from forwarding/lib.sh here (Izabela Bakollari) [RHEL-78790] - ndo_fdb_del: Add a parameter to report whether notification was sent (Izabela Bakollari) [RHEL-78790] - ndo_fdb_add: Add a parameter to report whether notification was sent (Izabela Bakollari) [RHEL-78790] - RDMA/efa: Align interrupt related fields to same type (Kamal Heib) [RHEL-86525] - RDMA/efa: Reset device on probe failure (Kamal Heib) [RHEL-86525] - RDMA/efa: Report link speed according to device attributes (Kamal Heib) [RHEL-86525] - RDMA/efa: Add option to set QP service level on create (Kamal Heib) [RHEL-86525] - RDMA/efa: Update device interface (Kamal Heib) [RHEL-86525] - net: ppp: Add bound checking for skb data on ppp_sync_txmung (Guillaume Nault) [RHEL-89664] {CVE-2025-37749} - ALSA: update RHEL kconfigs for 6.13 upstream code (Jaroslav Kysela) [RHEL-80676] - ASoC: tegra: Fix ADX S24_LE audio format (Jaroslav Kysela) [RHEL-80676] - ASoC: simple-card-utils: fix priv->dai_props indexing (Jaroslav Kysela) [RHEL-80676] - ALSA: hda/realtek: Fix volume adjustment issue on Lenovo ThinkBook 16P Gen5 (Jaroslav Kysela) [RHEL-80676] - ASoC: rsnd: check rsnd_adg_clk_enable() return value (Jaroslav Kysela) [RHEL-80676] - ASoC: cs42l43: Add codec force suspend/resume ops (Jaroslav Kysela) [RHEL-80676] - ALSA: doc: Add codecs/index.rst to top-level index (Jaroslav Kysela) [RHEL-80676] - ALSA: doc: cs35l56: Add information about Cirrus Logic CS35L54/56/57 (Jaroslav Kysela) [RHEL-80676] - ASoC: samsung: Add missing depends on I2C (Jaroslav Kysela) [RHEL-80676] - ASoC: samsung: Add missing selects for MFD_WM8994 (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: es8316: Fix HW rate calculation for 48Mhz MCLK (Jaroslav Kysela) [RHEL-80676] - ASoC: wm8994: Add depends on MFD core (Jaroslav Kysela) [RHEL-80676] - ASoC: tas2781: Fix occasional calibration failture (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: ES8326: Adjust ANA_MICBIAS to reduce pop noise (Jaroslav Kysela) [RHEL-80676] - ALSA: compress_offload: fix remaining descriptor races in sound/core/compress_offload.c (Jaroslav Kysela) [RHEL-80676] - ALSA: compress_offload: Drop unneeded no_free_ptr() (Jaroslav Kysela) [RHEL-80676] - ALSA: hda/tas2781: Ignore SUBSYS_ID not found for tas2563 projects (Jaroslav Kysela) [RHEL-80676] - ALSA: compress_offload: improve file descriptors installation for dma-buf (Jaroslav Kysela) [RHEL-80676] - ALSA: compress_offload: use safe list iteration in snd_compr_task_seq() (Jaroslav Kysela) [RHEL-80676] - ALSA: compress_offload: import DMA_BUF namespace (Jaroslav Kysela) [RHEL-80676] - ALSA: compress_offload: avoid 64-bit get_user() (Jaroslav Kysela) [RHEL-80676] - ASoC: wcd937x: Use *-y for Makefile (Jaroslav Kysela) [RHEL-80676] - ASoC: cs42l84: Use *-y for Makefile (Jaroslav Kysela) [RHEL-80676] - ASoC: SDCA: Use *-y for Makefile (Jaroslav Kysela) [RHEL-80676] - ASoC: cs40l50: Use *-y for Makefile (Jaroslav Kysela) [RHEL-80676] - ASoC: mediatek: mt8365: Use *-y for Makefile (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: avs: da7219: Remove suspend_pre() and resume_post() (Jaroslav Kysela) [RHEL-80676] - Get rid of 'remove_new' relic from platform driver struct (Jaroslav Kysela) [RHEL-80676] - ALSA: hda/tas2781: Fix error code tas2781_read_acpi() (Jaroslav Kysela) [RHEL-80676] - ALSA: hda: improve bass speaker support for ASUS Zenbook UM5606WA (Jaroslav Kysela) [RHEL-80676] - ALSA: hda: Show the codec quirk info at probing (Jaroslav Kysela) [RHEL-80676] - ALSA: asihpi: Remove unused variable (Jaroslav Kysela) [RHEL-80676] - ALSA: hda/tas2781: Add speaker id check for ASUS projects (Jaroslav Kysela) [RHEL-80676] - ASoC: doc: dapm: Add location information for dapm-graph tool (Jaroslav Kysela) [RHEL-80676] - ASoC: apple: Fix the wrong format specifier (Jaroslav Kysela) [RHEL-80676] - ALSA: docs: fix dead hyperlink to Intel HD-Audio spec (Jaroslav Kysela) [RHEL-80676] - ALSA: ac97: bus: Fix the mistake in the comment (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: Fix build dependencies for `SND_SOC_AMD_PS` (Jaroslav Kysela) [RHEL-80676] - ALSA: hda: Poll jack events for LS7A HD-Audio (Jaroslav Kysela) [RHEL-80676] - ALSA: ump: Fix the wrong format specifier (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: soc-acpi-intel-lnl-match: add rt712_vb + rt1320 support (Jaroslav Kysela) [RHEL-80676] - ASoC: stm32: dfsdm: change rate upper limits (Jaroslav Kysela) [RHEL-80676] - ASoC: sma1307: fix uninitialized variable refence (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: simple-mux: add idle-state property (Jaroslav Kysela) [RHEL-80676] - ASoc: simple-mux: add idle-state support (Jaroslav Kysela) [RHEL-80676] - soundwire: Minor formatting fixups in sdw.h header (Jaroslav Kysela) [RHEL-80676] - soundwire: Update the includes on the sdw.h header (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc4-topology: remove redundant assignment to variable ret (Jaroslav Kysela) [RHEL-80676] - ASoC: sdca: test adev before calling acpi_dev_for_each_child (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: ps: fix the pcm device numbering for acp 6.3 platform (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: add soundwire machine driver for legacy stack (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: move get_acp63_cpu_pin_id() to common file (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: ps: add soundwire machines for acp6.3 platform (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: add RT711, RT714 & RT1316 support for acp 6.3 platform (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: add rt722 based soundwire machines (Jaroslav Kysela) [RHEL-80676] - ALSA: compress_offload: Add missing descriptions in structs (Jaroslav Kysela) [RHEL-80676] - ALSA: us122l: Drop mmap_count field (Jaroslav Kysela) [RHEL-80676] - ALSA: pcm: Define snd_pcm_mmap_data_{open|close}() locally (Jaroslav Kysela) [RHEL-80676] - ALSA: tidyup SNDRV_PCM_TRIGGER_xxx numbering (Jaroslav Kysela) [RHEL-80676] - ASoC: simple-card-utils: care simple_util_dai for dummy DAI (Jaroslav Kysela) [RHEL-80676] - ASoC: test-component: Support continuous rates for test component (Jaroslav Kysela) [RHEL-80676] - ASoC: max98088: Add headphone mixer switch (Jaroslav Kysela) [RHEL-80676] - ASoC: max98088: Add left/right DAC volume control (Jaroslav Kysela) [RHEL-80676] - ASoc: SOF: ipc4-pcm: fix uninit-value in sof_ipc4_pcm_dai_link_fixup_rate (Jaroslav Kysela) [RHEL-80676] - ASoC: add symmetric_ prefix for dai->rate/channels/sample_bits (Jaroslav Kysela) [RHEL-80676] - ASoC: max98088: Remove duplicate DACs (Jaroslav Kysela) [RHEL-80676] - ASoC: machine: update documentation (Jaroslav Kysela) [RHEL-80676] - ASoC: qcom: sm8250: add handling of secondary MI2S clock (Jaroslav Kysela) [RHEL-80676] - ALSA: ump: remove unnecessary check on blk (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: Kconfig: Revert make SND_SOC_ACPI_INTEL_MATCH depend on ACPI (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: Kconfig: Only select SND_SOC_SDCA if ACPI is enabled (Jaroslav Kysela) [RHEL-80676] - ASoC: mediatek: mt8183: Remove unnecessary variable assignments (Jaroslav Kysela) [RHEL-80676] - ASoC: sma1307: Fix invalid logical judgement (Jaroslav Kysela) [RHEL-80676] - ASoC: stm32: i2s: add stm32mp25 support (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: add stm32mp25 support for i2s (Jaroslav Kysela) [RHEL-80676] - ASoC: stm32: sai: add stm32mp25 support (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: add stm32mp25 support for sai (Jaroslav Kysela) [RHEL-80676] - ASoC: ux500: Remove redundant casts (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: Intel: hda: handle only paused streams in hda_dai_suspend() (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: Intel: hda: Add support for persistent Code Loader DMA buffers (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: Intel: hda-stream: Always use at least two BDLE for transfers (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc3-loader: 'Handle' PROBE_INFO ext_manifest type when parsing (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ext_manifest: Add missing ext_manifest type for PROBE_INFO (Jaroslav Kysela) [RHEL-80676] - ASoC: da7213: Extend support for the MCK in range [2, 50] MHz (Jaroslav Kysela) [RHEL-80676] - ASoC: da7213: Avoid setting PLL when closing audio stream (Jaroslav Kysela) [RHEL-80676] - ASoC: da7213: Add suspend to RAM support (Jaroslav Kysela) [RHEL-80676] - ASoC: da7213: Return directly the value of regcache_sync() (Jaroslav Kysela) [RHEL-80676] - ASoC: sma1307: Add driver for Iron Device SMA1307 (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: irondevice,sma1307: Add initial DT (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: Kconfig: select SND_SOC_SDCA by SND_SOC_ACPI_INTEL_SDCA_QUIRKS (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: Kconfig: make SND_SOC_ACPI_INTEL_MATCH depend on ACPI (Jaroslav Kysela) [RHEL-80676] - ALSA: compress_offload: Use runtime pointer in snd_compr_poll() (Jaroslav Kysela) [RHEL-80676] - ASoC: rt721-sdca: change interrupt mask from XU to GE (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: sof_sdw: Add missing quirks from some new Dell (Jaroslav Kysela) [RHEL-80676] - ASoC: rt722: change the interrupt mask for jack type detection (Jaroslav Kysela) [RHEL-80676] - ASoC: qcom: sc8280xp Add SM8750 sound card (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: qcom,sm8250: Add SM8750 sound card (Jaroslav Kysela) [RHEL-80676] - ASoC: fsl_mqs: Support accessing registers by scmi interface (Jaroslav Kysela) [RHEL-80676] - ASoC: bcm63xx-pcm-whistler: fix uninit-value in i2s_dma_isr (Jaroslav Kysela) [RHEL-80676] - ASoC: qcom: x1e80100: Support boards with two speakers (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: ES8326: Reduce pop noise (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: Fix for ACP SOF dmic tplg component load failure (Jaroslav Kysela) [RHEL-80676] - ALSA: hda: Fix unused variable warning (Jaroslav Kysela) [RHEL-80676] - ALSA: hda: intel: Switch to pci_alloc_irq_vectors API (Jaroslav Kysela) [RHEL-80676] - ALSA: hda: intel: Don't free interrupt when suspending (Jaroslav Kysela) [RHEL-80676] - deal with the last remaing boolean uses of fd_file() (Jaroslav Kysela) [RHEL-80676] - ASoC: cleanup function parameter for rtd and its id (Jaroslav Kysela) [RHEL-80676] - ASoC: soc-core: do rtd->id trick at snd_soc_add_pcm_runtime() (Jaroslav Kysela) [RHEL-80676] - ASoC: remove rtd->num (Jaroslav Kysela) [RHEL-80676] - ASoC: generic: switch to use rtd->id from rtd->num (Jaroslav Kysela) [RHEL-80676] - ASoC: sh: switch to use rtd->id from rtd->num (Jaroslav Kysela) [RHEL-80676] - ASoC: meson: switch to use rtd->id from rtd->num (Jaroslav Kysela) [RHEL-80676] - ASoC: fsl: switch to use rtd->id from rtd->num (Jaroslav Kysela) [RHEL-80676] - ASoC: rename rtd->num to rtd->id (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: Add aw88081 amplifier driver (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: Add schema for "awinic,aw88081" (Jaroslav Kysela) [RHEL-80676] - ASoC: sdw_utils: Update stream_name in dai_links structure (Jaroslav Kysela) [RHEL-80676] - ASoC: sdw_utils/intel/amd: refactor dai link init logic (Jaroslav Kysela) [RHEL-80676] - mfd: cs42l43: Disable IRQs during suspend (Jaroslav Kysela) [RHEL-80676] - ASoC: doc: update clock api details (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: wcd937x: Remove unused of_gpio.h (Jaroslav Kysela) [RHEL-80676] - sound: Switch back to struct platform_driver::remove() (Jaroslav Kysela) [RHEL-80676] - ASoC: cs42l84: Remove unused including (Jaroslav Kysela) [RHEL-80676] - MAINTAINERS: Add entry for Renesas RZ ASoC driver (Jaroslav Kysela) [RHEL-80676] - MAINTAINERS: Add entry for Renesas R-Car and FSI ASoC drivers (Jaroslav Kysela) [RHEL-80676] - ASoC: renesas, rsnd: Update file path (Jaroslav Kysela) [RHEL-80676] - ASoC: audio-graph-card2: Update comment with renamed file path (Jaroslav Kysela) [RHEL-80676] - ASoC: Rename "sh" to "renesas" (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: adau1373: add powerdown gpio (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: adau1373: drop patform_data (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: document the adau1373 Codec (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: adau1373: add some kconfig text (Jaroslav Kysela) [RHEL-80676] - ASoC: cs42l84: remove incorrect of_match_ptr() (Jaroslav Kysela) [RHEL-80676] - ALSA: usb-audio: Add Pioneer DJ/AlphaTheta DJM-A9 Mixer (Jaroslav Kysela) [RHEL-80676] - ALSA: docs: Add toctree index entry for co-processor acceleration API (Jaroslav Kysela) [RHEL-80676] - ALSA: docs: compress-accel: Format state machine flowchart as code block (Jaroslav Kysela) [RHEL-80676] - ASoC: intel: sof_sdw: add quirk for Dell SKU (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: ES8326: Modify the configuration of and micbias (Jaroslav Kysela) [RHEL-80676] - ASoC: soc-devres: Remove unused devm_snd_soc_register_dai (Jaroslav Kysela) [RHEL-80676] - ASoC: rt1320: add mic function (Jaroslav Kysela) [RHEL-80676] - ALSA: compress_offload: introduce accel operation mode (Jaroslav Kysela) [RHEL-80676] - ASoC: test-component: use new of_graph functions (Jaroslav Kysela) [RHEL-80676] - ASoC: audio-graph-card: use new of_graph functions (Jaroslav Kysela) [RHEL-80676] - ASoC: audio-graph-card2: use new of_graph functions (Jaroslav Kysela) [RHEL-80676] - of: property: add of_graph_get_next_port_endpoint() (Jaroslav Kysela) [RHEL-80676] - of: property: add of_graph_get_next_port() (Jaroslav Kysela) [RHEL-80676] - of: property: use new of_graph functions (Jaroslav Kysela) [RHEL-80676] - ASoC: cs42l84: leverage ring sense IRQs to correctly detect headsets (Jaroslav Kysela) [RHEL-80676] - ASoC: cs42l84: Add new codec driver (Jaroslav Kysela) [RHEL-80676] - ASoC: rt-sdw-common: fix rt_sdca_index_update_bits function parameter description (Jaroslav Kysela) [RHEL-80676] - ASoC: sun4i-codec: support allwinner H616 codec (Jaroslav Kysela) [RHEL-80676] - ASoC: sun4i-codec: Add playback only flag to quirks (Jaroslav Kysela) [RHEL-80676] - ASoC: sun4i-codec: Add support for different DAC FIFOC addresses to quirks (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: fix error code in ntp8835_i2c_probe() (Jaroslav Kysela) [RHEL-80676] - ASoC: soc-pcm: merge DPCM and non-DPCM validation check (Jaroslav Kysela) [RHEL-80676] - ASoC: doc: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: soc-pcm: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: soc-topology: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: intel: boards: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: soc-compress: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: soc-core: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: mediatek: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: samsung: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: intel: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: sof: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: fsl: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: remove dpcm_xxx flags (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: core: Add fw, tplg and ipc type override parameters (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: core: Add debug module parameters to set IPC and boot timeout (Jaroslav Kysela) [RHEL-80676] - ASoC: uniphier: Handle regmap_write errors in aio_iecout_set_enable() (Jaroslav Kysela) [RHEL-80676] - ASoC: fsl_xcvr: reset RX dpath after wrong preamble (Jaroslav Kysela) [RHEL-80676] - ASoC: fsl_xcvr: enable interrupt of cmdc status update (Jaroslav Kysela) [RHEL-80676] - ASoC: tegra: Add support for S24_LE audio format (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: adau1372: add match table (Jaroslav Kysela) [RHEL-80676] - ASoC: soc-utils: Remove PAGE_SIZE compile-time constant assumption (Jaroslav Kysela) [RHEL-80676] - ASoC: nau8821: check regmap_raw_read/regmap_raw_write for failure (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: Add stream name to ACP PDM DMIC devices (Jaroslav Kysela) [RHEL-80676] - ASoC: rx651: Use card->dev in replace of the &pdev->dev argument in the dev_err function (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: Intel: hda: use machine_check() for SoundWire (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: soc-acpi: add is_device_rt712_vb() helper (Jaroslav Kysela) [RHEL-80676] - ASoC: sdw_utils: add SmartMic DAI for RT713 VB (Jaroslav Kysela) [RHEL-80676] - ASoC: sdw_utils: add SmartMic DAI for RT712 VB (Jaroslav Kysela) [RHEL-80676] - ASoC: rt712-sdca: detect the SMART_MIC function during the probe stage (Jaroslav Kysela) [RHEL-80676] - ASoC: soc-acpi: introduce new 'machine check' callback (Jaroslav Kysela) [RHEL-80676] - ASoC: SDCA: add quirk function for RT712_VB match (Jaroslav Kysela) [RHEL-80676] - soundwire: slave: lookup SDCA version and functions (Jaroslav Kysela) [RHEL-80676] - ASoC: SDCA: add initial module (Jaroslav Kysela) [RHEL-80676] - ASoC/soundwire: remove sdw_slave_extended_id (Jaroslav Kysela) [RHEL-80676] - soundwire: sdw_intel: include linux/acpi.h (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: sof-of-dev: add parameter to override tplg/fw_filename (Jaroslav Kysela) [RHEL-80676] - ASoC: mediatek: mt8188: remove unnecessary variable assignment (Jaroslav Kysela) [RHEL-80676] - ASoC: rsnd: Refactor port handling with helper for endpoint node selection (Jaroslav Kysela) [RHEL-80676] - ASoC: loongson: make loongson-i2s.o a separate module (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: Remove unneeded semicolon (Jaroslav Kysela) [RHEL-80676] - ASoC: makes snd_soc_set_runtime_hwparams() inline (Jaroslav Kysela) [RHEL-80676] - mfd: cs42l43: Fix issues in probe error paths (Jaroslav Kysela) [RHEL-80676] - iopoll/regmap/phy/snd: Fix comment referencing outdated timer documentation (Jaroslav Kysela) [RHEL-80676] - ASoC: rt-sdw-common: Enhance switch case to prevent uninitialized variable (Jaroslav Kysela) [RHEL-80676] - ALSA: hda: Fix all stream interrupts definition (Jaroslav Kysela) [RHEL-80676] - ASoC: loongson: Fix build warning when !CONFIG_PCI (Jaroslav Kysela) [RHEL-80676] - ASoC: mediatek: mt8188: Remove unnecessary variable assignments (Jaroslav Kysela) [RHEL-80676] - ASoC/SoundWire: Intel: lnl: enable interrupts after first power-up/before last power-down (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: Intel: hda-mlink: expose unlocked interrupt enable routine (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: Fix error check in es8323_i2c_probe (Jaroslav Kysela) [RHEL-80676] - ASoC: imx-card: Add CS42888 support (Jaroslav Kysela) [RHEL-80676] - ASoC: imx-card: Set mclk for codec (Jaroslav Kysela) [RHEL-80676] - ALSA: usb-audio: Use snprintf instead of sprintf in build_mixer_unit_ctl (Jaroslav Kysela) [RHEL-80676] - ALSA: ice1712: Remove redundant code in stac9460_dac_vol_put (Jaroslav Kysela) [RHEL-80676] - ALSA: firewire: Remove unused cmp_connection_update (Jaroslav Kysela) [RHEL-80676] - soundwire: cadence: add soft-reset on startup (Jaroslav Kysela) [RHEL-80676] - soundwire: cadence: clear MCP BLOCK_WAKEUP in init (Jaroslav Kysela) [RHEL-80676] - soundwire: intel_auxdevice: add kernel parameter for mclk divider (Jaroslav Kysela) [RHEL-80676] - ASoC: rt721-sdca: Clean logically deadcode in rt721-sdca.c (Jaroslav Kysela) [RHEL-80676] - ASoC: qcom: sm8250: correct typo in shutdown function name (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: Remove unused code (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: Add rt721-sdca support for PTL platform (Jaroslav Kysela) [RHEL-80676] - ASoC: loongson: Add I2S controller driver as platform device (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: Add Loongson I2S controller (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: Add uda1342 codec driver (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: Add NXP uda1342 Codec (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: Add Everest ES8323 Codec (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: Add support for ES8323 (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc4-topology: Add helper function to print the module's in/out audio format (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc4-topology: Concentrate prints inside of sof_ipc4_init_output_audio_fmt() (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc4-topology: Use local variables in sof_ipc4_init_output_audio_fmt() (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc4-topology: Simplify code to deal with process modules without output (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc4-topology: Simplify match format print in sof_ipc4_init_input_audio_fmt() (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc4-topology: Remove redundant check in sof_ipc4_init_input_audio_fmt() (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc4-topology: Use local variables in sof_ipc4_init_input_audio_fmt() (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc4-topology: Drop the 'index' from 'Pin index' of format print (Jaroslav Kysela) [RHEL-80676] - ASoC: rt721-sdca: Fix issue of warning message (Jaroslav Kysela) [RHEL-80676] - ALSA: aica: Remove unused variable (Jaroslav Kysela) [RHEL-80676] - ALSA: dbri: Fix formatting issue in dbri.c (Jaroslav Kysela) [RHEL-80676] - ALSA: scarlett2: Fix mixed declarations and code warning (Jaroslav Kysela) [RHEL-80676] - ALSA: scarlett2: Return ENOSPC for out-of-bounds flash writes (Jaroslav Kysela) [RHEL-80676] - ALSA: scarlett2: Simplify linked channel handling (Jaroslav Kysela) [RHEL-80676] - ALSA: scarlett2: Add support for device map retrieval (Jaroslav Kysela) [RHEL-80676] - ALSA: scarlett2: Fix redeclaration of loop variable (Jaroslav Kysela) [RHEL-80676] - ASoC: rt721-sdca: Add RT721 SDCA driver (Jaroslav Kysela) [RHEL-80676] - ASoC: rt-sdw-common: Common functions for Realtek soundwire driver (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: soc-acpi-intel-ptl-match: Add rt721 support (Jaroslav Kysela) [RHEL-80676] - ASoC: intel/sdw_utils: refactor RT multifunction sdca speaker codecs (Jaroslav Kysela) [RHEL-80676] - ASoC: intel: sof_sdw: add RT722 SDCA card for PTL platform (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: refactor sof_card_dai_links_create() function (Jaroslav Kysela) [RHEL-80676] - ASoC: fsl: fsl_qmc_audio: Remove the logging when parsing channels (Jaroslav Kysela) [RHEL-80676] - ASoC: tlv320adc3xxx: Fix unsigned int compared against 0 (Jaroslav Kysela) [RHEL-80676] - ASoC: uniphier: Handle regmap_write errors in aio_src_set_param() (Jaroslav Kysela) [RHEL-80676] - ASoC: Intel: sof_rt5682: Add support for ptl_max98360a_rt5682 (Jaroslav Kysela) [RHEL-80676] - ASoC: sh: rz-ssi: Use SSIFCR_FIFO_RST macro (Jaroslav Kysela) [RHEL-80676] - soundwire: mipi-disco: add support for DP0/DPn 'lane-list' property (Jaroslav Kysela) [RHEL-80676] - soundwire: mipi_disco: add support for clock-scales property (Jaroslav Kysela) [RHEL-80676] - soundwire: mipi-disco: add error handling for property array read (Jaroslav Kysela) [RHEL-80676] - soundwire: mipi-disco: add support for peripheral channelprepare timeout (Jaroslav Kysela) [RHEL-80676] - soundwire: mipi-disco: add new properties from 2.0 spec (Jaroslav Kysela) [RHEL-80676] - soundwire: mipi-disco: add comment on DP0-supported property (Jaroslav Kysela) [RHEL-80676] - soundwire: mipi-disco: remove DPn audio-modes (Jaroslav Kysela) [RHEL-80676] - soundwire: mipi_disco: add MIPI-specific property_read_bool() helpers (Jaroslav Kysela) [RHEL-80676] - soundwire: optimize sdw_stream_runtime memory layout (Jaroslav Kysela) [RHEL-80676] - soundwire: optimize sdw_master_prop (Jaroslav Kysela) [RHEL-80676] - soundwire: optimize sdw_bus structure (Jaroslav Kysela) [RHEL-80676] - soundwire: optimize sdw_slave_prop (Jaroslav Kysela) [RHEL-80676] - soundwire: optimize sdw_dp0_prop (Jaroslav Kysela) [RHEL-80676] - soundwire: optimize sdw_dpn_prop (Jaroslav Kysela) [RHEL-80676] - soundwire: Correct some typos in comments (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: amd: pass acp_rev as soundwire resource data (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: ps: pass acp pci revision id as soundwire resource data (Jaroslav Kysela) [RHEL-80676] - soundwire: amd: pass acp pci revision id as resource data (Jaroslav Kysela) [RHEL-80676] - soundwire: amd: refactor existing code for acp 6.3 platform (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: wcd9335: remove unnecessary MODULE_ALIAS() (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: drop bogus NULL check from i2s_irq_handler (Jaroslav Kysela) [RHEL-80676] - ASoC: rt1320: fix the range of patch code address (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: aw88399: Fix spelling mistake "unsupport" -> "unsupported" (Jaroslav Kysela) [RHEL-80676] - ASoC: fsl: Use maple tree register cache (Jaroslav Kysela) [RHEL-80676] - ASoC: tas5805m: Improve a size determination in tas5805m_i2c_probe() (Jaroslav Kysela) [RHEL-80676] - ASoC: bcm2835-i2s: Use maple tree register cache (Jaroslav Kysela) [RHEL-80676] - ASoC: rt1320: reads patch code from firmware file (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: aw88395: Fix spelling mistake "unsupport" -> "unsupported" (Jaroslav Kysela) [RHEL-80676] - ASoC: tas2781: Fix redundant parameter assignment (Jaroslav Kysela) [RHEL-80676] - ASoC: meson: axg-iface: set continuous rates (Jaroslav Kysela) [RHEL-80676] - ASoC: SOF: ipc3: Use standard dev_dbg API (Jaroslav Kysela) [RHEL-80676] - ASoC: constify snd_soc_component_driver struct (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: remove unused variable from acp platform driver (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: replace adata->platform conditional check (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: remove unused variable from acp_card_drvdata structure (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: update mach_params subsystem_rev field (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: pass acp pci revision id as platform data (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: store acp pci rev id in platform driver private structure (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: use acp pci revision id for platform differntiation (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: use acp_rev for platform specific conditional checks (Jaroslav Kysela) [RHEL-80676] - ASoC: amd: acp: simplify platform conditional checks code (Jaroslav Kysela) [RHEL-80676] - ASoC: stm: fix macro definition on STM_SAI_HAS_EXT_SYNC (Jaroslav Kysela) [RHEL-80676] - ASoC: remove unused substream in macro soc_dai_mark_pop (Jaroslav Kysela) [RHEL-80676] - ASoC: remove unused substream in macro soc_link_mark_pop (Jaroslav Kysela) [RHEL-80676] - ASoC: remove unused substream in macro soc_component_mark_pop (Jaroslav Kysela) [RHEL-80676] - ASoC: improve macro definition on TWL4030_OUTPUT_PGA (Jaroslav Kysela) [RHEL-80676] - ASoC: atmel: mchp-spdiftx: Remove interface name from stream_name (Jaroslav Kysela) [RHEL-80676] - ASoC: atmel: mchp-spdifrx: Remove interface name from stream_name (Jaroslav Kysela) [RHEL-80676] - ASoC: atmel: atmel_ssc_dai: Drop S24_LE support due to single channel limitation (Jaroslav Kysela) [RHEL-80676] - ASoC: atmel: atmel_ssc_dai: Add stream names (Jaroslav Kysela) [RHEL-80676] - ASoC: fsl_micfil: Enable micfil error interrupt (Jaroslav Kysela) [RHEL-80676] - ASoC: fsl_micfil: Add mclk enable flag (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: Add NeoFidelity NTP8835 codec (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: Add NeoFidelity NTP8835 (Jaroslav Kysela) [RHEL-80676] - ASoC: dt-bindings: Add NeoFidelity NTP8918 (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: Add NeoFidelity NTP8918 codec (Jaroslav Kysela) [RHEL-80676] - ASoC: codecs: Add NeoFidelity Firmware helpers (Jaroslav Kysela) [RHEL-80676] - dt-bindings: vendor-prefixes: Add NeoFidelity, Inc (Jaroslav Kysela) [RHEL-80676] - smb: client: Add check for next_buffer in receive_encrypted_standard() (CKI Backport Bot) [RHEL-83246] {CVE-2025-21844} - s390/qdio: Move memory alloc/pointer arithmetic for slib and sl into one place (Mete Durlu) [RHEL-73491] - s390/qdio: Rename feature flag aif_osa to aif_qdio (Mete Durlu) [RHEL-73491] - scsi: zfcp: Clarify zfcp_port refcount ownership during "link" test (Mete Durlu) [RHEL-73491] - scsi: zfcp: Correct kdoc parameter description for sending ELS and CT (Mete Durlu) [RHEL-73491] - scsi: zfcp: Switch over to sysfs_emit() (Mete Durlu) [RHEL-73491] - vsock: Orphan socket after transport release (Jon Maloy) [RHEL-81487] {CVE-2025-21756} - vsock: Keep the binding until socket destruction (Jon Maloy) [RHEL-81487] {CVE-2025-21756} - bpf, vsock: Invoke proto::close on close() (Jon Maloy) [RHEL-81487] {CVE-2025-21756} - netfilter: fib: avoid lookup if socket is available (CKI Backport Bot) [RHEL-44551] - virtgpu: don't reset on shutdown (Eric Auger) [RHEL-85779] - virtio: break and reset virtio devices on device_shutdown() (Eric Auger) [RHEL-85779] - crypto: tegra - Fix IV usage for AES ECB (Herbert Xu) [RHEL-89531] - crypto: tegra - Fix format specifier in tegra_sha_prep_cmd() (Herbert Xu) [RHEL-89531] - crypto: tegra - Use HMAC fallback when keyslots are full (Herbert Xu) [RHEL-89531] - crypto: tegra - Reserve keyslots to allocate dynamically (Herbert Xu) [RHEL-89531] - crypto: tegra - Set IV to NULL explicitly for AES ECB (Herbert Xu) [RHEL-89531] - crypto: tegra - Fix CMAC intermediate result handling (Herbert Xu) [RHEL-89531] - crypto: tegra - Fix HASH intermediate result handling (Herbert Xu) [RHEL-89531] - crypto: tegra - Transfer HASH init function to crypto engine (Herbert Xu) [RHEL-89531] - crypto: tegra - check return value for hash do_one_req (Herbert Xu) [RHEL-89531] - crypto: tegra - finalize crypto req on error (Herbert Xu) [RHEL-89531] - crypto: tegra - Do not use fixed size buffers (Herbert Xu) [RHEL-89531] - crypto: tegra - Use separate buffer for setkey (Herbert Xu) [RHEL-89531] - crypto: tegra - remove redundant error check on ret (Herbert Xu) [RHEL-89531] - ata: libata-scsi: Refactor scsi_6_lba_len() with use of get_unaligned_be24() (Tomas Henzl) [RHEL-72617] - ata: Switch back to struct platform_driver::remove() (Tomas Henzl) [RHEL-72617] - ata: Fix typos in the comment (Tomas Henzl) [RHEL-72617] - ata: sata_sx4: Add error handling in pdc20621_i2c_read() (Tomas Henzl) [RHEL-72617] - ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() (Tomas Henzl) [RHEL-72617] - ata: ahci: simplify init function (Tomas Henzl) [RHEL-72617] - ahci: Marvell 88SE9215 controllers prefer DMA for ATAPI (Tomas Henzl) [RHEL-72617] - ata: libata-core: Add ATA_QUIRK_NO_LPM_ON_ATI for certain Samsung SSDs (Tomas Henzl) [RHEL-72617] - ata: libata: Fix NCQ Non-Data log not supported print (Tomas Henzl) [RHEL-72617] - ata: libata-zpodd: convert timeouts to secs_to_jiffies() (Tomas Henzl) [RHEL-72617] - ata: libata: Improve return value of atapi_check_dma() (Tomas Henzl) [RHEL-72617] - ahci: add PCI ID for Marvell 88SE9215 SATA Controller (Tomas Henzl) [RHEL-72617] - Revert "ata: libata-core: Add ATA_QUIRK_NOLPM for Samsung SSD 870 QVO drives" (Tomas Henzl) [RHEL-72617] - ata: ahci: Make ahci_ignore_port() handle empty mask_port_map (Tomas Henzl) [RHEL-72617] - ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode (Tomas Henzl) [RHEL-72617] - ata: sata_via: Use str_up_down() helper in vt6420_prereset() (Tomas Henzl) [RHEL-72617] - ata: pata_octeon_cf: Switch to use hrtimer_setup() (Tomas Henzl) [RHEL-72617] - ata: libahci_platform: Do not set mask_port_map when not needed (Tomas Henzl) [RHEL-72617] - ata: libata-core: Add 'external' to the libata.force kernel parameter (Tomas Henzl) [RHEL-72617] - ata: libata-core: Add ATA_QUIRK_NOLPM for Samsung SSD 870 QVO drives (Tomas Henzl) [RHEL-72617] - ahci: st: Switch from CONFIG_PM_SLEEP guards to pm_sleep_ptr() (Tomas Henzl) [RHEL-72617] - ahci: Introduce ahci_ignore_port() helper (Tomas Henzl) [RHEL-72617] - ata: libahci_platform: support non-consecutive port numbers (Tomas Henzl) [RHEL-72617] - ata: sata_gemini: Remove remaining reset glue (Tomas Henzl) [RHEL-72617] - ata: sata_gemini: Remove unused gemini_sata_reset_bridge() (Tomas Henzl) [RHEL-72617] - ata: sata_highbank: fix OF node reference leak in highbank_initialize_phys() (Tomas Henzl) [RHEL-72617] - ata: Constify struct pci_device_id (Tomas Henzl) [RHEL-72617] - ata: libata-scsi: Return residual for emulated SCSI commands (Tomas Henzl) [RHEL-72617] - ata: libata-scsi: Remove struct ata_scsi_args (Tomas Henzl) [RHEL-72617] - ata: libata-scsi: Document all VPD page inquiry actors (Tomas Henzl) [RHEL-72617] - ata: libata-scsi: Refactor ata_scsiop_maint_in() (Tomas Henzl) [RHEL-72617] - ata: libata-scsi: Refactor ata_scsiop_read_cap() (Tomas Henzl) [RHEL-72617] - ata: libata-scsi: Refactor ata_scsi_simulate() (Tomas Henzl) [RHEL-72617] - sched: sch_cake: add bounds checks to host bulk flow fairness counts (Xin Long) [RHEL-77316] {CVE-2025-21647} - net: fib_rules: Fix iif / oif matching on L3 master device (Antoine Tenart) [RHEL-84551] - net: Remove likely from l3mdev_master_ifindex_by_index (Antoine Tenart) [RHEL-84551] - scsi: mpt3sas: Fix buffer overflow in mpt3sas_send_mctp_passthru_req() (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Mark device strings as nonstring (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Fix spelling mistake "receveid" -> "received" (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: update driver version to 52.100.00.00 (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Send a diag reset if target reset fails (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Report driver capability as part of IOCINFO command (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Add support for MCTP Passthrough commands (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Update MPI headers to 02.00.62 version (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Fix a locking bug in an error path (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Reduce log level of ignore_delay_remove message to KERN_INFO (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Remove unused config functions (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Set ioc->manu_pg11.EEDPTagMode directly to 1 (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Add details to EEDPTagMode error message (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Update driver version to 51.100.00.00 (Chandrakanth Patil) [RHEL-81909] - scsi: mpt3sas: Diag-Reset when Doorbell-In-Use bit is set during driver load time (Chandrakanth Patil) [RHEL-81909] - x86/bugs: KVM: Add support for SRSO_MSR_FIX (Waiman Long) [RHEL-80398] - x86/cpu/kvm: SRSO: Fix possible missing IBPB on VM-Exit (Waiman Long) [RHEL-80398] - KVM: x86: Advertise SRSO_USER_KERNEL_NO to userspace (Waiman Long) [RHEL-80398] - x86/bugs: Add SRSO_USER_KERNEL_NO support (Waiman Long) [RHEL-80398] - dmaengine: Revert "dmaengine: qcom: bam_dma: Avoid writing unavailable register" (Jerry Snitselaar) [RHEL-78703] - dmaengine: amd: qdma: Remove using the private get and set dma_ops APIs (Jerry Snitselaar) [RHEL-78703] - dmaengine: idxd: Enable Function Level Reset (FLR) for halt (Jerry Snitselaar) [RHEL-78703] - dmaengine: idxd: Refactor halt handler (Jerry Snitselaar) [RHEL-78703] - dmaengine: idxd: Add idxd_device_config_save() and idxd_device_config_restore() helpers (Jerry Snitselaar) [RHEL-78703] - dmaengine: idxd: Binding and unbinding IDXD device and driver (Jerry Snitselaar) [RHEL-78703] - dmaengine: idxd: Add idxd_pci_probe_alloc() helper (Jerry Snitselaar) [RHEL-78703] - dmaengine: qcom: gpi: Add GPI immediate DMA support for SPI protocol (Jerry Snitselaar) [RHEL-78703] - dmaengine: bcm2835-dma: Prevent suspend if DMA channel is busy (Jerry Snitselaar) [RHEL-78703] - dmaengine: ti: k3-udma: Add support for J722S CSI BCDMA (Jerry Snitselaar) [RHEL-78703] - dmaengine: ti: edma: fix OF node reference leaks in edma_driver (Jerry Snitselaar) [RHEL-78703] - dmaengine: ti: edma: make the loop condition simpler in edma_probe() (Jerry Snitselaar) [RHEL-78703] - dmaengine: qcom: bam_dma: Avoid writing unavailable register (Jerry Snitselaar) [RHEL-78703] - dmaengine: idxd: Remove unused idxd_(un)register_bus_type (Jerry Snitselaar) [RHEL-78703] - dmaengine: amd: qdma: make read-only arrays h2c_types and c2h_types static const (Jerry Snitselaar) [RHEL-78703] - dmaengine: idxd: Add a new IAA device ID on Panther Lake family platforms (Jerry Snitselaar) [RHEL-47413] - dmaengine: sh: rcar-dmac: add comment for r8a779a0 compatible (Jerry Snitselaar) [RHEL-78703] - dmaengine: Move AMD PTDMA driver to amd directory (Jerry Snitselaar) [RHEL-78703] - dmaengine: idxd: Remove a useless mutex (Jerry Snitselaar) [RHEL-78703] - linux/dmaengine.h: fix a few kernel-doc warnings (Jerry Snitselaar) [RHEL-78703] - dmaengine: fix typo in the comment (Jerry Snitselaar) [RHEL-78703] - dmaengine: idxd: Move DSA/IAA device IDs to IDXD driver (Jerry Snitselaar) [RHEL-78703] - dmaengine: Switch back to struct platform_driver::remove() (Jerry Snitselaar) [RHEL-78703] - dmaengine: acpi: Clean up headers (Jerry Snitselaar) [RHEL-78703] - dmaengine: acpi: Simplify devm_acpi_dma_controller_register() (Jerry Snitselaar) [RHEL-78703] - dmaengine: acpi: Drop unused devm_acpi_dma_controller_free() (Jerry Snitselaar) [RHEL-78703] - dmaengine: sh: rz-dmac: add r7s72100 support (Jerry Snitselaar) [RHEL-78703] - r8169: disable RTL8126 ZRX-DC timeout (CKI Backport Bot) [RHEL-88646] - r8169: enable RTL8168H/RTL8168EP/RTL8168FP ASPM support (CKI Backport Bot) [RHEL-88646] - redhat: configs: aarch64: Support NV Jetson MIPI camera (Kate Hsuan) [RHEL-56474] - netfilter: conntrack: fix erronous removal of offload bit (Florian Westphal) [RHEL-87206] - bpf: Add tracepoints with null-able arguments (Viktor Malik) [RHEL-77939] - selftests/bpf: Fix runqslower cross-endian build (Viktor Malik) [RHEL-77939] - libbpf: Fix accessing BTF.ext core_relo header (Viktor Malik) [RHEL-77939] - selftests/bpf: Fix freplace_link segfault in tailcalls prog test (Viktor Malik) [RHEL-77939] - selftests/bpf: Fix undefined UINT_MAX in veristat.c (Viktor Malik) [RHEL-77939] - bpf: Move out synchronize_rcu_tasks_trace from mutex CS (Viktor Malik) [RHEL-77939] - selftests/bpf: Fix compilation error in get_uprobe_offset() (Viktor Malik) [RHEL-77939] - selftests/bpf: Use asm constraint "m" for LoongArch (Viktor Malik) [RHEL-77939] - bpf: Fix bpf_get_smp_processor_id() on !CONFIG_SMP (Viktor Malik) [RHEL-77939] - bpf: Avoid deadlock caused by nested kprobe and fentry bpf programs (Viktor Malik) [RHEL-77939] - selftests/bpf: Add tests for raw_tp NULL args (Viktor Malik) [RHEL-77939] - bpf: Augment raw_tp arguments with PTR_MAYBE_NULL (Viktor Malik) [RHEL-77939] - bpf: Revert "bpf: Mark raw_tp arguments with PTR_MAYBE_NULL" (Viktor Malik) [RHEL-77939] - selftests/bpf: Add test for narrow ctx load for pointer args (Viktor Malik) [RHEL-77939] - bpf: Check size for BTF-based ctx access of pointer members (Viktor Malik) [RHEL-77939] - selftests/bpf: extend changes_pkt_data with cases w/o subprograms (Viktor Malik) [RHEL-77939] - bpf: fix null dereference when computing changes_pkt_data of prog w/o subprogs (Viktor Malik) [RHEL-77939] - bpf: Fix theoretical prog_array UAF in __uprobe_perf_func() (Viktor Malik) [RHEL-77939] - bpf: fix potential error return (Viktor Malik) [RHEL-77939] - selftests/bpf: validate that tail call invalidates packet pointers (Viktor Malik) [RHEL-77939] - bpf: consider that tail calls invalidate packet pointers (Viktor Malik) [RHEL-77939] - selftests/bpf: freplace tests for tracking of changes_packet_data (Viktor Malik) [RHEL-77939] - bpf: check changes_pkt_data property for extension programs (Viktor Malik) [RHEL-77939] - selftests/bpf: test for changing packet data from global functions (Viktor Malik) [RHEL-77939] - bpf: track changes_pkt_data property for global functions (Viktor Malik) [RHEL-77939] - bpf: refactor bpf_helper_changes_pkt_data to use helper number (Viktor Malik) [RHEL-77939] - bpf: add find_containing_subprog() utility function (Viktor Malik) [RHEL-77939] - bpf,perf: Fix invalid prog_array access in perf_event_detach_bpf_prog (Viktor Malik) [RHEL-77939] - bpf: Fix UAF via mismatching bpf_prog/attachment RCU flavors (Viktor Malik) [RHEL-76135 RHEL-77939] {CVE-2024-56675} - selftests/bpf: Add more test cases for LPM trie (Viktor Malik) [RHEL-77939] - selftests/bpf: Move test_lpm_map.c to map_tests (Viktor Malik) [RHEL-77939] - bpf: Use raw_spinlock_t for LPM trie (Viktor Malik) [RHEL-77939] - bpf: Switch to bpf mem allocator for LPM trie (Viktor Malik) [RHEL-77939] - bpf: Fix exact match conditions in trie_get_next_key() (Viktor Malik) [RHEL-77939] - bpf: Handle in-place update for full LPM trie correctly (Viktor Malik) [RHEL-77939] - bpf: Handle BPF_EXIST and BPF_NOEXIST for LPM trie (Viktor Malik) [RHEL-77939] - bpf: Remove unnecessary kfree(im_node) in lpm_trie_update_elem (Viktor Malik) [RHEL-77939] - bpf: Remove unnecessary check when updating LPM trie (Viktor Malik) [RHEL-77939] - samples/bpf: Pass TPROGS_USER_CFLAGS to libbpf makefile (Viktor Malik) [RHEL-77939] - selftests/bpf: Add test for narrow spill into 64-bit spilled scalar (Viktor Malik) [RHEL-77939] - selftests/bpf: Add test for reading from STACK_INVALID slots (Viktor Malik) [RHEL-77939] - selftests/bpf: Introduce __caps_unpriv annotation for tests (Viktor Malik) [RHEL-77939] - bpf: Fix narrow scalar spill onto 64-bit spilled scalar slots (Viktor Malik) [RHEL-77939] - bpf: Don't mark STACK_INVALID as STACK_MISC in mark_stack_slot_misc (Viktor Malik) [RHEL-77939] - samples/bpf: Remove unnecessary -I flags from libbpf EXTRA_CFLAGS (Viktor Malik) [RHEL-77939] - bpf: Zero index arg error string for dynptr and iter (Viktor Malik) [RHEL-77939] - selftests/bpf: Add tests for iter arg check (Viktor Malik) [RHEL-77939] - bpf: Ensure reg is PTR_TO_STACK in process_iter_arg (Viktor Malik) [RHEL-77939] - selftests/bpf: Check for PREEMPTION instead of PREEMPT (Viktor Malik) [RHEL-77939] - bpftool: fix potential NULL pointer dereferencing in prog_dump() (Viktor Malik) [RHEL-77939] - bpf, lsm: Remove getlsmprop hooks BTF IDs (Viktor Malik) [RHEL-77939] - libbpf: Change hash_combine parameters from long to unsigned long (Viktor Malik) [RHEL-77939] - selftests/bpf: Fix build error with llvm 19 (Viktor Malik) [RHEL-77939] - libbpf: Fix memory leak in bpf_program__attach_uprobe_multi (Viktor Malik) [RHEL-77939] - bpf: use common instruction history across all states (Viktor Malik) [RHEL-77939] - bpf: Add necessary migrate_disable to range_tree. (Viktor Malik) [RHEL-77939] - selftests/bpf: Set test path for token/obj_priv_implicit_token_envvar (Viktor Malik) [RHEL-77939] - selftests/bpf: Add a test for arena range tree algorithm (Viktor Malik) [RHEL-77939] - bpf: Introduce range_tree data structure and use it in bpf arena (Viktor Malik) [RHEL-77939] - bpftool: Cast variable `var` to long long (Viktor Malik) [RHEL-77939] - bpf, x86: Propagate tailcall info only for subprogs (Viktor Malik) [RHEL-77939] - bpf: Add kernel symbol for struct_ops trampoline (Viktor Malik) [RHEL-77939] - bpf: Use function pointers count as struct_ops links count (Viktor Malik) [RHEL-77939] - bpf: Remove unused member rcu from bpf_struct_ops_map (Viktor Malik) [RHEL-77939] - selftests/bpf: Add struct_ops prog private stack tests (Viktor Malik) [RHEL-77939] - bpf: Support private stack for struct_ops progs (Viktor Malik) [RHEL-77939] - selftests/bpf: Add tracing prog private stack tests (Viktor Malik) [RHEL-77939] - bpf, x86: Support private stack in jit (Viktor Malik) [RHEL-77939] - bpf, x86: Avoid repeated usage of bpf_prog->aux->stack_depth (Viktor Malik) [RHEL-77939] - bpf: Enable private stack for eligible subprogs (Viktor Malik) [RHEL-77939] - bpf: Find eligible subprogs for private stack support (Viktor Malik) [RHEL-77939] - selftests/bpf: update send_signal to lower perf evemts frequency (Viktor Malik) [RHEL-77939] - selftests/bpf: allow send_signal test to timeout (Viktor Malik) [RHEL-77939] - selftests/bpf: add read_with_timeout() utility function (Viktor Malik) [RHEL-77939] - selftests/bpf: watchdog timer for test_progs (Viktor Malik) [RHEL-77939] - libbpf: Add namespace for errstr making it libbpf_errstr (Viktor Malik) [RHEL-77939] - libbpf: Stringify errno in log messages in the remaining code (Viktor Malik) [RHEL-77939] - libbpf: Stringify errno in log messages in btf*.c (Viktor Malik) [RHEL-77939] - libbpf: Stringify errno in log messages in libbpf.c (Viktor Malik) [RHEL-77939] - libbpf: Introduce errstr() for stringifying errno (Viktor Malik) [RHEL-77939] - bpf: Replace the document for PTR_TO_BTF_ID_OR_NULL (Viktor Malik) [RHEL-77939] - tools/bpf: Fix the wrong format specifier in bpf_jit_disasm (Viktor Malik) [RHEL-77939] - kbuild,bpf: Pass make jobs' value to pahole (Viktor Malik) [RHEL-77939] - bpf: Drop special callback reference handling (Viktor Malik) [RHEL-77939] - bpf: Refactor active lock management (Viktor Malik) [RHEL-77939] - selftests/bpf: skip the timer_lockup test for single-CPU nodes (Viktor Malik) [RHEL-77939] - selftests/bpf: Test the update operations for htab of maps (Viktor Malik) [RHEL-77939] - selftests/bpf: Move ENOTSUPP from bpf_util.h (Viktor Malik) [RHEL-77939] - bpf: Call free_htab_elem() after htab_unlock_bucket() (Viktor Malik) [RHEL-77939] - selftests/bpf: Add threads to consumer test (Viktor Malik) [RHEL-77939] - selftests/bpf: Add uprobe sessions to consumer test (Viktor Malik) [RHEL-77939] - selftests/bpf: Add uprobe session single consumer test (Viktor Malik) [RHEL-77939] - selftests/bpf: Add kprobe session verifier test for return value (Viktor Malik) [RHEL-77939] - selftests/bpf: Add uprobe session verifier test for return value (Viktor Malik) [RHEL-77939] - selftests/bpf: Add uprobe session recursive test (Viktor Malik) [RHEL-77939] - selftests/bpf: Add uprobe session cookie test (Viktor Malik) [RHEL-77939] - selftests/bpf: Add uprobe session test (Viktor Malik) [RHEL-77939] - libbpf: Add support for uprobe multi session attach (Viktor Malik) [RHEL-77939] - bpf: Add support for uprobe multi session context (Viktor Malik) [RHEL-77939] - bpf: Add support for uprobe multi session attach (Viktor Malik) [RHEL-77939] - bpf: Force uprobe bpf program to always return 0 (Viktor Malik) [RHEL-77939] - bpf: Allow return values 0 and 1 for kprobe session (Viktor Malik) [RHEL-77939] - selftests/bpf: Fix uprobe consumer test (again) (Viktor Malik) [RHEL-77939] - bpf: Remove trailing whitespace in verifier.rst (Viktor Malik) [RHEL-77939] - selftests/bpf: Add tests for raw_tp null handling (Viktor Malik) [RHEL-77939] - selftests/bpf: Clean up open-coded gettid syscall invocations (Viktor Malik) [RHEL-77939] - bpf: Mark raw_tp arguments with PTR_MAYBE_NULL (Viktor Malik) [RHEL-77939] - bpf: Move btf_type_is_struct_ptr() under CONFIG_BPF_SYSCALL (Viktor Malik) [RHEL-77939] - selftests/bpf: Add tests for tail calls with locks and refs (Viktor Malik) [RHEL-77939] - bpf: Unify resource leak checks (Viktor Malik) [RHEL-77939] - bpf: Tighten tail call checks for lingering locks, RCU, preempt_disable (Viktor Malik) [RHEL-77939] - bpf, bpftool: Fix incorrect disasm pc (Viktor Malik) [RHEL-77939] - selftests/bpf: Add a test for open coded kmem_cache iter (Viktor Malik) [RHEL-77939] - bpf: Add open coded version of kmem_cache iterator (Viktor Malik) [RHEL-77939] - bpf: decouple BPF link/attach hook and BPF program sleepable semantics (Viktor Malik) [RHEL-77939] - bpf: put bpf_link's program when link is safe to be deallocated (Viktor Malik) [RHEL-77939] - selftests/bpf: drop unnecessary bpf_iter.h type duplication (Viktor Malik) [RHEL-77939] - libbpf: start v1.6 development cycle (Viktor Malik) [RHEL-77939] - docs/bpf: Add description of .BTF.base section (Viktor Malik) [RHEL-77939] - bpf: handle implicit declaration of function gettid in bpf_iter.c (Viktor Malik) [RHEL-77939] - bpf, arm64: Remove garbage frame for struct_ops trampoline (Viktor Malik) [RHEL-77939] - selftests/bpf: Create task_local_storage map with invalid uptr's struct (Viktor Malik) [RHEL-77939] - selftests/bpf: Add uptr failure verifier tests (Viktor Malik) [RHEL-77939] - selftests/bpf: Add update_elem failure test for task storage uptr (Viktor Malik) [RHEL-77939] - selftests/bpf: Test a uptr struct spanning across pages. (Viktor Malik) [RHEL-77939] - selftests/bpf: Some basic __uptr tests (Viktor Malik) [RHEL-77939] - libbpf: define __uptr. (Viktor Malik) [RHEL-77939] - bpf: Add uptr support in the map_value of the task local storage. (Viktor Malik) [RHEL-77939] - bpf: Postpone bpf_obj_free_fields to the rcu callback (Viktor Malik) [RHEL-77939] - bpf: Postpone bpf_selem_free() in bpf_selem_unlink_storage_nolock() (Viktor Malik) [RHEL-77939] - bpf: Add "bool swap_uptrs" arg to bpf_local_storage_update() and bpf_selem_alloc() (Viktor Malik) [RHEL-77939] - bpf: Handle BPF_UPTR in verifier (Viktor Malik) [RHEL-77939] - bpf: Support __uptr type tag in BTF (Viktor Malik) [RHEL-77939] - selftests/bpf: validate generic bpf_object and subskel APIs work together (Viktor Malik) [RHEL-77939] - libbpf: move global data mmap()'ing into bpf_object__load() (Viktor Malik) [RHEL-77939] - selftests/bpf: fix test_spin_lock_fail.c's global vars usage (Viktor Malik) [RHEL-77939] - libbpf: Prevent compiler warnings/errors (Viktor Malik) [RHEL-77939] - selftests/bpf: Increase verifier log limit in veristat (Viktor Malik) [RHEL-77939] - uprobe: Add support for session consumer (Viktor Malik) [RHEL-77939] - uprobe: Add data pointer to consumer handlers (Viktor Malik) [RHEL-77939] - selftests/bpf: Augment send_signal test with remote signaling (Viktor Malik) [RHEL-77939] - bpf: Implement bpf_send_signal_task() kfunc (Viktor Malik) [RHEL-77939] - selftests/bpf: Add test to verify tailcall and freplace restrictions (Viktor Malik) [RHEL-77939] - bpf: Prevent tailcall infinite loop caused by freplace (Viktor Malik) [RHEL-77939] - selftests/bpf: Add tests for bpf_task_from_vpid() kfunc (Viktor Malik) [RHEL-77939] - bpf: Add bpf_task_from_vpid() kfunc (Viktor Malik) [RHEL-77939] - selftests/bpf: Add a test for kmem_cache_iter (Viktor Malik) [RHEL-77939] - mm/bpf: Add bpf_get_kmem_cache() kfunc (Viktor Malik) [RHEL-77939] - bpf: Add kmem_cache iterator (Viktor Malik) [RHEL-77939] - libbpf: Fix possible compiler warnings in hashmap (Viktor Malik) [RHEL-77939] - selftests/bpf: Check for timeout in perf_link test (Viktor Malik) [RHEL-77939] - selftests/bpf: add subprog to BPF object file with no entry programs (Viktor Malik) [RHEL-77939] - libbpf: never interpret subprogs in .text as entry programs (Viktor Malik) [RHEL-77939] - samples/bpf: remove obsolete tracing related tests (Viktor Malik) [RHEL-77939] - samples/bpf: remove obsolete cgroup related tests (Viktor Malik) [RHEL-77939] - selftests/bpf: migrate cgroup sock create test for prohibiting sockets (Viktor Malik) [RHEL-77939] - selftests/bpf: migrate cgroup sock create test for setting iface/mark/prio (Viktor Malik) [RHEL-77939] - selftests/bpf: Removed redundant fd after close in bpf_prog_load_log_buf (Viktor Malik) [RHEL-77939] - samples/bpf: Fix a resource leak (Viktor Malik) [RHEL-77939] - bpf: Update bpf_override_return() comment (Viktor Malik) [RHEL-77939] - bpf: fix argument type in bpf_loop documentation (Viktor Malik) [RHEL-77939] - libbpf: fix sym_is_subprog() logic for weak global subprogs (Viktor Malik) [RHEL-77939] - samples/bpf: Remove unused variables (Viktor Malik) [RHEL-77939] - selftests/bpf: Fix backtrace printing for selftests crashes (Viktor Malik) [RHEL-77939] - selftests/bpf: Test linking with duplicate extern functions (Viktor Malik) [RHEL-77939] - libbpf: Do not resolve size on duplicate FUNCs (Viktor Malik) [RHEL-77939] - bpf: syscall_nrs: Disable no previous prototype warnning (Viktor Malik) [RHEL-77939] - selftests: bpf: Add missing per-arch include path (Viktor Malik) [RHEL-77939] - libbpf: Add missing per-arch include path (Viktor Malik) [RHEL-77939] - selftests/bpf: Emit top frequent code lines in veristat (Viktor Malik) [RHEL-77939] - bpftool: __bpf_fastcall for kfuncs marked with special decl_tag (Viktor Malik) [RHEL-77939] - bpf: Use KF_FASTCALL to mark kfuncs supporting fastcall contract (Viktor Malik) [RHEL-77939] - bpf: __bpf_fastcall for bpf_get_smp_processor_id in uapi (Viktor Malik) [RHEL-77939] - bpf: Allow specifying bpf_fastcall attribute for BPF helpers (Viktor Malik) [RHEL-77939] - selftests/bpf: Fix uprobe_multi compilation error (Viktor Malik) [RHEL-77939] - selftests/bpf: Support cross-endian building (Viktor Malik) [RHEL-77939] - libbpf: Support creating light skeleton of either endianness (Viktor Malik) [RHEL-77939] - libbpf: Support linking bpf objects of either endianness (Viktor Malik) [RHEL-77939] - libbpf: Support opening bpf objects of either endianness (Viktor Malik) [RHEL-77939] - libbpf: Support BTF.ext loading and output in either endianness (Viktor Malik) [RHEL-77939] - libbpf: Fix output .symtab byte-order during linking (Viktor Malik) [RHEL-77939] - libbpf: Fix header comment typos for BTF.ext (Viktor Malik) [RHEL-77939] - libbpf: Improve log message formatting (Viktor Malik) [RHEL-77939] - bpf: Call kfree(obj) only once in free_one() (Viktor Malik) [RHEL-77939] - libbpf: Remove unneeded semicolon (Viktor Malik) [RHEL-77939] - tools/bpf: Remove unused variable from runqslower (Viktor Malik) [RHEL-77939] - libbpf: Fix expected_attach_type set handling in program load callback (Viktor Malik) [RHEL-77939] - selftests/bpf: vm: Add support for VIRTIO_FS (Viktor Malik) [RHEL-77939] - selftests/bpf: Bail out quickly from failing consumer test (Viktor Malik) [RHEL-77939] - selftests/bpf: Fix uprobe consumer test (Viktor Malik) [RHEL-77939] - selftests/bpf: Add missing va_end. (Viktor Malik) [RHEL-77939] - libbpf: Change log level of BTF loading error message (Viktor Malik) [RHEL-77939] - selftests/bpf: Set vpath in Makefile to search for skels (Viktor Malik) [RHEL-77939] - bpf: Constify struct btf_kind_operations (Viktor Malik) [RHEL-77939] - selftests/bpf: Remove test_skb_cgroup_id.sh from TEST_PROGS (Viktor Malik) [RHEL-77939 RHEL-78980] - bpf/tests: Include instead of (Viktor Malik) [RHEL-77939] - bpf: Include instead of (Viktor Malik) [RHEL-77939] - netfilter: nft_tunnel: fix geneve_opt type confusion addition (CKI Backport Bot) [RHEL-88785] {CVE-2025-22056} - page_pool: Track DMA-mapped pages and unmap them when destroying the pool (Toke Høiland-Jørgensen) [RHEL-68401] - page_pool: Move pp_magic check into helper functions (Toke Høiland-Jørgensen) [RHEL-68401] - net: warn if NAPI instance wasn't shut down (Davide Caratti) [RHEL-77817] - net: hide the definition of dev_get_by_napi_id() (Davide Caratti) [RHEL-77817] - net: page_pool: don't try to stash the napi id (Davide Caratti) [RHEL-77817] - xsk: Bring back busy polling support (Davide Caratti) [RHEL-77817] - net: Make napi_hash_lock irq safe (Davide Caratti) [RHEL-77817] - netdev: prevent accessing NAPI instances from another namespace (Davide Caratti) [RHEL-77817] {CVE-2025-21659} - netdev-genl: Hold rcu_read_lock in napi_set (Davide Caratti) [RHEL-77817] - mlx4: Add support for persistent NAPI config to RX CQs (Davide Caratti) [RHEL-77817] - mlx5: Add support for persistent NAPI config (Davide Caratti) [RHEL-77817] - bnxt: Add support for persistent NAPI config (Davide Caratti) [RHEL-77817] - netdev-genl: Support setting per-NAPI config values (Davide Caratti) [RHEL-77817] - net: napi: Add napi_config (Davide Caratti) [RHEL-77817] - netdev-genl: Dump gro_flush_timeout (Davide Caratti) [RHEL-77817] - net: napi: Make gro_flush_timeout per-NAPI (Davide Caratti) [RHEL-77817] - netdev-genl: Dump napi_defer_hard_irqs (Davide Caratti) [RHEL-77817] - net: napi: Make napi_defer_hard_irqs per-NAPI (Davide Caratti) [RHEL-77817] - splice: do not checksum AF_UNIX sockets (Davide Caratti) [RHEL-84565] - configs: add redhat/configs/common/generic/CONFIG_OBJTOOL_WERROR (Ryan Sullivan) [RHEL-85301] - redhat: make ENABLE_WERROR also enable OBJTOOL_WERROR (Ryan Sullivan) [RHEL-85301] - objtool: Fix verbose disassembly if CROSS_COMPILE isn't set (Ryan Sullivan) [RHEL-85292] - objtool: Change "warning:" to "error: " for fatal errors (Ryan Sullivan) [RHEL-85292] - objtool: Always fail on fatal errors (Ryan Sullivan) [RHEL-85292] - Revert "objtool: Increase per-function WARN_FUNC() rate limit" (Ryan Sullivan) [RHEL-85292] - objtool: Append "()" to function name in "unexpected end of section" warning (Ryan Sullivan) [RHEL-85292] - objtool: Ignore end-of-section jumps for KCOV/GCOV (Ryan Sullivan) [RHEL-85292] - objtool: Silence more KCOV warnings, part 2 (Ryan Sullivan) [RHEL-85292] - objtool, drm/vmwgfx: Don't ignore vmw_send_msg() for ORC (Ryan Sullivan) [RHEL-85292] - objtool: Fix STACK_FRAME_NON_STANDARD for cold subfunctions (Ryan Sullivan) [RHEL-85292] - objtool: Fix segfault in ignore_unreachable_insn() (Ryan Sullivan) [RHEL-85292] - objtool: Fix NULL printf() '%%s' argument in builtin-check.c:save_argv() (Ryan Sullivan) [RHEL-85292] - objtool, regulator: rk808: Remove potential undefined behavior in rk806_set_mode_dcdc() (Ryan Sullivan) [RHEL-85292] - objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() (Ryan Sullivan) [RHEL-85292] - objtool, Input: cyapa - Remove undefined behavior in cyapa_update_fw_store() (Ryan Sullivan) [RHEL-85292] - objtool, panic: Disable SMAP in __stack_chk_fail() (Ryan Sullivan) [RHEL-85292] - objtool, media: dib8000: Prevent divide-by-zero in dib8000_set_dds() (Ryan Sullivan) [RHEL-85292] - objtool, nvmet: Fix out-of-bounds stack access in nvmet_ctrl_state_show() (Ryan Sullivan) [RHEL-85292] - objtool, spi: amd: Fix out-of-bounds stack access in amd_set_spi_freq() (Ryan Sullivan) [RHEL-85292] - objtool: Remove redundant opts.noinstr dependency (Ryan Sullivan) [RHEL-85292] - objtool: Remove --no-unreachable for noinstr-only vmlinux.o runs (Ryan Sullivan) [RHEL-85292] - objtool: Fix up some outdated references to ENTRY/ENDPROC (Ryan Sullivan) [RHEL-85292] - objtool: Reduce CONFIG_OBJTOOL_WERROR verbosity (Ryan Sullivan) [RHEL-85292] - objtool: Improve error handling (Ryan Sullivan) [RHEL-85292] - objtool: Properly disable uaccess validation (Ryan Sullivan) [RHEL-85292] - objtool: Silence more KCOV warnings (Ryan Sullivan) [RHEL-85292] - objtool: Fix init_module() handling (Ryan Sullivan) [RHEL-85292] - objtool: Fix CONFIG_OBJTOOL_WERROR for vmlinux.o (Ryan Sullivan) [RHEL-85292] - objtool: Ignore entire functions rather than instructions (Ryan Sullivan) [RHEL-85292] - crypto: x86/crc32c - eliminate jump table and excessive unrolling (Ryan Sullivan) [RHEL-85292] - crypto: x86/crc32c - access 32-bit arguments as 32-bit (Ryan Sullivan) [RHEL-85292] - crypto: x86/crc32c - simplify code for handling fewer than 200 bytes (Ryan Sullivan) [RHEL-85292] - objtool: Fix false-positive "ignoring unreachables" warning (Ryan Sullivan) [RHEL-85292] - objtool: Warn when disabling unreachable warnings (Ryan Sullivan) [RHEL-85292] - objtool: Fix detection of consecutive jump tables on Clang 20 (Ryan Sullivan) [RHEL-85292] - objtool: Use O_CREAT with explicit mode mask (Ryan Sullivan) [RHEL-85292] - objtool: Add CONFIG_OBJTOOL_WERROR (Ryan Sullivan) [RHEL-85292] - objtool: Create backup on error and print args (Ryan Sullivan) [RHEL-85292] - objtool: Change "warning:" to "error:" for --Werror (Ryan Sullivan) [RHEL-85292] - objtool: Add --Werror option (Ryan Sullivan) [RHEL-85292] - objtool: Add --output option (Ryan Sullivan) [RHEL-85292] - objtool: Upgrade "Linked object detected" warning to error (Ryan Sullivan) [RHEL-85292] - objtool: Consolidate option validation (Ryan Sullivan) [RHEL-85292] - objtool: Remove --unret dependency on --rethunk (Ryan Sullivan) [RHEL-85292] - objtool: Increase per-function WARN_FUNC() rate limit (Ryan Sullivan) [RHEL-85292] - objtool: Update documentation (Ryan Sullivan) [RHEL-85292] - objtool: Improve __noreturn annotation warning (Ryan Sullivan) [RHEL-85292] - objtool: Fix error handling inconsistencies in check() (Ryan Sullivan) [RHEL-85292] - x86/traps: Make exc_double_fault() consistently noreturn (Ryan Sullivan) [RHEL-85292] - powerpc: Fix 'intra_function_call not a direct call' warning (Ryan Sullivan) [RHEL-85292] - crypto: powerpc: Mark ghashp8-ppc.o as an OBJECT_FILES_NON_STANDARD (Ryan Sullivan) [RHEL-85292] - objtool/powerpc: Add support for decoding all types of uncond branches (Ryan Sullivan) [RHEL-85292] - objtool: Fix C jump table annotations for Clang (Ryan Sullivan) [RHEL-85292] - vmlinux.lds: Ensure that const vars with relocations are mapped R/O (Ryan Sullivan) [RHEL-85292] - tools: Remove redundant quiet setup (Ryan Sullivan) [RHEL-85292] - objtool/LoongArch: Add support for goto table (Ryan Sullivan) [RHEL-85292] - objtool/LoongArch: Add support for switch table (Ryan Sullivan) [RHEL-85292] - objtool: Handle PC relative relocation type (Ryan Sullivan) [RHEL-85292] - objtool: Handle different entry size of rodata (Ryan Sullivan) [RHEL-85292] - objtool: Handle various symbol types of rodata (Ryan Sullivan) [RHEL-85292] - x86/module: Remove unnecessary check in module_finalize() (Ryan Sullivan) [RHEL-85292] - x86/alternative: Simplify callthunk patching (Ryan Sullivan) [RHEL-85292] - objtool: Move dodgy linker warn to verbose (Ryan Sullivan) [RHEL-85292] - objtool: Hide unnecessary compiler error message (Ryan Sullivan) [RHEL-85292] - objtool: Ignore dangling jump table entries (Ryan Sullivan) [RHEL-85292] - objtool/rust: add one more `noreturn` Rust function (Ryan Sullivan) [RHEL-85292] - objtool: Warn about unknown annotation types (Ryan Sullivan) [RHEL-85292] - objtool: Fix ANNOTATE_REACHABLE to be a normal annotation (Ryan Sullivan) [RHEL-85292] - objtool: Convert {.UN}REACHABLE to ANNOTATE (Ryan Sullivan) [RHEL-85292] - objtool: Remove annotate_{,un}reachable() (Ryan Sullivan) [RHEL-85292] - loongarch: Use ASM_REACHABLE (Ryan Sullivan) [RHEL-85292] - x86/mm: Convert unreachable() to BUG() (Ryan Sullivan) [RHEL-85292] - x86: Convert unreachable() to BUG() (Ryan Sullivan) [RHEL-85292] - unreachable: Unify (Ryan Sullivan) [RHEL-85292] - objtool: Collect more annotations in objtool.h (Ryan Sullivan) [RHEL-85292] - objtool: Collapse annotate sequences (Ryan Sullivan) [RHEL-85292] - objtool: Convert ANNOTATE_INTRA_FUNCTION_CALL to ANNOTATE (Ryan Sullivan) [RHEL-85292] - objtool: Convert ANNOTATE_IGNORE_ALTERNATIVE to ANNOTATE (Ryan Sullivan) [RHEL-85292] - objtool: Convert VALIDATE_UNRET_BEGIN to ANNOTATE (Ryan Sullivan) [RHEL-85292] - objtool: Convert instrumentation_{begin,end}() to ANNOTATE (Ryan Sullivan) [RHEL-85292] - objtool: Convert ANNOTATE_RETPOLINE_SAFE to ANNOTATE (Ryan Sullivan) [RHEL-85292] - objtool: Convert ANNOTATE_NOENDBR to ANNOTATE (Ryan Sullivan) [RHEL-85292] - objtool: Generic annotation infrastructure (Ryan Sullivan) [RHEL-85292] - objtool: Allow arch code to discover jump table size (Ryan Sullivan) [RHEL-85292] - s390/pci: Fix zpci_bus_is_isolated_vf() for non-VFs (Mete Durlu) [RHEL-88818] - Revert "objtool: Exclude __tracepoints data from ENDBR checks" (Anubhav Shelat) [RHEL-87959] - tpm: Mask TPM RC in tpm2_start_auth_session() (Herbert Xu) [RHEL-59554] - ibmvnic: Don't reference skb after sending to VIOS (Mamatha Inamdar) [RHEL-83362] {CVE-2025-21855} - net: ipv6: fix dst ref loop on input in seg6 lwt (CKI Backport Bot) [RHEL-84562] - net: ipv6: fix dst ref loops in rpl, seg6 and ioam6 lwtunnels (CKI Backport Bot) [RHEL-84562] - net: ipv6: fix dst refleaks in rpl, seg6 and ioam6 lwtunnels (CKI Backport Bot) [RHEL-84562] - net: ipv6: rpl_iptunnel: mitigate 2-realloc issue (CKI Backport Bot) [RHEL-84562] - net: ipv6: seg6_iptunnel: mitigate 2-realloc issue (CKI Backport Bot) [RHEL-84562] - net: ipv6: ioam6_iptunnel: mitigate 2-realloc issue (CKI Backport Bot) [RHEL-84562] - include: net: add static inline dst_dev_overhead() to dst.h (CKI Backport Bot) [RHEL-84562] - ASoC: SOF: stream-ipc: Check for cstream nullity in sof_ipc_msg_data() (CKI Backport Bot) [RHEL-83187] {CVE-2025-21847} - book3s64/radix : Align section vmemmap start address to PAGE_SIZE (Mamatha Inamdar) [RHEL-88954] - book3s64/radix: Fix compile errors when CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP=n (Mamatha Inamdar) [RHEL-88954] - cxl/core/regs: Refactor out functions to count regblocks of given type (John W. Linville) [RHEL-86519] - cxl/test: Update test code for event records to CXL spec rev 3.1 (John W. Linville) [RHEL-86519] - cxl/events: Update Memory Module Event Record to CXL spec rev 3.1 (John W. Linville) [RHEL-86519] - cxl/events: Update DRAM Event Record to CXL spec rev 3.1 (John W. Linville) [RHEL-86519] - cxl/events: Update General Media Event Record to CXL spec rev 3.1 (John W. Linville) [RHEL-86519] - cxl/events: Add Component Identifier formatting for CXL spec rev 3.1 (John W. Linville) [RHEL-86519] - cxl/events: Update Common Event Record to CXL spec rev 3.1 (John W. Linville) [RHEL-86519] - cxl/pci: Add CXL Type 1/2 support to cxl_dvsec_rr_decode() (John W. Linville) [RHEL-86519] - cxl/region: Fix region creation for greater than x2 switches (John W. Linville) [RHEL-86519] - cxl/pci: Fix potential bogus return value upon successful probing (John W. Linville) [RHEL-86519] - cxl/region: Refactor common create region code (John W. Linville) [RHEL-86519] - cxl/hdm: Use guard() in cxl_dpa_set_mode() (John W. Linville) [RHEL-86519] - cxl/pci: Delay event buffer allocation (John W. Linville) [RHEL-86519] - cxl/cdat: Use %%pra for dpa range outputs (John W. Linville) [RHEL-86519] - cxl: downgrade a warning message to debug level in cxl_probe_component_regs() (John W. Linville) [RHEL-86519] - redhat/configs: Disable CONFIG_COMPAT for s390x (Mete Durlu) [RHEL-24047] - nfsd: fix management of listener transports (Olga Kornievskaia) [RHEL-72469] - scsi: megaraid_sas: Driver version update to 07.734.00.00-rc1 (Chandrakanth Patil) [RHEL-80701] - scsi: megaraid_sas: Block zero-length ATA VPD inquiry (Chandrakanth Patil) [RHEL-80701] - scsi: megaraid_sas: Make most module parameters static (Chandrakanth Patil) [RHEL-80701] - scsi: megaraid_sas: Fix for a potential deadlock (Chandrakanth Patil) [RHEL-80701] - ice: stop storing XDP verdict within ice_rx_buf (Petr Oros) [RHEL-86859] - ice: gather page_count()'s of each frag right before XDP prog call (Petr Oros) [RHEL-86859] - ice: put Rx buffers after being done with current frame (Petr Oros) [RHEL-86859] - selftests/sgx: Fix an enclave built with extended instructions (Vladis Dronov) [RHEL-83126] - x86/sgx: Warn explicitly if X86_FEATURE_SGX_LC is not enabled (Vladis Dronov) [RHEL-86441] - x86/sgx: Fix size overflows in sgx_encl_create() (Vladis Dronov) [RHEL-86441] - x86/sgx: Use vmalloc_array() instead of vmalloc() (Vladis Dronov) [RHEL-86441] - redhat/kernel.spec: fix duplicate packaging of ynl headers (Jan Stancek) [RHEL-85548] - scsi: fnic: Remove unnecessary spinlock locking and unlocking (Karan Kumar) [RHEL-72902] - scsi: fnic: Replace fnic->lock_flags with local flags (Karan Kumar) [RHEL-72902] - scsi: fnic: Replace use of sizeof with standard usage (Karan Kumar) [RHEL-72902] - scsi: fnic: Fix indentation and remove unnecessary parenthesis (Karan Kumar) [RHEL-72902] - scsi: fnic: Remove unnecessary debug print (Karan Kumar) [RHEL-72902] - scsi: fnic: Propagate SCSI error code from fnic_scsi_drv_init() (Karan Kumar) [RHEL-72902] - scsi: fnic: Test for memory allocation failure and return error code (Karan Kumar) [RHEL-72902] - scsi: fnic: Return appropriate error code from failure of scsi drv init (Karan Kumar) [RHEL-72902] - scsi: fnic: Return appropriate error code for mem alloc failure (Karan Kumar) [RHEL-72902] - scsi: fnic: Remove always-true IS_FNIC_FCP_INITIATOR macro (Karan Kumar) [RHEL-72902] - scsi: fnic: Fix use of uninitialized value in debug message (Karan Kumar) [RHEL-72902] - scsi: fnic: Delete incorrect debugfs error handling (Karan Kumar) [RHEL-72902] - scsi: fnic: Remove unnecessary else to fix warning in FDLS FIP (Karan Kumar) [RHEL-72902] - scsi: fnic: Remove extern definition from .c files (Karan Kumar) [RHEL-72902] - scsi: fnic: Remove unnecessary else and unnecessary break in FDLS (Karan Kumar) [RHEL-72902] - scsi: fnic: Increment driver version (Karan Kumar) [RHEL-72902] - scsi: fnic: Add support to handle port channel RSCN (Karan Kumar) [RHEL-72902] - scsi: fnic: Code cleanup (Karan Kumar) [RHEL-72902] - scsi: fnic: Add stats and related functionality (Karan Kumar) [RHEL-72902] - scsi: fnic: Modify fnic interfaces to use FDLS (Karan Kumar) [RHEL-72902] - scsi: fnic: Modify IO path to use FDLS (Karan Kumar) [RHEL-72902] - scsi: fnic: Add functionality in fnic to support FDLS (Karan Kumar) [RHEL-72902] - scsi: fnic: Add and integrate support for FIP (Karan Kumar) [RHEL-72902] - scsi: fnic: Add and integrate support for FDMI (Karan Kumar) [RHEL-72902] - scsi: fnic: Add Cisco hardware model names (Karan Kumar) [RHEL-72902] - scsi: fnic: Add support for unsolicited requests and responses (Karan Kumar) [RHEL-72902] - scsi: fnic: Add support for target based solicited requests and responses (Karan Kumar) [RHEL-72902] - scsi: fnic: Add support for fabric based solicited requests and responses (Karan Kumar) [RHEL-72902] - scsi: fnic: Add headers and definitions for FDLS (Karan Kumar) [RHEL-72902] - scsi: fnic: Replace shost_printk() with dev_info()/dev_err() (Karan Kumar) [RHEL-72902] - redhat: Enable virtio-mem (and corresponding kdump code) on s390x (Thomas Huth) [RHEL-72992] - s390/kdump: virtio-mem kdump support (CONFIG_PROC_VMCORE_DEVICE_RAM) (Thomas Huth) [RHEL-72992] - virtio-mem: support CONFIG_PROC_VMCORE_DEVICE_RAM (Thomas Huth) [RHEL-72992] - virtio-mem: remember usable region size (Thomas Huth) [RHEL-72992] - virtio-mem: mark device ready before registering callbacks in kdump mode (Thomas Huth) [RHEL-72992] - fs/proc/vmcore: introduce PROC_VMCORE_DEVICE_RAM to detect device RAM ranges in 2nd kernel (Thomas Huth) [RHEL-72992] - fs/proc/vmcore: factor out freeing a list of vmcore ranges (Thomas Huth) [RHEL-72992] - fs/proc/vmcore: factor out allocating a vmcore range and adding it to a list (Thomas Huth) [RHEL-72992] - fs/proc/vmcore: move vmcore definitions out of kcore.h (Thomas Huth) [RHEL-72992] - fs/proc/vmcore: prefix all pr_* with "vmcore:" (Thomas Huth) [RHEL-72992] - procfs: fix a locking bug in a vmcore_add_device_dump() error path (Thomas Huth) [RHEL-72992] - fs/proc/vmcore: disallow vmcore modifications while the vmcore is open (Thomas Huth) [RHEL-72992] - fs/proc/vmcore: replace vmcoredd_mutex by vmcore_mutex (Thomas Huth) [RHEL-72992] - fs/proc/vmcore: convert vmcore_cb_lock into vmcore_mutex (Thomas Huth) [RHEL-72992] - s390/sparsemem: Provide memory_add_physaddr_to_nid() with CONFIG_NUMA (Thomas Huth) [RHEL-72992] - s390/sparsemem: Reduce section size to 128 MiB (Thomas Huth) [RHEL-72992] - lib/Kconfig.debug: Default STRICT_DEVMEM to "y" on s390 (Thomas Huth) [RHEL-72992] - virtio-mem: s390 support (Thomas Huth) [RHEL-72992] - s390/physmem_info: Query diag500(STORAGE LIMIT) to support QEMU/KVM memory devices (Thomas Huth) [RHEL-72992] - Documentation: s390-diag.rst: Document diag500(STORAGE LIMIT) subfunction (Thomas Huth) [RHEL-72992] - Documentation: s390-diag.rst: Make diag500 a generic KVM hypercall (Thomas Huth) [RHEL-72992] - PM: sleep: Avoid unnecessary checks in device_prepare_smart_suspend() (Mark Langsdorf) [RHEL-80696] - PM: runtime: Introduce pm_runtime_blocked() (Mark Langsdorf) [RHEL-80696] - PM: Block enabling of runtime PM during system suspend (Mark Langsdorf) [RHEL-80696] - PM: Rearrange documentation related to __pm_runtime_disable() (Mark Langsdorf) [RHEL-80696] - PM: sleep: Fix bit masking operation (Mark Langsdorf) [RHEL-80696] - PM: sleep: Use DPM_FLAG_SMART_SUSPEND conditionally (Mark Langsdorf) [RHEL-80696] - drivers: core: fix device leak in __fw_devlink_relax_cycles() (Mark Langsdorf) [RHEL-80696] - driver core: add a faux bus for use when a simple device/bus is needed (Mark Langsdorf) [RHEL-80696] - PM: sleep: core: Restrict power.set_active propagation (Mark Langsdorf) [RHEL-80696] - regmap-irq: Add missing kfree() (Mark Langsdorf) [RHEL-80696] - PM: sleep: core: Synchronize runtime PM status of parents and children (Mark Langsdorf) [RHEL-80696] - PM: sleep: wakeirq: Introduce device-managed variant of dev_pm_set_wake_irq() (Mark Langsdorf) [RHEL-80696] - devcoredump: Constify 'struct bin_attribute' (Mark Langsdorf) [RHEL-80696] - devcoredump: Define 'struct bin_attribute' through macro (Mark Langsdorf) [RHEL-80696] - PM: sleep: Allow configuring the DPM watchdog to warn earlier than panic (Mark Langsdorf) [RHEL-80696] - device property: Split property reading bool and presence test ops (Mark Langsdorf) [RHEL-80696] - devres: add devm_remove_action_nowarn() (Mark Langsdorf) [RHEL-80696] - drivers: core: remove device_link argument from class_compat_[create|remove]_link (Mark Langsdorf) [RHEL-80696] - driver core: Move two simple APIs for finding child device to header (Mark Langsdorf) [RHEL-80696] - driver core: Introduce device_iter_t for device iterating APIs (Mark Langsdorf) [RHEL-80696] - driver core: Correct API device_for_each_child_reverse_from() prototype (Mark Langsdorf) [RHEL-80696] - blk-cgroup: Fix class @block_class's subsystem refcount leakage (Mark Langsdorf) [RHEL-80696] - driver core: Rename declaration parameter name for API device_find_child() cluster (Mark Langsdorf) [RHEL-80696] - driver core: Correct parameter check for API device_for_each_child_reverse_from() (Mark Langsdorf) [RHEL-80696] - driver core: Move true expression out of if condition in 3 device finding APIs (Mark Langsdorf) [RHEL-80696] - regmap: sdw-mbq: Add support for further MBQ register sizes (Mark Langsdorf) [RHEL-80696] - driver core: class: Fix wild pointer dereferences in API class_dev_iter_next() (Mark Langsdorf) [RHEL-80696] - firmware_loader: Constify 'struct bin_attribute' (Mark Langsdorf) [RHEL-80696] - devcoredump: cleanup some comments (Mark Langsdorf) [RHEL-80696] - topology: Keep the cpumask unchanged when printing cpumap (Mark Langsdorf) [RHEL-80696] - driver core: Introduce an device matching API device_match_type() (Mark Langsdorf) [RHEL-80696] - driver core: Remove match_any() (Mark Langsdorf) [RHEL-80696] - driver core: Simplify API device_find_child_by_name() implementation (Mark Langsdorf) [RHEL-80696] - libnvdimm: Replace namespace_match() with device_find_child_by_name() (Mark Langsdorf) [RHEL-80696] - driver core: Constify API device_find_child() and adapt for various usages (Mark Langsdorf) [RHEL-80696] - net: qcom/emac: Find sgmii_ops by device_for_each_child() (Mark Langsdorf) [RHEL-80696] - bus: fsl-mc: Constify fsl_mc_device_match() (Mark Langsdorf) [RHEL-80696] - kernel/range: Const-ify range_contains parameters (Mark Langsdorf) [RHEL-80696] - drivers: base: test: Add ...find_device_by...(... NULL) tests (Mark Langsdorf) [RHEL-80696] - drivers: base: test: Enable device model tests with KUNIT_ALL_TESTS (Mark Langsdorf) [RHEL-80696] - drivers: base: Don't match devices with NULL of_node/fwnode/etc (Mark Langsdorf) [RHEL-80696] - regmap: regmap_multi_reg_read(): make register list const (Mark Langsdorf) [RHEL-80696] - PM: sleep: sysfs: don't include 'pm_wakeup.h' directly (Mark Langsdorf) [RHEL-80696] - PM: sleep: Update stale comment in device_resume() (Mark Langsdorf) [RHEL-80696] - regmap: cache: rbtree: use krealloc_array() to replace krealloc() (Mark Langsdorf) [RHEL-80696] - regmap: cache: mapple: use kmalloc_array() to replace kmalloc() (Mark Langsdorf) [RHEL-80696] - regmap: place foo / 8 and foo %% 8 closer to each other (Mark Langsdorf) [RHEL-80696] - regmap: Use BITS_TO_BYTES() (Mark Langsdorf) [RHEL-80696] - regmap: cache: Use BITS_TO_BYTES() (Mark Langsdorf) [RHEL-80696] - regmap: detach regmap from dev on regmap_exit (Mark Langsdorf) [RHEL-80696] - regmap: Use correct format specifier for logging range errors (Mark Langsdorf) [RHEL-80696] - firmware_loader: Fix possible resource leak in fw_log_firmware_info() (Mark Langsdorf) [RHEL-80696] - drivers: core: fw_devlink: Fix excess parameter description in docstring (Mark Langsdorf) [RHEL-80696] - driver core: class: Correct WARN() message in APIs class_(for_each|find)_device() (Mark Langsdorf) [RHEL-80696] - cacheinfo: Use of_property_present() for non-boolean properties (Mark Langsdorf) [RHEL-80696] - drivers: core: fw_devlink: Make the error message a bit more useful (Mark Langsdorf) [RHEL-80696] - driver core: fw_devlink: Stop trying to optimize cycle detection logic (Mark Langsdorf) [RHEL-80696] - driver core: constify devlink class (Mark Langsdorf) [RHEL-80696] - driver core: Put device attribute @wakeup_last_time_ms and its show() together (Mark Langsdorf) [RHEL-80696] - cacheinfo: Don't opencode per_cpu_cacheinfo() (Mark Langsdorf) [RHEL-80696] - driver core: auxiliary bus: Spelling s/pecific/specific/ (Mark Langsdorf) [RHEL-80696] - regmap: irq: Set lockdep class for hierarchical IRQ domains (Mark Langsdorf) [RHEL-80696] - regmap: maple: Provide lockdep (sub)class for maple tree's internal lock (Mark Langsdorf) [RHEL-80696] - regmap: kunit: Fix repeated test param (Mark Langsdorf) [RHEL-80696] - PM: QoS: Export dev_pm_qos_read_value (Mark Langsdorf) [RHEL-80696] - devres: Fix page faults when tracing devres from unloaded modules (Mark Langsdorf) [RHEL-80696] - drivers/base: Remove unused auxiliary_find_device (Mark Langsdorf) [RHEL-80696] - firmware_loader: Reorganize kerneldoc parameter names (Mark Langsdorf) [RHEL-80696] - PM: domains: Support required OPPs in dev_pm_domain_attach_list() (Mark Langsdorf) [RHEL-80696] - OPP: Rework _set_required_devs() to manage a single device per call (Mark Langsdorf) [RHEL-80696] - driver core: Add device probe log helper dev_warn_probe() (Mark Langsdorf) [RHEL-80696] - regmap: Specifically test writing 0 as a value to sparse caches (Mark Langsdorf) [RHEL-80696] - regmap-irq: Consistently use memset32() in regmap_irq_thread() (Mark Langsdorf) [RHEL-80696] - xfrm: replay: Fix the update of replay_esn->oseq_hi for GSO (Sabrina Dubroca) [RHEL-84543] - xfrm: state: fix out-of-bounds read during lookup (Sabrina Dubroca) [RHEL-84543] - xfrm: delete intermediate secpath entry in packet offload mode (Sabrina Dubroca) [RHEL-84543] - xfrm: Fix the usage of skb->sk (Sabrina Dubroca) [RHEL-84543] - xfrm: fix tunnel mode TX datapath in packet offload mode (Sabrina Dubroca) [RHEL-84543] - xfrm_output: Force software GSO only in tunnel mode (Sabrina Dubroca) [RHEL-84543] - xfrm: prevent high SEQ input in non-ESN mode (Sabrina Dubroca) [RHEL-84543] - redhat: find-debuginfo workaround is no longer needed on F42 (Jan Stancek) [RHEL-85401] - redhat/kernel.spec: use target versions of tools for debugedit and gdb-add-index (Jan Stancek) [RHEL-85401] - thermal: intel: int340x: Fix Panther Lake DLVR support (Steve Best) [RHEL-88233] - redhat/configs: Adjust CONFIG_TUNE for s390x (Mete Durlu) [RHEL-86680] - ASoC: soc-pcm: don't use soc_pcm_ret() on .prepare callback (CKI Backport Bot) [RHEL-82520] {CVE-2024-58077} - redhat: remove kernel-ipaclones-internal package (Joe Lawrence) [RHEL-86517] - keys: Fix UAF in key_put() (CKI Backport Bot) [RHEL-86852] {CVE-2025-21893} - efi/libstub: Bump up EFI_MMAP_NR_SLACK_SLOTS to 32 (Marcin Juszkiewicz) [RHEL-83074] - mm/kasan: Convert symbol namespace to string literal [cont.] (Julio Faracco) - redhat: Remove kernel-rt-kvm package (Juri Lelli) [RHEL-62687] - nfsd: clear acl_access/acl_default after releasing them (Olga Kornievskaia) [RHEL-81534] {CVE-2025-21796} - redhat/configs: Remove CONFIG_VDPA_USER unset config on RHEL10 (Cindy Lu) [RHEL-87716] - scripts/nsdeps: get 'make nsdeps' working again (José Expósito) [RHEL-85957] - doc: module: revert misconversions for MODULE_IMPORT_NS() (José Expósito) [RHEL-85957] - module: Convert default symbol namespace to string literal (José Expósito) [RHEL-85957] - scripts/kernel-doc: Get -export option working again (José Expósito) [RHEL-85957] - doc: module: Fix documented type of namespace (José Expósito) [RHEL-85957] - module: Convert symbol namespace to string literal (José Expósito) [RHEL-85957] - net: Fix null-ptr-deref by sock_lock_init_class_and_name() and rmmod. (Paolo Abeni) [RHEL-87453] - net/neighbor: add missing policy for NDTPA_QUEUE_LENBYTES (Paolo Abeni) [RHEL-87453] - netpoll: hold rcu read lock in __netpoll_send_skb() (Paolo Abeni) [RHEL-87453] - netmem: prevent TX of unreadable skbs (Paolo Abeni) [RHEL-87453] {CVE-2025-21954} - net: Clear old fragment checksum value in napi_reuse_skb (Paolo Abeni) [RHEL-87453] - ipvs: Always clear ipvs_property flag in skb_scrub_packet() (Paolo Abeni) [RHEL-87453] - net: set the minimum for net_hotdata.netdev_budget_usecs (Paolo Abeni) [RHEL-87453] - flow_dissector: Fix handling of mixed port and port-range keys (Paolo Abeni) [RHEL-87453] - neighbour: use RCU protection in __neigh_notify() (Paolo Abeni) [RHEL-87453] {CVE-2025-21763} - net: fib_rules: annotate data-races around rule->[io]ifindex (Paolo Abeni) [RHEL-87453] - flow_dissector: use RCU protection to fetch dev_net() (Paolo Abeni) [RHEL-87453] - net: let net.core.dev_weight always be non-zero (Paolo Abeni) [RHEL-87453] {CVE-2025-21806} - dev: Acquire netdev_rename_lock before restoring dev->name in dev_change_name(). (Paolo Abeni) [RHEL-87453] - ptr_ring: do not block hard interrupts in ptr_ring_resize_multiple() (Paolo Abeni) [RHEL-87453] {CVE-2024-57994} - nfsd: validate the nfsd_serv pointer before calling svc_wake_up (Olga Kornievskaia) [RHEL-86641] - Bluetooth: L2CAP: handle NULL sock pointer in l2cap_sock_alloc (Bastien Nocera) [RHEL-74484] {CVE-2024-58009} - Bluetooth: btnxpuart: Fix glitches seen in dual A2DP streaming (Bastien Nocera) [RHEL-74484] - Revert "Bluetooth: hci_core: Fix sleeping function called from invalid context" (Bastien Nocera) [RHEL-74484] - Bluetooth: SCO: fix sco_conn refcounting on sco_conn_ready (Bastien Nocera) [RHEL-74484] - Bluetooth: btnxpuart: Fix driver sending truncated data (Bastien Nocera) [RHEL-74484] - Bluetooth: MGMT: Fix Add Device to responding before completing (Bastien Nocera) [RHEL-74484] - Bluetooth: hci_sync: Fix not setting Random Address when required (Bastien Nocera) [RHEL-74484] - Bluetooth: iso: Fix circular lock in iso_conn_big_sync (Bastien Nocera) [RHEL-74484] {CVE-2024-54191} - Bluetooth: iso: Fix circular lock in iso_listen_bis (Bastien Nocera) [RHEL-74484] {CVE-2024-54460} - Bluetooth: SCO: Add support for 16 bits transparent voice setting (Bastien Nocera) [RHEL-74484] - Bluetooth: iso: Fix recursive locking warning (Bastien Nocera) [RHEL-74484] - Bluetooth: iso: Always release hdev at the end of iso_listen_bis (Bastien Nocera) [RHEL-74484] {CVE-2024-57879} - Bluetooth: hci_event: Fix using rcu_read_(un)lock while iterating (Bastien Nocera) [RHEL-74484] {CVE-2024-56654} - Bluetooth: Improve setsockopt() handling of malformed user input (Bastien Nocera) [RHEL-74484] - Bluetooth: SCO: remove the redundant sco_conn_put (Bastien Nocera) [RHEL-74484] - Bluetooth: MGMT: Fix possible deadlocks (Bastien Nocera) [RHEL-74484] {CVE-2024-53207} - Bluetooth: MGMT: Add initial implementation of MGMT_OP_HCI_CMD_SYNC (Bastien Nocera) [RHEL-74484] - Bluetooth: hci_bcm: Use the devm_clk_get_optional() helper (Bastien Nocera) [RHEL-74484] - Bluetooth: ISO: Send BIG Create Sync via hci_sync (Bastien Nocera) [RHEL-74484] - Bluetooth: hci_conn: Remove alloc from critical section (Bastien Nocera) [RHEL-74484] - Bluetooth: ISO: Use kref to track lifetime of iso_conn (Bastien Nocera) [RHEL-74484] - Bluetooth: SCO: Use kref to track lifetime of sco_conn (Bastien Nocera) [RHEL-74484] - Bluetooth: HCI: Add IPC(11) bus type (Bastien Nocera) [RHEL-74484] - Bluetooth: btusb: Add 3 HWIDs for MT7925 (Bastien Nocera) [RHEL-74484] - Bluetooth: btusb: Add new VID/PID 0489/e124 for MT7925 (Bastien Nocera) [RHEL-74484] - Bluetooth: ISO: Update hci_conn_hash_lookup_big for Broadcast slave (Bastien Nocera) [RHEL-74484] - Bluetooth: ISO: Do not emit LE BIG Create Sync if previous is pending (Bastien Nocera) [RHEL-74484] - Bluetooth: ISO: Fix matching parent socket for BIS slave (Bastien Nocera) [RHEL-74484] - Bluetooth: ISO: Do not emit LE PA Create Sync if previous is pending (Bastien Nocera) [RHEL-74484] - Bluetooth: btrtl: Decrease HCI_OP_RESET timeout from 10 s to 2 s (Bastien Nocera) [RHEL-74484] - Bluetooth: btbcm: fix missing of_node_put() in btbcm_get_board_name() (Bastien Nocera) [RHEL-74484] - Bluetooth: btusb: Add new VID/PID 0489/e111 for MT7925 (Bastien Nocera) [RHEL-74484] - Bluetooth: Set quirks for ATS2851 (Bastien Nocera) [RHEL-74484] - Bluetooth: Support new quirks for ATS2851 (Bastien Nocera) [RHEL-74484] - Bluetooth: Add new quirks for ATS2851 (Bastien Nocera) [RHEL-74484] - Bluetooth: Fix type of len in rfcomm_sock_getsockopt{,_old}() (Bastien Nocera) [RHEL-74484] - Bluetooth: hci_qca: use devm_clk_get_optional_enabled_with_rate() (Bastien Nocera) [RHEL-74484] - Bluetooth: btmtksdio: Lookup device node only as fallback (Bastien Nocera) [RHEL-74484] - Bluetooth: hci_core: Fix not checking skb length on hci_scodata_packet (Bastien Nocera) [RHEL-74484] - Bluetooth: btnxpuart: Add GPIO support to power save feature (Bastien Nocera) [RHEL-74484] - Bluetooth: hci_conn: Use disable_delayed_work_sync (Bastien Nocera) [RHEL-74484] {CVE-2024-56591} - Bluetooth: btusb: Add USB HW IDs for MT7920/MT7925 (Bastien Nocera) [RHEL-74484] - Bluetooth: btusb: Add RTL8852BE device 0489:e123 to device tables (Bastien Nocera) [RHEL-74484] - Bluetooth: hci_conn: Reduce hci_conn_drop() calls in two functions (Bastien Nocera) [RHEL-74484] - Bluetooth: btnxpuart: Rename IW615 to IW610 (Bastien Nocera) [RHEL-74484] - Bluetooth: btnxpuart: Drop _v0 suffix from FW names (Bastien Nocera) [RHEL-74484] - Bluetooth: btusb: Add one more ID 0x13d3:0x3623 for Qualcomm WCN785x (Bastien Nocera) [RHEL-74484] - Bluetooth: btusb: Add one more ID 0x0489:0xe0f3 for Qualcomm WCN785x (Bastien Nocera) [RHEL-74484] - Bluetooth: btusb: add Foxconn 0xe0fc for Qualcomm WCN785x (Bastien Nocera) [RHEL-74484] - Bluetooth: add HAS_IOPORT dependencies (Bastien Nocera) [RHEL-74484] - Bluetooth: RFCOMM: avoid leaving dangling sk pointer in rfcomm_sock_alloc() (Bastien Nocera) [RHEL-74484] {CVE-2024-56604} - Bluetooth: L2CAP: do not leave dangling sk pointer on error in l2cap_sock_create() (Bastien Nocera) [RHEL-74484] {CVE-2024-56605} - igb: Fix potential invalid memory access in igb_init_module() (Corinna Vinschen) [RHEL-74378] {CVE-2024-52332} - RDMA/bnxt_re: Remove unusable nq variable (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix budget handling of notification queue (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Support perf management counters (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Avoid clearing VLAN_ID mask in modify qp path (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix reporting maximum SRQs on P7 chips (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add missing paranthesis in map_qp_id_to_tbl_indx (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix allocation of QP table (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix the page details for the srq created by kernel consumers (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix the statistics for Gen P7 VF (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix issue in the unload path (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add sanity checks on rdev validity (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix an issue in bnxt_re_async_notifier (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix the condition check while programming congestion control (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix buffer overflow in debugfs code (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Congestion control settings using debugfs hook (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Allocate dev_attr information dynamically (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Pass the context for ulp_irq_stop (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add support to handle DCB_CONFIG_CHANGE event (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Query firmware defaults of CC params during probe (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add Async event handling support (Sreekanth Reddy) [RHEL-76566] - bnxt_en: Add ULP call to notify async events (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix to drop reference to the mmap entry in case of error (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Remove deliver net device event (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix MSN table size for variable wqe mode (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add send queue size check for variable wqe (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix to export port num to ib_query_qp (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix setting mandatory attributes for modify_qp (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Remove unnecessary header file inclusion (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Eliminate need for some forward declarations (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Optimize error handling in bnxt_re_probe (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Remove unnecessary goto in bnxt_re_netdev_event (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Remove extra new line in bnxt_re_netdev_event (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Don't fail destroy QP and cleanup debugfs earlier (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Use the default mode of congestion control (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Support different traffic class (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Cache MSIx info to a local structure (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Refurbish CQ to NQ hash calculation (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Refactor NQ allocation (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fail probe early when not enough MSI-x vectors are reserved (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add set_func_resources support for P5/P7 adapters (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Enhance RoCE SRIOV resource configuration design (Sreekanth Reddy) [RHEL-76566] - bnxt_en: Add support for RoCE sriov configuration (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add debugfs hook in the driver (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Support raw data query for each resources (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add support for querying HW contexts (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Support driver specific data collection using rdma tool (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Fix access flags for MR and QP modify (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add support for modify_device hook (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add support for CQ rx coalescing (Sreekanth Reddy) [RHEL-76566] - RDMA/bnxt_re: Add support for optimized modify QP (Sreekanth Reddy) [RHEL-76566] - tools headers: Update the socket headers with the kernel sources (Paolo Abeni) [RHEL-87244] - net: ipv6: fix TCP GSO segmentation with NAT (Paolo Abeni) [RHEL-87244] - net-timestamp: support TCP GSO case for a few missing flags (Paolo Abeni) [RHEL-87244] - tcp: Defer ts_recent changes until req is owned (Paolo Abeni) [RHEL-87244] - tcp: devmem: don't write truncated dmabuf CMSGs to userspace (Paolo Abeni) [RHEL-87244] - tcp: adjust rcvq_space after updating scaling ratio (Paolo Abeni) [RHEL-87244] - tcp: correct handling of extreme memory squeeze (Paolo Abeni) [RHEL-87244] {CVE-2025-21710} - tcp_cubic: fix incorrect HyStart round start detection (Paolo Abeni) [RHEL-87244] - tcp: Annotate data-race around sk->sk_mark in tcp_v4_send_reset (Paolo Abeni) [RHEL-87244] - udp: Fix memory accounting leak. (Paolo Abeni) [RHEL-87213] - udp: Fix multiple wraparounds of sk->sk_rmem_alloc. (Paolo Abeni) [RHEL-87213] - udp: gso: do not drop small packets when PMTU reduces (Paolo Abeni) [RHEL-87213] - udp: Deal with race between UDP socket address change and rehash (Paolo Abeni) [RHEL-87213] {CVE-2024-57974} - io_uring/sqpoll: zero sqd->thread on tctx errors (CKI Backport Bot) [RHEL-74652] {CVE-2025-21633} - selftests: netfilter: add test case for recent mismatch bug (CKI Backport Bot) [RHEL-87160] - nft_set_pipapo: fix incorrect avx2 match of 5th field octet (CKI Backport Bot) [RHEL-87160] - sctp: detect and prevent references to a freed transport in sendmsg (Xin Long) [RHEL-84557] - sctp: add mutual exclusion in proc_sctp_do_udp_port() (Xin Long) [RHEL-84557] - sctp: Remove unused payload from sctp_idatahdr (Xin Long) [RHEL-84557] - sctp: Fix undefined behavior in left shift operation (Xin Long) [RHEL-84557] - sctp: Remove commented out code (Xin Long) [RHEL-84557] - sctp: sysctl: plpmtud_probe_interval: avoid using current->nsproxy (Xin Long) [RHEL-84557] - sctp: sysctl: udp_port: avoid using current->nsproxy (Xin Long) [RHEL-84557] - sctp: sysctl: auth_enable: avoid using current->nsproxy (Xin Long) [RHEL-84557] - sctp: sysctl: rto_min/max: avoid using current->nsproxy (Xin Long) [RHEL-84557] - sctp: sysctl: cookie_hmac_alg: avoid using current->nsproxy (Xin Long) [RHEL-84557] - sctp: Prepare sctp_v4_get_dst() to dscp_t conversion. (Xin Long) [RHEL-84557] - sctp: Avoid enqueuing addr events redundantly (Xin Long) [RHEL-84557] - ice: ensure periodic output start time is in the future (Petr Oros) [RHEL-86857] - ice: fix PHY Clock Recovery availability check (Petr Oros) [RHEL-86857] - ice: Drop auxbus use for PTP to finalize ice_adapter move (Petr Oros) [RHEL-86857] - ice: Use ice_adapter for PTP shared data instead of auxdev (Petr Oros) [RHEL-86857] - ice: Initial support for E825C hardware in ice_adapter (Petr Oros) [RHEL-86857] - ice: Add ice_get_ctrl_ptp() wrapper to simplify the code (Petr Oros) [RHEL-86857] - ice: Introduce ice_get_phy_model() wrapper (Petr Oros) [RHEL-86857] - ice: Enable 1PPS out from CGU for E825C products (Petr Oros) [RHEL-86857] - ice: Read SDP section from NVM for pin definitions (Petr Oros) [RHEL-86857] - ice: Disable shared pin on E810 on setfunc (Petr Oros) [RHEL-86857] - ice: Cache perout/extts requests and check flags (Petr Oros) [RHEL-86857] - ice: Align E810T GPIO to other products (Petr Oros) [RHEL-86857] - ice: Add SDPs support for E825C (Petr Oros) [RHEL-86857] - ice: Implement ice_ptp_pin_desc (Petr Oros) [RHEL-86857] - ata: libata-sff: Ensure that we cannot write outside the allocated buffer (CKI Backport Bot) [RHEL-81460] {CVE-2025-21738} - blackhole_dev: convert self-test to KUnit (Hangbin Liu) [RHEL-81699] - treewide: Switch/rename to timer_delete[_sync]() (Kamal Heib) [RHEL-86552] - RDMA/cxgb4: Notify rdma stack for IB_EVENT_QP_LAST_WQE_REACHED event (Kamal Heib) [RHEL-86552] - rdma/cxgb4: Prevent potential integer overflow on 32bit (Kamal Heib) [RHEL-86552] - ipc/util.c: complete the kernel-doc function descriptions (Rafael Aquini) [RHEL-86254] - ipc: fix memleak if msg_init_ns failed in create_ipc_ns (Rafael Aquini) [RHEL-86254] - ipc/msg: replace one-element array with flexible array member (Rafael Aquini) [RHEL-86254] - do_mq_notify(): saner skb freeing on failures (Rafael Aquini) [RHEL-86254] - switch netlink_getsockbyfilp() to taking descriptor (Rafael Aquini) [RHEL-86254] - scsi: core: Clear driver private data when retrying request (Ewan D. Milne) [RHEL-86157] - scsi: core: Do not retry I/Os during depopulation (Ewan D. Milne) [RHEL-86157] - scsi: core: Use GFP_NOIO to avoid circular locking dependency (Ewan D. Milne) [RHEL-86157] - scsi: core: Add passthrough tests for success and no failure definitions (Ewan D. Milne) [RHEL-86157] - scsi: scsi_debug: Constify sdebug_driver_template (Ewan D. Milne) [RHEL-86157] - scsi: transport: sas: spi: Fix kernel-doc for exported functions (Ewan D. Milne) [RHEL-86157] - scsi: scsi_scan: Add kernel-doc for exported function (Ewan D. Milne) [RHEL-86157] - scsi: scsi_lib: Add kernel-doc for exported functions (Ewan D. Milne) [RHEL-86157] - scsi: scsi_ioctl: Add kernel-doc for exported functions (Ewan D. Milne) [RHEL-86157] - scsi: scsi_error: Add kernel-doc for exported functions (Ewan D. Milne) [RHEL-86157] - scsi: iscsi: Fix redundant response for ISCSI_UEVENT_GET_HOST_STATS request (Ewan D. Milne) [RHEL-86157] - scsi: scsi_debug: Skip host/bus reset settle delay (Ewan D. Milne) [RHEL-86157] - scsi: core: Constify 'struct bin_attribute' (Ewan D. Milne) [RHEL-86157] - scsi: iscsi: Remove unused iscsi_create_session() (Ewan D. Milne) [RHEL-86157] - scsi: Eliminate scsi_register() and scsi_unregister() usage & docs (Ewan D. Milne) [RHEL-86157] - scsi: docs: Remove init_this_scsi_driver() (Ewan D. Milne) [RHEL-86157] - scsi: core: Remove the .slave_configure() method (Ewan D. Milne) [RHEL-86157] - scsi: Convert SCSI drivers to .sdev_configure() (Ewan D. Milne) [RHEL-86157] - scsi: Rename .device_configure() into .sdev_configure() (Ewan D. Milne) [RHEL-86157] - scsi: Rename .slave_alloc() and .slave_destroy() (Ewan D. Milne) [RHEL-86157] - scsi: scsi_debug: Fix hrtimer support for ndelay (Ewan D. Milne) [RHEL-86157] - scsi: bsg: Replace zero-length array with flexible array member (Ewan D. Milne) [RHEL-86157] - scsi: sg: Enable runtime power management (Ewan D. Milne) [RHEL-86157] - scsi: Switch back to struct platform_driver::remove() (Ewan D. Milne) [RHEL-86157] - scsi: libfcoe: Include instead of (Ewan D. Milne) [RHEL-86157] - crypto: ccp - Fix uAPI definitions of PSP errors (Vladis Dronov) [RHEL-85132] - crypto: ccp - Add support for PCI device 0x1134 (Vladis Dronov) [RHEL-85132] - crypto: ccp - Fix check for the primary ASP device (Vladis Dronov) [RHEL-85132] - crypto: ccp: Add external API interface for PSP module initialization (Vladis Dronov) [RHEL-85132] - crypto: ccp - Use scoped guard for mutex (Vladis Dronov) [RHEL-85132] - crypto: drivers - Switch back to struct platform_driver::remove() (Vladis Dronov) [RHEL-85132] - vsock/virtio: discard packets if the transport changes (CKI Backport Bot) [RHEL-77231] {CVE-2025-21669} - sched/deadline: Use online cpus for validating runtime (Phil Auld) [RHEL-85609] - sched/rt: Update limit of sched_rt sysctl in documentation (Phil Auld) [RHEL-85609] - rtla/tests: Test setting default options (Tomas Glozar) [RHEL-73865] - rtla/tests: Reset osnoise options before check (Tomas Glozar) [RHEL-73865] - rtla: Always set all tracer options (Tomas Glozar) [RHEL-73865] - rtla/osnoise: Set OSNOISE_WORKLOAD to true (Tomas Glozar) [RHEL-73865] - rtla: Unify apply_config between top and hist (Tomas Glozar) [RHEL-73865] - rtla/osnoise: Unify params struct (Tomas Glozar) [RHEL-73865] - redhat/kernel.spec.template: Build rtla with BPF sample collection (Tomas Glozar) [RHEL-77357] - tools/build: Use SYSTEM_BPFTOOL for system bpftool (Tomas Glozar) [RHEL-77357] - rtla/timerlat: Test BPF mode (Tomas Glozar) [RHEL-77357] - rtla/timerlat_top: Use BPF to collect samples (Tomas Glozar) [RHEL-77357] - rtla/timerlat_top: Move divisor to update (Tomas Glozar) [RHEL-77357] - rtla/timerlat_hist: Use BPF to collect samples (Tomas Glozar) [RHEL-77357] - rtla/timerlat: Add BPF skeleton to collect samples (Tomas Glozar) [RHEL-77357] - rtla: Add optional dependency on BPF tooling (Tomas Glozar) [RHEL-77357] - tools/build: Add bpftool-skeletons feature test (Tomas Glozar) [RHEL-77357] - rtla/timerlat: Unify params struct (Tomas Glozar) [RHEL-77357] - trace/osnoise: Add trace events for samples (Tomas Glozar) [RHEL-77357] - tools/rtla: Add basic test suite (Tomas Glozar) [RHEL-77357] - mm: page_owner: use new iteration API (Luiz Capitulino) [RHEL-68306] - mm: page_table_check: use new iteration API (Luiz Capitulino) [RHEL-68306] - mm: page_ext: add an iteration API for page extensions (Luiz Capitulino) [RHEL-68306] - cgroup: Remove steal time from usage_usec (Waiman Long) [RHEL-80669] - nfsd: Set technology preview if inter SSC offload is enabled (Benjamin Coddington) [RHEL-79657] - tools/rv: Keep user LDFLAGS in build (Tomas Glozar) [RHEL-71546] - tunnels: Accept PACKET_HOST in skb_tunnel_check_pmtu(). (Guillaume Nault) [RHEL-57735] - pfifo_tail_enqueue: Drop new packet when sch->limit == 0 (CKI Backport Bot) [RHEL-80057] {CVE-2025-21702} - selftests: livepatch: handle PRINTK_CALLER in check_result() (Denis Aleksandrov) [RHEL-85304] - livepatch: convert timeouts to secs_to_jiffies() (Denis Aleksandrov) [RHEL-85304] - selftests: livepatch: add test cases of stack_order sysfs interface (Denis Aleksandrov) [RHEL-85304] - livepatch: Add stack_order sysfs attribute (Denis Aleksandrov) [RHEL-85304] - selftests/livepatch: Replace hardcoded module name with variable in test-callbacks.sh (Denis Aleksandrov) [RHEL-85304] - net: gso: fix ownership in __udp_gso_segment (Antoine Tenart) [RHEL-82260] {CVE-2025-21926} - redhat: enable CONFIG_WERROR=y (Jan Stancek) [RHEL-85334] - redhat: don't enforce WERROR for 3rd-party OOT kmods (Jan Stancek) [RHEL-85334] - redhat: make ENABLE_WERROR enable also KVM_WERROR (Jan Stancek) [RHEL-85334] - fortify: Hide run-time copy size from value range tracking (Jan Stancek) [RHEL-85334] - resolve_btfids: Fix compiler warnings (Jan Stancek) [RHEL-85334] - platform/x86: intel: Use *-y instead of *-objs in Makefile (Steve Best) [RHEL-45086] - platform/x86/intel/ifs: Update documentation with image download path (Steve Best) [RHEL-45086] - platform/x86/intel/ifs: Add Clearwater Forest to CPU support list (Steve Best) [RHEL-45086] - s390/diag: Add memory topology information via diag310 (Mete Durlu) [RHEL-72681] - i3c: dw: Fix use-after-free in dw_i3c_master driver due to race condition (CKI Backport Bot) [RHEL-81452] {CVE-2024-57984} - x86/cpu: Add CPU type to struct cpuinfo_topology (Steve Best) [RHEL-64636] - x86/amd: Use heterogeneous core topology for identifying boost numerator (Steve Best) [RHEL-64636] - PCI/ACS: Fix 'pci=config_acs=' parameter (Myron Stowe) [RHEL-72899] - tools/power/x86/intel-speed-select: v1.22 release (Steve Best) [RHEL-74190] - tools/power/x86/intel-speed-select: Prefix header search path with sysroot (Steve Best) [RHEL-74190] - tools/power/x86/intel-speed-select: Die ID for IO dies (Steve Best) [RHEL-74190] - tools/power/x86/intel-speed-select: Fix the condition to check multi die system (Steve Best) [RHEL-74190] - tools/power/x86/intel-speed-select: Prevent increasing MAX_DIE_PER_PACKAGE (Steve Best) [RHEL-74190] - platform/x86/intel: power-domains: Add Clearwater Forest support (Steve Best) [RHEL-74190] - platform/x86: ISST: Correct command storage data length (Steve Best) [RHEL-74190] - s390/cio: Do not unregister the subchannel based on DNV (Mete Durlu) [RHEL-87158] - PCI: Use downstream bridges for distributing resources (Myron Stowe) [RHEL-73398] - ipmi: ssif_bmc: Fix new request loss when bmc ready for a response (Tony Camuso) [RHEL-82110] - ipmi: make ipmi_destroy_user() return void (Tony Camuso) [RHEL-82110] - char:ipmi: Fix a not-used variable on a non-ACPI system (Tony Camuso) [RHEL-82110] - Get rid of 'remove_new' relic from platform driver struct (Tony Camuso) [RHEL-82110] - char:ipmi: Fix the wrong format specifier (Tony Camuso) [RHEL-82110] - ipmi: ipmb: Add check devm_kasprintf() returned value (Tony Camuso) [RHEL-82110] - selftests/mm: fix guard-pages build (Luiz Capitulino) [RHEL-78135] - selftests/mm: set allocated memory to non-zero content in cow test (Luiz Capitulino) [RHEL-78135] - selftest: hugetlb_dio: fix test naming (Luiz Capitulino) [RHEL-78135] - selftests/mm: hugetlb_fault_after_madv: improve test output (Luiz Capitulino) [RHEL-78135] - selftests/mm: hugetlb_fault_after_madv: use default hugetlb page size (Luiz Capitulino) [RHEL-78135] - selftests/mm: Fix unused function warning for aarch64_write_signal_pkey() (Luiz Capitulino) [RHEL-78135] - selftests/mm: Define PKEY_UNRESTRICTED for pkey_sighandler_tests (Luiz Capitulino) [RHEL-78135] - mm/migrate_device: don't add folio to be freed to LRU in migrate_device_finalize() (Luiz Capitulino) [RHEL-78135 RHEL-83252] {CVE-2025-21861} - cachestat: fix page cache statistics permission checking (Luiz Capitulino) [RHEL-78135 RHEL-78991] {CVE-2025-21691} - arm64/mm: Drop setting PTE_TYPE_PAGE in pte_mkcont() (Luiz Capitulino) [RHEL-78135] - powerpc/code-patching: Fix KASAN hit by not flagging text patching area as VM_ALLOC (Luiz Capitulino) [RHEL-78135] {CVE-2025-21866} - powerpc/code-patching: Disable KASAN report during patching via temporary mm (Luiz Capitulino) [RHEL-78135] {CVE-2025-21869} - x86/microcode/AMD: Flush patch buffer mapping after application (Luiz Capitulino) [RHEL-78135] - mm/codetag: clear tags before swap (Luiz Capitulino) [RHEL-78135] - kasan: don't call find_vm_area() in a PREEMPT_RT kernel (Luiz Capitulino) [RHEL-78135] - mm/zswap: fix inconsistency when zswap_store_page() fails (Luiz Capitulino) [RHEL-78135] {CVE-2025-21860} - mm: zswap: use ATOMIC_LONG_INIT to initialize zswap_stored_pages (Luiz Capitulino) [RHEL-78135] - alloc_tag: fix set_codetag_empty() when !CONFIG_MEM_ALLOC_PROFILING_DEBUG (Luiz Capitulino) [RHEL-78135] - alloc_tag: fix module allocation tags populated area calculation (Luiz Capitulino) [RHEL-78135] - x86: Disable EXECMEM_ROX support (Luiz Capitulino) [RHEL-78135] - module: fix writing of livepatch relocations in ROX text (Luiz Capitulino) [RHEL-78135] - arm: pgtable: fix NULL pointer dereference issue (Luiz Capitulino) [RHEL-78135] - mm: page_frag: fix a compile error when kernel is not compiled (Luiz Capitulino) [RHEL-78135] - selftests/mm: virtual_address_range: avoid reading from VM_IO mappings (Luiz Capitulino) [RHEL-78135] - selftests/mm: vm_util: split up /proc/self/smaps parsing (Luiz Capitulino) [RHEL-78135] - selftests/mm: virtual_address_range: unmap chunks after validation (Luiz Capitulino) [RHEL-78135] - selftests/mm: virtual_address_range: mmap() without PROT_WRITE (Luiz Capitulino) [RHEL-78135] - selftests/mm: skip virtual_address_range tests on riscv (Luiz Capitulino) [RHEL-78135] - selftest/mm: fix typo in virtual_address_range (Luiz Capitulino) [RHEL-78135] - x86/vdso: Add missing brackets in switch case (Luiz Capitulino) [RHEL-78135] - vdso: Change PAGE_MASK to signed on all 32-bit architectures (Luiz Capitulino) [RHEL-78135] - arm64: mte: set VM_MTE_ALLOWED for hugetlbfs at correct place (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Fix missing printf() argument in gcs/gcs-stress.c (Luiz Capitulino) [RHEL-78135] - arm64: ptrace: fix partial SETREGSET for NT_ARM_GCS (Luiz Capitulino) [RHEL-78135] - arm64: ptrace: fix partial SETREGSET for NT_ARM_POE (Luiz Capitulino) [RHEL-78135] {CVE-2024-57877} - arm64: ptrace: fix partial SETREGSET for NT_ARM_FPMR (Luiz Capitulino) [RHEL-78135] {CVE-2024-57878} - arm64: ptrace: fix partial SETREGSET for NT_ARM_TAGGED_ADDR_CTRL (Luiz Capitulino) [RHEL-78135] {CVE-2024-57874} - arm64: signal: Ensure signal delivery failure is recoverable (Luiz Capitulino) [RHEL-78135] - arm64/gcs: Fix documentation for HWCAP (Luiz Capitulino) [RHEL-78135] - arm64/gcs: Fix outdated ptrace documentation (Luiz Capitulino) [RHEL-78135] - s390/kvm: Mask extra bits from program interrupt code (Luiz Capitulino) [RHEL-78135] - s390/kvm: Initialize uninitialized flags variable (Luiz Capitulino) [RHEL-78135] - mm: ksm: align cmp_and_merge_page() to v6.13 (Luiz Capitulino) [RHEL-78135] - mm: zswap: move allocations during CPU init outside the lock (Luiz Capitulino) [RHEL-78135] - mm: khugepaged: fix call hpage_collapse_scan_file() for anonymous vma (Luiz Capitulino) [RHEL-78135] - mm: page_alloc: fix missed updates of lowmem_reserve in adjust_managed_page_count (Luiz Capitulino) [RHEL-78135] - mm: fix assertion in folio_end_read() (Luiz Capitulino) [RHEL-78135] - vmstat: disable vmstat_work on vmstat_cpu_down_prep() (Luiz Capitulino) [RHEL-78135] - mm: clear uffd-wp PTE/PMD state on mremap() (Luiz Capitulino) [RHEL-78135 RHEL-80531] {CVE-2025-21696} - mm: zswap: properly synchronize freeing resources during CPU hotunplug (Luiz Capitulino) [RHEL-78135 RHEL-78681] {CVE-2025-21693} - Revert "mm: zswap: fix race between [de]compression and CPU hotunplug" (Luiz Capitulino) [RHEL-78135] - mm: fix div by zero in bdi_ratio_from_pages (Luiz Capitulino) [RHEL-78135] - x86/execmem: fix ROX cache usage in Xen PV guests (Luiz Capitulino) [RHEL-78135] - filemap: avoid truncating 64-bit offset to 32 bits (Luiz Capitulino) [RHEL-78135] {CVE-2025-21665} - mm/mempolicy: count MPOL_WEIGHTED_INTERLEAVE to "interleave_hit" (Luiz Capitulino) [RHEL-78135] - mm/kmemleak: fix percpu memory leak detection failure (Luiz Capitulino) [RHEL-78135] - Revert "vmstat: disable vmstat_work on vmstat_cpu_down_prep()" (Luiz Capitulino) [RHEL-78135] - mm/util: make memdup_user_nul() similar to memdup_user() (Luiz Capitulino) [RHEL-78135] - mm, madvise: fix potential workingset node list_lru leaks (Luiz Capitulino) [RHEL-78135] - mm/damon/core: fix ignored quota goals and filters of newly committed schemes (Luiz Capitulino) [RHEL-78135] - mm/damon/core: fix new damon_target objects leaks on damon_commit_targets() (Luiz Capitulino) [RHEL-78135] {CVE-2024-57886} - mm/list_lru: fix false warning of negative counter (Luiz Capitulino) [RHEL-78135] - vmstat: disable vmstat_work on vmstat_cpu_down_prep() (Luiz Capitulino) [RHEL-78135] - mm: shmem: fix the update of 'shmem_falloc->nr_unswapped' (Luiz Capitulino) [RHEL-78135] - mm: shmem: fix incorrect index alignment for within_size policy (Luiz Capitulino) [RHEL-78135] - mm: zswap: fix race between [de]compression and CPU hotunplug (Luiz Capitulino) [RHEL-78135] - mm: hugetlb: independent PMD page table shared count (Luiz Capitulino) [RHEL-78135] {CVE-2024-57883} - mm/readahead: fix large folio support in async readahead (Luiz Capitulino) [RHEL-78135] - mm: don't try THP alignment for FS without get_unmapped_area (Luiz Capitulino) [RHEL-78135] - mm: huge_memory: handle strsep not finding delimiter (Luiz Capitulino) [RHEL-78135] - mm/vmstat: fix a W=1 clang compiler warning (Luiz Capitulino) [RHEL-78135] - mm: convert partially_mapped set/clear operations to be atomic (Luiz Capitulino) [RHEL-78135] - vmalloc: fix accounting with i915 (Luiz Capitulino) [RHEL-78135] - mm/page_alloc: don't call pfn_to_page() on possibly non-existent PFN in split_large_buddy() (Luiz Capitulino) [RHEL-78135] {CVE-2024-57881} - mm: use clear_user_(high)page() for arch with special user folio handling (Luiz Capitulino) [RHEL-78135] - mm: introduce cpu_icache_is_aliasing() across all architectures (Luiz Capitulino) [RHEL-78135] - mm: add RCU annotation to pte_offset_map(_lock) (Luiz Capitulino) [RHEL-78135] - mm: correctly reference merged VMA (Luiz Capitulino) [RHEL-78135] - mm: use aligned address in copy_user_gigantic_page() (Luiz Capitulino) [RHEL-78135] {CVE-2024-51729} - mm: use aligned address in clear_gigantic_page() (Luiz Capitulino) [RHEL-78135] {CVE-2024-52319} - mm: shmem: fix ShmemHugePages at swapout (Luiz Capitulino) [RHEL-78135] - memcg: slub: fix SUnreclaim for post charged objects (Luiz Capitulino) [RHEL-78135] - x86/mm: Add _PAGE_NOPTISHADOW bit to avoid updating userspace page tables (Luiz Capitulino) [RHEL-78135] - mm/filemap: don't call folio_test_locked() without a reference in next_uptodate_folio() (Luiz Capitulino) [RHEL-78135] - mm: correct typo in MMAP_STATE() macro (Luiz Capitulino) [RHEL-78135] - mm: respect mmap hint address when aligning for THP (Luiz Capitulino) [RHEL-78135] - mm: memcg: declare do_memsw_account inline (Luiz Capitulino) [RHEL-78135] - mm/codetag: swap tags when migrate pages (Luiz Capitulino) [RHEL-78135] - mm: open-code page_folio() in dump_page() (Luiz Capitulino) [RHEL-78135] - mm: open-code PageTail in folio_flags() and const_folio_flags() (Luiz Capitulino) [RHEL-78135] - mm: fix vrealloc()'s KASAN poisoning logic (Luiz Capitulino) [RHEL-78135] - kasan: make report_lock a raw spinlock (Luiz Capitulino) [RHEL-78135] - mm/gup: handle NULL pages in unpin_user_pages() (Luiz Capitulino) [RHEL-78135] {CVE-2024-56612} - arm64: mte: Fix copy_highpage() warning on hugetlb folios (Luiz Capitulino) [RHEL-78135] - arm64: Ensure bits ASID[15:8] are masked out when the kernel uses 8-bit ASIDs (Luiz Capitulino) [RHEL-78135] - memblock: allow zero threshold in validate_numa_converage() (Luiz Capitulino) [RHEL-78135] - x86/mm: Carve out INVLPG inline asm for use by others (Luiz Capitulino) [RHEL-78135] - Rename .data.once to .data..once to fix resetting WARN*_ONCE (Luiz Capitulino) [RHEL-78135] - Rename .data.unlikely to .data..unlikely (Luiz Capitulino) [RHEL-78135] - s390/mm/hugetlbfs: Add missing includes (Luiz Capitulino) [RHEL-78135] - s390/mm: Add PTE_MARKER support for hugetlbfs mappings (Luiz Capitulino) [RHEL-78135] - s390/mm: Introduce region-third and segment table swap entries (Luiz Capitulino) [RHEL-78135] - s390/mm: Introduce region-third and segment table entry present bits (Luiz Capitulino) [RHEL-78135] - s390/mm: Rearrange region-third and segment table entry SW bits (Luiz Capitulino) [RHEL-78135] - memblock: uniformly initialize all reserved pages to MIGRATE_MOVABLE (Luiz Capitulino) [RHEL-78135] - mm: Use str_on_off() helper function in report_meminit() (Luiz Capitulino) [RHEL-78135] - slab: Fix too strict alignment check in create_cache() (Luiz Capitulino) [RHEL-78135] {CVE-2024-56560} - SLUB: Add support for per object memory policies (Luiz Capitulino) [RHEL-78135] - mm/slab: Allow cache creation to proceed even if sysfs registration fails (Luiz Capitulino) [RHEL-78135] - mm/slub, kunit: Add testcase for krealloc redzone and zeroing (Luiz Capitulino) [RHEL-78135] - mm/slub: Improve redzone check and zeroing for krealloc() (Luiz Capitulino) [RHEL-78135] - mm/slub: Consider kfence case for get_orig_size() (Luiz Capitulino) [RHEL-78135] - mm, slab: add kerneldocs for common SLAB_ flags (Luiz Capitulino) [RHEL-78135] - mm/slab: remove duplicate check in create_cache() (Luiz Capitulino) [RHEL-78135] - mm/slub: Move krealloc() and related code to slub.c (Luiz Capitulino) [RHEL-78135] - mm/kasan: Don't store metadata inside kmalloc object when slub_debug_orig_size is on (Luiz Capitulino) [RHEL-78135] - drm: replace strcpy() with strscpy() (Luiz Capitulino) [RHEL-78135] - mm/util: deduplicate code in {kstrdup,kstrndup,kmemdup_nul} (Luiz Capitulino) [RHEL-78135] - mm/util: fix possible race condition in kstrdup() (Luiz Capitulino) [RHEL-78135] - bpftool: ensure task comm is always NUL-terminated (Luiz Capitulino) [RHEL-78135] - security: replace memcpy() with get_task_comm() (Luiz Capitulino) [RHEL-78135] - auditsc: replace memcpy() with strscpy() (Luiz Capitulino) [RHEL-78135] - get rid of __get_task_comm() (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Early detect debug_pagealloc size requirement (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Disable kfence if not early init (Luiz Capitulino) [RHEL-78135] - book3s64/radix: Refactoring common kfence related functions (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Add kfence functionality (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Disable debug_pagealloc if it requires more memory (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Make kernel_map_linear_page() generic (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Refactor hash__kernel_map_pages() function (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Add hash_debug_pagealloc_alloc_slots() function (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Add hash_debug_pagealloc_add_slot() function (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Refactor kernel linear map related calls (Luiz Capitulino) [RHEL-78135] - book3s64/hash: Remove kfence support temporarily (Luiz Capitulino) [RHEL-78135] - cma: enforce non-zero pageblock_order during cma_init_reserved_mem() (Luiz Capitulino) [RHEL-78135] - mm/kfence: add a new kunit test test_use_after_free_read_nofault() (Luiz Capitulino) [RHEL-78135] - memcg/hugetlb: add hugeTLB counters to memcg (Luiz Capitulino) [RHEL-78135] - vmstat: call fold_vm_zone_numa_events() before show per zone NUMA event (Luiz Capitulino) [RHEL-78135] - mm: mmap_lock: check trace_mmap_lock_$type_enabled() instead of regcount (Luiz Capitulino) [RHEL-78135] - mm: define general function pXd_init() (Luiz Capitulino) [RHEL-78135] - kmemleak: iommu/iova: fix transient kmemleak false positive (Luiz Capitulino) [RHEL-78135] - mm/list_lru: simplify the list_lru walk callback function (Luiz Capitulino) [RHEL-78135] - mm/list_lru: split the lock to per-cgroup scope (Luiz Capitulino) [RHEL-78135] - mm/list_lru: simplify reparenting and initial allocation (Luiz Capitulino) [RHEL-78135] - mm/list_lru: code clean up for reparenting (Luiz Capitulino) [RHEL-78135] - mm/list_lru: don't export list_lru_add (Luiz Capitulino) [RHEL-78135] - mm/list_lru: don't pass unnecessary key parameters (Luiz Capitulino) [RHEL-78135] - kasan: add kunit tests for kmalloc_track_caller, kmalloc_node_track_caller (Luiz Capitulino) [RHEL-78135] - kasan: change kasan_atomics kunit test as KUNIT_CASE_SLOW (Luiz Capitulino) [RHEL-78135] - kasan: use EXPORT_SYMBOL_IF_KUNIT to export symbols (Luiz Capitulino) [RHEL-78135] - mm: remove unnecessary page_table_lock on stack expansion (Luiz Capitulino) [RHEL-78135] - mm: huge_memory: use strscpy() instead of strcpy() (Luiz Capitulino) [RHEL-78135] - mm: shmem: override mTHP shmem default with a kernel parameter (Luiz Capitulino) [RHEL-78135] - mm: move ``get_order_from_str()`` to internal.h (Luiz Capitulino) [RHEL-78135] - mm: shmem: control THP support through the kernel command line (Luiz Capitulino) [RHEL-78135] - vma: detect infinite loop in vma tree (Luiz Capitulino) [RHEL-78135] - mm/memory-failure: replace sprintf() with sysfs_emit() (Luiz Capitulino) [RHEL-78135] - memcg: add flush tracepoint (Luiz Capitulino) [RHEL-78135] - memcg: rename do_flush_stats and add force flag (Luiz Capitulino) [RHEL-78135] - mm: delete the unused put_pages_list() (Luiz Capitulino) [RHEL-78135] - selftests/mm: add self tests for guard page feature (Luiz Capitulino) [RHEL-78135] - selftests/mm: add pkey_sighandler_xx, hugetlb_dio to .gitignore (Luiz Capitulino) [RHEL-78135] - tools: testing: update tools UAPI header for mman-common.h (Luiz Capitulino) [RHEL-78135] - mm: madvise: implement lightweight guard page mechanism (Luiz Capitulino) [RHEL-78135] - mm: add PTE_MARKER_GUARD PTE marker (Luiz Capitulino) [RHEL-78135] - mm: pagewalk: add the ability to install PTEs (Luiz Capitulino) [RHEL-78135] - kasan: delete CONFIG_KASAN_MODULE_TEST (Luiz Capitulino) [RHEL-78135] - kasan: migrate copy_user_test to kunit (Luiz Capitulino) [RHEL-78135] - kasan: move checks to do_strncpy_from_user (Luiz Capitulino) [RHEL-78135] - mm: add per-order mTHP swpin counters (Luiz Capitulino) [RHEL-78135] - mm: zswap: zswap_store_page() will initialize entry after adding to xarray. (Luiz Capitulino) [RHEL-78135] - mm: swap: count successful large folio zswap stores in hugepage zswpout stats (Luiz Capitulino) [RHEL-78135] - mm: zswap: support large folios in zswap_store() (Luiz Capitulino) [RHEL-78135] - mm: zswap: modify zswap_stored_pages to be atomic_long_t (Luiz Capitulino) [RHEL-78135] - mm: zswap: rename zswap_pool_get() to zswap_pool_tryget() (Luiz Capitulino) [RHEL-78135] - mm: zswap: modify zswap_compress() to accept a page instead of a folio (Luiz Capitulino) [RHEL-78135] - mm: define obj_cgroup_get() if CONFIG_MEMCG is not defined (Luiz Capitulino) [RHEL-78135] - mm/damon/tests/dbgfs-kunit: fix the header double inclusion guarding ifdef comment (Luiz Capitulino) [RHEL-78135] - mm/damon/Kconfig: update DBGFS_KUNIT prompt copy for SYSFS_KUNIT (Luiz Capitulino) [RHEL-78135] - selftests/damon/debugfs_duplicate_context_creation: hide errors from expected file write failures (Luiz Capitulino) [RHEL-78135] - selftests/damon/_debugfs_common: hide expected error message from test_write_result() (Luiz Capitulino) [RHEL-78135] - selftests/damon/huge_count_read_write: remove unnecessary debugging message (Luiz Capitulino) [RHEL-78135] - mm/show_mem: use str_yes_no() helper in show_free_areas() (Luiz Capitulino) [RHEL-78135] - mm/vmscan: wake up flushers conditionally to avoid cgroup OOM (Luiz Capitulino) [RHEL-78135] - mm: use page->private instead of page->index in percpu (Luiz Capitulino) [RHEL-78135] - mm: remove references to page->index in huge_memory.c (Luiz Capitulino) [RHEL-78135] - bootmem: stop using page->index (Luiz Capitulino) [RHEL-78135] - mm: mass constification of folio/page pointers (Luiz Capitulino) [RHEL-78135] - mm: renovate page_address_in_vma() (Luiz Capitulino) [RHEL-78135] - mm: use page_pgoff() in more places (Luiz Capitulino) [RHEL-78135] - mm: convert page_to_pgoff() to page_pgoff() (Luiz Capitulino) [RHEL-78135] - mm/zsmalloc: use memcpy_from/to_page whereever possible (Luiz Capitulino) [RHEL-78135] - zsmalloc: replace kmap_atomic with kmap_local_page (Luiz Capitulino) [RHEL-78135] - mm/codetag: uninline and move pgalloc_tag_copy and pgalloc_tag_split (Luiz Capitulino) [RHEL-78135] - alloc_tag: support for page allocation tag compression (Luiz Capitulino) [RHEL-78135] - alloc_tag: introduce pgtag_ref_handle to abstract page tag references (Luiz Capitulino) [RHEL-78135] - alloc_tag: populate memory for module tags as needed (Luiz Capitulino) [RHEL-78135] - alloc_tag: load module tags into separate contiguous memory (Luiz Capitulino) [RHEL-78135] - alloc_tag: introduce shutdown_mem_profiling helper function (Luiz Capitulino) [RHEL-78135] - maple_tree: add mas_for_each_rev() helper (Luiz Capitulino) [RHEL-78135] - x86/module: enable ROX caches for module text on 64 bit (Luiz Capitulino) [RHEL-78135] - execmem: add support for cache of large ROX pages (Luiz Capitulino) [RHEL-78135] - x86/module: prepare module loading for ROX allocations of text (Luiz Capitulino) [RHEL-78135] - arch: introduce set_direct_map_valid_noflush() (Luiz Capitulino) [RHEL-78135] - module: prepare to handle ROX allocations for text (Luiz Capitulino) [RHEL-78135] - asm-generic: introduce text-patching.h (Luiz Capitulino) [RHEL-78135] - mm: vmalloc: don't account for number of nodes for HUGE_VMAP allocations (Luiz Capitulino) [RHEL-78135] - mm: vmalloc: group declarations depending on CONFIG_MMU together (Luiz Capitulino) [RHEL-78135] - memcg: workingset: remove folio_memcg_rcu usage (Luiz Capitulino) [RHEL-78135] - mm/vma: the pgoff is correct if can_merge_right (Luiz Capitulino) [RHEL-78135] - mm: defer second attempt at merge on mmap() (Luiz Capitulino) [RHEL-78135] - mm: remove unnecessary reset state logic on merge new VMA (Luiz Capitulino) [RHEL-78135] - mm: refactor __mmap_region() (Luiz Capitulino) [RHEL-78135] - mm: isolate mmap internal logic to mm/vma.c (Luiz Capitulino) [RHEL-78135] - tools: testing: add additional vma_internal.h stubs (Luiz Capitulino) [RHEL-78135] - memcg-v1: remove memcg move locking code (Luiz Capitulino) [RHEL-78135] - memcg-v1: no need for memcg locking for MGLRU (Luiz Capitulino) [RHEL-78135] - memcg-v1: no need for memcg locking for writeback tracking (Luiz Capitulino) [RHEL-78135] - memcg-v1: no need for memcg locking for dirty tracking (Luiz Capitulino) [RHEL-78135] - memcg-v1: remove charge move code (Luiz Capitulino) [RHEL-78135] - memcg-v1: fully deprecate move_charge_at_immigrate (Luiz Capitulino) [RHEL-78135] - mm: shmem: fallback to page size splice if large folio has poisoned pages (Luiz Capitulino) [RHEL-78135] - mm/damon/vaddr: add 'nr_piece == 1' check in damon_va_evenly_split_region() (Luiz Capitulino) [RHEL-78135] - mm/damon/vaddr: fix issue in damon_va_evenly_split_region() (Luiz Capitulino) [RHEL-78135] - mm/page_alloc: use str_off_on() helper in build_all_zonelists() (Luiz Capitulino) [RHEL-78135] - mm/memcontrol: fix seq_buf size to save memory when PAGE_SIZE is large (Luiz Capitulino) [RHEL-78135] - mm: add missing mmu_notifier_clear_young for !MMU_NOTIFIER (Luiz Capitulino) [RHEL-78135] - mm/page-writeback: raise wb_thresh to prevent write blocking with strictlimit (Luiz Capitulino) [RHEL-78135] - mm/memory.c: simplify pfnmap_lockdep_assert (Luiz Capitulino) [RHEL-78135] - mm/codetag: fix arg in pgalloc_tag_copy alloc_tag_sub (Luiz Capitulino) [RHEL-78135] - mm: shmem: improve the tmpfs large folio read performance (Luiz Capitulino) [RHEL-78135] - mm: shmem: update iocb->ki_pos directly to simplify tmpfs read logic (Luiz Capitulino) [RHEL-78135] - mm: remove unused has_isolate_pageblock (Luiz Capitulino) [RHEL-78135] - mm: remove redundant condition for THP folio (Luiz Capitulino) [RHEL-78135] - mm/mremap: remove goto from mremap_to() (Luiz Capitulino) [RHEL-78135] - mm/mremap: cleanup vma_to_resize() (Luiz Capitulino) [RHEL-78135] - mm: don't set readahead flag on a folio when lookahead_size > nr_to_read (Luiz Capitulino) [RHEL-78135] - mm: shmem: remove __shmem_huge_global_enabled() (Luiz Capitulino) [RHEL-78135] - mm: huge_memory: move file_thp_enabled() into huge_memory.c (Luiz Capitulino) [RHEL-78135] - tmpfs: don't enable large folios if not supported (Luiz Capitulino) [RHEL-78135] - mm/mglru: reset page lru tier bits when activating (Luiz Capitulino) [RHEL-78135] - mm: swap: use str_true_false() helper function (Luiz Capitulino) [RHEL-78135] - mm, kasan, kmsan: instrument copy_from/to_kernel_nofault (Luiz Capitulino) [RHEL-78135] - mm/vmstat: defer the refresh_zone_stat_thresholds after all CPUs bringup (Luiz Capitulino) [RHEL-78135] - vmscan: add a vmscan event for reclaim_pages (Luiz Capitulino) [RHEL-78135] - mm: avoid zeroing user movable page twice with init_on_alloc=1 (Luiz Capitulino) [RHEL-78135] - mm/zswap: avoid touching XArray for unnecessary invalidation (Luiz Capitulino) [RHEL-78135] - mm/hugetlb: perform vmemmap optimization batchly for specific node allocation (Luiz Capitulino) [RHEL-78135] - memcg: add tracing for memcg stat updates (Luiz Capitulino) [RHEL-78135] - mm: remove unused hugepage for vma_alloc_folio() (Luiz Capitulino) [RHEL-78135] - mm: add pcp high_min high_max to proc zoneinfo (Luiz Capitulino) [RHEL-78135] - mm/kmemleak: fix typo in object_no_scan() comment (Luiz Capitulino) [RHEL-78135] - kaslr: rename physmem_end and PHYSMEM_END to direct_map_physmem_end (Luiz Capitulino) [RHEL-78135] - mm: allocate THP on hugezeropage wp-fault (Luiz Capitulino) [RHEL-78135] - mm: abstract THP allocation (Luiz Capitulino) [RHEL-78135] - mm/memory.c: remove stray newline at top of file (Luiz Capitulino) [RHEL-78135] - percpu: fix data race with pcpu_nr_empty_pop_pages (Luiz Capitulino) [RHEL-78135] - mm: consolidate common checks in hugetlb_get_unmapped_area (Luiz Capitulino) [RHEL-78135] - arch/s390: clean up hugetlb definitions (Luiz Capitulino) [RHEL-78135] - mm: drop hugetlb_get_unmapped_area{_*} functions (Luiz Capitulino) [RHEL-78135] - mm: make hugetlb mappings go through mm_get_unmapped_area_vmflags (Luiz Capitulino) [RHEL-78135] - arch/powerpc: teach book3s64 arch_get_unmapped_area{_topdown} to handle hugetlb mappings (Luiz Capitulino) [RHEL-78135] - arch/sparc: teach arch_get_unmapped_area{_topdown} to handle hugetlb mappings (Luiz Capitulino) [RHEL-78135] - arch/x86: teach arch_get_unmapped_area_vmflags to handle hugetlb mappings (Luiz Capitulino) [RHEL-78135] - arch/s390: teach arch_get_unmapped_area{_topdown} to handle hugetlb mappings (Luiz Capitulino) [RHEL-78135] - mm/mmap: teach generic_get_unmapped_area{_topdown} to handle hugetlb mappings (Luiz Capitulino) [RHEL-78135] - mm: remove misleading 'unlikely' hint in vms_gather_munmap_vmas() (Luiz Capitulino) [RHEL-78135] - mm/truncate: reset xa_has_values flag on each iteration (Luiz Capitulino) [RHEL-78135] - mm: swap: make some count_mthp_stat() call-sites be THP-agnostic. (Luiz Capitulino) [RHEL-78135] - gup: convert FOLL_TOUCH case in follow_page_pte() to folio (Luiz Capitulino) [RHEL-78135] - mm: remove PageKsm() (Luiz Capitulino) [RHEL-78135] - mm: add PageAnonNotKsm() (Luiz Capitulino) [RHEL-78135] - ksm: convert should_skip_rmap_item() to take a folio (Luiz Capitulino) [RHEL-78135] - ksm: convert cmp_and_merge_page() to use a folio (Luiz Capitulino) [RHEL-78135] - ksm: use a folio in try_to_merge_one_page() (Luiz Capitulino) [RHEL-78135] - mm/cma: fix useless return in void function (Luiz Capitulino) [RHEL-78135] - mm: optimize invalidation of shadow entries (Luiz Capitulino) [RHEL-78135] - mm: optimize truncation of shadow entries (Luiz Capitulino) [RHEL-78135] - mm: migrate LRU_REFS_MASK bits in folio_migrate_flags (Luiz Capitulino) [RHEL-78135] - mm: pgtable: remove pte_offset_map_nolock() (Luiz Capitulino) [RHEL-78135] - mm: multi-gen LRU: walk_pte_range() use pte_offset_map_rw_nolock() (Luiz Capitulino) [RHEL-78135] - mm: userfaultfd: move_pages_pte() use pte_offset_map_rw_nolock() (Luiz Capitulino) [RHEL-78135] - mm: page_vma_mapped_walk: map_pte() use pte_offset_map_rw_nolock() (Luiz Capitulino) [RHEL-78135] - mm: mremap: move_ptes() use pte_offset_map_rw_nolock() (Luiz Capitulino) [RHEL-78135] - mm: copy_pte_range() use pte_offset_map_rw_nolock() (Luiz Capitulino) [RHEL-78135] - mm: khugepaged: collapse_pte_mapped_thp() use pte_offset_map_rw_nolock() (Luiz Capitulino) [RHEL-78135] - mm: handle_pte_fault() use pte_offset_map_rw_nolock() (Luiz Capitulino) [RHEL-78135] - arm: adjust_pte() use pte_offset_map_rw_nolock() (Luiz Capitulino) [RHEL-78135] - mm: khugepaged: __collapse_huge_page_swapin() use pte_offset_map_ro_nolock() (Luiz Capitulino) [RHEL-78135] - mm: filemap: filemap_fault_recheck_pte_none() use pte_offset_map_ro_nolock() (Luiz Capitulino) [RHEL-78135] - powerpc: assert_pte_locked() use pte_offset_map_ro_nolock() (Luiz Capitulino) [RHEL-78135] - mm: pgtable: introduce pte_offset_map_{ro|rw}_nolock() (Luiz Capitulino) [RHEL-78135] - mm: move mm flags to mm_types.h (Luiz Capitulino) [RHEL-78135] - mm/madvise: unrestrict process_madvise() for current process (Luiz Capitulino) [RHEL-78135] - mm/mempolicy: fix comments for better documentation (Luiz Capitulino) [RHEL-78135] - mm: fix shrink nr.unqueued_dirty counter issue (Luiz Capitulino) [RHEL-78135] - mm: refactor mm_access() to not return NULL (Luiz Capitulino) [RHEL-78135] - mm/vmalloc: combine all TLB flush operations of KASAN shadow virtual address into one operation (Luiz Capitulino) [RHEL-78135] {CVE-2024-56559} - mm/memcontrol: add per-memcg pgpgin/pswpin counter (Luiz Capitulino) [RHEL-78135] - mm/damon: fix sparse warning for zero initializer (Luiz Capitulino) [RHEL-78135] - mm: shmem: fix khugepaged activation policy for shmem (Luiz Capitulino) [RHEL-78135] - mm: page_frag: use __alloc_pages() to replace alloc_pages_node() (Luiz Capitulino) [RHEL-78135] - mm: page_frag: reuse existing space for 'size' and 'pfmemalloc' (Luiz Capitulino) [RHEL-78135] - xtensa: remove the get_order() implementation (Luiz Capitulino) [RHEL-78135] - mm: page_frag: avoid caller accessing 'page_frag_cache' directly (Luiz Capitulino) [RHEL-78135] - mm: page_frag: use initial zero offset for page_frag_alloc_align() (Luiz Capitulino) [RHEL-78135] - mm: move the page fragment allocator from page_alloc into its own file (Luiz Capitulino) [RHEL-78135] - mm: page_frag: add a test module for page_frag (Luiz Capitulino) [RHEL-78135] - powerpc: Split systemcfg struct definitions out from vdso (Luiz Capitulino) [RHEL-78135] - powerpc: Split systemcfg data out of vdso data page (Luiz Capitulino) [RHEL-78135] - powerpc: Add kconfig option for the systemcfg page (Luiz Capitulino) [RHEL-78135] - powerpc/pseries/lparcfg: Use num_possible_cpus() for potential processors (Luiz Capitulino) [RHEL-78135] - powerpc/pseries/lparcfg: Fix printing of system_active_processors (Luiz Capitulino) [RHEL-78135] - powerpc/procfs: Propagate error of remap_pfn_range() (Luiz Capitulino) [RHEL-78135] - powerpc/vdso: Remove offset comment from 32bit vdso_arch_data (Luiz Capitulino) [RHEL-78135] - x86/vdso: Split virtual clock pages into dedicated mapping (Luiz Capitulino) [RHEL-78135] - x86/vdso: Delete vvar.h (Luiz Capitulino) [RHEL-78135] - x86/vdso: Access vdso data without vvar.h (Luiz Capitulino) [RHEL-78135] - x86/vdso: Move the rng offset to vsyscall.h (Luiz Capitulino) [RHEL-78135] - x86/vdso: Access rng vdso data without vvar.h (Luiz Capitulino) [RHEL-78135] - x86/vdso: Access timens vdso data without vvar.h (Luiz Capitulino) [RHEL-78135] - x86/vdso: Allocate vvar page from C code (Luiz Capitulino) [RHEL-78135] - x86/vdso: Access rng data from kernel without vvar (Luiz Capitulino) [RHEL-78135] - x86/vdso: Place vdso_data at beginning of vvar page (Luiz Capitulino) [RHEL-78135] - x86/vdso: Use __arch_get_vdso_data() to access vdso data (Luiz Capitulino) [RHEL-78135] - x86/mm/mmap: Remove arch_vma_name() (Luiz Capitulino) [RHEL-78135] - MIPS: vdso: Avoid name conflict around "vdso_data" (Luiz Capitulino) [RHEL-78135] - LoongArch: vDSO: Use vdso/datapage.h to access vDSO data (Luiz Capitulino) [RHEL-78135] - ARM: vdso: Remove assembly for datapage access (Luiz Capitulino) [RHEL-78135] - riscv: vdso: Use only one single vvar mapping (Luiz Capitulino) [RHEL-78135] - arm64: vdso: Use only one single vvar mapping (Luiz Capitulino) [RHEL-78135] - arm64: vdso: Drop LBASE_VDSO (Luiz Capitulino) [RHEL-78135] - s390/vdso: Drop LBASE_VDSO (Luiz Capitulino) [RHEL-78135] - csky/vdso: Remove arch_vma_name() (Luiz Capitulino) [RHEL-78135] - csky/vdso: Remove gettimeofday() and friends from VDSO (Luiz Capitulino) [RHEL-78135] - MIPS: vdso: Remove timekeeper includes (Luiz Capitulino) [RHEL-78135] - LoongArch: vdso: Remove timekeeper includes (Luiz Capitulino) [RHEL-78135] - x86/vdso: Remove timekeeper include (Luiz Capitulino) [RHEL-78135] - s390/vdso: Remove timekeeper includes (Luiz Capitulino) [RHEL-78135] - riscv: vdso: Remove timekeeper include (Luiz Capitulino) [RHEL-78135] - powerpc/vdso: Remove timekeeper includes (Luiz Capitulino) [RHEL-78135] - arm64: vdso: Remove timekeeper include (Luiz Capitulino) [RHEL-78135] - arm: vdso: Remove timekeeper includes (Luiz Capitulino) [RHEL-78135] - vdso: Remove timekeeper argument of __arch_update_vsyscall() (Luiz Capitulino) [RHEL-78135] - s390: Remove remaining _PAGE_* macros (Luiz Capitulino) [RHEL-78135] - vdso: Introduce vdso/page.h (Luiz Capitulino) [RHEL-78135] - drm: i915: Change fault type to unsigned long (Luiz Capitulino) [RHEL-78135] - x86/mm/tlb: Put cpumask_test_cpu() check in switch_mm_irqs_off() under CONFIG_DEBUG_VM (Luiz Capitulino) [RHEL-78135] - x86/mm: Don't disable PCID when INVLPG has been fixed by microcode (Luiz Capitulino) [RHEL-78135] - redhat/configs: Enable CONFIG_ARM64_HAFT (Luiz Capitulino) [RHEL-78135] - arm64: pgtable: Warn unexpected pmdp_test_and_clear_young() (Luiz Capitulino) [RHEL-78135] - arm64: Enable ARCH_HAS_NONLEAF_PMD_YOUNG (Luiz Capitulino) [RHEL-78135] - arm64: Add support for FEAT_HAFT (Luiz Capitulino) [RHEL-78135] - arm64: setup: name 'tcr2' register (Luiz Capitulino) [RHEL-78135] - arm64/sysreg: Update ID_AA64MMFR1_EL1 register (Luiz Capitulino) [RHEL-78135] - arm64: Enable memory encrypt for Realms (Luiz Capitulino) [RHEL-78135] - arm64: mm: Avoid TLBI when marking pages as valid (Luiz Capitulino) [RHEL-78135] - arm64: Enforce bounce buffers for realm DMA (Luiz Capitulino) [RHEL-78135] - selftests: arm64: add hugetlb mte tests (Luiz Capitulino) [RHEL-78135] - hugetlb: arm64: add mte support (Luiz Capitulino) [RHEL-78135] - arm64/ptdump: Test both PTE_TABLE_BIT and PTE_VALID for block mappings (Luiz Capitulino) [RHEL-78135] - arm64/mm: Re-organize arch_make_huge_pte() (Luiz Capitulino) [RHEL-78135] - arm64/mm: Change pgattr_change_is_safe() arguments as pteval_t (Luiz Capitulino) [RHEL-78135] - efi: arm64: Map Device with Prot Shared (Luiz Capitulino) [RHEL-78135] - arm64: rsi: Map unprotected MMIO as decrypted (Luiz Capitulino) [RHEL-78135] - arm64: rsi: Add support for checking whether an MMIO is protected (Luiz Capitulino) [RHEL-78135] - arm64: realm: Query IPA size from the RMM (Luiz Capitulino) [RHEL-78135] - arm64: Detect if in a realm and set RIPAS RAM (Luiz Capitulino) [RHEL-78135] - arm64: rsi: Add RSI definitions (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Enable GCS for the FP stress tests (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Add a GCS stress test (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Add GCS signal tests (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Add test coverage for GCS mode locking (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Add a GCS test program built with the system libc (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Add very basic GCS test program (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Always run signals tests with GCS enabled (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Allow signals tests to specify an expected si_code (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Add framework support for GCS to signal handling tests (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Add GCS as a detected feature in the signal tests (Luiz Capitulino) [RHEL-78135] - kselftest/arm64: Verify the GCS hwcap (Luiz Capitulino) [RHEL-78135] - arm64: Add Kconfig for Guarded Control Stack (GCS) (Luiz Capitulino) [RHEL-78135] - arm64/ptrace: Expose GCS via ptrace and core files (Luiz Capitulino) [RHEL-78135] - arm64/signal: Expose GCS state in signal frames (Luiz Capitulino) [RHEL-78135] - arm64/signal: Set up and restore the GCS context for signal handlers (Luiz Capitulino) [RHEL-78135] - arm64/mm: Implement map_shadow_stack() (Luiz Capitulino) [RHEL-78135] - arm64/gcs: Implement shadow stack prctl() interface (Luiz Capitulino) [RHEL-78135] - arm64/gcs: Ensure that new threads have a GCS (Luiz Capitulino) [RHEL-78135] - arm64/gcs: Context switch GCS state for EL0 (Luiz Capitulino) [RHEL-78135] - arm64/mm: Handle GCS data aborts (Luiz Capitulino) [RHEL-78135] - arm64/traps: Handle GCS exceptions (Luiz Capitulino) [RHEL-78135] - arm64/hwcap: Add hwcap for GCS (Luiz Capitulino) [RHEL-78135] - arm64/idreg: Add overrride for GCS (Luiz Capitulino) [RHEL-78135] - arm64/mm: Map pages for guarded control stack (Luiz Capitulino) [RHEL-78135] - mm: Define VM_SHADOW_STACK for arm64 when we support GCS (Luiz Capitulino) [RHEL-78135] - arm64/mm: Allocate PIE slots for EL0 guarded control stack (Luiz Capitulino) [RHEL-78135] - arm64/cpufeature: Runtime detection of Guarded Control Stack (GCS) (Luiz Capitulino) [RHEL-78135] - arm64/gcs: Provide basic EL2 setup to allow GCS usage at EL0 and EL1 (Luiz Capitulino) [RHEL-78135] - arm64/gcs: Provide put_user_gcs() (Luiz Capitulino) [RHEL-78135] - arm64/gcs: Add manual encodings of GCS instructions (Luiz Capitulino) [RHEL-78135] - arm64/sysreg: Add definitions for architected GCS caps (Luiz Capitulino) [RHEL-78135] - arm64/gcs: Document the ABI for Guarded Control Stacks (Luiz Capitulino) [RHEL-78135] - arm64: Document boot requirements for Guarded Control Stacks (Luiz Capitulino) [RHEL-78135] - mman: Add map_shadow_stack() flags (Luiz Capitulino) [RHEL-78135] - prctl: arch-agnostic prctl for shadow stack (Luiz Capitulino) [RHEL-78135] - arm64/mm: Restructure arch_validate_flags() for extensibility (Luiz Capitulino) [RHEL-78135] - mm: Define VM_HIGH_ARCH_6 (Luiz Capitulino) [RHEL-78135] - mm: Introduce ARCH_HAS_USER_SHADOW_STACK (Luiz Capitulino) [RHEL-78135] - s390/cio/ioasm: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/cio/qdio: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/sclp: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/dasd: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/boot/physmem: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/pci: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/kvm: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/extmem: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/string: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/diag: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/irq: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/smp: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/uv: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/pai: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/mm: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/cpu_mf: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/cpcmd: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/topology: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/time: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/pageattr: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/sthyi: Convert to use flag output macros (Luiz Capitulino) [RHEL-78135] - s390/asm: Helper macros for flag output operand handling (Luiz Capitulino) [RHEL-78135] - s390/perf_cpum_cf: Convert to use local64_try_cmpxchg() (Luiz Capitulino) [RHEL-78135] - s390/perf_cpum_sf: Convert to use try_cmpxchg128() (Luiz Capitulino) [RHEL-78135] - s390/atomic: Remove __atomic_cmpxchg() variants (Luiz Capitulino) [RHEL-78135] - s390/locking: Use arch_try_cmpxchg() instead of __atomic_cmpxchg_bool() (Luiz Capitulino) [RHEL-78135] - s390/preempt: Use arch_try_cmpxchg() instead of __atomic_cmpxchg() (Luiz Capitulino) [RHEL-78135] - s390/atomic: Provide arch_atomic_try_cmpxchg() (Luiz Capitulino) [RHEL-78135] - s390/cmpxchg: Use arch_cmpxchg() instead of __atomic_cmpxchg() (Luiz Capitulino) [RHEL-78135] - s390/atomic: Convert arch_atomic_xchg() to C function (Luiz Capitulino) [RHEL-78135] - s390/cmpxchg: Provide arch_try_cmpxchg128() (Luiz Capitulino) [RHEL-78135] - s390/cmpxchg: Provide arch_cmpxchg128_local() (Luiz Capitulino) [RHEL-78135] - s390/cmpxchg: Implement arch_xchg() with arch_try_cmpxchg() (Luiz Capitulino) [RHEL-78135] - s390/cmpxchg: Provide arch_try_cmpxchg() (Luiz Capitulino) [RHEL-78135] - s390/cmpxchg: Convert one and two byte case inline assemblies to C (Luiz Capitulino) [RHEL-78135] - s390/mm: Cleanup fault error handling (Luiz Capitulino) [RHEL-78135] - s390/mm: Convert to LOCK_MM_AND_FIND_VMA (Luiz Capitulino) [RHEL-78135] - s390/mm: Get rid of fault type switch statements (Luiz Capitulino) [RHEL-78135] - s390/mm: Simplify get_fault_type() (Luiz Capitulino) [RHEL-78135] - s390: Remove gmap pointer from lowcore (Luiz Capitulino) [RHEL-78135] - s390/mm/gmap: Remove gmap_{en,dis}able() (Luiz Capitulino) [RHEL-78135] - s390/kvm: Stop using gmap_{en,dis}able() (Luiz Capitulino) [RHEL-78135] - s390/mm/fault: Handle guest-related program interrupts in KVM (Luiz Capitulino) [RHEL-78135] - s390/mm/gmap: Fix __gmap_fault() return code (Luiz Capitulino) [RHEL-78135] - s390/mm/gmap: Refactor gmap_fault() and add support for pfault (Luiz Capitulino) [RHEL-78135] - s390/kvm: Remove kvm_arch_fault_in_page() (Luiz Capitulino) [RHEL-78135] - s390/entry: Remove __GMAP_ASCE and use _PIF_GUEST_FAULT again (Luiz Capitulino) [RHEL-78135] - s390/pageattr: Implement missing kernel_page_present() (Luiz Capitulino) [RHEL-78135] - s390: Fix various typos (Luiz Capitulino) [RHEL-78135] - mm: zero range of eof folio exposed by inode size extension (Luiz Capitulino) [RHEL-78135] - memcg_write_event_control(): switch to CLASS(fd) (Luiz Capitulino) [RHEL-78135] - convert cachestat(2) (Luiz Capitulino) [RHEL-78135] - migrate: Remove references to Private2 (Luiz Capitulino) [RHEL-78135] - ceph: Remove call to PagePrivate2() (Luiz Capitulino) [RHEL-78135] - btrfs: Switch from using the private_2 flag to owner_2 (Luiz Capitulino) [RHEL-78135] - mm: Remove PageMappedToDisk (Luiz Capitulino) [RHEL-78135] - nilfs2: Convert nilfs_copy_buffer() to use folios (Luiz Capitulino) [RHEL-78135] - fs: Move clearing of mappedtodisk to buffer.c (Luiz Capitulino) [RHEL-78135] - mm/page-writeback.c: Fix comment of wb_domain_writeout_add() (Luiz Capitulino) [RHEL-78135] - mm/page-writeback.c: Update comment for BANDWIDTH_INTERVAL (Luiz Capitulino) [RHEL-78135] - filemap: filemap_read() should check that the offset is positive or zero (Luiz Capitulino) [RHEL-78135] - s390/diag: Move diag.c to diag specific folder (Mete Durlu) [RHEL-72674] - s390/diag324: Retrieve power readings via diag 0x324 (Mete Durlu) [RHEL-72674] - s390/diag: Create misc device /dev/diag (Mete Durlu) [RHEL-72674] - scsi: lpfc: Fix spelling mistake 'Toplogy' -> 'Topology' (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Copyright updates for 14.4.0.8 patches (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Update lpfc version to 14.4.0.8 (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Ignore ndlp rport mismatch in dev_loss_tmo callbk (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Reduce log message generation during ELS ring clean up (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Copyright updates for 14.4.0.7 patches (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Update lpfc version to 14.4.0.7 (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Add support for large fw object application layer reads (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Update definition of firmware configuration mbox cmds (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Change lpfc_nodelist save_flags member into a bitmask (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Add handling for LS_RJT reason explanation authentication required (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Modify handling of ADISC based on ndlp state and RPI registration (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Delete NLP_TARGET_REMOVE flag due to obsolete usage (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Restrict the REG_FCFI MAM field to FCoE adapters only (Dick Kennedy) [RHEL-82167] - scsi: lpfc: Redefine incorrect type in lpfc_create_device_data() (Dick Kennedy) [RHEL-82167] - iscsi_ibft: Fix UBSAN shift-out-of-bounds warning in ibft_attr_show_nic() (CKI Backport Bot) [RHEL-86845] {CVE-2025-21993} - Revert "media: uvcvideo: Require entities to have a non-zero unique ID" (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Fix deadlock during uvc_probe (Desnes Nunes) [RHEL-78929] {CVE-2024-58059} - acpi: typec: ucsi: Introduce a ->poll_cci method (Desnes Nunes) [RHEL-78929] - usb: xhci: Fix host controllers "dying" after suspend and resume (Desnes Nunes) [RHEL-78929] - usb: xhci: Fix NULL pointer dereference on certain command aborts (Desnes Nunes) [RHEL-78929 RHEL-81550] {CVE-2024-57981} - USB: serial: option: add Neoway N723-EA support (Desnes Nunes) [RHEL-78929] - USB: serial: option: add MeiG Smart SRM815 (Desnes Nunes) [RHEL-78929] - USB: serial: cp210x: add Phoenix Contact UPS Device (Desnes Nunes) [RHEL-78929] - usb: typec: fix pm usage counter imbalance in ucsi_ccg_sync_control() (Desnes Nunes) [RHEL-78929] - usb-storage: Add max sectors quirk for Nokia 208 (Desnes Nunes) [RHEL-78929] - phy: core: Fix an OF node refcount leakage in of_phy_provider_lookup() (Desnes Nunes) [RHEL-78929] - phy: core: Fix an OF node refcount leakage in _of_phy_get() (Desnes Nunes) [RHEL-78929] - phy: core: Fix that API devm_phy_destroy() fails to destroy the phy (Desnes Nunes) [RHEL-78929] - phy: core: Fix that API devm_of_phy_provider_unregister() fails to unregister the phy provider (Desnes Nunes) [RHEL-78929] - phy: core: Fix that API devm_phy_put() fails to release the phy (Desnes Nunes) [RHEL-78929] - USB: core: Disable LPM only for non-suspended ports (Desnes Nunes) [RHEL-78929] - usb: fix reference leak in usb_new_device() (Desnes Nunes) [RHEL-78929] - usb: typec: tcpci: fix NULL pointer issue on shared irq case (Desnes Nunes) [RHEL-78929] {CVE-2024-57914} - usb: chipidea: ci_hdrc_imx: decrement device's refcount in .remove() and in the error path of .probe() (Desnes Nunes) [RHEL-78929] - USB: usblp: return error when setting unsupported protocol (Desnes Nunes) [RHEL-78929] - usb: host: xhci-plat: set skip_phy_initialization if software node has XHCI_SKIP_PHY_INIT property (Desnes Nunes) [RHEL-78929] - usb: dwc3-am62: Disable autosuspend during remove (Desnes Nunes) [RHEL-78929] - usb: dwc3: gadget: fix writing NYET threshold (Desnes Nunes) [RHEL-78929] - usb: xhci: fix ring expansion regression in 6.13-rc1 (Desnes Nunes) [RHEL-78929] - xhci: Turn NEC specific quirk for handling Stop Endpoint errors generic (Desnes Nunes) [RHEL-78929] - thunderbolt: Improve redrive mode handling (Desnes Nunes) [RHEL-78929] - USB: serial: option: add Telit FE910C04 rmnet compositions (Desnes Nunes) [RHEL-78929] - USB: serial: option: add MediaTek T7XX compositions (Desnes Nunes) [RHEL-78929] - USB: serial: option: add Netprisma LCUK54 modules for WWAN Ready (Desnes Nunes) [RHEL-78929] - USB: serial: option: add MeiG Smart SLM770A (Desnes Nunes) [RHEL-78929] - USB: serial: option: add TCL IK512 MBIM & ECM (Desnes Nunes) [RHEL-78929] - thunderbolt: Don't display nvm_version unless upgrade supported (Desnes Nunes) [RHEL-78929] - thunderbolt: Add support for Intel Panther Lake-M/P (Desnes Nunes) [RHEL-47431 RHEL-78929] - usb: typec: ucsi: Fix connector status writing past buffer size (Desnes Nunes) [RHEL-78929] - usb: typec: ucsi: Fix completion notifications (Desnes Nunes) [RHEL-78929] - usb: dwc2: Fix HCD port connection race (Desnes Nunes) [RHEL-78929] - usb: dwc2: hcd: Fix GetPortStatus & SetPortFeature (Desnes Nunes) [RHEL-78929] - usb: dwc2: Fix HCD resume (Desnes Nunes) [RHEL-78929] - usb: misc: onboard_usb_dev: skip suspend/resume sequence for USB5744 SMBus support (Desnes Nunes) [RHEL-78929] - usb: core: hcd: only check primary hcd skip_phy_initialization (Desnes Nunes) [RHEL-78929] - usb: dwc3: imx8mp: fix software node kernel dump (Desnes Nunes) [RHEL-78929] - dt-bindings: phy: imx8mq-usb: correct reference to usb-switch.yaml (Desnes Nunes) [RHEL-78929] - usb: ehci-hcd: fix call balance of clocks handling routines (Desnes Nunes) [RHEL-78929] - phy: qcom-qmp: Fix register name in RX Lane config of SC8280XP (Desnes Nunes) [RHEL-78929] - usb: typec: tcpm: Add support for sink-bc12-completion-time-ms DT property (Desnes Nunes) [RHEL-78929] - dt-bindings: usb: maxim,max33359: add usage of sink bc12 time property (Desnes Nunes) [RHEL-78929] - dt-bindings: connector: Add time property for Sink BC12 detection completion (Desnes Nunes) [RHEL-78929] - usb: dwc3: gadget: Remove dwc3_request->needs_extra_trb (Desnes Nunes) [RHEL-78929] - usb: dwc3: gadget: Cleanup SG handling (Desnes Nunes) [RHEL-78929] - usb: dwc3: gadget: Fix looping of queued SG entries (Desnes Nunes) [RHEL-78929] {CVE-2024-56698} - usb: dwc3: gadget: Fix checking for number of TRBs left (Desnes Nunes) [RHEL-78929] - usb: dwc3: ep0: Don't clear ep0 DWC3_EP_TRANSFER_STARTED (Desnes Nunes) [RHEL-78929] - USB: make to_usb_device_driver() use container_of_const() (Desnes Nunes) [RHEL-78929] - USB: make to_usb_driver() use container_of_const() (Desnes Nunes) [RHEL-78929] - USB: properly lock dynamic id list when showing an id (Desnes Nunes) [RHEL-78929] - USB: make single lock for all usb dynamic id lists (Desnes Nunes) [RHEL-78929] - drivers/usb/storage: refactor min with min_t (Desnes Nunes) [RHEL-78929] - drivers/usb/serial: refactor min with min_t (Desnes Nunes) [RHEL-78929] - drivers/usb/musb: refactor min/max with min_t/max_t (Desnes Nunes) [RHEL-78929] - drivers/usb/mon: refactor min with min_t (Desnes Nunes) [RHEL-78929] - drivers/usb/misc: refactor min with min_t (Desnes Nunes) [RHEL-78929] - drivers/usb/host: refactor min/max with min_t/max_t (Desnes Nunes) [RHEL-78929] - drivers/usb/core: refactor max with max_t (Desnes Nunes) [RHEL-78929] - drivers/usb/gadget: refactor min with min_t (Desnes Nunes) [RHEL-78929] - usb: cdns3: Synchronise PCI IDs via common data base (Desnes Nunes) [RHEL-78929] - usb: dwc3: core: Set force_gen1 bit for all applicable SuperSpeed ports (Desnes Nunes) [RHEL-78929] - usb: dwc3: gadget: Add missing check for single port RAM in TxFIFO resizing logic (Desnes Nunes) [RHEL-78929] - USB: core: remove dead code in do_proc_bulk() (Desnes Nunes) [RHEL-78929] - usb: typec: fix potential array underflow in ucsi_ccg_sync_control() (Desnes Nunes) [RHEL-78929] {CVE-2024-53203} - usb: misc: ljca: set small runtime autosuspend delay (Desnes Nunes) [RHEL-78929] - usb: misc: ljca: move usb_autopm_put_interface() after wait for response (Desnes Nunes) [RHEL-78929] - usb: chipidea: imx: add imx8ulp support (Desnes Nunes) [RHEL-78929] - usb: typec: ucsi: Fix a missing bits to bytes conversion in ucsi_init() (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Skip parsing frames of type UVC_VS_UNDEFINED in uvc_parse_format (Desnes Nunes) [RHEL-78929] {CVE-2024-53104} - USB: serial: ftdi_sio: Fix atomicity violation in get_serial_info() (Desnes Nunes) [RHEL-78929] - thunderbolt: Replace deprecated PCI functions (Desnes Nunes) [RHEL-78929] - usb: typec: ucsi: Convert connector specific commands to bitmaps (Desnes Nunes) [RHEL-78929] - USB: serial: pl2303: account for deficits of clones (Desnes Nunes) [RHEL-78929] - usb: xhci: Avoid queuing redundant Stop Endpoint commands (Desnes Nunes) [RHEL-78929] - usb: xhci: Fix TD invalidation under pending Set TR Dequeue (Desnes Nunes) [RHEL-78929] - usb: xhci: Limit Stop Endpoint retries (Desnes Nunes) [RHEL-78929] - usb: xhci: remove irrelevant comment (Desnes Nunes) [RHEL-78929] - usb: xhci: add help function xhci_dequeue_td() (Desnes Nunes) [RHEL-78929] - usb: xhci: refactor xhci_td_cleanup() to return void (Desnes Nunes) [RHEL-78929] - usb: xhci: remove unused arguments from td_to_noop() (Desnes Nunes) [RHEL-78929] - usb: xhci: improve xhci_clear_command_ring() (Desnes Nunes) [RHEL-78929] - usb: xhci: request MSI/-X according to requested amount (Desnes Nunes) [RHEL-78929] - usb: xhci: move link TRB quirk to xhci_gen_setup() (Desnes Nunes) [RHEL-78929] - usb: xhci: simplify TDs start and end naming scheme in struct 'xhci_td' (Desnes Nunes) [RHEL-78929] - xhci: pci: Fix indentation in the PCI device ID definitions (Desnes Nunes) [RHEL-78929] - xhci: pci: Use standard pattern for device IDs (Desnes Nunes) [RHEL-78929] - xhci: Don't perform Soft Retry for Etron xHCI host (Desnes Nunes) [RHEL-78929] - xhci: Fix control transfer error on Etron xHCI host (Desnes Nunes) [RHEL-78929] - xhci: Don't issue Reset Device command to Etron xHCI host (Desnes Nunes) [RHEL-78929] - xhci: Combine two if statements for Etron xHCI host (Desnes Nunes) [RHEL-78929] - usb: xhci: add xhci_initialize_ring_segments() (Desnes Nunes) [RHEL-78929] - usb: xhci: rework xhci_link_segments() (Desnes Nunes) [RHEL-78929] - usb: xhci: refactor xhci_link_rings() to use source and destination rings (Desnes Nunes) [RHEL-78929] - usb: xhci: rework xhci_free_segments_for_ring() (Desnes Nunes) [RHEL-78929] - usb: xhci: adjust xhci_alloc_segments_for_ring() arguments (Desnes Nunes) [RHEL-78929] - usb: xhci: remove option to change a default ring's TRB cycle bit (Desnes Nunes) [RHEL-78929] - usb: xhci: introduce macro for ring segment list iteration (Desnes Nunes) [RHEL-78929] - xhci: debugfs: Add virt endpoint state to xhci debugfs (Desnes Nunes) [RHEL-78929] - xhci: trace stream context at Set TR Deq command completion (Desnes Nunes) [RHEL-78929] - xhci: add stream context tracing (Desnes Nunes) [RHEL-78929] - xhci: Don't trace ring at every enqueue or dequeue increase (Desnes Nunes) [RHEL-78929] - xhci: show DMA address of TRB when tracing TRBs (Desnes Nunes) [RHEL-78929] - xhci: Cleanup Candence controller PCI device and vendor ID usage (Desnes Nunes) [RHEL-78929] - usb: xhci: Fix sum_trb_lengths() (Desnes Nunes) [RHEL-78929] - usb: xhci: Remove unused parameters of next_trb() (Desnes Nunes) [RHEL-78929] - xhci: Add Isochronous TRB fields to TRB tracer (Desnes Nunes) [RHEL-78929] - phy: tegra: xusb: Set fwnode for xusb port devices (Desnes Nunes) [RHEL-78929] - usb: Use (of|device)_property_present() for non-boolean properties (Desnes Nunes) [RHEL-78929] - dt-bindings: usb: qcom,dwc3: Add SAR2130P compatible (Desnes Nunes) [RHEL-78929] - misc: rtsx: Cleanup on DRV_NAME cardreader variables (Desnes Nunes) [RHEL-78929] - usb: use "prompt" instead of "bool" for choice prompts (Desnes Nunes) [RHEL-78929] - redhat/configs: Adding CONFIG_TYPEC_MUX_TUSB1046 (Desnes Nunes) [RHEL-78929] - usb: typec: mux: Add support for the TUSB1046 crosspoint switch (Desnes Nunes) [RHEL-78929] - dt-bindings: usb: Describe TUSB1046 crosspoint switch (Desnes Nunes) [RHEL-78929] - USB: xhci: add support for PWRON active high (Desnes Nunes) [RHEL-78929] - dt-bindings: usb: add TUSB73x0 PCIe (Desnes Nunes) [RHEL-78929] - usb: typec: tcpm: Add support for parsing time dt properties (Desnes Nunes) [RHEL-78929] - thunderbolt: debugfs: Implement asymmetric lane margining (Desnes Nunes) [RHEL-78929] - thunderbolt: debugfs: Don't hardcode margining results size (Desnes Nunes) [RHEL-78929] - thunderbolt: debugfs: Refactor hardware margining result parsing (Desnes Nunes) [RHEL-78929] - thunderbolt: debugfs: Replace margining lane numbers with an enum (Desnes Nunes) [RHEL-78929] - thunderbolt: debugfs: Replace "both lanes" with "all lanes" (Desnes Nunes) [RHEL-78929] - thunderbolt: debugfs: Implement Gen 4 margining eye selection (Desnes Nunes) [RHEL-78929] - thunderbolt: debugfs: Add USB4 Gen 4 margining capabilities (Desnes Nunes) [RHEL-78929] - thunderbolt: Don't hardcode margining capabilities size (Desnes Nunes) [RHEL-78929] - usb: core: use sysfs_emit() instead of sprintf() (Desnes Nunes) [RHEL-78929] - dt-bindings: connector: Add properties to define time values (Desnes Nunes) [RHEL-78929] - usb: storage: fix wrong comments for struct bulk_cb_wrap (Desnes Nunes) [RHEL-78929] - usb: storage: use US_BULK_FLAG_OUT instead of constant values (Desnes Nunes) [RHEL-78929] - usb: dwc3: gadget: Refine the logic for resizing Tx FIFOs (Desnes Nunes) [RHEL-78929] - usb: typec: ucsi: Helper for Get Connector Status command (Desnes Nunes) [RHEL-78929] - media: cx231xx: Remove some deadcode (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Stop stream during unregister (Desnes Nunes) [RHEL-78929] - phy: Switch back to struct platform_driver::remove() (Desnes Nunes) [RHEL-78929] - xhci: add helper to stop endpoint and wait for completion (Desnes Nunes) [RHEL-78929] - usb: typec: ucsi: Add support for the partner USB Modes (Desnes Nunes) [RHEL-78929] - usb: typec: ucsi: Supply the USB capabilities to the ports (Desnes Nunes) [RHEL-78929] - usb: typec: Add attribute file showing the USB Modes of the partner (Desnes Nunes) [RHEL-78929] - usb: typec: Add attribute file showing the supported USB modes of the port (Desnes Nunes) [RHEL-78929] - usb: require FMODE_WRITE for usbdev_mmap() (Desnes Nunes) [RHEL-78929] - usb: gadget: uvc: configfs: Add frame-based frame format support (Desnes Nunes) [RHEL-78929] - dt-bindings: phy: qcom,qusb2: Add bindings for QCS615 (Desnes Nunes) [RHEL-78929] - dt-bindings: phy: qcom,msm8998-qmp-usb3-phy: Add support for QCS615 (Desnes Nunes) [RHEL-78929] - usb: typec: ucsi: UCSI2.0 Set Sink Path command support (Desnes Nunes) [RHEL-78929] - usb: typec: ucsi: Do not call ACPI _DSM method for UCSI read operations (Desnes Nunes) [RHEL-78929] - media: anysee: Fix and remove outdated comment (Desnes Nunes) [RHEL-78929] - memstick: Constify struct memstick_device_id (Desnes Nunes) [RHEL-78929] - mmc: Switch back to struct platform_driver::remove() (Desnes Nunes) [RHEL-78929] - memstick: Fix typo in comment (Desnes Nunes) [RHEL-78929] - USB: chaoskey: Fix possible deadlock chaoskey_list_lock (Desnes Nunes) [RHEL-78929] - media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 (Desnes Nunes) [RHEL-78929] - media: cx231xx: Fix the S-Video capture on August VGB100 (Desnes Nunes) [RHEL-78929] - media: Switch back to struct platform_driver::remove() (Desnes Nunes) [RHEL-78929] - media: pvrusb2: Use kmemdup_array instead of kmemdup for multiple allocation (Desnes Nunes) [RHEL-78929] - phy: qcom: qmp: Add qmp configuration for QCS8300 (Desnes Nunes) [RHEL-78929] - dt-bindings: phy: qcom,sc8280xp-qmp-usb3-uni: Add QCS8300 compatible (Desnes Nunes) [RHEL-78929] - dt-bindings: phy: qcom,usb-snps-femto-v2: Add bindings for QCS8300 (Desnes Nunes) [RHEL-78929] - dt-bindings: usb: qcom,dwc3: Add QCS8300 to USB DWC3 bindings (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Exit early if there is not int_urb (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Avoid race condition during unregister (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Refactor the status irq API (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Require entities to have a non-zero unique ID (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Force UVC version to 1.0a for 0408:4033 (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Add a quirk for the Kaiweets KTI-W02 infrared camera (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Add support for the D3DFMT_R5G6B5 pixmap type (Desnes Nunes) [RHEL-78929] - media: uvcvideo: RealSense D421 Depth module metadata (Desnes Nunes) [RHEL-78929] - media: uvcvideo: Add luma 16-bit interlaced pixel format (Desnes Nunes) [RHEL-78929] - dt-bindings: usb: dwc3-imx8mp: add compatible string for imx95 (Desnes Nunes) [RHEL-78929] - dt-bindings: phy: imx8mq-usb: add compatible "fsl,imx95-usb-phy" (Desnes Nunes) [RHEL-78929] - USB: chaoskey: fail open after removal (Desnes Nunes) [RHEL-78929] - usb: yurex: make waiting on yurex_write interruptible (Desnes Nunes) [RHEL-78929] - usb: using mutex lock and supporting O_NONBLOCK flag in iowarrior_read() (Desnes Nunes) [RHEL-78929] - usb: chipidea: udc: improve error recovery for ISO transfer (Desnes Nunes) [RHEL-78929] - usb: chipidea: udc: improve dTD link logic (Desnes Nunes) [RHEL-78929] - usb: chipidea: udc: handle USB Error Interrupt if IOC not set (Desnes Nunes) [RHEL-78929] - usb: chipidea: udc: create bounce buffer for problem sglist entries if possible (Desnes Nunes) [RHEL-78929] - usb: chipidea: udc: limit usb request length to max 16KB (Desnes Nunes) [RHEL-78929] - usb: chipidea: add CI_HDRC_HAS_SHORT_PKT_LIMIT flag (Desnes Nunes) [RHEL-78929] - dt-bindings: usb: cypress,cypd4226: Drop Tegra specific GPIO defines (Desnes Nunes) [RHEL-78929] - usb: Switch back to struct platform_driver::remove() (Desnes Nunes) [RHEL-78929] - dt-bindings: usb: genesys,gl850g: allow downstream device subnodes (Desnes Nunes) [RHEL-78929] - usb: typec: stusb160x: Make use of i2c_get_match_data() (Desnes Nunes) [RHEL-78929] - usb: typec: tcpm: use max() to get higher value (Desnes Nunes) [RHEL-78929] - usb: dwc3: Correct some typos in comments (Desnes Nunes) [RHEL-78929] - usb: typec: Fix typo in comment (Desnes Nunes) [RHEL-78929] - usb: gadget: udc: fix typo in the comment (Desnes Nunes) [RHEL-78929] - usb: host: fix typo in the comment (Desnes Nunes) [RHEL-78929] - redhat/configs: delete CONFIG_USB_ONBOARD_HUB and use CONFIG_USB_ONBOARD_DEV instead (Desnes Nunes) [RHEL-78929] - sched_ext: Fix pick_task_scx() picking non-queued tasks when it's called without balance() (Phil Auld) [RHEL-80978] - sched_ext: Use SCX_CALL_OP_TASK in task_tick_scx (Phil Auld) [RHEL-80978] - sched_ext: Fix the incorrect bpf_list kfunc API in common.bpf.h. (Phil Auld) [RHEL-80978] - sched_ext: selftests: Fix grammar in tests description (Phil Auld) [RHEL-80978] - sched_ext: Fix incorrect assumption about migration disabled tasks in task_can_run_on_remote_rq() (Phil Auld) [RHEL-80978] - sched_ext: Fix migration disabled handling in targeted dispatches (Phil Auld) [RHEL-80978] - sched_ext: Implement auto local dispatching of migration disabled tasks (Phil Auld) [RHEL-80978] - sched_ext: Fix incorrect time delta calculation in time_delta() (Phil Auld) [RHEL-80978] - sched_ext: Fix lock imbalance in dispatch_to_local_dsq() (Phil Auld) [RHEL-80978] - sched_ext: selftests/dsp_local_on: Fix selftest on UP systems (Phil Auld) [RHEL-80978] - tools/sched_ext: Add helper to check task migration state (Phil Auld) [RHEL-80978] - sched_ext: selftests/dsp_local_on: Fix sporadic failures (Phil Auld) [RHEL-80978] - selftests/sched_ext: Fix enum resolution (Phil Auld) [RHEL-80978] - sched_ext: Include task weight in the error state dump (Phil Auld) [RHEL-80978] - sched_ext: Fixes typos in comments (Phil Auld) [RHEL-80978] - sched_ext: fix kernel-doc warnings (Phil Auld) [RHEL-80978] - sched_ext: idle: Refresh idle masks during idle-to-idle transitions (Phil Auld) [RHEL-80978] - sched_ext: Use time helpers in BPF schedulers (Phil Auld) [RHEL-80978] - sched_ext: Replace bpf_ktime_get_ns() to scx_bpf_now() (Phil Auld) [RHEL-80978] - sched_ext: Add time helpers for BPF schedulers (Phil Auld) [RHEL-80978] - sched_ext: Add scx_bpf_now() for BPF scheduler (Phil Auld) [RHEL-80978] - sched_ext: Implement scx_bpf_now() (Phil Auld) [RHEL-80978] - sched_ext: Relocate scx_enabled() related code (Phil Auld) [RHEL-80978] - sched_ext: switch class when preempted by higher priority scheduler (Phil Auld) [RHEL-80978] - sched_ext: Replace rq_lock() to raw_spin_rq_lock() in scx_ops_bypass() (Phil Auld) [RHEL-80978] - sched_ext: keep running prev when prev->scx.slice != 0 (Phil Auld) [RHEL-80978] - sched_ext: Add option -l in selftest runner to list all available tests (Phil Auld) [RHEL-80978] - sched_ext: Include remaining task time slice in error state dump (Phil Auld) [RHEL-80978] - sched_ext: update scx_bpf_dsq_insert() doc for SCX_DSQ_LOCAL_ON (Phil Auld) [RHEL-80978] - sched_ext: idle: small CPU iteration refactoring (Phil Auld) [RHEL-80978] - sched_ext: idle: introduce check_builtin_idle_enabled() helper (Phil Auld) [RHEL-80978] - sched_ext: idle: clarify comments (Phil Auld) [RHEL-80978] - sched_ext: idle: use assign_cpu() to update the idle cpumask (Phil Auld) [RHEL-80978] - sched_ext: Fix dsq_local_on selftest (Phil Auld) [RHEL-80978] - sched_ext: initialize kit->cursor.flags (Phil Auld) [RHEL-80978] - sched_ext: Use str_enabled_disabled() helper in update_selcpu_topology() (Phil Auld) [RHEL-80978] - sched_ext: Use sizeof_field for key_len in dsq_hash_params (Phil Auld) [RHEL-80978] - tools/sched_ext: Receive updates from SCX repo (Phil Auld) [RHEL-80978] - sched_ext: Fix invalid irq restore in scx_ops_bypass() (Phil Auld) [RHEL-80978] - scx: Fix maximal BPF selftest prog (Phil Auld) [RHEL-80978] - sched_ext: Use the NUMA scheduling domain for NUMA optimizations (Phil Auld) [RHEL-80978] - sched_ext: fix application of sizeof to pointer (Phil Auld) [RHEL-80978] - selftests/sched_ext: fix build after renames in sched_ext API (Phil Auld) [RHEL-80978] - sched_ext: Replace scx_next_task_picked() with switch_class() in comment (Phil Auld) [RHEL-80978] - sched_ext: Add __weak to fix the build errors (Phil Auld) [RHEL-80978] - sched_ext: Rename scx_bpf_dispatch[_vtime]_from_dsq*() -> scx_bpf_dsq_move[_vtime]*() (Phil Auld) [RHEL-80978] - sched_ext: Rename scx_bpf_consume() to scx_bpf_dsq_move_to_local() (Phil Auld) [RHEL-80978] - sched_ext: Rename scx_bpf_dispatch[_vtime]() to scx_bpf_dsq_insert[_vtime]() (Phil Auld) [RHEL-80978] - sched_ext: scx_bpf_dispatch_from_dsq_set_*() are allowed from unlocked context (Phil Auld) [RHEL-80978] - sched_ext: add a missing rcu_read_lock/unlock pair at scx_select_cpu_dfl() (Phil Auld) [RHEL-80978] - sched_ext: Clarify sched_ext_ops table for userland scheduler (Phil Auld) [RHEL-80978] - sched_ext: Enable the ops breather and eject BPF scheduler on softlockup (Phil Auld) [RHEL-80978] - sched_ext: Avoid live-locking bypass mode switching (Phil Auld) [RHEL-80978] - sched_ext: Fix incorrect use of bitwise AND (Phil Auld) [RHEL-80978] - sched_ext: Do not enable LLC/NUMA optimizations when domains overlap (Phil Auld) [RHEL-80978] - sched/ext: Remove sched_fork() hack (Phil Auld) [RHEL-80978] - sched_ext: improve WAKE_SYNC behavior for default idle CPU selection (Phil Auld) [RHEL-80978] - sched_ext: Introduce NUMA awareness to the default idle selection policy (Phil Auld) [RHEL-80978] - sched_ext: Replace set_arg_maybe_null() with __nullable CFI stub tags (Phil Auld) [RHEL-80978] - sched_ext: Rename CFI stubs to names that are recognized by BPF (Phil Auld) [RHEL-80978] - sched_ext: Introduce LLC awareness to the default idle selection policy (Phil Auld) [RHEL-80978] - sched_ext: Clarify ops.select_cpu() for single-CPU tasks (Phil Auld) [RHEL-80978] - sched_ext: Use btf_ids to resolve task_struct (Phil Auld) [RHEL-80978] - sched_ext: Factor out move_task_between_dsqs() from scx_dispatch_from_dsq() (Phil Auld) [RHEL-80978] - sched/ext: Use tg_cgroup() to elieminate duplicate code (Phil Auld) [RHEL-80978] - sched/ext: Fix unmatch trailing comment of CONFIG_EXT_GROUP_SCHED (Phil Auld) [RHEL-80978] - arp: switch to dev_getbyhwaddr() in arp_req_set_public() (Guillaume Nault) [RHEL-84539] - net: Add non-RCU dev_getbyhwaddr() helper (Guillaume Nault) [RHEL-84539] - ipv4: icmp: convert to dev_net_rcu() (Guillaume Nault) [RHEL-84539] - ipv4: use RCU protection in inet_select_addr() (Guillaume Nault) [RHEL-84539] - ipv4: use RCU protection in rt_is_expired() (Guillaume Nault) [RHEL-84539] - ipv4: use RCU protection in ipv4_default_advmss() (Guillaume Nault) [RHEL-84539] - ipv4: use RCU protection in ip_dst_mtu_maybe_forward() (Guillaume Nault) [RHEL-84539] - ipv4: add RCU protection to ip4_dst_hoplimit() (Guillaume Nault) [RHEL-84539] - ipmr: do not call mr_mfc_uses_dev() for unres entries (Guillaume Nault) [RHEL-84539] - ppp: Fix KMSAN uninit-value warning with bpf (Guillaume Nault) [RHEL-84548] - net: decrease cached dst counters in dst_release (Antoine Tenart) [RHEL-86690] - zram: fix potential UAF of zram table (Ming Lei) [RHEL-77219] {CVE-2025-21671} - zram: fix uninitialized ZRAM not releasing backing device (Ming Lei) [RHEL-77219] - Revert "nvme_core: scan namespaces asynchronously" (Maurizio Lombardi) [RHEL-85845] - samples/bpf: fix build (Gregory Bell) [RHEL-70466] - ipv6: Set errno after ip_fib_metrics_init() in ip6_route_info_create(). (CKI Backport Bot) [RHEL-84540] - ipv6: Fix memleak of nhc_pcpu_rth_output in fib_check_nh_v6_gw(). (CKI Backport Bot) [RHEL-84540] - inet: ipmr: fix data-races (CKI Backport Bot) [RHEL-84540] - netlink: add IPv6 anycast join/leave notifications (CKI Backport Bot) [RHEL-84540] - netlink: correct nlmsg size for multicast notifications (CKI Backport Bot) [RHEL-84540] - netlink: add IGMP/MLD join/leave notifications (CKI Backport Bot) [RHEL-84540] - ipv6: mcast: annotate data-race around psf->sf_count[MCAST_XXX] (CKI Backport Bot) [RHEL-84540] - ipv6: mcast: annotate data-races around mc->mca_sfcount[MCAST_EXCLUDE] (CKI Backport Bot) [RHEL-84540] - ipv6: mcast: reduce ipv6_chk_mcast_addr() indentation (CKI Backport Bot) [RHEL-84540] - ip6mr: Add __init to ip6_mr_cleanup(). (CKI Backport Bot) [RHEL-84540] - ipv6: Remove redundant unlikely() (CKI Backport Bot) [RHEL-84540] - vfio/pci: Handle INTx IRQ_NOTCONNECTED (Alex Williamson) [RHEL-85587 RHEL-85591] - vfio/virtio: Enable support for virtio-block live migration (Alex Williamson) [RHEL-85587] - vfio/type1: Use mapping page mask for pfnmaps (Alex Williamson) [RHEL-85587] - mm: Provide address mask in struct follow_pfnmap_args (Alex Williamson) [RHEL-85587] - vfio/type1: Use consistent types for page counts (Alex Williamson) [RHEL-85587] - vfio/type1: Use vfio_batch for vaddr_get_pfns() (Alex Williamson) [RHEL-85587] - vfio/type1: Convert all vaddr_get_pfns() callers to use vfio_batch (Alex Williamson) [RHEL-85587] - vfio/type1: Catch zero from pin_user_pages_remote() (Alex Williamson) [RHEL-85587] - vfio/pci: match IGD devices in display controller class (Alex Williamson) [RHEL-85587] - vfio/nvgrace-gpu: Add GB200 SKU to the devid table (Alex Williamson) [RHEL-85587] - vfio/nvgrace-gpu: Check the HBM training and C2C link status (Alex Williamson) [RHEL-85587] - vfio/nvgrace-gpu: Expose the blackwell device PF BAR1 to the VM (Alex Williamson) [RHEL-85587] - vfio/nvgrace-gpu: Read dvsec register to determine need for uncached resmem (Alex Williamson) [RHEL-85587] - vfio/platform: check the bounds of read/write syscalls (Alex Williamson) [RHEL-85587] - vfio/pci: Expose setup ROM at ROM bar when needed (Alex Williamson) [RHEL-85587] - vfio/pci: Remove shadow ROM specific code paths (Alex Williamson) [RHEL-85587] - vfio/pci: Remove #ifdef iowrite64 and #ifdef ioread64 (Alex Williamson) [RHEL-85587] - vfio/pci: Enable iowrite64 and ioread64 for vfio pci (Alex Williamson) [RHEL-85587] - vfio/virtio: Enable live migration once VIRTIO_PCI was configured (Alex Williamson) [RHEL-85587] - vfio/virtio: Add PRE_COPY support for live migration (Alex Williamson) [RHEL-85587] - vfio/virtio: Add support for the basic live migration functionality (Alex Williamson) [RHEL-85587] - virtio-pci: Introduce APIs to execute device parts admin commands (Alex Williamson) [RHEL-85587] - virtio: Manage device and driver capabilities via the admin commands (Alex Williamson) [RHEL-85587] - virtio: Extend the admin command to include the result size (Alex Williamson) [RHEL-85587] - virtio_pci: Introduce device parts access commands (Alex Williamson) [RHEL-85587] - Documentation: add debugfs description for hisi migration (Alex Williamson) [RHEL-85587] - hisi_acc_vfio_pci: register debugfs for hisilicon migration driver (Alex Williamson) [RHEL-85587] - hisi_acc_vfio_pci: create subfunction for data reading (Alex Williamson) [RHEL-85587] - hisi_acc_vfio_pci: extract public functions for container_of (Alex Williamson) [RHEL-85587] - vfio/qat: fix overflow check in qat_vf_resume_write() (Alex Williamson) [RHEL-85587] - vfio/nvgrace-gpu: Add a new GH200 SKU to the devid table (Alex Williamson) [RHEL-85587] - kvm/vfio: Constify struct kvm_device_ops (Alex Williamson) [RHEL-85587] - redhat/configs: enable in kernel compression/decompression of compressed modules (Herton R. Krzesinski) [RHEL-79278] - redhat: change compression flags for xz (Herton R. Krzesinski) [RHEL-79278] - dm-flakey: Fix memory corruption in optional corrupt_bio_byte feature (Benjamin Marzinski) [RHEL-84777] - dm vdo: add missing spin_lock_init (Benjamin Marzinski) [RHEL-59337] - dm-integrity: Do not emit journal configuration in DM table for Inline mode (Benjamin Marzinski) [RHEL-84777] - dm-integrity: Avoid divide by zero in table status in Inline mode (Benjamin Marzinski) [RHEL-84777] - dm-crypt: track tag_offset in convert_context (Benjamin Marzinski) [RHEL-84777] - dm-crypt: don't initialize cc_sector again (Benjamin Marzinski) [RHEL-84777] - dm-crypt: don't update io->sector after kcryptd_crypt_write_io_submit() (Benjamin Marzinski) [RHEL-84777] - dm-crypt: use bi_sector in bio when initialize integrity seed (Benjamin Marzinski) [RHEL-84777] - dm-crypt: fully initialize clone->bi_iter in crypt_alloc_buffer() (Benjamin Marzinski) [RHEL-84777] - dm-crypt: set atomic as false when calling crypt_convert() in kworker (Benjamin Marzinski) [RHEL-84777] - dm-mirror: Support atomic writes (Benjamin Marzinski) [RHEL-84777] - dm-io: Warn on creating multiple atomic write bios for a region (Benjamin Marzinski) [RHEL-84777] - dm-stripe: Enable atomic writes (Benjamin Marzinski) [RHEL-84777] - dm-linear: Enable atomic writes (Benjamin Marzinski) [RHEL-84777] - dm: Ensure cloned bio is same length for atomic write (Benjamin Marzinski) [RHEL-84777] - dm-table: atomic writes support (Benjamin Marzinski) [RHEL-84777] - dm-transaction-manager: use red-black trees instead of linear lists (Benjamin Marzinski) [RHEL-84777] - dm: disable REQ_NOWAIT for flushes (Benjamin Marzinski) [RHEL-84777] - dm: remove useless test in alloc_multiple_bios (Benjamin Marzinski) [RHEL-84777] - dm: change kzalloc to kcalloc (Benjamin Marzinski) [RHEL-84777] - dm raid: fix spelling errors in raid_ctr() (Benjamin Marzinski) [RHEL-84777] - dm thin: make get_first_thin use rcu-safe list first function (Benjamin Marzinski) [RHEL-84777] - dm-ebs: don't set the flag DM_TARGET_PASSES_INTEGRITY (Benjamin Marzinski) [RHEL-84777] - dm-verity FEC: Avoid copying RS parity bytes twice. (Benjamin Marzinski) [RHEL-84777] - dm-verity FEC: Fix RS FEC repair for roots unaligned to block size (take 2) (Benjamin Marzinski) [RHEL-84777] - dm array: fix cursor index when skipping across block boundaries (Benjamin Marzinski) [RHEL-84777] - dm array: fix unreleased btree blocks on closing a faulty array cursor (Benjamin Marzinski) [RHEL-84777] - dm-verity: remove the unused "data_start" variable (Benjamin Marzinski) [RHEL-84777] - dm-bufio: use kmalloc to allocate power-of-two sized buffers (Benjamin Marzinski) [RHEL-84777] - dm thin: Add missing destroy_work_on_stack() (Benjamin Marzinski) [RHEL-84777] - dm: add support for get_unique_id (Benjamin Marzinski) [RHEL-84777] - dm vdo: fix function doc comment formatting (Benjamin Marzinski) [RHEL-84777] - dm vdo int-map: remove unused parameters (Benjamin Marzinski) [RHEL-84777] - dm-vdo: reset bi_ioprio to the default value when the bio is reset (Benjamin Marzinski) [RHEL-84777] - dm-vdo murmurhash: remove u64 alignment requirement (Benjamin Marzinski) [RHEL-84777] - dm: Fix typo in error message (Benjamin Marzinski) [RHEL-84777] - dm ioctl: rate limit a couple of ioctl based error messages (Benjamin Marzinski) [RHEL-84777] - dm vdo: Remove unused uds_compute_index_size (Benjamin Marzinski) [RHEL-84777] - dm vdo: Remove unused functions (Benjamin Marzinski) [RHEL-84777] - dm: zoned: Remove unused functions (Benjamin Marzinski) [RHEL-84777] - dm: Remove unused dm_table_bio_based (Benjamin Marzinski) [RHEL-84777] - dm: Remove unused dm_set_md_type (Benjamin Marzinski) [RHEL-84777] - dm cache: Remove unused functions in bio-prison-v1 (Benjamin Marzinski) [RHEL-84777] - dm cache: Remove unused dm_cache_size (Benjamin Marzinski) [RHEL-84777] - dm cache: Remove unused dm_cache_dump (Benjamin Marzinski) [RHEL-84777] - dm cache: Remove unused btracker_nr_writebacks_queued (Benjamin Marzinski) [RHEL-84777] - redhat/kernel.spec.template: add net packetdrill selftests (Hangbin Liu) [RHEL-84659] - ptp: Properly handle compat ioctls (CKI Backport Bot) [RHEL-84646] - ptp: Ensure info->enable callback is always set (CKI Backport Bot) [RHEL-84646] {CVE-2025-21814} - gitlab-ci: set automotive dist-tag (Scott Weaver) - sched/core: Prevent rescheduling when interrupts are disabled (Phil Auld) [RHEL-78822] - sched: Don't define sched_clock_irqtime as static key (Phil Auld) [RHEL-78822] - sched: Compact RSEQ concurrency IDs with reduced threads and affinity (Phil Auld) [RHEL-78822] - getdelays: fix error format characters (Phil Auld) [RHEL-78822] - taskstats: modify taskstats version (Phil Auld) [RHEL-78822] - sched/debug: Provide slice length for fair tasks (Phil Auld) [RHEL-78822] - hung_task: add task->flags, blocked by coredump to log (Phil Auld) [RHEL-78822] - cpufreq/schedutil: Only bind threads if needed (Phil Auld) [RHEL-78822] - sched/fair: Fix inaccurate h_nr_runnable accounting with delayed dequeue (Phil Auld) [RHEL-78822] - tracing: Print lazy preemption model (Phil Auld) [RHEL-78822] - psi: Fix race when task wakes up before psi_sched_switch() adjusts flags (Phil Auld) [RHEL-78822] - sched/fair: Do not compute overloaded status unnecessarily during lb (Phil Auld) [RHEL-78822] - sched/fair: Do not compute NUMA Balancing stats unnecessarily during lb (Phil Auld) [RHEL-78822] - sched, psi: Don't account irq time if sched_clock_irqtime is disabled (Phil Auld) [RHEL-78822] - sched: Don't account irq time if sched_clock_irqtime is disabled (Phil Auld) [RHEL-78822] - sched: Define sched_clock_irqtime as static key (Phil Auld) [RHEL-78822] - sched/debug: Change need_resched warnings to pr_err (Phil Auld) [RHEL-78822] - sched/core: Prioritize migrating eligible tasks in sched_balance_rq() (Phil Auld) [RHEL-78822] - sched: Fix race between yield_to() and try_to_wake_up() (Phil Auld) [RHEL-78822] - sched/fair: Encapsulate set custom slice in a __setparam_fair() function (Phil Auld) [RHEL-78822] - sched/fair: Fix update_cfs_group() vs DELAY_DEQUEUE (Phil Auld) [RHEL-78822] - delayacct: add delay min to record delay peak (Phil Auld) [RHEL-78822] - delayacct: add delay max to record delay peak (Phil Auld) [RHEL-78822] - sched/fair: Fix EEVDF entity placement bug causing scheduling lag (Phil Auld) [RHEL-78822] - preempt: Move PREEMPT_RT before PREEMPT in vermagic. (Phil Auld) [RHEL-78822] - sched/fair: Update comments after sched_tick() rename. (Phil Auld) [RHEL-78822] - powerpc: Large user copy aware of full:rt:lazy preemption (Phil Auld) [RHEL-78822] - powerpc: Add preempt lazy support (Phil Auld) [RHEL-78822] - PM: EM: Move sched domains rebuild function from schedutil to EM (Phil Auld) [RHEL-78822] - PM: EM: Add min/max available performance state limits (Phil Auld) [RHEL-78822] - cpufreq: schedutil: Fix superfluous updates caused by need_freq_update (Phil Auld) [RHEL-78822] - sched/fair: Fix CPU bandwidth limit bypass during CPU hotplug (Phil Auld) [RHEL-78822] - sched: deadline: Cleanup goto label in pick_earliest_pushable_dl_task (Phil Auld) [RHEL-78822] - sched/fair: Mark m*_vruntime() with __maybe_unused (Phil Auld) [RHEL-78822] - sched/fair: Untangle NEXT_BUDDY and pick_next_task() (Phil Auld) [RHEL-78822] - sched/fair: Fix variable declaration position (Phil Auld) [RHEL-78822] - sched/fair: Do not try to migrate delayed dequeue task (Phil Auld) [RHEL-78822] - sched/fair: Rename cfs_rq.nr_running into nr_queued (Phil Auld) [RHEL-78822] - sched/fair: Remove unused cfs_rq.idle_nr_running (Phil Auld) [RHEL-78822] - sched/fair: Rename cfs_rq.idle_h_nr_running into h_nr_idle (Phil Auld) [RHEL-78822] - sched/fair: Removed unsued cfs_rq.h_nr_delayed (Phil Auld) [RHEL-78822] - sched/fair: Use the new cfs_rq.h_nr_runnable (Phil Auld) [RHEL-78822] - sched/fair: Add new cfs_rq.h_nr_runnable (Phil Auld) [RHEL-78822] - sched/fair: Rename h_nr_running into h_nr_queued (Phil Auld) [RHEL-78822] - sched: Unify HK_TYPE_{TIMER|TICK|MISC} to HK_TYPE_KERNEL_NOISE (Phil Auld) [RHEL-78822] - sched/isolation: Consolidate housekeeping cpumasks that are always identical (Phil Auld) [RHEL-78822] - sched/isolation: Make "isolcpus=nohz" equivalent to "nohz_full" (Phil Auld) [RHEL-78822] - sched/core: Remove HK_TYPE_SCHED (Phil Auld) [RHEL-78822] - sched/deadline: Check bandwidth overflow earlier for hotplug (Phil Auld) [RHEL-78822] - sched/deadline: Correctly account for allocated bandwidth during hotplug (Phil Auld) [RHEL-78822] - sched/deadline: Consolidate Timer Cancellation (Phil Auld) [RHEL-78822] - sched/fair: Remove CONFIG_CFS_BANDWIDTH=n definition of cfs_bandwidth_used() (Phil Auld) [RHEL-78822] - sched: Don't try to catch up excess steal time. (Phil Auld) [RHEL-78822] - sched: add READ_ONCE to task_on_rq_queued (Phil Auld) [RHEL-78822] - sched/deadline: Restore dl_server bandwidth on non-destructive root domain changes (Phil Auld) [RHEL-78822] - sched/core: Update kernel boot parameters for LAZY preempt. (Phil Auld) [RHEL-78822] - Revert "redhat: Fix CONFIG_PREEMPT_RT for RT and AUTO kernels" (Phil Auld) [RHEL-78822] - s390: Add ARCH_HAS_PREEMPT_LAZY support (Phil Auld) [RHEL-78822] - s390: Add missing _TIF defines (Phil Auld) [RHEL-78822] - tracing: Record task flag NEED_RESCHED_LAZY. (Phil Auld) [RHEL-78822] - tracing: Remove TRACE_FLAG_IRQS_NOSUPPORT (Phil Auld) [RHEL-78822] - sched/cpufreq: Ensure sd is rebuilt for EAS check (Phil Auld) [RHEL-78822] - sched, x86: Update the comment for TIF_NEED_RESCHED_LAZY. (Phil Auld) [RHEL-78822] - sched: No PREEMPT_RT=y for all{yes,mod}config (Phil Auld) [RHEL-78822] - riscv: add PREEMPT_LAZY support (Phil Auld) [RHEL-78822] - sched: Enable PREEMPT_DYNAMIC for PREEMPT_RT (Phil Auld) [RHEL-78822] - sched: Add Lazy preemption model (Phil Auld) [RHEL-78822] - sched, x86: Enable Lazy preemption (Phil Auld) [RHEL-78822] - sched: Initialize idle tasks only once (Phil Auld) [RHEL-78822] - sched: Add TIF_NEED_RESCHED_LAZY infrastructure (Phil Auld) [RHEL-78822] - sched: psi: pass enqueue/dequeue flags to psi callbacks directly (Phil Auld) [RHEL-78822] - sched/uclamp: Fix unnused variable warning (Phil Auld) [RHEL-78822] - sched_getattr: port to copy_struct_to_user (Phil Auld) [RHEL-78822] - uaccess: add copy_struct_to_user helper (Phil Auld) [RHEL-78822] - sched: Split scheduler and execution contexts (Phil Auld) [RHEL-78822] - sched: Consolidate pick_*_task to task_is_pushable helper (Phil Auld) [RHEL-78822] - sched: Add move_queued_task_locked helper (Phil Auld) [RHEL-78822] - sched: Split out __schedule() deactivate task logic into a helper (Phil Auld) [RHEL-78822] - sched: idle: Optimize the generic idle loop by removing needless memory barrier (Phil Auld) [RHEL-78822] - sched: Improve cache locality of RSEQ concurrency IDs for intermittent workloads (Phil Auld) [RHEL-78822] - sched/fair: fix the comment for PREEMPT_SHORT (Phil Auld) [RHEL-78822] - sched/fair: optimize the PLACE_LAG when se->vlag is zero (Phil Auld) [RHEL-78822] - sched/wait: Remove unused bit_wait_io_timeout (Phil Auld) [RHEL-78822] - sched/fair: remove the DOUBLE_TICK feature (Phil Auld) [RHEL-78822] - redhat: Fix CONFIG_PREEMPT_RT for RT and AUTO kernels (Juri Lelli) [RHEL-78822] - Revert "riscv: add PREEMPT_AUTO support" (Juri Lelli) [RHEL-78822] - Revert "sched: define TIF_ALLOW_RESCHED" (Juri Lelli) [RHEL-78822] - Revert "sched: Update the lazy-preempt bits." (Juri Lelli) [RHEL-78822] - Revert "sched: Replace PREEMPT_AUTO with LAZY_PREEMPT." (Juri Lelli) [RHEL-78822] - perf annotate: Use an array for the disassembler preference (Michael Petlan) [RHEL-77935] - tools features: Don't check for libunwind devel files by default (Michael Petlan) [RHEL-77935] - tools build: Remove the libunwind feature tests from the ones detected when test-all.o builds (Michael Petlan) [RHEL-77935] - perf test: Fix parallel/sequential option documentation (Michael Petlan) [RHEL-77935] - perf stat: Remove empty new_line_metric function (Michael Petlan) [RHEL-77935] - perf stat: Also hide metric-units from JSON when event didn't run (Michael Petlan) [RHEL-77935] - perf stat: Fix trailing comma when there is no metric unit (Michael Petlan) [RHEL-77935] - perf test stat: Avoid hybrid assumption when virtualized (Michael Petlan) [RHEL-77935] - perf tools: Fixup end address of modules (Michael Petlan) [RHEL-77935] - perf symbol: Prefer non-label symbols with same address (Michael Petlan) [RHEL-77935] - docs: ABI: sysfs-bus-event_source-devices-vpa-pmu: Fix htmldocs errors (Michael Petlan) [RHEL-77935] - perf/x86/rapl: Remove the unused get_rapl_pmu_cpumask() function (Michael Petlan) [RHEL-77935] - ARM: pmuv3: Add missing write_pmuacr() (Michael Petlan) [RHEL-77935] - perf probe: Fix uninitialized variable (Michael Petlan) [RHEL-77935] - libperf: evlist: Fix --cpu argument on hybrid platform (Michael Petlan) [RHEL-77935] - perf test expr: Fix system_tsc_freq for only x86 (Michael Petlan) [RHEL-77935] - perf test hwmon_pmu: Fix event file location (Michael Petlan) [RHEL-77935] - perf hwmon_pmu: Use openat rather than dup to refresh directory (Michael Petlan) [RHEL-77935] - perf ftrace: Fix undefined behavior in cmp_profile_data() (Michael Petlan) [RHEL-77935] - perf tools: Fix precise_ip fallback logic (Michael Petlan) [RHEL-77935] - tools headers: Sync uapi/linux/perf_event.h with the kernel sources (Michael Petlan) [RHEL-77935] - perf test: Don't signal all processes on system when interrupting tests (Michael Petlan) [RHEL-77935] - perf tools: Fix build-id event recording (Michael Petlan) [RHEL-77935] - tools: Override makefile ARCH variable if defined, but empty (Michael Petlan) [RHEL-77935] - perf tests: Fix hwmon parsing with PMU name test (Michael Petlan) [RHEL-77935] - perf hwmon_pmu: Ensure hwmon key union is zeroed before use (Michael Petlan) [RHEL-77935] - perf tests hwmon_pmu: Remove double evlist__delete() (Michael Petlan) [RHEL-77935] - perf/test: fix perf ftrace test on s390 (Michael Petlan) [RHEL-77935] - perf bpf-filter: Return -ENOMEM directly when pfi allocation fails (Michael Petlan) [RHEL-77935] - perf test: Correct hwmon test PMU detection (Michael Petlan) [RHEL-77935] - perf: Remove unused del_perf_probe_events() (Michael Petlan) [RHEL-77935] - perf pmu: Move pmu_metrics_table__find and remove ARM override (Michael Petlan) [RHEL-77935] - perf jevents: Add map_for_cpu() (Michael Petlan) [RHEL-77935] - perf header: Pass a perf_cpu rather than a PMU to get_cpuid_str (Michael Petlan) [RHEL-77935] - perf header: Avoid transitive PMU includes (Michael Petlan) [RHEL-77935] - perf arm64 header: Use cpu argument in get_cpuid (Michael Petlan) [RHEL-77935] - perf header: Refactor get_cpuid to take a CPU for ARM (Michael Petlan) [RHEL-77935] - perf header: Move is_cpu_online to numa bench (Michael Petlan) [RHEL-77935] - perf jevents: fix breakage when do perf stat on system metric (Michael Petlan) [RHEL-77935] - perf test: Add missing __exit calls in tool/hwmon tests (Michael Petlan) [RHEL-77935] - perf tests: Make leader sampling test work without branch event (Michael Petlan) [RHEL-77935] - perf util: Remove kernel version deadcode (Michael Petlan) [RHEL-77935] - perf test shell trace_exit_race: Use --no-comm to avoid cases where COMM isn't resolved (Michael Petlan) [RHEL-77935] - perf test shell trace_exit_race: Show what went wrong in verbose mode (Michael Petlan) [RHEL-77935] - perf tests: Add test for trace output loss (Michael Petlan) [RHEL-77935] - perf trace: Avoid garbage when not printing a syscall's arguments (Michael Petlan) [RHEL-77935] - perf trace: Do not lose last events in a race (Michael Petlan) [RHEL-77935] - perf probe: Introduce quotation marks support (Michael Petlan) [RHEL-77935] - perf string: Add strpbrk_esq() and strdup_esq() for escape and quote (Michael Petlan) [RHEL-77935] - perf probe: Accept FUNC@* to specify function name explicitly (Michael Petlan) [RHEL-77935] - perf probe: Fix to ignore escaped characters in --lines option (Michael Petlan) [RHEL-77935] - perf probe: Fix error message for failing to find line range (Michael Petlan) [RHEL-77935] - perf trace: Fix tracing itself, creating feedback loops (Michael Petlan) [RHEL-77935] - libsubcmd: Move va_end() before exit (Michael Petlan) [RHEL-77935] - perf timechart: Remove redundant variable assignment (Michael Petlan) [RHEL-77935] - perf list: Fix topic and pmu_name argument order (Michael Petlan) [RHEL-77935] - perf tools: Fix typos Muliplier -> Multiplier (Michael Petlan) [RHEL-77935] - perf disasm: Allow configuring what disassemblers to use (Michael Petlan) [RHEL-77935] - perf disasm: Define stubs for the LLVM and capstone disassemblers (Michael Petlan) [RHEL-77935] - perf disasm: Introduce symbol__disassemble_objdump() (Michael Petlan) [RHEL-77935] - perf build: Remove PERF_HAVE_DWARF_REGS (Michael Petlan) [RHEL-77935] - perf dwarf-regs: Remove get_arch_regstr code (Michael Petlan) [RHEL-77935] - perf xtensa: Remove dwarf-regs.c (Michael Petlan) [RHEL-77935] - perf sparc: Remove dwarf-regs.c (Michael Petlan) [RHEL-77935] - perf sh: Remove dwarf-regs.c (Michael Petlan) [RHEL-77935] - perf s390: Remove dwarf-regs.c (Michael Petlan) [RHEL-77935] - perf riscv: Remove dwarf-regs.c and add dwarf-regs-table.h (Michael Petlan) [RHEL-77935] - perf dwarf-regs: Move powerpc dwarf-regs out of arch (Michael Petlan) [RHEL-77935] - perf mips: Remove dwarf-regs.c (Michael Petlan) [RHEL-77935] - perf loongarch: Remove dwarf-regs.c (Michael Petlan) [RHEL-77935] - perf dwarf-regs: Move csky dwarf-regs out of arch (Michael Petlan) [RHEL-77935] - perf arm: Remove dwarf-regs.c (Michael Petlan) [RHEL-77935] - perf arm64: Remove dwarf-regs.c (Michael Petlan) [RHEL-77935] - perf dwarf-regs: Move x86 dwarf-regs out of arch (Michael Petlan) [RHEL-77935] - perf dwarf-regs: Pass ELF flags to get_dwarf_regstr (Michael Petlan) [RHEL-77935] - perf dwarf-regs: Pass accurate disassembly machine to get_dwarf_regnum (Michael Petlan) [RHEL-77935] - perf disasm: Add e_machine/e_flags to struct arch (Michael Petlan) [RHEL-77935] - perf dwarf-regs: Add EM_HOST and EF_HOST defines (Michael Petlan) [RHEL-77935] - perf dwarf-regs: Remove PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET (Michael Petlan) [RHEL-77935] - perf bpf-prologue: Remove unused file (Michael Petlan) [RHEL-77935] - perf docs: Document tool and hwmon events (Michael Petlan) [RHEL-77935] - perf test: Add hwmon "PMU" test (Michael Petlan) [RHEL-77935] - perf pmu: Add calls enabling the hwmon_pmu (Michael Petlan) [RHEL-77935] - perf hwmon_pmu: Add a tool PMU exposing events from hwmon in sysfs (Michael Petlan) [RHEL-77935] - perf test: Add hwmon filename parser test (Michael Petlan) [RHEL-77935] - perf hwmon_pmu: Add hwmon filename parser (Michael Petlan) [RHEL-77935] - tools api io: Ensure line_len_out is always initialized (Michael Petlan) [RHEL-77935] - perf build: Include libtraceevent headers directly indicated by pkg-config (Michael Petlan) [RHEL-77935] - perf script python: Adjust objdump start/end per map pgoff parameter (Michael Petlan) [RHEL-77935] - perf script cs_etm: Add map_pgoff to python dictionary (Michael Petlan) [RHEL-77935] - perf stat: Expand metric+unit buffer size (Michael Petlan) [RHEL-77935] - perf tools: Add the empty-pmu-events build to .gitignore (Michael Petlan) [RHEL-77935] - perf: event: Remove deadcode (Michael Petlan) [RHEL-77935] - perf trace: avoid garbage when not printing a trace event's arguments (Michael Petlan) [RHEL-77935] - perf test: Fix ftrace test with regex patterns (Michael Petlan) [RHEL-77935] - perf test: Remove dangling CFLAGS for removed attr.o object (Michael Petlan) [RHEL-77935] - perf tools: Add all shellcheck_log to gitignore (Michael Petlan) [RHEL-77935] - perf build: Add missing cflags when building with custom libtraceevent (Michael Petlan) [RHEL-77935] - perf build: Make libunwind opt-in rather than opt-out (Michael Petlan) [RHEL-77935] - perf test: Use sqrtloop workload to test bperf event (Michael Petlan) [RHEL-77935] - perf stat: Support inherit events during fork() for bperf (Michael Petlan) [RHEL-77935] - perf arm-spe: Use old behavior when opening old SPE files (Michael Petlan) [RHEL-77935] - perf ftrace latency: Fix unit on histogram first entry when using --use-nsec (Michael Petlan) [RHEL-77935] - perf, riscv: Wire up perf trace support for RISC-V (Michael Petlan) [RHEL-77935] - perf probe: Fix retrieval of source files from a debuginfod server (Michael Petlan) [RHEL-77935] - perf arm-spe: Update --itrace help text (Michael Petlan) [RHEL-77935] - perf arm-spe: Correctly set sample flags (Michael Petlan) [RHEL-77935] - perf arm-spe: Use ARM_SPE_OP_BRANCH_ERET when synthesizing branches (Michael Petlan) [RHEL-77935] - perf arm-spe: Set sample.addr to target address for instruction sample (Michael Petlan) [RHEL-77935] - perf vendor events arm64: Add i.MX91 DDR Performance Monitor metrics (Michael Petlan) [RHEL-77935] - perf test: Sort tests placing exclusive tests last (Michael Petlan) [RHEL-77935] - perf test: Add a signal handler to kill forked child processes (Michael Petlan) [RHEL-77935] - perf test: Make parallel testing the default (Michael Petlan) [RHEL-77935] - perf test: Run parallel tests in two passes (Michael Petlan) [RHEL-77935] - perf test: Add a signal handler around running a test (Michael Petlan) [RHEL-77935] - perf test: Tag parallel failing shell tests with "(exclusive)" (Michael Petlan) [RHEL-77935] - perf test: Avoid list test blocking on writing to stdout (Michael Petlan) [RHEL-77935] - perf test: Reduce scope of parallel variable (Michael Petlan) [RHEL-77935] - perf test: Display number of active running tests (Michael Petlan) [RHEL-77935] - tools subcmd: Add non-waitpid check_if_command_finished() (Michael Petlan) [RHEL-77935] - perf disasm: Fix not cleaning up disasm_line in symbol__disassemble_raw() (Michael Petlan) [RHEL-77935] - perf disasm: Use disasm_line__free() to properly free disasm_line (Michael Petlan) [RHEL-77935] - perf disasm: Use disasm_line__free() to properly free disasm_line (Michael Petlan) [RHEL-77935] - perf test: Add precise_max subtest to the perf record shell test (Michael Petlan) [RHEL-77935] - perf record: Just use "cycles:P" as the default event (Michael Petlan) [RHEL-77935] - perf tools: Check fallback error and order (Michael Petlan) [RHEL-77935] - perf tools: Move x86__is_amd_cpu() to util/env.c (Michael Petlan) [RHEL-77935] - perf tools: Detect missing kernel features properly (Michael Petlan) [RHEL-77935] - perf tools: Do not set exclude_guest for precise_ip (Michael Petlan) [RHEL-77935] - perf tools: Simplify evsel__add_modifier() (Michael Petlan) [RHEL-77935] - perf tools: Don't set attr.exclude_guest by default (Michael Petlan) [RHEL-77935] - perf tools: Add fallback for exclude_guest (Michael Petlan) [RHEL-77935] - perf tools: sched-pipe bench: add (-n) nonblocking benchmark (Michael Petlan) [RHEL-77935] - perf test: Document the -w/--workload option (Michael Petlan) [RHEL-77935] - perf test: Introduce --list-workloads to list the available workloads (Michael Petlan) [RHEL-77935] - perf test: Introduce workloads__for_each() (Michael Petlan) [RHEL-77935] - perf vendor events amd: Update Zen 5 data cache fill events (Michael Petlan) [RHEL-77935] - perf vendor events amd: Add Zen 5 data fabric metrics (Michael Petlan) [RHEL-77935] - perf vendor events amd: Add Zen 5 data fabric events (Michael Petlan) [RHEL-77935] - perf test: Fix perf test case 84 on s390 (Michael Petlan) [RHEL-77935] - perf test: Update all metrics test like metricgroups test (Michael Petlan) [RHEL-77935] - perf build: Rename CONFIG_DWARF to CONFIG_LIBDW (Michael Petlan) [RHEL-77935] - perf build: Rename HAVE_DWARF_SUPPORT to HAVE_LIBDW_SUPPORT (Michael Petlan) [RHEL-77935] - perf libdw: Remove unnecessary defines (Michael Petlan) [RHEL-77935] - perf probe: Move elfutils support check to libdw check (Michael Petlan) [RHEL-77935] - perf build: Combine test-dwarf-getcfi into test-libdw (Michael Petlan) [RHEL-77935] - perf build: Combine test-dwarf-getlocations into test-libdw (Michael Petlan) [RHEL-77935] - perf build: Combine libdw-dwarf-unwind into libdw feature tests (Michael Petlan) [RHEL-77935] - perf build: Rename test-dwarf to test-libdw (Michael Petlan) [RHEL-77935] - perf build: Remove defined but never used variable (Michael Petlan) [RHEL-77935] - perf build: Rename NO_DWARF to NO_LIBDW (Michael Petlan) [RHEL-77935] - perf build: Fix LIBDW_DIR (Michael Petlan) [RHEL-77935] - perf test: Move attr files into shell directory where they are used (Michael Petlan) [RHEL-77935] - perf test: Remove C test wrapper for attr.py (Michael Petlan) [RHEL-77935] - perf test: Add a shell wrapper for "Setup struct perf_event_attr" (Michael Petlan) [RHEL-77935] - perf probe: Correct demangled symbols in C++ program (Michael Petlan) [RHEL-77935] - perf stat: Disable metric thresholds for CSV and JSON metric-only mode (Michael Petlan) [RHEL-77935] - perf stat: Add metric-threshold to json output (Michael Petlan) [RHEL-77935] - perf stat: Change color to threshold in print_metric (Michael Petlan) [RHEL-77935] - perf stat: Drop metric-unit if unit is NULL (Michael Petlan) [RHEL-77935] - perf stat: Display "none" for NaN with metric only json (Michael Petlan) [RHEL-77935] - perf stat: Fix/add parameter names for print_metric (Michael Petlan) [RHEL-77935] - perf color: Add printf format checking and resolve issues (Michael Petlan) [RHEL-77935] - perf probe: Fix libdw memory leak (Michael Petlan) [RHEL-77935] - perf disasm: Fix capstone memory leak (Michael Petlan) [RHEL-77935] - tools/perf/powerpc/util: Add support to handle compatible mode PVR for perf json events (Michael Petlan) [RHEL-77935] - tools/perf/pmu-events/powerpc: Add support for compat events in json (Michael Petlan) [RHEL-77935] - perf dso: Fix symtab_type for kmod compression (Michael Petlan) [RHEL-77935] - perf probe: Improve log for long event name failure (Michael Petlan) [RHEL-77935] - perf probe: Check group string length (Michael Petlan) [RHEL-77935] - perf probe: Use the MAX_EVENT_NAME_LEN macro (Michael Petlan) [RHEL-77935] - perf test: Speed up some tests using perf list (Michael Petlan) [RHEL-77935] - perf x86/topdown: Refine helper arch_is_topdown_metrics() (Michael Petlan) [RHEL-77935] - perf x86/topdown: Make topdown metrics comparators be symmetric (Michael Petlan) [RHEL-77935] - perf tool_pmu: Remove duplicate io.h header (Michael Petlan) [RHEL-77935] - perf arm-spe: Add Cortex CPUs to common data source encoding list (Michael Petlan) [RHEL-77935] - perf arm-spe: Add Neoverse-V2 to common data source encoding list (Michael Petlan) [RHEL-77935] - perf arm-spe: Remove the unused 'midr' field (Michael Petlan) [RHEL-77935] - perf arm-spe: Use metadata to decide the data source feature (Michael Petlan) [RHEL-77935] - perf arm-spe: Introduce arm_spe__is_homogeneous() (Michael Petlan) [RHEL-77935] - perf arm-spe: Rename the common data source encoding (Michael Petlan) [RHEL-77935] - perf arm-spe: Rename arm_spe__synth_data_source_generic() (Michael Petlan) [RHEL-77935] - perf test: Delete unused Intel CQM test (Michael Petlan) [RHEL-77935] - perf evsel: Fix missing inherit + sample read check (Michael Petlan) [RHEL-77935] - perf sched timehist: Add pre-migration wait time option (Michael Petlan) [RHEL-77935] - perf tools: Remove unnecessary parentheses (Michael Petlan) [RHEL-77935] - perf tools: Fix possible compiler warnings in hashmap (Michael Petlan) [RHEL-77935] - perf tools: Fix compiler error in util/tool_pmu.c (Michael Petlan) [RHEL-77935] - tools/perf/tests: Remove duplicate evlist__delete in tests/tool_pmu.c (Michael Petlan) [RHEL-77935] - tools/perf/tests: Fix compilation error with strncpy in tests/tool_pmu (Michael Petlan) [RHEL-77935] - perf report: Display columns Predicted/Abort/Cycles in --branch-history (Michael Petlan) [RHEL-77935] - perf tests: Add tool PMU test (Michael Petlan) [RHEL-77935] - perf tool_pmu: Switch to standard pmu functions and json descriptions (Michael Petlan) [RHEL-77935] - perf jevents: Add tool event json under a common architecture (Michael Petlan) [RHEL-77935] - perf tool_pmu: Move expr literals to tool_pmu (Michael Petlan) [RHEL-77935] - perf tool_pmu: Rename perf_tool_event__* to tool_pmu__* (Michael Petlan) [RHEL-77935] - perf tool_pmu: Rename enum perf_tool_event to tool_pmu_event (Michael Petlan) [RHEL-77935] - perf tool_pmu: Factor tool events into their own PMU (Michael Petlan) [RHEL-77935] - perf parse-events: Expose/rename config_term_name (Michael Petlan) [RHEL-77935] - perf pmu: Allow hardcoded terms to be applied to attributes (Michael Petlan) [RHEL-77935] - perf pmu: Simplify an asprintf error message (Michael Petlan) [RHEL-77935] - perf tools: Remove unused color_fwrite_lines (Michael Petlan) [RHEL-77935] - perf test x86: Fix typo in intel-pt-test (Michael Petlan) [RHEL-77935] - perf probe: Remove unused add_perf_probe_events (Michael Petlan) [RHEL-77935] - perf test attr: Add back missing topdown events (Michael Petlan) [RHEL-77935] - perf arm-spe: Dump metadata with version 2 (Michael Petlan) [RHEL-77935] - perf arm-spe: Support metadata version 2 (Michael Petlan) [RHEL-77935] - perf arm-spe: Save per CPU information in metadata (Michael Petlan) [RHEL-77935] - perf arm-spe: Calculate meta data size (Michael Petlan) [RHEL-77935] - perf arm-spe: Define metadata header version 2 (Michael Petlan) [RHEL-77935] - perf list: update option desc in man page (Michael Petlan) [RHEL-77935] - perf test: Restore sample rate for perf_event_attr (Michael Petlan) [RHEL-77935] - perf/test: perf test 86 fails on s390 (Michael Petlan) [RHEL-77935] - tools/perf: Allow inherit + PERF_SAMPLE_READ when opening events (Michael Petlan) [RHEL-77935] - tools/perf: Correctly calculate sample period for inherited SAMPLE_READ values (Michael Petlan) [RHEL-77935] - perf test: Skip not fail syscall tp fields test when insufficient permissions (Michael Petlan) [RHEL-77935] - perf test: Skip not fail tp fields test when insufficient permissions (Michael Petlan) [RHEL-77935] - perf test: Fix memory leaks on event-times error paths (Michael Petlan) [RHEL-77935] - perf stat: Fix affinity memory leaks on error path (Michael Petlan) [RHEL-77935] - perf jevents: Don't stop at the first matched pmu when searching a events table (Michael Petlan) [RHEL-77935] - perf tests: Add more topdown events regroup tests (Michael Petlan) [RHEL-77935] - perf tests: Add topdown events counting and sampling tests (Michael Petlan) [RHEL-77935] - perf tests: Add leader sampling test in record tests (Michael Petlan) [RHEL-77935] - perf x86/topdown: Don't move topdown metric events in group (Michael Petlan) [RHEL-77935] - perf x86/topdown: Correct leader selection with sample_read enabled (Michael Petlan) [RHEL-77935] - perf x86/topdown: Complete topdown slots/metrics events check (Michael Petlan) [RHEL-77935] - perf evsel: Reduce a variables scope (Michael Petlan) [RHEL-77935] - perf vender events arm64: Use "Topdown" as topdown metric group name (Michael Petlan) [RHEL-77935] - perf test: Use ARRAY_SIZE for array length (Michael Petlan) [RHEL-77935] - perf/test: Speed up test case perf annotate basic tests (Michael Petlan) [RHEL-77935] - perf mem: Fix printing PERF_MEM_LVLNUM_{L2_MHB|MSC} (Michael Petlan) [RHEL-77935] - perf sched replay: Remove unused parts of the code (Michael Petlan) [RHEL-77935] - libperf: Explicitly specify install-html dependencies (Michael Petlan) [RHEL-77935] - perf test: Add a test for default perf stat command (Michael Petlan) [RHEL-77935] - perf test: Make stat test work on DT devices (Michael Petlan) [RHEL-77935] - perf evsel: Remove pmu_name (Michael Petlan) [RHEL-77935] - perf evsel x86: Make evsel__has_perf_metrics work for legacy events (Michael Petlan) [RHEL-77935] - perf stat: Remove evlist__add_default_attrs use strings (Michael Petlan) [RHEL-77935] - perf stat: Uniquify event name improvements (Michael Petlan) [RHEL-77935] - perf evsel: Add alternate_hw_config and use in evsel__match (Michael Petlan) [RHEL-77935] - perf test: Ignore security failures in all PMU test (Michael Petlan) [RHEL-77935] - perf symbol: Do not fixup end address of labels (Michael Petlan) [RHEL-77935] - perf vendor events arm64: imx95: add imx95_bandwidth_usage.lpddr4x metric (Michael Petlan) [RHEL-77935] - perf stat: Stop repeating when ref_perf_stat() returns -1 (Michael Petlan) [RHEL-77935] - perf stat: Close cork_fd when create_perf_stat_counter() failed (Michael Petlan) [RHEL-77935] - perf evsel: display dmesg command of showing a hardcoded path (Michael Petlan) [RHEL-77935] - perf test: cs-etm: Test Coresight disassembly script (Michael Petlan) [RHEL-77935] - perf scripts python cs-etm: Add start and stop arguments (Michael Petlan) [RHEL-77935] - perf scripts python cs-etm: Improve arguments (Michael Petlan) [RHEL-77935] - perf scripts python cs-etm: Update to use argparse (Michael Petlan) [RHEL-77935] - perf scripting python: Add function to get a config value (Michael Petlan) [RHEL-77935] - perf cs-etm: Use new OpenCSD consistency checks (Michael Petlan) [RHEL-77935] - perf cs-etm: Don't flush when packet_queue fills up (Michael Petlan) [RHEL-77935] - perf test: Be more tolerant of metricgroup failures (Michael Petlan) [RHEL-77935] - perf tools: update expected diff for lib/list_sort.c (Michael Petlan) [RHEL-77935] - tools/lib/list_sort: remove unnecessary header includes (Michael Petlan) [RHEL-77935] - lib/list_sort: remove unnecessary header includes (Michael Petlan) [RHEL-77935] - libsubcmd: Silence compiler warning (Michael Petlan) [RHEL-77935] - perf/x86/intel: Fix bitmask of OCR and FRONTEND events for LNC (Michael Petlan) [RHEL-77935] - perf/x86/intel/ds: Add PEBS format 6 (Michael Petlan) [RHEL-77935] - perf/x86/intel/uncore: Add Clearwater Forest support (Michael Petlan) [RHEL-77935] - perf/x86/intel/ds: Unconditionally drain PEBS DS when changing PEBS_DATA_CFG (Michael Petlan) [RHEL-77935] - perf/hw_breakpoint: use ERR_PTR_PCPU(), IS_ERR_PCPU() and PTR_ERR_PCPU() macros (Michael Petlan) [RHEL-77935] - powerpc/perf: Add per-task/process monitoring to vpa_pmu driver (Michael Petlan) [RHEL-77935] - powerpc/kvm: Add vpa latency counters to kvm_vcpu_arch (Michael Petlan) [RHEL-77935] - docs: ABI: sysfs-bus-event_source-devices-vpa-pmu: Document sysfs event format entries for vpa_pmu (Michael Petlan) [RHEL-77935] - powerpc/perf: Add perf interface to expose vpa counters (Michael Petlan) [RHEL-77935] - redhat/configs: enable VPA_PMU on PowerPC (Michael Petlan) [RHEL-77935] - perf/core: Correct perf sampling with guest VMs (Michael Petlan) [RHEL-77935] - perf/x86: Refactor misc flag assignments (Michael Petlan) [RHEL-77935] - perf/powerpc: Use perf_arch_instruction_pointer() (Michael Petlan) [RHEL-77935] - perf/core: Hoist perf_instruction_pointer() and perf_misc_flags() (Michael Petlan) [RHEL-77935] - perf/arm: Drop unused functions (Michael Petlan) [RHEL-77935] - perf/x86/amd/uncore: Avoid a false positive warning about snprintf truncation in amd_uncore_umc_ctx_init (Michael Petlan) [RHEL-77935] - perf/x86/intel: Do not enable large PEBS for events with aux actions or aux sampling (Michael Petlan) [RHEL-77935] - perf/x86/intel/pt: Add support for pause / resume (Michael Petlan) [RHEL-77935] - perf/core: Add aux_pause, aux_resume, aux_start_paused (Michael Petlan) [RHEL-77935] - perf/x86/intel/pt: Fix buffer full but size is 0 case (Michael Petlan) [RHEL-77935] - perf/x86/rapl: Clean up cpumask and hotplug (Michael Petlan) [RHEL-77935] - perf/x86/rapl: Move the pmu allocation out of CPU hotplug (Michael Petlan) [RHEL-77935] - perf/x86/amd: Warn only on new bits set (Michael Petlan) [RHEL-77935] - perf/x86/intel: Add PMU support for ArrowLake-H (Michael Petlan) [RHEL-77935] - perf/x86/intel: Support hybrid PMU with multiple atom uarchs (Michael Petlan) [RHEL-77935] - x86/cpu/intel: Define helper to get CPU core native ID (Michael Petlan) [RHEL-77935] - perf/x86: Refine hybrid_pmu_type defination (Michael Petlan) [RHEL-77935] - perf/arm_pmuv3: Add PMUv3.9 per counter EL0 access control (Michael Petlan) [RHEL-77935] - x86/topology: Use x86_sched_itmt_flags for PKG domain unconditionally (Steve Best) [RHEL-53783] - x86/topology: Remove x86_smt_flags and use cpu_smt_flags directly (Steve Best) [RHEL-53783] - x86/itmt: Move the "sched_itmt_enabled" sysctl to debugfs (Steve Best) [RHEL-53783] - x86/cpu: Enable SD_ASYM_PACKING for PKG domain on AMD (Steve Best) [RHEL-53783] - x86/cpufeatures: Add X86_FEATURE_AMD_HETEROGENEOUS_CORES (Steve Best) [RHEL-53783] - x86/itmt: Use guard() for itmt_update_mutex (Steve Best) [RHEL-53783] - x86/itmt: Convert "sysctl_sched_itmt_enabled" to boolean (Steve Best) [RHEL-53783] - selftests: net: bump GRO timeout for gro/setup_veth (Hangbin Liu) [RHEL-84558] - selftests: net: bpf_offload: add 'libbpf_global' to ignored maps (Hangbin Liu) [RHEL-84558] - selftests: net: fix error message in bpf_offload (Hangbin Liu) [RHEL-84558] - selftests: openvswitch: don't hardcode the drop reason subsys (Hangbin Liu) [RHEL-84558] - selftests: net: report output format as TAP 13 in Python tests (Hangbin Liu) [RHEL-84558] - selftests/net: deflake GRO tests (Hangbin Liu) [RHEL-84558] - selftests/net: only print passing message in GRO tests when tests pass (Hangbin Liu) [RHEL-84558] - selftests/net: have `gro.sh -t` return a correct exit code (Hangbin Liu) [RHEL-84558] - selftests: net: Fix minor typos in MPTCP and psock tests (Hangbin Liu) [RHEL-84558] - selftests: net: Fix few spelling mistakes (Hangbin Liu) [RHEL-84558] - selftests: net: fix grammar in reuseaddr_ports_exhausted.c log message (Hangbin Liu) [RHEL-84558] - selftests: net: suppress ReST file generation when building selftests (Hangbin Liu) [RHEL-84558] - selftests: net: give up on the cmsg_time accuracy on slow machines (Hangbin Liu) [RHEL-84558] - selftests/net/ipsec: Fix Null pointer dereference in rtattr_pack() (Hangbin Liu) [RHEL-84558] - selftests/net/forwarding: teamd command not found (Hangbin Liu) [RHEL-84558] - selftests: drv-net: assume stats refresh is 0 if no ethtool -c support (Hangbin Liu) [RHEL-84558] - selftests: forwarding: add a pvid_change test to bridge_vlan_unaware (Hangbin Liu) [RHEL-84558] - selftests/net: call sendmmsg via udpgso_bench.sh (Hangbin Liu) [RHEL-84558] - selftests: net: test extacks in netlink dumps (Hangbin Liu) [RHEL-84558] - selftests: net: add more info to error in bpf_offload (Hangbin Liu) [RHEL-84558] - selftests/net: Fix ./ns-XXXXXX not cleanup (Hangbin Liu) [RHEL-84558] - selftests: net: add new ioam tests (Hangbin Liu) [RHEL-84558] - selftests: net: remove ioam tests (Hangbin Liu) [RHEL-84558] - selftests: net: csum: Clean up recv_verify_packet_ipv6 (Hangbin Liu) [RHEL-84558] - Fix mmu notifiers for range-based invalidates (Charles Mirabile) [RHEL-83460] - netfilter: nf_conncount: Fully initialize struct nf_conncount_tuple in insert_tree() (CKI Backport Bot) [RHEL-84544] - netfilter: nf_conncount: garbage collection is not skipped when jiffies wrap around (CKI Backport Bot) [RHEL-84544] - netfilter: nft_flow_offload: update tcp state flags under lock (CKI Backport Bot) [RHEL-84544] - netfilter: nft_flow_offload: clear tcp MAXACK flag before moving to slowpath (CKI Backport Bot) [RHEL-84544] - netfilter: conntrack: rework offload nf_conn timeout extension logic (CKI Backport Bot) [RHEL-84544] - netfilter: conntrack: remove skb argument from nf_ct_refresh (CKI Backport Bot) [RHEL-84544] - netfilter: conntrack: add conntrack event timestamp (CKI Backport Bot) [RHEL-84544] - netfilter: xt_hashlimit: htable_selective_cleanup() optimization (CKI Backport Bot) [RHEL-84544] - netfilter: nf_tables: make destruction work queue pernet (CKI Backport Bot) [RHEL-84544] - netfilter: nft_exthdr: fix offset with ipv4_find_option() (CKI Backport Bot) [RHEL-84544] - netfilter: nft_ct: Use __refcount_inc() for per-CPU nft_ct_pcpu_template. (CKI Backport Bot) [RHEL-84544] - netfilter: nf_tables: allocate element update information dynamically (CKI Backport Bot) [RHEL-84544] - netfilter: nf_tables: switch trans_elem to real flex array (CKI Backport Bot) [RHEL-84544] - netfilter: nf_tables: prepare nft audit for set element compaction (CKI Backport Bot) [RHEL-84544] - netfilter: nf_tables: prepare for multiple elements in nft_trans_elem structure (CKI Backport Bot) [RHEL-84544] - netfilter: nf_tables: add nft_trans_commit_list_add_elem helper (CKI Backport Bot) [RHEL-84544] - netfilter: nf_tables: prefer nft_trans_elem_alloc helper (CKI Backport Bot) [RHEL-84544] - netfilter: nfnetlink: Report extack policy errors for batched ops (CKI Backport Bot) [RHEL-84544] - padata: avoid UAF for reorder_work (Waiman Long) [RHEL-81531] {CVE-2025-21726} - padata: fix UAF in padata_reorder (Waiman Long) [RHEL-81531] - padata: add pd get/put refcnt helper (Waiman Long) [RHEL-81531] - padata: fix sysfs store callback check (Waiman Long) [RHEL-81531] - padata: Clean up in padata_do_multithreaded() (Waiman Long) [RHEL-81531] - RDMA/core: Support link status events dispatching (Kamal Heib) [RHEL-78090] - RDMA/core: Add ib_query_netdev_port() to query netdev port by IB device. (Kamal Heib) [RHEL-78090] - RDMA/core: Remove unused ib_copy_path_rec_from_user (Kamal Heib) [RHEL-78090] - RDMA/core: Remove unused ibdev_printk (Kamal Heib) [RHEL-78090] - RDMA/core: Remove unused ib_find_exact_cached_pkey (Kamal Heib) [RHEL-78090] - RDMA/core: Remove unused ib_ud_header_unpack (Kamal Heib) [RHEL-78090] - RDMA/srp: Fix error handling in srp_add_port (Kamal Heib) [RHEL-78090] - net: Add options as a flexible array to struct ip_tunnel_info (Paolo Valerio) [RHEL-64164] - ip_tunnel: Use ip_tunnel_info() helper instead of 'info + 1' (Paolo Valerio) [RHEL-64164] - redhat: drop Y issues from changelog (Jan Stancek) - vxlan: check vxlan_vnigroup_init() return value (CKI Backport Bot) [RHEL-81519] {CVE-2025-21790} - selftests/mm: run_vmtests.sh: fix half_ufd_size_MB calculation (Rafael Aquini) [RHEL-80077] - selftests: bonding: fix incorrect mac address (Hangbin Liu) [RHEL-59463] - bonding: fix incorrect MAC address setting to receive NS messages (Hangbin Liu) [RHEL-59463] - mm/hugetlb: fix hugepage allocation for interleaved memory nodes (CKI Backport Bot) [RHEL-62726] - main.c: fix initcall blacklisted (Tomas Henzl) [RHEL-83271] - pm: cpupower: remove hard-coded topology depth values (Steve Best) [RHEL-86398] - pm: cpupower: Fix cmd_monitor() error legs to free cpu_topology (Steve Best) [RHEL-86398] - cpupower: monitor: Exit with error status if execvp() fail (Steve Best) [RHEL-86398] - tools/power turbostat: v2025.05.06 (Steve Best) [RHEL-86246] - tools/power turbostat: disable "cpuidle" invocation counters, by default (Steve Best) [RHEL-86246] - tools/power turbostat: re-factor sysfs code (Steve Best) [RHEL-86246] - tools/power turbostat: Restore GFX sysfs fflush() call (Steve Best) [RHEL-86246] - tools/power turbostat: report CoreThr per measurement interval (Steve Best) [RHEL-86246] - tools/power turbostat: Increase CPU_SUBSET_MAXCPUS to 8192 (Steve Best) [RHEL-86246] - tools/power turbostat: Add idle governor statistics reporting (Steve Best) [RHEL-86246] - tools/power turbostat: Fix names matching (Steve Best) [RHEL-86246] - tools/power turbostat: Allow Zero return value for some RAPL registers (Steve Best) [RHEL-86246] - tools/power turbostat: Clustered Uncore MHz counters should honor show/hide options (Steve Best) [RHEL-86246] - x86/cpu: Fix #define name for Intel CPU model 0x5A (Steve Best) [RHEL-86246] - vxlan: Fix uninit-value in vxlan_vnifilter_dump() (Guillaume Nault) [RHEL-84555] - NFS: Fix potential buffer overflowin nfs_sysfs_link_rpc_client() (CKI Backport Bot) [RHEL-81067] {CVE-2024-54456} - net: fix NULL pointer dereference in l3mdev_l3_rcv (Davide Caratti) [RHEL-84550] - ipvlan: ensure network headers are in skb linear part (Davide Caratti) [RHEL-84550] {CVE-2025-21891} - tipc: Reduce scope for the variable “fdefq” in tipc_link_tnl_prepare() (Xin Long) [RHEL-84567] - tipc: re-order conditions in tipc_crypto_key_rcv() (Xin Long) [RHEL-84567] - net: tipc: remove one synchronize_net() from tipc_nametbl_stop() (Xin Long) [RHEL-84567] - pnfs/flexfiles: retry getting layout segment for reads (Benjamin Coddington) [RHEL-77609] - nfs: fix incorrect error handling in LOCALIO (Benjamin Coddington) [RHEL-77609] - nfs: probe for LOCALIO when v3 client reconnects to server (Benjamin Coddington) [RHEL-77609] - nfs: probe for LOCALIO when v4 client reconnects to server (Benjamin Coddington) [RHEL-77609] - nfs/localio: remove redundant code and simplify LOCALIO enablement (Benjamin Coddington) [RHEL-77609] - nfs_common: add nfs_localio trace events (Benjamin Coddington) [RHEL-77609] - nfs_common: track all open nfsd_files per LOCALIO nfs_client (Benjamin Coddington) [RHEL-77609] - nfs_common: rename nfslocalio nfs_uuid_lock to nfs_uuids_lock (Benjamin Coddington) [RHEL-77609] - nfsd: nfsd_file_acquire_local no longer returns GC'd nfsd_file (Benjamin Coddington) [RHEL-77609] - nfsd: rename nfsd_serv_ prefixed methods and variables with nfsd_net_ (Benjamin Coddington) [RHEL-77609] - nfsd: update percpu_ref to manage references on nfsd_net (Benjamin Coddington) [RHEL-77609] - nfs: cache all open LOCALIO nfsd_file(s) in client (Benjamin Coddington) [RHEL-77609] - nfs_common: move localio_lock to new lock member of nfs_uuid_t (Benjamin Coddington) [RHEL-77609] - nfs_common: rename functions that invalidate LOCALIO nfs_clients (Benjamin Coddington) [RHEL-77609] - nfsd: add nfsd_file_{get,put} to 'nfs_to' nfsd_localio_operations (Benjamin Coddington) [RHEL-77609] - nfs/localio: add direct IO enablement with sync and async IO support (Benjamin Coddington) [RHEL-77609] - NFS: RHEL-10 disable localio (Benjamin Coddington) [RHEL-80503] - mei: me: add panther lake P DID (Steve Best) [RHEL-79719] - s390/diag: Move diag.c to diag specific folder (Mete Durlu) [RHEL-72674] - s390/diag324: Retrieve power readings via diag 0x324 (Mete Durlu) [RHEL-72674] - s390/diag: Create misc device /dev/diag (Mete Durlu) [RHEL-72674] - powerpc/pseries/iommu: memory notifier incorrectly adds TCEs for pmemory (Mamatha Inamdar) [RHEL-85949] - rtc: pcf85063: fix potential OOB write in PCF85063 NVMEM read (CKI Backport Bot) [RHEL-82459] {CVE-2024-58069} - PCI: vmd: Make vmd_dev::cfg_lock a raw_spinlock_t type (Myron Stowe) [RHEL-83150] - redhat/configs: disable CONFIG_NVME_TARGET_PCI_EPF (Maurizio Lombardi) [RHEL-83544] - nvmet: pci-epf: Do not add an IRQ vector if not needed (Maurizio Lombardi) [RHEL-83544] - nvmet: pci-epf: Set NVMET_PCI_EPF_Q_LIVE when a queue is fully created (Maurizio Lombardi) [RHEL-83544] - nvme-pci: fix stuck reset on concurrent DPC and HP (Maurizio Lombardi) [RHEL-83544] - block: change blk_mq_add_to_batch() third argument type to bool (Maurizio Lombardi) [RHEL-83544] - nvme: move error logging from nvme_end_req() to __nvme_end_req() (Maurizio Lombardi) [RHEL-83544] - nvme-tcp: fix signedness bug in nvme_tcp_init_connection() (Maurizio Lombardi) [RHEL-83544] - nvmet-tcp: Fix a possible sporadic response drops in weakly ordered arch (Maurizio Lombardi) [RHEL-83544] - nvme-tcp: fix potential memory corruption in nvme_tcp_recv_pdu() (Maurizio Lombardi) [RHEL-83544] - nvme-tcp: Fix a C2HTermReq error message (Maurizio Lombardi) [RHEL-83544] - nvmet: remove old function prototype (Maurizio Lombardi) [RHEL-83544] - nvme-ioctl: fix leaked requests on mapping error (Maurizio Lombardi) [RHEL-83544] - nvme-pci: skip CMB blocks incompatible with PCI P2P DMA (Maurizio Lombardi) [RHEL-83544] - nvme-pci: clean up CMBMSC when registering CMB fails (Maurizio Lombardi) [RHEL-83544] - nvme-tcp: fix possible UAF in nvme_tcp_poll (Maurizio Lombardi) [RHEL-83544] - nvme: only allow entering LIVE from CONNECTING state (Maurizio Lombardi) [RHEL-83544] - nvme-fc: rely on state transitions to handle connectivity loss (Maurizio Lombardi) [RHEL-83544] - apple-nvme: Support coprocessors left idle (Maurizio Lombardi) [RHEL-83544] - apple-nvme: Release power domains when probe fails (Maurizio Lombardi) [RHEL-83544] - nvmet: Use enum definitions instead of hardcoded values (Maurizio Lombardi) [RHEL-83544] - nvme: Cleanup the definition of the controller config register fields (Maurizio Lombardi) [RHEL-83544] - nvme/ioctl: add missing space in err message (Maurizio Lombardi) [RHEL-83544] - nvme-tcp: fix connect failure on receiving partial ICResp PDU (Maurizio Lombardi) [RHEL-83544] - nvme: tcp: Fix compilation warning with W=1 (Maurizio Lombardi) [RHEL-83544] - nvmet: pci-epf: Avoid RCU stalls under heavy workload (Maurizio Lombardi) [RHEL-83544] - nvmet: pci-epf: Do not uselessly write the CSTS register (Maurizio Lombardi) [RHEL-83544] - nvmet: pci-epf: Correctly initialize CSTS when enabling the controller (Maurizio Lombardi) [RHEL-83544] - nvmet-rdma: recheck queue state is LIVE in state lock in recv done (Maurizio Lombardi) [RHEL-83544] - nvmet: Fix crash when a namespace is disabled (Maurizio Lombardi) [RHEL-83544] {CVE-2025-21850} - nvme-tcp: add basic support for the C2HTermReq PDU (Maurizio Lombardi) [RHEL-83544] - nvme-pci: quirk Acer FA100 for non-uniqueue identifiers (Maurizio Lombardi) [RHEL-83544] - nvme-fc: use ctrl state getter (Maurizio Lombardi) [RHEL-83544] - nvme: make nvme_tls_attrs_group static (Maurizio Lombardi) [RHEL-83544] - nvmet: add a missing endianess conversion in nvmet_execute_admin_connect (Maurizio Lombardi) [RHEL-83544] - nvmet: the result field in nvmet_alloc_ctrl_args is little endian (Maurizio Lombardi) [RHEL-83544] - nvmet: fix a memory leak in controller identify (Maurizio Lombardi) [RHEL-83544] - nvme-fc: do not ignore connectivity loss during connecting (Maurizio Lombardi) [RHEL-83544] - nvme: handle connectivity loss in nvme_set_queue_count (Maurizio Lombardi) [RHEL-83544] - nvme-fc: go straight to connecting state when initializing (Maurizio Lombardi) [RHEL-83544] - nvme-pci: Add TUXEDO IBP Gen9 to Samsung sleep quirk (Maurizio Lombardi) [RHEL-83544] - nvme-pci: Add TUXEDO InfinityFlex to Samsung sleep quirk (Maurizio Lombardi) [RHEL-83544] - nvme-pci: remove redundant dma frees in hmb (Maurizio Lombardi) [RHEL-83544] - nvmet: fix rw control endian access (Maurizio Lombardi) [RHEL-83544] - nvme: fix bogus kzalloc() return check in nvme_init_effects_log() (Maurizio Lombardi) [RHEL-83544] - nvme-pci: use correct size to free the hmb buffer (Maurizio Lombardi) [RHEL-83544] - nvme: Add error path for xa_store in nvme_init_effects (Maurizio Lombardi) [RHEL-83544] - nvme-pci: fix comment typo (Maurizio Lombardi) [RHEL-83544] - nvmet: New NVMe PCI endpoint function target driver (Maurizio Lombardi) [RHEL-83544] - nvmet: Implement arbitration feature support (Maurizio Lombardi) [RHEL-83544] - nvmet: Implement interrupt config feature support (Maurizio Lombardi) [RHEL-83544] - nvmet: Implement interrupt coalescing feature support (Maurizio Lombardi) [RHEL-83544] - nvmet: Implement host identifier set feature support (Maurizio Lombardi) [RHEL-83544] - nvmet: Introduce get/set_feature controller operations (Maurizio Lombardi) [RHEL-83544] - nvmet: Do not require SGL for PCI target controller commands (Maurizio Lombardi) [RHEL-83544] - nvmet: Add support for I/O queue management admin commands (Maurizio Lombardi) [RHEL-83544] - nvmet: Introduce nvmet_sq_create() and nvmet_cq_create() (Maurizio Lombardi) [RHEL-83544] - nvmet: Introduce nvmet_req_transfer_len() (Maurizio Lombardi) [RHEL-83544] - nvmet: Improve nvmet_alloc_ctrl() interface and implementation (Maurizio Lombardi) [RHEL-83544] - nvme: Add PCI transport type (Maurizio Lombardi) [RHEL-83544] - nvmet: Add drvdata field to struct nvmet_ctrl (Maurizio Lombardi) [RHEL-83544] - nvmet: Introduce nvmet_get_cmd_effects_admin() (Maurizio Lombardi) [RHEL-83544] - nvmet: Export nvmet_update_cc() and nvmet_cc_xxx() helpers (Maurizio Lombardi) [RHEL-83544] - nvmet: Add vendor_id and subsys_vendor_id subsystem attributes (Maurizio Lombardi) [RHEL-83544] - nvme: Move opcode string helper functions declarations (Maurizio Lombardi) [RHEL-83544] - nvme: change return type of nvme_poll_cq() to bool (Maurizio Lombardi) [RHEL-83544] - nvme: Add error check for xa_store in nvme_get_effects_log (Maurizio Lombardi) [RHEL-83544] - nvme-tcp: Fix I/O queue cpu spreading for multiple controllers (Maurizio Lombardi) [RHEL-83544] - nvmet: handle rw's limited retry flag (Maurizio Lombardi) [RHEL-83544] - nvme-tcp: remove nvme_tcp_destroy_io_queues() (Maurizio Lombardi) [RHEL-83544] - nvmet-loop: avoid using mutex in IO hotpath (Maurizio Lombardi) [RHEL-83544] - nvmet: propagate npwg topology (Maurizio Lombardi) [RHEL-83544] - nvme-pci: 512 byte aligned dma pool segment quirk (Maurizio Lombardi) [RHEL-83544] - nvme-tcp: simplify nvme_tcp_teardown_io_queues() (Maurizio Lombardi) [RHEL-83544] - nvme-tcp: no need to quiesce admin_q in nvme_tcp_teardown_io_queues() (Maurizio Lombardi) [RHEL-83544] - nvme-rdma: unquiesce admin_q before destroy it (Maurizio Lombardi) [RHEL-83544] {CVE-2024-49569} - nvme-tcp: fix the memleak while create new ctrl failed (Maurizio Lombardi) [RHEL-83544] {CVE-2024-56632} - nvmet: replace kmalloc + memset with kzalloc for data allocation (Maurizio Lombardi) [RHEL-83544] - nvme-fabrics: handle zero MAXCMD without closing the connection (Maurizio Lombardi) [RHEL-83544] - nvme-pci: remove two deallocate zeroes quirks (Maurizio Lombardi) [RHEL-83544] - nvme: don't apply NVME_QUIRK_DEALLOCATE_ZEROES when DSM is not supported (Maurizio Lombardi) [RHEL-83544] - nvmet: use kzalloc instead of ZERO_PAGE in nvme_execute_identify_ns_nvm() (Maurizio Lombardi) [RHEL-83544] - nvme: tuning pr code by using defined structs and macros (Maurizio Lombardi) [RHEL-83544] - nvme: introduce change ptpl and iekey definition (Maurizio Lombardi) [RHEL-83544] - nvme-fabrics: fix kernel crash while shutting down controller (Maurizio Lombardi) [RHEL-83544] {CVE-2024-53169} - Revert "nvme: make keep-alive synchronous operation" (Maurizio Lombardi) [RHEL-83544] - nvme-pci: use sgls for all user requests if possible (Maurizio Lombardi) [RHEL-83544] - nvme: define the remaining used sgls constants (Maurizio Lombardi) [RHEL-83544] - nvme-pci: add support for sgl metadata (Maurizio Lombardi) [RHEL-83544] - nvme/multipath: Fix RCU list traversal to use SRCU primitive (Maurizio Lombardi) [RHEL-83544] - nvmet: add tracing of reservation commands (Maurizio Lombardi) [RHEL-83544] - nvme: parse reservation commands's action and rtype to string (Maurizio Lombardi) [RHEL-83544] - nvmet: report ns's vwc not present (Maurizio Lombardi) [RHEL-83544] - nvme: check ns's volatile write cache not present (Maurizio Lombardi) [RHEL-83544] - nvme: add rotational support (Maurizio Lombardi) [RHEL-83544] - nvme: use command set independent id ns if available (Maurizio Lombardi) [RHEL-83544] - nvmet: support for csi identify ns (Maurizio Lombardi) [RHEL-83544] - nvmet: implement rotational media information log (Maurizio Lombardi) [RHEL-83544] - nvmet: implement endurance groups (Maurizio Lombardi) [RHEL-83544] - nvmet: declare 2.1 version compliance (Maurizio Lombardi) [RHEL-83544] - nvmet: implement crto property (Maurizio Lombardi) [RHEL-83544] - nvmet: implement supported features log (Maurizio Lombardi) [RHEL-83544] - nvmet: implement supported log pages (Maurizio Lombardi) [RHEL-83544] - nvmet: implement active command set ns list (Maurizio Lombardi) [RHEL-83544] - nvmet: implement id ns for nvm command set (Maurizio Lombardi) [RHEL-83544] - nvmet: support reservation feature (Maurizio Lombardi) [RHEL-83544] - redhat/configs: enable CONFIG_AMD_3D_VCACHE for x86 on RHEL (Steve Best) [RHEL-67850] - platform/x86/amd: amd_3d_vcache: Add AMD 3D V-Cache optimizer driver (Steve Best) [RHEL-67850] - KVM: arm64: Unconditionally save+flush host FPSIMD/SVE/SME state (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Apply RESx settings to sysreg reset values (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Always evaluate HCR_EL2 using sanitising accessors (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix alignment of kvm_hyp_memcache allocations (Sebastian Ott) [RHEL-82297] - tools headers: Sync arm64 kvm header with the kernel sources (Sebastian Ott) [RHEL-82297] - KVM: arm64: Initialize SCTLR_EL1 in __kvm_hyp_init_cpu() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Initialize HCR_EL2.E2H early (Sebastian Ott) [RHEL-82297] - KVM: arm64: Ensure a VMID is allocated before programming VTTBR_EL2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix tcr_el2 initialisation in hVHE mode (Sebastian Ott) [RHEL-82297] - KVM: arm64: vgic: Hoist SGI/PPI alloc from vgic_init() to kvm_create_vgic() (Sebastian Ott) [RHEL-82297] - KVM: arm64: timer: Drop warning on failed interrupt signalling (Sebastian Ott) [RHEL-82297] - KVM: arm64: Convert timer offset VA when accessed in HYP code (Sebastian Ott) [RHEL-82297] - KVM: arm64: Simplify warning in kvm_arch_vcpu_load_fp() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix __pkvm_host_mkyoung_guest() return value (Sebastian Ott) [RHEL-82297] - KVM: arm64: Simplify np-guest hypercalls (Sebastian Ott) [RHEL-82297] - KVM: arm64: Improve error handling from check_host_shared_guest() (Sebastian Ott) [RHEL-82297] - KVM: arm64: timer: Don't adjust the EL2 virtual timer offset (Sebastian Ott) [RHEL-82297] - KVM: arm64: timer: Correctly handle EL1 timer emulation when !FEAT_ECV (Sebastian Ott) [RHEL-82297] - KVM: arm64: timer: Always evaluate the need for a soft timer (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix nested S2 MMU structures reallocation (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fail protected mode init if no vgic hardware is present (Sebastian Ott) [RHEL-82297] - KVM: arm64: Flush/sync debug state in protected mode (Sebastian Ott) [RHEL-82297] - KVM: arm64: Flush hyp bss section after initialization of variables in bss (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix selftests after sysreg field name update (Sebastian Ott) [RHEL-82297] - coresight: Pass guest TRFCR value to KVM (Sebastian Ott) [RHEL-82297] - KVM: arm64: Support trace filtering for guests (Sebastian Ott) [RHEL-82297] - KVM: arm64: coresight: Give TRBE enabled state to KVM (Sebastian Ott) [RHEL-82297] - coresight: trbe: Remove redundant disable call (Sebastian Ott) [RHEL-82297] - arm64/sysreg/tools: Move TRFCR definitions to sysreg (Sebastian Ott) [RHEL-82297] - tools: arm64: Update sysreg.h header files (Sebastian Ott) [RHEL-82297] - KVM: arm64: Explicitly handle BRBE traps as UNDEFINED (Sebastian Ott) [RHEL-82297] - KVM: arm64: vgic: Use str_enabled_disabled() in vgic_v3_probe() (Sebastian Ott) [RHEL-82297] - arm64: kvm: Introduce nvhe stack size constants (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix nVHE stacktrace VA bits mask (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix FEAT_MTE in pKVM (Sebastian Ott) [RHEL-82297] - KVM: arm64: Work around x1e's CNTVOFF_EL2 bogosity (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Sanitise CNTHCTL_EL2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Propagate CNTHCTL_EL2.EL1NV{P,V}CT bits (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Add trap routing for CNTHCTL_EL2.EL1{NVPCT,NVVCT,TVT,TVCT} (Sebastian Ott) [RHEL-82297] - KVM: arm64: Handle counter access early in non-HYP context (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Accelerate EL0 counter accesses from hypervisor context (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Accelerate EL0 timer read accesses when FEAT_ECV in use (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Use FEAT_ECV to trap access to EL0 timers (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Publish emulated timer interrupt state in the in-memory state (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Sync nested timer state with FEAT_NV2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Add handling of EL2-specific timer registers (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Advertise the lack of AArch32 EL0 support (Sebastian Ott) [RHEL-82297] - KVM: arm64: Use kvm_vcpu_has_feature() directly for struct kvm (Sebastian Ott) [RHEL-82297] - KVM: arm64: Convert the SVE guest vcpu flag to a vm flag (Sebastian Ott) [RHEL-82297] - KVM: arm64: Remove PtrAuth guest vcpu flag (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix the value of the CPTR_EL2 RES1 bitmask for nVHE (Sebastian Ott) [RHEL-82297] - KVM: arm64: Refactor kvm_reset_cptr_el2() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Calculate cptr_el2 traps on activating traps (Sebastian Ott) [RHEL-82297] - KVM: arm64: Remove redundant setting of HCR_EL2 trap bit (Sebastian Ott) [RHEL-82297] - KVM: arm64: Remove fixed_config.h header (Sebastian Ott) [RHEL-82297] - KVM: arm64: Rework specifying restricted features for protected VMs (Sebastian Ott) [RHEL-82297] - KVM: arm64: Set protected VM traps based on its view of feature registers (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix RAS trapping in pKVM for protected VMs (Sebastian Ott) [RHEL-82297] - KVM: arm64: Initialize feature id registers for protected VMs (Sebastian Ott) [RHEL-82297] - KVM: arm64: Use KVM extension checks for allowed protected VM capabilities (Sebastian Ott) [RHEL-82297] - KVM: arm64: Remove KVM_ARM_VCPU_POWER_OFF from protected VMs allowed features in pKVM (Sebastian Ott) [RHEL-82297] - KVM: arm64: Move checking protected vcpu features to a separate function (Sebastian Ott) [RHEL-82297] - KVM: arm64: Group setting traps for protected VMs by control register (Sebastian Ott) [RHEL-82297] - KVM: arm64: Consolidate allowed and restricted VM feature checks (Sebastian Ott) [RHEL-82297] - KVM: arm64: Plumb the pKVM MMU in KVM (Sebastian Ott) [RHEL-82297] - KVM: arm64: Introduce the EL1 pKVM MMU (Sebastian Ott) [RHEL-82297] - KVM: arm64: Introduce __pkvm_tlb_flush_vmid() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Introduce __pkvm_host_mkyoung_guest() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Introduce __pkvm_host_test_clear_young_guest() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Introduce __pkvm_host_wrprotect_guest() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Introduce __pkvm_host_relax_guest_perms() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Introduce __pkvm_host_unshare_guest() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Introduce __pkvm_host_share_guest() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Introduce __pkvm_vcpu_{load,put}() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add {get,put}_pkvm_hyp_vm() helpers (Sebastian Ott) [RHEL-82297] - KVM: arm64: Make kvm_pgtable_stage2_init() a static inline function (Sebastian Ott) [RHEL-82297] - KVM: arm64: Pass walk flags to kvm_pgtable_stage2_relax_perms (Sebastian Ott) [RHEL-82297] - KVM: arm64: Pass walk flags to kvm_pgtable_stage2_mkyoung (Sebastian Ott) [RHEL-82297] - KVM: arm64: Move host page ownership tracking to the hyp vmemmap (Sebastian Ott) [RHEL-82297] - KVM: arm64: Make hyp_page::order a u8 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Move enum pkvm_page_state to memory.h (Sebastian Ott) [RHEL-82297] - KVM: arm64: Change the layout of enum pkvm_page_state (Sebastian Ott) [RHEL-82297] - KVM: arm64: Promote guest ownership for DBGxVR/DBGxCR reads (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fold DBGxVR/DBGxCR accessors into common set (Sebastian Ott) [RHEL-82297] - KVM: arm64: Avoid reading ID_AA64DFR0_EL1 for debug save/restore (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Honor MDCR_EL2.TDE routing for debug exceptions (Sebastian Ott) [RHEL-82297] - KVM: arm64: Manage software step state at load/put (Sebastian Ott) [RHEL-82297] - KVM: arm64: Don't hijack guest context MDSCR_EL1 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Compute MDCR_EL2 at vcpu_load() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Reload vCPU for accesses to OSLAR_EL1 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Use debug_owner to track if debug regs need save/restore (Sebastian Ott) [RHEL-82297] - KVM: arm64: Remove vestiges of debug_ptr (Sebastian Ott) [RHEL-82297] - KVM: arm64: Remove debug tracepoints (Sebastian Ott) [RHEL-82297] - KVM: arm64: Select debug state to save/restore based on debug owner (Sebastian Ott) [RHEL-82297] - KVM: arm64: Clean up KVM_SET_GUEST_DEBUG handler (Sebastian Ott) [RHEL-82297] - KVM: arm64: Evaluate debug owner at vcpu_load() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Write MDCR_EL2 directly from kvm_arm_setup_mdcr_el2() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Move host SME/SVE tracking flags to host data (Sebastian Ott) [RHEL-82297] - KVM: arm64: Track presence of SPE/TRBE in kvm_host_data instead of vCPU (Sebastian Ott) [RHEL-82297] - KVM: arm64: Get rid of __kvm_get_mdcr_el2() and related warts (Sebastian Ott) [RHEL-82297] - KVM: arm64: Drop MDSCR_EL1_DEBUG_MASK (Sebastian Ott) [RHEL-82297] - arm64/kvm: Avoid invalid physical addresses to signal owner updates (Sebastian Ott) [RHEL-82297] - arm64/kvm: Configure HYP TCR.PS/DS based on host stage1 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Only apply PMCR_EL0.P to the guest range of counters (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Reload PMU events upon MDCR_EL2.HPME change (Sebastian Ott) [RHEL-82297] - KVM: arm64: Use KVM_REQ_RELOAD_PMU to handle PMCR_EL0.E change (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add unified helper for reprogramming counters by mask (Sebastian Ott) [RHEL-82297] - KVM: arm64: Always check the state from hyp_ack_unshare() (Sebastian Ott) [RHEL-82297] - arm64: Fix usage of new shifted MDCR_EL2 values (Sebastian Ott) [RHEL-82297] - KVM: arm64: Use MDCR_EL2.HPME to evaluate overflow of hyp counters (Sebastian Ott) [RHEL-82297] - KVM: arm64: Mark set_sysreg_masks() as inline to avoid build failure (Sebastian Ott) [RHEL-82297] - KVM: arm64: Make L1Ip feature in CTR_EL0 writable from userspace (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Reprogram PMU events affected by nested transition (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Apply EL2 event filtering when in hyp context (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Honor MDCR_EL2.HLP (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Honor MDCR_EL2.HPME (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add helpers to determine if PMC counts at a given EL (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Adjust range of accessible PMCs according to HPMN (Sebastian Ott) [RHEL-82297] - KVM: arm64: Rename kvm_pmu_valid_counter_mask() (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Advertise support for FEAT_HPMN0 (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Describe trap behaviour of MDCR_EL2.HPMN (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Honor MDCR_EL2.{TPM, TPMCR} in Host EL0 (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Reinject traps that take effect in Host EL0 (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Rename BEHAVE_FORWARD_ANY (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Allow coarse-grained trap combos to use complex traps (Sebastian Ott) [RHEL-82297] - arm64: sysreg: Add new definitions for ID_AA64DFR0_EL1 (Sebastian Ott) [RHEL-82297] - arm64: sysreg: Migrate MDCR_EL2 definition to table (Sebastian Ott) [RHEL-82297] - arm64: sysreg: Describe ID_AA64DFR2_EL1 fields (Sebastian Ott) [RHEL-82297] - KVM: arm64: Describe RES0/RES1 bits of MDCR_EL2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: selftests: Test ID_AA64PFR0.MPAM isn't completely ignored (Sebastian Ott) [RHEL-82297] - KVM: arm64: Disable MPAM visibility by default and ignore VMM writes (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add a macro for creating filtered sys_reg_descs entries (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix missing traps of guest accesses to the MPAM registers (Sebastian Ott) [RHEL-82297] - arm64: cpufeature: discover CPU support for MPAM (Sebastian Ott) [RHEL-82297] - arm64: head.S: Initialise MPAM EL2 registers and disable traps (Sebastian Ott) [RHEL-82297] - arm64/sysreg: Convert existing MPAM sysregs and add the remaining entries (Sebastian Ott) [RHEL-82297] - KVM: arm64: Handle WXN attribute (Sebastian Ott) [RHEL-82297] - KVM: arm64: Handle stage-1 permission overlays (Sebastian Ott) [RHEL-82297] - KVM: arm64: Make PAN conditions part of the S1 walk context (Sebastian Ott) [RHEL-82297] - KVM: arm64: Disable hierarchical permissions when POE is enabled (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add POE save/restore for AT emulation fast-path (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add save/restore support for POR_EL2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add basic support for POR_EL2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add kvm_has_s1poe() helper (Sebastian Ott) [RHEL-82297] - KVM: arm64: Subject S1PIE/S1POE registers to HCR_EL2.{TVM,TRVM} (Sebastian Ott) [RHEL-82297] - KVM: arm64: Drop bogus CPTR_EL2.E0POE trap routing (Sebastian Ott) [RHEL-82297] - arm64: Add encoding for POR_EL2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Rely on visibility to let PIR*_ELx/TCR2_ELx UNDEF (Sebastian Ott) [RHEL-82297] - KVM: arm64: Hide S1PIE registers from userspace when disabled for guests (Sebastian Ott) [RHEL-82297] - KVM: arm64: Hide TCR2_EL1 from userspace when disabled for guests (Sebastian Ott) [RHEL-82297] - KVM: arm64: Define helper for EL2 registers with custom visibility (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add a composite EL2 visibility helper (Sebastian Ott) [RHEL-82297] - KVM: arm64: Implement AT S1PIE support (Sebastian Ott) [RHEL-82297] - KVM: arm64: Disable hierarchical permissions when S1PIE is enabled (Sebastian Ott) [RHEL-82297] - KVM: arm64: Split S1 permission evaluation into direct and hierarchical parts (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add AT fast-path support for S1PIE (Sebastian Ott) [RHEL-82297] - KVM: arm64: Handle PIR{,E0}_EL2 traps (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add save/restore for PIR{,E0}_EL2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add PIR{,E0}_EL2 to the sysreg arrays (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add save/restore for TCR2_EL2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Sanitise TCR2_EL2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Save/Restore vEL2 sysregs (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add TCR2_EL2 to the sysreg arrays (Sebastian Ott) [RHEL-82297] - arm64: Define ID_AA64MMFR1_EL1.HAFDBS advertising FEAT_HAFT (Sebastian Ott) [RHEL-82297] - KVM: arm64: Extend masking facility to arbitrary registers (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Handle CNTHCTL_EL2 specially (Sebastian Ott) [RHEL-82297] - KVM: arm64: nv: Add missing EL2->EL1 mappings in get_el2_to_el1_mapping() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Drop useless struct s2_mmu in __kvm_at_s1e2() (Sebastian Ott) [RHEL-82297] - KVM: arm64: Don't mark "struct page" accessed when making SPTE young (Sebastian Ott) [RHEL-82297] - KVM: arm64: nvhe: Pass through PSCI v1.3 SYSTEM_OFF2 call (Sebastian Ott) [RHEL-82297] - KVM: selftests: Add test for PSCI SYSTEM_OFF2 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add support for PSCI v1.2 and v1.3 (Sebastian Ott) [RHEL-82297] - KVM: arm64: Add PSCI v1.3 SYSTEM_OFF2 function for hibernation (Sebastian Ott) [RHEL-82297] - arm64: Remove VNCR definition for PIRE0_EL2 (Sebastian Ott) [RHEL-82297] - arm64: Add encoding for PIRE0_EL2 (Sebastian Ott) [RHEL-82297] - arm64: Drop SKL0/SKL1 from TCR2_EL2 (Sebastian Ott) [RHEL-82297] - firmware/psci: Add definitions for PSCI v1.3 specification (Sebastian Ott) [RHEL-82297] - KVM: arm64: Fix set_id_regs selftest for ASIDBITS becoming unwritable (Sebastian Ott) [RHEL-82297] - redhat/configs: Enable CONFIG_VDPA_USER on RHEL10 (Cindy Lu) [RHEL-76477] - PCI/ACPI: Constify 'struct bin_attribute' (Myron Stowe) [RHEL-85241] - PCI/P2PDMA: Constify 'struct bin_attribute' (Myron Stowe) [RHEL-85241] - PCI/VPD: Constify 'struct bin_attribute' (Myron Stowe) [RHEL-85241] - PCI/sysfs: Constify 'struct bin_attribute' (Myron Stowe) [RHEL-85241] - cpu: Remove spurious NULL in attribute_group definition (Myron Stowe) [RHEL-85241] - s390/con3215: Remove spurious NULL in attribute_group definition (Myron Stowe) [RHEL-85241] - perf: arm-ni: Remove spurious NULL in attribute_group definition (Myron Stowe) [RHEL-85241] - driver core: Constify bin_attribute definitions (Myron Stowe) [RHEL-85241] - sysfs: attribute_group: allow registration of const bin_attribute (Myron Stowe) [RHEL-85241] - cdx: Fix cdx_mmap_resource() after constifying attr in ->mmap() (Myron Stowe) [RHEL-85241] - driver core: Constify attribute arguments of binary attributes (Myron Stowe) [RHEL-85241] - sysfs: bin_attribute: add const read/write callback variants (Myron Stowe) [RHEL-85241] - sysfs: implement all BIN_ATTR_* macros in terms of __BIN_ATTR() (Myron Stowe) [RHEL-85241] - sysfs: treewide: constify attribute callback of bin_attribute::llseek() (Myron Stowe) [RHEL-85241] - sysfs: treewide: constify attribute callback of bin_attribute::mmap() (Myron Stowe) [RHEL-85241] - sysfs: treewide: constify attribute callback of bin_is_visible() (Myron Stowe) [RHEL-85241] - nvmem: core: calculate bin_attribute size through bin_size() (Myron Stowe) [RHEL-85241] - PCI/sysfs: Calculate bin_attribute size through bin_size() (Myron Stowe) [RHEL-85241] - sysfs: introduce callback attribute_group::bin_size (Myron Stowe) [RHEL-85241] - sysfs: explicitly pass size to sysfs_add_bin_file_mode_ns() (Myron Stowe) [RHEL-85241] - sched/stats: Print domain name in /proc/schedstat (Phil Auld) [RHEL-24185] - docs: Update Schedstat version to 17 (Phil Auld) [RHEL-24185] - sched/fair: Cleanup in migrate_degrades_locality() to improve readability (Phil Auld) [RHEL-24185] - sched: Report the different kinds of imbalances in /proc/schedstat (Phil Auld) [RHEL-24185] - sched: Move sched domain name out of CONFIG_SCHED_DEBUG (Phil Auld) [RHEL-24185] - sched/fair: Fix value reported by hot tasks pulled in /proc/schedstat (Phil Auld) [RHEL-24185] - redhat: selftests/bpf: Add cpuv4 variant (Viktor Malik) [RHEL-82993] - bonding: delete always true device check (Hangbin Liu) [RHEL-84541] - Revert "io_uring/uring_cmd: defer SQE copying until it's needed" (Jeff Moyer) [RHEL-82698] {CVE-2025-21837} - ALSA: hda/tas2781: Fix index issue in tas2781 hda SPI driver (CKI Backport Bot) [RHEL-81723] - ALSA: hda/tas2781: Update tas2781 hda SPI driver (CKI Backport Bot) [RHEL-81723] - redhat/configs: Enable CONFIG_CPUFREQ_ARCH_CUR_FREQ (Jennifer Berringer) [RHEL-80968] - arch_topology: init capacity_freq_ref to 0 (Jennifer Berringer) [RHEL-80968] - arm64: Utilize for_each_cpu_wrap for reference lookup (Jennifer Berringer) [RHEL-80968] - arm64: Update AMU-based freq scale factor on entering idle (Jennifer Berringer) [RHEL-80968] - arm64: Provide an AMU-based version of arch_freq_get_on_cpu (Jennifer Berringer) [RHEL-80968] - cpufreq: Introduce an optional cpuinfo_avg_freq sysfs entry (Jennifer Berringer) [RHEL-80968] - cpufreq: Allow arch_freq_get_on_cpu to return an error (Jennifer Berringer) [RHEL-80968] - arm64: amu: Delay allocating cpumask for AMU FIE support (Jennifer Berringer) [RHEL-80968] - Revert "cxl/acpi: Fix load failures due to single window creation failure" (John W. Linville) [RHEL-82540] - selftests: livepatch: test livepatching a kprobed function (Ryan Sullivan) [RHEL-80216] - selftests: livepatch: save and restore kprobe state (Ryan Sullivan) [RHEL-80216] - selftests: livepatch: rename KLP_SYSFS_DIR to SYSFS_KLP_DIR (Ryan Sullivan) [RHEL-80216] - PCI: layerscape: Fix arg_count to syscon_regmap_lookup_by_phandle_args() (Myron Stowe) [RHEL-83611] - misc: pci_endpoint_test: Fix pci_endpoint_test_bars_read_bar() error handling (Myron Stowe) [RHEL-83611] - tools/Makefile: Remove pci target (Myron Stowe) [RHEL-83611] - PCI: Avoid FLR for Mediatek MT7922 WiFi (Myron Stowe) [RHEL-83611] - PCI: Fix BUILD_BUG_ON usage for old gcc (Myron Stowe) [RHEL-83611] - PCI/ASPM: Fix L1SS saving (Myron Stowe) [RHEL-83611] - PCI: Restore original INTX_DISABLE bit by pcim_intx() (Myron Stowe) [RHEL-83611] - Documentation: Fix pci=config_acs= example (Myron Stowe) [RHEL-83611] - PCI: Remove redundant PCI_VSEC_HDR and PCI_VSEC_HDR_LEN_SHIFT (Myron Stowe) [RHEL-83611] - PCI: Don't include 'pm_wakeup.h' directly (Myron Stowe) [RHEL-83611] - PCI: Update code comment on PCI_EXP_LNKCAP_SLS for PCIe r3.0 (Myron Stowe) [RHEL-83611] - PCI: xilinx-cpm: Add support for Versal CPM5 Root Port Controller 1 (Myron Stowe) [RHEL-83611] - dt-bindings: PCI: xilinx-cpm: Add compatible string for CPM5 host1 (Myron Stowe) [RHEL-83611] - PCI: rockchip: Refactor rockchip_pcie_disable_clocks() signature (Myron Stowe) [RHEL-83611] - PCI: rockchip: Simplify reset control handling by using reset_control_bulk*() function (Myron Stowe) [RHEL-83611] - PCI: rockchip: Simplify clock handling by using clk_bulk*() functions (Myron Stowe) [RHEL-83611] - PCI: rcar-ep: Fix incorrect variable used when calling devm_request_mem_region() (Myron Stowe) [RHEL-83611] - PCI: mvebu: Enable module autoloading (Myron Stowe) [RHEL-83611] - dt-bindings: PCI: microchip,pcie-host: Allow dma-noncoherent (Myron Stowe) [RHEL-83611] - PCI: microchip: Set inbound address translation for coherent or non-coherent mode (Myron Stowe) [RHEL-83611] - PCI: mediatek-gen3: Enable async probe by default (Myron Stowe) [RHEL-83611] - PCI: mediatek-gen3: Avoid PCIe resetting via PERST# for Airoha EN7581 SoC (Myron Stowe) [RHEL-83611] - PCI: mediatek-gen3: Rely on msleep() in mtk_pcie_en7581_power_up() (Myron Stowe) [RHEL-83611] - PCI: mediatek-gen3: Move reset delay in mtk_pcie_en7581_power_up() (Myron Stowe) [RHEL-83611] - PCI: mediatek-gen3: Add comment about initialization order in mtk_pcie_en7581_power_up() (Myron Stowe) [RHEL-83611] - PCI: mediatek-gen3: Move reset/assert callbacks in .power_up() (Myron Stowe) [RHEL-83611] - PCI: mediatek-gen3: Rely on clk_bulk_prepare_enable() in mtk_pcie_en7581_power_up() (Myron Stowe) [RHEL-83611] - PCI: layerscape: Use syscon_regmap_lookup_by_phandle_args (Myron Stowe) [RHEL-83611] - PCI: imx6: Clean up comments and whitespace (Myron Stowe) [RHEL-83611] - PCI: imx6: Remove surplus imx7d_pcie_init_phy() function (Myron Stowe) [RHEL-83611] - PCI: imx6: Add missing reference clock disable logic (Myron Stowe) [RHEL-83611] - PCI: imx6: Deassert apps_reset in imx_pcie_deassert_core_reset() (Myron Stowe) [RHEL-83611] - PCI: imx6: Skip controller_id generation logic for i.MX7D (Myron Stowe) [RHEL-83611] - PCI: imx6: Fetch dbi2 and iATU base addesses from DT (Myron Stowe) [RHEL-83611] - PCI: imx6: Configure PHY based on Root Complex or Endpoint mode (Myron Stowe) [RHEL-83611] - PCI: imx6: Add Refclk for i.MX95 PCIe (Myron Stowe) [RHEL-83611] - dt-bindings: PCI: fsl,imx6q-pcie: Add Refclk for i.MX95 RC (Myron Stowe) [RHEL-83611] - PCI: imx6: Add i.MX8Q PCIe Endpoint (EP) support (Myron Stowe) [RHEL-83611] - dt-bindings: PCI: fsl,imx6q-pcie-ep: Add compatible string fsl,imx8q-pcie-ep (Myron Stowe) [RHEL-83611] - PCI: dwc: Simplify config resource lookup (Myron Stowe) [RHEL-83611] - of: address: Add parent_bus_addr to struct of_pci_range (Myron Stowe) [RHEL-83611] - PCI: imx6: Add i.MX8MQ, i.MX8Q and i.MX95 PM support (Myron Stowe) [RHEL-83611] - PCI: imx6: Use DWC common suspend resume method (Myron Stowe) [RHEL-83611] - PCI: dwc: Add dw_pcie_suspend_noirq(), dw_pcie_resume_noirq() stubs for !CONFIG_PCIE_DW_HOST (Myron Stowe) [RHEL-83611] - PCI: dwc: Remove LTSSM state test in dw_pcie_suspend_noirq() (Myron Stowe) [RHEL-83611] - PCI: dwc: Always stop link in the dw_pcie_suspend_noirq (Myron Stowe) [RHEL-83611] - PCI: dw-rockchip: Don't wait for link since we can detect Link Up (Myron Stowe) [RHEL-83611] - PCI: dw-rockchip: Enumerate endpoints based on dll_link_up IRQ (Myron Stowe) [RHEL-83611] - PCI: qcom: Update ICC and OPP values after Link Up event (Myron Stowe) [RHEL-83611] - PCI: qcom: Don't wait for link if we can detect Link Up (Myron Stowe) [RHEL-83611] - PCI: dwc: Don't wait for link up if driver can detect Link Up event (Myron Stowe) [RHEL-83611] - PCI: dwc: Fix potential truncation in dw_pcie_edma_irq_verify() (Myron Stowe) [RHEL-83611] - PCI: dra7xx: Use syscon_regmap_lookup_by_phandle_args (Myron Stowe) [RHEL-83611] - PCI: apple: Convert to {en,dis}able_device() callbacks (Myron Stowe) [RHEL-83611] - PCI: host-generic: Allow {en,dis}able_device() to be provided via pci_ecam_ops (Myron Stowe) [RHEL-83611] - PCI: imx6: Add IOMMU and ITS MSI support for i.MX95 (Myron Stowe) [RHEL-83611] - PCI: Add enable_device() and disable_device() callbacks for bridges (Myron Stowe) [RHEL-83611] - dt-bindings: PCI: qcom: Document the IPQ5424 PCIe controller (Myron Stowe) [RHEL-83611] - dt-bindings: PCI: qcom,pcie-sm8550: Document 'global' interrupt (Myron Stowe) [RHEL-83611] - dt-bindings: PCI: mobiveil: Convert mobiveil-pcie.txt to YAML (Myron Stowe) [RHEL-83611] - selftests: pci_endpoint: Migrate to Kselftest framework (Myron Stowe) [RHEL-83611] - selftests: Move PCI Endpoint tests from tools/pci to Kselftests (Myron Stowe) [RHEL-83611] - misc: pci_endpoint_test: Fix IOCTL return value (Myron Stowe) [RHEL-83611] - misc: pci_endpoint_test: Remove redundant 'remainder' test (Myron Stowe) [RHEL-83611] - misc: pci_endpoint_test: Add consecutive BAR test (Myron Stowe) [RHEL-83611] - misc: pci_endpoint_test: Add support for capabilities (Myron Stowe) [RHEL-83611] - PCI: endpoint: pci-epf-test: Add support for capabilities (Myron Stowe) [RHEL-83611] - PCI: endpoint: pci-epf-test: Fix check for DMA MEMCPY test (Myron Stowe) [RHEL-83611] - PCI: endpoint: pci-epf-test: Set dma_chan_rx pointer to NULL on error (Myron Stowe) [RHEL-83611] - PCI: endpoint: Verify that requested BAR size is a power of two (Myron Stowe) [RHEL-83611] - PCI: endpoint: Add size check for fixed size BARs in pci_epc_set_bar() (Myron Stowe) [RHEL-83611] - PCI: artpec6: Implement dw_pcie_ep operation get_features (Myron Stowe) [RHEL-83611] - PCI: dwc: ep: Add 'address' alignment to 'size' check in dw_pcie_prog_ep_inbound_atu() (Myron Stowe) [RHEL-83611] - PCI: endpoint: Finish virtual EP removal in pci_epf_remove_vepf() (Myron Stowe) [RHEL-83611] - PCI: endpoint: Simplify pci_epc_get() (Myron Stowe) [RHEL-83611] - PCI: endpoint: Destroy the EPC device in devm_pci_epc_destroy() (Myron Stowe) [RHEL-83611] - PCI: endpoint: Replace magic number '6' by PCI_STD_NUM_BARS (Myron Stowe) [RHEL-83611] - PCI: switchtec: Add Microchip PCI100X device IDs (Myron Stowe) [RHEL-83611] - PCI: Avoid putting some root ports into D3 on TUXEDO Sirius Gen1 (Myron Stowe) [RHEL-83611] - PCI/sysfs: Remove unnecessary zero in initializer (Myron Stowe) [RHEL-83611] - PCI/sysfs: Use __free() in reset_method_store() (Myron Stowe) [RHEL-83611] - PCI/sysfs: Move reset related sysfs code to correct file (Myron Stowe) [RHEL-83611] - PCI: of_property: Rename struct of_pci_range to of_pci_range_entry (Myron Stowe) [RHEL-83611] - sparc/PCI: Update reference to devm_of_pci_get_host_bridge_resources() (Myron Stowe) [RHEL-83611] - PCI: of: Simplify devm_of_pci_get_host_bridge_resources() interface (Myron Stowe) [RHEL-83611] - PCI: of: Drop 'No bus range found' message (Myron Stowe) [RHEL-83611] - PCI: Unexport of_pci_parse_bus_range() (Myron Stowe) [RHEL-83611] - PCI: Add pcie_print_tlp_log() to print TLP Header and Prefix Log (Myron Stowe) [RHEL-83611] - PCI: Add TLP Prefix reading to pcie_read_tlp_log() (Myron Stowe) [RHEL-83611] - PCI: Store number of supported End-End TLP Prefixes (Myron Stowe) [RHEL-83611] - PCI: Use unsigned int i in pcie_read_tlp_log() (Myron Stowe) [RHEL-83611] - PCI: Use same names in pcie_read_tlp_log() prototype and definition (Myron Stowe) [RHEL-83611] - PCI: Add defines for TLP Header/Prefix log sizes (Myron Stowe) [RHEL-83611] - PCI: Move TLP Log handling to its own file (Myron Stowe) [RHEL-83611] - PCI: Don't expose pcie_read_tlp_log() outside PCI subsystem (Myron Stowe) [RHEL-83611] - PCI/DPC: Quirk PIO log size for Intel Raptor Lake-P (Myron Stowe) [RHEL-83611] - PCI: Remove devres from pci_intx() (Myron Stowe) [RHEL-83611] - net/ethernet: Use never-managed version of pci_intx() (Myron Stowe) [RHEL-83611] - HID: amd_sfh: Use always-managed version of pcim_intx() (Myron Stowe) [RHEL-83611] - wifi: qtnfmac: use always-managed version of pcim_intx() (Myron Stowe) [RHEL-83611] - ata: Use always-managed version of pci_intx() (Myron Stowe) [RHEL-83611] - PCI/MSI: Use never-managed version of pci_intx() (Myron Stowe) [RHEL-83611] - vfio/pci: Use never-managed version of pci_intx() (Myron Stowe) [RHEL-83611] - misc: Use never-managed version of pci_intx() (Myron Stowe) [RHEL-83611] - ntb: Use never-managed version of pci_intx() (Myron Stowe) [RHEL-83611] - drivers/xen: Use never-managed version of pci_intx() (Myron Stowe) [RHEL-83611] - PCI: Export pci_intx_unmanaged() and pcim_intx() (Myron Stowe) [RHEL-83611] - PCI: Encourage resource request API users to supply driver name (Myron Stowe) [RHEL-83611] - PCI/ASPM: Save parent L1SS config in pci_save_aspm_l1ss_state() (Myron Stowe) [RHEL-83611] - platform/x86/intel/pmc: Remove unneeded extern keyword in header (Steve Best) [RHEL-47465] - platform/x86/intel/pmc: Remove unnecessary declarations in header (Steve Best) [RHEL-47465] - platform/x86/intel/pmc: Add Panther Lake support to intel_pmc_core (Steve Best) [RHEL-47465] - platform/x86:intel/pmc: Move arch specific action to init function (Steve Best) [RHEL-47465] - platform/x86/intel/pmc: Add Arrow Lake U/H support to intel_pmc_core driver (Steve Best) [RHEL-47465] - platform/x86/intel/pmc: Remove simple init functions (Steve Best) [RHEL-47465] - platform/x86:intel/pmc: Create generic_core_init() for all platforms (Steve Best) [RHEL-47465] - platform/x86/intel/pmc: Remove duplicate enum (Steve Best) [RHEL-47465] - platform/x86:intel/pmc: Make tgl_core_generic_init() static (Steve Best) [RHEL-47465] - nfsd: fix UAF when access ex_uuid or ex_stats (Olga Kornievskaia) [RHEL-80508] {CVE-2024-53216} - SUNRPC: no need get cache ref when protected by rcu (Olga Kornievskaia) [RHEL-80508] {CVE-2024-53216} - nfsd: no need get cache ref when protected by rcu (Olga Kornievskaia) [RHEL-80508] {CVE-2024-53216} - SUNRPC: introduce cache_check_rcu to help check in rcu context (Olga Kornievskaia) [RHEL-80508] {CVE-2024-53216} - net/sched: cls_api: fix error handling causing NULL dereference (CKI Backport Bot) [RHEL-83372] {CVE-2025-21857} - af_packet: fix vlan_get_protocol_dgram() vs MSG_PEEK (Davide Caratti) [RHEL-80306] {CVE-2024-57901} - redhat: kabi: update stablelist checksums (Čestmír Kalina) [RHEL-80552] - shrinker: include rh_kabi.h (Čestmír Kalina) [RHEL-80552] - redhat: pad the folio_batch struct (Nico Pache) [RHEL-80552] - redhat: pad the lruvec structure for the kabi (Nico Pache) [RHEL-80552] - redhat: pad the zone structures for kabi (Nico Pache) [RHEL-80552] - redhat: pad the wait_page_queue for the kabi (Nico Pache) [RHEL-80552] - redhat: pad the lru_gen functions for kabi (Nico Pache) [RHEL-80552] - redhat: pad the vmem_altmap struct for the kabi (Nico Pache) [RHEL-80552] - redhat: pad the vm_fault structure (Nico Pache) [RHEL-80552] - redhat: pad the tlbflush_unmap_batch struct for the KABI (Nico Pache) [RHEL-80552] - redhat: pad the swap_cluster_info structure for KABI (Nico Pache) [RHEL-80552] - redhat: pad the shrinker struct for KABI (Nico Pache) [RHEL-80552] - redhat: pad the shrink_control structure for kabi (Nico Pache) [RHEL-80552] - redhat: pad the readahead_control structure for kabi (Nico Pache) [RHEL-80552] - redhat: pad the pglist_data structure for kabi (Nico Pache) [RHEL-80552] - redhat: pad the percpu structures (Nico Pache) [RHEL-80552] - redhat: pad the page_frag_cache for the kabi (Nico Pache) [RHEL-80552] - redhat: pad the ns_common structure for kabi (Nico Pache) [RHEL-80552] - redhat: pad mmu_notifier functions for kabi (Nico Pache) [RHEL-80552] - redhat: pad the mm_struct for kabi (Nico Pache) [RHEL-80552] - redhat: pad mempool_s structure for kabi (Nico Pache) [RHEL-80552] - redhat: pad mempolicy struct for kabi (Nico Pache) [RHEL-80552] - redhat: pad the memory_failure_stats for kabi (Nico Pache) [RHEL-80552] - redhat: pad the kmem_cache_args struct (Nico Pache) [RHEL-80552] - redhat: pad the kmem_cache structure (Nico Pache) [RHEL-80552] - redhat: pad ip_conntrack_stat for kabi (Nico Pache) [RHEL-80552] - redhat: pad the free_area struct (Nico Pache) [RHEL-80552] - redhat: pad follow_pfnmap_args for kabi (Nico Pache) [RHEL-80552] - redhat: pad anon_vma for kabi (Nico Pache) [RHEL-80552] - redhat: pad access_coordinate for kabi (Nico Pache) [RHEL-80552] - redhat: pad the deferred_split queue for the kabi checker (Nico Pache) [RHEL-80552] - redhat: hide capture_control from kabi checker (Nico Pache) [RHEL-80552] - mm/memcg: Exclude mem_cgroup/obj_cgroup pointer from kABI signature computation (Waiman Long) [RHEL-80552] - net: stmmac: dwmac-tegra: Read iommu stream id from device tree (Izabela Bakollari) [RHEL-75653] {CVE-2025-21663} - Revert "smb: client: fix chmod(2) regression with ATTR_READONLY" (Jan Stancek) - crypto: api - Fix larval relookup type and mask (Herbert Xu) [RHEL-78993] - redhat/configs: Enable CONFIG_BLK_CGROUP_PUNT_BIO (Neal Gompa) [RHEL-79711] - block/Kconfig: Allow selecting BLK_CGROUP_PUNT_BIO (Neal Gompa) [RHEL-79711] - perf script: Fix hangup in offline flamegraph report (Michael Petlan) [RHEL-57021] - perf script: force stdin for flamegraph in live mode (Michael Petlan) [RHEL-57021] - smb: client: fix regression with guest option (Paulo Alcantara) [RHEL-83856] - KVM: selftests: Allow running a single iteration of dirty_log_test (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Fix an off-by-one in the number of dirty_log_test iterations (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Set per-iteration variables at the start of each iteration (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Tighten checks around prev iter's last dirty page in ring (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Ensure guest writes min number of pages in dirty_log_test (Maxim Levitsky) [RHEL-58941] - KVM: sefltests: Verify value of dirty_log_test last page isn't bogus (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Collect *all* dirty entries in each dirty_log_test iteration (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Print (previous) last_page on dirty page value mismatch (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Use continue to handle all "pass" scenarios in dirty_log_test (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Post to sem_vcpu_stop if and only if vcpu_stop is true (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Keep dirty_log_test vCPU in guest until it needs to stop (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Honor "stop" request in dirty ring test (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Limit dirty_log_test's s390x workaround to s390x (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Continuously reap dirty ring while vCPU is running (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Read per-page value into local var when verifying dirty_log_test (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Precisely track number of dirty/clear pages for each iteration (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Drop stale srandom() initialization from dirty_log_test (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Drop signal/kick from dirty ring testcase (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Sync dirty_log_test iteration to guest *before* resuming (Maxim Levitsky) [RHEL-58941] - KVM: selftests: Support multiple write retires in dirty_log_test (Maxim Levitsky) [RHEL-58941] - KVM: VMX: read the PML log in the same order as it was written (Maxim Levitsky) [RHEL-58941] - KVM: VMX: refactor PML terminology (Maxim Levitsky) [RHEL-58941] - crypto: pcrypt - Call crypto layer directly when padata_do_parallel() return -EBUSY (Herbert Xu) [RHEL-80114] {CVE-2024-56690} - erofs: fix blksize < PAGE_SIZE for file-backed mounts (Ian Kent) [RHEL-82421] {CVE-2024-56750} - platform/x86/intel/vsec: Add support for Panther Lake (Steve Best) [RHEL-47411] - bonding: report duplicate MAC address in all situations (Hangbin Liu) [RHEL-73803] - ice: Fix signedness bug in ice_init_interrupt_scheme() (Petr Oros) [RHEL-80554] - ice: init flow director before RDMA (Petr Oros) [RHEL-80554] - ice: simplify VF MSI-X managing (Petr Oros) [RHEL-80554] - ice: enable_rdma devlink param (Petr Oros) [RHEL-80554] - ice: treat dyn_allowed only as suggestion (Petr Oros) [RHEL-80554] - ice, irdma: move interrupts code to irdma (Petr Oros) [RHEL-80554] - ice: get rid of num_lan_msix field (Petr Oros) [RHEL-80554] - ice: remove splitting MSI-X between features (Petr Oros) [RHEL-80554] - ice: devlink PF MSI-X max and min parameter (Petr Oros) [RHEL-80554] - ice: ice_probe: init ice_adapter after HW init (Petr Oros) [RHEL-80554] - ice: minor: rename goto labels from err to unroll (Petr Oros) [RHEL-80554] - ice: split ice_init_hw() out from ice_init_dev() (Petr Oros) [RHEL-80554] - ice: c827: move wait for FW to ice_init_hw() (Petr Oros) [RHEL-80554] - ipv6: use RCU protection in ip6_default_advmss() (Guillaume Nault) [RHEL-81574] {CVE-2025-21765} - net: add dev_net_rcu() helper (Guillaume Nault) [RHEL-81574] {CVE-2025-21765} - objtool: Add bch2_trans_unlocked_error() to bcachefs noreturns (Radomir Vrbovsky) [RHEL-80715] - objtool: Exclude __tracepoints data from ENDBR checks (Radomir Vrbovsky) [RHEL-80715] - kbuild: Add Propeller configuration for kernel build (Radomir Vrbovsky) [RHEL-80715] - AutoFDO: Enable machine function split optimization for AutoFDO (Radomir Vrbovsky) [RHEL-80715] - AutoFDO: Enable -ffunction-sections for the AutoFDO build (Radomir Vrbovsky) [RHEL-80715] - vmlinux.lds.h: Add markers for text_unlikely and text_hot sections (Radomir Vrbovsky) [RHEL-80715] - openrisc: place exception table at the head of vmlinux (Radomir Vrbovsky) [RHEL-80715] - vmlinux.lds.h: Adjust symbol ordering in text output section (Radomir Vrbovsky) [RHEL-80715] - objtool: Fix unreachable instruction warnings for weak functions (Radomir Vrbovsky) [RHEL-80715] - kbuild: Add AutoFDO support for Clang build (Radomir Vrbovsky) [RHEL-80715] - reiserfs: The last commit (Radomir Vrbovsky) [RHEL-80715] - objtool: Also include tools/include/uapi (Radomir Vrbovsky) [RHEL-80715] - objtool: Detect non-relocated text references (Radomir Vrbovsky) [RHEL-80715] - arch/x86/kernel/setup.c: fix rh_check_supported (Tomas Henzl) [RHEL-80866] - intel_idle: Handle older CPUs, which stop the TSC in deeper C states, correctly (Steve Best) [RHEL-79459] - intel_idle: add Clearwater Forest SoC support (Steve Best) [RHEL-79459] - selftests: fib_nexthops: do not mark skipped tests as failed (Hangbin Liu) [RHEL-80288] - platform/x86/intel: pmc: fix ltr decode in pmc_core_ltr_show() (Steve Best) [RHEL-79463] - platform/x86: intel/pmc: Fix ioremap() of bad address (Steve Best) [RHEL-79463] - x86/tsc: Move away from TSC leaf magic numbers (Steve Best) [RHEL-79463] - x86/cpu: Move TSC CPUID leaf definition (Steve Best) [RHEL-79463] - vrf: use RCU protection in l3mdev_l3_out() (Guillaume Nault) [RHEL-81545] {CVE-2025-21791} - powerpc/pseries/vas: Add close() callback in vas_vm_ops struct (Mamatha Inamdar) [RHEL-83836] - async_xor: Remove unused 'async_xor_val' (Nigel Croxon) [RHEL-83951] - md/raid10: wait barrier before returning discard request with REQ_NOWAIT (Nigel Croxon) [RHEL-83951] - md/md-bitmap: fix wrong bitmap_limit for clustermd when write sb (Nigel Croxon) [RHEL-83951] - md/raid1,raid10: don't ignore IO flags (Nigel Croxon) [RHEL-83951] - md/raid5: merge reshape_progress checking inside get_reshape_loc() (Nigel Croxon) [RHEL-83951] - md: fix mddev uaf while iterating all_mddevs list (Nigel Croxon) [RHEL-83951] - md: switch md-cluster to use md_submodle_head (Nigel Croxon) [RHEL-83951] - md: switch personalities to use md_submodule_head (Nigel Croxon) [RHEL-83951] - md: don't export md_cluster_ops (Nigel Croxon) [RHEL-83951] - md/md-cluster: cleanup md_cluster_ops reference (Nigel Croxon) [RHEL-83951] - md: introduce struct md_submodule_head and APIs (Nigel Croxon) [RHEL-83951] - md: only include md-cluster.h if necessary (Nigel Croxon) [RHEL-83951] - md: merge common code into find_pers() (Nigel Croxon) [RHEL-83951] - md/raid1: fix memory leak in raid1_run() if no active rdev (Nigel Croxon) [RHEL-83951] - md: ensure resync is prioritized over recovery (Nigel Croxon) [RHEL-83951] - tpm: Change to kvalloc() in eventlog/acpi.c (CKI Backport Bot) [RHEL-81492] {CVE-2024-58005} - dpll: add clock quality level attribute and op (Petr Oros) [RHEL-77874] - i2c: i801: Add support for Intel Panther Lake (Steve Best) [RHEL-47425] - Bluetooth: btbcm: Fix NULL deref in btbcm_get_board_name() (CKI Backport Bot) [RHEL-81378] {CVE-2024-57988} - Bluetooth: MGMT: Fix slab-use-after-free Read in mgmt_remove_adv_monitor_sync (CKI Backport Bot) [RHEL-81510] {CVE-2024-58013} - ipvlan: Fix use-after-free in ipvlan_get_iflink(). (CKI Backport Bot) [RHEL-77888] {CVE-2025-21652} - usbnet: ipheth: document scope of NCM implementation (Jose Ignacio Tornos Martinez) [RHEL-81349 RHEL-81435 RHEL-81565] {CVE-2025-21742 CVE-2025-21743 CVE-2025-21741} - usbnet: ipheth: fix DPE OoB read (Jose Ignacio Tornos Martinez) [RHEL-81349 RHEL-81435 RHEL-81565] {CVE-2025-21742 CVE-2025-21743 CVE-2025-21741} - usbnet: ipheth: break up NCM header size computation (Jose Ignacio Tornos Martinez) [RHEL-81349 RHEL-81435 RHEL-81565] {CVE-2025-21742 CVE-2025-21743 CVE-2025-21741} - usbnet: ipheth: refactor NCM datagram loop (Jose Ignacio Tornos Martinez) [RHEL-81349 RHEL-81435 RHEL-81565] {CVE-2025-21742 CVE-2025-21743 CVE-2025-21741} - usbnet: ipheth: use static NDP16 location in URB (Jose Ignacio Tornos Martinez) [RHEL-81349 RHEL-81435 RHEL-81565] {CVE-2025-21742 CVE-2025-21743 CVE-2025-21741} - usbnet: ipheth: check that DPE points past NCM header (Jose Ignacio Tornos Martinez) [RHEL-81349 RHEL-81435 RHEL-81565] {CVE-2025-21742 CVE-2025-21743 CVE-2025-21741} - usbnet: ipheth: fix possible overflow in DPE length check (Jose Ignacio Tornos Martinez) [RHEL-81349 RHEL-81435 RHEL-81565] {CVE-2025-21742 CVE-2025-21743 CVE-2025-21741} - workqueue: Put the pwq after detaching the rescuer from the pool (CKI Backport Bot) [RHEL-81475] {CVE-2025-21786} - netfilter: nf_tables: reject mismatching sum of field_len with set key length (CKI Backport Bot) [RHEL-82492] {CVE-2025-21826} - pktgen: Avoid out-of-bounds access in get_imix_entries (CKI Backport Bot) [RHEL-77232] {CVE-2025-21680} - Bluetooth: btrtl: check for NULL in btrtl_setup_realtek() (CKI Backport Bot) [RHEL-81271] {CVE-2024-57987} - crypto: tegra - do not transfer req when tegra init fails (Herbert Xu) [RHEL-82479] {CVE-2024-58075} - NFSD: fix hang in nfsd4_shutdown_callback (Olga Kornievskaia) [RHEL-81295] {CVE-2025-21795} - x86/xen: add FRAME_END to xen_hypercall_hvm() (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/xen: fix xen_hypercall_hvm() to not clobber %%rbx (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - compiler.h: Move C string helpers into C-only kernel section (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/static-call: Remove early_boot_irqs_disabled check to fix Xen PVH dom0 (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/asm: Make serialize() always_inline (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/static-call: fix 32-bit build (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/xen: remove hypercall page (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/xen: use new hypercall functions instead of hypercall page (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/xen: add central hypercall functions (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/xen: don't do PV iret hypercall through hypercall page (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/static-call: provide a way to do very early static-call updates (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - objtool/x86: allow syscall instruction (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86: make get_cpu_vendor() accessible from Xen code (Vitaly Kuznetsov) [RHEL-76329] {CVE-2024-53241} - x86/xen: Avoid relocatable quantities in Xen ELF notes (Vitaly Kuznetsov) [RHEL-76329] - compiler.h: Fix undefined BUILD_BUG_ON_ZERO() (Vitaly Kuznetsov) [RHEL-76329] - scsi: storvsc: Set correct data length for sending SCSI command without payload (Cathy Avery) [RHEL-82461] - locking/lockdep: Add kasan_check_byte() check in lock_acquire() (Waiman Long) [RHEL-78669] - locking/lockdep: Disable KASAN instrumentation of lockdep.c (Waiman Long) [RHEL-78669] - redhat/configs: Enable CONFIG_KASAN_INLINE for RT debug kernel (Waiman Long) [RHEL-78669] - Add CONFIG_OF_PARTITION entry (Ming Lei) [RHEL-79456] - nvme-pci: don't use dma_alloc_noncontiguous with 0 merge boundary (Ming Lei) [RHEL-79456] - btrfs: zoned: calculate max_extent_size properly on non-zoned setup (Ming Lei) [RHEL-79456] - btrfs: handle bio_split() errors (Ming Lei) [RHEL-79456] - arm64: patching: avoid early page_to_phys() (Ming Lei) [RHEL-79456] - block: fix 'kmem_cache of name 'bio-108' already exists' (Ming Lei) [RHEL-79456] - block: Remove zone write plugs when handling native zone append writes (Ming Lei) [RHEL-79456] - block: make segment size limit workable for > 4K PAGE_SIZE (Ming Lei) [RHEL-79456] - block: fix NULL pointer dereferenced within __blk_rq_map_sg (Ming Lei) [RHEL-79456] - block/merge: remove unnecessary min() with UINT_MAX (Ming Lei) [RHEL-79456] - partitions: mac: fix handling of bogus partition table (Ming Lei) [RHEL-79456] - block: cleanup and fix batch completion adding conditions (Ming Lei) [RHEL-79456] - drivers/block/sunvdc.c: update the correct AIP call (Ming Lei) [RHEL-79456] - block: force noio scope in blk_mq_freeze_queue (Ming Lei) [RHEL-79456] - block: fix nr_hw_queue update racing with disk addition/removal (Ming Lei) [RHEL-79456] - block: get rid of request queue ->sysfs_dir_lock (Ming Lei) [RHEL-79456] - loop: don't clear LO_FLAGS_PARTSCAN on LOOP_SET_STATUS{,64} (Ming Lei) [RHEL-79456] - blk-mq: create correct map for fallback case (Ming Lei) [RHEL-79456] - block: don't revert iter for -EIOCBQUEUED (Ming Lei) [RHEL-79456] - block: Don't trim an atomic write (Ming Lei) [RHEL-79456] - block: Add common atomic writes enable flag (Ming Lei) [RHEL-79456] - block: limit disk max sectors to (LLONG_MAX >> 9) (Ming Lei) [RHEL-79456] - block: Change blk_stack_atomic_writes_limits() unit_min check (Ming Lei) [RHEL-79456] - block: Ensure start sector is aligned for stacking atomic writes (Ming Lei) [RHEL-79456] - blk-mq: Move more error handling into blk_mq_submit_bio() (Ming Lei) [RHEL-79456] - block: Reorder the request allocation code in blk_mq_submit_bio() (Ming Lei) [RHEL-79456] - partitions: ldm: remove the initial kernel-doc notation (Ming Lei) [RHEL-79456] - blk-cgroup: rwstat: fix kernel-doc warnings in header file (Ming Lei) [RHEL-79456] - blk-cgroup: fix kernel-doc warnings in header file (Ming Lei) [RHEL-79456] - block: mark GFP_NOIO around sysfs ->store() (Ming Lei) [RHEL-79456] - loop: remove the use_dio field in struct loop_device (Ming Lei) [RHEL-79456] - loop: don't freeze the queue in loop_update_dio (Ming Lei) [RHEL-79456] - loop: allow loop_set_status to re-enable direct I/O (Ming Lei) [RHEL-79456] - loop: open code the direct I/O flag update in loop_set_dio (Ming Lei) [RHEL-79456] - loop: only write back pagecache when starting to to use direct I/O (Ming Lei) [RHEL-79456] - loop: create a lo_can_use_dio helper (Ming Lei) [RHEL-79456] - loop: update commands in loop_set_status still referring to transfers (Ming Lei) [RHEL-79456] - loop: move updating lo_flags out of loop_set_status_from_info (Ming Lei) [RHEL-79456] - nbd: don't allow reconnect after disconnect (Ming Lei) [RHEL-79456] - block: simplify tag allocation policy selection (Ming Lei) [RHEL-79456] - block: remove BLK_MQ_F_NO_SCHED (Ming Lei) [RHEL-79456] - block: remove blk_mq_init_bitmaps (Ming Lei) [RHEL-79456] - block: better split mq vs non-mq code in add_disk_fwnode (Ming Lei) [RHEL-79456] - block: add a dma mapping iterator (Ming Lei) [RHEL-79456] - block: use page_to_phys in bvec_phys (Ming Lei) [RHEL-79456] - asm-generic: add an optional pfn_valid check to page_to_phys (Ming Lei) [RHEL-79456] - asm-generic: provide generic page_to_phys and phys_to_page implementations (Ming Lei) [RHEL-79456] - block: remove blk_rq_bio_prep (Ming Lei) [RHEL-79456] - block: remove bio_add_pc_page (Ming Lei) [RHEL-79456] - ps3disk: Do not use dev->bounce_size before it is set (Ming Lei) [RHEL-79456] - block: retry call probe after request_module in blk_request_module (Ming Lei) [RHEL-79456] - kyber: constify sysfs attributes (Ming Lei) [RHEL-79456] - block, bfq: constify sysfs attributes (Ming Lei) [RHEL-79456] - block: mq-deadline: Constify sysfs attributes (Ming Lei) [RHEL-79456] - elevator: Enable const sysfs attributes (Ming Lei) [RHEL-79456] - blk-zoned: Split queue_zone_wplugs_show() (Ming Lei) [RHEL-79456] - blk-zoned: Improve the queue reference count strategy documentation (Ming Lei) [RHEL-79456] - blk-zoned: Document locking assumptions (Ming Lei) [RHEL-79456] - blk-zoned: Minimize #include directives (Ming Lei) [RHEL-79456] - block: remove BLK_MQ_F_SHOULD_MERGE (Ming Lei) [RHEL-79456] - blk-mq: remove unused queue mapping helpers (Ming Lei) [RHEL-79456] - virtio: blk/scsi: replace blk_mq_virtio_map_queues with blk_mq_map_hw_queues (Ming Lei) [RHEL-79456] - nvme: replace blk_mq_pci_map_queues with blk_mq_map_hw_queues (Ming Lei) [RHEL-79456] - scsi: replace blk_mq_pci_map_queues with blk_mq_map_hw_queues (Ming Lei) [RHEL-79456] - blk-mq: introduce blk_mq_map_hw_queues (Ming Lei) [RHEL-79456] - virtio: hookup irq_get_affinity callback (Ming Lei) [RHEL-79456] - PCI: hookup irq_get_affinity callback (Ming Lei) [RHEL-79456] - driver core: bus: add irq_get_affinity callback to bus_type (Ming Lei) [RHEL-79456] - blktrace: remove redundant return at end of function (Ming Lei) [RHEL-79456] - block: Delete bio_set_prio() (Ming Lei) [RHEL-79456] - block: Delete bio_prio() (Ming Lei) [RHEL-79456] - blktrace: move copy_[to|from]_user() out of ->debugfs_lock (Ming Lei) [RHEL-79456] - blktrace: don't centralize grabbing q->debugfs_mutex in blk_trace_ioctl (Ming Lei) [RHEL-79456] - null_blk: Add rotational feature support (Ming Lei) [RHEL-79456] - block: track queue dying state automatically for modeling queue freeze lockdep (Ming Lei) [RHEL-79456] - block: don't verify queue freeze manually in elevator_init_mq() (Ming Lei) [RHEL-79456] - block: track disk DEAD state automatically for modeling queue freeze lockdep (Ming Lei) [RHEL-79456] - block: remove unnecessary check in blk_unfreeze_check_owner() (Ming Lei) [RHEL-79456] - block, bfq: fix waker_bfqq UAF after bfq_split_bfqq() (Ming Lei) [RHEL-79456] - cdrom: Fix typo, 'devicen' to 'device' (Ming Lei) [RHEL-79456] - ublk: detach gendisk from ublk device if add_disk() fails (Ming Lei) [RHEL-79456] - block: avoid to reuse `hctx` not removed from cpuhp callback list (Ming Lei) [RHEL-79456] - block: Revert "block: Fix potential deadlock while freezing queue and acquiring sysfs_lock" (Ming Lei) [RHEL-79456] - nvme: use blk_validate_block_size() for max LBA check (Ming Lei) [RHEL-79456] - block/bdev: use helper for max block size check (Ming Lei) [RHEL-79456] - block: Fix potential deadlock while freezing queue and acquiring sysfs_lock (Ming Lei) [RHEL-79456] - blk-mq: Clean up blk_mq_requeue_work() (Ming Lei) [RHEL-79456] - mq-deadline: Remove a local variable (Ming Lei) [RHEL-79456] - blk-iocost: Avoid using clamp() on inuse in __propagate_weights() (Ming Lei) [RHEL-79456] - block: Make bio_iov_bvec_set() accept pointer to const iov_iter (Ming Lei) [RHEL-79456] - block: get wp_offset by bdev_offset_from_zone_start (Ming Lei) [RHEL-79456] - blk-cgroup: Fix UAF in blkcg_unpin_online() (Ming Lei) [RHEL-79456] - MAINTAINERS: update Coly Li's email address (Ming Lei) [RHEL-79456] - blk-mq: move cpuhp callback registering out of q->sysfs_lock (Ming Lei) [RHEL-79456] - blk-mq: register cpuhp callback after hctx is added to xarray table (Ming Lei) [RHEL-79456] - virtio-blk: don't keep queue frozen during system suspend (Ming Lei) [RHEL-79456] - block: rnull: add missing MODULE_DESCRIPTION (Ming Lei) [RHEL-79456] - block: Don't allow an atomic write be truncated in blkdev_write_iter() (Ming Lei) [RHEL-79456] - block: Add bdev atomic write limits helpers (Ming Lei) [RHEL-79456] - fs/block: Check for IOCB_DIRECT in generic_atomic_write_valid() (Ming Lei) [RHEL-79456] - block/fs: Pass an iocb to generic_atomic_write_valid() (Ming Lei) [RHEL-79456] - brd: decrease the number of allocated pages which discarded (Ming Lei) [RHEL-79456] - block, bfq: fix bfqq uaf in bfq_limit_depth() (Ming Lei) [RHEL-79456] - mq-deadline: don't call req_get_ioprio from the I/O completion handler (Ming Lei) [RHEL-79456] - block: Remove extra part pointer NULLify in blk_rq_init() (Ming Lei) [RHEL-79456] - block: return bool from get_disk_ro and bdev_read_only (Ming Lei) [RHEL-79456] - block: remove a duplicate definition for bdev_read_only (Ming Lei) [RHEL-79456] - block: return bool from blk_rq_aligned (Ming Lei) [RHEL-79456] - block: return unsigned int from blk_lim_dma_alignment_and_pad (Ming Lei) [RHEL-79456] - block: return unsigned int from queue_dma_alignment (Ming Lei) [RHEL-79456] - block: return unsigned int from bdev_io_opt (Ming Lei) [RHEL-79456] - block: req->bio is always set in the merge code (Ming Lei) [RHEL-79456] - block: don't bother checking the data direction for merges (Ming Lei) [RHEL-79456] - block: blk-mq: fix uninit-value in blk_rq_prep_clone and refactor (Ming Lei) [RHEL-79456] - block: Add extra checks in blk_validate_atomic_write_limits() (Ming Lei) [RHEL-79456] - ublk: fix error code for unsupported command (Ming Lei) [RHEL-79456] - block: Drop granularity check in queue_limit_discard_alignment() (Ming Lei) [RHEL-79456] - block: return unsigned int from bdev_io_min (Ming Lei) [RHEL-79456] - block: fix uaf for flush rq while iterating tags (Ming Lei) [RHEL-79456] - blk-settings: round down io_opt to physical_block_size (Ming Lei) [RHEL-79456] - rust: block: simplify Result<()> in validate_block_size return (Ming Lei) [RHEL-79456] - block: make struct rq_list available for !CONFIG_BLOCK (Ming Lei) [RHEL-79456] - block/genhd: use seq_put_decimal_ull for diskstats decimal values (Ming Lei) [RHEL-79456] - block: don't reorder requests in blk_mq_add_to_batch (Ming Lei) [RHEL-79456] - block: don't reorder requests in blk_add_rq_to_plug (Ming Lei) [RHEL-79456] - block: add a rq_list type (Ming Lei) [RHEL-79456] - block: remove rq_list_move (Ming Lei) [RHEL-79456] - virtio_blk: reverse request order in virtio_queue_rqs (Ming Lei) [RHEL-79456] - nvme-pci: reverse request order in nvme_queue_rqs (Ming Lei) [RHEL-79456] - btrfs: validate queue limits (Ming Lei) [RHEL-79456] - block: remove the ioprio field from struct request (Ming Lei) [RHEL-79456] - block: remove the write_hint field from struct request (Ming Lei) [RHEL-79456] - nvme-multipath: don't bother clearing max_hw_zone_append_sectors (Ming Lei) [RHEL-79456] - block: pre-calculate max_zone_append_sectors (Ming Lei) [RHEL-79456] - block: lift bio_is_zone_append to bio.h (Ming Lei) [RHEL-79456] - block: fix bio_split_rw_at to take zone_write_granularity into account (Ming Lei) [RHEL-79456] - block: take chunk_sectors into account in bio_split_write_zeroes (Ming Lei) [RHEL-79456] - block: Handle bio_split() errors in bio_submit_split() (Ming Lei) [RHEL-79456] - block: Error an attempt to split an atomic write in bio_split() (Ming Lei) [RHEL-79456] - block: Rework bio_split() return value (Ming Lei) [RHEL-79456] - ublk: fix ublk_ch_mmap() for 64K page size (Ming Lei) [RHEL-79456] - s390/dasd: Fix typo in comment (Ming Lei) [RHEL-79456] - s390/dasd: fix redundant /proc/dasd* entries removal (Ming Lei) [RHEL-79456] - block: don't verify IO lock for freeze/unfreeze in elevator_init_mq() (Ming Lei) [RHEL-79456] - block: always verify unfreeze lock on the owner task (Ming Lei) [RHEL-79456] - rbd: unfreeze queue after marking disk as dead (Ming Lei) [RHEL-79456] - block: remove blk_freeze_queue() (Ming Lei) [RHEL-79456] - nvme: add reservation command's defines (Ming Lei) [RHEL-79456] - Revert "block: pre-calculate max_zone_append_sectors" (Ming Lei) [RHEL-79456] - mtip32xx: Replace deprecated PCI functions (Ming Lei) [RHEL-79456] - nvme-core: remove repeated wq flags (Ming Lei) [RHEL-79456] - nvmet: make nvmet_wq visible in sysfs (Ming Lei) [RHEL-79456] - nvme-pci: use dma_alloc_noncontigous if possible (Ming Lei) [RHEL-79456] - nvme-pci: fix freeing of the HMB descriptor table (Ming Lei) [RHEL-79456] - block: update blk_stack_limits documentation (Ming Lei) [RHEL-79456] - lib/iov_iter: fix bvec iterator setup (Ming Lei) [RHEL-79456] - lib/iov_iter.c: initialize bi.bi_idx before iterating over bvec (Ming Lei) [RHEL-79456] - blk-integrity: remove seed for user mapped buffers (Ming Lei) [RHEL-79456] - brd: defer automatic disk creation until module initialization succeeds (Ming Lei) [RHEL-79456] - iov_iter: don't require contiguous pages in iov_iter_extract_bvec_pages (Ming Lei) [RHEL-79456] - block: model freeze & enter queue as lock for supporting lockdep (Ming Lei) [RHEL-79456] - nvme: core: switch to non_owner variant of start_freeze/unfreeze queue (Ming Lei) [RHEL-79456] - blk-mq: add non_owner variant of start_freeze/unfreeze queue APIs (Ming Lei) [RHEL-79456] - blk-mq: Unexport blk_mq_flush_busy_ctxs() (Ming Lei) [RHEL-79456] - blk-mq: Make blk_mq_quiesce_tagset() hold the tag list mutex less long (Ming Lei) [RHEL-79456] - block: remove redundant explicit memory barrier from rq_qos waiter and waker (Ming Lei) [RHEL-79456] - nvme: use helpers to access io_uring cmd space (Ming Lei) [RHEL-79456] - block: flush all throttled bios when deleting the cgroup (Ming Lei) [RHEL-79456] - block: fix ordering between checking BLK_MQ_S_STOPPED request adding (Ming Lei) [RHEL-79456] - block: fix ordering between checking QUEUE_FLAG_QUIESCED request adding (Ming Lei) [RHEL-79456] - block: fix missing dispatching request when queue is started or unquiesced (Ming Lei) [RHEL-79456] - Revert "blk-throttle: Fix IO hang for a corner case" (Ming Lei) [RHEL-79456] - block: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (Ming Lei) [RHEL-79456] - Documentation: ublk: document UBLK_F_USER_RECOVERY_FAIL_IO (Ming Lei) [RHEL-79456] - ublk: support device recovery without I/O queueing (Ming Lei) [RHEL-79456] - ublk: merge stop_work and quiesce_work (Ming Lei) [RHEL-79456] - ublk: refactor recovery configuration flag helpers (Ming Lei) [RHEL-79456] - ublk: check recovery flags for validity (Ming Lei) [RHEL-79456] - block: add partition uuid into uevent as "PARTUUID" (Ming Lei) [RHEL-79456] - block: move issue side time stamping to blk_account_io_start() (Ming Lei) [RHEL-79456] - dt-bindings: mmc: Document support for partition table in mmc-card (Ming Lei) [RHEL-79456] - block: add support for partition table defined in OF (Ming Lei) [RHEL-79456] - mmc: block: attach partitions fwnode if found in mmc-card (Ming Lei) [RHEL-79456] - block: introduce add_disk_fwnode() (Ming Lei) [RHEL-79456] - docs: block: Document support for read-only partition in cmdline part (Ming Lei) [RHEL-79456] - block: add support for defining read-only partitions (Ming Lei) [RHEL-79456] - block: kill blk_do_io_stat() helper (Ming Lei) [RHEL-79456] - block: remove 'req->part' check for stats accounting (Ming Lei) [RHEL-79456] - block: remove redundant passthrough check in blk_mq_need_time_stamp() (Ming Lei) [RHEL-79456] - block: export blk_validate_limits (Ming Lei) [RHEL-62933] - block: set issue time stamp based on queue state (Ming Lei) [RHEL-62933] - loop: fix queue freeze vs limits lock order (Ming Lei) [RHEL-62933] - loop: refactor queue limits updates (Ming Lei) [RHEL-62933] - usb-storage: fix queue freeze vs limits lock order (Ming Lei) [RHEL-62933] - nbd: fix queue freeze vs limits lock order (Ming Lei) [RHEL-62933] - nvme: fix queue freeze vs limits lock order (Ming Lei) [RHEL-62933] - block: fix queue freeze vs limits lock order in sysfs store methods (Ming Lei) [RHEL-62933] - block: add a store_limit operations for sysfs entries (Ming Lei) [RHEL-62933] - block: don't update BLK_FEAT_POLL in __blk_mq_update_nr_hw_queues (Ming Lei) [RHEL-62933] - block: check BLK_FEAT_POLL under q_usage_count (Ming Lei) [RHEL-62933] - block: add a queue_limits_commit_update_frozen helper (Ming Lei) [RHEL-62933] - block: fix docs for freezing of queue limits updates (Ming Lei) [RHEL-62933] - block: pre-calculate max_zone_append_sectors (Ming Lei) [RHEL-62933] - block: remove the max_zone_append_sectors check in blk_revalidate_disk_zones (Ming Lei) [RHEL-62933] - block: remove bio_add_zone_append_page (Ming Lei) [RHEL-62933] - block: remove zone append special casing from the direct I/O path (Ming Lei) [RHEL-62933] - block: Replace sprintf() with sysfs_emit() (Ming Lei) [RHEL-62933] - block: Fix queue_iostats_passthrough_show() (Ming Lei) [RHEL-62933] - block: enable passthrough command statistics (Ming Lei) [RHEL-62933] - block: move iostat check into blk_acount_io_start() (Ming Lei) [RHEL-62933] - block: return void from the queue_sysfs_entry load_module method (Ming Lei) [RHEL-62933] - loop: Fix ABBA locking race (Ming Lei) [RHEL-62933] - loop: Simplify discard granularity calc (Ming Lei) [RHEL-62933] - loop: Use bdev limit helpers for configuring discard (Ming Lei) [RHEL-62933] - block: add a bdev_limits helper (Ming Lei) [RHEL-62933] - PCI: dwc: ep: Prevent changing BAR size/flags in pci_epc_set_bar() (Myron Stowe) [RHEL-81557] {CVE-2024-58006} - PCI: dwc: ep: Write BAR_MASK before iATU registers in pci_epc_set_bar() (Myron Stowe) [RHEL-81557] - exfat: fix out-of-bounds access of directory entries (CKI Backport Bot) [RHEL-78928] {CVE-2024-53147} - RDMA/nldev: Set error code in rdma_nl_notify_event (Kamal Heib) [RHEL-77879] - RDMA/core: Fix ENODEV error for iWARP test over vlan (Kamal Heib) [RHEL-77879] - IB/cm: Rework sending DREQ when destroying a cm_id (Kamal Heib) [RHEL-77879] - IB/cm: Do not hold reference on cm_id unless needed (Kamal Heib) [RHEL-77879] - IB/cm: Explicitly mark if a response MAD is a retransmission (Kamal Heib) [RHEL-77879] - RDMA/nldev: Add IB device and net device rename events (Kamal Heib) [RHEL-77879] - RDMA/core: Move ib_uverbs_file struct to uverbs_types.h (Kamal Heib) [RHEL-77879] - RDMA/core: Add device ufile cleanup operation (Kamal Heib) [RHEL-77879] - RDMA/core: Implement RoCE GID port rescan and export delete function (Kamal Heib) [RHEL-77879] - RDMA: Use ethtool string helpers (Kamal Heib) [RHEL-77879] - RDMA/ipoib: Use the networking stack default for txqueuelen (Kamal Heib) [RHEL-77879] - RDMA/core: Provide rdma_user_mmap_disassociate() to disassociate mmap pages (Kamal Heib) [RHEL-77879] - PCI: rockchip-ep: Fix error code in rockchip_pcie_ep_init_ob_mem() (Myron Stowe) [RHEL-74285] - PCI: rockchip: Add missing fields descriptions for struct rockchip_pcie_ep (Myron Stowe) [RHEL-74285] - PCI/bwctrl: Fix NULL pointer deref on unbind and bind (Myron Stowe) [RHEL-74285] - PCI/bwctrl: Enable only if more than one speed is supported (Myron Stowe) [RHEL-74285] - PCI: Honor Max Link Speed when determining supported speeds (Myron Stowe) [RHEL-74285] - PCI/pwrctrl: Unregister platform device only if one actually exists (Myron Stowe) [RHEL-74285] - PCI: Fix typos (Myron Stowe) [RHEL-74285] - tools: PCI: Fix incorrect printf format specifiers (Myron Stowe) [RHEL-74285] - PCI: Simplify pci_create_slot() logic (Myron Stowe) [RHEL-74285] - PCI: Fix reset_method_store() memory leak (Myron Stowe) [RHEL-74285] {CVE-2024-56745} - PCI: hotplug: Remove "Returns" kerneldoc from void functions (Myron Stowe) [RHEL-74285] - PCI: hotplug: Reorganize kerneldoc parameter names (Myron Stowe) [RHEL-74285] - PCI: tegra194: Move controller cleanups to pex_ep_event_pex_rst_deassert() (Myron Stowe) [RHEL-74285] {CVE-2024-53152} - PCI: rockchip-ep: Handle PERST# signal in EP mode (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Improve link training (Myron Stowe) [RHEL-74285] - PCI: rockship-ep: Implement the pci_epc_ops::stop_link() operation (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Refactor endpoint link training enable (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Refactor rockchip_pcie_ep_probe() MSI-X hiding (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Refactor rockchip_pcie_ep_probe() memory allocations (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Rename rockchip_pcie_parse_ep_dt() (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Fix MSI IRQ data mapping (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Implement the pci_epc_ops::align_addr() operation (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Improve rockchip_pcie_ep_map_addr() (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Improve rockchip_pcie_ep_unmap_addr() (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Use a macro to define EP controller .align feature (Myron Stowe) [RHEL-74285] - PCI: rockchip-ep: Fix address translation unit programming (Myron Stowe) [RHEL-74285] - PCI: qcom: Disable ASPM L0s for X1E80100 (Myron Stowe) [RHEL-74285] - PCI: qcom: Remove BDF2SID mapping config for SC8280X family SoC (Myron Stowe) [RHEL-74285] - dt-bindings: PCI: qcom,pcie-x1e80100: Add 'global' interrupt (Myron Stowe) [RHEL-74285] - dt-bindings: PCI: qcom: Move OPP table to qcom,pcie-common.yaml (Myron Stowe) [RHEL-74285] - PCI: qcom: Add support for IPQ9574 (Myron Stowe) [RHEL-74285] - dt-bindings: PCI: qcom: Document the IPQ9574 PCIe controller (Myron Stowe) [RHEL-74285] - PCI: qcom-ep: Move controller cleanups to qcom_pcie_perst_deassert() (Myron Stowe) [RHEL-74285] {CVE-2024-53153} - PCI: qcom: Enable MSI interrupts together with Link up if 'Global IRQ' is supported (Myron Stowe) [RHEL-74285] - PCI: microchip: Add support for using either Root Port 1 or 2 (Myron Stowe) [RHEL-74285] - dt-bindings: PCI: microchip,pcie-host: Add reg for Root Port 2 (Myron Stowe) [RHEL-74285] - PCI: mediatek-gen3: Remove unneeded semicolon (Myron Stowe) [RHEL-74285] - PCI: mediatek-gen3: Add support for restricting link width (Myron Stowe) [RHEL-74285] - PCI: mediatek-gen3: Add support for setting max-link-speed limit (Myron Stowe) [RHEL-74285] - PCI: keystone: Add link up check to ks_pcie_other_map_bus() (Myron Stowe) [RHEL-74285] - PCI: keystone: Set mode as Root Complex for "ti,keystone-pcie" compatible (Myron Stowe) [RHEL-74285] - PCI: j721e: Deassert PERST# after a delay of PCIE_T_PVPERL_MS milliseconds (Myron Stowe) [RHEL-74285] - PCI: j721e: Add PCIe support for J722S SoC (Myron Stowe) [RHEL-74285] - PCI: imx6: Fix suspend/resume support on i.MX6QDL (Myron Stowe) [RHEL-74285] {CVE-2024-57809} - PCI: dwc: ep: Fix advertised resizable BAR size regression (Myron Stowe) [RHEL-74285] - PCI: dwc: Use of_property_present() for non-boolean properties (Myron Stowe) [RHEL-74285] - PCI: dwc: endpoint: Clear outbound address on unmap (Myron Stowe) [RHEL-74285] - PCI: cadence: Lower severity of message when phy-names property is absent in DTS (Myron Stowe) [RHEL-74285] - PCI: endpoint: Fix pci_epc_map map_size kerneldoc string (Myron Stowe) [RHEL-74285] - PCI: endpoint: Clear secondary (not primary) EPC in pci_epc_remove_epf() (Myron Stowe) [RHEL-74285] - PCI: endpoint: Fix PCI domain ID release in pci_epc_destroy() (Myron Stowe) [RHEL-74285] {CVE-2024-56561} - PCI: endpoint: epf-mhi: Avoid NULL dereference if DT lacks 'mmio' (Myron Stowe) [RHEL-74285] {CVE-2024-56689} - PCI: endpoint: Remove surplus return statement from pci_epf_test_clean_dma_chan() (Myron Stowe) [RHEL-74285] - PCI: dwc: ep: Use align addr function for dw_pcie_ep_raise_{msi,msix}_irq() (Myron Stowe) [RHEL-74285] - PCI: endpoint: test: Synchronously cancel command handler work (Myron Stowe) [RHEL-74285] - PCI: dwc: endpoint: Implement the pci_epc_ops::align_addr() operation (Myron Stowe) [RHEL-74285] - PCI: endpoint: test: Use pci_epc_mem_map/unmap() (Myron Stowe) [RHEL-74285] - PCI: endpoint: Update documentation (Myron Stowe) [RHEL-74285] - PCI: endpoint: Introduce pci_epc_mem_map()/unmap() (Myron Stowe) [RHEL-74285] - PCI: endpoint: Improve pci_epc_mem_alloc_addr() (Myron Stowe) [RHEL-74285] - PCI: endpoint: Introduce pci_epc_function_is_valid() (Myron Stowe) [RHEL-74285] - dt-bindings: PCI: snps,dw-pcie: Drop "#interrupt-cells" from example (Myron Stowe) [RHEL-74285] - dt-bindings: PCI: qcom,pcie-sm8550: Add SAR2130P compatible (Myron Stowe) [RHEL-74285] - dt-bindings: PCI: mediatek-gen3: Allow exact number of clocks only (Myron Stowe) [RHEL-74285] - PCI: Add ACS quirk for Wangxun FF5xxx NICs (Myron Stowe) [RHEL-74285] - PCI: Detect and trust built-in Thunderbolt chips (Myron Stowe) [RHEL-74285] - PCI: Improve pdev_sort_resources() warning message (Myron Stowe) [RHEL-74285] - PCI: Add ALIGN_DOWN_IF_NONZERO() helper (Myron Stowe) [RHEL-74285] - PCI: Use align and resource helpers, and SZ_* in quirk_s3_64M() (Myron Stowe) [RHEL-74285] - PCI: Use resource_set_{range,size}() helpers (Myron Stowe) [RHEL-74285] - resource: Add resource set range and size helpers (Myron Stowe) [RHEL-74285] - PCI: Warn if a running device is unaware of reset (Myron Stowe) [RHEL-74285] - PCI: Add 'reset_subordinate' to reset hierarchy below bridge (Myron Stowe) [RHEL-74285] - PCI/pwrctrl: Rename pwrctrl functions and structures (Myron Stowe) [RHEL-74285] - PCI/pwrctrl: Rename pwrctl files to pwrctrl (Myron Stowe) [RHEL-74285] - PCI/pwrctl: Remove pwrctl device without iterating over all children of pwrctl parent (Myron Stowe) [RHEL-74285] - PCI/pwrctl: Ensure that pwrctl drivers are probed before PCI client drivers (Myron Stowe) [RHEL-74285] - PCI/pwrctl: Create pwrctl device only if at least one power supply is present (Myron Stowe) [RHEL-74285] - PCI/pwrctl: Use of_platform_device_create() to create pwrctl devices (Myron Stowe) [RHEL-74285] - PCI: Enable runtime PM of the host bridge (Myron Stowe) [RHEL-74285] - PCI: starfive: Enable controller runtime PM before probing host bridge (Myron Stowe) [RHEL-74285] - PCI: of_property: Assign PCI instead of CPU bus address to dynamic PCI nodes (Myron Stowe) [RHEL-74285] - PCI: Unexport pci_walk_bus_locked() (Myron Stowe) [RHEL-74285] - PCI: Convert __pci_walk_bus() to be recursive (Myron Stowe) [RHEL-74285] - PCI: Move __pci_walk_bus() mutex to where we need it (Myron Stowe) [RHEL-74285] - PCI: Make pci_destroy_dev() concurrent safe (Myron Stowe) [RHEL-74285] - PCI: Make pci_stop_dev() concurrent safe (Myron Stowe) [RHEL-74285] - PCI: Fix use-after-free of slot->bus on hot remove (Myron Stowe) [RHEL-74285] {CVE-2024-53194} - PCI: cpqphp: Simplify PCI_ScanBusForNonBridge() (Myron Stowe) [RHEL-74285] - PCI: cpqphp: Use define to read class/revision dword (Myron Stowe) [RHEL-74285] - PCI: cpqphp: Use pci_bus_read_dev_vendor_id() to detect presence (Myron Stowe) [RHEL-74285] - PCI: cpqphp: Fix PCIBIOS_* return value confusion (Myron Stowe) [RHEL-74285] - PCI: cpqphp: Remove unused struct ctrl_dbg.ctrl (Myron Stowe) [RHEL-74285] - PCI: cpcihp: Remove unused struct cpci_hp_controller_ops.hardware_test (Myron Stowe) [RHEL-74285] - PCI: Simplify pci_read_bridge_bases() logic (Myron Stowe) [RHEL-74285] - PCI: Move struct pci_bus_resource into bus.c (Myron Stowe) [RHEL-74285] - PCI: Remove unused PCI_SUBTRACTIVE_DECODE (Myron Stowe) [RHEL-74285] - PCI: acpiphp_ampere_altra: Switch back to struct platform_driver::remove() (Myron Stowe) [RHEL-74285] - PCI: controller: Switch back to struct platform_driver::remove() (Myron Stowe) [RHEL-74285] - ethernet: cavium: Replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - gpio: Replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - fpga/dfl-pci.c: Replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - PCI: Deprecate pcim_iounmap_regions() (Myron Stowe) [RHEL-74285] - PCI: Make pcim_iounmap_region() a public function (Myron Stowe) [RHEL-74285] - PCI: Remove pcim_iomap_regions_request_all() (Myron Stowe) [RHEL-74285] - ALSA: korg1212: Replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - serial: rp2: Replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - ntb: idt: Replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - wifi: iwlwifi: replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - intel_th: pci: Replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - crypto: marvell - replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - crypto: qat - replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - ata: ahci: Replace deprecated PCI functions (Myron Stowe) [RHEL-74285] - PCI: Make pcim_request_all_regions() a public function (Myron Stowe) [RHEL-74285] - PCI/DOE: Poll DOE Busy bit for up to 1 second in pci_doe_send_req() (Myron Stowe) [RHEL-74285] - PCI: Drop duplicate pcie_get_speed_cap(), pcie_get_width_cap() declarations (Myron Stowe) [RHEL-74285] - selftests/pcie_bwctrl: Create selftests (Myron Stowe) [RHEL-74285] - thermal: Add PCIe cooling driver (Myron Stowe) [RHEL-74285] - PCI/bwctrl: Add pcie_set_target_speed() to set PCIe Link Speed (Myron Stowe) [RHEL-74285] - PCI/bwctrl: Re-add BW notification portdrv as PCIe BW controller (Myron Stowe) [RHEL-74285] - PCI: Abstract LBMS seen check into pcie_lbms_seen() (Myron Stowe) [RHEL-74285] - PCI: Refactor pcie_update_link_speed() (Myron Stowe) [RHEL-74285] - PCI: Store all PCIe Supported Link Speeds (Myron Stowe) [RHEL-74285] - PCI: Protect Link Control 2 Register with RMW locking (Myron Stowe) [RHEL-74285] - Documentation PCI: Reformat RMW ops documentation (Myron Stowe) [RHEL-74285] - PCI/ASPM: Add notes about enabling PCI-PM L1SS to pci_enable_link_state(_locked) (Myron Stowe) [RHEL-74285] - PCI/ASPM: Disable L1 before disabling L1 PM Substates (Myron Stowe) [RHEL-74285] - EDAC/{i10nm,skx,skx_common}: Support UV systems (Aristeu Rozanski) [RHEL-73781] - Documentation/sysctl: Add timer_migration to kernel.rst (Phil Auld) [RHEL-77929] - ASoC: SOF: Intel: hda-dai: Ensure DAI widget is valid during params (CKI Backport Bot) [RHEL-81442] {CVE-2024-58012} - EDAC/amd64: Simplify ECC check on unified memory controllers (Aristeu Rozanski) [RHEL-73050] - perf test record+probe_libc_inet_pton: Make test resilient (Jakub Brnak) [RHEL-74339] - Revert "selftests/mm: remove local __NR_* definitions" (Li Wang) [RHEL-79766] - Enable Intel VPU driver for RHEL (Fabien Dupont) [RHEL-38582] - arm64: cacheinfo: Avoid out-of-bounds write to cacheinfo array (Radu Rendec) [RHEL-80226] - smb: client: fix chmod(2) regression with ATTR_READONLY (Jay Shin) [RHEL-82677] - kabi: enable check-kabi (Čestmír Kalina) [RHEL-79881] - kabi: add symbol zap_vma_ptes to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xsk_uses_need_wakeup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xsk_tx_release to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xsk_tx_peek_release_desc_batch to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xsk_tx_peek_desc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xsk_tx_completed to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xsk_set_tx_need_wakeup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xsk_set_rx_need_wakeup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xsk_get_pool_from_qid to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xsk_clear_rx_need_wakeup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xp_set_rxq_info to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xp_raw_get_dma to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xp_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xp_fill_cb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xp_dma_unmap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xp_dma_map to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xp_can_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xp_alloc_batch to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_warn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_set_features_flag to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_rxq_info_unreg_mem_model to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_rxq_info_unreg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_rxq_info_reg_mem_model to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __xdp_rxq_info_reg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_rxq_info_is_reg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_return_frame_rx_napi to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_return_frame_bulk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_return_frame to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_return_buff to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_master_redirect to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_flush_frame_bulk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_features_set_redirect_target to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_features_clear_redirect_target to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_do_redirect to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_do_flush to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xdp_convert_zc_to_xdp_frame to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xa_store to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xa_load to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __xa_insert to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xa_find_after to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xa_find to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xa_erase to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol xa_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __xa_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_return_thunk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_rsi to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_rdx to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_rdi to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_rcx to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_rbx to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_rbp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_rax to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_r9 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_r8 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_r15 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_r14 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_r13 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_r12 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_r11 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __x86_indirect_thunk_r10 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol x86_cpu_to_apicid to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __warn_printk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol wake_up_process to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __wake_up to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol wait_for_completion_timeout to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol wait_for_completion_io_timeout to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol wait_for_completion_interruptible to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol wait_for_completion to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vzalloc_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vsprintf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vsnprintf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vscnprintf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vm_munmap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vm_mmap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vmemmap_base to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vmalloc_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vmalloc_node_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vmalloc_base to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vmalloc_array_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vlan_dev_vlan_id to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vlan_dev_real_dev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __virt_addr_valid to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vfs_unlink to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vfs_mknod to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vfs_mkdir to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vfs_fsync_range to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol vfree to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_undefined to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_teardown_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_setup_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_possible_blades to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __uv_hub_info_list to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_get_hubless_system to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __uv_cpu_info to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_bios_obj_count to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_bios_install_heap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_bios_get_pci_topology to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_bios_get_master_nasid to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_bios_get_heapsize to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_bios_get_geoinfo to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_bios_enum_ports to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol uv_bios_enum_objs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol usleep_range_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol up_write to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol up_read to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol up to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_switchdev_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_switchdev_blocking_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_reboot_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_netevent_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_netdevice_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_netdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_kprobe to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_inetaddr_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_inet6addr_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_chrdev_region to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __unregister_chrdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol unregister_blkdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol udp_tunnel_nic_ops to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __udelay to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_unregister_driver to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_termios_encode_baud_rate to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_std_termios to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_register_driver to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_port_link_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_port_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_port_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_flip_buffer_push to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_driver_kref_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tty_buffer_request_room to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __tty_alloc_driver to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tsc_khz to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol try_module_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __trace_trigger_soft_disabled to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_raw_output_prep to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_print_bitmask_seq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __tracepoint_xdp_exception to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __tracepoint_mmap_lock_start_locking to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __tracepoint_mmap_lock_released to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __tracepoint_mmap_lock_acquire_returned to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_handle_return to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_event_reg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_event_raw_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_event_printf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_event_ignore_this_pid to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_event_buffer_reserve to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_event_buffer_commit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_array_set_clr_event to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_array_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol trace_array_get_by_name to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol touch_softlockup_watchdog to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tls_validate_xmit_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tls_get_record to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tls_encrypt_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tls_device_sk_destruct to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol timer_shutdown_sync to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol timer_shutdown to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol timer_delete_sync to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol timer_delete to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol timecounter_read to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol timecounter_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol timecounter_cyc2time to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol time64_to_tm to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tcp_gro_complete to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __tasklet_schedule to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tasklet_kill to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol tasklet_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sys_tz to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol system_wq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol system_unbound_wq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol system_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sysfs_streq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sysfs_remove_group to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sysfs_remove_file_ns to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sysfs_remove_bin_file to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __sysfs_match_string to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sysfs_emit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sysfs_create_group to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sysfs_create_file_ns to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sysfs_create_bin_file to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol synchronize_rcu to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol synchronize_net to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol synchronize_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sync_blockdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __symbol_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __symbol_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol switchdev_handle_port_obj_del to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol switchdev_handle_port_obj_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol switchdev_handle_port_attr_set to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __sw_hweight64 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __sw_hweight32 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol submit_bio_noacct to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strstr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strsep to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strrchr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strnlen to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strncpy_from_user to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strncpy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strncmp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strncasecmp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strlen to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strlcat to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strim to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strcspn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strcpy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strcmp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strchr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strcat to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol strcasecmp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol static_key_slow_inc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol static_key_slow_dec to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol static_key_enable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol static_key_disable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol static_key_count to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol starget_for_each_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __stack_chk_fail to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sscanf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sprintf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sort to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol softnet_data to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sock_gen_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sn_region_size to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol snprintf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sn_partition_id to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol smp_call_function_single_async to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol smp_call_function_single to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol smp_call_function_many to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol slab_build_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sk_skb_reason_drop to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sk_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_tstamp_tx to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_realloc_headroom to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_queue_tail to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_push to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_pull to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __skb_pad to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __skb_gso_segment to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __skb_flow_dissect to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_dequeue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_copy_header to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_copy_expand to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_copy_bits to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_copy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_clone_tx_timestamp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_clone to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_checksum_help to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol skb_add_rx_frag_netmem to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sk_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sized_strscpy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol single_release to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol single_open to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol simple_write_to_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol simple_strtoul to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol simple_strtol to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol simple_read_from_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol simple_open to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol simple_attr_release to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol simple_attr_open to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol si_meminfo to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_pcopy_to_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_pcopy_from_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_next to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_nents to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_miter_stop to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_miter_start to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_miter_next to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_copy_to_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_copy_from_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sg_copy_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol set_user_nice to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol set_normalized_timespec64 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol set_memory_wc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol set_cpus_allowed_ptr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol set_capacity to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol set_blocksize to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol seq_write to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol seq_release to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol seq_read to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __seq_puts to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol seq_putc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol seq_printf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol seq_open to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol seq_lseek to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol send_sig to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol secpath_set to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sdev_prefix_printk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __SCT__tp_func_xdp_exception to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __SCT__preempt_schedule_notrace to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __SCT__preempt_schedule to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __SCT__might_resched to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __SCT__cond_resched to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_unblock_requests to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_scan_target to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_scan_host to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_sanitize_inquiry_string to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_rescan_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_remove_target to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_remove_host to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_remove_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_print_command to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_normalize_sense to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsilun_to_int to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __scsi_iterate_devices to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_is_sdev_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_is_host_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_is_fc_rport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_host_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_host_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_host_busy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_host_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_get_vpd_page to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_done to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_dma_unmap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_dma_map to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_device_type to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_device_set_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_device_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_device_lookup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_device_from_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_change_queue_depth to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_build_sense_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_build_sense to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_block_requests to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_add_host_with_dma to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scsi_add_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scnprintf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol scmd_printk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __SCK__tp_func_xdp_exception to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol schedule_timeout_uninterruptible to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol schedule_timeout to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol schedule to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sched_clock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_rphy_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_rphy_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_remove_host to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_release_transport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_port_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_port_delete_phy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_port_delete to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_port_alloc_num to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_port_add_phy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_port_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_phy_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_phy_delete to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_phy_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_phy_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_expander_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_end_device_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_attach_transport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol sas_ata_ncq_prio_supported to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rtnl_unlock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rtnl_trylock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rtnl_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rtnl_is_locked to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rps_may_expire_flow to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol round_jiffies to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol root_device_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __root_device_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rht_bucket_nested_insert to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rht_bucket_nested to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __rht_bucket_nested to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rhashtable_walk_stop to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rhashtable_walk_start_check to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rhashtable_walk_next to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rhashtable_walk_exit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rhashtable_walk_enter to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rhashtable_insert_slow to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rhashtable_init_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rhashtable_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol reset_devices to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol request_threaded_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __request_region to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __request_module to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol request_firmware_nowait to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol request_firmware to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol remove_wait_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol remove_proc_entry to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol remap_pfn_range to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __release_region to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol release_firmware to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_switchdev_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_switchdev_blocking_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_reboot_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_netevent_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_netdevice_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_netdevice to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_netdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_kprobe to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_inetaddr_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_inet6addr_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol register_chrdev_region to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __register_chrdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __register_blkdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __refrigerator to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol refcount_warn_saturate to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rcuref_get_slowpath to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __rcu_read_unlock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __rcu_read_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rb_next to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol rb_first to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_write_unlock_irqrestore to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_write_unlock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_write_lock_irqsave to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_write_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_spin_unlock_irqrestore to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_spin_unlock_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_spin_unlock_bh to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_spin_unlock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_spin_trylock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_spin_lock_irqsave to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_spin_lock_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_spin_lock_bh to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_spin_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_read_unlock_irqrestore to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_read_unlock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_read_lock_irqsave to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _raw_read_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ___ratelimit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol radix_tree_lookup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol queue_work_on to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol queue_limits_commit_update to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol queue_delayed_work_on to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol qdisc_reset to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __put_user_8 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __put_user_4 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __put_user_2 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol put_disk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __put_devmap_managed_folio_refs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol put_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ptrs_per_p4d to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ptp_schedule_worker to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ptp_parse_header to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ptp_find_pin to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ptp_clock_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ptp_clock_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ptp_clock_index to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ptp_clock_event to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ptp_classify_raw to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ___pskb_trim to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __pskb_pull_tail to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pskb_expand_head to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol proc_remove to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol proc_mkdir to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol proc_create_data to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol proc_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol priv_to_devlink to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __printk_ratelimit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _printk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol print_hex_dump to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol prepare_to_wait_event to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol prepare_to_wait to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol prepare_creds to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pm_schedule_suspend to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __pm_runtime_resume to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __pm_runtime_idle to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pldmfw_op_pci_match_record to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pldmfw_flash_image to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pid_task to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_validate_pause to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_support_asym_pause to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_stop to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_start_aneg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_start to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol physical_mask to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_set_max_speed to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_set_asym_pause to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phys_base to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_mii_ioctl to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_ethtool_ksettings_set to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_ethtool_ksettings_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_disconnect to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_connect to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol phy_attached_info to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pgdir_shift to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol perf_trace_run_bpf_submit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol perf_trace_buf_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __per_cpu_offset to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcpu_hot to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcpu_alloc_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcix_set_mmrbc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_write_config_word to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_write_config_dword to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_write_config_byte to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_wake_from_d3 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_wait_for_pending_transaction to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_vpd_find_ro_info_keyword to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_vpd_check_csum to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_vpd_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_vfs_assigned to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_unregister_driver to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_try_set_mwi to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_sriov_set_totalvfs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_set_power_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_set_mwi to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_set_master to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_select_bars to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_save_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_restore_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_restore_msi_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_reset_bus to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_request_selected_regions to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_request_regions to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_release_selected_regions to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_release_regions to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __pci_register_driver to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_read_vpd to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_read_config_word to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_read_config_dword to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_read_config_byte to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_prepare_to_sleep to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_num_vf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_msix_free_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_msix_can_alloc_dyn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_msix_alloc_irq_at to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcim_iomap_table to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcim_iomap_regions to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcim_enable_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_irq_vector to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_irq_get_affinity to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_iov_virtfn_devfn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_iounmap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_ioremap_bar to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_iomap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_get_slot to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_get_dsn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_get_domain_bus_and_slot to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_get_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_free_irq_vectors to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_find_ext_capability to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_find_capability to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcie_set_readrq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcie_print_link_status to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_enable_wake to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_enable_sriov to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_enable_msix_range to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_enable_msi to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_enable_device_mem to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_enable_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcie_get_readrq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcie_flr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcie_capability_write_word to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcie_capability_read_word to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcie_capability_read_dword to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcie_capability_clear_and_set_word_unlocked to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pcie_capability_clear_and_set_word_locked to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_disable_sriov to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_disable_rom to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_disable_msix to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_disable_msi to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_disable_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_dev_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_dev_present to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_device_is_present to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_dev_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_clear_mwi to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_clear_master to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_choose_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_cfg_access_unlock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_cfg_access_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_bus_type to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_alloc_irq_vectors_affinity to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_alloc_irq_vectors to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol pci_aer_clear_nonfatal_status to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol path_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_ops_ushort to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_ops_ulong to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_ops_ullong to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_ops_uint to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_ops_long to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_ops_int to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_ops_charp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_ops_byte to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_ops_bool to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol param_array_ops to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol panic_notifier_list to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol panic to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol page_pool_put_unrefed_netmem to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol page_pool_disable_direct_recycling to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol page_pool_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol page_pool_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol page_pool_alloc_pages to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol page_pool_alloc_frag to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol page_offset_base to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol page_frag_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __page_frag_cache_drain to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvmet_fc_unregister_targetport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvmet_fc_register_targetport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvmet_fc_rcv_ls_req to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvmet_fc_rcv_fcp_req to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvmet_fc_rcv_fcp_abort to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvmet_fc_invalidate_host to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvme_fc_unregister_remoteport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvme_fc_unregister_localport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvme_fc_set_remoteport_devloss to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvme_fc_rescan_remoteport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvme_fc_register_remoteport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvme_fc_register_localport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvme_fc_rcv_ls_req to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nvme_fc_io_getuuid to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __num_online_cpus to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol numa_node to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ns_to_timespec64 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nr_cpu_ids to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol noop_llseek to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol node_to_cpumask_map to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol node_states to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __node_distance to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol nla_find to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol net_ratelimit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_tx_wake_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_tx_unlock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_tx_stop_all_queues to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_tx_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_set_xps_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_set_tso_max_size to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_set_tso_max_segs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_set_real_num_tx_queues to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_set_real_num_rx_queues to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_schedule_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_rx to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_receive_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_queue_set_napi to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __netif_napi_del to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_napi_add_weight to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_get_num_default_rss_queues to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_device_detach to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_device_attach to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_carrier_on to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netif_carrier_off to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol net_dim_get_rx_moderation to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol net_dim to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_warn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_walk_all_upper_dev_rcu to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_update_features to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_unbind_sb_channel to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_state_change to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_set_tc_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_set_sb_channel to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_set_num_tc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_rx_handler_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_rx_handler_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_rss_key_fill to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_reset_tc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_refcnt_read to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_printk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_port_same_parent_id to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_pick_tx to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_notice to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_master_upper_dev_get_rcu to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_master_upper_dev_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_info to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_features_change to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_err to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_crit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_core_stats_inc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol netdev_bind_sb_channel_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __netdev_alloc_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __netdev_alloc_frag_align to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __neigh_event_send to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol neigh_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ndo_dflt_fdb_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ndo_dflt_bridge_getlink to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __ndelay to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol napi_schedule_prep to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __napi_schedule_irqoff to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __napi_schedule to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol napi_gro_receive to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol napi_enable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol napi_disable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol napi_consume_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol napi_complete_done to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol napi_build_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol napi_alloc_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __napi_alloc_frag_align to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol names_cachep to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mutex_unlock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mutex_trylock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mutex_lock_interruptible to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mutex_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mutex_is_locked to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __mutex_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol msleep_interruptible to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol msleep to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __msecs_to_jiffies to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mpi_read_raw_data to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mpi_powm to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mpi_get_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mpi_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mpi_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol module_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol module_layout to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __module_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mod_timer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mod_delayed_work_on to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mmu_notifier_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mmu_notifier_get_locked to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mmput to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __mmap_lock_do_trace_start_locking to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __mmap_lock_do_trace_released to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __mmap_lock_do_trace_acquire_returned to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mlx5_core_uplink_netdev_event_replay to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mlx5_core_access_reg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mlx5_blocking_notifier_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mlx5_blocking_notifier_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol misc_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol misc_deregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol metadata_dst_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol metadata_dst_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memset to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mem_section to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mempool_kmalloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mempool_kfree to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mempool_free_slab to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mempool_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mempool_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mempool_create_node_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mempool_alloc_slab to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mempool_alloc_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memory_read_from_buffer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memmove to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memdup_user_nul to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memdup_user to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memcpy_toio to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memcpy_fromio to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memcpy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memcmp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memchr_inv to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol memchr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mds_idle_clear to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdio_mii_ioctl to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdiobus_write to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdiobus_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __mdiobus_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdiobus_read to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdiobus_get_phy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdiobus_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdiobus_c45_write to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdiobus_c45_read to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdiobus_alloc_size to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol mdio45_probe to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol lookup_one_len to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol local_clock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __local_bh_enable_ip to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __list_del_entry_valid_or_report to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __list_add_valid_or_report to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol libie_rx_pt_lut to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol libeth_rx_recycle_slow to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol libeth_rx_fq_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol libeth_rx_fq_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kvfree_call_rcu to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ktime_get_with_offset to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ktime_get_ts64 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ktime_get_seconds to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ktime_get_real_ts64 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ktime_get_real_seconds to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ktime_get_raw_ts64 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ktime_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_use_mm to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_unuse_mm to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_stop to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_should_stop to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_queue_work to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_queue_delayed_work to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_destroy_worker to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_delayed_work_timer_fn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_create_worker to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_create_on_node to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_complete_and_exit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_cancel_work_sync to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_cancel_delayed_work_sync to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kthread_bind to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kstrtoull to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kstrtouint to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kstrtou8 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kstrtou16 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kstrtos16 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kstrtoll to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kstrtoint to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kstrtobool to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ksize to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol krealloc_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kobject_uevent_env to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kobject_uevent to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kobject_set_name to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kobject_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kobject_init_and_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kobject_get_unless_zero to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kobject_create_and_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kmemdup_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kmem_cache_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kmem_cache_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __kmem_cache_create_args to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kmem_cache_alloc_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kmalloc_size_roundup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __kmalloc_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __kmalloc_node_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __kmalloc_large_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __kmalloc_large_node_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kmalloc_caches to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __kmalloc_cache_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __kmalloc_cache_node_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kill_pid to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kill_pgrp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kill_fasync to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kfree_sensitive to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kfree to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kexec_crash_loaded to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kern_path_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kern_path to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kernel_write to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kernel_sigaction to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kernel_read to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol kasprintf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol jiffies_to_usecs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol jiffies_to_msecs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol jiffies to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol iter_div_u64_rem to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol is_vmalloc_addr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol is_uv_system to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol irq_set_affinity_notifier to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol irq_set_affinity to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol irq_poll_sched to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol irq_poll_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol irq_poll_enable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol irq_poll_disable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol irq_poll_complete to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol irq_modify_status to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol irq_cpu_rmap_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __irq_apply_affinity_hint to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ipv6_skip_exthdr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ipv6_find_hdr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ipv6_ext_hdr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol iput to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ip_route_output_flow to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ip_queue_xmit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ip_compute_csum to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ip6_route_output_flags to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ip6_dst_hoplimit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __iowrite64_copy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol iounmap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ioremap_wc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ioremap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __ioread32_copy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol iomem_resource to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol invalidate_bdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol int_to_scsilun to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __init_waitqueue_head to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol init_wait_entry to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol init_uts_ns to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol init_user_ns to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol init_timer_key to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __init_swait_queue_head to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __init_rwsem to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol init_net to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __inet_lookup_established to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol inet_del_protocol to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol inet_add_protocol to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __inet6_lookup_established to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ilookup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol idr_remove to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol idr_find to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol idr_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol idr_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ida_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ida_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ida_alloc_range to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol I_BDEV to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol i2c_smbus_write_byte_data to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol i2c_smbus_read_byte_data to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol i2c_new_client_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol i2c_del_adapter to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol i2c_bit_add_bus to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hwmon_notify_event to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hwmon_device_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hwmon_device_register_with_info to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hwmon_device_register_with_groups to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hwmon_device_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __hw_addr_unsync_dev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __hw_addr_sync_dev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __hw_addr_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hugetlb_optimize_vmemmap_key to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hrtimer_start_range_ns to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hrtimer_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hrtimer_forward to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol hrtimer_cancel to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol gnss_register_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol gnss_put_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol gnss_insert_raw to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol gnss_deregister_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol gnss_allocate_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol get_zeroed_page_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol get_user_pages_remote to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __get_user_4 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __get_user_2 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol get_random_u32 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol get_random_u16 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol get_random_bytes to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol get_free_pages_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol get_device_system_crosststamp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol get_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol get_cpu_idle_time to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol generic_file_write_iter to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol generic_file_read_iter to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fs_bio_set to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol freezing_slow_path to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol free_percpu to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol free_pages to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __free_pages to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol free_netdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol free_irq_cpu_rmap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol free_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol free_cpumask_var to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fput to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __fortify_panic to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __folio_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __flush_workqueue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flush_work to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flush_signals to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_vlan to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_tcp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_pppoe to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_ports to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_l2tpv3 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_ipv6_addrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_ipv4_addrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_ip to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_icmp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_eth_addrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_enc_ports to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_enc_opts to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_enc_keyid to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_enc_ipv6_addrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_enc_ipv4_addrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_enc_ip to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_enc_control to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_cvlan to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_control to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_rule_match_basic to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_keys_dissector to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_indr_dev_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_indr_dev_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_indr_block_cb_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_block_cb_setup_simple to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol flow_block_cb_lookup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fixed_size_llseek to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol firmware_request_nowarn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol finish_wait to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol find_vma to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol find_pid_ns to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _find_next_zero_bit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _find_next_bit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _find_next_and_bit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _find_last_bit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _find_first_zero_bit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _find_first_bit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol filp_open to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol filp_close to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol file_ns_capable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol file_bdev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fget to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __fentry__ to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_vport_terminate to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_vport_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_remove_host to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_remote_port_rolechg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_remote_port_delete to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_remote_port_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_release_transport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_host_post_vendor_event to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_host_post_event to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_host_fpin_rcv to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_get_event_number to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_eh_timed_out to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_eh_should_retry_cmd to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_block_scsi_eh to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_block_rport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fc_attach_transport to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol fasync_helper to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol event_triggers_call to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol eth_validate_addr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol eth_type_trans to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_sprintf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_rxfh_context_lost to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_puts to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_params_from_link_mode to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_op_get_ts_info to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_op_get_link to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_intersect_link_masks to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_forced_speed_maps_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_convert_link_mode_to_legacy_u32 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ethtool_convert_legacy_u32_to_link_mode to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol eth_platform_get_mac_address to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol eth_get_headlen to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol ether_setup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol enable_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol empty_zero_page to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol emergency_restart to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol elfcorehdr_addr to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __dynamic_pr_debug to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __dynamic_netdev_dbg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __dynamic_dev_dbg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dump_stack to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dst_release to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol driver_remove_file to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol driver_for_each_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol driver_create_file to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dql_reset to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dql_completed to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dput to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_pin_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_pin_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_pin_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_pin_on_pin_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_pin_on_pin_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_pin_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_pin_change_ntf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_netdev_pin_set to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_netdev_pin_clear to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_device_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_device_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_device_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_device_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dpll_device_change_ntf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol down_write_trylock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol down_write to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol down_trylock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol down_read_trylock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol down_read to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol down_interruptible to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol downgrade_write to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol down to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol do_trace_netlink_extack to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol done_path_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dmi_get_system_info to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dmi_find_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_unmap_sg_attrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_unmap_page_attrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __dma_sync_single_for_device to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __dma_sync_single_for_cpu to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_set_mask to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_set_coherent_mask to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_pool_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_pool_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_pool_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_pool_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dmam_free_coherent to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_map_sg_attrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_map_page_attrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dmam_alloc_attrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_get_required_mask to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_free_attrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dma_alloc_attrs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol disable_irq_nosync to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol disable_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dget_parent to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _dev_warn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_uc_del to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_uc_add_excl to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_uc_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_trans_start to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_set_promiscuity to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_set_name to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_set_mtu to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_set_mac_address to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_remove_pack to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __dev_queue_xmit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _dev_printk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_open to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _dev_notice to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devm_request_threaded_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devm_mdiobus_alloc_size to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devm_kmemdup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devm_kmalloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devm_kfree to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devm_kasprintf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devm_hwmon_device_register_with_groups to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devm_free_irq to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_mc_del_global to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_mc_del to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_mc_add_global to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_mc_add_excl to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_mc_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devmap_managed_key to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __devm_add_action to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_unlock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_region_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_region_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_rate_nodes_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_rate_node_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_rate_leaf_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_rate_leaf_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_port_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_port_register_with_ops to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_port_fn_devlink_set to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_params_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_params_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_nested_devlink_set to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_remote_reload_actions_performed to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_priv to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_port_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_port_register_with_ops to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_port_attrs_set to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_params_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_params_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_info_version_stored_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_info_version_running_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_info_version_fixed_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_info_serial_number_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_info_board_serial_number_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_health_reporter_state_update to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_health_reporter_recovery_done to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_health_reporter_priv to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_health_reporter_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_health_reporter_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_health_report to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_fmsg_u32_pair_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_fmsg_string_pair_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_fmsg_pair_nest_start to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_fmsg_pair_nest_end to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_fmsg_binary_pair_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_flash_update_timeout_notify to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_flash_update_status_notify to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devlink_alloc_ns to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol devl_assert_locked to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_kfree_skb_irq_reason to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_kfree_skb_any_reason to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _dev_info to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_wakeup_disable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_show_string to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_set_wakeup_enable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_set_wakeup_capable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_remove_file to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_initialize to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_del to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_create_file to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_add_disk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol device_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_get_stats to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_get_by_name to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _dev_err to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_driver_string to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _dev_crit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_close to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_addr_mod to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_addr_del to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_addr_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dev_add_pack to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol destroy_workqueue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol del_gendisk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol delayed_work_timer_fn to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol default_wake_function to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol default_llseek to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol debugfs_remove to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol debugfs_lookup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol debugfs_create_u32 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol debugfs_create_file to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol debugfs_create_dir to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol debugfs_create_devm_seqfile to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol debugfs_attr_write to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol debugfs_attr_read to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dcbnl_ieee_notify to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dcb_ieee_setapp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dcb_ieee_getapp_prio_dscp_mask_map to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dcb_ieee_getapp_mask to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dcb_ieee_delapp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dcb_getapp to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dca_unregister_notify to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dca_remove_requester to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dca_register_notify to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dca_add_requester to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol dca3_get_tag to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol current_work to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _ctype to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol csum_partial to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol csum_ipv6_magic to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol crypto_shash_update to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol crypto_shash_final to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol crypto_destroy_tfm to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol crypto_alloc_shash to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol crc_t10dif to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol crc32_le to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cpu_sibling_map to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __cpu_present_mask to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __cpu_possible_mask to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __cpu_online_mask to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cpumask_next_wrap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cpumask_local_spread to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cpu_khz to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cpu_info to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __cpuhp_state_remove_instance to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __cpuhp_state_add_instance to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __cpuhp_setup_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __cpuhp_remove_state to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cpufreq_quick_get to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cpu_bit_bitmap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _copy_to_user to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __copy_overflow to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _copy_from_user to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol consume_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __const_udelay to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol const_pcpu_hot to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol complete_all to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol complete to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol commit_creds to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol clock_t_to_jiffies to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol class_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol class_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol class_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol class_create to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __check_object_size to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cdev_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cdev_del to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cdev_alloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cdev_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cc_mkdec to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol capable to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cancel_work_sync to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cancel_delayed_work_sync to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cancel_delayed_work to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol call_usermodehelper to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol call_switchdev_notifiers to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol call_netdevice_notifiers to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol cachemode2protval to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol byte_rev_table to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol build_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_update to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_remove to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_lookup to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_last to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_insert to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_get_prev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_geo64 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_geo32 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol btree_destroy to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bsg_setup_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bsg_remove_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bsg_job_done to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __break_lease to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_warn_invalid_xdp_action to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_trace_run8 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_trace_run4 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_trace_run3 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_trace_run2 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_trace_run1 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_stats_enabled_key to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_prog_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_prog_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_master_redirect_enabled_key to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bpf_dispatcher_xdp_func to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol boot_cpu_data to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blockdev_superblock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blk_status_to_errno to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blk_start_plug to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blk_stack_limits to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blk_queue_rq_timeout to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blk_mq_unique_tag to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blk_mq_tagset_busy_iter to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blk_mq_pci_map_queues to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blk_mq_map_queues to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blk_finish_plug to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol blkcg_get_fc_appid to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __blk_alloc_disk to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bitmap_zalloc to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_xor to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_weight to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_subset to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_set to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bitmap_print_to_pagebuf to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bitmap_parselist to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_or to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_intersects to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bitmap_from_arr32 to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bitmap_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bitmap_find_next_zero_area_off to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_equal to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_clear to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_andnot to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __bitmap_and to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bioset_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bioset_exit to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bio_put to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bio_endio to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bio_clone_blkg_association to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bio_associate_blkg to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bio_alloc_clone to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bio_alloc_bioset to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _bin2bcd to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bdev_thaw to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bdev_freeze to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bdev_file_open_by_path to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol bdev_file_open_by_dev to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol auxiliary_driver_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __auxiliary_driver_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol auxiliary_device_init to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __auxiliary_device_add to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol autoremove_wake_function to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol atomic_notifier_chain_unregister to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol atomic_notifier_chain_register to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol _atomic_dec_and_lock to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol argv_split to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol argv_free to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol arch_touch_nmi_watchdog to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol alloc_workqueue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __alloc_skb to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol alloc_pages_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol __alloc_pages_noprof to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol alloc_netdev_mqs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol alloc_etherdev_mqs to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol alloc_cpu_rmap to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol alloc_cpumask_var_node to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol alloc_chrdev_region to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol add_wait_queue_exclusive to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol add_wait_queue to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol add_timer to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol acpi_get_table to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol acpi_disabled to stablelist (Čestmír Kalina) [RHEL-79881] - kabi: add symbol abort_creds to stablelist (Čestmír Kalina) [RHEL-79881] - nfs: Fix oops in nfs_netfs_init_request() when copying to cache (Olga Kornievskaia) [RHEL-77295] {CVE-2024-57927} - rhel_files: ensure all qdiscs are in modules-core (Davide Caratti) [RHEL-80112] - wifi: mt76: mt7925: add handler to hif suspend/resume event (Jose Ignacio Tornos Martinez) [RHEL-79087] - wifi: mt76: mt7925: fix CLC command timeout when suspend/resume (Jose Ignacio Tornos Martinez) [RHEL-79087] - wifi: mt76: mt7925: fix the unfinished command of regd_notifier before suspend (Jose Ignacio Tornos Martinez) [RHEL-79087] - configs: enable FW_CACHE on centos-stream/rhel 10 for nouveau (Dave Airlie) [RHEL-80281] - fs/proc: fix softlockup in __read_vmcore (part 2) (Baoquan He) [RHEL-79110] {CVE-2025-21694} - phy: tegra: xusb: reset VBUS & ID OVERRIDE (Rupinderjit Singh) [RHEL-80387] - kernel.spec: add missing tools-libs on s390x (Jan Stancek) [RHEL-81118] - pps: Fix a use-after-free (Michal Schmidt) [RHEL-77270] - media: ipu-bridge: Remove unneeded conditional compilations (Kate Hsuan) [RHEL-77180 RHEL-77309] - ACPI: bus: change the prototype for acpi_get_physical_device_location (Kate Hsuan) [RHEL-77309] - media: ov2740: Add regulator support (Kate Hsuan) [RHEL-77309] - media: ov2740: Add powerdown GPIO support (Kate Hsuan) [RHEL-77309] - media: ov2740: Add camera orientation and sensor rotation controls (Kate Hsuan) [RHEL-77309] - media: ov2740: Debug log chip ID (Kate Hsuan) [RHEL-77309] - media: mc: fix endpoint iteration (Kate Hsuan) [RHEL-77309] - media: ccs: Fail the probe on CCS static data parser failure (Kate Hsuan) [RHEL-77309] - media: ccs: Print a warning on CCS static data parser failure (Kate Hsuan) [RHEL-77309] - media: intel/ipu6: move some boot messages to debug level (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: intel/ipu6: remove cpu latency qos request on error (Kate Hsuan) [RHEL-77309 RHEL-81387] {CVE-2024-58004} - media: ccs: Fix cleanup order in ccs_probe() (Kate Hsuan) [RHEL-77309] - media: dt-bindings: Add property to describe CSI-2 C-PHY line orders (Kate Hsuan) [RHEL-77309] - media: v4l: fwnode: Parse MiPI DisCo for C-PHY line-orders (Kate Hsuan) [RHEL-77309] - media: ccs: Clean up parsed CCS static data on parse failure (Kate Hsuan) [RHEL-77309] - media: ccs: Fix CCS static data parsing for large block sizes (Kate Hsuan) [RHEL-77309] - media: replace obsolete hans.verkuil@cisco.com alias (Kate Hsuan) [RHEL-77309] - media: ipu6: make the ipu6_mmu_unmap() as a void function (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: ipu6: optimize the IPU6 MMU unmapping flow (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: ipu6: optimize the IPU6 MMU mapping flow (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: ipu6: move the l2_unmap() up before l2_map() (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: mc: Rename pad as origin in __media_pipeline_start() (Kate Hsuan) [RHEL-77309] - media: intel/ipu6: remove buttress ish structure (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: intel/ipu6: do not handle interrupts when device is disabled (Kate Hsuan) [RHEL-77180 RHEL-77309] {CVE-2024-56680} - media: gspca: ov534-ov772x: Fix off-by-one error in set_frame_rate() (Kate Hsuan) [RHEL-77309] - media: i2c: Drop HAS_EVENTS and event handlers (Kate Hsuan) [RHEL-77309] - media: v4l2-subdev: Refactor events (Kate Hsuan) [RHEL-77309] - media: Documentation: ipu6: remove the dma_ops part from the doc (Kate Hsuan) [RHEL-77309] - media: ipu6: use PFN_UP() and sg_virt() for code simplicity (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: ipu6: remove architecture DMA ops dependency in Kconfig (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: ipu6: use the IPU6 DMA mapping APIs to do mapping (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: ipu6: not override the dma_ops of device in driver (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: ipu6: Fix DMA and physical address debugging messages for 32-bit (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: ov2740: Don't log ov2740_check_hwcfg() errors twice (Kate Hsuan) [RHEL-77309] - convert media_request_get_by_fd() (Kate Hsuan) [RHEL-77309] - media: vb2: fix confusing log message (Kate Hsuan) [RHEL-77309] - media: vb2: Fix comment (Kate Hsuan) [RHEL-77309] - media: v4l2-core: constify the class struct (Kate Hsuan) [RHEL-77309] - media: v4l2-core: v4l2-dv-timings: check cvt/gtf result (Kate Hsuan) [RHEL-77309] - media: common: saa7146: drop vb2_ops_wait_prepare/finish (Kate Hsuan) [RHEL-77309] - media: platform: drop vb2_ops_wait_prepare/finish (Kate Hsuan) [RHEL-77309] - media: rtl2832_sdr: drop vb2_ops_wait_prepare/finish (Kate Hsuan) [RHEL-77309] - media: video-i2c: drop vb2_ops_wait_prepare/finish (Kate Hsuan) [RHEL-77309] - media: usb: drop vb2_ops_wait_prepare/finish (Kate Hsuan) [RHEL-77309] - media: pci: drop vb2_ops_wait_prepare/finish (Kate Hsuan) [RHEL-77309] - media: videobuf2-core: update vb2_thread if wait_finish/prepare are NULL (Kate Hsuan) [RHEL-77309] - media: ipu6: remove redundant dependency in Kconfig (Kate Hsuan) [RHEL-77180 RHEL-77309] - media: ipu6: fix the wrong type casting and 64-bit division (Kate Hsuan) [RHEL-77180 RHEL-77309] - v4l2-subdev: Return -EOPNOTSUPP for unsupported pad type in call_get_frame_desc() (Kate Hsuan) [RHEL-77309] - media: i2c: Fix typos in comments across various files (Kate Hsuan) [RHEL-77309] - media: videodev2: Add flag to unconditionally enumerate pixel formats (Kate Hsuan) [RHEL-77309] - media: vb2: use lock if wait_prepare/finish are NULL (Kate Hsuan) [RHEL-77309] - media: vb2: vb2_core_queue_init(): sanity check lock and wait_prepare/finish (Kate Hsuan) [RHEL-77309] - media: pwc: set lock before calling vb2_queue_init() (Kate Hsuan) [RHEL-77309] - media: Documentation: Improve v4l2_subdev_{en,dis}able_streams documentation (Kate Hsuan) [RHEL-77309] - media: Documentation: tx-rx: Fix formatting (Kate Hsuan) [RHEL-77309] - media: Documentation: Update {enable,disable}_streams documentation (Kate Hsuan) [RHEL-77309] - media: Documentation: Deprecate s_stream video op, update docs (Kate Hsuan) [RHEL-77309] - media: v4l2-core: add v4l2_debugfs_if_alloc/free() (Kate Hsuan) [RHEL-77309] - media: v4l2-core: add v4l2_debugfs_root() (Kate Hsuan) [RHEL-77309] - media: v4l: Add luma 16-bit interlaced pixel format (Kate Hsuan) [RHEL-77309] - media: netup_unidvb: switch to use devm_spi_alloc_host() (Kate Hsuan) [RHEL-77309] - redhat/configs: Disable CONFIG_PKEY for zfcpdump configs (Mete Durlu) [RHEL-78341] - RDMA/mana_ib: Allocate PAGE aligned doorbell index (Maxim Levitsky) [RHEL-80097] - net: mana: Cleanup "mana" debugfs dir after cleanup of all children (Maxim Levitsky) [RHEL-80097] - net: mana: Fix irq_contexts memory leak in mana_gd_setup_irqs (Maxim Levitsky) [RHEL-80097] - net: mana: Fix memory leak in mana_gd_setup_irqs (Maxim Levitsky) [RHEL-80097] - net :mana :Request a V2 response version for MANA_QUERY_GF_STAT (Maxim Levitsky) [RHEL-80097] - net: mana: use ethtool string helpers (Maxim Levitsky) [RHEL-80097] - net: mana: Enable debugfs files for MANA device (Maxim Levitsky) [RHEL-80097] - net: mana: Add get_link and get_link_ksettings in ethtool (Maxim Levitsky) [RHEL-80097] - net: mana: Increase the DEF_RX_BUFFERS_PER_QUEUE to 1024 (Maxim Levitsky) [RHEL-80097] - block: Ensure start sector is aligned for stacking atomic writes (Nigel Croxon) [RHEL-73721] - s390/pci: Fix handling of isolated VFs (Mete Durlu) [RHEL-81936] - s390/pci: Pull search for parent PF out of zpci_iov_setup_virtfn() (Mete Durlu) [RHEL-81936] - s390/pci: Fix SR-IOV for PFs initially in standby (Mete Durlu) [RHEL-81936] - selftests/net: ensure mptcp is enabled in netns (Hangbin Liu) [RHEL-80379] - netfs: Fix the (non-)cancellation of copy when cache is temporarily disabled (CKI Backport Bot) [RHEL-75660] {CVE-2024-57941} - netfs: Fix ceph copy to cache on write-begin (CKI Backport Bot) [RHEL-75655] {CVE-2024-57942} - Bluetooth: btusb: Add new VID/PID 13d3/3628 for MT7925 (Bastien Nocera) [RHEL-79457] - Bluetooth: btmtk: Fix failed to send func ctrl for MediaTek devices. (Bastien Nocera) [RHEL-79457] - Bluetooth: btmtk: avoid UAF in btmtk_process_coredump (Bastien Nocera) [RHEL-79457] {CVE-2024-56653} - Bluetooth: btmtk: adjust the position to init iso data anchor (Bastien Nocera) [RHEL-79457] {CVE-2024-53238} - Bluetooth: btusb: mediatek: change the conditions for ISO interface (Bastien Nocera) [RHEL-79457] - Bluetooth: btusb: mediatek: add intf release flow when usb disconnect (Bastien Nocera) [RHEL-79457] {CVE-2024-56757} - Bluetooth: btusb: mediatek: add callback function in btusb_disconnect (Bastien Nocera) [RHEL-79457] - Bluetooth: btusb: mediatek: move Bluetooth power off command position (Bastien Nocera) [RHEL-79457] - redhat/configs: Enable Mediatek Bluetooth USB drivers (Bastien Nocera) [RHEL-79457] - scsi: qla2xxx: Fix use after free on unload (Ewan D. Milne) [RHEL-76090] {CVE-2024-56623} - scsi: sg: Fix slab-use-after-free read in sg_release() (Ewan D. Milne) [RHEL-76089] {CVE-2024-56631} - CVE-2025-1272: security: Re-enable lockdown LSM in some setup_arch() (Lenny Szubowicz) [RHEL-78975] {CVE-2025-1272} - af_packet: fix vlan_get_tci() vs MSG_PEEK (CKI Backport Bot) [RHEL-80305] {CVE-2024-57902} - smb: client: fix chmod(2) regression with ATTR_READONLY (Paulo Alcantara) [RHEL-80534] - sched_ext: Fix incorrect autogroup migration detection (CKI Backport Bot) [RHEL-81482] {CVE-2025-21771} - PCI: vmd: Set devices to D0 before enabling PM L1 Substates (Myron Stowe) [RHEL-47437] - PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKUs (Myron Stowe) [RHEL-47437] - kernel.spec: add missing tools-libs on s390x (Jan Stancek) [RHEL-80626] - arm64: cacheinfo: Avoid out-of-bounds write to cacheinfo array (CKI Backport Bot) [RHEL-81669] {CVE-2025-21785} - kexec/crash: no crash update when kexec in progress (Mamatha Inamdar) [RHEL-76749] - md/raid*: Fix the set_queue_limits implementations (Nigel Croxon) [RHEL-73721] - md: Fix linear_set_limits() (Nigel Croxon) [RHEL-73721] - md/md-bitmap: Synchronize bitmap_get_stats() with bitmap lifetime (Nigel Croxon) [RHEL-73721] - md/md-linear: Fix a NULL vs IS_ERR() bug in linear_add() (Nigel Croxon) [RHEL-73721] - md/md-bitmap: move bitmap_{start, end}write to md upper layer (Nigel Croxon) [RHEL-73721] - md/raid5: implement pers->bitmap_sector() (Nigel Croxon) [RHEL-73721] - md: add a new callback pers->bitmap_sector() (Nigel Croxon) [RHEL-73721] - md/md-bitmap: remove the last parameter for bimtap_ops->endwrite() (Nigel Croxon) [RHEL-73721] - md/md-bitmap: factor behind write counters out from bitmap_{start/end}write() (Nigel Croxon) [RHEL-73721] - md: Replace deprecated kmap_atomic() with kmap_local_page() (Nigel Croxon) [RHEL-73721] - md/raid10: Atomic write support (Nigel Croxon) [RHEL-73721] - md/raid1: Atomic write support (Nigel Croxon) [RHEL-73721] - md/raid0: Atomic write support (Nigel Croxon) [RHEL-73721] - block: Support atomic writes limits for stacked devices (Nigel Croxon) [RHEL-73721] - md/raid5: Increase r5conf.cache_name size (Nigel Croxon) [RHEL-73721] - md/raid10: Handle bio_split() errors (Nigel Croxon) [RHEL-73721] - md/raid1: Handle bio_split() errors (Nigel Croxon) [RHEL-73721] - md/raid0: Handle bio_split() errors (Nigel Croxon) [RHEL-73721] - md/raid5: Wait sync io to finish before changing group cnt (Nigel Croxon) [RHEL-73721] - md/md-bitmap: Add missing destroy_work_on_stack() (Nigel Croxon) [RHEL-73721] - md/raid5: don't set Faulty rdev for blocked_rdev (Nigel Croxon) [RHEL-73721] - md/raid10: don't wait for Faulty rdev in wait_blocked_rdev() (Nigel Croxon) [RHEL-73721] - md/raid1: don't wait for Faulty rdev in wait_blocked_rdev() (Nigel Croxon) [RHEL-73721] - md/raid1: factor out helper to handle blocked rdev from raid1_write_request() (Nigel Croxon) [RHEL-73721] - md: don't record new badblocks for faulty rdev (Nigel Croxon) [RHEL-73721] - md: don't wait faulty rdev in md_wait_for_blocked_rdev() (Nigel Croxon) [RHEL-73721] - md: add a new helper rdev_blocked() (Nigel Croxon) [RHEL-73721] - md/raid5-ppl: Use atomic64_inc_return() in ppl_new_iounit() (Nigel Croxon) [RHEL-73721] - RDMA/mlx5: Fix a WARN during dereg_mr for DM type (Benjamin Poirier) [RHEL-41204] - arm64: mm: Fix zone_dma_limit calculation (Luiz Capitulino) [RHEL-71568] - uki: enable FIPS mode (Vitaly Kuznetsov) [RHEL-80149] - idpf: call set_real_num_queues in idpf_open (CKI Backport Bot) [RHEL-79464] - tracing: Fix bad hist from corrupting named_triggers list (Tomas Glozar) [RHEL-80060] - net/smc: support ipv4 mapped ipv6 addr client for smc-r v2 (Mete Durlu) [RHEL-79809] - af_packet: fix vlan_get_protocol_dgram() vs MSG_PEEK (CKI Backport Bot) [RHEL-74125] {CVE-2024-57901} - cxgb4: use port number to set mac addr (CKI Backport Bot) [RHEL-75473] - Documentation/powerpc/fadump: add additional parameter feature details (Mamatha Inamdar) [RHEL-70827] - powerpc: increase MIN RMA size for CAS negotiation (Mamatha Inamdar) [RHEL-70827] - powerpc/fadump: fix additional param memory reservation for HASH MMU (Mamatha Inamdar) [RHEL-70827] - powerpc: export MIN RMA size (Mamatha Inamdar) [RHEL-70827] - scsi: mpi3mr: Update driver version to 8.12.1.0.50 (Chandrakanth Patil) [RHEL-30789] - scsi: mpi3mr: Synchronous access b/w reset and tm thread for reply queue (Chandrakanth Patil) [RHEL-30789] - scsi: mpi3mr: Avoid reply queue full condition (Chandrakanth Patil) [RHEL-30789] - scsi: mpi3mr: Fix possible crash when setting up bsg fails (Chandrakanth Patil) [RHEL-30789] - scsi: mpi3mr: Handling of fault code for insufficient power (Chandrakanth Patil) [RHEL-30789] - scsi: mpi3mr: Start controller indexing from 0 (Chandrakanth Patil) [RHEL-30789] - scsi: mpi3mr: Fix corrupt config pages PHY state is switched in sysfs (Chandrakanth Patil) [RHEL-30789] {CVE-2024-57804} - scsi: mpi3mr: Synchronize access to ioctl data buffer (Chandrakanth Patil) [RHEL-30789] - redhat: regenerate self-test data for new RHDISTGIT_BRANCH (Patrick Talbert) - gpu: host1x: Fix a use of uninitialized mutex (Rupinderjit Singh) [RHEL-67594] - selftests/memfd: add test for mapping write-sealed memfd read-only (Rafael Aquini) [RHEL-77292] {CVE-2024-57937} - mm: reinstate ability to map write-sealed memfd mappings read-only (Rafael Aquini) [RHEL-77292] {CVE-2024-57937} - bonding: Correctly support GSO ESP offload (CKI Backport Bot) [RHEL-74426] - redhat: adjust rhel branch name (Jan Stancek) - redhat: set defaults for RHEL 10.0 (Jan Stancek) - Revert "x86/kvm: Override default caching mode for SEV-SNP and TDX" (Vitaly Kuznetsov) [RHEL-76109] - quota: flush quota_release_work upon quota writeback (CKI Backport Bot) [RHEL-73465] - s390/topology: Improve topology detection (Mete Durlu) [RHEL-76349] - cpufreq/amd-pstate-ut: Add fix for min freq unit test (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Fix cpufreq_policy ref counting (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Fix max_perf updation with schedutil (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Remove the goto label in amd_pstate_update_limits (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Fix per-policy boost flag incorrect when fail (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Refactor max frequency calculation (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Fix prefcore rankings (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Drop boost_state variable (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Set different default EPP policy for Epyc and Ryzen (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Drop ret variable from amd_pstate_set_energy_pref_index() (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Always write EPP value when updating perf (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Cache EPP value and use that everywhere (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Move limit updating code (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Change amd_pstate_update_perf() to return an int (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: store all values in cpudata struct in khz (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Only update the cached value in msr_set_epp() on success (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Use FIELD_PREP and FIELD_GET macros (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Drop cached epp_policy variable (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: convert mutex use to guard() (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Add trace event for EPP perf updates (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Merge amd_pstate_epp_cpu_offline() and amd_pstate_epp_offline() (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Remove the cppc_state check in offline/online functions (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Refactor amd_pstate_epp_reenable() and amd_pstate_epp_offline() (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Move the invocation of amd_pstate_update_perf() (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Convert the amd_pstate_get/set_epp() to static calls (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Use boost numerator for upper bound of frequencies (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Store the boost numerator as highest perf again (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Detect preferred core support before driver registration (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Move registration after static function call update (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Push adjust_perf vfunc init into cpu_init (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Align offline flow of shared memory and MSR based systems (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Call cppc_set_epp_perf in the reenable function (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Do not attempt to clear MSR_AMD_CPPC_ENABLE (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Rename functions that enable CPPC (Steve Best) [RHEL-75925] - amd-pstate: Switch to amd-pstate by default on some Server platforms (Steve Best) [RHEL-75925] - amd-pstate: Set min_perf to nominal_perf for active mode performance gov (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Remove the redundant amd_pstate_set_driver() call (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Remove the switch case in amd_pstate_init() (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Call amd_pstate_set_driver() in amd_pstate_register_driver() (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Call amd_pstate_register() in amd_pstate_init() (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Set the initial min_freq to lowest_nonlinear_freq (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Remove the redundant verify() function (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Drop needless EPP initialization (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Use amd_pstate_update_min_max_limit() for EPP limits (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Don't update CPPC request in amd_pstate_cpu_boost_update() (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Fix non kerneldoc comment (Steve Best) [RHEL-75925] - cpufreq/amd-pstate: Rename MSR and shared memory specific functions (Steve Best) [RHEL-75925] - x86/cpufeatures: Rename X86_FEATURE_FAST_CPPC to have AMD prefix (Steve Best) [RHEL-75925] - tools/power turbostat: version 2025.02.02 (Steve Best) [RHEL-77986] - tools/power turbostat: Add CPU%%c1e BIC for CWF (Steve Best) [RHEL-77986] - tools/power turbostat: Harden one-shot mode against cpu offline (Steve Best) [RHEL-77986] - tools/power turbostat: Fix forked child affinity regression (Steve Best) [RHEL-77986] - tools/power turbostat: Add tcore clock PMT type (Steve Best) [RHEL-77986] - tools/power turbostat: version 2025.01.14 (Steve Best) [RHEL-77986] - tools/power turbostat: Allow adding PMT counters directly by sysfs path (Steve Best) [RHEL-77986] - tools/power turbostat: Allow mapping multiple PMT files with the same GUID (Steve Best) [RHEL-77986] - tools/power turbostat: Add PMT directory iterator helper (Steve Best) [RHEL-77986] - tools/power turbostat: Extend PMT identification with a sequence number (Steve Best) [RHEL-77986] - tools/power turbostat: Return default value for unmapped PMT domains (Steve Best) [RHEL-77986] - tools/power turbostat: Check for non-zero value when MSR probing (Steve Best) [RHEL-77986] - tools/power turbostat: Enhance turbostat self-performance visibility (Steve Best) [RHEL-77986] - tools/power turbostat: Add fixed RAPL PSYS divisor for SPR (Steve Best) [RHEL-77986] - tools/power turbostat: Fix PMT mmaped file size rounding (Steve Best) [RHEL-77986] - tools/power turbostat: Remove SysWatt from DISABLED_BY_DEFAULT (Steve Best) [RHEL-77986] - tools/power turbostat: Add an NMI column (Steve Best) [RHEL-77986] - tools/power turbostat: add Busy%% to "show idle" (Steve Best) [RHEL-77986] - tools/power turbostat: Introduce --force parameter (Steve Best) [RHEL-77986] - tools/power turbostat: Improve --help output (Steve Best) [RHEL-77986] - tools/power turbostat: Exit on unsupported Vendors (Steve Best) [RHEL-77986] - tools/power turbostat: Exit on unsupported Intel models (Steve Best) [RHEL-77986] - tools/power turbostat: update turbostat(8) (Steve Best) [RHEL-77986] - tools/power turbostat: Add initial support for ClearwaterForest (Steve Best) [RHEL-77986] - tools/power turbostat: Add initial support for PantherLake (Steve Best) [RHEL-77986] - tools/power turbostat: 2024.11.30 (Steve Best) [RHEL-77986] - tools/power turbostat: Add RAPL psys as a built-in counter (Steve Best) [RHEL-77986] - tools/power turbostat: Fix child's argument forwarding (Steve Best) [RHEL-77986] - tools/power turbostat: Force --no-perf in --dump mode (Steve Best) [RHEL-77986] - tools/power turbostat: Add support for /sys/class/drm/card1 (Steve Best) [RHEL-77986] - tools/power turbostat: Cache graphics sysfs file descriptors during probe (Steve Best) [RHEL-77986] - tools/power turbostat: Consolidate graphics sysfs access (Steve Best) [RHEL-77986] - tools/power turbostat: Remove unnecessary fflush() call (Steve Best) [RHEL-77986] - tools/power turbostat: Enhance platform divergence description (Steve Best) [RHEL-77986] - tools/power turbostat: Remove PC3 support on Lunarlake (Steve Best) [RHEL-77986] - tools/power turbostat: Rename arl_features to lnl_features (Steve Best) [RHEL-77986] - tools/power turbostat: Add back PC8 support on Arrowlake (Steve Best) [RHEL-77986] - tools/power turbostat: Remove PC7/PC9 support on MTL (Steve Best) [RHEL-77986] - tools/power turbostat: Honor --show CPU, even when even when num_cpus=1 (Steve Best) [RHEL-77986] - tools/power turbostat: Fix trailing '\n' parsing (Steve Best) [RHEL-77986] - tools/power turbostat: Allow using cpu device in perf counters on hybrid platforms (Steve Best) [RHEL-77986] - tools/power turbostat: Fix column printing for PMT xtal_time counters (Steve Best) [RHEL-77986] - tools/power turbostat: fix GCC9 build regression (Steve Best) [RHEL-77986] - thermal: intel: Fix compile issue when CONFIG_NET is not defined (Steve Best) [RHEL-79162] - thermal: intel: int340x: Panther Lake power floor and workload hint support (Steve Best) [RHEL-79162] - thermal: intel: int340x: Panther Lake DLVR support (Steve Best) [RHEL-79162] - thermal: intel: Remove explicit user_space governor selection (Steve Best) [RHEL-79162] - ACPI: DPTF: Support Panther Lake (Steve Best) [RHEL-79162] - thermal: intel: int340x: processor: Enable MMIO RAPL for Panther Lake (Steve Best) [RHEL-79162] - thermal: int3400: Remove unneeded data_vault attribute_group (Steve Best) [RHEL-79162] - thermal: int3400: Fix reading of current_uuid for active policy (Steve Best) [RHEL-79162] - thermal: Switch back to struct platform_driver::remove() (Steve Best) [RHEL-79162] - x86/cpu: Fix FAM5_QUARK_X1000 to use X86_MATCH_VFM() (Steve Best) [RHEL-79162] - tools/power/x86/intel-speed-select: v1.21 release (Steve Best) [RHEL-76843] - tools/power/x86/intel-speed-select: Fix TRL restore after SST-TF disable (Steve Best) [RHEL-76843] - platform/x86: ISST: Add Clearwater Forest to support list (Steve Best) [RHEL-76843] - cpufreq: intel_pstate: Use CPUFREQ_POLICY_UNKNOWN (Steve Best) [RHEL-78189] - cpufreq: intel_pstate: Drop Arrow Lake from "scaling factor" list (Steve Best) [RHEL-78189] - cpufreq: intel_pstate: Use CPPC to get scaling factors (Steve Best) [RHEL-78189] - cpupower: Adjust whitespace for amd-pstate specific prints (Steve Best) [RHEL-78946] - cpupower: Don't fetch maximum latency when EPP is enabled (Steve Best) [RHEL-78946] - cpupower: Add support for showing energy performance preference (Steve Best) [RHEL-78946] - cpupower: Don't try to read frequency from hardware when kernel uses aperfmperf (Steve Best) [RHEL-78946] - cpupower: Add support for amd-pstate preferred core rankings (Steve Best) [RHEL-78946] - cpupower: Remove spurious return statement (Steve Best) [RHEL-78946] - cpupower: fix TSC MHz calculation (Steve Best) [RHEL-78946] - cpupower: revise is_valid flag handling for idle_monitor (Steve Best) [RHEL-78946] - powercap: call put_device() on an error path in powercap_register_control_type() (Steve Best) [RHEL-79097] - powercap: intel_rapl: Add support for Panther Lake platform (Steve Best) [RHEL-79097] - Bump RHEL MINOR to 10.1 (Julio Faracco) - ovl: support encoding fid from inode with no alias (Miklos Szeredi) [RHEL-77301] {CVE-2025-21654} - ovl: pass realinode to ovl_encode_real_fh() instead of realdentry (Miklos Szeredi) [RHEL-77301] {CVE-2025-21654} - pmdomain: imx8mp-blk-ctrl: add missing loop break condition (CKI Backport Bot) [RHEL-77240] {CVE-2025-21668} - io_uring/rsrc: require cloned buffers to share accounting contexts (Jeff Moyer) [RHEL-78677] {CVE-2025-21686} - vsock: prevent null-ptr-deref in vsock_*[has_data|has_space] (CKI Backport Bot) [RHEL-77214] {CVE-2025-21666} - USB: serial: quatech2: fix null-ptr-deref in qt2_process_read_urb() (CKI Backport Bot) [RHEL-78685] {CVE-2025-21689} - lazy tlb: fix hotplug exit race with MMU_LAZY_TLB_SHOOTDOWN (Herton R. Krzesinski) [RHEL-58817] - mm/mempolicy: fix migrate_to_node() assuming there is at least one VMA in a MM (CKI Backport Bot) [RHEL-76120] {CVE-2024-56611} - Revert "redhat: gating.yaml: drop unstable test" (Jan Stancek) - nvme: remove multipath module parameter (Bryan Gurney) [RHEL-78133] - NFSD: Fix CB_GETATTR status fix (Olga Kornievskaia) [RHEL-56888] - irqchip/gic-v3-its: Don't enable interrupts in its_irq_set_vcpu_affinity() (CKI Backport Bot) [RHEL-78517] {CVE-2024-57949} - erofs: promote to full support (Ian Kent) [RHEL-78322] - rxrpc, afs: Fix peer hash locking vs RCU callback (Marc Dionne) [RHEL-78388] - afs: Fix cleanup of immediately failed async calls (Marc Dionne) [RHEL-78388] - afs: Fix directory format encoding struct (Marc Dionne) [RHEL-78388] - afs: Fix EEXIST error returned from afs_rmdir() to be ENOTEMPTY (Marc Dionne) [RHEL-78388] - afs: Fix the fallback handling for the YFS.RemoveFile2 RPC call (Marc Dionne) [RHEL-78388] - rxrpc: Improve setsockopt() handling of malformed user input (Marc Dionne) [RHEL-78388] - afs: Fix merge preference rule failure condition (Marc Dionne) [RHEL-78388] - afs: Fix the maximum cell name length (Marc Dionne) [RHEL-78388] - smb: client: get rid of kstrdup() in get_ses_refpath() (Paulo Alcantara) [RHEL-78152] - smb: client: fix noisy when tree connecting to DFS interlink targets (Paulo Alcantara) [RHEL-78152] - smb: client: don't trust DFSREF_STORAGE_SERVER bit (Paulo Alcantara) [RHEL-78152] - smb: client: handle lack of EA support in smb2_query_path_info() (Paulo Alcantara) [RHEL-78152] - smb: client: don't check for @leaf_fullpath in match_server() (Paulo Alcantara) [RHEL-78152] - smb: client: get rid of TCP_Server_Info::refpath_lock (Paulo Alcantara) [RHEL-78152] - cifs: Use cifs_autodisable_serverino() for disabling CIFS_MOUNT_SERVER_INUM in readdir.c (Paulo Alcantara) [RHEL-78152] - smb3: add missing tracepoint for querying wsl EAs (Paulo Alcantara) [RHEL-78152] - smb: client: fix order of arguments of tracepoints (Paulo Alcantara) [RHEL-78152] - smb: client: fix oops due to unset link speed (Paulo Alcantara) [RHEL-78152] - smb: client: correctly handle ErrorContextData as a flexible array (Paulo Alcantara) [RHEL-78152] - smb: client: don't retry DFS targets on server shutdown (Paulo Alcantara) [RHEL-78152] - smb: client: fix return value of parse_dfs_referrals() (Paulo Alcantara) [RHEL-78152] - smb: client: optimize referral walk on failed link targets (Paulo Alcantara) [RHEL-78152] - smb: client: provide dns_resolve_{unc,name} helpers (Paulo Alcantara) [RHEL-78152] - smb: client: parse DNS domain name from domain= option (Paulo Alcantara) [RHEL-78152] - smb: client: fix DFS mount against old servers with NTLMSSP (Paulo Alcantara) [RHEL-78152] - smb: client: parse av pair type 4 in CHALLENGE_MESSAGE (Paulo Alcantara) [RHEL-78152] - smb: client: introduce av_for_each_entry() helper (Paulo Alcantara) [RHEL-78152] - cifs: support reconnect with alternate password for SMB1 (Paulo Alcantara) [RHEL-78152] - smb: client: sync the root session and superblock context passwords before automounting (Paulo Alcantara) [RHEL-78152] - cifs: Remove unused is_server_using_iface() (Paulo Alcantara) [RHEL-78152] - smb: enable reuse of deferred file handles for write operations (Paulo Alcantara) [RHEL-78152] - smb: fix bytes written value in /proc/fs/cifs/Stats (Paulo Alcantara) [RHEL-78152] - smb: client: fix TCP timers deadlock after rmmod (Paulo Alcantara) [RHEL-78152] {CVE-2024-54680} - smb: client: Deduplicate "select NETFS_SUPPORT" in Kconfig (Paulo Alcantara) [RHEL-78152] - smb: use macros instead of constants for leasekey size and default cifsattrs value (Paulo Alcantara) [RHEL-78152] - smb: client: destroy cfid_put_wq on module exit (Paulo Alcantara) [RHEL-78152] - cifs: Use str_yes_no() helper in cifs_ses_add_channel() (Paulo Alcantara) [RHEL-78152] - cifs: Fix rmdir failure due to ongoing I/O on deleted file (Paulo Alcantara) [RHEL-78152] - smb3: fix compiler warning in reparse code (Paulo Alcantara) [RHEL-78152] - smb: client: fix potential race in cifs_put_tcon() (Paulo Alcantara) [RHEL-78152] - smb3.1.1: fix posix mounts to older servers (Paulo Alcantara) [RHEL-78152] - fs/smb/client: cifs_prime_dcache() for SMB3 POSIX reparse points (Paulo Alcantara) [RHEL-78152] - fs/smb/client: Implement new SMB3 POSIX type (Paulo Alcantara) [RHEL-78152] - fs/smb/client: avoid querying SMB2_OP_QUERY_WSL_EA for SMB3 POSIX (Paulo Alcantara) [RHEL-78152] - cifs: unlock on error in smb3_reconfigure() (Paulo Alcantara) [RHEL-78152] - cifs: during remount, make sure passwords are in sync (Paulo Alcantara) [RHEL-78152] - cifs: support mounting with alternate password to allow password rotation (Paulo Alcantara) [RHEL-78152] - smb: Initialize cfid->tcon before performing network ops (Paulo Alcantara) [RHEL-78152] {CVE-2024-56729} - smb: During unmount, ensure all cached dir instances drop their dentry (Paulo Alcantara) [RHEL-78152] {CVE-2024-53176} - smb: client: fix noisy message when mounting shares (Paulo Alcantara) [RHEL-78152] - smb: client: don't try following DFS links in cifs_tree_connect() (Paulo Alcantara) [RHEL-78152] - smb: client: allow reconnect when sending ioctl (Paulo Alcantara) [RHEL-78152] - smb: client: get rid of @nlsc param in cifs_tree_connect() (Paulo Alcantara) [RHEL-78152] - smb: client: allow more DFS referrals to be cached (Paulo Alcantara) [RHEL-78152] - cifs: Fix parsing reparse point with native symlink in SMB1 non-UNICODE session (Paulo Alcantara) [RHEL-78152] - cifs: Validate content of WSL reparse point buffers (Paulo Alcantara) [RHEL-78152] - cifs: Improve guard for excluding $LXDEV xattr (Paulo Alcantara) [RHEL-78152] - cifs: Add support for parsing WSL-style symlinks (Paulo Alcantara) [RHEL-78152] - cifs: Validate content of native symlink (Paulo Alcantara) [RHEL-78152] - cifs: Fix parsing native symlinks relative to the export (Paulo Alcantara) [RHEL-78152] - Update misleading comment in cifs_chan_update_iface (Paulo Alcantara) [RHEL-78152] - smb: client: change return value in open_cached_dir_by_dentry() if !cfids (Paulo Alcantara) [RHEL-78152] - smb: client: disable directory caching when dir_cache_timeout is zero (Paulo Alcantara) [RHEL-78152] - smb: client: remove unnecessary checks in open_cached_dir() (Paulo Alcantara) [RHEL-78152] - smb: prevent use-after-free due to open_cached_dir error paths (Paulo Alcantara) [RHEL-78152] {CVE-2024-53177} - smb: Don't leak cfid when reconnect races with open_cached_dir (Paulo Alcantara) [RHEL-78152] {CVE-2024-53178} - smb: client: handle max length for SMB symlinks (Paulo Alcantara) [RHEL-78152] - smb: client: get rid of bounds check in SMB2_ioctl_init() (Paulo Alcantara) [RHEL-78152] - smb: client: improve compound padding in encryption (Paulo Alcantara) [RHEL-78152] - smb3: request handle caching when caching directories (Paulo Alcantara) [RHEL-78152] - cifs: Recognize SFU char/block devices created by Windows NFS server on Windows Server <<2012 (Paulo Alcantara) [RHEL-78152] - CIFS: New mount option for cifs.upcall namespace resolution (Paulo Alcantara) [RHEL-78152] - smb/client: Prevent error pointer dereference (Paulo Alcantara) [RHEL-78152] - fs/smb/client: implement chmod() for SMB3 POSIX Extensions (Paulo Alcantara) [RHEL-78152] - smb: cached directories can be more than root file handle (Paulo Alcantara) [RHEL-78152] - smb: client: Use str_yes_no() helper function (Paulo Alcantara) [RHEL-78152] - smb: client: memcpy() with surrounding object base address (Paulo Alcantara) [RHEL-78152] - cifs: Remove pre-historic unused CIFSSMBCopy (Paulo Alcantara) [RHEL-78152] - bpf: tcp: Mark bpf_load_hdr_opt() arg2 as read-write (Viktor Malik) [RHEL-78209] - clocksource: Use migrate_disable() to avoid calling get_random_u32() in atomic context (Waiman Long) [RHEL-77959] - clocksource: Use pr_info() for "Checking clocksource synchronization" message (Waiman Long) [RHEL-77959] - kasan: make kasan_record_aux_stack_noalloc() the default behaviour (Waiman Long) [RHEL-71050] - workqueue: Do not warn when cancelling WQ_MEM_RECLAIM work from !WQ_MEM_RECLAIM worker (Waiman Long) [RHEL-74109] {CVE-2024-57888} - smb: client: fix double free of TCP_Server_Info::hostname (CKI Backport Bot) [RHEL-77236] {CVE-2025-21673} - arm64: Force CONFIG_ARCH_FORCE_MAX_ORDER of 4k kernel to 12 (Waiman Long) [RHEL-67530] - Enable CONFIG_INTEL_MEI_PXP and CONFIG_DRM_I915_PXP on rhel (David Arcari) [RHEL-77048] - KVM: nVMX: fix canonical check of vmcs12 HOST_RIP (Maxim Levitsky) [RHEL-44575] - KVM: x86: model canonical checks more precisely (Maxim Levitsky) [RHEL-44575] - KVM: x86: Add X86EMUL_F_MSR and X86EMUL_F_DT_LOAD to aid canonical checks (Maxim Levitsky) [RHEL-44575] - KVM: x86: Route non-canonical checks in emulator through emulate_ops (Maxim Levitsky) [RHEL-44575] - KVM: x86: drop x86.h include from cpuid.h (Maxim Levitsky) [RHEL-44575] - ext4: force disable fscrypt feature (Brian Foster) [RHEL-64637] - x86: KVM: Advertise CPUIDs for new instructions in Clearwater Forest (Paolo Bonzini) [RHEL-45114] - iommufd: Fix struct iommu_hwpt_pgfault init and padding (Eder Zulian) [RHEL-75944] - iommufd/fault: Use a separate spinlock to protect fault->deliver list (Eder Zulian) [RHEL-75944] - iommufd/fault: Destroy response and mutex in iommufd_fault_destroy() (Eder Zulian) [RHEL-75944] - iommufd/iova_bitmap: Fix shift-out-of-bounds in iova_bitmap_offset_to_index() (Eder Zulian) [RHEL-75944] - iommu: iommufd: fix WARNING in iommufd_device_unbind (Eder Zulian) [RHEL-75944] - smb: client: fix use-after-free of signing key (CKI Backport Bot) [RHEL-76126] {CVE-2024-53179} - smb: client: fix NULL ptr deref in crypto_aead_setkey() (CKI Backport Bot) [RHEL-76124] {CVE-2024-53185} - redhat: kernel.spec: add ynl to kernel-tools (Jan Stancek) [RHEL-63081] - tools/net/ynl: ethtool: support spec load from install location (Jan Stancek) [RHEL-63081] - tools/net/ynl: add support for --family and --list-families (Jan Stancek) [RHEL-63081] - tools: ynl: add main install target (Jan Stancek) [RHEL-63081] - tools: ynl: add install target for generated content (Jan Stancek) [RHEL-63081] - tools: ynl: add initial pyproject.toml for packaging (Jan Stancek) [RHEL-63081] - tools: ynl: move python code to separate sub-directory (Jan Stancek) [RHEL-63081] - libperf cpumap: Grow array of read CPUs in smaller increments (Michael Petlan) [RHEL-73893] - libperf cpumap: Remove perf_cpu_map__read() (Michael Petlan) [RHEL-73893] - libperf cpumap: Remove use of perf_cpu_map__read() (Michael Petlan) [RHEL-73893] - perf pmu: Remove use of perf_cpu_map__read() (Michael Petlan) [RHEL-73893] - libperf cpumap: Be tolerant of newline at the end of a cpumask (Michael Petlan) [RHEL-73893] - libperf cpumap: Hide/reduce scope of MAX_NR_CPUS (Michael Petlan) [RHEL-73893] - perf cpumap: Reduce transitive dependencies on libperf MAX_NR_CPUS (Michael Petlan) [RHEL-73893] - perf: Increase MAX_NR_CPUS to 4096 (Michael Petlan) [RHEL-73893] - redhat/configs: disable CONFIG_AF_UNIX_OOB on RHEL (Davide Caratti) [RHEL-76804] - af_unix: Add a prompt to CONFIG_AF_UNIX_OOB (Davide Caratti) [RHEL-76804] - KVM: x86: Cache CPUID.0xD XSTATE offsets+sizes during module init (Maxim Levitsky) [RHEL-71725] - KVM: x86: Short-circuit all of kvm_apic_set_base() if MSR value is unchanged (Maxim Levitsky) [RHEL-71725] - KVM: x86: Unpack msr_data structure prior to calling kvm_apic_set_base() (Maxim Levitsky) [RHEL-71725] - KVM: x86: Make kvm_recalculate_apic_map() local to lapic.c (Maxim Levitsky) [RHEL-71725] - KVM: x86: Rename APIC base setters to better capture their relationship (Maxim Levitsky) [RHEL-71725] - KVM: x86: Move kvm_set_apic_base() implementation to lapic.c (from x86.c) (Maxim Levitsky) [RHEL-71725] - KVM: x86: Inline kvm_get_apic_mode() in lapic.h (Maxim Levitsky) [RHEL-71725] - KVM: x86: Get vcpu->arch.apic_base directly and drop kvm_get_apic_base() (Maxim Levitsky) [RHEL-71725] - KVM: x86: Drop superfluous kvm_lapic_set_base() call when setting APIC state (Maxim Levitsky) [RHEL-71725] - KVM: x86: Short-circuit all kvm_lapic_set_base() if MSR value isn't changing (Maxim Levitsky) [RHEL-71725] - KVM: x86: Use '0' for guest RIP if PMI encounters protected guest state (Maxim Levitsky) [RHEL-71725] - KVM: x86: Add lockdep-guarded asserts on register cache usage (Maxim Levitsky) [RHEL-71725] - KVM: x86: Bypass register cache when querying CPL from kvm_sched_out() (Maxim Levitsky) [RHEL-71725] - KVM: x86: Ensure vcpu->mode is loaded from memory in kvm_vcpu_exit_request() (Maxim Levitsky) [RHEL-71725] - KVM: Allow calling kvm_release_page_{clean,dirty}() on a NULL page pointer (Maxim Levitsky) [RHEL-71725] - KVM: Drop KVM_ERR_PTR_BAD_PAGE and instead return NULL to indicate an error (Maxim Levitsky) [RHEL-71725] - perf/x86/intel: Add Arrow Lake U support (Michael Petlan) [RHEL-33308] - wifi: ath12k: fix crash when unbinding (Jose Ignacio Tornos Martinez) [RHEL-70414] - wifi: ath12k: fix warning when unbinding (Jose Ignacio Tornos Martinez) [RHEL-70414] - nvmet: Don't overflow subsysnqn (Maurizio Lombardi) [RHEL-74084] {CVE-2024-53681} - hugetlb: prioritize surplus allocation from current node (Aristeu Rozanski) [RHEL-74490] - mm/vmscan: accumulate nr_demoted for accurate demotion statistics (Herton R. Krzesinski) [RHEL-71335] - mm: vmscan : pgdemote vmstat is not getting updated when MGLRU is enabled. (Herton R. Krzesinski) [RHEL-71335] - x86/tdx: Enable CPU topology enumeration (Vitaly Kuznetsov) [RHEL-29350] - x86/tdx: Dynamically disable SEPT violations from causing #VEs (Vitaly Kuznetsov) [RHEL-29350] - x86/tdx: Rename tdx_parse_tdinfo() to tdx_setup() (Vitaly Kuznetsov) [RHEL-29350] - x86/tdx: Introduce wrappers to read and write TD metadata (Vitaly Kuznetsov) [RHEL-29350] - net/sctp: Prevent autoclose integer overflow in sctp_association_init() (Xin Long) [RHEL-75624] {CVE-2024-57938} - tools: ynl: extend CFLAGS to keep options from environment (Hangbin Liu) [RHEL-50389] - tools: ynl: add script dir to sys.path (Hangbin Liu) [RHEL-50389] - ALSA: change configuration CONFIG_SND_HDA_SCODEC_TAS2781_SPI (Jaroslav Kysela) [RHEL-76330] - ALSA: hda/realtek: fixup ASUS H7606W (Jaroslav Kysela) [RHEL-76330] - ALSA: hda/realtek: fixup ASUS GA605W (Jaroslav Kysela) [RHEL-76330] - ALSA: hda/realtek: Add support for Ayaneo System using CS35L41 HDA (Jaroslav Kysela) [RHEL-76330] - ASoC: mediatek: disable buffer pre-allocation (Jaroslav Kysela) [RHEL-76330] - ASoC: rt722: add delay time to wait for the calibration procedure (Jaroslav Kysela) [RHEL-76330] - ALSA: hda: tas2781-spi: Delete some dead code (Jaroslav Kysela) [RHEL-76330] - ALSA: hda: tas2781-spi: Fix bogus error handling in tas2781_hda_spi_probe() (Jaroslav Kysela) [RHEL-76330] - ALSA: hda: tas2781-spi: Fix error code in tas2781_read_acpi() (Jaroslav Kysela) [RHEL-76330] - ALSA: hda: tas2781-spi: Fix -Wsometimes-uninitialized in tasdevice_spi_switch_book() (Jaroslav Kysela) [RHEL-76330] - ALSA: hda: tas2781-spi: select CRC32 instead of CRC32_SARWATE (Jaroslav Kysela) [RHEL-76330] - ALSA: hda/tas2781: Add tas2781 hda SPI driver (Jaroslav Kysela) [RHEL-76330] - ASoC: Intel: sof_sdw: Fix DMI match for Lenovo 83JX, 83MC and 83NM (Jaroslav Kysela) [RHEL-76330] - ASoC: Intel: sof_sdw: Fix DMI match for Lenovo 83LC (Jaroslav Kysela) [RHEL-76330] - Enable DRM_XE related kconfig options (Mika Penttilä) [RHEL-54134] - wifi: nl80211: fix NL80211_ATTR_MLO_LINK_ID off-by-one (CKI Backport Bot) [RHEL-76137] {CVE-2024-56663} - wifi: cfg80211: clear link ID from bitmap during link delete after clean up (Jose Ignacio Tornos Martinez) [RHEL-73819 RHEL-74091] {CVE-2024-57898} - net: ieee802154: do not leave a dangling sk pointer in ieee802154_create() (Jose Ignacio Tornos Martinez) [RHEL-73819 RHEL-74052] {CVE-2024-56602} - wifi: rtw89: coex: initialize local .dbcc_2g_phy in _set_btg_ctrl() (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: mac80211: wake the queues in case of failure in resume (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: rtw89: check return value of ieee80211_probereq_get() for RNR (Jose Ignacio Tornos Martinez) [RHEL-73819 RHEL-74044] {CVE-2024-48873} - wifi: rtlwifi: Drastically reduce the attempts to read efuse in case of failures (Jose Ignacio Tornos Martinez) [RHEL-73819 RHEL-74051] {CVE-2024-53190} - wifi: ath9k: add range check for conn_rsp_epid in htc_connect_service() (Jose Ignacio Tornos Martinez) [RHEL-73819 RHEL-74050] {CVE-2024-53156} - wifi: iwlwifi: fix CRF name for Bz (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: cfg80211: sme: init n_channels before channels[] access (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: mac80211: init cnt before accessing elem in ieee80211_copy_mbssid_beacon (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: mac80211: fix a queue stall in certain cases of CSA (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: mac80211: fix station NSS capability initialization order (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: cfg80211: tests: Fix potential NULL dereference in test_cfg80211_parse_colocated_ap() (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: rtlwifi: rtl8821ae: phy: restore removed code to fix infinite loop (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: cfg80211: Remove the Medium Synchronization Delay validity check (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: rtw89: coex: check NULL return of kmalloc in btc_fw_set_monreg() (Jose Ignacio Tornos Martinez) [RHEL-73819 RHEL-74048] {CVE-2024-56535} - wifi: nl80211: fix bounds checker error in nl80211_parse_sched_scan (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: iwlwifi: mvm: tell iwlmei when we finished suspending (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: iwlwifi: allow fast resume on ax200 (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: rtw89: Fix TX fail with A2DP after scanning (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: ath12k: remove msdu_end structure for WCN7850 (Jose Ignacio Tornos Martinez) [RHEL-73819] - bus: mhi: host: Switch trace_mhi_gen_tre fields to native endian (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: ath12k: fix one more memcpy size error (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: ath12k: fix use-after-free in ath12k_dp_cc_cleanup() (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: rtl8xxxu: Perform update_beacon_work when beaconing is enabled (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: ath11k: Fix CE offset address calculation for WCN6750 in SSR (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: mwifiex: add missing locking for cfg80211 calls (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: cfg80211: check radio iface combination for multi radio per wiphy (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: ath12k: Skip Rx TID cleanup for self peer (Jose Ignacio Tornos Martinez) [RHEL-73819] - wifi: iwlwifi: mvm: Fix __counted_by usage in cfg80211_wowlan_nd_* (Jose Ignacio Tornos Martinez) [RHEL-73819] - idpf: trigger SW interrupt when exiting wb_on_itr mode (Michal Schmidt) [RHEL-29554] - idpf: add support for SW triggered interrupts (Michal Schmidt) [RHEL-29554] - idpf: set completion tag for "empty" bufs associated with a packet (Michal Schmidt) [RHEL-29554] - idpf: Don't hard code napi_struct size (Michal Schmidt) [RHEL-29554] - perf trace: Keep exited threads for summary (Michael Petlan) [RHEL-62340] - block: Prevent potential deadlocks in zone write plug error recovery (Ming Lei) [RHEL-71495] - dm: Fix dm-zoned-reclaim zone write pointer alignment (Ming Lei) [RHEL-71495] - block: Ignore REQ_NOWAIT for zone reset and zone finish operations (Ming Lei) [RHEL-71495] - block: Use a zone write plug BIO work for REQ_NOWAIT BIOs (Ming Lei) [RHEL-71495] - block: Prevent potential deadlock in blk_revalidate_disk_zones() (Ming Lei) [RHEL-71495] - block: Switch to using refcount_t for zone write plugs (Ming Lei) [RHEL-71495] - block: Add a public bdev_zone_is_seq() helper (Ming Lei) [RHEL-71495] - block: RCU protect disk->conv_zones_bitmap (Ming Lei) [RHEL-71495] - redhat/configs: coresight: Clean up coresight configs (Mark Salter) [RHEL-78271] - redhat: fix build/install targets in netfilter kselftest (Hangbin Liu) [RHEL-58105] - selftests: net/{lib,openvswitch}: extend CFLAGS to keep options from environment (Hangbin Liu) [RHEL-58105] - selftests: mptcp: extend CFLAGS to keep options from environment (Hangbin Liu) [RHEL-58105] - fs/nfs: fix missing declaration of nfs_idmap_cache_timeout (Olga Kornievskaia) [RHEL-74415] - NFS/pnfs: Fix a live lock between recalled layouts and layoutget (Olga Kornievskaia) [RHEL-74415] - nfsd: restore callback functionality for NFSv4.0 (Olga Kornievskaia) [RHEL-74415] - NFSD: fix management of pending async copies (Olga Kornievskaia) [RHEL-74415] - nfsd: Revert "nfsd: release svc_expkey/svc_export with rcu_work" (Olga Kornievskaia) [RHEL-74415] - fs/nfs/io: make nfs_start_io_*() killable (Olga Kornievskaia) [RHEL-74415] - nfs/blocklayout: Limit repeat device registration on failure (Olga Kornievskaia) [RHEL-74415] - nfs/blocklayout: Don't attempt unregister for invalid block device (Olga Kornievskaia) [RHEL-74415] - sunrpc: fix one UAF issue caused by sunrpc kernel tcp socket (Olga Kornievskaia) [RHEL-74415] - SUNRPC: timeout and cancel TLS handshake with -ETIMEDOUT (Olga Kornievskaia) [RHEL-74415] - sunrpc: clear XPRT_SOCK_UPD_TIMEOUT when reset transport (Olga Kornievskaia) [RHEL-74415] - nfs: ignore SB_RDONLY when mounting nfs (Olga Kornievskaia) [RHEL-74415] - Revert "nfs: don't reuse partially completed requests in nfs_lock_and_join_requests" (Olga Kornievskaia) [RHEL-74415] - Revert "fs: nfs: fix missing refcnt by replacing folio_set_private by folio_attach_private" (Olga Kornievskaia) [RHEL-74415] - nfs/localio: must clear res.replen in nfs_local_read_done (Olga Kornievskaia) [RHEL-74415] - NFSv4.0: Fix a use-after-free problem in the asynchronous open() (Olga Kornievskaia) [RHEL-74415] - NFSv4.0: Fix the wake up of the next waiter in nfs_release_seqid() (Olga Kornievskaia) [RHEL-74415] - SUNRPC: Fix a hang in TLS sock_close if sk_write_pending (Olga Kornievskaia) [RHEL-74415] - sunrpc: remove newlines from tracepoints (Olga Kornievskaia) [RHEL-74415] - nfs: Annotate struct pnfs_commit_array with __counted_by() (Olga Kornievskaia) [RHEL-74415] - nfs/localio: eliminate need for nfs_local_fsync_work forward declaration (Olga Kornievskaia) [RHEL-74415] - nfs/localio: remove extra indirect nfs_to call to check {read,write}_iter (Olga Kornievskaia) [RHEL-74415] - nfs/localio: eliminate unnecessary kref in nfs_local_fsync_ctx (Olga Kornievskaia) [RHEL-74415] - nfs/localio: remove redundant suid/sgid handling (Olga Kornievskaia) [RHEL-74415] - NFS: Implement get_nfs_version() (Olga Kornievskaia) [RHEL-74415] - NFS: Clean up find_nfs_version() (Olga Kornievskaia) [RHEL-74415] - NFS: Rename get_nfs_version() -> find_nfs_version() (Olga Kornievskaia) [RHEL-74415] - NFS: Convert the NFS module list into an array (Olga Kornievskaia) [RHEL-74415] - NFS: Clean up locking the nfs_versions list (Olga Kornievskaia) [RHEL-74415] - nfsd: allow for up to 32 callback session slots (Olga Kornievskaia) [RHEL-74415] - nfs_common: must not hold RCU while calling nfsd_file_put_local (Olga Kornievskaia) [RHEL-74415] - nfsd: get rid of include ../internal.h (Olga Kornievskaia) [RHEL-74415] - nfsd: fix nfs4_openowner leak when concurrent nfsd4_open occur (Olga Kornievskaia) [RHEL-74415] - NFSD: Add nfsd4_copy time-to-live (Olga Kornievskaia) [RHEL-74415] - NFSD: Add a laundromat reaper for async copy state (Olga Kornievskaia) [RHEL-74415] - NFSD: Block DESTROY_CLIENTID only when there are ongoing async COPY operations (Olga Kornievskaia) [RHEL-74415] - NFSD: Handle an NFS4ERR_DELAY response to CB_OFFLOAD (Olga Kornievskaia) [RHEL-74415] - NFSD: Free async copy information in nfsd4_cb_offload_release() (Olga Kornievskaia) [RHEL-74415] - NFSD: Fix nfsd4_shutdown_copy() (Olga Kornievskaia) [RHEL-74415] - NFSD: Add a tracepoint to record canceled async COPY operations (Olga Kornievskaia) [RHEL-74415] - nfsd: make nfsd4_session->se_flags a bool (Olga Kornievskaia) [RHEL-74415] - nfsd: remove nfsd4_session->se_bchannel (Olga Kornievskaia) [RHEL-74415] - nfsd: make use of warning provided by refcount_t (Olga Kornievskaia) [RHEL-74415] - nfsd: Don't fail OP_SETCLIENTID when there are too many clients. (Olga Kornievskaia) [RHEL-74415] - svcrdma: fix miss destroy percpu_counter in svc_rdma_proc_init() (Olga Kornievskaia) [RHEL-74415] - xdrgen: Remove program_stat_to_errno() call sites (Olga Kornievskaia) [RHEL-74415] - xdrgen: Update the files included in client-side source code (Olga Kornievskaia) [RHEL-74415] - xdrgen: Remove check for "nfs_ok" in C templates (Olga Kornievskaia) [RHEL-74415] - xdrgen: Remove tracepoint call site (Olga Kornievskaia) [RHEL-74415] - nfsd: release svc_expkey/svc_export with rcu_work (Olga Kornievskaia) [RHEL-74415] - SUNRPC: make sure cache entry active before cache_show (Olga Kornievskaia) [RHEL-74415] - nfsd: make sure exp active before svc_export_show (Olga Kornievskaia) [RHEL-74415] - lockd: Remove unneeded initialization of file_lock::c.flc_flags (Olga Kornievskaia) [RHEL-74415] - lockd: Remove unused parameter to nlmsvc_testlock() (Olga Kornievskaia) [RHEL-74415] - lockd: Remove some snippets of unfinished code (Olga Kornievskaia) [RHEL-74415] - lockd: Remove unnecessary memset() (Olga Kornievskaia) [RHEL-74415] - lockd: Remove unused typedef (Olga Kornievskaia) [RHEL-74415] - NFSD: Cap the number of bytes copied by nfs4_reset_recoverydir() (Olga Kornievskaia) [RHEL-74415] - NFSD: Remove unused values from nfsd4_encode_components_esc() (Olga Kornievskaia) [RHEL-74415] - NFSD: Remove unused results in nfsd4_encode_pathname4() (Olga Kornievskaia) [RHEL-74415] - NFSD: Prevent NULL dereference in nfsd4_process_cb_update() (Olga Kornievskaia) [RHEL-74415] - NFSD: Remove a never-true comparison (Olga Kornievskaia) [RHEL-74415] - NFSD: Remove dead code in nfsd4_create_session() (Olga Kornievskaia) [RHEL-74415] - nfsd: refine and rename NFSD_MAY_LOCK (Olga Kornievskaia) [RHEL-74415] - NFSD: Replace use of NFSD_MAY_LOCK in nfsd4_lock() (Olga Kornievskaia) [RHEL-74415] - nfsd: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (Olga Kornievskaia) [RHEL-74415] - xdrgen: Add a utility for extracting XDR from RFCs (Olga Kornievskaia) [RHEL-74415] - nfsd: Fix NFSD_MAY_BYPASS_GSS and NFSD_MAY_BYPASS_GSS_ON_ROOT (Olga Kornievskaia) [RHEL-74415] - nfsd: Fill NFSv4.1 server implementation fields in OP_EXCHANGE_ID response (Olga Kornievskaia) [RHEL-74415] - lockd: Fix comment about NLMv3 backwards compatibility (Olga Kornievskaia) [RHEL-74415] - nfsd: new tracepoint for after op_func in compound processing (Olga Kornievskaia) [RHEL-74415] - nfsd: have nfsd4_deleg_getattr_conflict pass back write deleg pointer (Olga Kornievskaia) [RHEL-74415] - nfsd: drop the nfsd4_fattr_args "size" field (Olga Kornievskaia) [RHEL-74415] - nfsd: drop the ncf_cb_bmap field (Olga Kornievskaia) [RHEL-74415] - nfsd: drop inode parameter from nfsd4_change_attribute() (Olga Kornievskaia) [RHEL-74415] - xdrgen: emit maxsize macros (Olga Kornievskaia) [RHEL-74415] - xdrgen: Add generator code for XDR width macros (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for union types (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for pointer types (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for struct types (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for typedef (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for optional_data type (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for variable-length array (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for fixed-length array (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for a string (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for variable-length opaque (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR width for fixed-length opaque (Olga Kornievskaia) [RHEL-74415] - xdrgen: XDR widths for enum types (Olga Kornievskaia) [RHEL-74415] - xdrgen: Keep track of on-the-wire data type widths (Olga Kornievskaia) [RHEL-74415] - xdrgen: Track constant values (Olga Kornievskaia) [RHEL-74415] - xdrgen: Refactor transformer arms (Olga Kornievskaia) [RHEL-74415] - xdrgen: Implement big-endian enums (Olga Kornievskaia) [RHEL-74415] - xdrgen: Rename "enum yada" types as just "yada" (Olga Kornievskaia) [RHEL-74415] - xdrgen: Rename enum's declaration Jinja2 template (Olga Kornievskaia) [RHEL-74415] - xdrgen: Rename "variable-length strings" (Olga Kornievskaia) [RHEL-74415] - xdrgen: Clean up type_specifier (Olga Kornievskaia) [RHEL-74415] - xdrgen: Exit status should be zero on success (Olga Kornievskaia) [RHEL-74415] - NFSD: Remove unused function parameter (Olga Kornievskaia) [RHEL-74415] - NFSD: Remove unnecessary posix_acl_entry pointer initialization (Olga Kornievskaia) [RHEL-74415] - svcrdma: Address an integer overflow (Olga Kornievskaia) [RHEL-74415] - NFSD: Prevent a potential integer overflow (Olga Kornievskaia) [RHEL-74415] - rhel-10: gate on kernel-qe tests results not cki ones (Bruno Goncalves) - exfat: fix the infinite loop in exfat_readdir() (CKI Backport Bot) [RHEL-75669] {CVE-2024-57940} - exfat: fix the new buffer was not zeroed before writing (CKI Backport Bot) [RHEL-75662] {CVE-2024-57943} - redhat/configs: Enable Intel Bluetooth PCIE drivers (Bastien Nocera) [RHEL-76105] - Bluetooth: Use str_enable_disable-like helpers (Bastien Nocera) [RHEL-76105] - Bluetooth: btintel_pcie: Replace deprecated PCI functions (Bastien Nocera) [RHEL-76105] - Bluetooth: btintel_pcie: remove redundant assignment to variable ret (Bastien Nocera) [RHEL-76105] - Bluetooth: btintel: Do no pass vendor events to stack (Bastien Nocera) [RHEL-76105] - Bluetooth: btintel_pcie: Remove deadcode (Bastien Nocera) [RHEL-76105] - Bluetooth: btintel: Add DSBR support for BlazarIW, BlazarU and GaP (Bastien Nocera) [RHEL-76105] - Bluetooth: btintel_pcie: Add recovery mechanism (Bastien Nocera) [RHEL-76105] - Bluetooth: btintel_pcie: Add handshake between driver and firmware (Bastien Nocera) [RHEL-76105] - bluetooth: Fix typos in the comments (Bastien Nocera) [RHEL-76105] - net: atlantic: use irq_update_affinity_hint() (CKI Backport Bot) [RHEL-77809] - tipc: fix NULL deref in cleanup_bearer() (Xin Long) [RHEL-77768] - tipc: Fix use-after-free of kernel socket in cleanup_bearer(). (CKI Backport Bot) [RHEL-77768] {CVE-2024-56642} - perf test: Remove cpu-list BPF cgroup counter test (Michael Petlan) [RHEL-70687] - tg3: Disable tg3 PCIe AER on system reboot (Lenny Szubowicz) [RHEL-33859] - build: remove localversion-rt from git tree (Clark Williams) [RHEL-73163] - net: Fix icmp host relookup triggering ip_rt_bug (CKI Backport Bot) [RHEL-77765] {CVE-2024-56647} - redhat/configs: Default to batched invalidation on s390 (Jerry Snitselaar) [RHEL-75486] - redhat/configs: disable CONFIG_TCP_AO (Sabrina Dubroca) [RHEL-77608] - redhat: set aarch64 variants of kernel-rt as Tech Preview (Luis Claudio R. Goncalves) [RHEL-77120] - rtla/timerlat_top: Set OSNOISE_WORKLOAD for kernel threads (Tomas Glozar) [RHEL-72808] - rtla/timerlat_hist: Set OSNOISE_WORKLOAD for kernel threads (Tomas Glozar) [RHEL-72808] - rtla/osnoise: Distinguish missing workload option (Tomas Glozar) [RHEL-72808] - drm/ast: Fix ast_dp connection status (Jocelyn Falempe) [RHEL-73063] - NFSD: add cb opcode to WARN_ONCE on failed callback (Olga Kornievskaia) [RHEL-56888] - NFSD: fix decoding in nfs4_xdr_dec_cb_getattr (Olga Kornievskaia) [RHEL-56888] - wifi: iwlwifi: bump FW API to 94 for BZ/SC devices (CKI Backport Bot) [RHEL-75880] - bpf, sockmap: Fix race between element replace and close() (Felix Maurer) [RHEL-72484] - xsk: Free skb when TX metadata options are invalid (Felix Maurer) [RHEL-72484] - xsk: always clear DMA mapping information when unmapping the pool (Felix Maurer) [RHEL-72484] - bpf: fix OOB devmap writes when deleting elements (Felix Maurer) [RHEL-72484] - xsk: fix OOB map writes when deleting elements (Felix Maurer) [RHEL-72484] - rtla: Report missed event count (Tomas Glozar) [RHEL-67557] - rtla: Add function to report missed events (Tomas Glozar) [RHEL-67557] - rtla: Count all processed events (Tomas Glozar) [RHEL-67557] - rtla: Count missed trace events (Tomas Glozar) [RHEL-67557] - tools/rtla: Add osnoise_trace_is_off() (Tomas Glozar) [RHEL-67557] - rtla/timerlat_top: Abort event processing on second signal (Tomas Glozar) [RHEL-67557] - rtla/timerlat_hist: Abort event processing on second signal (Tomas Glozar) [RHEL-67557] - rtla/timerlat_top: Stop timerlat tracer on signal (Tomas Glozar) [RHEL-67557] - rtla/timerlat_hist: Stop timerlat tracer on signal (Tomas Glozar) [RHEL-67557] - rtla: Add trace_instance_stop (Tomas Glozar) [RHEL-67557] - netlink: typographical error in nlmsg_type constants definition (CKI Backport Bot) [RHEL-76481] - net: sched: refine software bypass handling in tc_run (Xin Long) [RHEL-56246] - Bluetooth: fix use-after-free in device_for_each_child() (CKI Backport Bot) [RHEL-76122] {CVE-2024-53237} - redhat/spec: Install all selftests in a single step (Viktor Malik) [RHEL-70889] - Bluetooth: hci_core: Fix not checking skb length on hci_acldata_packet (CKI Backport Bot) [RHEL-74009] {CVE-2024-56590} - net: usb: lan78xx: Fix double free issue with interrupt buffer allocation (CKI Backport Bot) [RHEL-74053] {CVE-2024-53213} - mm/slub: Avoid list corruption when removing a slab from the full list (Rafael Aquini) [RHEL-73368] {CVE-2024-56566} - selinux: ignore unknown extended permissions (Ondrej Mosnacek) [RHEL-75632] {CVE-2024-57931} - drm: adv7511: Fix use-after-free in adv7533_attach_dsi() (Jocelyn Falempe) [RHEL-74282] - drm: adv7511: Drop dsi single lane support (Jocelyn Falempe) [RHEL-74282] - drm/xe: Wait for migration job before unmapping pages (Jocelyn Falempe) [RHEL-74282] - drm/xe: Use non-interruptible wait when moving BO to system (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: Correct the migration DMA map direction (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: use sjt mec fw on gfx943 for sriov (Jocelyn Falempe) [RHEL-74282] - drm/i915/dg1: Fix power gate sequence. (Jocelyn Falempe) [RHEL-74282] - drm/i915/cx0_phy: Fix C10 pll programming sequence (Jocelyn Falempe) [RHEL-74282] - drm/xe: Fix fault on fd close after unbind (Jocelyn Falempe) [RHEL-74282] - drm/xe/pf: Use correct function to check LMEM provisioning (Jocelyn Falempe) [RHEL-74282] - drm/xe: Revert some changes that break a mesa debug tool (Jocelyn Falempe) [RHEL-74282] - drm/bridge: adv7511_audio: Update Audio InfoFrame properly (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: fix backport of commit 73dae652dcac (Jocelyn Falempe) [RHEL-74282] - drm/xe: Move the coredump registration to the worker thread (Jocelyn Falempe) [RHEL-74282] - drm/xe: Take PM ref in delayed snapshot capture worker (Jocelyn Falempe) [RHEL-74282] - drm/dp_mst: Ensure mst_primary pointer is valid in drm_dp_mst_handle_up_req() (Jocelyn Falempe) [RHEL-74282] - udmabuf: also check for F_SEAL_FUTURE_WRITE (Jocelyn Falempe) [RHEL-74282] - udmabuf: fix racy memfd sealing check (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/mmhub4.1: fix IP version check (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/gfx12: fix IP version check (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/nbio7.0: fix IP version check (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/smu14.0.2: fix IP version check (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/nbio7.7: fix IP version check (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/nbio7.11: fix IP version check (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: don't access invalid sched (Jocelyn Falempe) [RHEL-74282] - i915/guc: Accumulate active runtime on gt reset (Jocelyn Falempe) [RHEL-74282] - i915/guc: Ensure busyness counter increases motonically (Jocelyn Falempe) [RHEL-74282] - i915/guc: Reset engine utilization buffer before registration (Jocelyn Falempe) [RHEL-74282] - drm/panel: synaptics-r63353: Fix regulator unbalance (Jocelyn Falempe) [RHEL-74282] - drm/panel: st7701: Add prepare_prev_first flag to drm_panel (Jocelyn Falempe) [RHEL-74282] - drm/panel: novatek-nt35950: fix return value check in nt35950_probe() (Jocelyn Falempe) [RHEL-74282] - drm/panel: himax-hx83102: Add a check to prevent NULL pointer dereference (Jocelyn Falempe) [RHEL-74282] - dma-buf: Fix __dma_buf_debugfs_list_del argument for !CONFIG_DEBUG_FS (Jocelyn Falempe) [RHEL-74282] - udmabuf: fix memory leak on last export_udmabuf() error path (Jocelyn Falempe) [RHEL-74282] - udmabuf: udmabuf_create pin folio codestyle cleanup (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: Handle NULL bo->tbo.resource (again) in amdgpu_vm_bo_update (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: fix amdgpu_coredump (Jocelyn Falempe) [RHEL-74282] - drm/modes: Avoid divide by zero harder in drm_mode_vrefresh() (Jocelyn Falempe) [RHEL-74282] - drm/amd: Update strapping for NBIO 2.5.0 (Jocelyn Falempe) [RHEL-74282] - drm/display: use ERR_PTR on DP tunnel manager creation fail (Jocelyn Falempe) [RHEL-74282] - drm/xe/reg_sr: Remove register pool (Jocelyn Falempe) [RHEL-74282] - drm/xe: fix the ERR_PTR() returned on failure to allocate tiny pt (Jocelyn Falempe) [RHEL-74282] - amdgpu/uvd: get ring reference from rq scheduler (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: hard-code MALL cacheline size for gfx11, gfx12 (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: hard-code cacheline size for gfx11 (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: Dereference null return value (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: fix when the cleaner shader is emitted (Jocelyn Falempe) [RHEL-74282] - drm/amd/pm: Set SMU v13.0.7 default workload type (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: fix UVD contiguous CS mapping problem (Jocelyn Falempe) [RHEL-74282] - drm/i915: Fix NULL pointer dereference in capture_engine (Jocelyn Falempe) [RHEL-74282] - drm/i915/color: Stop using non-posted DSB writes for legacy LUT (Jocelyn Falempe) [RHEL-74282] - drm/i915: Fix memory leak by correcting cache object name in error handler (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: pause autosuspend when creating pdd (Jocelyn Falempe) [RHEL-74282] - drm/xe: Call invalidation_fence_fini for PT inval fences in error state (Jocelyn Falempe) [RHEL-74282] - drm/panic: remove spurious empty line to clean warning (Jocelyn Falempe) [RHEL-74282] - Revert "drm/amd/display: parse umc_info or vram_info based on ASIC" (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: rework resume handling for display (v2) (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Add option to retrieve detile buffer size (Jocelyn Falempe) [RHEL-74282] - drm/xe/devcoredump: Update handling of xe_force_wake_get return (Jocelyn Falempe) [RHEL-74282] - drm/xe/forcewake: Add a helper xe_force_wake_ref_has_domain() (Jocelyn Falempe) [RHEL-74282] - drm/xe/guc: Copy GuC log prior to dumping (Jocelyn Falempe) [RHEL-74282] - drm/xe/devcoredump: Add ASCII85 dump helper function (Jocelyn Falempe) [RHEL-74282] - drm/xe/devcoredump: Improve section headings and add tile info (Jocelyn Falempe) [RHEL-74282] - drm/xe/devcoredump: Use drm_puts and already cached local variables (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/vcn: reset fw_shared when VCPU buffers corrupted on vcn v4.0.3 (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: set the right AMDGPU sg segment limitation (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: skip amdgpu_device_cache_pci_state under sriov (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Prune Invalid Modes For HDMI Output (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: parse umc_info or vram_info based on ASIC (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Remove hw w/a toggle if on DP2/HPO (Jocelyn Falempe) [RHEL-74282] - drm/panic: Add ABGR2101010 support (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Fix underflow when playing 8K video in full screen mode (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: refine error handling in amdgpu_ttm_tt_pin_userptr (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: Dereference the ATCS ACPI buffer (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: clear RB_OVERFLOW bit when enabling interrupts for vega20_ih (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/gfx9: Add cleaner shader for GFX9.4.2 (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Adding array index check to prevent memory corruption (Jocelyn Falempe) [RHEL-74282] - drm/sched: memset() 'job' in drm_sched_job_init() (Jocelyn Falempe) [RHEL-74282] - drm/panel: simple: Add Microchip AC69T88A LVDS Display panel (Jocelyn Falempe) [RHEL-74282] - drm/xe/guc/ct: Flush g2h worker in case of g2h response timeout (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Full exit out of IPS2 when all allow signals have been cleared (Jocelyn Falempe) [RHEL-74282] - drm/display: Fix building with GCC 15 (Jocelyn Falempe) [RHEL-74282] - drm/xe/xe3: Add initial set of workarounds (Jocelyn Falempe) [RHEL-74282] - drm/xe/ptl: L3bank mask is not available on the media GT (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: disable SG displays on cyan skillfish (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Fix garbage or black screen when resetting otg (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: skip disable CRTC in seemless bootup case (Jocelyn Falempe) [RHEL-74282] - drm/radeon/r600_cs: Fix possible int overflow in r600_packet3_check() (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Fix out-of-bounds access in 'dcn21_link_encoder_create' (Jocelyn Falempe) [RHEL-74282] - drm/bridge: it6505: Enable module autoloading (Jocelyn Falempe) [RHEL-74282] - drm: panel-orientation-quirks: Add quirk for AYA NEO GEEK (Jocelyn Falempe) [RHEL-74282] - drm: panel-orientation-quirks: Add quirk for AYA NEO Founder edition (Jocelyn Falempe) [RHEL-74282] - drm: panel-orientation-quirks: Add quirk for AYA NEO 2 model (Jocelyn Falempe) [RHEL-74282] - drm/xe/pciid: Add new PCI id for ARL (Jocelyn Falempe) [RHEL-74282] - drm/xe/pciids: Add PVC's PCI device ID macros (Jocelyn Falempe) [RHEL-74282] - drm/xe/pciids: separate ARL and MTL PCI IDs (Jocelyn Falempe) [RHEL-74282] - drm/xe/pciids: separate RPL-U and RPL-P PCI IDs (Jocelyn Falempe) [RHEL-74282] - dma-fence: Use kernel's sort for merging fences (Jocelyn Falempe) [RHEL-74282] - dma-fence: Fix reference leak on fence merge failure path (Jocelyn Falempe) [RHEL-74282] - dma-buf: fix dma_fence_array_signaled v4 (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/hdp5.2: do a posting read when flushing HDP (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/hdp7.0: do a posting read when flushing HDP (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/hdp5.0: do a posting read when flushing HDP (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/hdp4.0: do a posting read when flushing HDP (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/hdp6.0: do a posting read when flushing HDP (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Add a left edge pixel if in YCbCr422 or YCbCr420 and odm (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Limit VTotal range to max hw cap minus fp (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Correct prefetch calculation (Jocelyn Falempe) [RHEL-74282] - drm/dp_mst: Fix resetting msg rx state after topology removal (Jocelyn Falempe) [RHEL-74282] - drm/dp_mst: Verify request type in the corresponding down message reply (Jocelyn Falempe) [RHEL-74282] - drm/amd/pm: fix and simplify workload handling (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: add MEC version that supports no PCIe atomics for GFX12 (Jocelyn Falempe) [RHEL-74282] - drm/dp_mst: Fix MST sideband message body length check (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: hard-code cacheline for gc943,gc944 (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Ignore scalar validation failure if pipe is phantom (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: calculate final viewport before TAP optimization (Jocelyn Falempe) [RHEL-74282] - Revert "drm/xe/xe_guc_ads: save/restore OA registers and allowlist regs" (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Remove PIPE_DTO_SRC_SEL programming from set_dtbclk_dto (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: update pipe selection policy to check head pipe (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Fix handling of plane refcount (Jocelyn Falempe) [RHEL-74282] - drm/amd/pm: Remove arcturus min power limit (Jocelyn Falempe) [RHEL-74282] - drm/amd/pm: disable pcie speed switching on Intel platform for smu v14.0.2/3 (Jocelyn Falempe) [RHEL-74282] - drm/amd/pm: update current_socclk and current_uclk in gpu_metrics on smu v13.0.7 (Jocelyn Falempe) [RHEL-74282] - drm/amd: Fix initialization mistake for NBIO 7.11 devices (Jocelyn Falempe) [RHEL-74282] - drm/amd/pm: skip setting the power source on smu v14.0.2/3 (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: fix usage slab after free (Jocelyn Falempe) [RHEL-74282] - drm/amd: Add some missing straps from NBIO 7.11.0 (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/pm: add gen5 display to the user on smu v14.0.2/3 (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: Use the correct wptr size (Jocelyn Falempe) [RHEL-74282] - drm/xe/guc_submit: fix race around suspend_pending (Jocelyn Falempe) [RHEL-74282] - drm/xe/migrate: use XE_BO_FLAG_PAGETABLE (Jocelyn Falempe) [RHEL-74282] - Revert "drm/radeon: Delay Connector detecting when HPD singals is unstable" (Jocelyn Falempe) [RHEL-74282] - drm/xe/migrate: fix pat index usage (Jocelyn Falempe) [RHEL-74282] - drm/xe/xe_guc_ads: save/restore OA registers and allowlist regs (Jocelyn Falempe) [RHEL-74282] - drm/bridge: it6505: Fix inverted reset polarity (Jocelyn Falempe) [RHEL-74282] - drm/fbdev-dma: Select FB_DEFERRED_IO (Jocelyn Falempe) [RHEL-74282] - drm: panel: jd9365da-h3: Remove unused num_init_cmds structure member (Jocelyn Falempe) [RHEL-74282] - drm/sti: avoid potential dereference of error pointers in sti_gdp_atomic_check (Jocelyn Falempe) [RHEL-74282] - drm/sti: avoid potential dereference of error pointers in sti_hqvdp_atomic_check (Jocelyn Falempe) [RHEL-74282] - drm/panic: Fix uninitialized spinlock acquisition with CONFIG_DRM_PANIC=n (Jocelyn Falempe) [RHEL-74282] - drm/xe/ufence: Wake up waiters after setting ufence->signalled (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Fix null check for pipe_ctx->plane_state in hwss_setup_dpp (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Fix null check for pipe_ctx->plane_state in dcn20_program_pipe (Jocelyn Falempe) [RHEL-74282] - drm/radeon: Fix spurious unplug event on radeon HDMI (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: Fix wrong usage of INIT_WORK() (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: Fix map/unmap queue logic (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: fix ACA bank count boundary check error (Jocelyn Falempe) [RHEL-74282] - drm/panthor: Fix OPP refcnt leaks in devfreq initialisation (Jocelyn Falempe) [RHEL-74282] - drm/panthor: record current and maximum device clock frequencies (Jocelyn Falempe) [RHEL-74282] - drm/panthor: introduce job cycle and timestamp accounting (Jocelyn Falempe) [RHEL-74282] - drm: use ATOMIC64_INIT() for atomic64_t (Jocelyn Falempe) [RHEL-74282] - drm/amdkfd: Use dynamic allocation for CU occupancy array in 'kfd_get_cu_occupancy()' (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: Fix the memory allocation issue in amdgpu_discovery_get_nps_info() (Jocelyn Falempe) [RHEL-74282] - drm/vkms: Drop unnecessary call to drm_crtc_cleanup() (Jocelyn Falempe) [RHEL-74282] - drm/nouveau/gr/gf100: Fix missing unlock in gf100_gr_chan_new() (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Reduce HPD Detection Interval for IPS (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Increase idle worker HPD detection time (Jocelyn Falempe) [RHEL-74282] - drm/xe/hdcp: Fix gsc structure check in fw check status (Jocelyn Falempe) [RHEL-74282] - drm: panel: nv3052c: correct spi_device_id for RG35XX panel (Jocelyn Falempe) [RHEL-74282] - drm/panic: Select ZLIB_DEFLATE for DRM_PANIC_SCREEN_QR_CODE (Jocelyn Falempe) [RHEL-74282] - drm/bridge: tc358767: Fix link properties discovery (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: fix a memleak issue when driver is removed (Jocelyn Falempe) [RHEL-74282] - drm/bridge: it6505: Drop EDID cache on bridge power off (Jocelyn Falempe) [RHEL-74282] - drm/bridge: anx7625: Drop EDID cache on bridge power off (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu/gfx9: Add Cleaner Shader Deinitialization in gfx_v9_0 Module (Jocelyn Falempe) [RHEL-74282] - drm/amdgpu: Fix JPEG v4.0.3 register write (Jocelyn Falempe) [RHEL-74282] - drm/panel: nt35510: Make new commands optional (Jocelyn Falempe) [RHEL-74282] - udmabuf: fix vmap_udmabuf error page set (Jocelyn Falempe) [RHEL-74282] - udmabuf: change folios array from kmalloc to kvmalloc (Jocelyn Falempe) [RHEL-74282] - drm/mm: Mark drm_mm_interval_tree*() functions with __maybe_unused (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Fix incorrect DSC recompute trigger (Jocelyn Falempe) [RHEL-74282] - drm/amd/display: Skip Invalid Streams from DSC Policy (Jocelyn Falempe) [RHEL-74282] - rcu/kvfree: Fix data-race in __mod_timer / kvfree_call_rcu (Rafael Aquini) [RHEL-73367] {CVE-2024-53160} - not upstream: Set vdso is_ready later during boot process (Herbert Xu) [RHEL-76765] - net: reenable NETIF_F_IPV6_CSUM offload for BIG TCP packets (CKI Backport Bot) [RHEL-74124] {CVE-2025-21629} - cppc_cpufreq: Use desired perf if feedback ctrs are 0 or unchanged (Mark Langsdorf) [RHEL-66201] - Bluetooth: hci_core: Fix sleeping function called from invalid context (CKI Backport Bot) [RHEL-74114] {CVE-2024-57894} - cxl/pci: Check dport->regs.rcd_pcie_cap availability before accessing (Myron Stowe) [RHEL-70563] - cxl/pci: Add sysfs attribute for CXL 1.1 device link status (Myron Stowe) [RHEL-70563] - cxl/core/regs: Add rcd_pcie_cap initialization (Myron Stowe) [RHEL-70563] - Bluetooth: MGMT: Fix slab-use-after-free Read in set_powered_sync (CKI Backport Bot) [RHEL-76123] {CVE-2024-53208} - ALSA: Intel AVS audio hardware enablement for RHEL 10 (Jaroslav Kysela) [RHEL-72802] - gitlab-ci: remove superfluous test_debug/debug_architectures (Michael Hofmann) - redhat: update brew target for RHEL scratch builds (Jan Stancek) - iommu/vt-d: Fix qi_batch NULL pointer with nested parent domain (Jerry Snitselaar) [RHEL-73411] {CVE-2024-56668} - iommu/vt-d: Remove cache tags before disabling ATS (Jerry Snitselaar) [RHEL-73411] {CVE-2024-56669} - iommufd: Fix out_fput in iommufd_fault_alloc() (Jerry Snitselaar) [RHEL-73411] {CVE-2024-56624} - iommu/vt-d: Fix checks and print in pgtable_walk() (Jerry Snitselaar) [RHEL-73411] - iommu/vt-d: Fix checks and print in dmar_fault_dump_ptes() (Jerry Snitselaar) [RHEL-73411] - iommu/amd/pgtbl_v2: Take protection domain lock before invalidating TLB (Jerry Snitselaar) [RHEL-73411] - iommu/arm-smmu: Defer probe of clients after smmu device bound (Jerry Snitselaar) [RHEL-73411] {CVE-2024-56568} - iommu/tegra241-cmdqv: Fix unused variable warning (Jerry Snitselaar) [RHEL-73411] - iommu/tegra241-cmdqv: Staticize cmdqv_debugfs_dir (Jerry Snitselaar) [RHEL-73411] - iommu/s390: Implement blocking domain (Jerry Snitselaar) [RHEL-73411] {CVE-2024-53232} - dmaengine: tegra: Return correct DMA status when paused (Jerry Snitselaar) [RHEL-73412] - dmaengine: dw: Select only supported masters for ACPI devices (Jerry Snitselaar) [RHEL-73412] - xfs: eliminate lockdep false positives in xfs_attr_shortform_list (Bill O'Donnell) [RHEL-46697] - RDMA/uverbs: Prevent integer overflow issue (CKI Backport Bot) [RHEL-74227] {CVE-2024-57890} - ALSA: AMD audio hardware enablement for RHEL 10 (Jaroslav Kysela) [RHEL-64633] - redhat/configs: enable iBFT parsing on aarch64 (Chris Leech) [RHEL-75491] - ipvlan: Support bonding events (Hangbin Liu) [RHEL-73828] - dm array: fix releasing a faulty array block twice in dm_array_cursor_end (CKI Backport Bot) [RHEL-74443] {CVE-2024-57929} - redhat/kernel.spec: work around find-debuginfo aborting cross builds (Jan Stancek) [RHEL-76454] - crypto: aes-gcm-p10 - Use the correct bit to test for P10 (Mamatha Inamdar) [RHEL-62818] - crypto: powerpc/p10-aes-gcm - Add dependency on CRYPTO_SIMDand re-enable CRYPTO_AES_GCM_P10 (Mamatha Inamdar) [RHEL-62818] - crypto: powerpc/p10-aes-gcm - Register modules as SIMD (Mamatha Inamdar) [RHEL-62818] - crypto: powerpc/p10-aes-gcm - Re-write AES/GCM stitched implementation (Mamatha Inamdar) [RHEL-62818] - ASoC: Intel: soc-acpi: arl: Add match entries for new cs42l43 laptops (Jaroslav Kysela) [RHEL-73890] - ASoC: Intel: soc-acpi: arl: Correct naming of a cs35l56 address struct (Jaroslav Kysela) [RHEL-73890] - ALSA: seq: oss: Fix races at processing SysEx messages (Jaroslav Kysela) [RHEL-73890] {CVE-2024-57893} - ALSA hda/realtek: Add quirk for Framework F111:000C (Jaroslav Kysela) [RHEL-73890] - ALSA: seq: Check UMP support for midi_version change (Jaroslav Kysela) [RHEL-73890] - Revert "ALSA: ump: Don't enumeration invalid groups for legacy rawmidi" (Jaroslav Kysela) [RHEL-73890] - ASoC: audio-graph-card: Call of_node_put() on correct node (Jaroslav Kysela) [RHEL-73890] - sound: usb: format: don't warn that raw DSD is unsupported (Jaroslav Kysela) [RHEL-73890] - sound: usb: enable DSD output for ddHiFi TC44C (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Add new alc2xx-fixup-headset-mic model (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/ca0132: Use standard HD-audio quirk matching helpers (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek - Add support for ASUS Zen AIO 27 Z272SD_A272SD audio (Jaroslav Kysela) [RHEL-73890] - ALSA: hda: cs35l56: Remove calls to cs35l56_force_sync_asp1_registers_from_cache() (Jaroslav Kysela) [RHEL-73890] - ALSA: usb-audio: US16x08: Initialize array before use (Jaroslav Kysela) [RHEL-73890] - ALSA: sh: Fix wrong argument order for copy_from_iter() (Jaroslav Kysela) [RHEL-73890] - ALSA: ump: Shut up truncated string warning (Jaroslav Kysela) [RHEL-73890] - ALSA: sh: Use standard helper for buffer accesses (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/conexant: fix Z60MR100 startup pop issue (Jaroslav Kysela) [RHEL-73890] - ALSA: ump: Update legacy substream names upon FB info update (Jaroslav Kysela) [RHEL-73890] - ALSA: ump: Indicate the inactive group in legacy substream names (Jaroslav Kysela) [RHEL-73890] - ALSA: ump: Don't open legacy substream for an inactive group (Jaroslav Kysela) [RHEL-73890] - ASoC: Intel: sof_sdw: Fix DMI match for Lenovo 21Q6 and 21Q7 (Jaroslav Kysela) [RHEL-73890] - ASoC: Intel: sof_sdw: Fix DMI match for Lenovo 21QA and 21QB (Jaroslav Kysela) [RHEL-73890] - ASoC: amd: ps: Fix for enabling DMIC on acp63 platform via _DSD entry (Jaroslav Kysela) [RHEL-73890] - ASoC: SOF: Intel: hda-dai: Do not release the link DMA on STOP (Jaroslav Kysela) [RHEL-73890] {CVE-2024-57805} - ALSA: memalloc: prefer dma_mapping_error() over explicit address checking (Jaroslav Kysela) [RHEL-73890] {CVE-2024-57800} - firmware: arm_scmi: Fix i.MX build dependency (Jaroslav Kysela) [RHEL-73890] - ASoC: Intel: sof_sdw: Add space for a terminator into DAIs array (Jaroslav Kysela) [RHEL-73890] {CVE-2024-57880} - ASoC: fsl_spdif: change IFACE_PCM to IFACE_MIXER (Jaroslav Kysela) [RHEL-73890] - ASoC: fsl_xcvr: change IFACE_PCM to IFACE_MIXER (Jaroslav Kysela) [RHEL-73890] - ASoC: tas2781: Fix calibration issue in stress test (Jaroslav Kysela) [RHEL-73890] - ASoC: amd: yc: Fix the wrong return value (Jaroslav Kysela) [RHEL-73890] - ALSA: control: Avoid WARN() for symlink errors (Jaroslav Kysela) [RHEL-73890] {CVE-2024-56657} - ALSA: hda/realtek: Fix headset mic on Acer Nitro 5 (Jaroslav Kysela) [RHEL-73890] - ALSA: usb-audio: Add implicit feedback quirk for Yamaha THR5 (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Fix spelling mistake "Firelfy" -> "Firefly" (Jaroslav Kysela) [RHEL-73890] - ALSA: hda: Fix build error without CONFIG_SND_DEBUG (Jaroslav Kysela) [RHEL-73890] - ASoC: Intel: avs: Fix return status of avs_pcm_hw_constraints_init() (Jaroslav Kysela) [RHEL-73890] - ASoC: amd: yc: Add quirk for microphone on Lenovo Thinkpad T14s Gen 6 21M1CTO1WW (Jaroslav Kysela) [RHEL-73890] - ASoC: amd: yc: fix internal mic on Redmi G 2022 (Jaroslav Kysela) [RHEL-73890] - ASoC: hdmi-codec: reorder channel allocation list (Jaroslav Kysela) [RHEL-73890] - ALSA: usb-audio: Make mic volume workarounds globally applicable (Jaroslav Kysela) [RHEL-73890] - ASoC: Intel: soc-acpi-intel-arl-match: Add rt722 and rt1320 support (Jaroslav Kysela) [RHEL-73890] - ASoC: sdw_utils: Add quirk to exclude amplifier function (Jaroslav Kysela) [RHEL-73890] - ASoC: Intel: sof_sdw: Add quirks for some new Lenovo laptops (Jaroslav Kysela) [RHEL-73890] - ASoC: Intel: sof_sdw: Add quirk for cs42l43 system using host DMICs (Jaroslav Kysela) [RHEL-73890] - ASoC: sdw_utils: Add a quirk to allow the cs42l43 mic DAI to be ignored (Jaroslav Kysela) [RHEL-73890] - ASoC: sdw_utils: Add support for exclusion DAI quirks (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Use codec SSID matching for Lenovo devices (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/conexant: Use the new codec SSID matching (Jaroslav Kysela) [RHEL-73890] - ALSA: hda: Use own quirk lookup helper (Jaroslav Kysela) [RHEL-73890] - ASoC: Intel: sof_rt5682: Add HDMI-In capture with rt5682 support for MTL. (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Add support for Samsung Galaxy Book3 360 (NP730QFG) (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Enable mute and micmute LED on HP ProBook 430 G8 (Jaroslav Kysela) [RHEL-73890] - ALSA: usb-audio: add mixer mapping for Corsair HS80 (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: fix micmute LEDs don't work on HP Laptops (Jaroslav Kysela) [RHEL-73890] - ALSA: usb-audio: Add extra PID for RME Digiface USB (Jaroslav Kysela) [RHEL-73890] - ALSA: usb-audio: Fix a DMA to stack memory bug (Jaroslav Kysela) [RHEL-73890] - ASoC: mediatek: mt8188-mt6359: Remove hardcoded dmic codec (Jaroslav Kysela) [RHEL-73890] - ASoC: SOF: ipc3-topology: fix resource leaks in sof_ipc3_widget_setup_comp_dai() (Jaroslav Kysela) [RHEL-73890] - ASoC: SOF: ipc3-topology: Convert the topology pin index to ALH dai index (Jaroslav Kysela) [RHEL-73890] - ALSA: usb-audio: Notify xrun for low-latency mode (Jaroslav Kysela) [RHEL-73890] - ALSA: seq: ump: Fix seq port updates per FB info notify (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Apply quirk for Medion E15433 (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: fix mute/micmute LEDs don't work for EliteBook X G1i (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Fix Internal Speaker and Mic boost of Infinix Y4 Max (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Set PCBeep to default value for ALC274 (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Enable speaker pins for Medion E15443 platform (Jaroslav Kysela) [RHEL-73890] - ALSA: hda/realtek: Update ALC225 depop procedure (Jaroslav Kysela) [RHEL-73890] - ALSA: pcm: Add sanity NULL check for the default mmap fault handler (Jaroslav Kysela) [RHEL-73890] {CVE-2024-53180} - ALSA: ump: Fix evaluation of MIDI 1.0 FB info (Jaroslav Kysela) [RHEL-73890] - ALSA: rawmidi: Fix kvfree() call in spinlock (Jaroslav Kysela) [RHEL-73890] - ASoC: da7213: Populate max_register to regmap_config (Jaroslav Kysela) [RHEL-73890] - ASoC: codecs: Fix atomicity violation in snd_soc_component_get_drvdata() (Jaroslav Kysela) [RHEL-73890] - ASoC: amd: yc: Add a quirk for microfone on Lenovo ThinkPad P14s Gen 5 21MES00B00 (Jaroslav Kysela) [RHEL-73890] - ALSA: usb-audio: Fix out of bounds reads when finding clock sources (Jaroslav Kysela) [RHEL-73890] {CVE-2024-53150} - ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy and Mbox devices (Jaroslav Kysela) [RHEL-73890] {CVE-2024-53197} - ASoC: mediatek: Check num_codecs is not zero to avoid panic during probe (Jaroslav Kysela) [RHEL-73890] {CVE-2024-56685} - ASoC: amd: yc: Fix for enabling DMIC on acp6x via _DSD entry (Jaroslav Kysela) [RHEL-73890] - ALSA: core: Fix possible NULL dereference caused by kunit_kzalloc() (Jaroslav Kysela) [RHEL-73890] {CVE-2024-56696} - ASoC: imx-audmix: Add NULL check in imx_audmix_probe (Jaroslav Kysela) [RHEL-73890] {CVE-2024-53199} - ALSA: hda/realtek: Update ALC256 depop procedure (Jaroslav Kysela) [RHEL-73890] - ALSA: 6fire: Release resources at card release (Jaroslav Kysela) [RHEL-73890] {CVE-2024-53239} - ALSA: caiaq: Use snd_card_free_when_closed() at disconnection (Jaroslav Kysela) [RHEL-73890] {CVE-2024-56531} - ALSA: us122l: Use snd_card_free_when_closed() at disconnection (Jaroslav Kysela) [RHEL-73890] {CVE-2024-56532} - ALSA: usx2y: Use snd_card_free_when_closed() at disconnection (Jaroslav Kysela) [RHEL-73890] {CVE-2024-56533} - ASoC: rt722-sdca: Remove logically deadcode in rt722-sdca.c (Jaroslav Kysela) [RHEL-73890] - ASoC: amd: acp: fix for cpu dai index logic (Jaroslav Kysela) [RHEL-73890] - ASoC: amd: acp: fix for inconsistent indenting (Jaroslav Kysela) [RHEL-73890] - ASoC: fsl-asoc-card: Add missing handling of {hp,mic}-dt-gpios (Jaroslav Kysela) [RHEL-73890] - ASoC: fsl_micfil: fix regmap_write_bits usage (Jaroslav Kysela) [RHEL-73890] - RDMA/bnxt_re: Fix error recovery sequence (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Fix the locking while accessing the QP table (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Disable use of reserved wqes (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Fix max_qp_wrs reported (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Fix reporting hw_ver in query_device (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Add check for path mtu in modify_qp (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Fix the check for 9060 condition (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Avoid sending the modify QP workaround for latest adapters (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Avoid initializing the software queue for user queues (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Fix max SGEs for the Work Request (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Remove always true dattr validity check (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Correct the sequence of device suspend (Mohammad Heib) [RHEL-22876] - RDMA/bnxt_re: Check cqe flags to know imm_data vs inv_irkey (Mohammad Heib) [RHEL-22876] - CI: Enable pipelines for rt-64k variant (Juri Lelli) [RHEL-70288] - redhat: Add kernel-rt-64k variant (Juri Lelli) [RHEL-70288] - redhat: hsr: Mark as tech preview (Felix Maurer) [RHEL-74748] - xfs: Mark all experimental code as tech preview (Bill O'Donnell) [RHEL-64936] - redhat: create 'debug' addon for UKI (Li Tian) [RHEL-70836] - mptcp: disable by default (Davide Caratti) [RHEL-74247] - initramfs: avoid filename buffer overrun (Rafael Aquini) [RHEL-73366] {CVE-2024-53142} - redhat/configs: set new PKEY_UV option on s390 (Mete Durlu) [RHEL-24135] - s390/crypto: Add hardware acceleration for full AES-XTS mode (Mete Durlu) [RHEL-24136] - s390/crypto: Postpone the key split to key conversion (Mete Durlu) [RHEL-24136] - s390/crypto: Introduce function for tokenize clearkeys (Mete Durlu) [RHEL-24136] - s390/crypto: Generalize parameters for key conversion (Mete Durlu) [RHEL-24136] - s390/crypto: Use module-local structures for protected keys (Mete Durlu) [RHEL-24136] - s390/crypto: Convert to reverse x-mas tree, rename ret to rc (Mete Durlu) [RHEL-24136] - s390/pkey: Tolerate larger key blobs (Mete Durlu) [RHEL-24136] - s390/pkey: Add new pkey handler module pkey-uv (Mete Durlu) [RHEL-24135] - s390/pkey: Build module name array selectively based on kernel config options (Mete Durlu) [RHEL-24135] - s390/pkey: Fix checkpatch findings in pkey header file (Mete Durlu) [RHEL-24135] - s390/pkey: Rework pkey verify for protected keys (Mete Durlu) [RHEL-24135] - s390/pkey: Simplify protected key length calculation code (Mete Durlu) [RHEL-24135] - s390/zcrypt: Cleanup include zcrypt_api.h (Mete Durlu) [RHEL-24135] - ipvs: speed up reads from ip_vs_conn proc file (Florian Westphal) [RHEL-68933] - PCI: Batch BAR sizing operations (Myron Stowe) [RHEL-76026] - xfrm: mark packet offload as tech preview (Sabrina Dubroca) [RHEL-75472] - mm/kmemleak: fix sleeping function called from invalid context at print message (CKI Backport Bot) [RHEL-74104] {CVE-2024-57885} - mm: vmscan: account for free pages to prevent infinite Loop in throttle_direct_reclaim() (CKI Backport Bot) [RHEL-74099] {CVE-2024-57884} - bnxt_en: Fix DIM shutdown (Michal Schmidt) [RHEL-73718] - bnxt_en: Fix possible memory leak when hwrm_req_replace fails (Michal Schmidt) [RHEL-73718] - bnxt_en: Fix aggregation ID mask to prevent oops on 5760X chips (Michal Schmidt) [RHEL-73718] - bnxt_en: Fix GSO type for HW GRO packets on 5750X chips (Michal Schmidt) [RHEL-73718] - selftests: drv-net: rss_ctx: Add test for ntuple rule (Michal Schmidt) [RHEL-73718] - bnxt_en: ethtool: Supply ntuple rss context action (Michal Schmidt) [RHEL-73718] - netfilter: conntrack: clamp maximum hashtable size to INT_MAX (CKI Backport Bot) [RHEL-73620] - netfilter: nf_tables: imbalance in flowtable binding (CKI Backport Bot) [RHEL-73620] - netfilter: nft_set_hash: unaligned atomic read on struct nft_set_ext (CKI Backport Bot) [RHEL-73620] - netfilter: nft_set_hash: skip duplicated elements pending gc run (CKI Backport Bot) [RHEL-73620] - netfilter: nft_inner: incorrect percpu area handling under softirq (CKI Backport Bot) [RHEL-73620] - netfilter: nft_socket: remove WARN_ON_ONCE on maximum cgroup level (CKI Backport Bot) [RHEL-73620] - netfilter: x_tables: fix LED ID check in led_tg_check() (CKI Backport Bot) [RHEL-73620] - ipvs: fix UB due to uninitialized stack access in ip_vs_protocol_init() (CKI Backport Bot) [RHEL-73620] - netfilter: ipset: add missing range check in bitmap_ip_uadt (CKI Backport Bot) [RHEL-73620] - netfilter: bpf: Pass string literal as format argument of request_module() (CKI Backport Bot) [RHEL-73620] - netfilter: nf_tables: must hold rcu read lock while iterating object type list (CKI Backport Bot) [RHEL-73620] - netfilter: nf_tables: must hold rcu read lock while iterating expression type list (CKI Backport Bot) [RHEL-73620] - mptcp: fix TCP options overflow. (CKI Backport Bot) [RHEL-73495] - mptcp: sysctl: sched: avoid using current->nsproxy (CKI Backport Bot) [RHEL-73495] - mptcp: sysctl: blackhole timeout: avoid using current->nsproxy (CKI Backport Bot) [RHEL-73495] - KVM: s390: add gen17 facilities to CPU model (Mete Durlu) [RHEL-24195] - KVM: s390: add msa11 to cpu model (Mete Durlu) [RHEL-24195] - KVM: s390: add concurrent-function facility to cpu model (Mete Durlu) [RHEL-24195] - redhat/configs: Re-enable full ZRAM configuration and all backends (Neal Gompa) [RHEL-72036] - wireguard: device: support big tcp GSO (CKI Backport Bot) [RHEL-74019] - wireguard: selftests: load nf_conntrack if not present (CKI Backport Bot) [RHEL-74019] - wireguard: allowedips: remove redundant selftest call (CKI Backport Bot) [RHEL-74019] - wireguard: device: omit unnecessary memset of netdev private data (CKI Backport Bot) [RHEL-74019] - bpf: Do not alloc arena on unsupported arches (Viktor Malik) [RHEL-68958] - powerpc/pseries/eeh: Fix get PE state translation (Mamatha Inamdar) [RHEL-74254] - MAINTAINERS: Make Kristen Accardi the IAA crypto driver maintainer (Vladis Dronov) [RHEL-58597] - crypto: iaa - Remove potential infinite loop in check_completion() (Vladis Dronov) [RHEL-58597] - s390/entry: Mark IRQ entries to fix stack depot warnings (Mete Durlu) [RHEL-74467] - s390/iucv: MSG_PEEK causes memory leak in iucv_sock_destruct() (Mete Durlu) [RHEL-74386] - redhat/configs: Disable deprecated CONFIG_LCS option on s390 (Mete Durlu) [RHEL-68296] - powerpc/pseries/iommu: Don't unset window if it was never set (Mamatha Inamdar) [RHEL-74222] - selftests: net: local_termination: require mausezahn (CKI Backport Bot) [RHEL-74034] - selftests: openvswitch: fix tcpdump execution (CKI Backport Bot) [RHEL-74034] - selftests: rds: move test.py to TEST_FILES (CKI Backport Bot) [RHEL-74034] - selftests: netfilter: Fix missing return values in conntrack_dump_flush (CKI Backport Bot) [RHEL-74034] - selftests: net: include lib/sh/*.sh with lib.sh (CKI Backport Bot) [RHEL-74034] - selftests: tls: add a selftest for wrapping rec_seq (CKI Backport Bot) [RHEL-74034] - selftests: ETS: Use defer for test cleanup (CKI Backport Bot) [RHEL-74034] - selftests: TBF: Use defer for test cleanup (CKI Backport Bot) [RHEL-74034] - selftests: RED: Use defer for test cleanup (CKI Backport Bot) [RHEL-74034] - selftests: forwarding: lib: Allow passing PID to stop_traffic() (CKI Backport Bot) [RHEL-74034] - selftests: forwarding: Add a fallback cleanup() (CKI Backport Bot) [RHEL-74034] - selftests: net: lib: Introduce deferred commands (CKI Backport Bot) [RHEL-74034] - selftests: net: move EXTRA_CLEAN of libynl.a into ynl.mk (CKI Backport Bot) [RHEL-74034] - selftests: net: rebuild YNL if dependencies changed (CKI Backport Bot) [RHEL-74034] - ipmr: tune the ipmr_can_free_table() checks. (CKI Backport Bot) [RHEL-74037] - ipmr: fix build with clang and DEBUG_NET disabled. (CKI Backport Bot) [RHEL-74037] - net/ipv6: release expired exception dst cached in socket (CKI Backport Bot) [RHEL-74037] - ipv6: avoid possible NULL deref in modify_prefix_route() (CKI Backport Bot) [RHEL-74037] - ipmr: fix tables suspicious RCU usage (CKI Backport Bot) [RHEL-74037] - ip6mr: fix tables suspicious RCU usage (CKI Backport Bot) [RHEL-74037] - ipmr: add debug check for mr table cleanup (CKI Backport Bot) [RHEL-74037] - selftests/rtnetlink.sh: add mngtempaddr test (CKI Backport Bot) [RHEL-74037] - ipv6: Fix soft lockups in fib6_select_path under high next hop churn (CKI Backport Bot) [RHEL-74037] - selftests: net: really check for bg process completion (CKI Backport Bot) [RHEL-74037] - ipv6: release nexthop on device removal (CKI Backport Bot) [RHEL-74037] - ipv6: switch inet6_acaddr_hash() to less predictable hash (CKI Backport Bot) [RHEL-74037] - ipv6: switch inet6_addr_hash() to less predictable hash (CKI Backport Bot) [RHEL-74037] - ptp: Add error handling for adjfine callback in ptp_clock_adjtime (CKI Backport Bot) [RHEL-74024] - ptp_pch: Replace deprecated PCI functions (CKI Backport Bot) [RHEL-74024] - wireguard: mark as Tech Preview (Hangbin Liu) [RHEL-74327] - nbd: fix partial sending (Ming Lei) [RHEL-74229] - scsi: lpfc: Fix spelling errors 'asynchronously' (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Copyright updates for 14.4.0.6 patches (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Update lpfc version to 14.4.0.6 (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Change lpfc_nodelist nlp_flag member into a bitmask (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Remove NLP_RELEASE_RPI flag from nodelist structure (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Prevent NDLP reference count underflow in dev_loss_tmo callback (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Add cleanup of nvmels_wq after HBA reset (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Check SLI_ACTIVE flag in FDMI cmpl before submitting follow up FDMI (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Update lpfc_els_flush_cmd() to check for SLI_ACTIVE before BSG flag (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Call lpfc_sli4_queue_unset() in restart and rmmod paths (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Check devloss callbk done flag for potential stale NDLP ptrs (Dick Kennedy) [RHEL-61740] - scsi: lpfc: Modify CGN warning signal calculation based on EDC response (Dick Kennedy) [RHEL-61740] - md: reintroduce md-linear (Nigel Croxon) [RHEL-74142] - Revert "readahead: properly shorten readahead when falling back to do_page_cache_ra()" (Maxim Levitsky) [RHEL-55724 RHEL-56929] {CVE-2024-57839} - i40e: add ability to reset VF for Tx and Rx MDD events (Michal Schmidt) [RHEL-73034] - net/ipv6: delete temporary address if mngtmpaddr is removed or unmanaged (CKI Backport Bot) [RHEL-39340] - vfio/pci: Fallback huge faults for unaligned pfn (Alex Williamson) [RHEL-72822] - iommu/tegra241-cmdqv: do not use smp_processor_id in preemptible context (Luis Claudio R. Goncalves) [RHEL-74342] - net: sched: fix ordering of qlen adjustment (CKI Backport Bot) [RHEL-73395] {CVE-2024-53164} - net_sched: sch_fq: don't follow the fast path if Tx is behind now (CKI Backport Bot) [RHEL-73395] - s390/uvdevice: Support longer secret lists (Mete Durlu) [RHEL-25204] - s390/uv: Retrieve UV secrets sysfs support (Mete Durlu) [RHEL-25204] - s390/uvdevice: Increase indent in IOCTL definitions (Mete Durlu) [RHEL-25204] - s390/uvdevice: Add Retrieve Secret IOCTL (Mete Durlu) [RHEL-25204] - s390/uv: Retrieve UV secrets support (Mete Durlu) [RHEL-25204] - s390/uv: Use a constant for more-data rc (Mete Durlu) [RHEL-25204] - s390/uv: Provide host-key hashes in sysfs (Mete Durlu) [RHEL-47110] - s390/uv: Refactor uv-sysfs creation (Mete Durlu) [RHEL-47110] - net/l2tp: fix warning in l2tp_exit_net found by syzbot (Guillaume Nault) [RHEL-73846] - geneve: do not assume mac header is set in geneve_xmit_skb() (Guillaume Nault) [RHEL-73846] - net: Fix netns for ip_tunnel_init_flow() (Guillaume Nault) [RHEL-73846] - futex: fix user access on powerpc (Waiman Long) [RHEL-70187] - x86: fix off-by-one in access_ok() (Waiman Long) [RHEL-70187] - futex: improve user space accesses (Waiman Long) [RHEL-70187] - s390/pci: Add pci_msg debug view to PCI report (Mete Durlu) [RHEL-24144] - s390/debug: Add a reverse mode for debug_dump() (Mete Durlu) [RHEL-24144] - s390/debug: Add debug_dump() to write debug view to a string buffer (Mete Durlu) [RHEL-24144] - s390/debug: Split private data alloc/free out of file operations (Mete Durlu) [RHEL-24144] - s390/debug: Simplify and document debug_next_entry() logic (Mete Durlu) [RHEL-24144] - s390/pci: Report PCI error recovery results via SCLP (Mete Durlu) [RHEL-24144] - s390/debug: Pass in and enforce output buffer size for format handlers (Mete Durlu) [RHEL-24144] - s390/sclp: Allow user-space to provide PCI reports for optical modules (Mete Durlu) [RHEL-71264] - net: sched: fix erspan_opt settings in cls_flower (Xin Long) [RHEL-73195] - KVM: SVM: Allow guest writes to set MSR_AMD64_DE_CFG bits (Vitaly Kuznetsov) [RHEL-71416] - redhat/configs: enable ARCH_TEGRA_241_SOC (Mark Salter) [RHEL-67684] - x86/cpu: Add Lunar Lake to list of CPUs with a broken MONITOR implementation (Steve Best) [RHEL-68393] - net: sysctl: allow dump_cpumask to handle higher numbers of CPUs (Antoine Tenart) [RHEL-73199] - net: sysctl: do not reserve an extra char in dump_cpumask temporary buffer (Antoine Tenart) [RHEL-73199] - net: sysctl: remove always-true condition (Antoine Tenart) [RHEL-73199] - net: tcp: Add noinline_for_tracing annotation for tcp_drop_reason() (Antoine Tenart) [RHEL-73172] - compiler_types: Add noinline_for_tracing annotation (Antoine Tenart) [RHEL-73172] - net: vxlan: replace VXLAN_INVALID_HDR with VNI_NOT_FOUND (Antoine Tenart) [RHEL-73172] - net: vxlan: use kfree_skb_reason() in encap_bypass_if_local() (Antoine Tenart) [RHEL-73172] - net: vxlan: use kfree_skb_reason() in vxlan_encap_bypass() (Antoine Tenart) [RHEL-73172] - net: vxlan: use kfree_skb_reason() in vxlan_mdb_xmit() (Antoine Tenart) [RHEL-73172] - net: vxlan: add drop reasons support to vxlan_xmit_one() (Antoine Tenart) [RHEL-73172] - net: vxlan: use kfree_skb_reason() in vxlan_xmit() (Antoine Tenart) [RHEL-73172] - net: vxlan: make vxlan_set_mac() return drop reasons (Antoine Tenart) [RHEL-73172] - net: vxlan: make vxlan_snoop() return drop reasons (Antoine Tenart) [RHEL-73172] - net: vxlan: make vxlan_remcsum() return drop reasons (Antoine Tenart) [RHEL-73172] - net: vxlan: add skb drop reasons to vxlan_rcv() (Antoine Tenart) [RHEL-73172] - net: tunnel: make skb_vlan_inet_prepare() return drop reasons (Antoine Tenart) [RHEL-73172] - net: tunnel: add pskb_inet_may_pull_reason() helper (Antoine Tenart) [RHEL-73172] - net: skb: add pskb_network_may_pull_reason() helper (Antoine Tenart) [RHEL-73172] - redhat: Install bpftool into BPF selftests dir (Viktor Malik) [RHEL-73480] - redhat: Drop bpftool from kernel spec (Viktor Malik) [RHEL-73480] - tools/power turbostat: Add initial support for GraniteRapids-D (Eddie Kovsky) [RHEL-29354] - rtc: check if __rtc_read_time was successful in rtc_timer_do_work() (Steve Best) [RHEL-73490] {CVE-2024-56739} - powerpc/mm/fault: Fix kfence page fault reporting (Mamatha Inamdar) [RHEL-73630] - bonding: Fix feature propagation of NETIF_F_GSO_ENCAP_ALL (CKI Backport Bot) [RHEL-73198] - bonding: Fix initial {vlan,mpls}_feature set in bond_compute_features (CKI Backport Bot) [RHEL-73198] - net, team, bonding: Add netdev_base_features helper (CKI Backport Bot) [RHEL-73198] - bonding: add ESP offload features when slaves support (CKI Backport Bot) [RHEL-73198] - Documentation: bonding: add XDP support explanation (CKI Backport Bot) [RHEL-73198] - bonding: return detailed error when loading native XDP fails (CKI Backport Bot) [RHEL-73198] - netfilter: IDLETIMER: Fix for possible ABBA deadlock (Phil Sutter) [RHEL-70301] - tcp: Fix use-after-free of nreq in reqsk_timer_handler(). (Guillaume Nault) [RHEL-73194] - netfilter: nf_tables: do not defer rule destruction via call_rcu (Florian Westphal) [RHEL-68691] - sched/numa: fix memory leak due to the overwritten vma->numab_state (Phil Auld) [RHEL-67478] - netfilter: ipset: Fix for recursive locking warning (Phil Sutter) [RHEL-71827] - NFSD: Mark exports of NFS as unsupported (Benjamin Coddington) [RHEL-50656] - netdev-genl: Hold rcu_read_lock in napi_get (Paolo Abeni) [RHEL-73205] - net: avoid potential UAF in default_operstate() (Paolo Abeni) [RHEL-73205] {CVE-2024-56635} - net: defer final 'struct net' free in netns dismantle (Paolo Abeni) [RHEL-73205] {CVE-2024-56658} - net: restrict SO_REUSEPORT to inet sockets (Paolo Abeni) [RHEL-73205] - Revert "rtnetlink: add guard for RTNL" (Paolo Abeni) [RHEL-73205] - netlink: fix false positive warning in extack during dumps (Paolo Abeni) [RHEL-73205] {CVE-2024-53212} - tcp: check space before adding MPTCP SYN options (Paolo Abeni) [RHEL-73143] - net: fix memory leak in tcp_conn_request() (Paolo Abeni) [RHEL-73143] - Revert "udp: avoid calling sock_def_readable() if possible" (Paolo Abeni) [RHEL-73132] - netfilter: ipset: Hold module reference while requesting a module (Phil Sutter) [RHEL-69538] - redhat: make kernel-debug-uki-virt installable without kernel-debug-core (Vitaly Kuznetsov) [RHEL-72983] - KVM: arm64: Fix S1/S2 combination when FWB==1 and S2 has Device memory type (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Do not allow ID_AA64MMFR0_EL1.ASIDbits to be overridden (Shaoqin Huang) [RHEL-68039] - KVM: arm64: vgic-its: Add error handling in vgic_its_cache_translation (Shaoqin Huang) [RHEL-68039] - KVM: arm64: selftests: Add tests for MMIO external abort injection (Shaoqin Huang) [RHEL-68039] - KVM: arm64: selftests: Convert to kernel's ESR terminology (Shaoqin Huang) [RHEL-68039] - tools: arm64: Grab a copy of esr.h from kernel (Shaoqin Huang) [RHEL-68039] - KVM: selftests: Don't bother deleting memslots in KVM when freeing VMs (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Ignore PMCNTENSET_EL0 while checking for overflow status (Shaoqin Huang) [RHEL-68039] - KVM: arm64: vgic-its: Add stronger type-checking to the ITS entry sizes (Shaoqin Huang) [RHEL-68039] - KVM: arm64: vgic: Kill VGIC_MAX_PRIVATE definition (Shaoqin Huang) [RHEL-68039] - KVM: arm64: vgic: Make vgic_get_irq() more robust (Shaoqin Huang) [RHEL-68039] - KVM: arm64: vgic-v3: Sanitise guest writes to GICR_INVLPIR (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Pass on SVE mapping failures (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Don't map 'kvm_vgic_global_state' at EL2 with pKVM (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Just advertise SEIS as 0 when emulating ICC_CTLR_EL1 (Shaoqin Huang) [RHEL-68039] - KVM: arm64: vgic-its: Clear ITE when DISCARD frees an ITE (Shaoqin Huang) [RHEL-68039] - KVM: arm64: vgic-its: Clear DTE when MAPD unmaps a device (Shaoqin Huang) [RHEL-68039] - KVM: arm64: vgic-its: Add a data length check in vgic_its_save_* (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Don't retire aborted MMIO instruction (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Get rid of userspace_irqchip_in_use (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Initialize trap register values in hyp in pKVM (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Initialize the hypervisor's VM state at EL2 (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Refactor kvm_vcpu_enable_ptrauth() for hyp use (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Move pkvm_vcpu_init_traps() to init_pkvm_hyp_vcpu() (Shaoqin Huang) [RHEL-68039] - KVM: arm64: Correctly access TCR2_EL1, PIR_EL1, PIRE0_EL1 with VHE (Shaoqin Huang) [RHEL-68039] - selftests: netfilter: Stabilize rpath.sh (Phil Sutter) [RHEL-71139] - redhat/configs: automotive: disable CONFIG_AIO (Davide Caratti) [RHEL-71905] - redhat/configs: enable CONFIG_USB_XHCI_PCI_RENESAS on RHEL (Desnes Nunes) [RHEL-73371] - RHEL: Set correct config option for CRYPTO_HMAC_S390 (Mete Durlu) [RHEL-24137] - redhat/configs: automotive: disable CONFIG_NET_DROP_MONITOR (Davide Caratti) [RHEL-70868] - qed: put cond_resched() in qed_dmae_operation_wait() (CKI Backport Bot) [RHEL-71560] - qed: allow the callee of qed_mcp_nvm_read() to sleep (CKI Backport Bot) [RHEL-71560] - qed: put cond_resched() in qed_grc_dump_ctx_data() (CKI Backport Bot) [RHEL-71560] - qed: make 'ethtool -d' 10 times faster (CKI Backport Bot) [RHEL-71560] - x86/sev: Convert shared memory back to private on kexec (Vitaly Kuznetsov) [RHEL-68482] - x86/mm: Refactor __set_clr_pte_enc() (Vitaly Kuznetsov) [RHEL-68482] - x86/boot: Skip video memory access in the decompressor for SEV-ES/SNP (Vitaly Kuznetsov) [RHEL-68482] - platform/x86/intel/pmc: Disable C1 auto-demotion during suspend (Steve Best) [RHEL-66570] - platform/x86/intel/pmc: Refactor platform resume functions to use cnl_resume() (Steve Best) [RHEL-66570] - redhat/configs: Enable CONFIG_NETKIT for RHEL (Toke Høiland-Jørgensen) [RHEL-51429] - bnxt_en: Unregister PTP during PCI shutdown and suspend (Michal Schmidt) [RHEL-54644 RHEL-69499] - bnxt_en: Refactor bnxt_ptp_init() (Michal Schmidt) [RHEL-54644 RHEL-69499] - bnxt_en: Fix receive ring space parameters when XDP is active (Michal Schmidt) [RHEL-54644] - bnxt_en: Fix queue start to update vnic RSS table (Michal Schmidt) [RHEL-54644] - bnxt_en: Set backplane link modes correctly for ethtool (Michal Schmidt) [RHEL-54644] - bnxt_en: Reserve rings after PCIe AER recovery if NIC interface is down (Michal Schmidt) [RHEL-54644] - bnxt_en: use irq_update_affinity_hint() (Michal Schmidt) [RHEL-54644] - bnxt_en: ethtool: Support unset l4proto on ip4/ip6 ntuple rules (Michal Schmidt) [RHEL-54644] - bnxt_en: ethtool: Remove ip4/ip6 ntuple support for IPPROTO_RAW (Michal Schmidt) [RHEL-54644] - s390/cio: Externalize full CMG characteristics (Mete Durlu) [RHEL-24140] - s390/pci: Expose FIDPARM attribute in sysfs (Mete Durlu) [RHEL-71374] - perf machine: Initialize machine->env to address a segfault (Michael Petlan) [RHEL-70278] - redhat/kernel.spec.template: Require kernel-tools-libs in rtla (Tomas Glozar) [RHEL-70863] - rtla/timerlat: Fix histogram ALL for zero samples (Tomas Glozar) [RHEL-72691] - s390/pci: Fix leak of struct zpci_dev when zpci_add_device() fails (Mete Durlu) [RHEL-24143] - s390/pci: Ignore RID for isolated VFs (Mete Durlu) [RHEL-24143] - s390/pci: Use topology ID for multi-function devices (Mete Durlu) [RHEL-24143] - s390/pci: Sort PCI functions prior to creating virtual busses (Mete Durlu) [RHEL-24143] - virtio_ring: add a func argument 'recycle_done' to virtqueue_reset() (Cindy Lu) [RHEL-56981] - virtio_net: ensure netdev_tx_reset_queue is called on tx ring resize (Cindy Lu) [RHEL-56981] - virtio_ring: add a func argument 'recycle_done' to virtqueue_resize() (Cindy Lu) [RHEL-56981] - virtio_net: correct netdev_tx_reset_queue() invocation point (Cindy Lu) [RHEL-56981] - intel_idle: add Granite Rapids Xeon D support (David Arcari) [RHEL-68122] - sched/dlserver: Fix dlserver time accounting (Phil Auld) [RHEL-68342] - sched/dlserver: Fix dlserver double enqueue (Phil Auld) [RHEL-68342] - sched/fair: Fix NEXT_BUDDY (Phil Auld) [RHEL-68342] - sched/fair: Fix sched_can_stop_tick() for fair tasks (Phil Auld) [RHEL-68342] - sched/eevdf: More PELT vs DELAYED_DEQUEUE (Phil Auld) [RHEL-68342] - vfio/mlx5: Fix unwind flows in mlx5vf_pci_save/resume_device_data() (Alex Williamson) [RHEL-69747] - vfio/mlx5: Fix an unwind issue in mlx5vf_add_migration_pages() (Alex Williamson) [RHEL-69747] - i40e: Fix handling changed priv flags (Kamal Heib) [RHEL-69737] - RHEL-only: mark ublk as tech preview (Ming Lei) [RHEL-50740] - Revert "block, bfq: merge bfq_release_process_ref() into bfq_put_cooperator()" (Ming Lei) [RHEL-67720] - block: sed-opal: add ioctl IOC_OPAL_SET_SID_PW (Ming Lei) [RHEL-70861] - loop: fix type of block size (Ming Lei) [RHEL-65631] - x86/cpu/topology: Remove limit of CPUs due to disabled IO/APIC (Phil Auld) [RHEL-70901] - sched/deadline: Fix warning in migrate_enable for boosted tasks (Phil Auld) [RHEL-70901] - sched/core: Prevent wakeup of ksoftirqd during idle load balance (Phil Auld) [RHEL-70901] - sched/fair: Check idle_cpu() before need_resched() to detect ilb CPU turning busy (Phil Auld) [RHEL-70901] - sched/core: Remove the unnecessary need_resched() check in nohz_csd_func() (Phil Auld) [RHEL-70901] - sched: fix warning in sched_setaffinity (Phil Auld) [RHEL-70901] - softirq: Allow raising SCHED_SOFTIRQ from SMP-call-function on RT kernel (Phil Auld) [RHEL-70901] - sched/deadline: Fix replenish_dl_new_period dl_server condition (Phil Auld) [RHEL-70901] - vfio/mlx5: Align the page tracking max message size with the device capability (CKI Backport Bot) [RHEL-69932] - tools/rtla: Improve exception handling in timerlat_load.py (Luis Claudio R. Goncalves) [RHEL-69739] - tools/rtla: Enhance argument parsing in timerlat_load.py (Luis Claudio R. Goncalves) [RHEL-69739] - tools/rtla: Improve code readability in timerlat_load.py (Luis Claudio R. Goncalves) [RHEL-69739] - rtla/timerlat: Do not set params->user_workload with -U (Luis Claudio R. Goncalves) [RHEL-69739] - rtla/timerlat: Make timerlat_hist_cpu->*_count unsigned long long (Luis Claudio R. Goncalves) [RHEL-69739] - rtla/timerlat: Make timerlat_top_cpu->*_count unsigned long long (Luis Claudio R. Goncalves) [RHEL-69739] - tools/rtla: fix collision with glibc sched_attr/sched_set_attr (Luis Claudio R. Goncalves) [RHEL-69739] - tools/rtla: drop __NR_sched_getattr (Luis Claudio R. Goncalves) [RHEL-69739] - rtla: Fix consistency in getopt_long for timerlat_hist (Luis Claudio R. Goncalves) [RHEL-69739] - rtla: use the definition for stdout fd when calling isatty() (Luis Claudio R. Goncalves) [RHEL-69739] - x86/cacheinfo: Delete global num_cache_leaves (David Arcari) [RHEL-22703] - cacheinfo: Allocate memory during CPU hotplug if not done from the primary CPU (David Arcari) [RHEL-22703] - configs: synchronize CONFIG_HP_ILO between flavors & enable on x86/arm (Charles Mirabile) [RHEL-65590] - crypto: rng - Fix extrng EFAULT handling (Herbert Xu) [RHEL-70652] - s390/virtio_ccw: Fix dma_parm pointer not set up (Thomas Huth) [RHEL-69815] - fsnotify: fix sending inotify event with unexpected filename (Ian Kent) [RHEL-68847] - Revert "nvme: Return BLK_STS_TARGET if the DNR bit is set" (Benjamin Marzinski) [RHEL-68140] - Revert "nvme: allow local retry and proper failover for REQ_FAILFAST_TRANSPORT" (Benjamin Marzinski) [RHEL-68140] - Revert "nvme: decouple basic ANA log page re-read support from native multipathing" (Benjamin Marzinski) [RHEL-68140] - Revert "nvme: nvme_mpath_init remove multipath check" (Benjamin Marzinski) [RHEL-68140] - redhat: gating.yaml: drop unstable test (Jan Stancek) - CI: provide pipelines for automotive variant (Julio Faracco) - fadump: reserve param area if below boot_mem_top (Mamatha Inamdar) [RHEL-67986] - powerpc/fadump: allocate memory for additional parameters early (Mamatha Inamdar) [RHEL-67986] - cpufreq: intel_pstate: Update Balance-performance EPP for Granite Rapids (Steve Best) [RHEL-70009] - scsi: storvsc: Do not flag MAINTENANCE_IN return of SRB_STATUS_DATA_OVERRUN as an error (Cathy Avery) [RHEL-60525] - RHEL: disable the btt driver (Jeff Moyer) [RHEL-68504] - vfio/pci: Properly hide first-in-list PCIe extended capability (Alex Williamson) [RHEL-69745] - xfs: fix sparse inode limits on runt AG (Pavel Reichl) [RHEL-68542] - iommu/tegra241-cmdqv: Fix alignment failure at max_n_shift (Jerry Snitselaar) [RHEL-67995] - crypto: qat - Fix missing destroy_workqueue in adf_init_aer() (Vladis Dronov) [RHEL-23197] - crypto: qat - Fix typo "accelaration" (Vladis Dronov) [RHEL-23197] - crypto: qat - Constify struct pm_status_row (Vladis Dronov) [RHEL-23197] - crypto: qat - remove faulty arbiter config reset (Vladis Dronov) [RHEL-23197] - crypto: qat - remove unused adf_devmgr_get_first (Vladis Dronov) [RHEL-23197] - crypto: qat/qat_4xxx - fix off by one in uof_get_name() (Vladis Dronov) [RHEL-23197] - crypto: qat/qat_420xx - fix off by one in uof_get_name() (Vladis Dronov) [RHEL-23197] - crypto: qat - remove check after debugfs_create_dir() (Vladis Dronov) [RHEL-23197] - redhat/kernel.spec.template: Link rtla against in-tree libcpupower (Tomas Glozar) [RHEL-40744] - rtla: Documentation: Mention --deepest-idle-state (Tomas Glozar) [RHEL-40744] - rtla/timerlat: Add --deepest-idle-state for hist (Tomas Glozar) [RHEL-40744] - rtla/timerlat: Add --deepest-idle-state for top (Tomas Glozar) [RHEL-40744] - rtla/utils: Add idle state disabling via libcpupower (Tomas Glozar) [RHEL-40744] - rtla: Add optional dependency on libcpupower (Tomas Glozar) [RHEL-40744] - tools/build: Add libcpupower dependency detection (Tomas Glozar) [RHEL-40744] - mm/memcg: Free percpu stats memory of dying memcg's (Waiman Long) [RHEL-67445] - redhat: Re-enable CONFIG_INFINIBAND_VMWARE_PVRDMA for x86 (Vitaly Kuznetsov) [RHEL-41133] - HID: hyperv: streamline driver probe to avoid devres issues (Vitaly Kuznetsov) [RHEL-67329] - powerpc: security: Lock down the kernel if booted in secure boot mode (Mamatha Inamdar) [RHEL-57024] - selftests/bpf: Remove ksyms_weak_lskel test (Artem Savkov) [RHEL-48593] - redhat/spec: Add libxml2-devel dependency for selftests build (Viktor Malik) [RHEL-48593] - redhat/spec: Bypass check-rpaths for kselftests/bpf/urandom_read (Viktor Malik) [RHEL-48593] - redhat/spec: Do not use source fortification for selftests (Viktor Malik) [RHEL-48593] - redhat/spec: Fix BPF selftests build with PIE (Viktor Malik) [RHEL-48593] - redhat/spec: Add EXTRA_CXXFLAGS to bpf samples and selftests make (Artem Savkov) [RHEL-48593] - selftests/bpf: Allow building with extra flags (Viktor Malik) [RHEL-48593] - selftests/bpf: Disable warnings on unused flags for Clang builds (Viktor Malik) [RHEL-48593] - bpftool: Prevent setting duplicate _GNU_SOURCE in Makefile (Viktor Malik) [RHEL-48593] - RHEL-only: mark io_uring tech preview and disable by default (Jeff Moyer) [RHEL-65347] - redhat/configs: cleanup CONFIG_DEV_DAX (David Hildenbrand) - redhat/configs: cleanup CONFIG_TRANSPARENT_HUGEPAGE_MADVISE for Fedora (David Hildenbrand) - redhat/configs: cleanup CONFIG_TRANSPARENT_HUGEPAGE (David Hildenbrand) - redhat/configs: enable CONFIG_TRANSPARENT_HUGEPAGE on s390x in Fedora (David Hildenbrand) - redhat/configs: automotive: Enable j784s4evm am3359 tscadc configs (Joel Slebodnick) - redhat/configs: delete renamed CONFIG_MLX5_EN_MACSEC (Michal Schmidt) - rhel: disable DELL_RBU and cleanup related deps (Peter Robinson) - crypto: rng - Ensure stdrng is tested before user-space starts (Herbert Xu) - gitlab-ci: Add CKI_RETRIGGER_PIPELINE (Tales da Aparecida) - redhat: configs: disable the qla4xxx iSCSI driver (Chris Leech) [RHEL-1242] - Remove duplicated CONFIGs between automotive and RHEL (Julio Faracco) - redhat: update self-test data for addition of automotive (Scott Weaver) - gitlab-ci: enable automotive pipeline (Scott Weaver) - automotive: move pending configs to automotive/generic (Scott Weaver) - redhat/configs: change Renesas eMMC driver and dependencies to built-in (Radu Rendec) - redhat/configs: automotive: Remove automotive specific override CONFIG_OMAP2PLUS_MBOX By removing this automotive-specific override, the configuration will default to the common configuration (CONFIG_OMAP2PLUS_MBOX=m), which enables the driver as a module. (Martin McConnell) - Config enablement of the Renesas R-Car S4 SoC (Radu Rendec) [RHEL-44306] - redhat/configs: automotive: Enable USB_CDNS3_TI for TI platforms (Andrew Halaney) - redhat/configs: automotive: Enable j784s4evm SPI configs (Joel Slebodnick) - redhat/configs: automotive: Enable TPS6594 MFD (Joel Slebodnick) - redhat/configs: automotive: stop overriding CRYPTO_ECDH (Andrew Halaney) - redhat/configs: automotive: Enable PCI_J721E (Andrew Halaney) - redhat/configs: change some TI platform drivers to built-in (Enric Balletbo i Serra) - redhat/configs: automotive: Enable TI j784s4evm display dependencies (Andrew Halaney) - redhat/configs: automotive: match ark configs to cs9 main-automotive (Shawn Doherty) [RHEL-35995] - redhat/configs: automotive: Enable TI's watchdog driver (Andrew Halaney) - redhat/configs: automotive: Enable TI's UFS controller (Andrew Halaney) - redhat/configs: automotive: Enable networking on the J784S4EVM (Andrew Halaney) [RHEL-29245] - Disable unsupported kernel variants for automotive (Don Zickus) - Disable CONFIG_RTW88_22BU (Don Zickus) - redhat: Delete CONFIG_EFI_ZBOOT to use the common CONFIG (Julio Faracco) - redhat: Update automotive SPEC file with new standards (Julio Faracco) - redhat: Disable WERROR for automotive temporarily (Julio Faracco) - redhat: Update spec file with automotive macros (Julio Faracco) - redhat: Add automotive CONFIGs (Julio Faracco) - Fedora configs for 6.12 (Justin M. Forbes) - redhat/configs: Add CONFIG_CRYPTO_HMAC_S390 config (Mete Durlu) [RHEL-50799] - redhat: configs: common: generic: Clean up EM28XX that are masked behind CONFIG_VIDEO_EM28XX (Kate Hsuan) - redhat/configs: Update powerpc NR_CPUS config (Mamatha Inamdar) - redhat: use stricter rule for kunit.ko (Jan Stancek) - filtermod: fix clk kunit test and kunit location (Nico Pache) - redhat/configs: enable xr_serial on rhel (Desnes Nunes) - redhat/configs: enable ATH12K for rhel (Jose Ignacio Tornos Martinez) - redhat: configs: rhel: generic: x86: Enable IPU6 based MIPI cameras (Kate Hsuan) - os-build: enable CONFIG_SCHED_CLASS_EXT for RHEL (Phil Auld) - Fedora 6.12 configs part 1 (Justin M. Forbes) - redhat: set new gcov configs (Jan Stancek) - Don't ignore gitkeep files for ark-infra (Don Zickus) - redhat/kernel.spec: don't clear entire libdir when building tools (Jan Stancek) - redhat/configs: enable usbip for rhel (Jose Ignacio Tornos Martinez) - redhat: create 'crashkernel=' addons for UKI (Vitaly Kuznetsov) - redhat: avoid superfluous quotes in UKI cmdline addones (Vitaly Kuznetsov) - fedora: arm: updates for 6.12 (Peter Robinson) - Make setting of cma_pernuma tech preview (Chris von Recklinghausen) [RHEL-59621] - gitlab-ci: provide consistent kcidb_tree_name (Michael Hofmann) - redhat/configs: add bootconfig to kernel-tools package (Brian Masney) - Enable CONFIG_SECURITY_LANDLOCK for RHEL (Zbigniew Jędrzejewski-Szmek) [RHEL-8810] - redhat: configs: Drop CONFIG_MEMSTICK_REALTEK_PCI config option (Desnes Nunes) - Update the RHEL_DIFFERENCES help string (Don Zickus) - Put build framework for RT kernel in place for Fedora (Clark Williams) - generic: enable RPMB for all configs that enable MMC (Peter Robinson) - fedora: riscv: Don't override MMC platform defaults (Peter Robinson) - common: only enable on MMC_DW_BLUEFIELD (Peter Robinson) - fedora: aarch64: Stop overriding CONFIG_MMC defaults (Peter Robinson) - commong: The KS7010 driver has been removed (Peter Robinson) - v6.12-rc4-rt6 (Sebastian Andrzej Siewior) - sched: Update the lazy-preempt bits. (Sebastian Andrzej Siewior) - timer: Update the ktimersd series. (Sebastian Andrzej Siewior) - v6.12-rc4-rt5 (Sebastian Andrzej Siewior) - Trim Changelog for 6.12 (Justin M. Forbes) - Enable CONFIG_SECURITY_IPE for Fedora (Zbigniew Jędrzejewski-Szmek) - redhat: allow to override VERSION_ON_UPSTREAM from command line (Jan Stancek) - redhat: configs: Enable CONFIG_SECURITY_TOMOYO in Fedora kernels (Tetsuo Handa) - redhat: drop ARK changelog (Jan Stancek) [RHEL-56700] - redhat: regenerate test-data (Jan Stancek) [RHEL-56700] - redhat: rpminspect.yaml: more tests to ignore in selftests (Jan Stancek) [RHEL-56700] - redhat/Makefile.variables: don't set DISTRO (Jan Stancek) [RHEL-56700] - redhat/Makefile.variables: set PATCHLIST_URL to none (Jan Stancek) [RHEL-56700] - redhat: gitlab-ci: add initial version (Jan Stancek) [RHEL-56700] - redhat: update rpminspect with c9s one (Jan Stancek) [RHEL-56700] - redhat: remove fedora configs and files (Jan Stancek) [RHEL-56700] - redhat: init RHEL10.0 beta variables and dist tag (Jan Stancek) [RHEL-56700] - redhat: set release version (Jan Stancek) [RHEL-56700] - redhat: fix CONFIG_PREEMPT config (Jan Stancek) [RHEL-56700] - Revert "Merge branch 'enablement/gpio-expander' into 'os-build'" (Justin M. Forbes) - redhat: configs: decrease CONFIG_PCP_BATCH_SCALE_MAX (Rafael Aquini) - redhat/configs: Enable CONFIG_RCU_TRACE in Fedora/REHL kernels (Waiman Long) - fedora: distable RTL8192E wifi driver (Peter Robinson) - common: arm64: Fixup and cleanup some SCMI options (Peter Robinson) - common: Cleanup ARM_SCMI_TRANSPORT options (Peter Robinson) - v6.12-rc2-rt4 (Sebastian Andrzej Siewior) - sched: Replace PREEMPT_AUTO with LAZY_PREEMPT. (Sebastian Andrzej Siewior) - softirq: Clean white space. (Sebastian Andrzej Siewior) - mm: percpu: Increase PERCPU_DYNAMIC_SIZE_SHIFT on certain builds. (Sebastian Andrzej Siewior) - ARM: vfp: Rename the locking functions. (Sebastian Andrzej Siewior) - v6.12-rc2-rt3 (Sebastian Andrzej Siewior) - configs: fedora/x86: Set CONFIG_CRYPTO_DEV_CCP_DD=y (Hans de Goede) - Turn on ZRAM_WRITEBACK for Fedora (Justin M. Forbes) - configs: rhel: Fix designware I2C controllers related config settings (Hans de Goede) - Enable CONFIG_DMA_NUMA_CMA for x86_64 and aarch64 (Chris von Recklinghausen) - new config in drivers/phy (Izabela Bakollari) - configs: fedora: Unset CONFIG_I2C_DESIGNWARE_CORE on s390x (Hans de Goede) - configs: fedora: Drop duplicate CONFIG_I2C_DESIGNWARE_CORE for x86_64 and aarch64 (Hans de Goede) - Enable DESIGNWARE_CORE for ppc as well (Justin M. Forbes) - Fix up I2C_DESIGNWARE_CORE config for Fedora (Justin M. Forbes) - v6.12-rc1-rt2 (Sebastian Andrzej Siewior) - Revert "time: Allow to preempt after a callback." + dependencies. (Sebastian Andrzej Siewior) - Revert "sched/rt: Don't try push tasks if there are none." (Sebastian Andrzej Siewior) - Add localversion for -RT release (Thomas Gleixner) - sysfs: Add /sys/kernel/realtime entry (Clark Williams) - riscv: add PREEMPT_AUTO support (Jisheng Zhang) - POWERPC: Allow to enable RT (Sebastian Andrzej Siewior) - powerpc/stackprotector: work around stack-guard init from atomic (Sebastian Andrzej Siewior) - powerpc/kvm: Disable in-kernel MPIC emulation for PREEMPT_RT (Bogdan Purcareata) - powerpc/pseries: Select the generic memory allocator. (Sebastian Andrzej Siewior) - powerpc/pseries/iommu: Use a locallock instead local_irq_save() (Sebastian Andrzej Siewior) - powerpc: traps: Use PREEMPT_RT (Sebastian Andrzej Siewior) - ARM: Allow to enable RT (Sebastian Andrzej Siewior) - ARM: vfp: Move sending signals outside of vfp_lock()ed section. (Sebastian Andrzej Siewior) - ARM: vfp: Use vfp_lock() in vfp_support_entry(). (Sebastian Andrzej Siewior) - ARM: vfp: Use vfp_lock() in vfp_sync_hwstate(). (Sebastian Andrzej Siewior) - ARM: vfp: Provide vfp_lock() for VFP locking. (Sebastian Andrzej Siewior) - arm: Disable FAST_GUP on PREEMPT_RT if HIGHPTE is also enabled. (Sebastian Andrzej Siewior) - ARM: enable irq in translation/section permission fault handlers (Yadi.hu) - arm: Disable jump-label on PREEMPT_RT. (Thomas Gleixner) - sched: define TIF_ALLOW_RESCHED (Thomas Gleixner) - Revert "drm/i915: Depend on !PREEMPT_RT." (Sebastian Andrzej Siewior) - drm/i915/guc: Consider also RCU depth in busy loop. (Sebastian Andrzej Siewior) - drm/i915: Drop the irqs_disabled() check (Sebastian Andrzej Siewior) - drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() (Sebastian Andrzej Siewior) - drm/i915: Disable tracing points on PREEMPT_RT (Sebastian Andrzej Siewior) - drm/i915: Don't check for atomic context on PREEMPT_RT (Sebastian Andrzej Siewior) - drm/i915: Don't disable interrupts on PREEMPT_RT during atomic updates (Mike Galbraith) - drm/i915: Use preempt_disable/enable_rt() where recommended (Mike Galbraith) - time: Allow to preempt after a callback. (Sebastian Andrzej Siewior) - softirq: Add function to preempt serving softirqs. (Sebastian Andrzej Siewior) - sched/core: Provide a method to check if a task is PI-boosted. (Sebastian Andrzej Siewior) - softirq: Wake ktimers thread also in softirq. (Junxiao Chang) - tick: Fix timer storm since introduction of timersd (Frederic Weisbecker) - rcutorture: Also force sched priority to timersd on boosting test. (Frederic Weisbecker) - softirq: Use a dedicated thread for timer wakeups. (Sebastian Andrzej Siewior) - locking/rt: Annotate unlock followed by lock for sparse. (Sebastian Andrzej Siewior) - locking/rt: Add sparse annotation for RCU. (Sebastian Andrzej Siewior) - locking/rt: Remove one __cond_lock() in RT's spin_trylock_irqsave() (Sebastian Andrzej Siewior) - locking/rt: Add sparse annotation PREEMPT_RT's sleeping locks. (Sebastian Andrzej Siewior) - sched/rt: Don't try push tasks if there are none. (Sebastian Andrzej Siewior) - serial: 8250: Revert "drop lockdep annotation from serial8250_clear_IER()" (John Ogness) - serial: 8250: Switch to nbcon console (John Ogness) - configs for RT deps (Clark Williams) - CONFIG_OF_OVERLAY: enable for aarch64 and powerpc (Scott Weaver) - redhat: enable changes to build rt variants (Clark Williams) - redhat: clean up pending-rhel (Patrick Talbert) - Enable CONFIG_SCHED_CLASS_EXT for Fedora (Jose Fernandez) - redhat/configs: new config in arch/s390 (Izabela Bakollari) - redhat: ignore rpminspect runpath report on selftests/bpf/cpuv4/urandom_read (Viktor Malik) - [fedora] configs: add end of file newline to CONFIG_DMADEVICES_VDEBUG (Patrick Talbert) - unset CONFIG_DMADEVICES_VDEBUG (cmurf) - Revert "Merge branch 'drop_engine_api' into 'os-build'" (Justin M. Forbes) - stop installing tools/build/Build, gone with ea974028a049f (Thorsten Leemhuis) - redhat/configs: Update LOCKDEP configs (Waiman Long) - uki-virt: Add i18n module (Vitaly Kuznetsov) - uki-virt: Drop DBUS support from initramfs (Vitaly Kuznetsov) - uki-virt: Drop redundant modules from dracut-virt.conf (Vitaly Kuznetsov) - uki-virt: Drop usrmount dracut module (Vitaly Kuznetsov) - redhat: new AMCC_QT2025_PHY config in drivers/net/phy (Patrick Talbert) - redhat: change schedule jobs image from cki-tools to builder-rawhide (Patrick Talbert) - Add CONFIG_SND_SOC_RT1320_SDW to pending-rhel for mismatch (Justin M. Forbes) - Turn on CONFIG_SND_SOC_RT1320_SDW in pending rhel (Justin M. Forbes) - redhat: fix bad merge (Patrick Talbert) - configs: disable CONFIG_AMCC_QT2025_PHY in pending (Patrick Talbert) - fedora: turn on CONFIG_FDMA for powerpc (Patrick Talbert) - Turn on CONFIG_FDMA in pending for Fedora arm and riscv to avoid a mismatch (Justin M. Forbes) - Reset RHEL_RELEASE for 6.12 (Justin M. Forbes) - Consolidate configs into common for 6.11 kernels (Justin M. Forbes) - uki-virt: add systemd-cryptsetup module (Vitaly Kuznetsov) - redhat/docs: fix command to install missing build dependencies (Davide Cavalca) - spec: Respect rpmbuild --without debuginfo (Orgad Shaneh) - fedora/configs: enable GPIO expander drivers (Rupinderjit Singh) - redhat/configs: Switch to the Rust implementation of AX88796B_PHY driver for Fedora (Neal Gompa) - redhat: Turn on support for Rust code in Fedora (Neal Gompa) - Turn off RUST for risc-v (Justin M. Forbes) - gitlab-ci: allow failure of clang LTO pipelines (Michael Hofmann) - redhat/configs: Consolidate the CONFIG_KVM_BOOK3S_HV_P*_TIMING switches (Thomas Huth) - redhat/configs: Consolidate the CONFIG_KVM_SW_PROTECTED_VM switch (Thomas Huth) - redhat/configs: Consolidate the CONFIG_KVM_HYPERV switch (Thomas Huth) - redhat/configs: Consolidate the CONFIG_KVM_AMD_SEV switch (Thomas Huth) - Cleanup some riscv CONFIG locations (Justin M. Forbes) - Fix up pending riscv Fedora configs post merge (Justin M. Forbes) - fedora/configs: Enable SCMI configuration (Rupinderjit Singh) - Remove S390 special config for PHYLIB (Justin M. Forbes) - Disable ELN for riscv64 (Isaiah Stapleton) - redhat: add checks to ensure only building riscv64 on fedora (Isaiah Stapleton) - redhat: Add missing riscv fedora configs (Isaiah Stapleton) - Add riscv64 to the CI pipelines (Isaiah Stapleton) - redhat: Regenerate dist-self-test-data for riscv64 (Isaiah Stapleton) - redhat: Add riscv config changes for fedora (David Abdurachmanov) - redhat: Add support for riscv (David Abdurachmanov) - redhat: Do not include UKI addons twice (Vitaly Kuznetsov) - redhat: update gating.yml (Michael Hofmann) - Remove CONFIG_FSCACHE_DEBUG as it has been renamed (Justin M. Forbes) - Set Fedora configs for 6.11 (Justin M. Forbes) - redhat/configs: Microchip lan743x driver (Izabela Bakollari) - redhat: include resolve_btfids in kernel-devel (Jan Stancek) - redhat: workaround CKI cross compilation for scripts (Jan Stancek) - spec: fix "unexpected argument to non-parametric macro" warnings (Jan Stancek) - Add weakdep support to the kernel spec (Justin M. Forbes) - redhat: configs: disable PF_KEY in RHEL (Sabrina Dubroca) - crypto: akcipher - Disable signing and decryption (Vladis Dronov) [RHEL-54183] {CVE-2023-6240} - crypto: dh - implement FIPS PCT (Vladis Dronov) [RHEL-54183] - crypto: ecdh - disallow plain "ecdh" usage in FIPS mode (Vladis Dronov) [RHEL-54183] - crypto: seqiv - flag instantiations as FIPS compliant (Vladis Dronov) [RHEL-54183] - [kernel] bpf: set default value for bpf_jit_harden (Artem Savkov) [RHEL-51896] - fedora: disable CONFIG_DRM_WERROR (Patrick Talbert) - redhat/configs: Disable dlm in rhel configs (Andrew Price) - rhel: aarch64: enable required PSCI configs (Peter Robinson) - fedora: Enable AF8133J Magnetometer driver (Peter Robinson) - redhat: spec: add cachestat kselftest (Eric Chanudet) - redhat: hmac sign the UKI for FIPS (Vitaly Kuznetsov) - not upstream: Disable vdso getrandom when FIPS is enabled (Herbert Xu) - kernel: config: enable erofs lzma compression (Ian Kent) - fedora: disable RTL8192CU in Fedora (Peter Robinson) - redhat: Fix the ownership of /lib/modules/ directory (Vitaly Kuznetsov) - new configs in drivers/phy (Izabela Bakollari) - Add support to rh_waived cmdline boot parameter (Ricardo Robaina) [RHEL-26170] - redhat/configs: Disable gfs2 in rhel configs (Andrew Price) - redhat/uki_addons/virt: add common FIPS addon (Emanuele Giuseppe Esposito) - redhat/kernel.spec: add uki_addons to create UKI kernel cmdline addons (Emanuele Giuseppe Esposito) - rh_flags: fix failed when register_sysctl_sz rh_flags_table to kernel (Ricardo Robaina) [RHEL-52629] - redhat/dracut-virt.conf: add systemd-veritysetup module (Emanuele Giuseppe Esposito) - redhat/configs: enable CONFIG_LOCK_STAT on the debug kernels for aarch64 (Brian Masney) - redhat/configs: enable CONFIG_KEYBOARD_GPIO_POLLED for RHEL on aarch64 (Luiz Capitulino) - redhat/configs: fedora: Enable new Qualcomm configs (Andrew Halaney) - redhat/configs/fedora: set CONFIG_CRYPTO_CURVE25519_PPC64 (Dan Horák) - fedora: Updates for 6.11 merge (Peter Robinson) - fedora: enable new mipi sensors and devices (Peter Robinson) - arm64: enable CRYPTO_DEV_TEGRA on RHEL (Peter Robinson) - redhat/kernel.spec: fix file listed twice warning for "kernel" subdir (Jan Stancek) - redhat/configs: Double MAX_LOCKDEP_ENTRIES for RT debug kernels (Waiman Long) [RHEL-43425] - Support the first day after a rebase (Don Zickus) - Support 2 digit versions properly (Don Zickus) - Automation cleanups for rebasing rt-devel and automotive-devel (Don Zickus) - fedora: set CONFIG_REGULATOR_RZG2L_VBCTRL as a module for arm64 (Patrick Talbert) - gitlab-ci: restore bot pipeline behavior (Michael Hofmann) - redhat/kernel.spec: drop extra right curly bracket in kernel_kvm_package (Jan Stancek) - redhat/configs: enable gpio_keys driver for RHEL on aarch64 (Luiz Capitulino) - Move NET_VENDOR_MICROCHIP from common to rhel (Justin M. Forbes) - redhat/configs: enable some RTCs for RHEL on aarch64 (Luiz Capitulino) - redhat/configs: enable some regulators for RHEL (Luiz Capitulino) - redhat/config: disable CXL and CXLFLASH drivers (Dan Horák) - Fix up config mismatches in pending (Justin M. Forbes) - redhat/configs: Enable watchdog devices modelled by qemu (Richard W.M. Jones) [RHEL-40937] - rhel: cleanup unused media tuner configs (Peter Robinson) - all: cleanup MEDIA_CONTROLLER options (Peter Robinson) - redhat: kernel.spec: add s390x to livepatching kselftest builds (Joe Lawrence) - Flip CONFIG_DIMLIB back to inline (Justin M. Forbes) - Add vfio/nvgrace-gpu driver CONFIG to RHEL-9.5 ARM64 (Donald Dutile) - Enable CONFIG_RTC_DRV_TEGRA for RHEL (Luiz Capitulino) - redhat: rh_flags: declare proper static methods when !CONFIG_RHEL_DIFFERENCES (Rafael Aquini) - redhat: configs: enable CONFIG_TMPFS_QUOTA for both Fedora and RHEL (Rafael Aquini) - Fix up mismatches in the 6.11 merge window. (Justin M. Forbes) - Reset Changelog after rebase (Justin M. Forbes) - Reset RHEL_RELEASE for the 6.11 cycle (Justin M. Forbes) - redhat/configs: Enable CONFIG_VMWARE_VMCI/CONFIG_VMWARE_VMCI_VSOCKETS for RHEL (Vitaly Kuznetsov) - Consolidate configs to common for 6.10 (Justin M. Forbes) - redhat/configs: Enable CONFIG_PTP_1588_CLOCK_MOCK in kernel-modules-internal (Davide Caratti) - fedora: enabled XE GPU drivers on all arches (Peter Robinson) - Flip SND_SOC_CS35L56_SPI from off to module for RHEL (Justin M. Forbes) - Flip DIMLIB from built-in to module for RHEL (Justin M. Forbes) - not upstream: drop openssl ENGINE API usage (Jan Stancek) - Also remove the zfcpdump BASE_SMALL config (Justin M. Forbes) - redhat: Add cgroup kselftests to kernel-selftests-internal (Waiman Long) [RHEL-43556] - Revert "redhat/configs: Disable CONFIG_INFINIBAND_HFI1 and CONFIG_INFINIBAND_RDMAVT" (Kamal Heib) - Remove new for GITLAB_TOKEN (Don Zickus) - Set Fedora configs for 6.10 (Justin M. Forbes) - Fedora: minor driver updates (Peter Robinson) - redhat/configs: Remove obsolete x86 CPU mitigations config files (Waiman Long) - redhat/configs: increase CONFIG_DEFAULT_MMAP_MIN_ADDR from 32K to 64K for aarch64 (Brian Masney) - redhat/configs: Re-enable CONFIG_KEXEC for Fedora (Philipp Rudo) - disable LR_WPAN for RHEL10 (Chris von Recklinghausen) [RHEL-40251] - Turn on USB_SERIAL_F81232 for Fedora (Justin M. Forbes) - redhat/scripts/filtermods.py: show all parent/child kmods in report (Jan Stancek) - redhat/kernel.spec: capture filtermods.py return code (Jan Stancek) - redhat/kernel.spec: fix run of mod-denylist (Jan Stancek) - gitlab-ci: remove unused RHMAINTAINERS variable (Michael Hofmann) - gitlab-ci: use environments for jobs that need access to push/gitlab secrets (Michael Hofmann) - gitlab-ci: default to os-build for all maintenance jobs (Michael Hofmann) - gitlab-ci: use the common git repo setup cki-gating as well (Michael Hofmann) - gitlab-ci: help maintenance jobs to cope with missing private key (Michael Hofmann) - gitlab-ci: use a common git repo setup for all maintenance jobs (Michael Hofmann) - gitlab-ci: move repo setup script into script template holder (Michael Hofmann) - gitlab-ci: move maintenance job DIST variable into common template (Michael Hofmann) - gitlab-ci: move maintenance job rules into common template (Michael Hofmann) - gitlab-ci: move maintenance job retry field into common template (Michael Hofmann) - gitlab-ci: provide common non-secret schedule trigger variables (Michael Hofmann) - gitlab-ci: rename .scheduled_setup to .git_setup (Michael Hofmann) - gitlab-ci: move script snippets into separate template (Michael Hofmann) - gitlab-ci: rename maintenance jobs (Michael Hofmann) - gitlab-ci: introduce job template for maintenance jobs (Michael Hofmann) - Turn on KASAN_HW_TAGS for Fedora aarch64 debug kernels (Justin M. Forbes) - redhat: kernel.spec: add missing sound/soc/sof/sof-audio.h to kernel-devel package (Jaroslav Kysela) - redhat/kernel.spec: fix attributes of symvers file (Jan Stancek) - redhat: add filtermods rule for iommu tests (Jan Stancek) - fedora: arm: Enable basic support for S32G-VNP-RDB3 board (Enric Balletbo i Serra) - redhat: make bnx2xx drivers unmaintained in rhel-10 (John Meneghini) [RHEL-36646 RHEL-41231] - redhat/configs: Disable CONFIG_NFP (Kamal Heib) [RHEL-36647] - Enable CONFIG_PWRSEQ_{SIMPLIE,EMMC} on aarch64 (Charles Mirabile) - Fix SERIAL_SC16IS7XX configs for Fedora (Justin M. Forbes) - Enable ALSA (CONFIG_SND) on aarch64 (Charles Mirabile) [RHEL-40411] - redhat: Remove DIST_BRANCH variable (Eder Zulian) - gitlab-ci: merge ark-latest before tagging cki-gating (Michael Hofmann) - gitlab-ci: do not merge ark-latest for gating pipelines for Rawhide (Michael Hofmann) - disable CONFIG_KVM_INTEL_PROVE_VE (Paolo Bonzini) - redhat: remove the merge subtrees script (Derek Barbosa) - redhat: rhdocs: delete .get_maintainer.conf (Derek Barbosa) - redhat: rhdocs: Remove the rhdocs directory (Derek Barbosa) - redhat/configs: Disable CONFIG_QLA3XXX (Kamal Heib) [RHEL-36646] - redhat/configs: fedora: Enable some drivers for IPU6 support (Hans de Goede) - redhat: add missing UKI_secureboot_cert hunk (Patrick Talbert) - redhat/kernel.spec: keep extra modules in original directories (Jan Stancek) - redhat/configs: Move CONFIG_BLK_CGROUP_IOCOST=y to common/generic (Waiman Long) - Turn on CONFIG_MFD_QCOM_PM8008 for Fedora aarch64 (Justin M. Forbes) - redhat: Build IMA CA certificate into the Fedora kernel (Coiby Xu) - Move CONFIG_RAS_FMPM to the proper location (Aristeu Rozanski) - redhat/configs: Remove CONFIG_NET_ACT_IPT (Ivan Vecera) - gitlab-ci: add kernel-automotive pipelines (Michael Hofmann) - Enable CEC support for TC358743 (Peter Robinson) - fedora: arm: Enable ARCH_R9A09G057 (Peter Robinson) - fedora: updates for the 6.10 kernel (Peter Robinson) - fedora: arm: Enable the MAX96706 GMSL module (Peter Robinson) - redhat: Switch UKI to using its own SecureBoot cert (from system-sb-certs) (Jan Stancek) - redhat: Add RHEL specifc .sbat section to UKI (Jan Stancek) - kernel.spec: add iommu selftests to kernel-selftests-internal (Eder Zulian) [RHEL-32895] - redhat/configs: fedora: aarch64: Re-enable CUSE (Neal Gompa) - redhat: pass correct RPM_VMLINUX_H to bpftool install (Jan Stancek) - rh_flags: Rename rh_features to rh_flags (Ricardo Robaina) [RHEL-32987] - kernel: rh_features: fix reading empty feature list from /proc (Ricardo Robaina) [RHEL-32987] - rh_features: move rh_features entry to sys/kernel (Ricardo Robaina) [RHEL-32987] - rh_features: convert to atomic allocation (Ricardo Robaina) [RHEL-32987] - add rh_features to /proc (Ricardo Robaina) [RHEL-32987] - add support for rh_features (Ricardo Robaina) [RHEL-32987] - Drop kexec_load syscall support (Baoquan He) - New configs in lib/kunit (Fedora Kernel Team) - Turn off KUNIT_FAULT_TEST as it causes problems for CI (Justin M. Forbes) - Add a config entry in pending for CONFIG_DRM_MSM_VALIDATE_XML (Justin M. Forbes) - Flip CONFIG_SND_SOC_CS35L56_SPI in pending to avoid a mismatch (Justin M. Forbes) - Fix up a mismatch for RHEL (Justin M. Forbes) - Reset changelog after rebase (Justin M. Forbes) - Reset RHEL_RELEASE to 0 for 6.10 (Justin M. Forbes) - configs: move CONFIG_BLK_DEV_UBLK into rhel/configs/generic (Ming Lei) - configs: move CONFIG_BLK_SED_OPAL into redhat/configs/common/generic (Ming Lei) - RHEL-21097: rhel: aarch64 stop blocking a number of HW sensors (Peter Robinson) - redhat/configs: enable RTL8822BU for rhel (Jose Ignacio Tornos Martinez) - redhat/configs: remove CONFIG_DMA_PERNUMA_CMA and switch CONFIG_DMA_NUMA_CMA off (Jerry Snitselaar) - redhat: add IMA certificates (Jan Stancek) - redhat/kernel.spec: fix typo in move_kmod_list() variable (Jan Stancek) - redhat: make filtermods.py less verbose by default (Jan Stancek) - scsi: sd: condition probe_type under RHEL_DIFFERENCES (Eric Chanudet) - scsi: sd: remove unused sd_probe_types (Eric Chanudet) - Turn on INIT_ON_ALLOC_DEFAULT_ON for Fedora (Justin M. Forbes) - Consolidate configs to common for 6.9 (Justin M. Forbes) - redhat/rhel_files: move tipc.ko and tipc_diag.ko to modules-extra (Xin Long) [RHEL-23931] - redhat: move amd-pstate-ut.ko to modules-internal (Jan Stancek) - redhat/configs: enable CONFIG_LEDS_TRIGGER_NETDEV also for RHEL (Michal Schmidt) [RHEL-32110] - redhat/configs: Remove CONFIG_AMD_IOMMU_V2 (Jerry Snitselaar) - Set DEBUG_INFO_BTF_MODULES for Fedora (Justin M. Forbes) - redhat: Use redhatsecureboot701 for ppc64le (Jan Stancek) - redhat: switch the kernel package to use certs from system-sb-certs (Jan Stancek) - redhat: replace redhatsecureboot303 signing key with redhatsecureboot601 (Jan Stancek) - redhat: drop certificates that were deprecated after GRUB's BootHole flaw (Jan Stancek) - redhat: correct file name of redhatsecurebootca1 (Jan Stancek) - redhat: align file names with names of signing keys for ppc and s390 (Jan Stancek) - redhat/configs: Enable CONFIG_DM_VDO in RHEL (Benjamin Marzinski) - redhat/configs: Enable DRM_NOUVEAU_GSP_DEFAULT everywhere (Neal Gompa) - kernel.spec: adjust for livepatching kselftests (Joe Lawrence) - redhat/configs: remove CONFIG_TEST_LIVEPATCH (Joe Lawrence) - Turn on CONFIG_RANDOM_KMALLOC_CACHES for Fedora (Justin M. Forbes) - Set Fedora configs for 6.9 (Justin M. Forbes) - gitlab-ci: enable pipelines with c10s buildroot (Michael Hofmann) - Turn on ISM for Fedora (Justin M. Forbes) - redhat/configs: enable CONFIG_TEST_LOCKUP for non-debug kernels (Čestmír Kalina) - redhat/rhel_files: add test_lockup.ko to modules-extra (Čestmír Kalina) - Turn off some Fedora UBSAN options to avoid false positives (Justin M. Forbes) - fedora: aarch64: Enable a QCom Robotics platforms requirements (Peter Robinson) - fedora: updates for 6.9 merge window (Peter Robinson) - gitlab-ci: rename GitLab jobs ark -> rawhide (Michael Hofmann) - gitlab-ci: harmonize DataWarehouse tree names (Michael Hofmann) - redhat/configs: Enable CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON for rhel (Jerry Snitselaar) - spec: make sure posttrans script doesn't fail if /boot is non-POSIX (glb) - Turn on UBSAN for Fedora (Justin M. Forbes) - Turn on XEN_BALLOON_MEMORY_HOTPLUG for Fedora (Justin M. Forbes) - docs: point out that python3-pyyaml is now required (Thorsten Leemhuis) - Use LLVM=1 for clang_lto build (Nikita Popov) - redhat: fix def_variants.yaml check (Jan Stancek) - redhat: sanity check yaml files (Jan Stancek) - spec: rework filter-mods and mod-denylist (Jan Stancek) - redhat/configs: remove CONFIG_INTEL_MENLOW as it is obsolete. (David Arcari) - arch/x86: Fix XSAVE check for x86_64-v2 check (Prarit Bhargava) - redhat/Makefile.variables: unquote a variable (Thorsten Leemhuis) - redhat/configs: build in Tegra210 SPI driver (Mark Salter) - redhat/configs: aarch64: Enable ARM_FFA driver (Mark Salter) - Base automotive-devel on rt-devel (Don Zickus) - redhat/configs: Enable CONFIG_AMDTEE for x86 (David Arcari) - redhat/configs: enable CONFIG_TEST_LOCKUP for debug kernel (Čestmír Kalina) - kernel.spec: fix libperf-debuginfo content (Jan Stancek) - Turn on DM_VDO for Fedora (Justin M. Forbes) - redhat: make libperf-devel require libperf %%{version}-%%{release} (Jan Stancek) - kernel.spec: drop custom mode also for System.map ghost entry (Jan Stancek) - Octopus merges are too conservative, serialize instead (Don Zickus) - Add tracking branches for rt-devel (Don Zickus) - all: clean-up i915 (Peter Robinson) - Turn on CONFIG_READ_ONLY_THP_FOR_FS for Fedora (Justin M. Forbes) - redhat/kernel.spec.template: fix rtonly build (Jan Stancek) - redhat/kernel.spec.template: add extra flags for tools build (Scott Weaver) - Add iio-test-gts to mod-internal.list (Thorsten Leemhuis) - redhat/kernel.spec.template: update license (Scott Weaver) - Fix typo in maintaining.rst file (Augusto Caringi) - Enable DRM_CDNS_DSI_J721E for fedora (Andrew Halaney) - gitlab-ci: do not merge ark-latest for gating pipelines (Michael Hofmann) - fedora: Enable MCP9600 (Peter Robinson) - redhat/configs: Enable & consolidate BF-3 drivers config (Luiz Capitulino) - redhat: Fix RT kernel kvm subpackage requires (Juri Lelli) - Add new of_test module to mod-internal.list (Thorsten Leemhuis) - Add new string kunit modules to mod-internal.list (Thorsten Leemhuis) - redhat/kernel.spec.template: enable cross for base/RT (Peter Robinson) - redhat/kernel.spec.template: Fix cross compiling (Peter Robinson) - arch/x86/kernel/setup.c: fixup rh_check_supported (Scott Weaver) - Enable CONFIG_USB_ONBOARD_HUB for RHEL (Charles Mirabile) - redhat/Makefile.cross: Add CROSS_BASEONLY (Prarit Bhargava) - gitlab-ci: fix ark-latest merging for parent pipelines running in forks (Michael Hofmann) - lsm: update security_lock_kernel_down (Scott Weaver) - Fix changelog after rebase (Augusto Caringi) - redhat: remove "END OF CHANGELOG" marker from kernel.changelog (Herton R. Krzesinski) - gitlab-ci: enable all variants for rawhide/eln builder image gating (Michael Hofmann) - Fedora: enable Microchip and their useful drivers (Peter Robinson) - spec: suppress "set +x" output (Jan Stancek) - redhat/configs: Disable CONFIG_RDMA_SIW (Kamal Heib) - redhat/configs: Disable CONFIG_RDMA_RXE (Kamal Heib) - redhat/configs: Disable CONFIG_MLX4 (Kamal Heib) - redhat/configs: Disable CONFIG_INFINIBAND_HFI1 and CONFIG_INFINIBAND_RDMAVT (Kamal Heib) - Consolidate 6.8 configs to common (Justin M. Forbes) - Remove rt-automated and master-rt-devel logic (Don Zickus) - Add support for CI octopus merging (Don Zickus) - redhat/configs: Disable CONFIG_INFINIBAND_VMWARE_PVRDMA (Kamal Heib) - gitlab-ci: fix merge tree URL for gating pipelines (Michael Hofmann) - Revert "net: bump CONFIG_MAX_SKB_FRAGS to 45" (Marcelo Ricardo Leitner) - uki: use systemd-pcrphase dracut module (Gerd Hoffmann) - Add libperf-debuginfo subpackage (Justin M. Forbes) - redhat/kernel.spec.template: Add log_msg macro (Prarit Bhargava) - redhat/configs: Disable CONFIG_INFINIBAND_USNIC (Kamal Heib) - Enable CONFIG_BMI323_I2C=m for Fedora x86_64 builds (Hans de Goede) - gitlab-ci: drop test_makefile job (Scott Weaver) - Enable merge-rt pipeline (Don Zickus) - kernel.spec: include the GDB plugin in kernel-debuginfo (Ondrej Mosnacek) - Turn on DRM_NOUVEAU_GSP_DEFAULT for Fedora (Justin M. Forbes) - Set late new config HDC3020 for Fedora (Justin M. Forbes) - redhat/self-test: Update CROSS_DISABLED_PACKAGES (Prarit Bhargava) - redhat: Do not build libperf with cross builds (Prarit Bhargava) - redhat/configs: enable CONFIG_PINCTRL_INTEL_PLATFORM for RHEL (David Arcari) - redhat/configs: enable CONFIG_PINCTRL_METEORPOINT for RHEL (David Arcari) - redhat/configs: intel pinctrl config cleanup (David Arcari) - redhat/configs: For aarch64/RT, default kstack randomization off (Jeremy Linton) - redhat/Makefile: remove an unused target (Ondrej Mosnacek) - redhat/Makefile: fix setup-source and document its caveat (Ondrej Mosnacek) - redhat/Makefile: fix race condition when making the KABI tarball (Ondrej Mosnacek) - redhat/Makefile: refactor KABI tarball creation (Ondrej Mosnacek) - Turn XFS_SUPPORT_V4 back on for Fedora (Justin M. Forbes) - Add xe to drm module filters (Justin M. Forbes) - Turn off the DRM_XE_KUNIT_TEST for Fedora (Justin M. Forbes) - Flip secureboot signature order (Justin M. Forbes) - all: clean up some removed configs (Peter Robinson) - redhat: add nvidia oot signing key (Dave Airlie) - gitlab-ci: support CI for zfcpdump kernel on ELN (Michael Hofmann) - Fedora configs for 6.8 (Justin M. Forbes) - Turn off CONFIG_INTEL_VSC for Fedora (Justin M. Forbes) - redhat/configs: rhel wireless requests (Jose Ignacio Tornos Martinez) - spec: Set EXTRA_CXXFLAGS for perf demangle-cxx.o (Josh Stone) [2233269] - Flip values for FSCACHE and NETFS_SUPPORT to avoid mismatch (Justin M. Forbes) - Turn on SECURITY_DMESG_RESTRICT (Justin M. Forbes) - redhat: forward-port genlog.py updates from c9s (Jan Stancek) - arch/x86: mark x86_64-v1 and x86_64-v2 processors as deprecated (Prarit Bhargava) - fedora: Enable more Renesas RZ platform drivers (Peter Robinson) - fedora: a few aarch64 drivers and cleanups (Peter Robinson) - fedora: cavium nitrox cnn55xx (Peter Robinson) - Fix dist-get-buildreqs breakage around perl(ExtUtils::Embed) (Don Zickus) - gitlab-ci: merge ark-latest fixes when running ELN pipelines (Michael Hofmann) - gitlab-ci: use all arches for container image gating (Michael Hofmann) - Add new os-build targets: rt-devel and automotive-devel (Don Zickus) - Remove defines forcing tools on, they override cmdline (Justin M. Forbes) - Remove separate license tag for libperf (Justin M. Forbes) - Don't use upstream bpftool version for Fedora package (Justin M. Forbes) - Don't ship libperf.a in libperf-devel (Justin M. Forbes) - add libperf packages and enable perf, libperf, tools and bpftool packages (Thorsten Leemhuis) - Add scaffolding to build the kernel-headers package for Fedora (Justin M. Forbes) - redhat/spec: use distro CFLAGS when building bootstrap bpftool (Artem Savkov) - spec: use just-built bpftool for vmlinux.h generation (Yauheni Kaliuta) [2120968] - gitlab-ci: enable native tools for Rawhide CI (Michael Hofmann) - Revert "Merge branch 'fix-kabi-build-race' into 'os-build'" (Justin M. Forbes) - redhat: configs: fedora: Enable sii902x bridge chip driver (Erico Nunes) - Enable CONFIG_TCP_CONG_ILLINOIS for RHEL (Davide Caratti) - redhat/Makefile: fix setup-source and document its caveat (Ondrej Mosnacek) - redhat/Makefile: fix race condition when making the KABI tarball (Ondrej Mosnacek) - redhat/Makefile: refactor KABI tarball creation (Ondrej Mosnacek) - redhat/configs: Remove HOTPLUG_CPU0 configs (Prarit Bhargava) - gitlab-ci: merge ark-latest before building in MR pipelines (Michael Hofmann) - CI: include aarch64 in CKI container image gating (Tales Aparecida) - redhat: spec: Fix update_scripts run for CentOS builds (Neal Gompa) - New configs in drivers/crypto (Fedora Kernel Team) - net: bump CONFIG_MAX_SKB_FRAGS to 45 (Marcelo Ricardo Leitner) - Enable CONFIG_MARVELL_88Q2XXX_PHY (Izabela Bakollari) - Remove CONFIG_NET_EMATCH_STACK file for RHEL (Justin M. Forbes) - CONFIG_NETFS_SUPPORT should be m after the merge (Justin M. Forbes) - Turn FSCACHE and NETFS from m to y in pending (Justin M. Forbes) - Turn on CONFIG_TCP_AO for Fedora (Justin M. Forbes) - Turn on IAA_CRYPTO_STATS for Fedora (Justin M. Forbes) - fedora: new drivers and cleanups (Peter Robinson) - Turn on Renesas RZ for Fedora IOT rhbz2257913 (Justin M. Forbes) - redhat: filter-modules.sh.rhel: add dell-smm-hwmon (Scott Weaver) - Add CONFIG_INTEL_MEI_GSC_PROXY=m for DRM 9.4 stable backport (Mika Penttilä) - Set configs for ZRAM_TRACK_ENTRY_ACTIME (Justin M. Forbes) - Add python3-pyyaml to buildreqs for kernel-docs (Justin M. Forbes) - Add nb7vpq904m to singlemods for ppc64le (Thorsten Leemhuis) - include drm bridge helpers in kernel-core package (Thorsten Leemhuis) - Add dell-smm-hwmon to singlemods (Thorsten Leemhuis) - Add drm_gem_shmem_test to mod-internal.list (Thorsten Leemhuis) - redhat: kABI: add missing RH_KABI_SIZE_ALIGN_CHECKS Kconfig option (Sabrina Dubroca) - redhat: rh_kabi: introduce RH_KABI_EXCLUDE_WITH_SIZE (Sabrina Dubroca) - redhat: rh_kabi: move semicolon inside __RH_KABI_CHECK_SIZE (Sabrina Dubroca) - Fix up ZRAM_TRACK_ENTRY_ACTIME in pending (Justin M. Forbes) - random: replace import_single_range() with import_ubuf() (Justin M. Forbes) - Flip CONFIG_INTEL_PMC_CORE to m for Fedora (Justin M. Forbes) - Add CONFIG_ZRAM_TRACK_ENTRY_ACTIME=y to avoid a mismatch (Justin M. Forbes) - common: cleanup MX3_IPU (Peter Robinson) - all: The Octeon MDIO driver is aarch64/mips (Peter Robinson) - common: rtc: remove bq4802 config (Peter Robinson) - common: de-dupe MARVELL_GTI_WDT (Peter Robinson) - all: Remove CAN_BXCAN (Peter Robinson) - common: cleanup SND_SOC_ROCKCHIP (Peter Robinson) - common: move RHEL DP83867_PHY to common (Peter Robinson) - common: Make ASYMMETRIC_KEY_TYPE enable explicit (Peter Robinson) - common: Disable aarch64 ARCH_MA35 universally (Peter Robinson) - common: arm64: enable Tegra234 pinctrl driver (Peter Robinson) - rhel: arm64: Enable qoriq thermal driver (Peter Robinson) - common: aarch64: Cleanup some i.MX8 config options (Peter Robinson) - all: EEPROM_LEGACY has been removed (Peter Robinson) - all: rmeove AppleTalk hardware configs (Peter Robinson) - all: cleanup: remove references to SLOB (Peter Robinson) - all: cleanup: Drop unnessary BRCMSTB configs (Peter Robinson) - all: net: remove retired network schedulers (Peter Robinson) - all: cleanup removed CONFIG_IMA_TRUSTED_KEYRING (Peter Robinson) - BuildRequires: lld for build with selftests for x86 (Jan Stancek) - spec: add keyutils to selftest-internal subpackage requirements (Artem Savkov) [2166911] - redhat/spec: exclude liburandom_read.so from requires (Artem Savkov) [2120968] - rtla: sync summary text with upstream and update Requires (Jan Stancek) - uki-virt: add systemd-sysext dracut module (Gerd Hoffmann) - uki-virt: add virtiofs dracut module (Gerd Hoffmann) - common: disable the FB device creation (Peter Robinson) - s390x: There's no FB on Z-series (Peter Robinson) - fedora: aarch64: enable SM_VIDEOCC_8350 (Peter Robinson) - fedora: arm64: enable ethernet on newer TI industrial (Peter Robinson) - fedora: arm64: Disable VIDEO_IMX_MEDIA (Peter Robinson) - fedora: use common config for Siemens Simatic IPC (Peter Robinson) - fedora: arm: enable Rockchip SPI flash (Peter Robinson) - fedora: arm64: enable DRM_TI_SN65DSI83 (Peter Robinson) - kernel.spec: remove kernel-smp reference from scripts (Jan Stancek) - redhat: do not compress the full kernel changelog in the src.rpm (Herton R. Krzesinski) - Auto consolidate configs for the 6.7 cycle (Justin M. Forbes) - Enable sound for a line of Huawei laptops (TomZanna) - fedora: a few cleanups and driver enablements (Peter Robinson) - fedora: arm64: cleanup Allwinner Pinctrl drivers (Peter Robinson) - fedora: aarch64: Enable some DW drivers (Peter Robinson) - redhat: ship all the changelog from source git into kernel-doc (Herton R. Krzesinski) - redhat: create an empty changelog file when changing its name (Herton R. Krzesinski) - redhat/self-test: Remove --all from git query (Prarit Bhargava) - Disable accel drivers for Fedora x86 (Kate Hsuan) - redhat: scripts: An automation script for disabling unused driver for x86 (Kate Hsuan) - Fix up Fedora LJCA configs and filters (Justin M. Forbes) - Fedora configs for 6.7 (Justin M. Forbes) - Some Fedora config updates for MLX5 (Justin M. Forbes) - Turn on DRM_ACCEL drivers for Fedora (Justin M. Forbes) - redhat: enable the kfence test (Nico Pache) - redhat/configs: Enable UCLAMP_TASK for PipeWire and WirePlumber (Neal Gompa) - Turn on CONFIG_SECURITY_DMESG_RESTRICT for Fedora (Justin M. Forbes) - Turn off shellcheck for the fedora-stable-release script (Justin M. Forbes) - Add some initial Fedora stable branch script to redhat/scripts/fedora/ (Justin M. Forbes) - redhat: disable iptables-legacy compatibility layer (Florian Westphal) - redhat: disable dccp conntrack support (Florian Westphal) - configs: enable netfilter_netlink_hook in fedora too (Florian Westphal) - ext4: Mark mounting fs-verity filesystems as tech-preview (Alexander Larsson) - erofs: Add tech preview markers at mount (Alexander Larsson) - Enable fs-verity (Alexander Larsson) - Enable erofs (Alexander Larsson) - aarch64: enable uki (Gerd Hoffmann) - redhat: enable CONFIG_SND_SOC_INTEL_SOF_DA7219_MACH as a module for x86 (Patrick Talbert) - Turn CONFIG_MFD_CS42L43_SDW on for RHEL (Justin M. Forbes) - Enable cryptographic acceleration config flags for PowerPC (Mamatha Inamdar) - Also make vmlinuz-virt.efi world readable (Zbigniew Jędrzejewski-Szmek) - Drop custom mode for System.map file (Zbigniew Jędrzejewski-Szmek) - Add drm_exec_test to mod-internal.list for depmod to succeed (Mika Penttilä) - RHEL 9.4 DRM backport (upto v6.6 kernel), sync Kconfigs (Mika Penttilä) - Turn on USB_DWC3 for Fedora (rhbz 2250955) (Justin M. Forbes) - redhat/configs: Move IOMMUFD to common (Alex Williamson) - redhat: Really remove cpupower files (Prarit Bhargava) - redhat: remove update_scripts.sh (Prarit Bhargava) - Fix s390 zfcpfdump bpf build failures for cgroups (Don Zickus) - Flip CONFIG_NVME_AUTH to m in pending (Justin M. Forbes) - Turn CONFIG_SND_SOC_INTEL_AVS_MACH_RT5514 on for Fedora x86 (Jason Montleon) - kernel/rh_messages.c: Mark functions as possibly unused (Prarit Bhargava) - Add snd-hda-cirrus-scodec-test to mod-internal.list (Scott Weaver) - Turn off BPF_SYSCALL in pending for zfcpdump (Justin M. Forbes) - Add mean_and_variance_test to mod-internal.list (Justin M. Forbes) - Add cfg80211-tests and mac80211-tests to mod-internal.list (Justin M. Forbes) - Turn on CONFIG_MFD_CS42L43_SDW for RHEL in pending (Justin M. Forbes) - Turn on bcachefs for Fedora (Justin M. Forbes) - redhat: configs: fedora: Enable QSEECOM and friends (Andrew Halaney) - Add clk-fractional-divider_test to mod-internal.list (Thorsten Leemhuis) - Add gso_test to mod-internal.list (Thorsten Leemhuis) - Add property-entry-test to mod-internal.list (Thorsten Leemhuis) - Fedora 6.7 configs part 1 (Justin M. Forbes) - [Scheduled job] Catch config mismatches early during upstream merge (Don Zickus) - redhat/self-test: Update data for KABI xz change (Prarit Bhargava) - redhat/scripts: Switch KABI tarballs to xz (Prarit Bhargava) - redhat/kernel.spec.template: Switch KABI compression to xz (Prarit Bhargava) - redhat: self-test: Use a more complete SRPM file suffix (Andrew Halaney) - redhat: makefile: remove stray rpmbuild --without (Eric Chanudet) - Consolidate configs into common for 6.6 (Justin M. Forbes) - Updated Fedora configs (Justin M. Forbes) - Turn on UFSHCD for Fedora x86 (Justin M. Forbes) - redhat: configs: generic: x86: Disable CONFIG_VIDEO_OV01A10 for x86 platform (Hans de Goede) - redhat: remove pending-rhel CONFIG_XFS_ASSERT_FATAL file (Patrick Talbert) - New configs in fs/xfs (Fedora Kernel Team) - crypto: rng - Override drivers/char/random in FIPS mode (Herbert Xu) - random: Add hook to override device reads and getrandom(2) (Herbert Xu) - redhat/configs: share CONFIG_ARM64_ERRATUM_2966298 between rhel and fedora (Mark Salter) - configs: Remove S390 IOMMU config options that no longer exist (Jerry Snitselaar) - redhat: docs: clarify where bugs and issues are created (Scott Weaver) - redhat/scripts/rh-dist-git.sh does not take any arguments: fix error message (Denys Vlasenko) - Add target_branch for gen_config_patches.sh (Don Zickus) - redhat: disable kunit by default (Nico Pache) - redhat/configs: enable the AMD_PMF driver for RHEL (David Arcari) - Make CONFIG_ADDRESS_MASKING consistent between fedora and rhel (Chris von Recklinghausen) - CI: add ark-latest baseline job to tag cki-gating for successful pipelines (Michael Hofmann) - CI: provide child pipelines for CKI container image gating (Michael Hofmann) - CI: allow to run as child pipeline (Michael Hofmann) - CI: provide descriptive pipeline name for scheduled pipelines (Michael Hofmann) - CI: use job templates for variant variables (Michael Hofmann) - redhat/kernel.spec.template: simplify __modsign_install_post (Jan Stancek) - Fedora filter updates after configs (Justin M. Forbes) - Fedora configs for 6.6 (Justin M. Forbes) - redhat/configs: Freescale Layerscape SoC family (Steve Best) - Add clang MR/baseline pipelines (Michael Hofmann) - CI: Remove unused kpet_tree_family (Nikolai Kondrashov) - Add clang config framework (Don Zickus) - Apply partial snippet configs to all configs (Don Zickus) - Remove unpackaged kgcov config files (Don Zickus) - redhat/configs: enable missing Kconfig options for Qualcomm RideSX4 (Brian Masney) - enable CONFIG_ADDRESS_MASKING for x86_64 (Chris von Recklinghausen) - common: aarch64: enable NXP Flex SPI (Peter Robinson) - fedora: Switch TI_SCI_CLK and TI_SCI_PM_DOMAINS symbols to built-in (Javier Martinez Canillas) - kernel.spec: adjust build option comment (Michael Hofmann) - kernel.spec: allow to enable arm64_16k variant (Michael Hofmann) - gitlab-ci: enable build-only pipelines for Rawhide/16k/aarch64 (Michael Hofmann) - kernel.spec.template: Fix --without bpftool (Prarit Bhargava) - redhat/configs: NXP BBNSM Power Key Driver (Steve Best) - redhat/self-test: Update data for cross compile fields (Prarit Bhargava) - redhat/Makefile.cross: Add message for disabled subpackages (Prarit Bhargava) - redhat/Makefile.cross: Update cross targets with disabled subpackages (Prarit Bhargava) - Remove XFS_ASSERT_FATAL from pending-fedora (Justin M. Forbes) - Change default pending for XFS_ONLINE_SCRUB_STATSas it now selects XFS_DEBUG (Justin M. Forbes) - gitlab-ci: use --with debug/base to select kernel variants (Michael Hofmann) - kernel.spec: add rpmbuild --without base option (Michael Hofmann) - redhat: spec: Fix typo for kernel_variant_preun for 16k-debug flavor (Neal Gompa) - Turn off appletalk for fedora (Justin M. Forbes) - New configs in drivers/media (Fedora Kernel Team) - redhat/docs: Add a mention of bugzilla for bugs (Prarit Bhargava) - Fix the fixup of Fedora release (Don Zickus) - Fix Fedora release scheduled job (Don Zickus) - Move squashfs to kernel-modules-core (Justin M. Forbes) - redhat: Explicitly disable CONFIG_COPS (Vitaly Kuznetsov) - redhat: Add dist-check-licenses target (Vitaly Kuznetsov) - redhat: Introduce "Verify SPDX-License-Identifier tags" selftest (Vitaly Kuznetsov) - redhat: Use kspdx-tool output for the License: field (Vitaly Kuznetsov) - Rename pipeline repo branch and DW tree names (Michael Hofmann) - Adjust comments that refer to ARK in a Rawhide context (Michael Hofmann) - Rename variable names starting with ark- to rawhide- (Michael Hofmann) - Rename trigger-ark to trigger-rawhide (Michael Hofmann) - Fix up config mismatches for Fedora (Justin M. Forbes) - redhat/configs: Texas Instruments Inc. K3 multicore SoC architecture (Steve Best) - Flip CONFIG_VIDEO_V4L2_SUBDEV_API in pending RHEL due to mismatch (Justin M. Forbes) - CONFIG_HW_RANDOM_HISI: move to common and set to m (Scott Weaver) - Turn off CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for Fedora s390x (Justin M. Forbes) - Disable tests for ELN realtime pipelines (Michael Hofmann) - New configs in mm/Kconfig (Fedora Kernel Team) - Flip CONFIG_SND_SOC_CS35L56_SDW to m and clean up (Justin M. Forbes) - Add drm_exec_test to mod-internal.list (Thorsten Leemhuis) - Add new pending entry for CONFIG_SND_SOC_CS35L56_SDW to fix mismatch (Justin M. Forbes) - Fix tarball creation logic (Don Zickus) - redhat: bump libcpupower soname to match upstream (Patrick Talbert) - Turn on MEMFD_CREATE in pending as it is selected by CONFIG_TMPFS (Justin M. Forbes) - redhat: drop unneeded build-time dependency gcc-plugin-devel (Coiby Xu) - all: x86: move wayward x86 specific config home (Peter Robinson) - all: de-dupe non standard config options (Peter Robinson) - all: x86: clean up microcode loading options (Peter Robinson) - common: remove unnessary CONFIG_SND_MESON_AXG* (Peter Robinson) - redhat: Fix UKI install with systemd >= 254 (Vitaly Kuznetsov) - redhat: Use named parameters for kernel_variant_posttrans()/kernel_variant_preun() (Vitaly Kuznetsov) - redhat/kernel.spec.template: update compression variables to support zstd (Brian Masney) - Consolidate configs to common for 6.5 (Justin M. Forbes) - Remove unused config entry for Fedora (Justin M. Forbes) - redhat/self-test: Remove rpmlint test (Prarit Bhargava) - Remove the armv7 config directory from Fedora again (Justin M. Forbes) - Enable CONFIG_EXPERT for both RHEL and Fedora (Justin M. Forbes) - redhat/configs: Enable CONFIG_DEVICE_PRIVATE on aarch64 (David Hildenbrand) [2231407] - redhat/configs: disable CONFIG_ROCKCHIP_ERRATUM_3588001 for RHEL (Mark Salter) - redhat: shellcheck fixes (Prarit Bhargava) - redhat/configs: enable tegra114 SPI (Mark Salter) - all: properly cleanup firewire once and for all (Peter Robinson) - Fix up filters for Fedora (Justin M. Forbes) - New configs in arch/x86 (Fedora Kernel Team) - Add an armv7 directory back for the Fedora configs (Justin M. Forbes) - Fedora 6.5 config updates (Justin M. Forbes) - Turn off DMABUF_SYSFS_STATS (Justin M. Forbes) - CI: rawhide_release: switch to using script to push (Don Zickus) - redhat/self-test: Update self-test data (Prarit Bhargava) - redhat/scripts/cross-compile: Update download_cross.sh (Prarit Bhargava) - redhat/Makefile.cross: Remove ARCH selection code (Prarit Bhargava) - redhat/Makefile.cross: Update script (Prarit Bhargava) - Fix interruptible non MR jobs (Michael Hofmann) - all: run evaluate_configs to de-dupe merged aarch64 (Peter Robinson) - all: arm: merge the arm and arm/aarch64 (Peter Robinson) - fedora: remove ARMv7 AKA armhfp configurations (Peter Robinson) - fedora: remove ARMv7 AKA armhfp support (Peter Robinson) - redhat/configs: enable CONFIG_VIRTIO_MEM on aarch64 (David Hildenbrand) [2044155] - redhat/configs: enable CONFIG_MEMORY_HOTREMOVE aarch64 (David Hildenbrand) [2062054] - redhat: Add arm64-16k kernel flavor scaffold for 16K page-size'd AArch64 (Neal Gompa) - fedora: enable i3c on aarch64 (Peter Robinson) - redhat/configs: Remove `CONFIG_HZ_1000 is not set` for aarch64 (Enric Balletbo i Serra) - redhat/configs: turn on the framework for SPI NOR for ARM (Steve Best) - configs: add new ChromeOS UART driver (Mark Langsdorf) - configs: add new ChromeOS Human Presence Sensor (Mark Langsdorf) - redhat/configs: Enable CONFIG_NVIDIA_WMI_EC_BACKLIGHT for both Fedora and RHEL (Kate Hsuan) - redhat/configs: Texas Instruments INA3221 driver (Steve Best) - arm: i.MX: Some minor NXP i.MX cleanups (Peter Robinson) - Description: Set config for Tegra234 pinctrl driver (Joel Slebodnick) - Update RPM Scriptlet for kernel-install Changes (Jonathan Steffan) - [CI] add exit 0 to the end of CI scripts (Don Zickus) - redhat: configs: Disable CONFIG_CRYPTO_STATS since performance issue for storage (Kate Hsuan) [2227793] - Remove obsolete variable from gitlab-ci.yml (Ondrej Kinst) - redhat/configs: Move GVT-g to Fedora only (Alex Williamson) - [CI] Make sure we are on correct branch before running script (Don Zickus) - CI: ark-update-configs: sync push command and output (Don Zickus) - CI: ark-update-configs: misc changes (Don Zickus) - CI: sync ark-create-release push commands with output (Don Zickus) - CI: ark-create-release: Add a robust check if nothing changed (Don Zickus) - CI: Remove legacy tag check cruft (Don Zickus) - CI: Introduce simple environment script (Don Zickus) - redhat/configs: Disable FIREWIRE for RHEL (Prarit Bhargava) - redhat/scripts/rh-dist-git.sh: print list of uploaded files (Denys Vlasenko) - redhat/scripts/expand_srpm.sh: add missing function, robustify (Denys Vlasenko) - redhat: Enable HSR and PRP (Felix Maurer) - redhat/scripts/rh-dist-git.sh: fix outdated message and comment (Denys Vlasenko) - redhat/configs: Disable CONFIG_I8K (Prarit Bhargava) - Make sure posttrans script doesn't fail if restorecon is not installed (Daan De Meyer) - Update filters for new config items (Justin M. Forbes) - More Fedora 6.5 configs (Justin M. Forbes) - redhat/configs: disable pre-UVC cameras for RHEL on aarch64 (Dean Nelson) - redhat/configs: enable CONFIG_MEDIA_SUPPORT for RHEL on aarch64 (Dean Nelson) - move ownership of /lib/modules// to kernel-core (Thorsten Leemhuis) - Let kernel-modules-core own the files depmod generates. (Thorsten Leemhuis) - redhat: configs: Enable CONFIG_TYPEC_STUSB160X for rhel on aarch64 (Desnes Nunes) - Add filters for ptp_dfl_tod on Fedora (Justin M. Forbes) - Fedora 6.5 configs part 1 (Justin M. Forbes) - fedora: enable CONFIG_ZYNQMP_IPI_MBOX as a builtin in pending-fedora (Patrick Talbert) - fedora: arm: some minor updates (Peter Robinson) - fedora: bluetooth: enable AOSP extensions (Peter Robinson) - fedora: wifi: tweak ZYDAS WiFI config options (Peter Robinson) - scsi: sd: Add "probe_type" module parameter to allow synchronous probing (Ewan D. Milne) [2140017] - redhat/configs: allow IMA to use MOK keys (Coiby Xu) - Simplify documentation jobs (Michael Hofmann) - Auto-cancel pipelines only on MRs (Michael Hofmann) - CI: Call script directly (Don Zickus) - CI: Remove stale TAG and Makefile cruft (Don Zickus) - CI: Move os-build tracking to common area (Don Zickus) - redhat: use the eln builder for daily jobs (Patrick Talbert) - redhat: set CONFIG_XILINX_WINDOW_WATCHDOG as disabled in pending (Patrick Talbert) - Add baseline ARK/ELN pipelines (Michael Hofmann) - Simplify job rules (Michael Hofmann) - Build ELN srpm for bot changes (Michael Hofmann) - Run RH selftests for ELN (Michael Hofmann) - Simplify job templates (Michael Hofmann) - Extract rules to allow orthogonal configuration (Michael Hofmann) - Require ELN pipelines if started automatically (Michael Hofmann) - Add ARK debug pipeline (Michael Hofmann) - Extract common parts of child pipeline job (Michael Hofmann) - Move ARK pipeline variables into job template (Michael Hofmann) - Simplify ARK pipeline rules (Michael Hofmann) - Change pathfix.py to %%py3_shebang_fix (Justin M. Forbes) - Turn on NET_VENDOR_QUALCOMM for Fedora to enable rmnet (Justin M. Forbes) - redhat: add intel-m10-bmc-hwmon to filter-modules singlemods list (Patrick Talbert) - fedira: enable pending-fedora CONFIG_CPUFREQ_DT_PLATDEV as a module (Patrick Talbert) - redhat: fix the 'eln BUILD_TARGET' self-test (Patrick Talbert) - redhat: update the self-test-data (Patrick Talbert) - redhat: remove trailing space in dist-dump-variables output (Patrick Talbert) - Allow ELN pipelines failures (Michael Hofmann) - Enable cs-like CI (Michael Hofmann) - Allow to auto-cancel redundant pipelines (Michael Hofmann) - Remove obsolete unused trigger variable (Michael Hofmann) - Fix linter warnings in .gitlab-ci.yml (Michael Hofmann) - config: wifi: debug options for ath11k, brcm80211 and iwlwifi (Íñigo Huguet) - redhat: allow dbgonly cross builds (Jan Stancek) - redhat/configs: Clean up x86-64 call depth tracking configs (Waiman Long) - redhat: move SND configs from pending-rhel to rhel (Patrick Talbert) - Fix up armv7 configs for Fedora (Justin M. Forbes) - redhat: Set pending-rhel x86 values for various SND configs (Patrick Talbert) - redhat: update self-test data (Patrick Talbert) - redhat: ignore SPECBPFTOOLVERSION/bpftoolversion in self-test create-data.sh (Patrick Talbert) - fedora/rhel: Move I2C_DESIGNWARE_PLATFORM, I2C_SLAVE, & GPIOLIB from pending (Patrick Talbert) - redhat/filter-modules.sh.rhel: add needed deps for intel_rapl_tpmi (Jan Stancek) - fedora: Enable CONFIG_SPI_SLAVE (Patrick Talbert) - fedora/rhel: enable I2C_DESIGNWARE_PLATFORM, I2C_SLAVE, and GPIOLIB (Patrick Talbert) - fedora: Enable CONFIG_SPI_SLAVE in fedora-pending (Patrick Talbert) - redhat: remove extra + (plus) from meta package Requires definitions (Patrick Talbert) - Add intel-m10-bmc-hwmon to singlemods (Thorsten Leemhuis) - Add hid-uclogic-test to mod-internal.list (Thorsten Leemhuis) - Add checksum_kunit.ko to mod-internal.list (Thorsten Leemhuis) - Add strcat_kunit to mod-internal.list (Thorsten Leemhuis) - Add input_test to mod-intenal.list (Thorsten Leemhuis) - Revert "Remove EXPERT from ARCH_FORCE_MAX_ORDER for aarch64" (Justin M. Forbes) - Fix up rebase issue with CONFIG_ARCH_FORCE_MAX_ORDER (Justin M. Forbes) - redhat/kernel.spec.template: Disable 'extracting debug info' messages (Prarit Bhargava) - kernel/rh_messages.c: Another gcc12 warning on redundant NULL test (Florian Weimer) [2216678] - redhat: fix signing for realtime and arm64_64k non-debug variants (Jan Stancek) - redhat: treat with_up consistently (Jan Stancek) - redhat: make with_realtime opt-in (Jan Stancek) - redhat/configs: Disable qcom armv7 drippings in the aarch64 tree (Jeremy Linton) - kernel.spec: drop obsolete ldconfig (Jan Stancek) - Consolidate config items to common for 6.4 cycle (Justin M. Forbes) - Turn on CO?NFIg_RMNET for Fedora (Justin M. Forbes) - redhat/configs: enable CONFIG_MANA_INFINIBAND=m for ARK (Vitaly Kuznetsov) - redhat/config: common: Enable CONFIG_GPIO_SIM for software development (Kate Hsuan) - redhat: fix problem with RT kvm modules listed twice in rpm generation (Clark Williams) - redhat: turn off 64k kernel builds with rtonly (Clark Williams) - redhat: turn off zfcpdump for rtonly (Clark Williams) - redhat: don't allow with_rtonly to turn on unsupported arches (Clark Williams) - redhat: update self-test data for addition of RT and 64k-page variants (Clark Williams) - redhat: fix realtime and efiuki build conflict (Jan Stancek) - arm64-64k: Add new kernel variant to RHEL9/CS9 for 64K page-size'd ARM64 (Donald Dutile) [2153073] - redhat: TEMPORARY set configs to deal with PREEMPT_RT not available (Clark Williams) - redhat: TEMPORARY default realtime to off (Clark Williams) - redhat: moved ARM errata configs to arm dir (Clark Williams) - redhat: RT packaging changes (Clark Williams) - redhat: miscellaneous commits needed due to CONFIG_EXPERT (Clark Williams) - redhat: realtime config entries (Clark Williams) - common: remove deleted USB PCCARD drivers (Peter Robinson) - fedora: further cleanup of pccard/cardbus subsystem (Peter Robinson) - common: properly disable PCCARD subsystem (Peter Robinson) - redhat/configs: arm: enable SERIAL_TEGRA UART for RHEL (Mark Salter) - redhat/configs: enable CONFIG_X86_AMD_PSTATE_UT (David Arcari) - redhat/configs: Enable CONFIG_TCG_VTPM_PROXY for RHEL (Štěpán Horáček) - redhat: do not package *.mod.c generated files (Denys Vlasenko) - ALSA configuration changes for ARK/RHEL 9.3 (Jaroslav Kysela) - spec: remove resolve_btfids from kernel-devel (Viktor Malik) - Fix typo in filter-modules (Justin M. Forbes) - redhat/configs: Enable CONFIG_INIT_STACK_ALL_ZERO for RHEL (Josh Poimboeuf) - Remove CONFIG_ARCH_FORCE_MAX_ORDER for aarch64 (Justin M. Forbes) - Fix up config and filter for PTP_DFL_TOD (Justin M. Forbes) - redhat/configs: IMX8ULP pinctrl driver (Steve Best) - redhat/configs: increase CONFIG_FRAME_WARN for Fedora on aarch64 (Brian Masney) - redhat/configs: add two missing Kconfig options for the Thinkpad x13s (Brian Masney) - Fedora configs for 6.4 (Justin M. Forbes) - Change aarch64 CONFIG_ARCH_FORCE_MAX_ORDER to 10 for 4K pages (Justin M. Forbes) - kernel.spec: remove "RPM_VMLINUX_H=$DevelDir/vmlinux.h" code chunk in %%install (Denys Vlasenko) - redhat/configs: aarch64: Turn on Display for OnePlus 6 (Eric Curtin) - redhat/configs: NXP i.MX93 pinctrl, clk, analog to digital converters (Steve Best) - redhat/configs: Enable CONFIG_SC_GPUCC_8280XP for fedora (Andrew Halaney) - redhat/configs: Enable CONFIG_QCOM_IPCC for fedora (Andrew Halaney) - Add rv subpackage for kernel-tools (John Kacur) [2188441] - redhat/configs: NXP i.MX9 family (Steve Best) - redhat/genlog.py: add support to list/process zstream Jira tickets (Herton R. Krzesinski) - redhat: fix duplicate jira issues in the resolves line (Herton R. Krzesinski) - redhat: add support for Jira issues in changelog (Herton R. Krzesinski) - redhat/configs: turn on IMX8ULP CCM Clock Driver (Steve Best) - redhat: update filter-modules fsdrvs list to reference smb instead of cifs (Patrick Talbert) - Turn off some debug options found to impact performance (Justin M. Forbes) - wifi: rtw89: enable RTL8852BE card in RHEL (Íñigo Huguet) - redhat/configs: enable TEGRA186_GPC_DMA for RHEL (Mark Salter) - Move imx8m configs from fedora to common (Mark Salter) - redhat/configs: turn on lpuart serial port support Driver (Steve Best) [2208834] - Turn off DEBUG_VM for non debug Fedora kernels (Justin M. Forbes) - Enable CONFIG_BT on aarch64 (Charles Mirabile) - redhat/configs: turn on CONFIG_MARVELL_CN10K_TAD_PMU (Michal Schmidt) [2042240] - redhat/configs: Fix enabling MANA Infiniband (Kamal Heib) - Fix file listing for symvers in uki (Justin M. Forbes) - Fix up some Fedora config items (Justin M. Forbes) - enable efifb for Nvidia (Justin M. Forbes) - kernel.spec: package unstripped test_progs-no_alu32 (Felix Maurer) - Turn on NFT_CONNLIMIT for Fedora (Justin M. Forbes) - Include the information about builtin symbols into kernel-uki-virt package too (Vitaly Kuznetsov) - redhat/configs: Fix incorrect configs location and content (Vladis Dronov) - redhat/configs: turn on CONFIG_MARVELL_CN10K_DDR_PMU (Michal Schmidt) [2042241] - redhat: configs: generic: x86: Disable CONFIG_VIDEO_OV2740 for x86 platform (Kate Hsuan) - Enable IO_URING for RHEL (Justin M. Forbes) - Turn on IO_URING for RHEL in pending (Justin M. Forbes) - redhat: Remove editconfig (Prarit Bhargava) - redhat: configs: fix CONFIG_WERROR replace in build_configs (Jan Stancek) - redhat/configs: enable Maxim MAX77620 PMIC for RHEL (Mark Salter) - kernel.spec: skip kernel meta package when building without up (Jan Stancek) - redhat/configs: enable RDMA_RXE for RHEL (Kamal Heib) [2022578] - redhat/configs: update RPCSEC_GSS_KRB5 configs (Scott Mayhew) - redhat/Makefile: Support building linux-next (Thorsten Leemhuis) - redhat/Makefile: support building stable-rc versions (Thorsten Leemhuis) - redhat/Makefile: Add target to print DISTRELEASETAG (Thorsten Leemhuis) - Remove EXPERT from ARCH_FORCE_MAX_ORDER for aarch64 (Justin M. Forbes) - Revert "Merge branch 'unstripped-no_alu32' into 'os-build'" (Patrick Talbert) - configs: Enable CONFIG_PAGE_POOL_STATS for common/generic (Patrick Talbert) - redhat/configs: enable CONFIG_DELL_WMI_PRIVACY for both RHEL and Fedora (David Arcari) - kernel.spec: package unstripped test_progs-no_alu32 (Felix Maurer) - bpf/selftests: fix bpf selftests install (Jerome Marchand) - kernel.spec: add bonding selftest (Hangbin Liu) - Change FORCE_MAX_ORDER for ppc64 to be 8 (Justin M. Forbes) - kernel.spec.template: Add global compression variables (Prarit Bhargava) - kernel.spec.template: Use xz for KABI (Prarit Bhargava) - kernel.spec.template: Remove gzip related aarch64 code (Prarit Bhargava) - Add apple_bl to filter-modules (Justin M. Forbes) - Add handshake-test to mod-intenal.list (Justin M. Forbes) - Add regmap-kunit to mod-internal.list (Justin M. Forbes) - configs: set CONFIG_PAGE_POOL_STATS (Patrick Talbert) - Add apple_bl to fedora module_filter (Justin M. Forbes) - Fix up some config mismatches in new Fedora config items (Justin M. Forbes) - redhat/configs: disable CONFIG_USB_NET_SR9700 for aarch64 (Jose Ignacio Tornos Martinez) - Fix up the RHEL configs for xtables and ipset (Justin M. Forbes) - ark: enable wifi on aarch64 (Íñigo Huguet) - fedora: wifi: hermes: disable 802.11b driver (Peter Robinson) - fedora: wifi: libertas: use the LIBERTAS_THINFIRM driver (Peter Robinson) - fedora: wifi: disable Zydas vendor (Peter Robinson) - redhat: fix python ValueError in error path of merge.py (Clark Williams) - fedora: arm: minor updates (Peter Robinson) - kernel.spec: Fix UKI naming to comply with BLS (Philipp Rudo) - redhat/kernel.spec.template: Suppress 'extracting debug info' noise in build log (Prarit Bhargava) - Fedora 6.3 configs part 2 (Justin M. Forbes) - redhat/configs: Enable CONFIG_X86_KERNEL_IBT for Fedora and ARK (Josh Poimboeuf) - kernel.spec: gcov: make gcov subpackages per variant (Jan Stancek) - kernel.spec: Gemini: add Epoch to perf and rtla subpackages (Jan Stancek) - kernel.spec: Gemini: fix header provides for upgrade path (Jan Stancek) - redhat: introduce Gemini versioning (Jan Stancek) - redhat: separate RPM version from uname version (Jan Stancek) - redhat: introduce GEMINI and RHEL_REBASE_NUM variable (Jan Stancek) - ipmi: ssif_bmc: Add SSIF BMC driver (Tony Camuso) - common: minor de-dupe of parallel port configs (Peter Robinson) - Fedora 6.3 configs part 1 (Justin M. Forbes) - redhat: configs: Enable CONFIG_MEMTEST to enable memory test (Kate Hsuan) - Update Fedora arm filters after config updates (Nicolas Chauvet) - redhat/kernel.spec.template: Fix kernel-tools-libs-devel dependency (Prarit Bhargava) - redhat: fix the check for the n option (Patrick Talbert) - common: de-dupe some options that are the same (Peter Robinson) - generic: remove deleted options (Peter Robinson) - redhat/configs: enable CONFIG_INTEL_TCC_COOLING for RHEL (David Arcari) - Update Fedora ppc filters after config updates (Justin M. Forbes) - Update Fedora aarch64 filters after config updates (Justin M. Forbes) - fedora: arm: Updates for 6.3 (Peter Robinson) - redhat: kunit: cleanup NITRO config and enable rescale test (Nico Pache) - kernel.spec: use %%{package_name} to fix kernel-devel-matched Requires (Jan Stancek) - kernel.spec: use %%{package_name} also for abi-stablelist subpackages (Jan Stancek) - kernel.spec: use %%{package_name} also for tools subpackages (Jan Stancek) - generic: common: Parport and paride/ata cleanups (Peter Robinson) - CONFIG_SND_SOC_CS42L83 is no longer common (Justin M. Forbes) - configs: arm: bring some configs in line with rhel configs in c9s (Mark Salter) - arm64/configs: Put some arm64 configs in the right place (Mark Salter) - cleanup removed R8188EU config (Peter Robinson) - Make RHJOBS container friendly (Don Zickus) - Remove scmversion from kernel.spec.template (Don Zickus) - redhat/configs: Enable CONFIG_SND_SOC_CS42L83 (Neal Gompa) - Use RHJOBS for create-tarball (Don Zickus) - Enable CONFIG_NET_SCH_FQ_PIE for Fedora (Justin M. Forbes) - Make Fedora debug configs more useful for debug (Justin M. Forbes) - redhat/configs: enable Octeon TX2 network drivers for RHEL (Michal Schmidt) [2040643] - redhat/kernel.spec.template: fix installonlypkg for meta package (Jan Stancek) - redhat: version two of Makefile.rhelver tweaks (Clark Williams) - redhat/configs: Disable CONFIG_GCC_PLUGINS (Prarit Bhargava) - redhat/kernel.spec.template: Fix typo for process_configs.sh call (Neal Gompa) - redhat/configs: CONFIG_CRYPTO_SM3_AVX_X86_64 is x86 only (Vladis Dronov) - redhat/configs: Enable CONFIG_PINCTRL_METEORLAKE in RHEL (Prarit Bhargava) - fedora: enable new image sensors (Peter Robinson) - redhat/self-test: Update self-test data (Prarit Bhargava) - redhat/kernel.spec.template: Fix hardcoded "kernel" (Prarit Bhargava) - redhat/configs/generate_all_configs.sh: Fix config naming (Prarit Bhargava) - redhat/kernel.spec.template: Pass SPECPACKAGE_NAME to generate_all_configs.sh (Prarit Bhargava) - kernel.spec.template: Use SPECPACKAGE_NAME (Prarit Bhargava) - redhat/Makefile: Copy spec file (Prarit Bhargava) - redhat: Change PACKAGE_NAME to SPECPACKAGE_NAME (Prarit Bhargava) - redhat/configs: Support the virtio_mmio.device parameter in Fedora (David Michael) - Revert "Merge branch 'systemd-boot-unsigned' into 'os-build'" (Patrick Talbert) - redhat/Makefile: fix default values for dist-brew's DISTRO and DIST (Íñigo Huguet) - Remove cc lines from automatic configs (Don Zickus) - Add rtla-hwnoise files (Justin M. Forbes) - redhat/kernel.spec.template: Mark it as a non-executable file (Neal Gompa) - fedora: arm: Enable DRM_PANEL_HIMAX_HX8394 (Javier Martinez Canillas) - redhat/configs: CONFIG_HP_ILO location fix (Vladis Dronov) - redhat: Fix build for kselftests mm (Nico Pache) - fix tools build after vm to mm rename (Justin M. Forbes) - redhat/spec: Update bpftool versioning scheme (Viktor Malik) - redhat/configs: CONFIG_CRYPTO_SM4_AESNI_AVX*_X86_64 is x86 only (Prarit Bhargava) - redhat: adapt to upstream Makefile change (Clark Williams) - redhat: modify efiuki specfile changes to use variants convention (Clark Williams) - Turn off DEBUG_INFO_COMPRESSED_ZLIB for Fedora (Justin M. Forbes) - redhat/kernel.spec.template: Fix RHEL systemd-boot-unsigned dependency (Prarit Bhargava) - Add hashtable_test to mod-internal.list (Justin M. Forbes) - Add more kunit tests to mod-internal.list for 6.3 (Justin M. Forbes) - Flip CONFIG_I2C_ALGOBIT to m (Justin M. Forbes) - Flip I2C_ALGOBIT to m to avoid mismatch (Justin M. Forbes) - kernel.spec: move modules.builtin to kernel-core (Jan Stancek) - Turn on IDLE_INJECT for x86 (Justin M. Forbes) - Flip CONFIG_IDLE_INJECT in pending (Justin M. Forbes) - redhat/configs: Enable CONFIG_V4L_TEST_DRIVERS related drivers (Enric Balletbo i Serra) - redhat/configs: Enable UCSI_CCG support (David Marlin) - Fix underline mark-up after text change (Justin M. Forbes) - Turn on CONFIG_XFS_RT for Fedora (Justin M. Forbes) - Consolidate common configs for 6.2 (Justin M. Forbes) - aarch64: enable zboot (Gerd Hoffmann) - redhat: remove duplicate pending-rhel config items (Patrick Talbert) - Disable frame pointers (Justin M. Forbes) - redhat/configs: update scripts and docs for ark -> rhel rename (Clark Williams) - redhat/configs: rename ark configs dir to rhel (Clark Williams) - Turn off CONFIG_DEBUG_INFO_COMPRESSED_ZLIB for ppc64le (Justin M. Forbes) - kernel.spec: package unstripped kselftests/bpf/test_progs (Jan Stancek) - kernel.spec: allow to package some binaries as unstripped (Jan Stancek) - redhat/configs: Make merge.py portable for older python (Desnes Nunes) - Fedora configs for 6.2 (Justin M. Forbes) - redhat: Repair ELN build broken by the recent UKI changes (Vitaly Kuznetsov) - redhat/configs: enable CONFIG_INET_DIAG_DESTROY (Andrea Claudi) - Enable TDX Guest driver (Vitaly Kuznetsov) - redhat/configs: Enable CONFIG_PCIE_PTM generically (Corinna Vinschen) - redhat: Add sub-RPM with a EFI unified kernel image for virtual machines (Vitaly Kuznetsov) - redhat/Makefile: Remove GIT deprecated message (Prarit Bhargava) - Revert "redhat: configs: Disable xtables and ipset" (Phil Sutter) - redhat/configs: Enable CONFIG_SENSORS_LM90 for RHEL (Mark Salter) - Fix up SQUASHFS decompression configs (Justin M. Forbes) - redhat/configs: enable CONFIG_OCTEON_EP as a module in ARK (Michal Schmidt) [2041990] - redhat: ignore rpminspect runpath report on urandom_read selftest binaries (Herton R. Krzesinski) - kernel.spec: add llvm-devel build requirement (Scott Weaver) - Update self-test data to not expect debugbuildsenabled 0 (Justin M. Forbes) - Turn off forced debug builds (Justin M. Forbes) - Turn on debug builds for aarch64 Fedora (Justin M. Forbes) - redhat/configs: modify merge.py to match old overrides input (Clark Williams) - redhat: fixup pylint complaints (Clark Williams) - redhat: remove merge.pl and references to it (Clark Williams) - redhat: update merge.py to handle merge.pl corner cases (Clark Williams) - Revert "redhat: fix elf got hardening for vm tools" (Don Zickus) - Update rebase notes for Fedora (Justin M. Forbes) - Update CONFIG_LOCKDEP_CHAINS_BITS to 19 (cmurf) - redhat/configs: Turn on CONFIG_SPI_TEGRA210_QUAD for RHEL (Mark Salter) - ark: aarch64: drop CONFIG_SMC911X (Peter Robinson) - all: cleanup and de-dupe CDROM_PKTCDVD options. (Peter Robinson) - all: remove CRYPTO_GF128MUL (Peter Robinson) - all: cleanup UEFI options (Peter Robinson) - common: arm64: Enable Ampere Altra SMpro Hardware Monitoring (Peter Robinson) - fedora: enable STACKPROTECTOR_STRONG (Peter Robinson) - fedora: enable STACKPROTECTOR on arm platforms (Peter Robinson) - redhat/self-test: Update data with ENABLE_WERROR (Prarit Bhargava) - redhat/Makefile.variables: Add ENABLE_WERROR (Prarit Bhargava) - makefile: Add -Werror support for RHEL (Prarit Bhargava) - redhat/Makefile.variables: Remove mention of Makefile.rhpkg (Prarit Bhargava) - redhat/Makefile.variables: Alphabetize variables (Prarit Bhargava) - gitlab-ci: use CI templates from production branch (Michael Hofmann) - redhat/kernel.spec.template: Fix internal "File listed twice" errors (Prarit Bhargava) - redhat: Remove stale .tmp_versions code and comments (Prarit Bhargava) - redhat/kernel.spec.template: Fix vmlinux_decompressor on !s390x (Prarit Bhargava) - redhat/kernel.spec.template: Remove unnecessary output from pathfix.py (Prarit Bhargava) - Modularize CONFIG_ARM_CORESIGHT_PMU_ARCH_SYSTEM_PMU (Mark Salter) - redhat/kernel.spec.template: Parallelize compression (Prarit Bhargava) - config: Enable Security Path (Ricardo Robaina) - redhat/self-test/data: Regenerate self-test data for make change (Prarit Bhargava) - Update module filters for nvmem_u-boot-env (Justin M. Forbes) - fedora: Updates for 6.2 merge (Peter Robinson) - fedora: Updates for 6.1 merge (Peter Robinson) - modules-core: use %%posttrans (Gerd Hoffmann) - split sub-rpm kernel-modules-core from kernel-core (Gerd Hoffmann) - Turn off CONFIG_MTK_T7XX for S390x (Justin M. Forbes) - CI: add variable for variant handling (Veronika Kabatova) - Fix up configs with SND_SOC_NAU8315 mismatch (Justin M. Forbes) - CI: Do a full build for non-bot runs (Veronika Kabatova) - Fix up configs with SND_SOC_NAU8315 mismatch (Justin M. Forbes) - kernel/rh_messages.c: gcc12 warning on redundant NULL test (Eric Chanudet) [2142658] - redhat/configs: Enable CRYPTO_CURVE25519 in ark (Prarit Bhargava) - general: arm: cleanup ASPEED options (Peter Robinson) - redhat/configs: ALSA - cleanups for the AMD Pink Sardine DMIC driver (Jaroslav Kysela) - redhat/docs: Add FAQ entry for booting between Fedora & ELN/RHEL kernels (Prarit Bhargava) - spec: add missing BuildRequires: python3-docutils for tools (Ondrej Mosnacek) - config: enable RCU_TRACE for debug kernels (Wander Lairson Costa) - Add siphash_kunit and strscpy_kunit to mod-internal.list (Justin M. Forbes) - Add drm_kunit_helpers to mod-internal.list (Justin M. Forbes) - Fix up configs for Fedora so we don't have a mismatch (Justin M. Forbes) - Turn on CONFIG_SQUASHFS_DECOMP_SINGLE in pending (Justin M. Forbes) - redhat/kernel.spec.template: Fix cpupower file error (Prarit Bhargava) - redhat/configs: aarhc64: clean up some erratum configs (Mark Salter) - More Fedora configs for 6.1 as deps were switched on (Justin M. Forbes) - redhat/configs: make SOC_TEGRA_CBB a module (Mark Salter) - redhat/configs: aarch64: reorganize tegra configs to common dir (Mark Salter) - Enforces buildroot if cross_arm (Nicolas Chauvet) - Handle automated case when config generation works correctly (Don Zickus) - Turn off CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64 (Justin M. Forbes) - Turn off CONFIG_EFI_ZBOOT as it makes CKI choke (Justin M. Forbes) - Fedora config updates for 6.1 (Justin M. Forbes) - redhat: Remove cpupower files (Prarit Bhargava) - redhat/configs: update CXL-related options to match what RHEL will use (John W. Linville) - Clean up the config for the Tegra186 timer (Al Stone) - redhat/configs: move CONFIG_TEGRA186_GPC_DMA config (Mark Salter) - Check for kernel config git-push failures (Don Zickus) - redhat: genlog.sh failures should interrupt the recipe (Patrick Talbert) - Turn CONFIG_GNSS back on for Fedora (Justin M. Forbes) - redhat/configs: enable CONFIG_GNSS for RHEL (Michal Schmidt) - Turn off NVMEM_U_BOOT_ENV for fedora (Justin M. Forbes) - Consolidate matching fedora and ark entries to common (Justin M. Forbes) - Empty out redhat/configs/common (Justin M. Forbes) - Adjust path to compressed vmlinux kernel image for s390x (Justin M. Forbes) [2149273] - Fedora config updates for 6.1 (Justin M. Forbes) - redhat: genlog.sh should expect genlog.py in the current directory (Patrick Talbert) - redhat/configs: consolidate CONFIG_TEST_LIVEPATCH=m (Joe Lawrence) - redhat/configs: enable CONFIG_TEST_LIVEPATCH=m for s390x (Julia Denham) - Revert "Merge branch 'ark-make-help' into 'os-build'" (Scott Weaver) - Remove recommendation to use 'common' for config changes. (Don Zickus) - Update config to add i3c support for AArch64 (Mark Charlebois) - redhat: Move cross-compile scripts into their own directory (Prarit Bhargava) - redhat: Move yaml files into their own directory (Prarit Bhargava) - redhat: Move update_scripts.sh into redhat/scripts (Prarit Bhargava) - redhat: Move kernel-tools scripts into their own directory (Prarit Bhargava) - redhat: Move gen-* scripts into their own directory (Prarit Bhargava) - redhat: Move mod-* scripts into their own directory (Prarit Bhargava) - redhat/Makefile: Fix RHJOBS grep warning (Prarit Bhargava) - redhat: Force remove tmp file (Prarit Bhargava) - redhat/configs: ALSA - cleanups for the CentOS 9.2 update (Jaroslav Kysela) - CI: Use CKI container images from quay.io (Veronika Kabatova) - redhat: clean up the partial-kgcov-snip.config file (Patrick Talbert) - redhat: avoid picking up stray editor backups when processing configs (Clark Williams) - CI: Remove old configs (Veronika Kabatova) - redhat: override `make help` to include dist-help (Jonathan Toppins) - redhat: make RHTEST stricter (Jonathan Toppins) - redhat: Enable support for SN2201 system (Ivan Vecera) - redhat/docs/index.rst: Add FLAVOR information to generate configs for local builds (Enric Balletbo i Serra) - redhat: fix selftest git command so it picks the right commit (Patrick Talbert) - redhat/configs: enable HP_WATCHDOG for aarch64 (Mark Salter) - redhat: disable Kfence Kunit Test (Nico Pache) - configs: enable CONFIG_LRU_GEN_ENABLED everywhere (Patrick Talbert) - redhat: Enable WWAN feature and support for Intel, Qualcomm and Mediatek devices (Jose Ignacio Tornos Martinez) - Turn on dln2 support (RHBZ 2110372) (Justin M. Forbes) - Enable configs for imx8m PHYs (Al Stone) - configs/fedora: Build some SC7180 clock controllers as modules (Javier Martinez Canillas) - redhat/configs: Disable fbdev drivers and use simpledrm everywhere (Javier Martinez Canillas) [1986223] - redhat: fix the branch we pull from the documentation tree (Herton R. Krzesinski) - redhat/configs: change so watchdog is module versus builtin (Steve Best) - redhat/configs: move CONFIG_ACPI_VIDEO to common/generic (Mark Langsdorf) - enable imx8xm I2C configs properly (Al Stone) - configs/fedora: Enable a few more drivers needed by the HP X2 Chromebook (Javier Martinez Canillas) - enable the rtc-rv8803 driver on RHEL and Fedora (David Arcari) - redhat/Makefile: Remove BUILD_SCRATCH_TARGET (Prarit Bhargava) - configs: move CONFIG_INTEL_TDX_GUEST to common directory (Wander Lairson Costa) - redhat/Makefile: Use new BUILD_TARGET for RHEL dist[g]-brew target (Prarit Bhargava) - redhat: method.py: change the output loop to use 'values' method (Patrick Talbert) - redhat: use 'update' method in merge.py (Patrick Talbert) - redhat: Use a context manager in merge.py for opening the config file for reading (Patrick Talbert) - redhat: automatically strip newlines in merge.py (Clark Williams) - redhat: python replacement for merge.pl (Clark Williams) - redhat/docs: Update with DISTLOCALVERSION (Prarit Bhargava) - redhat/Makefile: Rename LOCALVERSION to DISTLOCALVERSION (Akihiko Odaki) - Adjust FIPS module name in RHEL (Vladis Dronov) - spec: prevent git apply from searching for the .git directory (Ondrej Mosnacek) - redhat: Remove parallel_xz.sh (Prarit Bhargava) - Turn on Multi-Gen LRU for Fedora (Justin M. Forbes) - Add kasan_test to mod-internal.list (Justin M. Forbes) - redhat/Makefile.variables: Fix typo with RHDISTGIT_TMP (Prarit Bhargava) - spec: fix path to `installing_core` stamp file for subpackages (Jonathan Lebon) - Remove unused ci scripts (Don Zickus) - Rename rename FORCE_MAX_ZONEORDER to ARCH_FORCE_MAX_ORDER in configs (Justin M. Forbes) - redhat: Add new fortify_kunit & is_signed_type_kunit to mod-internal.list (Patrick Talbert) - Rename rename FORCE_MAX_ZONEORDER to ARCH_FORCE_MAX_ORDER in pending (Justin M. Forbes) - Add acpi video to the filter_modules.sh for rhel (Justin M. Forbes) - Change acpi_bus_get_acpi_device to acpi_get_acpi_dev (Justin M. Forbes) - Turn on ACPI_VIDEO for arm (Justin M. Forbes) - Turn on CONFIG_PRIME_NUMBERS as a module (Justin M. Forbes) - Add new drm kunit tests to mod-internal.list (Justin M. Forbes) - redhat: fix elf got hardening for vm tools (Frantisek Hrbata) - kernel.spec.template: remove some temporary files early (Ondrej Mosnacek) - kernel.spec.template: avoid keeping two copies of vmlinux (Ondrej Mosnacek) - Add fortify_kunit to mod-internal.list (Justin M. Forbes) - Add module filters for Fedora as acpi video has new deps (Justin M. Forbes) - One more mismatch (Justin M. Forbes) - Fix up pending for mismatches (Justin M. Forbes) - Forgot too remove this from pending, it is set properly in ark (Justin M. Forbes) - redhat/Makefile: Add DIST to git tags for RHEL (Prarit Bhargava) - redhat/configs: Move CONFIG_ARM_SMMU_QCOM_DEBUG to common (Jerry Snitselaar) - Common config cleanup for 6.0 (Justin M. Forbes) - Allow selftests to fail without killing the build (Justin M. Forbes) - redhat: Remove redhat/Makefile.rhpkg (Prarit Bhargava) - redhat/Makefile: Move RHDISTGIT_CACHE and RHDISTGIT_TMP (Prarit Bhargava) - redhat/Makefile.rhpkg: Remove RHDISTGIT_USER (Prarit Bhargava) - redhat/Makefile: Move RHPKG_BIN to redhat/Makefile (Prarit Bhargava) - common: clean up Android option with removal of CONFIG_ANDROID (Peter Robinson) - redhat/configs: Remove x86_64 from priority files (Prarit Bhargava) - redhat/configs/pending-ark: Remove x86_64 directory (Prarit Bhargava) - redhat/configs/pending-fedora: Remove x86_64 directory (Prarit Bhargava) - redhat/configs/fedora: Remove x86_64 directory (Prarit Bhargava) - redhat/configs/common: Remove x86_64 directory (Prarit Bhargava) - redhat/configs/ark: Remove x86_64 directory (Prarit Bhargava) - redhat/configs/custom-overrides: Remove x86_64 directory (Prarit Bhargava) - configs: use common CONFIG_ARM64_SME for ark and fedora (Mark Salter) - redhat/configs: Add a warning message to priority.common (Prarit Bhargava) - redhat/configs: Enable INIT_STACK_ALL_ZERO for Fedora (Miko Larsson) - redhat: Set CONFIG_MAXLINEAR_GPHY to =m (Petr Oros) - redhat/configs enable CONFIG_INTEL_IFS (David Arcari) - redhat: Remove filter-i686.sh.rhel (Prarit Bhargava) - redhat/Makefile: Set PATCHLIST_URL to none for RHEL/cs9 (Prarit Bhargava) - redhat: remove GL_DISTGIT_USER, RHDISTGIT and unify dist-git cloning (Prarit Bhargava) - redhat/Makefile.variables: Add ADD_COMMITID_TO_VERSION (Prarit Bhargava) - kernel.spec: disable vmlinux.h generation for s390 zfcpdump config (Prarit Bhargava) - perf: Require libbpf 0.6.0 or newer (Prarit Bhargava) - kabi: add stablelist helpers (Prarit Bhargava) - Makefile: add kabi targets (Prarit Bhargava) - kabi: add support for symbol namespaces into check-kabi (Prarit Bhargava) - kabi: ignore new stablelist metadata in show-kabi (Prarit Bhargava) - redhat/Makefile: add dist-assert-tree-clean target (Prarit Bhargava) - redhat/kernel.spec.template: Specify vmlinux.h path when building samples/bpf (Prarit Bhargava) [2041365] - spec: Fix separate tools build (Prarit Bhargava) [2054579] - redhat/scripts: Update merge-subtrees.sh with new subtree location (Prarit Bhargava) - redhat/kernel.spec.template: enable dependencies generation (Prarit Bhargava) - redhat: build and include memfd to kernel-selftests-internal (Prarit Bhargava) [2027506] - redhat/kernel.spec.template: Link perf with --export-dynamic (Prarit Bhargava) - redhat: kernel.spec: selftests: abort on build failure (Prarit Bhargava) - redhat: configs: move CONFIG_SERIAL_MULTI_INSTANTIATE=m settings to common/x86 (Jaroslav Kysela) - configs: enable CONFIG_HP_ILO for aarch64 (Mark Salter) - all: cleanup dell config options (Peter Robinson) - redhat: Include more kunit tests (Nico Pache) - common: some minor cleanups/de-dupe (Peter Robinson) - common: enable INTEGRITY_MACHINE_KEYRING on all configuraitons (Peter Robinson) - Fedora 6.0 configs update (Justin M. Forbes) - redhat/self-test: Ignore .rhpkg.mk files (Prarit Bhargava) - redhat/configs: Enable CONFIG_PRINTK_INDEX on Fedora (Prarit Bhargava) - redhat/configs: Cleanup CONFIG_X86_KERNEL_IBT (Prarit Bhargava) - Fix up SND_CTL debug options (Justin M. Forbes) - redhat: create /boot symvers link if it doesn't exist (Jan Stancek) - redhat: remove duplicate kunit tests in mod-internal.list (Nico Pache) - configs/fedora: Make Fedora work with HNS3 network adapter (Zamir SUN) - redhat/configs/fedora/generic: Enable CONFIG_BLK_DEV_UBLK on Fedora (Richard W.M. Jones) [2122595] - fedora: disable IWLMEI (Peter Robinson) - redhat/configs: enable UINPUT on aarch64 (Benjamin Tissoires) - Fedora 6.0 configs part 1 (Justin M. Forbes) - redhat/Makefile: Always set UPSTREAM (Prarit Bhargava) - redhat/configs: aarch64: Turn on Apple Silicon configs for Fedora (Eric Curtin) - Add cpumask_kunit to mod-internal.list (Justin M. Forbes) - config - consolidate disabled MARCH options on s390x (Dan Horák) - move the baseline arch to z13 for s390x in F-37+ (Dan Horák) - redhat/scripts/rh-dist-git.sh: Fix outdated cvs reference (Prarit Bhargava) - redhat/scripts/expand_srpm.sh: Use Makefile variables (Prarit Bhargava) - redhat/scripts/clone_tree.sh: Use Makefile variables (Prarit Bhargava) - Fedora: arm changes for 6.0, part 1, with some ACPI (Peter Robinson) - redhat/self-test: Fix shellcheck errors (Prarit Bhargava) - redhat/docs: Add dist-brew BUILD_FLAGS information (Prarit Bhargava) - redhat: change the changelog item for upstream merges (Herton R. Krzesinski) - redhat: fix dist-release build number test (Herton R. Krzesinski) - redhat: fix release number bump when dist-release-changed runs (Herton R. Krzesinski) - redhat: use new genlog.sh script to detect changes for dist-release (Herton R. Krzesinski) - redhat: move changelog addition to the spec file back into genspec.sh (Herton R. Krzesinski) - redhat: always add a rebase entry when ark merges from upstream (Herton R. Krzesinski) - redhat: drop merge ark patches hack (Herton R. Krzesinski) - redhat: don't hardcode temporary changelog file (Herton R. Krzesinski) - redhat: split changelog generation from genspec.sh (Herton R. Krzesinski) - redhat: configs: Disable FIE on arm (Jeremy Linton) [2012226] - redhat/Makefile: Clean linux tarballs (Prarit Bhargava) - redhat/configs: Cleanup CONFIG_ACPI_AGDI (Prarit Bhargava) - spec: add cpupower daemon reload on install/upgrade (Jarod Wilson) - redhat: properly handle binary files in patches (Ondrej Mosnacek) - Add python3-setuptools buildreq for perf (Justin M. Forbes) - Add cros_kunit to mod-internal.list (Justin M. Forbes) - Add new tests to mod-internal.list (Justin M. Forbes) - Turn off some Kunit tests in pending (Justin M. Forbes) - Clean up a mismatch in Fedora configs (Justin M. Forbes) - redhat/configs: Sync up Retbleed configs with centos-stream (Waiman Long) - Change CRYPTO_BLAKE2S_X86 from m to y (Justin M. Forbes) - Leave CONFIG_ACPI_VIDEO on for x86 only (Justin M. Forbes) - Fix BLAKE2S_ARM and BLAKE2S_X86 configs in pending (Justin M. Forbes) - Fix pending for ACPI_VIDEO (Justin M. Forbes) - redhat/configs: Fix rm warning on config warnings (Eric Chanudet) - redhat/Makefile: Deprecate PREBUILD_GIT_ONLY variable (Prarit Bhargava) - redhat/Makefile: Deprecate SINGLE_TARBALL variable (Prarit Bhargava) - redhat/Makefile: Deprecate GIT variable (Prarit Bhargava) - Update CONFIG_LOCKDEP_CHAINS_BITS to 18 (cmurf) - Add new FIPS module name and version configs (Vladis Dronov) - redhat/configs/fedora: Make PowerPC's nx-gzip buildin (Jakub Čajka) - omit unused Provides (Dan Horák) - self-test: Add test for DIST=".eln" (Prarit Bhargava) - redhat: Enable CONFIG_LZ4_COMPRESS on Fedora (Prarit Bhargava) - fedora: armv7: enable MMC_STM32_SDMMC (Peter Robinson) - .gitlab-ci.yaml: Add test for dist-get-buildreqs target (Prarit Bhargava) - redhat/docs: Add information on build dependencies (Prarit Bhargava) - redhat/Makefile: Add better pass message for dist-get-buildreqs (Prarit Bhargava) - redhat/Makefile: Provide a better message for system-sb-certs (Prarit Bhargava) - redhat/Makefile: Change dist-buildreq-check to a non-blocking target (Prarit Bhargava) - create-data: Parallelize spec file data (Prarit Bhargava) - create-data.sh: Store SOURCES Makefile variable (Prarit Bhargava) - redhat/Makefile: Split up setup-source target (Prarit Bhargava) - create-data.sh: Redefine varfilename (Prarit Bhargava) - create-data.sh: Parallelize variable file creation (Prarit Bhargava) - redhat/configs: Enable CONFIG_LZ4_COMPRESS (Prarit Bhargava) - redhat/docs: Update brew information (Prarit Bhargava) - redhat/Makefile: Fix eln BUILD_TARGET (Prarit Bhargava) - redhat/Makefile: Set BUILD_TARGET for dist-brew (Prarit Bhargava) - kernel.spec.template: update (s390x) expoline.o path (Joe Lawrence) - fedora: enable BCM_NET_PHYPTP (Peter Robinson) - Fedora 5.19 configs update part 2 (Justin M. Forbes) - redhat/Makefile: Change fedora BUILD_TARGET (Prarit Bhargava) - New configs in security/keys (Fedora Kernel Team) - Fedora: arm: enable a pair of drivers (Peter Robinson) - redhat: make kernel-zfcpdump-core to not provide kernel-core/kernel (Herton R. Krzesinski) - redhat/configs: Enable QAT devices for arches other than x86 (Vladis Dronov) - Fedora 5.19 configs pt 1 (Justin M. Forbes) - redhat: Exclude cpufreq.h from kernel-headers (Patrick Talbert) - Add rtla subpackage for kernel-tools (Justin M. Forbes) - fedora: arm: enable a couple of QCom drivers (Peter Robinson) - redhat/Makefile: Deprecate BUILD_SCRATCH_TARGET (Prarit Bhargava) - redhat: enable CONFIG_DEVTMPFS_SAFE (Mark Langsdorf) - redhat/Makefile: Remove deprecated variables and targets (Prarit Bhargava) - Split partner modules into a sub-package (Alice Mitchell) - Enable kAFS and it's dependancies in RHEL (Alice Mitchell) - Enable Marvell OcteonTX2 crypto device in ARK (Vladis Dronov) - redhat/Makefile: Remove --scratch from BUILD_TARGET (Prarit Bhargava) - redhat/Makefile: Fix dist-brew and distg-brew targets (Prarit Bhargava) - fedora: arm64: Initial support for TI Keystone 3 (ARCH_K3) (Peter Robinson) - fedora: arm: enable Hardware Timestamping Engine support (Peter Robinson) - fedora: wireless: disable SiLabs and PureLiFi (Peter Robinson) - fedora: updates for 5.19 (Peter Robinson) - fedora: minor updates for Fedora configs (Peter Robinson) - configs/fedora: Enable the pinctrl SC7180 driver built-in (Enric Balletbo i Serra) - redhat/configs: enable CONFIG_DEBUG_NET for debug kernel (Hangbin Liu) - redhat/Makefile: Add SPECKABIVERSION variable (Prarit Bhargava) - redhat/self-test: Provide better failure output (Prarit Bhargava) - redhat/self-test: Reformat tests to kernel standard (Prarit Bhargava) - redhat/self-test: Add purpose and header to each test (Prarit Bhargava) - Drop outdated CRYPTO_ECDH configs (Vladis Dronov) - Brush up crypto SHA512 and USER configs (Vladis Dronov) - Brush up crypto ECDH and ECDSA configs (Vladis Dronov) - redhat/self-test: Update data set (Prarit Bhargava) - create-data.sh: Reduce specfile data output (Prarit Bhargava) - redhat/configs: restore/fix core INTEL_LPSS configs to be builtin again (Hans de Goede) - Enable CKI on os-build MRs only (Don Zickus) - self-test: Fixup Makefile contents test (Prarit Bhargava) - redhat/self-test: self-test data update (Prarit Bhargava) - redhat/self-test: Fix up create-data.sh to not report local variables (Prarit Bhargava) - redhat/configs/fedora: Enable a set of modules used on some x86 tablets (Hans de Goede) - redhat/configs: Make INTEL_SOC_PMIC_CHTDC_TI builtin (Hans de Goede) - redhat/configs/fedora: enable missing modules modules for Intel IPU3 camera support (Hans de Goede) - Common: minor cleanups (Peter Robinson) - fedora: some minor Fedora cleanups (Peter Robinson) - fedora: drop X86_PLATFORM_DRIVERS_DELL dupe (Peter Robinson) - redhat: change tools_make macro to avoid full override of variables in Makefile (Herton R. Krzesinski) - Fix typo in Makefile for Fedora Stable Versioning (Justin M. Forbes) - Remove duplicates from ark/generic/s390x/zfcpdump/ (Vladis Dronov) - Move common/debug/s390x/zfcpdump/ configs to ark/debug/s390x/zfcpdump/ (Vladis Dronov) - Move common/generic/s390x/zfcpdump/ configs to ark/generic/s390x/zfcpdump/ (Vladis Dronov) - Drop RCU_EXP_CPU_STALL_TIMEOUT to 0, we are not really android (Justin M. Forbes) - redhat/configs/README: Update the README (Prarit Bhargava) - redhat/docs: fix hyperlink typo (Patrick Talbert) - all: net: remove old NIC/ATM drivers that use virt_to_bus() (Peter Robinson) - Explicitly turn off CONFIG_KASAN_INLINE for ppc (Justin M. Forbes) - redhat/docs: Add a description of kernel naming (Prarit Bhargava) - Change CRYPTO_CHACHA_S390 from m to y (Justin M. Forbes) - enable CONFIG_NET_ACT_CTINFO in ark (Davide Caratti) - redhat/configs: enable CONFIG_SP5100_TCO (David Arcari) - redhat/configs: Set CONFIG_VIRTIO_IOMMU on x86_64 (Eric Auger) [2089765] - Turn off KASAN_INLINE for RHEL ppc in pending (Justin M. Forbes) - redhat/kernel.spec.template: update selftest data via "make dist-self-test-data" (Denys Vlasenko) - redhat/kernel.spec.template: remove stray *.hardlink-temporary files, if any (Denys Vlasenko) - Fix up ZSMALLOC config for s390 (Justin M. Forbes) - Turn on KASAN_OUTLINE for ppc debug (Justin M. Forbes) - Turn on KASAN_OUTLINE for PPC debug to avoid mismatch (Justin M. Forbes) - Fix up crypto config mistmatches (Justin M. Forbes) - Fix up config mismatches (Justin M. Forbes) - generic/fedora: cleanup and disable Lightning Moutain SoC (Peter Robinson) - redhat: Set SND_SOC_SOF_HDA_PROBES to =m (Patrick Talbert) - Fix versioning on stable Fedora (Justin M. Forbes) - Enable PAGE_POOL_STATS for arm only (Justin M. Forbes) - Revert "Merge branch 'fix-ci-20220523' into 'os-build'" (Patrick Talbert) - Flip CONFIG_RADIO_ADAPTERS to module for Fedora (Justin M. Forbes) - redhat/Makefile: Drop quotation marks around string definitions (Prarit Bhargava) - Fedora: arm: Updates for QCom devices (Peter Robinson) - Fedora arm and generic updates for 5.17 (Peter Robinson) - enable COMMON_CLK_SI5341 for Xilinx ZYNQ-MP (Peter Robinson) - Turn on CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING for Fedora (Justin M. Forbes) - redhat/self-test/data: Update data set (Prarit Bhargava) - Revert variable switch for lasttag (Justin M. Forbes) - redhat: Add self-tests to .gitlab-ci.yml (Prarit Bhargava) - redhat/self-test: Update data (Prarit Bhargava) - redhat/self-test: Unset Makefile variables (Prarit Bhargava) - redhat/self-test: Omit SHELL variable from test data (Prarit Bhargava) - Add CONFIG_EFI_DXE_MEM_ATTRIBUTES (Justin M. Forbes) - Update filter-modules for mlx5-vfio-pci (Justin M. Forbes) - Fedora configs for 5.18 (Justin M. Forbes) - self-test/data/create-data.sh: Avoid SINGLE_TARBALL warning (Prarit Bhargava) - redhat/Makefile: Rename PREBUILD to UPSTREAMBUILD (Prarit Bhargava) - redhat/Makefile: Rename BUILDID to LOCALVERSION (Prarit Bhargava) - redhat/Makefile: Fix dist-brew & distg-brew targets (Prarit Bhargava) - redhat/Makefile: Reorganize MARKER code (Prarit Bhargava) - redhat/scripts/new_release.sh: Use Makefile variables (Prarit Bhargava) - redhat/Makefile: Rename __YSTREAM and __ZSTREAM (Prarit Bhargava) - redhat/genspec.sh: Add comment about SPECBUILDID variable (Prarit Bhargava) - redhat/kernel.spec.template: Move genspec variables into one section (Prarit Bhargava) - redhat/kernel.spec.template: Remove kversion (Prarit Bhargava) - redhat/Makefile: Add SPECTARFILE_RELEASE comment (Prarit Bhargava) - redhat/Makefile: Rename RPMVERSION to BASEVERSION (Prarit Bhargava) - redhat/Makefile: Target whitespace cleanup (Prarit Bhargava) - redhat/Makefile: Move SPECRELEASE to genspec.sh (Prarit Bhargava) - redhat/Makefile: Add kernel-NVR comment (Prarit Bhargava) - redhat/Makefile: Use SPECFILE variable (Prarit Bhargava) - redhat/Makefile: Remove KEXTRAVERSION (Prarit Bhargava) - redhat: Enable VM kselftests (Nico Pache) [1978539] - redhat: enable CONFIG_TEST_VMALLOC for vm selftests (Nico Pache) - redhat: Enable HMM test to be used by the kselftest test suite (Nico Pache) - redhat/Makefile.variables: Change git hash length to default (Prarit Bhargava) - redhat/Makefile: Drop quotation marks around string definitions (Prarit Bhargava) - Turn on INTEGRITY_MACHINE_KEYRING for Fedora (Justin M. Forbes) - redhat/configs: fix CONFIG_INTEL_ISHTP_ECLITE (David Arcari) - redhat/configs: Fix rm warning on error (Prarit Bhargava) - Fix nightly merge CI (Don Zickus) - redhat/kernel.spec.template: fix standalone tools build (Jan Stancek) - Add system-sb-certs for RHEL-9 (Don Zickus) - Fix dist-buildcheck-reqs (Don Zickus) - move DAMON configs to correct directory (Chris von Recklinghausen) - redhat: indicate HEAD state in tarball/rpm name (Jarod Wilson) - Fedora 5.18 config set part 1 (Justin M. Forbes) - fedora: arm: Enable new Rockchip 356x series drivers (Peter Robinson) - fedora: arm: enable DRM_I2C_NXP_TDA998X on aarch64 (Peter Robinson) - redhat/self-test: Add test to verify Makefile declarations. (Prarit Bhargava) - redhat/Makefile: Add RHTEST (Prarit Bhargava) - redhat: shellcheck cleanup (Prarit Bhargava) - redhat/self-test/data: Cleanup data (Prarit Bhargava) - redhat/self-test: Add test to verify SPEC variables (Prarit Bhargava) - redhat/Makefile: Add 'duplicate' SPEC entries for user set variables (Prarit Bhargava) - redhat/Makefile: Rename TARFILE_RELEASE to SPECTARFILE_RELEASE (Prarit Bhargava) - redhat/genspec: Rename PATCHLIST_CHANGELOG to SPECPATCHLIST_CHANGELOG (Prarit Bhargava) - redhat/genspec: Rename DEBUG_BUILDS_ENABLED to SPECDEBUG_BUILDS_ENABLED (Prarit Bhargava) - redhat/Makefile: Rename PKGRELEASE to SPECBUILD (Prarit Bhargava) - redhat/genspec: Rename BUILDID_DEFINE to SPECBUILDID (Prarit Bhargava) - redhat/Makefile: Rename CHANGELOG to SPECCHANGELOG (Prarit Bhargava) - redhat/Makefile: Rename RPMKEXTRAVERSION to SPECKEXTRAVERSION (Prarit Bhargava) - redhat/Makefile: Rename RPMKSUBLEVEL to SPECKSUBLEVEL (Prarit Bhargava) - redhat/Makefile: Rename RPMKPATCHLEVEL to SPECKPATCHLEVEL (Prarit Bhargava) - redhat/Makefile: Rename RPMKVERSION to SPECKVERSION (Prarit Bhargava) - redhat/Makefile: Rename KVERSION to SPECVERSION (Prarit Bhargava) - redhat/Makefile: Deprecate some simple targets (Prarit Bhargava) - redhat/Makefile: Use KVERSION (Prarit Bhargava) - redhat/configs: Set GUP_TEST in debug kernel (Joel Savitz) - enable DAMON configs (Chris von Recklinghausen) [2004233] - redhat: add zstream switch for zstream release numbering (Herton R. Krzesinski) - redhat: change kabi tarballs to use the package release (Herton R. Krzesinski) - redhat: generate distgit changelog in genspec.sh as well (Herton R. Krzesinski) - redhat: make genspec prefer metadata from git notes (Herton R. Krzesinski) - redhat: use tags from git notes for zstream to generate changelog (Herton R. Krzesinski) - ARK: Remove code marking devices unmaintained (Peter Georg) - rh_message: Fix function name (Peter Georg) [2019377] - Turn on CONFIG_RANDOM_TRUST_BOOTLOADER (Justin M. Forbes) - redhat/configs: aarch64: enable CPU_FREQ_GOV_SCHEDUTIL (Mark Salter) - Move CONFIG_HW_RANDOM_CN10K to a proper place (Vladis Dronov) - redhat/self-test: Clean up data set (Prarit Bhargava) - redhat/Makefile.rhpkg: Remove quotes for RHDISTGIT (Prarit Bhargava) - redhat/scripts/create-tarball.sh: Use Makefile variables (Prarit Bhargava) - redhat/Makefile: Deprecate SINGLE_TARBALL (Prarit Bhargava) - redhat/Makefile: Move SINGLE_TARBALL to Makefile.variables (Prarit Bhargava) - redhat/Makefile: Use RPMVERSION (Prarit Bhargava) - redhat/scripts/rh-dist-git.sh: Use Makefile variables (Prarit Bhargava) - redhat/configs/build_configs.sh: Use Makefile variables (Prarit Bhargava) - redhat/configs/process_configs.sh: Use Makefile variables (Prarit Bhargava) - redhat/kernel.spec.template: Use RPM_BUILD_NCPUS (Prarit Bhargava) - redhat/configs/generate_all_configs.sh: Use Makefile variables (Prarit Bhargava) - redhat/configs: enable nf_tables SYNPROXY extension on ark (Davide Caratti) - fedora: Disable fbdev drivers missed before (Javier Martinez Canillas) - Redhat: enable Kfence on production servers (Nico Pache) - redhat: ignore known empty patches on the patches rpminspect test (Herton R. Krzesinski) - kernel-ark: arch_hw Update CONFIG_MOUSE_VSXXXAA=m (Tony Camuso) [2062909] - spec: keep .BTF section in modules for s390 (Yauheni Kaliuta) [2071969] - kernel.spec.template: Ship arch/s390/lib/expoline.o in kernel-devel (Ondrej Mosnacek) - redhat: disable tv/radio media device infrastructure (Jarod Wilson) - redhat/configs: clean up INTEL_LPSS configuration (David Arcari) - Have to rename the actual contents too (Justin M. Forbes) - The CONFIG_SATA_MOBILE_LPM_POLICY rebane was reverted (Justin M. Forbes) - redhat: Enable KASAN on all ELN debug kernels (Nico Pache) - redhat: configs: Enable INTEL_IOMMU_DEBUGFS for debug builds (Jerry Snitselaar) - generic: can: disable CAN_SOFTING everywhere (Peter Robinson) - redhat/configs: Enable CONFIG_DM_ERA=m for all (Yanko Kaneti) - redhat/configs: enable CONFIG_SAMPLE_VFIO_MDEV_MTTY (Patrick Talbert) - Build intel_sdsi with %%{tools_make} (Justin M. Forbes) - configs: remove redundant Fedora config for INTEL_IDXD_COMPAT (Jerry Snitselaar) - redhat/configs: enable CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT (Joel Savitz) [2026319] - configs: enable CONFIG_RMI4_F3A (Benjamin Tissoires) - redhat: configs: Disable TPM 1.2 specific drivers (Jerry Snitselaar) - redhat/configs: Enable cr50 I2C TPM interface (Akihiko Odaki) - spec: make HMAC file encode relative path (Jonathan Lebon) - redhat/kernel.spec.template: Add intel_sdsi utility (Prarit Bhargava) - Spec fixes for intel-speed-select (Justin M. Forbes) - Add Partner Supported taint flag to kAFS (Alice Mitchell) [2038999] - Add Partner Supported taint flag (Alice Mitchell) [2038999] - Enabled INTEGRITY_MACHINE_KEYRING for all configs. (Peter Robinson) - redhat/configs: Enable CONFIG_RCU_SCALE_TEST & CONFIG_RCU_REF_SCALE_TEST (Waiman Long) - Add clk_test and clk-gate_test to mod-internal.list (Justin M. Forbes) - redhat/self-tests: Ignore UPSTREAM (Prarit Bhargava) - redhat/self-tests: Ignore RHGITURL (Prarit Bhargava) - redhat/Makefile.variables: Extend git hash length to 15 (Prarit Bhargava) - redhat/self-test: Remove changelog from spec files (Prarit Bhargava) - redhat/genspec.sh: Rearrange genspec.sh (Prarit Bhargava) - redhat/self-test: Add spec file data (Prarit Bhargava) - redhat/self-test: Add better dist-dump-variables test (Prarit Bhargava) - redhat/self-test: Add variable test data (Prarit Bhargava) - redhat/config: Remove obsolete CONFIG_MFD_INTEL_PMT (David Arcari) - redhat/configs: enable CONFIG_INTEL_ISHTP_ECLITE (David Arcari) - Avoid creating files in $RPM_SOURCE_DIR (Nicolas Chauvet) - Flip CRC64 from off to y (Justin M. Forbes) - New configs in lib/Kconfig (Fedora Kernel Team) - disable redundant assignment of CONFIG_BQL on ARK (Davide Caratti) - redhat/configs: remove unnecessary GPIO options for aarch64 (Brian Masney) - redhat/configs: remove viperboard related Kconfig options (Brian Masney) - redhat/configs/process_configs.sh: Avoid race with find (Prarit Bhargava) - redhat/configs/process_configs.sh: Remove CONTINUEONERROR (Prarit Bhargava) - Remove i686 configs and filters (Justin M. Forbes) - redhat/configs: Set CONFIG_X86_AMD_PSTATE built-in on Fedora (Prarit Bhargava) - Fix up mismatch with CRC64 (Justin M. Forbes) - Fedora config updates to fix process_configs (Justin M. Forbes) - redhat: Fix release tagging (Prarit Bhargava) - redhat/self-test: Fix version tag test (Prarit Bhargava) - redhat/self-test: Fix BUILD verification test (Prarit Bhargava) - redhat/self-test: Cleanup SRPM related self-tests (Prarit Bhargava) - redhat/self-test: Fix shellcheck test (Prarit Bhargava) - redhat/configs: Disable watchdog components (Prarit Bhargava) - redhat/README.Makefile: Add a Makefile README file (Prarit Bhargava) - redhat/Makefile: Remove duplicated code (Prarit Bhargava) - Add BuildRequires libnl3-devel for intel-speed-select (Justin M. Forbes) - Add new kunit tests for 5.18 to mod-internal.list (Justin M. Forbes) - Fix RHDISTGIT for Fedora (Justin M. Forbes) - redhat/configs/process_configs.sh: Fix race with tools generation (Prarit Bhargava) - New configs in drivers/dax (Fedora Kernel Team) - Fix up CONFIG_SND_AMD_ACP_CONFIG files (Patrick Talbert) - Remove CONFIG_SND_SOC_SOF_DEBUG_PROBES files (Patrick Talbert) - SATA_MOBILE_LPM_POLICY is now SATA_LPM_POLICY (Justin M. Forbes) - Define SNAPSHOT correctly when VERSION_ON_UPSTREAM is 0 (Justin M. Forbes) - redhat/Makefile: Fix dist-git (Prarit Bhargava) - Change the pending-ark CONFIG_DAX to y due to mismatch (Justin M. Forbes) - Enable net reference count trackers in all debug kernels (Jiri Benc) - redhat/Makefile: Reorganize variables (Prarit Bhargava) - redhat/Makefile: Add some descriptions (Prarit Bhargava) - redhat/Makefile: Move SNAPSHOT check (Prarit Bhargava) - redhat/Makefile: Deprecate BREW_FLAGS, KOJI_FLAGS, and TEST_FLAGS (Prarit Bhargava) - redhat/genspec.sh: Rework RPMVERSION variable (Prarit Bhargava) - redhat/Makefile: Remove dead comment (Prarit Bhargava) - redhat/Makefile: Cleanup KABI* variables. (Prarit Bhargava) - redhat/Makefile.variables: Default RHGITCOMMIT to HEAD (Prarit Bhargava) - redhat/scripts/create-tarball.sh: Use Makefile TARBALL variable (Prarit Bhargava) - redhat/Makefile: Remove extra DIST_BRANCH (Prarit Bhargava) - redhat/Makefile: Remove STAMP_VERSION (Prarit Bhargava) - redhat/Makefile: Move NO_CONFIGCHECKS to Makefile.variables (Prarit Bhargava) - redhat/Makefile: Move RHJOBS to Makefile.variables (Prarit Bhargava) - redhat/Makefile: Move RHGIT* variables to Makefile.variables (Prarit Bhargava) - redhat/Makefile: Move PREBUILD_GIT_ONLY to Makefile.variables (Prarit Bhargava) - redhat/Makefile: Move BUILD to Makefile.variables (Prarit Bhargava) - redhat/Makefile: Move BUILD_FLAGS to Makefile.variables. (Prarit Bhargava) - redhat/Makefile: Move BUILD_PROFILE to Makefile.variables (Prarit Bhargava) - redhat/Makefile: Move BUILD_TARGET and BUILD_SCRATCH_TARGET to Makefile.variables (Prarit Bhargava) - redhat/Makefile: Remove RHPRODUCT variable (Prarit Bhargava) - redhat/Makefile: Cleanup DISTRO variable (Prarit Bhargava) - redhat/Makefile: Move HEAD to Makefile.variables. (Prarit Bhargava) - redhat: Combine Makefile and Makefile.common (Prarit Bhargava) - redhat/koji/Makefile: Decouple koji Makefile from Makefile.common (Prarit Bhargava) - Set CONFIG_SND_SOC_SOF_MT8195 for Fedora and turn on VDPA_SIM_BLOCK (Justin M. Forbes) - Add asus_wmi_sensors modules to filters for Fedora (Justin M. Forbes) - redhat: spec: trigger dracut when modules are installed separately (Jan Stancek) - Last of the Fedora 5.17 configs initial pass (Justin M. Forbes) - redhat/Makefile: Silence dist-clean-configs output (Prarit Bhargava) - Fedora 5.17 config updates (Justin M. Forbes) - Setting CONFIG_I2C_SMBUS to "m" for ark (Gopal Tiwari) - Print arch with process_configs errors (Justin M. Forbes) - Pass RHJOBS to process_configs for dist-configs-check as well (Justin M. Forbes) - redhat/configs/process_configs.sh: Fix issue with old error files (Prarit Bhargava) - redhat/configs/build_configs.sh: Parallelize execution (Prarit Bhargava) - redhat/configs/build_configs.sh: Provide better messages (Prarit Bhargava) - redhat/configs/build_configs.sh: Create unique output files (Prarit Bhargava) - redhat/configs/build_configs.sh: Add local variables (Prarit Bhargava) - redhat/configs/process_configs.sh: Parallelize execution (Prarit Bhargava) - redhat/configs/process_configs.sh: Provide better messages (Prarit Bhargava) - redhat/configs/process_configs.sh: Create unique output files (Prarit Bhargava) - redhat/configs/process_configs.sh: Add processing config function (Prarit Bhargava) - redhat: Unify genspec.sh and kernel.spec variable names (Prarit Bhargava) - redhat/genspec.sh: Remove options and use Makefile variables (Prarit Bhargava) - Add rebase note for 5.17 on Fedora stable (Justin M. Forbes) - More Fedora config updates for 5.17 (Justin M. Forbes) - redhat/configs: Disable CONFIG_MACINTOSH_DRIVERS in RHEL. (Prarit Bhargava) - redhat: Fix "make dist-release-finish" to use the correct NVR variables (Neal Gompa) [2053836] - Build CROS_EC Modules (Jason Montleon) - redhat: configs: change aarch64 default dma domain to lazy (Jerry Snitselaar) - redhat: configs: disable ATM protocols (Davide Caratti) - configs/fedora: Enable the interconnect SC7180 driver built-in (Enric Balletbo i Serra) - configs: clean up CONFIG_PAGE_TABLE_ISOLATION files (Ondrej Mosnacek) - redhat: configs: enable CONFIG_INTEL_PCH_THERMAL for RHEL x86 (David Arcari) - redhat/Makefile: Fix dist-dump-variables target (Prarit Bhargava) - redhat/configs: Enable DEV_DAX and DEV_DAX_PMEM modules on aarch64 for fedora (D Scott Phillips) - redhat/configs: Enable CONFIG_TRANSPARENT_HUGEPAGE on aarch64 for fedora (D Scott Phillips) - configs/process_configs.sh: Remove orig files (Prarit Bhargava) - redhat: configs: Disable CONFIG_MPLS for s390x/zfcpdump (Guillaume Nault) - Fedora 5.17 configs round 1 (Justin M. Forbes) - redhat: configs: disable the surface platform (David Arcari) - redhat: configs: Disable team driver (Hangbin Liu) [1945477] - configs: enable LOGITECH_FF for RHEL/CentOS too (Benjamin Tissoires) - redhat/configs: Disable CONFIG_SENSORS_NCT6683 in RHEL for arm/aarch64 (Dean Nelson) [2041186] - redhat: fix make {distg-brew,distg-koji} (Andrea Claudi) - [fedora] Turn on CONFIG_VIDEO_OV5693 for sensor support (Dave Olsthoorn) - Cleanup 'disabled' config options for RHEL (Prarit Bhargava) - redhat: move CONFIG_ARM64_MTE to aarch64 config directory (Herton R. Krzesinski) - Change CONFIG_TEST_BPF to a module (Justin M. Forbes) - Change CONFIG_TEST_BPF to module in pending MR coming for proper review (Justin M. Forbes) - redhat/configs: Enable CONFIG_TEST_BPF (Viktor Malik) - Enable KUNIT tests for testing (Nico Pache) - Makefile: Check PKGRELEASE size on dist-brew targets (Prarit Bhargava) - kernel.spec: Add glibc-static build requirement (Prarit Bhargava) - Enable iSER on s390x (Stefan Schulze Frielinghaus) - redhat/configs: Enable CONFIG_ACER_WIRELESS (Peter Georg) [2025985] - kabi: Add kABI macros for enum type (Čestmír Kalina) [2024595] - kabi: expand and clarify documentation of aux structs (Čestmír Kalina) [2024595] - kabi: introduce RH_KABI_USE_AUX_PTR (Čestmír Kalina) [2024595] - kabi: rename RH_KABI_SIZE_AND_EXTEND to AUX (Čestmír Kalina) [2024595] - kabi: more consistent _RH_KABI_SIZE_AND_EXTEND (Čestmír Kalina) [2024595] - kabi: use fixed field name for extended part (Čestmír Kalina) [2024595] - kabi: fix dereference in RH_KABI_CHECK_EXT (Čestmír Kalina) [2024595] - kabi: fix RH_KABI_SET_SIZE macro (Čestmír Kalina) [2024595] - kabi: expand and clarify documentation (Čestmír Kalina) [2024595] - kabi: make RH_KABI_USE replace any number of reserved fields (Čestmír Kalina) [2024595] - kabi: rename RH_KABI_USE2 to RH_KABI_USE_SPLIT (Čestmír Kalina) [2024595] - kabi: change RH_KABI_REPLACE2 to RH_KABI_REPLACE_SPLIT (Čestmír Kalina) [2024595] - kabi: change RH_KABI_REPLACE_UNSAFE to RH_KABI_BROKEN_REPLACE (Čestmír Kalina) [2024595] - kabi: introduce RH_KABI_ADD_MODIFIER (Čestmír Kalina) [2024595] - kabi: Include kconfig.h (Čestmír Kalina) [2024595] - kabi: macros for intentional kABI breakage (Čestmír Kalina) [2024595] - kabi: fix the note about terminating semicolon (Čestmír Kalina) [2024595] - kabi: introduce RH_KABI_HIDE_INCLUDE and RH_KABI_FAKE_INCLUDE (Čestmír Kalina) [2024595] - spec: don't overwrite auto.conf with .config (Ondrej Mosnacek) - New configs in drivers/crypto (Fedora Kernel Team) - Add test_hash to the mod-internal.list (Justin M. Forbes) - configs: disable CONFIG_CRAMFS (Abhi Das) [2041184] - spec: speed up "cp -r" when it overwrites existing files. (Denys Vlasenko) - redhat: use centos x509.genkey file if building under centos (Herton R. Krzesinski) - Revert "[redhat] Generate a crashkernel.default for each kernel build" (Coiby Xu) - spec: make linux-firmware weak(er) dependency (Jan Stancek) - rtw89: enable new driver rtw89 and device RTK8852AE (Íñigo Huguet) - Config consolidation into common (Justin M. Forbes) - Add packaged but empty /lib/modules//systemtap/ (Justin M. Forbes) - filter-modules.sh.rhel: Add ntc_thermistor to singlemods (Prarit Bhargava) - Move CONFIG_SND_SOC_TLV320AIC31XX as it is now selected by CONFIG_SND_SOC_FSL_ASOC_CARD (Justin M. Forbes) - Add dev_addr_lists_test to mod-internal.list (Justin M. Forbes) - configs/fedora: Enable CONFIG_NFC_PN532_UART for use PN532 NFC module (Ziqian SUN (Zamir)) - redhat: ignore ksamples and kselftests on the badfuncs rpminspect test (Herton R. Krzesinski) - redhat: disable upstream check for rpminspect (Herton R. Krzesinski) - redhat: switch the vsyscall config to CONFIG_LEGACY_VSYSCALL_XONLY=y (Herton R. Krzesinski) [1876977] - redhat: configs: increase CONFIG_DEBUG_KMEMLEAK_MEM_POOL_SIZE (Rafael Aquini) - move CONFIG_STRICT_SIGALTSTACK_SIZE to the appropriate directory (David Arcari) - redhat/configs: Enable CONFIG_DM_MULTIPATH_IOA for fedora (Benjamin Marzinski) - redhat/configs: Enable CONFIG_DM_MULTIPATH_HST (Benjamin Marzinski) [2000835] - redhat: Pull in openssl-devel as a build dependency correctly (Neal Gompa) [2034670] - redhat/configs: Migrate ZRAM_DEF_* configs to common/ (Neal Gompa) - redhat/configs: Enable CONFIG_CRYPTO_ZSTD (Neal Gompa) [2032758] - Turn CONFIG_DEVMEM back off for aarch64 (Justin M. Forbes) - Clean up excess text in Fedora config files (Justin M. Forbes) - Fedora config updates for 5.16 (Justin M. Forbes) - redhat/configs: enable CONFIG_INPUT_KEYBOARD for AARCH64 (Vitaly Kuznetsov) - Fedora configs for 5.16 pt 1 (Justin M. Forbes) - redhat/configs: NFS: disable UDP, insecure enctypes (Benjamin Coddington) [1952863] - Update rebase-notes with dracut 5.17 information (Justin M. Forbes) - redhat/configs: Enable CONFIG_CRYPTO_BLAKE2B (Neal Gompa) [2031547] - Enable CONFIG_BPF_SYSCALL for zfcpdump (Jiri Olsa) - Enable CONFIG_CIFS_SMB_DIRECT for ARK (Ronnie Sahlberg) - mt76: enable new device MT7921E in CentOs/RHEL (Íñigo Huguet) [2004821] - Disable CONFIG_DEBUG_PREEMPT on normal builds (Phil Auld) - redhat/configs: Enable CONFIG_PCI_P2PDMA for ark (Myron Stowe) - pci.h: Fix static include (Prarit Bhargava) - Enable CONFIG_VFIO_NOIOMMU for Fedora (Justin M. Forbes) - redhat/configs: enable CONFIG_NTB_NETDEV for ark (John W. Linville) - drivers/pci/pci-driver.c: Fix if/ifdef typo (Prarit Bhargava) - common: arm64: ensure all the required arm64 errata are enabled (Peter Robinson) - kernel/rh_taint.c: Update to new messaging (Prarit Bhargava) [2019377] - redhat/configs: enable CONFIG_AMD_PTDMA for ark (John W. Linville) - redhat/configs: enable CONFIG_RD_ZSTD for rhel (Tao Liu) [2020132] - fedora: build TEE as a module for all arches (Peter Robinson) - common: build TRUSTED_KEYS in everywhere (Peter Robinson) - redhat: make Patchlist.changelog generation conditional (Herton R. Krzesinski) - redhat/configs: Add two new CONFIGs (Prarit Bhargava) - redhat/configs: Remove dead CONFIG files (Prarit Bhargava) - redhat/configs/evaluate_configs: Add find dead configs option (Prarit Bhargava) - Add more rebase notes for Fedora 5.16 (Justin M. Forbes) - Fedora: Feature: Retire wireless Extensions (Peter Robinson) - fedora: arm: some SoC enablement pieces (Peter Robinson) - fedora: arm: enable PCIE_ROCKCHIP_DW for rk35xx series (Peter Robinson) - fedora: enable RTW89 802.11 WiFi driver (Peter Robinson) - fedora: arm: Enable DRM_PANEL_EDP (Peter Robinson) - fedora: sound: enable new sound drivers (Peter Robinson) - redhat/configs: unset KEXEC_SIG for s390x zfcpdump (Coiby Xu) - spec: Keep .BTF section in modules (Jiri Olsa) - Fix up PREEMPT configs (Justin M. Forbes) - New configs in drivers/media (Fedora Kernel Team) - New configs in drivers/net/ethernet/litex (Fedora Kernel Team) - spec: add bpf_testmod.ko to kselftests/bpf (Viktor Malik) - New configs in drivers/net/wwan (Fedora Kernel Team) - New configs in drivers/i2c (Fedora Kernel Team) - redhat/docs/index.rst: Add local build information. (Prarit Bhargava) - Fix up preempt configs (Justin M. Forbes) - Turn on CONFIG_HID_NINTENDO for controller support (Dave Olsthoorn) - Fedora: Enable MediaTek bluetooth pieces (Peter Robinson) - Add rebase notes to check for PCI patches (Justin M. Forbes) - redhat: configs: move CONFIG_ACCESSIBILITY from fedora to common (John W. Linville) - Filter updates for hid-playstation on Fedora (Justin M. Forbes) - Enable CONFIG_VIRT_DRIVERS for ARK (Vitaly Kuznetsov) - redhat/configs: Enable Nitro Enclaves on aarch64 (Vitaly Kuznetsov) - Enable e1000 in rhel9 as unsupported (Ken Cox) [2002344] - Turn on COMMON_CLK_AXG_AUDIO for Fedora rhbz 2020481 (Justin M. Forbes) - Fix up fedora config options from mismatch (Justin M. Forbes) - Add nct6775 to filter-modules.sh.rhel (Justin M. Forbes) - Enable PREEMPT_DYNAMIC for all but s390x (Justin M. Forbes) - Add memcpy_kunit to mod-internal.list (Justin M. Forbes) - New configs in fs/ksmbd (Fedora Kernel Team) - Add nct6775 to Fedora filter-modules.sh (Justin M. Forbes) - New configs in fs/ntfs3 (Fedora Kernel Team) - Make CONFIG_IOMMU_DEFAULT_DMA_STRICT default for all but x86 (Justin M. Forbes) - redhat/configs: enable KEXEC_IMAGE_VERIFY_SIG for RHEL (Coiby Xu) - redhat/configs: enable KEXEC_SIG for aarch64 RHEL (Coiby Xu) [1994858] - Fix up fedora and pending configs for PREEMPT to end mismatch (Justin M. Forbes) - Enable binder for fedora (Justin M. Forbes) - redhat: configs: Update configs for vmware (Kamal Heib) - Fedora configs for 5.15 (Justin M. Forbes) - redhat/kernel.spec.template: don't hardcode gcov arches (Jan Stancek) - redhat/configs: create a separate config for gcov options (Jan Stancek) - Update documentation with FAQ and update frequency (Don Zickus) - Document force pull option for mirroring (Don Zickus) - Ignore the rhel9 kabi files (Don Zickus) - Remove legacy elrdy cruft (Don Zickus) - redhat/configs/evaluate_configs: walk cfgvariants line by line (Jan Stancek) - redhat/configs/evaluate_configs: insert EMPTY tags at correct place (Jan Stancek) - redhat: make dist-srpm-gcov add to BUILDOPTS (Jan Stancek) - Build CONFIG_SPI_PXA2XX as a module on x86 (Justin M. Forbes) - redhat/configs: enable CONFIG_BCMGENET as module (Joel Savitz) - Fedora config updates (Justin M. Forbes) - Enable CONFIG_FAIL_SUNRPC for debug builds (Justin M. Forbes) - fedora: Disable fbdev drivers and use simpledrm instead (Javier Martinez Canillas) - spec: Don't fail spec build if ksamples fails (Jiri Olsa) - Enable CONFIG_QCOM_SCM for arm (Justin M. Forbes) - redhat: Disable clang's integrated assembler on ppc64le and s390x (Tom Stellard) - redhat/configs: enable CONFIG_IMA_WRITE_POLICY (Bruno Meneguele) - Fix dist-srpm-gcov (Don Zickus) - redhat: configs: add CONFIG_NTB and related items (John W. Linville) - Add kfence_test to mod-internal.list (Justin M. Forbes) - Enable KUNIT tests for redhat kernel-modules-internal (Nico Pache) - redhat: add *-matched meta packages to rpminspect emptyrpm config (Herton R. Krzesinski) - Use common config for NODES_SHIFT (Mark Salter) - redhat: fix typo and make the output more silent for dist-git sync (Herton R. Krzesinski) - Fedora NTFS config updates (Justin M. Forbes) - Fedora 5.15 configs part 1 (Justin M. Forbes) - Fix ordering in genspec args (Justin M. Forbes) - redhat/configs: Enable Hyper-V guests on ARM64 (Vitaly Kuznetsov) [2007430] - redhat: configs: Enable CONFIG_THINKPAD_LMI (Hans de Goede) - redhat/docs: update Koji link to avoid redirect (Joel Savitz) - redhat: add support for different profiles with dist*-brew (Herton R. Krzesinski) - redhat: configs: Disable xtables and ipset (Phil Sutter) [1945179] - redhat: Add mark_driver_deprecated() (Phil Sutter) [1945179] - Change s390x CONFIG_NODES_SHIFT from 4 to 1 (Justin M. Forbes) - Build CRYPTO_SHA3_*_S390 inline for s390 zfcpdump (Justin M. Forbes) - redhat: move the DIST variable setting to Makefile.variables (Herton R. Krzesinski) - redhat/kernel.spec.template: Cleanup source numbering (Prarit Bhargava) - redhat/kernel.spec.template: Reorganize RHEL and Fedora specific files (Prarit Bhargava) - redhat/kernel.spec.template: Add include_fedora and include_rhel variables (Prarit Bhargava) - redhat/Makefile: Make kernel-local global (Prarit Bhargava) - redhat/Makefile: Use flavors file (Prarit Bhargava) - Turn on CONFIG_CPU_FREQ_GOV_SCHEDUTIL for x86 (Justin M. Forbes) - redhat/configs: Remove CONFIG_INFINIBAND_I40IW (Kamal Heib) - cleanup CONFIG_X86_PLATFORM_DRIVERS_INTEL (David Arcari) - redhat: rename usage of .rhel8git.mk to .rhpkg.mk (Herton R. Krzesinski) - Manually add pending items that need to be set due to mismatch (Justin M. Forbes) - Clean up pending common (Justin M. Forbes) - redhat/configs: Enable CONFIG_BLK_CGROUP_IOLATENCY & CONFIG_BLK_CGROUP_FC_APPID (Waiman Long) [2006813] - redhat: remove kernel.changelog-8.99 file (Herton R. Krzesinski) - redhat/configs: enable CONFIG_SQUASHFS_ZSTD which is already enabled in Fedora 34 (Tao Liu) [1998953] - redhat: bump RHEL_MAJOR and add the changelog file for it (Herton R. Krzesinski) - redhat: add documentation about the os-build rebase process (Herton R. Krzesinski) - redhat/configs: enable SYSTEM_BLACKLIST_KEYRING which is already enabled in rhel8 and Fedora 34 (Coiby Xu) - Build kernel-doc for Fedora (Justin M. Forbes) - x86_64: Enable Elkhart Lake Quadrature Encoder Peripheral support (Prarit Bhargava) - Update CONFIG_WERROR to disabled as it can cause issue with out of tree modules. (Justin M. Forbes) - Fixup IOMMU configs in pending so that configs are sane again (Justin M. Forbes) - Some initial Fedora config items for 5.15 (Justin M. Forbes) - arm64: use common CONFIG_MAX_ZONEORDER for arm kernel (Mark Salter) - Create Makefile.variables for a single point of configuration change (Justin M. Forbes) - rpmspec: drop traceevent files instead of just excluding them from files list (Herton R. Krzesinski) [1967640] - redhat/config: Enablement of CONFIG_PAPR_SCM for PowerPC (Gustavo Walbon) [1962936] - Attempt to fix Intel PMT code (David Arcari) - CI: Enable realtime branch testing (Veronika Kabatova) - CI: Enable realtime checks for c9s and RHEL9 (Veronika Kabatova) - ark: wireless: enable all rtw88 pcie wirless variants (Peter Robinson) - wireless: rtw88: move debug options to common/debug (Peter Robinson) - fedora: minor PTP clock driver cleanups (Peter Robinson) - common: x86: enable VMware PTP support on ark (Peter Robinson) - [scsi] megaraid_sas: re-add certain pci-ids (Tomas Henzl) - Disable liquidio driver on ark/rhel (Herton R. Krzesinski) [1993393] - More Fedora config updates (Justin M. Forbes) - Fedora config updates for 5.14 (Justin M. Forbes) - CI: Rename ARK CI pipeline type (Veronika Kabatova) - CI: Finish up c9s config (Veronika Kabatova) - CI: Update ppc64le config (Veronika Kabatova) - CI: use more templates (Veronika Kabatova) - Filter updates for aarch64 (Justin M. Forbes) - increase CONFIG_NODES_SHIFT for aarch64 (Chris von Recklinghausen) [1890304] - redhat: configs: Enable CONFIG_WIRELESS_HOTKEY (Hans de Goede) - redhat/configs: Update CONFIG_NVRAM (Desnes A. Nunes do Rosario) [1988254] - common: serial: build in SERIAL_8250_LPSS for x86 (Peter Robinson) - powerpc: enable CONFIG_FUNCTION_PROFILER (Diego Domingos) [1831065] - redhat/configs: Disable Soft-RoCE driver (Kamal Heib) - redhat/configs/evaluate_configs: Update help output (Prarit Bhargava) - redhat/configs: Double MAX_LOCKDEP_CHAINS (Justin M. Forbes) - fedora: configs: Fix WM5102 Kconfig (Hans de Goede) - powerpc: enable CONFIG_POWER9_CPU (Diego Domingos) [1876436] - redhat/configs: Fix CONFIG_VIRTIO_IOMMU to 'y' on aarch64 (Eric Auger) [1972795] - filter-modules.sh: add more sound modules to filter (Jaroslav Kysela) - redhat/configs: sound configuration cleanups and updates (Jaroslav Kysela) - common: Update for CXL (Compute Express Link) configs (Peter Robinson) - redhat: configs: disable CRYPTO_SM modules (Herton R. Krzesinski) [1990040] - Remove fedora version of the LOCKDEP_BITS, we should use common (Justin M. Forbes) - Re-enable sermouse for x86 (rhbz 1974002) (Justin M. Forbes) - Fedora 5.14 configs round 1 (Justin M. Forbes) - redhat: add gating configuration for centos stream/rhel9 (Herton R. Krzesinski) - x86: configs: Enable CONFIG_TEST_FPU for debug kernels (Vitaly Kuznetsov) [1988384] - redhat/configs: Move CHACHA and POLY1305 to core kernel to allow BIG_KEYS=y (root) [1983298] - kernel.spec: fix build of samples/bpf (Jiri Benc) - Enable OSNOISE_TRACER and TIMERLAT_TRACER (Jerome Marchand) [1979379] - rpmspec: switch iio and gpio tools to use tools_make (Herton R. Krzesinski) [1956988] - configs/process_configs.sh: Handle config items with no help text (Patrick Talbert) - fedora: sound config updates for 5.14 (Peter Robinson) - fedora: Only enable FSI drivers on POWER platform (Peter Robinson) - The CONFIG_RAW_DRIVER has been removed from upstream (Peter Robinson) - fedora: updates for 5.14 with a few disables for common from pending (Peter Robinson) - fedora: migrate from MFD_TPS68470 -> INTEL_SKL_INT3472 (Peter Robinson) - fedora: Remove STAGING_GASKET_FRAMEWORK (Peter Robinson) - Fedora: move DRM_VMWGFX configs from ark -> common (Peter Robinson) - fedora: arm: disabled unused FB drivers (Peter Robinson) - fedora: don't enable FB_VIRTUAL (Peter Robinson) - redhat/configs: Double MAX_LOCKDEP_ENTRIES (Waiman Long) [1940075] - rpmspec: fix verbose output on kernel-devel installation (Herton R. Krzesinski) [1981406] - Build Fedora x86s kernels with bytcr-wm5102 (Marius Hoch) - Deleted redhat/configs/fedora/generic/x86/CONFIG_FB_HYPERV (Patrick Lang) - rpmspec: correct the ghost initramfs attributes (Herton R. Krzesinski) [1977056] - rpmspec: amend removal of depmod created files to include modules.builtin.alias.bin (Herton R. Krzesinski) [1977056] - configs: remove duplicate CONFIG_DRM_HYPERV file (Patrick Talbert) - CI: use common code for merge and release (Don Zickus) - rpmspec: add release string to kernel doc directory name (Jan Stancek) - redhat/configs: Add CONFIG_INTEL_PMT_CRASHLOG (Michael Petlan) [1880486] - redhat/configs: Add CONFIG_INTEL_PMT_TELEMETRY (Michael Petlan) [1880486] - redhat/configs: Add CONFIG_MFD_INTEL_PMT (Michael Petlan) [1880486] - redhat/configs: enable CONFIG_BLK_DEV_ZONED (Ming Lei) [1638087] - Add --with clang_lto option to build the kernel with Link Time Optimizations (Tom Stellard) - common: disable DVB_AV7110 and associated pieces (Peter Robinson) - Fix fedora-only config updates (Don Zickus) - Fedor config update for new option (Justin M. Forbes) - redhat/configs: Enable stmmac NIC for x86_64 (Mark Salter) - all: hyperv: use the DRM driver rather than FB (Peter Robinson) - all: hyperv: unify the Microsoft HyperV configs (Peter Robinson) - all: VMWare: clean up VMWare configs (Peter Robinson) - Update CONFIG_ARM_FFA_TRANSPORT (Patrick Talbert) - CI: Handle all mirrors (Veronika Kabatova) - Turn on CONFIG_STACKTRACE for s390x zfpcdump kernels (Justin M. Forbes) - arm64: switch ark kernel to 4K pagesize (Mark Salter) - Disable AMIGA_PARTITION and KARMA_PARTITION (Prarit Bhargava) [1802694] - all: unify and cleanup i2c TPM2 modules (Peter Robinson) - redhat/configs: Set CONFIG_VIRTIO_IOMMU on aarch64 (Eric Auger) [1972795] - redhat/configs: Disable CONFIG_RT_GROUP_SCHED in rhel config (Phil Auld) - redhat/configs: enable KEXEC_SIG which is already enabled in RHEL8 for s390x and x86_64 (Coiby Xu) [1976835] - rpmspec: do not BuildRequires bpftool on noarch (Herton R. Krzesinski) - redhat/configs: disable {IMA,EVM}_LOAD_X509 (Bruno Meneguele) [1977529] - redhat: add secureboot CA certificate to trusted kernel keyring (Bruno Meneguele) - redhat/configs: enable IMA_ARCH_POLICY for aarch64 and s390x (Bruno Meneguele) - redhat/configs: Enable CONFIG_MLXBF_GIGE on aarch64 (Alaa Hleihel) [1858599] - common: enable STRICT_MODULE_RWX everywhere (Peter Robinson) - COMMON_CLK_STM32MP157_SCMI is bool and selects COMMON_CLK_SCMI (Justin M. Forbes) - kernel.spec: Add kernel{,-debug}-devel-matched meta packages (Timothée Ravier) - Turn off with_selftests for Fedora (Justin M. Forbes) - Don't build bpftool on Fedora (Justin M. Forbes) - Fix location of syscall scripts for kernel-devel (Justin M. Forbes) - fedora: arm: Enable some i.MX8 options (Peter Robinson) - Enable Landlock for Fedora (Justin M. Forbes) - Filter update for Fedora aarch64 (Justin M. Forbes) - rpmspec: only build debug meta packages where we build debug ones (Herton R. Krzesinski) - rpmspec: do not BuildRequires bpftool on nobuildarches (Herton R. Krzesinski) - redhat/configs: Consolidate CONFIG_HMC_DRV in the common s390x folder (Thomas Huth) [1976270] - redhat/configs: Consolidate CONFIG_EXPOLINE_OFF in the common folder (Thomas Huth) [1976270] - redhat/configs: Move CONFIG_HW_RANDOM_S390 into the s390x/ subfolder (Thomas Huth) [1976270] - redhat/configs: Disable CONFIG_HOTPLUG_PCI_SHPC in the Fedora settings (Thomas Huth) [1976270] - redhat/configs: Remove the non-existent CONFIG_NO_BOOTMEM switch (Thomas Huth) [1976270] - redhat/configs: Compile the virtio-console as a module on s390x (Thomas Huth) [1976270] - redhat/configs: Enable CONFIG_S390_CCW_IOMMU and CONFIG_VFIO_CCW for ARK, too (Thomas Huth) [1976270] - Revert "Merge branch 'ec_fips' into 'os-build'" (Vladis Dronov) [1947240] - Fix typos in fedora filters (Justin M. Forbes) - More filtering for Fedora (Justin M. Forbes) - Fix Fedora module filtering for spi-altera-dfl (Justin M. Forbes) - Fedora 5.13 config updates (Justin M. Forbes) - fedora: cleanup TCG_TIS_I2C_CR50 (Peter Robinson) - fedora: drop duplicate configs (Peter Robinson) - More Fedora config updates for 5.13 (Justin M. Forbes) - redhat/configs: Enable needed drivers for BlueField SoC on aarch64 (Alaa Hleihel) [1858592 1858594 1858596] - redhat: Rename mod-blacklist.sh to mod-denylist.sh (Prarit Bhargava) - redhat/configs: enable CONFIG_NET_ACT_MPLS (Marcelo Ricardo Leitner) - configs: Enable CONFIG_DEBUG_KERNEL for zfcpdump (Jiri Olsa) - kernel.spec: Add support to use vmlinux.h (Don Zickus) - spec: Add vmlinux.h to kernel-devel package (Jiri Olsa) - Turn off DRM_XEN_FRONTEND for Fedora as we had DRM_XEN off already (Justin M. Forbes) - Fedora 5.13 config updates pt 3 (Justin M. Forbes) - all: enable ath11k wireless modules (Peter Robinson) - all: Enable WWAN and associated MHI bus pieces (Peter Robinson) - spec: Enable sefltests rpm build (Jiri Olsa) - spec: Allow bpf selftest/samples to fail (Jiri Olsa) - kvm: Add kvm_stat.service file and kvm_stat logrotate config to the tools (Jiri Benc) - kernel.spec: Add missing source files to kernel-selftests-internal (Jiri Benc) - kernel.spec: selftests: add net/forwarding to TARGETS list (Jiri Benc) - kernel.spec: selftests: add build requirement on libmnl-devel (Jiri Benc) - kernel.spec: add action.o to kernel-selftests-internal (Jiri Benc) - kernel.spec: avoid building bpftool repeatedly (Jiri Benc) - kernel.spec: selftests require python3 (Jiri Benc) - kernel.spec: skip selftests that failed to build (Jiri Benc) - kernel.spec: fix installation of bpf selftests (Jiri Benc) - redhat: fix samples and selftests make options (Jiri Benc) - kernel.spec: enable mptcp selftests for kernel-selftests-internal (Jiri Benc) - kernel.spec: Do not export shared objects from libexecdir to RPM Provides (Jiri Benc) - kernel.spec: add missing dependency for the which package (Jiri Benc) - kernel.spec: add netfilter selftests to kernel-selftests-internal (Jiri Benc) - kernel.spec: move slabinfo and page_owner_sort debuginfo to tools-debuginfo (Jiri Benc) - kernel.spec: package and ship VM tools (Jiri Benc) - configs: enable CONFIG_PAGE_OWNER (Jiri Benc) - kernel.spec: add coreutils (Jiri Benc) - kernel.spec: add netdevsim driver selftests to kernel-selftests-internal (Jiri Benc) - redhat/Makefile: Clean out the --without flags from the baseonly rule (Jiri Benc) - kernel.spec: Stop building unnecessary rpms for baseonly builds (Jiri Benc) - kernel.spec: disable more kabi switches for gcov build (Jiri Benc) - kernel.spec: Rename kabi-dw base (Jiri Benc) - kernel.spec: Fix error messages during build of zfcpdump kernel (Jiri Benc) - kernel.spec: perf: remove bpf examples (Jiri Benc) - kernel.spec: selftests should not depend on modules-internal (Jiri Benc) - kernel.spec: build samples (Jiri Benc) - kernel.spec: tools: sync missing options with RHEL 8 (Jiri Benc) - redhat/configs: nftables: Enable extra flowtable symbols (Phil Sutter) - redhat/configs: Sync netfilter options with RHEL8 (Phil Sutter) - Fedora 5.13 config updates pt 2 (Justin M. Forbes) - Move CONFIG_ARCH_INTEL_SOCFPGA up a level for Fedora (Justin M. Forbes) - fedora: enable the Rockchip rk3399 pcie drivers (Peter Robinson) - Fedora 5.13 config updates pt 1 (Justin M. Forbes) - Fix version requirement from opencsd-devel buildreq (Justin M. Forbes) - configs/ark/s390: set CONFIG_MARCH_Z14 and CONFIG_TUNE_Z15 (Philipp Rudo) [1876435] - configs/common/s390: Clean up CONFIG_{MARCH,TUNE}_Z* (Philipp Rudo) - configs/process_configs.sh: make use of dummy-tools (Philipp Rudo) - configs/common: disable CONFIG_INIT_STACK_ALL_{PATTERN,ZERO} (Philipp Rudo) - configs/common/aarch64: disable CONFIG_RELR (Philipp Rudo) - redhat/config: enable STMICRO nic for RHEL (Mark Salter) - redhat/configs: Enable ARCH_TEGRA on RHEL (Mark Salter) - redhat/configs: enable IMA_KEXEC for supported arches (Bruno Meneguele) - redhat/configs: enable INTEGRITY_SIGNATURE to all arches (Bruno Meneguele) - configs: enable CONFIG_LEDS_BRIGHTNESS_HW_CHANGED (Benjamin Tissoires) - RHEL: disable io_uring support (Jeff Moyer) [1964537] - all: Changing CONFIG_UV_SYSFS to build uv_sysfs.ko as a loadable module. (Frank Ramsay) - Enable NITRO_ENCLAVES on RHEL (Vitaly Kuznetsov) - Update the Quick Start documentation (David Ward) - redhat/configs: Set PVPANIC_MMIO for x86 and PVPANIC_PCI for aarch64 (Eric Auger) [1961178] - bpf: Fix unprivileged_bpf_disabled setup (Jiri Olsa) - Enable CONFIG_BPF_UNPRIV_DEFAULT_OFF (Jiri Olsa) - configs/common/s390: disable CONFIG_QETH_{OSN,OSX} (Philipp Rudo) [1903201] - nvme: nvme_mpath_init remove multipath check (Mike Snitzer) - Make CRYPTO_EC also builtin (Simo Sorce) [1947240] - Do not hard-code a default value for DIST (David Ward) - Override %%{debugbuildsenabled} if the --with-release option is used (David Ward) - Improve comments in SPEC file, and move some option tests and macros (David Ward) - configs: enable CONFIG_EXFAT_FS (Pavel Reichl) [1943423] - Revert s390x/zfcpdump part of a9d179c40281 and ecbfddd98621 (Vladis Dronov) - Embed crypto algos, modes and templates needed in the FIPS mode (Vladis Dronov) [1947240] - configs: Add and enable CONFIG_HYPERV_TESTING for debug kernels (Mohammed Gamal) - configs: enable CONFIG_CMA on x86_64 in ARK (David Hildenbrand) [1945002] - rpmspec: build debug-* meta-packages if debug builds are disabled (Herton R. Krzesinski) - UIO: disable unused config options (Aristeu Rozanski) [1957819] - ARK-config: Make amd_pinctrl module builtin (Hans de Goede) - rpmspec: revert/drop content hash for kernel-headers (Herton R. Krzesinski) - rpmspec: fix check that calls InitBuildVars (Herton R. Krzesinski) - fedora: enable zonefs (Damien Le Moal) - redhat: load specific ARCH keys to INTEGRITY_PLATFORM_KEYRING (Bruno Meneguele) - redhat: enable INTEGRITY_TRUSTED_KEYRING across all variants (Bruno Meneguele) - redhat: enable SYSTEM_BLACKLIST_KEYRING across all variants (Bruno Meneguele) - redhat: enable INTEGRITY_ASYMMETRIC_KEYS across all variants (Bruno Meneguele) - Remove unused boot loader specification files (David Ward) - redhat/configs: Enable mlx5 IPsec and TLS offloads (Alaa Hleihel) [1869674 1957636] - common: disable Apple Silicon generally (Peter Robinson) - cleanup Intel's FPGA configs (Peter Robinson) - common: move PTP KVM support from ark to common (Peter Robinson) - Enable CONFIG_DRM_AMDGPU_USERPTR for everyone (Justin M. Forbes) - redhat: add initial rpminspect configuration (Herton R. Krzesinski) - fedora: arm updates for 5.13 (Peter Robinson) - fedora: Enable WWAN and associated MHI bits (Peter Robinson) - Update CONFIG_MODPROBE_PATH to /usr/sbin (Justin Forbes) - Fedora set modprobe path (Justin M. Forbes) - Keep sctp and l2tp modules in modules-extra (Don Zickus) - Fix ppc64le cross build packaging (Don Zickus) - Fedora: Make amd_pinctrl module builtin (Hans de Goede) - Keep CONFIG_KASAN_HW_TAGS off for aarch64 debug configs (Justin M. Forbes) - New configs in drivers/bus (Fedora Kernel Team) - RHEL: Don't build KVM PR module on ppc64 (David Gibson) [1930649] - Flip CONFIG_USB_ROLE_SWITCH from m to y (Justin M. Forbes) - Set valid options for CONFIG_FW_LOADER_USER_HELPER (Justin M. Forbes) - Clean up CONFIG_FB_MODE_HELPERS (Justin M. Forbes) - Turn off CONFIG_VFIO for the s390x zfcpdump kernel (Justin M. Forbes) - Delete unused CONFIG_SND_SOC_MAX98390 pending-common (Justin M. Forbes) - Update pending-common configs, preparing to set correctly (Justin M. Forbes) - Update fedora filters for surface (Justin M. Forbes) - Build CONFIG_CRYPTO_ECDSA inline for s390x zfcpdump (Justin M. Forbes) - Replace "flavour" where "variant" is meant instead (David Ward) - Drop the %%{variant} macro and fix --with-vanilla (David Ward) - Fix syntax of %%kernel_variant_files (David Ward) - Change description of --without-vdso-install to fix typo (David Ward) - Config updates to work around mismatches (Justin M. Forbes) - CONFIG_SND_SOC_FSL_ASOC_CARD selects CONFIG_MFD_WM8994 now (Justin M. Forbes) - wireguard: disable in FIPS mode (Hangbin Liu) [1940794] - Enable mtdram for fedora (rhbz 1955916) (Justin M. Forbes) - Remove reference to bpf-helpers man page (Justin M. Forbes) - Fedora: enable more modules for surface devices (Dave Olsthoorn) - Fix Fedora config mismatch for CONFIG_FSL_ENETC_IERB (Justin M. Forbes) - hardlink is in /usr/bin/ now (Justin M. Forbes) - Ensure CONFIG_KVM_BOOK3S_64_PR stays on in Fedora, even if it is turned off in RHEL (Justin M. Forbes) - Set date in package release from repository commit, not system clock (David Ward) - Use a better upstream tarball filename for snapshots (David Ward) - Don't create empty pending-common files on pending-fedora commits (Don Zickus) - nvme: decouple basic ANA log page re-read support from native multipathing (Mike Snitzer) - nvme: allow local retry and proper failover for REQ_FAILFAST_TRANSPORT (Mike Snitzer) - nvme: Return BLK_STS_TARGET if the DNR bit is set (Mike Snitzer) - Add redhat/configs/pending-common/generic/s390x/zfcpdump/CONFIG_NETFS_SUPPORT (Justin M. Forbes) - Create ark-latest branch last for CI scripts (Don Zickus) - Replace /usr/libexec/platform-python with /usr/bin/python3 (David Ward) - Turn off ADI_AXI_ADC and AD9467 which now require CONFIG_OF (Justin M. Forbes) - Export ark infrastructure files (Don Zickus) - docs: Update docs to reflect newer workflow. (Don Zickus) - Use upstream/master for merge-base with fallback to master (Don Zickus) - Fedora: Turn off the SND_INTEL_BYT_PREFER_SOF option (Hans de Goede) - filter-modules.sh.fedora: clean up "netprots" (Paul Bolle) - filter-modules.sh.fedora: clean up "scsidrvs" (Paul Bolle) - filter-*.sh.fedora: clean up "ethdrvs" (Paul Bolle) - filter-*.sh.fedora: clean up "driverdirs" (Paul Bolle) - filter-*.sh.fedora: remove incorrect entries (Paul Bolle) - filter-*.sh.fedora: clean up "singlemods" (Paul Bolle) - filter-modules.sh.fedora: drop unused list "iiodrvs" (Paul Bolle) - Update mod-internal to fix depmod issue (Nico Pache) - Turn on CONFIG_VDPA_SIM_NET (rhbz 1942343) (Justin M. Forbes) - New configs in drivers/power (Fedora Kernel Team) - Turn on CONFIG_NOUVEAU_DEBUG_PUSH for debug configs (Justin M. Forbes) - Turn off KFENCE sampling by default for Fedora (Justin M. Forbes) - Fedora config updates round 2 (Justin M. Forbes) - New configs in drivers/soc (Jeremy Cline) - filter-modules.sh: Fix copy/paste error 'input' (Paul Bolle) - Update module filtering for 5.12 kernels (Justin M. Forbes) - Fix genlog.py to ensure that comments retain "%%" characters. (Mark Mielke) - New configs in drivers/leds (Fedora Kernel Team) - Limit CONFIG_USB_CDNS_SUPPORT to x86_64 and arm in Fedora (David Ward) - Fedora: Enable CHARGER_GPIO on aarch64 too (Peter Robinson) - Fedora config updates (Justin M. Forbes) - configs: enable CONFIG_WIREGUARD in ARK (Hangbin Liu) [1613522] - Remove duplicate configs acroos fedora, ark and common (Don Zickus) - Combine duplicate configs across ark and fedora into common (Don Zickus) - common/ark: cleanup and unify the parport configs (Peter Robinson) - iommu/vt-d: enable INTEL_IDXD_SVM for both fedora and rhel (Jerry Snitselaar) - REDHAT: coresight: etm4x: Disable coresight on HPE Apollo 70 (Jeremy Linton) - configs/common/generic: disable CONFIG_SLAB_MERGE_DEFAULT (Rafael Aquini) - Remove _legacy_common_support (Justin M. Forbes) - redhat/mod-blacklist.sh: Fix floppy blacklisting (Hans de Goede) - New configs in fs/pstore (CKI@GitLab) - New configs in arch/powerpc (Fedora Kernel Team) - configs: enable BPF LSM on Fedora and ARK (Ondrej Mosnacek) - configs: clean up LSM configs (Ondrej Mosnacek) - New configs in drivers/platform (CKI@GitLab) - New configs in drivers/firmware (CKI@GitLab) - New configs in drivers/mailbox (Fedora Kernel Team) - New configs in drivers/net/phy (Justin M. Forbes) - Update CONFIG_DM_MULTIPATH_IOA (Augusto Caringi) - New configs in mm/Kconfig (CKI@GitLab) - New configs in arch/powerpc (Jeremy Cline) - New configs in arch/powerpc (Jeremy Cline) - New configs in drivers/input (Fedora Kernel Team) - New configs in net/bluetooth (Justin M. Forbes) - New configs in drivers/clk (Fedora Kernel Team) - New configs in init/Kconfig (Jeremy Cline) - redhat: allow running fedora-configs and rh-configs targets outside of redhat/ (Herton R. Krzesinski) - all: unify the disable of goldfish (android emulation platform) (Peter Robinson) - common: minor cleanup/de-dupe of dma/dmabuf debug configs (Peter Robinson) - common/ark: these drivers/arches were removed in 5.12 (Peter Robinson) - Correct kernel-devel make prepare build for 5.12. (Paulo E. Castro) - redhat: add initial support for centos stream dist-git sync on Makefiles (Herton R. Krzesinski) - redhat/configs: Enable CONFIG_SCHED_STACK_END_CHECK for Fedora and ARK (Josh Poimboeuf) [1856174] - CONFIG_VFIO now selects IOMMU_API instead of depending on it, causing several config mismatches for the zfcpdump kernel (Justin M. Forbes) - Turn off weak-modules for Fedora (Justin M. Forbes) - redhat: enable CONFIG_FW_LOADER_COMPRESS for ARK (Herton R. Krzesinski) [1939095] - Fedora: filters: update to move dfl-emif to modules (Peter Robinson) - drop duplicate DEVFREQ_GOV_SIMPLE_ONDEMAND config (Peter Robinson) - efi: The EFI_VARS is legacy and now x86 only (Peter Robinson) - common: enable RTC_SYSTOHC to supplement update_persistent_clock64 (Peter Robinson) - generic: arm: enable SCMI for all options (Peter Robinson) - fedora: the PCH_CAN driver is x86-32 only (Peter Robinson) - common: disable legacy CAN device support (Peter Robinson) - common: Enable Microchip MCP251x/MCP251xFD CAN controllers (Peter Robinson) - common: Bosch MCAN support for Intel Elkhart Lake (Peter Robinson) - common: enable CAN_PEAK_PCIEFD PCI-E driver (Peter Robinson) - common: disable CAN_PEAK_PCIEC PCAN-ExpressCard (Peter Robinson) - common: enable common CAN layer 2 protocols (Peter Robinson) - ark: disable CAN_LEDS option (Peter Robinson) - Fedora: Turn on SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC option (Hans de Goede) - Fedora: enable modules for surface devices (Dave Olsthoorn) - Turn on SND_SOC_INTEL_SOUNDWIRE_SOF_MACH for Fedora again (Justin M. Forbes) - common: fix WM8804 codec dependencies (Peter Robinson) - Build SERIO_SERPORT as a module (Peter Robinson) - input: touchscreen: move ELO and Wacom serial touchscreens to x86 (Peter Robinson) - Sync serio touchscreens for non x86 architectures to the same as ARK (Peter Robinson) - Only enable SERIO_LIBPS2 on x86 (Peter Robinson) - Only enable PC keyboard controller and associated keyboard on x86 (Peter Robinson) - Generic: Mouse: Tweak generic serial mouse options (Peter Robinson) - Only enable PS2 Mouse options on x86 (Peter Robinson) - Disable bluetooth highspeed by default (Peter Robinson) - Fedora: A few more general updates for 5.12 window (Peter Robinson) - Fedora: Updates for 5.12 merge window (Peter Robinson) - Fedora: remove dead options that were removed upstream (Peter Robinson) - redhat: remove CONFIG_DRM_PANEL_XINGBANGDA_XBD599 (Herton R. Krzesinski) - New configs in arch/powerpc (Fedora Kernel Team) - Turn on CONFIG_PPC_QUEUED_SPINLOCKS as it is default upstream now (Justin M. Forbes) - Update pending-common configs to address new upstream config deps (Justin M. Forbes) - rpmspec: ship gpio-watch.debug in the proper debuginfo package (Herton R. Krzesinski) - Removed description text as a comment confuses the config generation (Justin M. Forbes) - New configs in drivers/dma-buf (Jeremy Cline) - Fedora: ARMv7: build for 16 CPUs. (Peter Robinson) - Fedora: only enable DEBUG_HIGHMEM on debug kernels (Peter Robinson) - process_configs.sh: fix find/xargs data flow (Ondrej Mosnacek) - Fedora config update (Justin M. Forbes) - fedora: minor arm sound config updates (Peter Robinson) - Fix trailing white space in redhat/configs/fedora/generic/CONFIG_SND_INTEL_BYT_PREFER_SOF (Justin M. Forbes) - Add a redhat/rebase-notes.txt file (Hans de Goede) - Turn on SND_INTEL_BYT_PREFER_SOF for Fedora (Hans de Goede) - CI: Drop MR ID from the name variable (Veronika Kabatova) - redhat: add DUP and kpatch certificates to system trusted keys for RHEL build (Herton R. Krzesinski) - The comments in CONFIG_USB_RTL8153_ECM actually turn off CONFIG_USB_RTL8152 (Justin M. Forbes) - Update CKI pipeline project (Veronika Kabatova) - Turn off additional KASAN options for Fedora (Justin M. Forbes) - Rename the master branch to rawhide for Fedora (Justin M. Forbes) - Makefile targets for packit integration (Ben Crocker) - Turn off KASAN for rawhide debug builds (Justin M. Forbes) - New configs in arch/arm64 (Justin Forbes) - Remove deprecated Intel MIC config options (Peter Robinson) - redhat: replace inline awk script with genlog.py call (Herton R. Krzesinski) - redhat: add genlog.py script (Herton R. Krzesinski) - kernel.spec.template - fix use_vdso usage (Ben Crocker) - redhat: remove remaining references of CONFIG_RH_DISABLE_DEPRECATED (Herton R. Krzesinski) - Turn off vdso_install for ppc (Justin M. Forbes) - Remove bpf-helpers.7 from bpftool package (Jiri Olsa) - New configs in lib/Kconfig.debug (Fedora Kernel Team) - Turn off CONFIG_VIRTIO_CONSOLE for s390x zfcpdump (Justin M. Forbes) - New configs in drivers/clk (Justin M. Forbes) - Keep VIRTIO_CONSOLE on s390x available. (Jakub Čajka) - New configs in lib/Kconfig.debug (Jeremy Cline) - Fedora 5.11 config updates part 4 (Justin M. Forbes) - Fedora 5.11 config updates part 3 (Justin M. Forbes) - Fedora 5.11 config updates part 2 (Justin M. Forbes) - Update internal (test) module list from RHEL-8 (Joe Lawrence) [1915073] - Fix USB_XHCI_PCI regression (Justin M. Forbes) - fedora: fixes for ARMv7 build issue by disabling HIGHPTE (Peter Robinson) - all: s390x: Increase CONFIG_PCI_NR_FUNCTIONS to 512 (#1888735) (Dan Horák) - Fedora 5.11 configs pt 1 (Justin M. Forbes) - redhat: avoid conflict with mod-blacklist.sh and released_kernel defined (Herton R. Krzesinski) - redhat: handle certificate files conditionally as done for src.rpm (Herton R. Krzesinski) - specfile: add %%{?_smp_mflags} to "make headers_install" in tools/testing/selftests (Denys Vlasenko) - specfile: add %%{?_smp_mflags} to "make samples/bpf/" (Denys Vlasenko) - Run MR testing in CKI pipeline (Veronika Kabatova) - Reword comment (Nicolas Chauvet) - Add with_cross_arm conditional (Nicolas Chauvet) - Redefines __strip if with_cross (Nicolas Chauvet) - fedora: only enable ACPI_CONFIGFS, ACPI_CUSTOM_METHOD in debug kernels (Peter Robinson) - fedora: User the same EFI_CUSTOM_SSDT_OVERLAYS as ARK (Peter Robinson) - all: all arches/kernels enable the same DMI options (Peter Robinson) - all: move SENSORS_ACPI_POWER to common/generic (Peter Robinson) - fedora: PCIE_HISI_ERR is already in common (Peter Robinson) - all: all ACPI platforms enable ATA_ACPI so move it to common (Peter Robinson) - all: x86: move shared x86 acpi config options to generic (Peter Robinson) - All: x86: Move ACPI_VIDEO to common/x86 (Peter Robinson) - All: x86: Enable ACPI_DPTF (Intel DPTF) (Peter Robinson) - All: enable ACPI_BGRT for all ACPI platforms. (Peter Robinson) - All: Only build ACPI_EC_DEBUGFS for debug kernels (Peter Robinson) - All: Disable Intel Classmate PC ACPI_CMPC option (Peter Robinson) - cleanup: ACPI_PROCFS_POWER was removed upstream (Peter Robinson) - All: ACPI: De-dupe the ACPI options that are the same across ark/fedora on x86/arm (Peter Robinson) - Enable the vkms module in Fedora (Jeremy Cline) - Fedora: arm updates for 5.11 and general cross Fedora cleanups (Peter Robinson) - Add gcc-c++ to BuildRequires (Justin M. Forbes) - Update CONFIG_KASAN_HW_TAGS (Justin M. Forbes) - fedora: arm: move generic power off/reset to all arm (Peter Robinson) - fedora: ARMv7: build in DEVFREQ_GOV_SIMPLE_ONDEMAND until I work out why it's changed (Peter Robinson) - fedora: cleanup joystick_adc (Peter Robinson) - fedora: update some display options (Peter Robinson) - fedora: arm: enable TI PRU options (Peter Robinson) - fedora: arm: minor exynos plaform updates (Peter Robinson) - arm: SoC: disable Toshiba Visconti SoC (Peter Robinson) - common: disable ARCH_BCM4908 (NFC) (Peter Robinson) - fedora: minor arm config updates (Peter Robinson) - fedora: enable Tegra 234 SoC (Peter Robinson) - fedora: arm: enable new Hikey 3xx options (Peter Robinson) - Fedora: USB updates (Peter Robinson) - fedora: enable the GNSS receiver subsystem (Peter Robinson) - Remove POWER_AVS as no longer upstream (Peter Robinson) - Cleanup RESET_RASPBERRYPI (Peter Robinson) - Cleanup GPIO_CDEV_V1 options. (Peter Robinson) - fedora: arm crypto updates (Peter Robinson) - CONFIG_KASAN_HW_TAGS for aarch64 (Justin M. Forbes) - Fedora: cleanup PCMCIA configs, move to x86 (Peter Robinson) - New configs in drivers/rtc (Fedora Kernel Team) - redhat/configs: Enable CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL (Josh Poimboeuf) [1856176] - redhat/configs: Enable CONFIG_GCC_PLUGIN_STRUCTLEAK (Josh Poimboeuf) [1856176] - redhat/configs: Enable CONFIG_GCC_PLUGINS on ARK (Josh Poimboeuf) [1856176] - redhat/configs: Enable CONFIG_KASAN on Fedora (Josh Poimboeuf) [1856176] - New configs in init/Kconfig (Fedora Kernel Team) - build_configs.sh: Fix syntax flagged by shellcheck (Ben Crocker) - genspec.sh: Fix syntax flagged by shellcheck (Ben Crocker) - mod-blacklist.sh: Fix syntax flagged by shellcheck (Ben Crocker) - Enable Speakup accessibility driver (Justin M. Forbes) - New configs in init/Kconfig (Fedora Kernel Team) - Fix fedora config mismatch due to dep changes (Justin M. Forbes) - New configs in drivers/crypto (Jeremy Cline) - Remove duplicate ENERGY_MODEL configs (Peter Robinson) - This is selected by PCIE_QCOM so must match (Justin M. Forbes) - drop unused BACKLIGHT_GENERIC (Peter Robinson) - Remove cp instruction already handled in instruction below. (Paulo E. Castro) - Add all the dependencies gleaned from running `make prepare` on a bloated devel kernel. (Paulo E. Castro) - Add tools to path mangling script. (Paulo E. Castro) - Remove duplicate cp statement which is also not specific to x86. (Paulo E. Castro) - Correct orc_types failure whilst running `make prepare` https://bugzilla.redhat.com/show_bug.cgi?id=1882854 (Paulo E. Castro) - redhat: ark: enable CONFIG_IKHEADERS (Jiri Olsa) - Add missing '$' sign to (GIT) in redhat/Makefile (Augusto Caringi) - Remove filterdiff and use native git instead (Don Zickus) - New configs in net/sched (Justin M. Forbes) - New configs in drivers/mfd (CKI@GitLab) - New configs in drivers/mfd (Fedora Kernel Team) - New configs in drivers/firmware (Fedora Kernel Team) - Temporarily backout parallel xz script (Justin M. Forbes) - redhat: explicitly disable CONFIG_IMA_APPRAISE_SIGNED_INIT (Bruno Meneguele) - redhat: enable CONFIG_EVM_LOAD_X509 on ARK (Bruno Meneguele) - redhat: enable CONFIG_EVM_ATTR_FSUUID on ARK (Bruno Meneguele) - redhat: enable CONFIG_EVM in all arches and flavors (Bruno Meneguele) - redhat: enable CONFIG_IMA_LOAD_X509 on ARK (Bruno Meneguele) - redhat: set CONFIG_IMA_DEFAULT_HASH to SHA256 (Bruno Meneguele) - redhat: enable CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT (Bruno Meneguele) - redhat: enable CONFIG_IMA_READ_POLICY on ARK (Bruno Meneguele) - redhat: set default IMA template for all ARK arches (Bruno Meneguele) - redhat: enable CONFIG_IMA_DEFAULT_HASH_SHA256 for all flavors (Bruno Meneguele) - redhat: disable CONFIG_IMA_DEFAULT_HASH_SHA1 (Bruno Meneguele) - redhat: enable CONFIG_IMA_ARCH_POLICY for ppc and x86 (Bruno Meneguele) - redhat: enable CONFIG_IMA_APPRAISE_MODSIG (Bruno Meneguele) - redhat: enable CONFIG_IMA_APPRAISE_BOOTPARAM (Bruno Meneguele) - redhat: enable CONFIG_IMA_APPRAISE (Bruno Meneguele) - redhat: enable CONFIG_INTEGRITY for aarch64 (Bruno Meneguele) - kernel: Update some missing KASAN/KCSAN options (Jeremy Linton) - kernel: Enable coresight on aarch64 (Jeremy Linton) - Update CONFIG_INET6_ESPINTCP (Justin Forbes) - New configs in net/ipv6 (Justin M. Forbes) - fedora: move CONFIG_RTC_NVMEM options from ark to common (Peter Robinson) - configs: Enable CONFIG_DEBUG_INFO_BTF (Don Zickus) - fedora: some minor arm audio config tweaks (Peter Robinson) - Ship xpad with default modules on Fedora and RHEL (Bastien Nocera) - Fedora: Only enable legacy serial/game port joysticks on x86 (Peter Robinson) - Fedora: Enable the options required for the Librem 5 Phone (Peter Robinson) - Fedora config update (Justin M. Forbes) - Fedora config change because CONFIG_FSL_DPAA2_ETH now selects CONFIG_FSL_XGMAC_MDIO (Justin M. Forbes) - redhat: generic enable CONFIG_INET_MPTCP_DIAG (Davide Caratti) - Fedora config update (Justin M. Forbes) - Enable NANDSIM for Fedora (Justin M. Forbes) - Re-enable CONFIG_ACPI_TABLE_UPGRADE for Fedora since upstream disables this if secureboot is active (Justin M. Forbes) - Ath11k related config updates (Justin M. Forbes) - Fedora config updates for ath11k (Justin M. Forbes) - Turn on ATH11K for Fedora (Justin M. Forbes) - redhat: enable CONFIG_INTEL_IOMMU_SVM (Jerry Snitselaar) - More Fedora config fixes (Justin M. Forbes) - Fedora 5.10 config updates (Justin M. Forbes) - Fedora 5.10 configs round 1 (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - Allow kernel-tools to build without selftests (Don Zickus) - Allow building of kernel-tools standalone (Don Zickus) - redhat: ark: disable CONFIG_NET_ACT_CTINFO (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_TEQL (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_SFB (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_QFQ (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_PLUG (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_PIE (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_HHF (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_DSMARK (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_DRR (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_CODEL (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_CHOKE (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_CBQ (Davide Caratti) - redhat: ark: disable CONFIG_NET_SCH_ATM (Davide Caratti) - redhat: ark: disable CONFIG_NET_EMATCH and sub-targets (Davide Caratti) - redhat: ark: disable CONFIG_NET_CLS_TCINDEX (Davide Caratti) - redhat: ark: disable CONFIG_NET_CLS_RSVP6 (Davide Caratti) - redhat: ark: disable CONFIG_NET_CLS_RSVP (Davide Caratti) - redhat: ark: disable CONFIG_NET_CLS_ROUTE4 (Davide Caratti) - redhat: ark: disable CONFIG_NET_CLS_BASIC (Davide Caratti) - redhat: ark: disable CONFIG_NET_ACT_SKBMOD (Davide Caratti) - redhat: ark: disable CONFIG_NET_ACT_SIMP (Davide Caratti) - redhat: ark: disable CONFIG_NET_ACT_NAT (Davide Caratti) - arm64/defconfig: Enable CONFIG_KEXEC_FILE (Bhupesh Sharma) [1821565] - redhat/configs: Cleanup CONFIG_CRYPTO_SHA512 (Prarit Bhargava) - New configs in drivers/mfd (Fedora Kernel Team) - Fix LTO issues with kernel-tools (Don Zickus) - Point pathfix to the new location for gen_compile_commands.py (Justin M. Forbes) - configs: Disable CONFIG_SECURITY_SELINUX_DISABLE (Ondrej Mosnacek) - [Automatic] Handle config dependency changes (Don Zickus) - configs/iommu: Add config comment to empty CONFIG_SUN50I_IOMMU file (Jerry Snitselaar) - New configs in kernel/trace (Fedora Kernel Team) - Fix Fedora config locations (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - configs: enable CONFIG_CRYPTO_CTS=y so cts(cbc(aes)) is available in FIPS mode (Vladis Dronov) [1855161] - Partial revert: Add master merge check (Don Zickus) - Update Maintainers doc to reflect workflow changes (Don Zickus) - WIP: redhat/docs: Update documentation for single branch workflow (Prarit Bhargava) - Add CONFIG_ARM64_MTE which is not picked up by the config scripts for some reason (Justin M. Forbes) - Disable Speakup synth DECEXT (Justin M. Forbes) - Enable Speakup for Fedora since it is out of staging (Justin M. Forbes) - Modify patchlist changelog output (Don Zickus) - process_configs.sh: Fix syntax flagged by shellcheck (Ben Crocker) - generate_all_configs.sh: Fix syntax flagged by shellcheck (Ben Crocker) - redhat/self-test: Initial commit (Ben Crocker) - arch/x86: Remove vendor specific CPU ID checks (Prarit Bhargava) - redhat: Replace hardware.redhat.com link in Unsupported message (Prarit Bhargava) [1810301] - x86: Fix compile issues with rh_check_supported() (Don Zickus) - KEYS: Make use of platform keyring for module signature verify (Robert Holmes) - Input: rmi4 - remove the need for artificial IRQ in case of HID (Benjamin Tissoires) - ARM: tegra: usb no reset (Peter Robinson) - arm: make CONFIG_HIGHPTE optional without CONFIG_EXPERT (Jon Masters) - redhat: rh_kabi: deduplication friendly structs (Jiri Benc) - redhat: rh_kabi add a comment with warning about RH_KABI_EXCLUDE usage (Jiri Benc) - redhat: rh_kabi: introduce RH_KABI_EXTEND_WITH_SIZE (Jiri Benc) - redhat: rh_kabi: Indirect EXTEND macros so nesting of other macros will resolve. (Don Dutile) - redhat: rh_kabi: Fix RH_KABI_SET_SIZE to use dereference operator (Tony Camuso) - redhat: rh_kabi: Add macros to size and extend structs (Prarit Bhargava) - Removing Obsolete hba pci-ids from rhel8 (Dick Kennedy) [1572321] - mptsas: pci-id table changes (Laura Abbott) - mptsas: Taint kernel if mptsas is loaded (Laura Abbott) - mptspi: pci-id table changes (Laura Abbott) - qla2xxx: Remove PCI IDs of deprecated adapter (Jeremy Cline) - be2iscsi: remove unsupported device IDs (Chris Leech) [1574502 1598366] - mptspi: Taint kernel if mptspi is loaded (Laura Abbott) - hpsa: remove old cciss-based smartarray pci ids (Joseph Szczypek) [1471185] - qla4xxx: Remove deprecated PCI IDs from RHEL 8 (Chad Dupuis) [1518874] - aacraid: Remove depreciated device and vendor PCI id's (Raghava Aditya Renukunta) [1495307] - megaraid_sas: remove deprecated pci-ids (Tomas Henzl) [1509329] - mpt*: remove certain deprecated pci-ids (Jeremy Cline) - kernel: add SUPPORT_REMOVED kernel taint (Tomas Henzl) [1602033] - Rename RH_DISABLE_DEPRECATED to RHEL_DIFFERENCES (Don Zickus) - s390: Lock down the kernel when the IPL secure flag is set (Jeremy Cline) - efi: Lock down the kernel if booted in secure boot mode (David Howells) - efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode (David Howells) - security: lockdown: expose a hook to lock the kernel down (Jeremy Cline) - Make get_cert_list() use efi_status_to_str() to print error messages. (Peter Jones) - Add efi_status_to_str() and rework efi_status_to_err(). (Peter Jones) - Add support for deprecating processors (Laura Abbott) [1565717 1595918 1609604 1610493] - arm: aarch64: Drop the EXPERT setting from ARM64_FORCE_52BIT (Jeremy Cline) - iommu/arm-smmu: workaround DMA mode issues (Laura Abbott) - rh_kabi: introduce RH_KABI_EXCLUDE (Jakub Racek) [1652256] - ipmi: do not configure ipmi for HPE m400 (Laura Abbott) [1670017] - kABI: Add generic kABI macros to use for kABI workarounds (Myron Stowe) [1546831] - add pci_hw_vendor_status() (Maurizio Lombardi) [1590829] - ahci: thunderx2: Fix for errata that affects stop engine (Robert Richter) [1563590] - Vulcan: AHCI PCI bar fix for Broadcom Vulcan early silicon (Robert Richter) [1563590] - bpf: set unprivileged_bpf_disabled to 1 by default, add a boot parameter (Eugene Syromiatnikov) [1561171] - add Red Hat-specific taint flags (Eugene Syromiatnikov) [1559877] - tags.sh: Ignore redhat/rpm (Jeremy Cline) - put RHEL info into generated headers (Laura Abbott) [1663728] - aarch64: acpi scan: Fix regression related to X-Gene UARTs (Mark Salter) [1519554] - ACPI / irq: Workaround firmware issue on X-Gene based m400 (Mark Salter) [1519554] - modules: add rhelversion MODULE_INFO tag (Laura Abbott) - ACPI: APEI: arm64: Ignore broken HPE moonshot APEI support (Al Stone) [1518076] - Add Red Hat tainting (Laura Abbott) [1565704 1652266] - Introduce CONFIG_RH_DISABLE_DEPRECATED (Laura Abbott) - Stop merging ark-patches for release (Don Zickus) - Fix path location for ark-update-configs.sh (Don Zickus) - Combine Red Hat patches into single patch (Don Zickus) - New configs in drivers/misc (Jeremy Cline) - New configs in drivers/net/wireless (Justin M. Forbes) - New configs in drivers/phy (Fedora Kernel Team) - New configs in drivers/tty (Fedora Kernel Team) - Set SquashFS decompression options for all flavors to match RHEL (Bohdan Khomutskyi) - configs: Enable CONFIG_ENERGY_MODEL (Phil Auld) - New configs in drivers/pinctrl (Fedora Kernel Team) - Update CONFIG_THERMAL_NETLINK (Justin Forbes) - Separate merge-upstream and release stages (Don Zickus) - Re-enable CONFIG_IR_SERIAL on Fedora (Prarit Bhargava) - Create Patchlist.changelog file (Don Zickus) - Filter out upstream commits from changelog (Don Zickus) - Merge Upstream script fixes (Don Zickus) - kernel.spec: Remove kernel-keys directory on rpm erase (Prarit Bhargava) - Add mlx5_vdpa to module filter for Fedora (Justin M. Forbes) - Add python3-sphinx_rtd_theme buildreq for docs (Justin M. Forbes) - redhat/configs/process_configs.sh: Remove *.config.orig files (Prarit Bhargava) - redhat/configs/process_configs.sh: Add process_configs_known_broken flag (Prarit Bhargava) - redhat/Makefile: Fix '*-configs' targets (Prarit Bhargava) - dist-merge-upstream: Checkout known branch for ci scripts (Don Zickus) - kernel.spec: don't override upstream compiler flags for ppc64le (Dan Horák) - Fedora config updates (Justin M. Forbes) - Fedora confi gupdate (Justin M. Forbes) - mod-sign.sh: Fix syntax flagged by shellcheck (Ben Crocker) - Swap how ark-latest is built (Don Zickus) - Add extra version bump to os-build branch (Don Zickus) - dist-release: Avoid needless version bump. (Don Zickus) - Add dist-fedora-release target (Don Zickus) - Remove redundant code in dist-release (Don Zickus) - Makefile.common rename TAG to _TAG (Don Zickus) - Fedora config change (Justin M. Forbes) - Fedora filter update (Justin M. Forbes) - Config update for Fedora (Justin M. Forbes) - enable PROTECTED_VIRTUALIZATION_GUEST for all s390x kernels (Dan Horák) - redhat: ark: enable CONFIG_NET_SCH_TAPRIO (Davide Caratti) - redhat: ark: enable CONFIG_NET_SCH_ETF (Davide Caratti) - More Fedora config updates (Justin M. Forbes) - New config deps (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - First half of config updates for Fedora (Justin M. Forbes) - Updates for Fedora arm architectures for the 5.9 window (Peter Robinson) - Merge 5.9 config changes from Peter Robinson (Justin M. Forbes) - Add config options that only show up when we prep on arm (Justin M. Forbes) - Config updates for Fedora (Justin M. Forbes) - fedora: enable enery model (Peter Robinson) - Use the configs/generic config for SND_HDA_INTEL everywhere (Peter Robinson) - Enable ZSTD compression algorithm on all kernels (Peter Robinson) - Enable ARM_SMCCC_SOC_ID on all aarch64 kernels (Peter Robinson) - iio: enable LTR-559 light and proximity sensor (Peter Robinson) - iio: chemical: enable some popular chemical and partical sensors (Peter Robinson) - More mismatches (Justin M. Forbes) - Fedora config change due to deps (Justin M. Forbes) - CONFIG_SND_SOC_MAX98390 is now selected by SND_SOC_INTEL_DA7219_MAX98357A_GENERIC (Justin M. Forbes) - Config change required for build part 2 (Justin M. Forbes) - Config change required for build (Justin M. Forbes) - Fedora config update (Justin M. Forbes) - Add ability to sync upstream through Makefile (Don Zickus) - Add master merge check (Don Zickus) - Replace hardcoded values 'os-build' and project id with variables (Don Zickus) - redhat/Makefile.common: Fix MARKER (Prarit Bhargava) - gitattributes: Remove unnecesary export restrictions (Prarit Bhargava) - Add new certs for dual signing with boothole (Justin M. Forbes) - Update secureboot signing for dual keys (Justin M. Forbes) - fedora: enable LEDS_SGM3140 for arm configs (Peter Robinson) - Enable CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG (Justin M. Forbes) - redhat/configs: Fix common CONFIGs (Prarit Bhargava) - redhat/configs: General CONFIG cleanups (Prarit Bhargava) - redhat/configs: Update & generalize evaluate_configs (Prarit Bhargava) - fedora: arm: Update some meson config options (Peter Robinson) - redhat/docs: Add Fedora RPM tagging date (Prarit Bhargava) - Update config for renamed panel driver. (Peter Robinson) - Enable SERIAL_SC16IS7XX for SPI interfaces (Peter Robinson) - s390x-zfcpdump: Handle missing Module.symvers file (Don Zickus) - Fedora config updates (Justin M. Forbes) - redhat/configs: Add .tmp files to .gitignore (Prarit Bhargava) - disable uncommon TCP congestion control algorithms (Davide Caratti) - Add new bpf man pages (Justin M. Forbes) - Add default option for CONFIG_ARM64_BTI_KERNEL to pending-common so that eln kernels build (Justin M. Forbes) - redhat/Makefile: Add fedora-configs and rh-configs make targets (Prarit Bhargava) - redhat/configs: Use SHA512 for module signing (Prarit Bhargava) - genspec.sh: 'touch' empty Patchlist file for single tarball (Don Zickus) - Fedora config update for rc1 (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - redhat/Makefile.common: fix RPMKSUBLEVEL condition (Ondrej Mosnacek) - redhat/Makefile: silence KABI tar output (Ondrej Mosnacek) - One more Fedora config update (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - Fix PATCHLEVEL for merge window (Justin M. Forbes) - Change ark CONFIG_COMMON_CLK to yes, it is selected already by other options (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - More module filtering for Fedora (Justin M. Forbes) - Update filters for rnbd in Fedora (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - Fix up module filtering for 5.8 (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - More Fedora config work (Justin M. Forbes) - RTW88BE and CE have been extracted to their own modules (Justin M. Forbes) - Set CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK for Fedora (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - Arm64 Use Branch Target Identification for kernel (Justin M. Forbes) - Change value of CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE (Justin M. Forbes) - Fedora config updates (Justin M. Forbes) - Fix configs for Fedora (Justin M. Forbes) - Add zero-commit to format-patch options (Justin M. Forbes) - Copy Makefile.rhelver as a source file rather than a patch (Jeremy Cline) - Move the sed to clear the patch templating outside of conditionals (Justin M. Forbes) - Match template format in kernel.spec.template (Justin M. Forbes) - Break out the Patches into individual files for dist-git (Justin M. Forbes) - Break the Red Hat patch into individual commits (Jeremy Cline) - Fix update_scripts.sh unselective pattern sub (David Howells) - Add cec to the filter overrides (Justin M. Forbes) - Add overrides to filter-modules.sh (Justin M. Forbes) - redhat/configs: Enable CONFIG_SMC91X and disable CONFIG_SMC911X (Prarit Bhargava) [1722136] - Include bpftool-struct_ops man page in the bpftool package (Jeremy Cline) - Add sharedbuffer_configuration.py to the pathfix.py script (Jeremy Cline) - Use __make macro instead of make (Tom Stellard) - Sign off generated configuration patches (Jeremy Cline) - Drop the static path configuration for the Sphinx docs (Jeremy Cline) - redhat: Add dummy-module kernel module (Prarit Bhargava) - redhat: enable CONFIG_LWTUNNEL_BPF (Jiri Benc) - Remove typoed config file aarch64CONFIG_SM_GCC_8150 (Justin M. Forbes) - Add Documentation back to kernel-devel as it has Kconfig now (Justin M. Forbes) - Copy distro files rather than moving them (Jeremy Cline) - kernel.spec: fix 'make scripts' for kernel-devel package (Brian Masney) - Makefile: correct help text for dist-cross--rpms (Brian Masney) - redhat/Makefile: Fix RHEL8 python warning (Prarit Bhargava) - redhat: Change Makefile target names to dist- (Prarit Bhargava) - configs: Disable Serial IR driver (Prarit Bhargava) - Fix "multiple %%files for package kernel-tools" (Pablo Greco) - Introduce a Sphinx documentation project (Jeremy Cline) - Build ARK against ELN (Don Zickus) - Drop the requirement to have a remote called linus (Jeremy Cline) - Rename 'internal' branch to 'os-build' (Don Zickus) - Only include open merge requests with "Include in Releases" label (Jeremy Cline) - Package gpio-watch in kernel-tools (Jeremy Cline) - Exit non-zero if the tag already exists for a release (Jeremy Cline) - Adjust the changelog update script to not push anything (Jeremy Cline) - Drop --target noarch from the rh-rpms make target (Jeremy Cline) - Add a script to generate release tags and branches (Jeremy Cline) - Set CONFIG_VDPA for fedora (Justin M. Forbes) - Add a README to the dist-git repository (Jeremy Cline) - Provide defaults in ark-rebase-patches.sh (Jeremy Cline) - Default ark-rebase-patches.sh to not report issues (Jeremy Cline) - Drop DIST from release commits and tags (Jeremy Cline) - Place the buildid before the dist in the release (Jeremy Cline) - Sync up with Fedora arm configuration prior to merging (Jeremy Cline) - Disable CONFIG_PROTECTED_VIRTUALIZATION_GUEST for zfcpdump (Jeremy Cline) - Add RHMAINTAINERS file and supporting conf (Don Zickus) - Add a script to test if all commits are signed off (Jeremy Cline) - Fix make rh-configs-arch (Don Zickus) - Drop RH_FEDORA in favor of the now-merged RHEL_DIFFERENCES (Jeremy Cline) - Sync up Fedora configs from the first week of the merge window (Jeremy Cline) - Migrate blacklisting floppy.ko to mod-blacklist.sh (Don Zickus) - kernel packaging: Combine mod-blacklist.sh and mod-extra-blacklist.sh (Don Zickus) - kernel packaging: Fix extra namespace collision (Don Zickus) - mod-extra.sh: Rename to mod-blacklist.sh (Don Zickus) - mod-extra.sh: Make file generic (Don Zickus) - Fix a painfully obvious YAML syntax error in .gitlab-ci.yml (Jeremy Cline) - Add in armv7hl kernel header support (Don Zickus) - Disable all BuildKernel commands when only building headers (Don Zickus) - Drop any gitlab-ci patches from ark-patches (Jeremy Cline) - Build the srpm for internal branch CI using the vanilla tree (Jeremy Cline) - Pull in the latest ARM configurations for Fedora (Jeremy Cline) - Fix xz memory usage issue (Neil Horman) - Use ark-latest instead of master for update script (Jeremy Cline) - Move the CI jobs back into the ARK repository (Jeremy Cline) - Sync up ARK's Fedora config with the dist-git repository (Jeremy Cline) - Pull in the latest configuration changes from Fedora (Jeremy Cline) - configs: enable CONFIG_NET_SCH_CBS (Marcelo Ricardo Leitner) - Drop configuration options in fedora/ that no longer exist (Jeremy Cline) - Set RH_FEDORA for ARK and Fedora (Jeremy Cline) - redhat/kernel.spec: Include the release in the kernel COPYING file (Jeremy Cline) - redhat/kernel.spec: add scripts/jobserver-exec to py3_shbang_opts list (Jeremy Cline) - redhat/kernel.spec: package bpftool-gen man page (Jeremy Cline) - distgit-changelog: handle multiple y-stream BZ numbers (Bruno Meneguele) - redhat/kernel.spec: remove all inline comments (Bruno Meneguele) - redhat/genspec: awk unknown whitespace regex pattern (Bruno Meneguele) - Improve the readability of gen_config_patches.sh (Jeremy Cline) - Fix some awkward edge cases in gen_config_patches.sh (Jeremy Cline) - Update the CI environment to use Fedora 31 (Jeremy Cline) - redhat: drop whitespace from with_gcov macro (Jan Stancek) - configs: Enable CONFIG_KEY_DH_OPERATIONS on ARK (Ondrej Mosnacek) - configs: Adjust CONFIG_MPLS_ROUTING and CONFIG_MPLS_IPTUNNEL (Laura Abbott) - New configs in lib/crypto (Jeremy Cline) - New configs in drivers/char (Jeremy Cline) - Turn on BLAKE2B for Fedora (Jeremy Cline) - kernel.spec.template: Clean up stray *.h.s files (Laura Abbott) - Build the SRPM in the CI job (Jeremy Cline) - New configs in net/tls (Jeremy Cline) - New configs in net/tipc (Jeremy Cline) - New configs in lib/kunit (Jeremy Cline) - Fix up released_kernel case (Laura Abbott) - New configs in lib/Kconfig.debug (Jeremy Cline) - New configs in drivers/ptp (Jeremy Cline) - New configs in drivers/nvme (Jeremy Cline) - New configs in drivers/net/phy (Jeremy Cline) - New configs in arch/arm64 (Jeremy Cline) - New configs in drivers/crypto (Jeremy Cline) - New configs in crypto/Kconfig (Jeremy Cline) - Add label so the Gitlab to email bridge ignores the changelog (Jeremy Cline) - Temporarily switch TUNE_DEFAULT to y (Jeremy Cline) - Run config test for merge requests and internal (Jeremy Cline) - Add missing licensedir line (Laura Abbott) - redhat/scripts: Remove redhat/scripts/rh_get_maintainer.pl (Prarit Bhargava) - configs: Take CONFIG_DEFAULT_MMAP_MIN_ADDR from Fedra (Laura Abbott) - configs: Turn off ISDN (Laura Abbott) - Add a script to generate configuration patches (Laura Abbott) - Introduce rh-configs-commit (Laura Abbott) - kernel-packaging: Remove kernel files from kernel-modules-extra package (Prarit Bhargava) - configs: Enable CONFIG_DEBUG_WX (Laura Abbott) - configs: Disable wireless USB (Laura Abbott) - Clean up some temporary config files (Laura Abbott) - configs: New config in drivers/gpu for v5.4-rc1 (Jeremy Cline) - configs: New config in arch/powerpc for v5.4-rc1 (Jeremy Cline) - configs: New config in crypto for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/usb for v5.4-rc1 (Jeremy Cline) - AUTOMATIC: New configs (Jeremy Cline) - Skip ksamples for bpf, they are broken (Jeremy Cline) - configs: New config in fs/erofs for v5.4-rc1 (Jeremy Cline) - configs: New config in mm for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/md for v5.4-rc1 (Jeremy Cline) - configs: New config in init for v5.4-rc1 (Jeremy Cline) - configs: New config in fs/fuse for v5.4-rc1 (Jeremy Cline) - merge.pl: Avoid comments but do not skip them (Don Zickus) - configs: New config in drivers/net/ethernet/pensando for v5.4-rc1 (Jeremy Cline) - Update a comment about what released kernel means (Laura Abbott) - Provide both Fedora and RHEL files in the SRPM (Laura Abbott) - kernel.spec.template: Trim EXTRAVERSION in the Makefile (Laura Abbott) - kernel.spec.template: Add macros for building with nopatches (Laura Abbott) - kernel.spec.template: Add some macros for Fedora differences (Laura Abbott) - kernel.spec.template: Consolodate the options (Laura Abbott) - configs: Add pending direcory to Fedora (Laura Abbott) - kernel.spec.template: Don't run hardlink if rpm-ostree is in use (Laura Abbott) - configs: New config in net/can for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/net/phy for v5.4-rc1 (Jeremy Cline) - configs: Increase x86_64 NR_UARTS to 64 (Prarit Bhargava) [1730649] - configs: turn on ARM64_FORCE_52BIT for debug builds (Jeremy Cline) - kernel.spec.template: Tweak the python3 mangling (Laura Abbott) - kernel.spec.template: Add --with verbose option (Laura Abbott) - kernel.spec.template: Switch to using %%install instead of %%__install (Laura Abbott) - kernel.spec.template: Make the kernel.org URL https (Laura Abbott) - kernel.spec.template: Update message about secure boot signing (Laura Abbott) - kernel.spec.template: Move some with flags definitions up (Laura Abbott) - kernel.spec.template: Update some BuildRequires (Laura Abbott) - kernel.spec.template: Get rid of %%clean (Laura Abbott) - configs: New config in drivers/char for v5.4-rc1 (Jeremy Cline) - configs: New config in net/sched for v5.4-rc1 (Jeremy Cline) - configs: New config in lib for v5.4-rc1 (Jeremy Cline) - configs: New config in fs/verity for v5.4-rc1 (Jeremy Cline) - configs: New config in arch/aarch64 for v5.4-rc4 (Jeremy Cline) - configs: New config in arch/arm64 for v5.4-rc1 (Jeremy Cline) - Flip off CONFIG_ARM64_VA_BITS_52 so the bundle that turns it on applies (Jeremy Cline) - New configuration options for v5.4-rc4 (Jeremy Cline) - Correctly name tarball for single tarball builds (Laura Abbott) - configs: New config in drivers/pci for v5.4-rc1 (Jeremy Cline) - Allow overriding the dist tag on the command line (Laura Abbott) - Allow scratch branch target to be overridden (Laura Abbott) - Remove long dead BUILD_DEFAULT_TARGET (Laura Abbott) - Amend the changelog when rebasing (Laura Abbott) - configs: New config in drivers/platform for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/pinctrl for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/net/wireless for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/net/ethernet/mellanox for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/net/can for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/hid for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/dma-buf for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/crypto for v5.4-rc1 (Jeremy Cline) - configs: New config in arch/s390 for v5.4-rc1 (Jeremy Cline) - configs: New config in block for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/cpuidle for v5.4-rc1 (Jeremy Cline) - redhat: configs: Split CONFIG_CRYPTO_SHA512 (Laura Abbott) - redhat: Set Fedora options (Laura Abbott) - Set CRYPTO_SHA3_*_S390 to builtin on zfcpdump (Jeremy Cline) - configs: New config in drivers/edac for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/firmware for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/hwmon for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/iio for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/mmc for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/tty for v5.4-rc1 (Jeremy Cline) - configs: New config in arch/s390 for v5.4-rc1 (Jeremy Cline) - configs: New config in drivers/bus for v5.4-rc1 (Jeremy Cline) - Add option to allow mismatched configs on the command line (Laura Abbott) - configs: New config in drivers/crypto for v5.4-rc1 (Jeremy Cline) - configs: New config in sound/pci for v5.4-rc1 (Jeremy Cline) - configs: New config in sound/soc for v5.4-rc1 (Jeremy Cline) - gitlab: Add CI job for packaging scripts (Major Hayden) - Speed up CI with CKI image (Major Hayden) - Disable e1000 driver in ARK (Neil Horman) - configs: Fix the pending default for CONFIG_ARM64_VA_BITS_52 (Jeremy Cline) - configs: Turn on OPTIMIZE_INLINING for everything (Jeremy Cline) - configs: Set valid pending defaults for CRYPTO_ESSIV (Jeremy Cline) - Add an initial CI configuration for the internal branch (Jeremy Cline) - New drop of configuration options for v5.4-rc1 (Jeremy Cline) - New drop of configuration options for v5.4-rc1 (Jeremy Cline) - Pull the RHEL version defines out of the Makefile (Jeremy Cline) - Sync up the ARK build scripts (Jeremy Cline) - Sync up the Fedora Rawhide configs (Jeremy Cline) - Sync up the ARK config files (Jeremy Cline) - configs: Adjust CONFIG_FORCE_MAX_ZONEORDER for Fedora (Laura Abbott) - configs: Add README for some other arches (Laura Abbott) - configs: Sync up Fedora configs (Laura Abbott) - [initial commit] Add structure for building with git (Laura Abbott) - [initial commit] Add Red Hat variables in the top level makefile (Laura Abbott) - [initial commit] Red Hat gitignore and attributes (Laura Abbott) - [initial commit] Add changelog (Laura Abbott) - [initial commit] Add makefile (Laura Abbott) - [initial commit] Add files for generating the kernel.spec (Laura Abbott) - [initial commit] Add rpm directory (Laura Abbott) - [initial commit] Add files for packaging (Laura Abbott) - [initial commit] Add kabi files (Laura Abbott) - [initial commit] Add scripts (Laura Abbott) - [initial commit] Add configs (Laura Abbott) - [initial commit] Add Makefiles (Laura Abbott) ### # The following Emacs magic makes C-c C-e use UTC dates. # Local Variables: # rpm-change-log-uses-utc: t # End: ###