<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>b477ab8893c3e6b4be3074358db830687de7bfff - Merge tag &apos;asoc-fix-v7.0-rc6&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#b477ab8893c3e6b4be3074358db830687de7bfff</link>
        <description>Merge tag &apos;asoc-fix-v7.0-rc6&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v7.0Another smallish batch of fixes and quirks, these days it&apos;s AMD that isgetting all the DMI entries added.  We&apos;ve got one core fix for a missinglist initialisation with auxiliary devices, otherwise it&apos;s all fairlysmall things.

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Thu, 02 Apr 2026 09:08:03 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>d2a43e7f89da55d6f0f96aaadaa243f35557291e - Merge tag &apos;hardening-v7.0-rc6&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#d2a43e7f89da55d6f0f96aaadaa243f35557291e</link>
        <description>Merge tag &apos;hardening-v7.0-rc6&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxPull hardening fixes from Kees Cook: - fix required Clang version for CC_HAS_COUNTED_BY_PTR (Nathan   Chancellor) - update Coccinelle script used for kmalloc_obj* tag &apos;hardening-v7.0-rc6&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:  init/Kconfig: Require a release version of clang-22 for CC_HAS_COUNTED_BY_PTR  coccinelle: kmalloc_obj: Remove default GFP_KERNEL arg

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Wed, 25 Mar 2026 22:47:18 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>7a618ca9b9c4769fc5adf7344bb1dd98f823da22 - init/Kconfig: Require a release version of clang-22 for CC_HAS_COUNTED_BY_PTR</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#7a618ca9b9c4769fc5adf7344bb1dd98f823da22</link>
        <description>init/Kconfig: Require a release version of clang-22 for CC_HAS_COUNTED_BY_PTRCommit 150a04d817d8 (&quot;compiler_types.h: Attributes: Add __counted_by_ptrmacro&quot;) used Clang 22.0.0 as a minimum supported version for__counted_by_ptr, which made sense while 22.0.0 was the version ofLLVM&apos;s main branch to allow developers to easily test and develop usesof __counted_by_ptr in their code. However, __counted_by_ptr requires achange [1] merged towards the end of the 22 development cycle to avoiderrors when applied to void pointers.  In file included from fs/xfs/xfs_attr_inactive.c:18:  fs/xfs/libxfs/xfs_attr.h:59:2: error: &apos;counted_by&apos; cannot be applied to a pointer with pointee of unknown size because &apos;void&apos; is an incomplete type     59 |         void                    *buffer __counted_by_ptr(bufsize);        |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~This is disruptive for deployed prerelease clang-22 builds (such asAndroid LLVM) or when bisecting between llvmorg-21-init and the fix.Require a released version of clang-22 (i.e., 21.1.0 or newer) toenabled __counted_by_ptr to ensure all fixes needed for proper supportare present.Fixes: 150a04d817d8 (&quot;compiler_types.h: Attributes: Add __counted_by_ptr macro&quot;)Link: https://github.com/llvm/llvm-project/commit/f29955a594aedf5943d492a999b83e8c6b8fafae [1]Signed-off-by: Nathan Chancellor &lt;nathan@kernel.org&gt;Link: https://patch.msgid.link/20260318-counted_by_ptr-release-clang-22-v1-1-e017da246df0@kernel.orgSigned-off-by: Kees Cook &lt;kees@kernel.org&gt;

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Thu, 19 Mar 2026 01:20:18 +0100</pubDate>
        <dc:creator>Nathan Chancellor &lt;nathan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3ad66a34cce2c5a6532ac0b979fdf58677193c67 - Merge tag &apos;io_uring-7.0-20260305&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#3ad66a34cce2c5a6532ac0b979fdf58677193c67</link>
        <description>Merge tag &apos;io_uring-7.0-20260305&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linuxPull io_uring fixes from Jens Axboe: - Fix a typo in the mock_file help text - Fix a comment regarding IORING_SETUP_TASKRUN_FLAG in the   io_uring.h UAPI header - Use READ_ONCE() for reading refill queue entries - Reject SEND_VECTORIZED for fixed buffer sends, as it isn&apos;t   implemented. Currently this flag is silently ignored   This is in preparation for making these work, but first we   need a fixup so that older kernels will correctly reject them - Ensure &quot;0&quot; means default for the rx page size* tag &apos;io_uring-7.0-20260305&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux:  io_uring/zcrx: use READ_ONCE with user shared RQEs  io_uring/mock: Fix typo in help text  io_uring/net: reject SEND_VECTORIZED when unsupported  io_uring: correct comment for IORING_SETUP_TASKRUN_FLAG  io_uring/zcrx: don&apos;t set rx_page_size when not requested

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Fri, 06 Mar 2026 17:31:36 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>8457669db968c98edb781892d73fa559e1efcbd4 - Merge tag &apos;asoc-fix-v7.0-rc2&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#8457669db968c98edb781892d73fa559e1efcbd4</link>
        <description>Merge tag &apos;asoc-fix-v7.0-rc2&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v7.0A moderately large pile of fixes, though none of them are  super major,plus a few new quirks and device IDs.

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Thu, 05 Mar 2026 17:22:14 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9e7dc228bb6d4afa74dd6bab4f3aad43126cc2db - io_uring/mock: Fix typo in help text</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#9e7dc228bb6d4afa74dd6bab4f3aad43126cc2db</link>
        <description>io_uring/mock: Fix typo in help textFix the spelling of &quot;subsystem&quot;.Signed-off-by: J. Neusch&#228;fer &lt;j.ne@posteo.net&gt;Signed-off-by: Jens Axboe &lt;axboe@kernel.dk&gt;

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Wed, 04 Mar 2026 01:42:57 +0100</pubDate>
        <dc:creator>J. Neusch&#228;fer &lt;j.ne@posteo.net&gt;</dc:creator>
    </item>
<item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3f4a08e64442340f4807de63e30aef22cc308830 - Merge tag &apos;kmalloc_obj-v7.0-rc2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#3f4a08e64442340f4807de63e30aef22cc308830</link>
        <description>Merge tag &apos;kmalloc_obj-v7.0-rc2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxPull kmalloc_obj fixes from Kees Cook: - Fix pointer-to-array allocation types for ubd and kcsan - Force size overflow helpers to __always_inline - Bump __builtin_counted_by_ref to Clang 22.1 from 22.0 (Nathan Chancellor)* tag &apos;kmalloc_obj-v7.0-rc2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:  kcsan: test: Adjust &quot;expect&quot; allocation type for kmalloc_obj  overflow: Make sure size helpers are always inlined  init/Kconfig: Adjust fixed clang version for __builtin_counted_by_ref  ubd: Use pointer-to-pointers for io_thread_req arrays

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Thu, 26 Feb 2026 19:05:15 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>f709859f331b8fbd7fede5769d668008fc5ba789 - init/Kconfig: Adjust fixed clang version for __builtin_counted_by_ref</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#f709859f331b8fbd7fede5769d668008fc5ba789</link>
        <description>init/Kconfig: Adjust fixed clang version for __builtin_counted_by_refCommit d39a1d7486d9 (&quot;compiler_types: Disable __builtin_counted_by_reffor Clang&quot;) used 22.0.0 as the fixed version for a compiler crash butthe fix was only merged in main (23.0.0) and release/22.x (22.1.0). Withthe current fixed version number, prerelease or Android LLVM 22 buildswill still be able to hit the compiler crash when building the kernel.This can be particularly disruptive when bisecting LLVM.Use 21.1.0 as the fixed version number to ensure the fix for this crashis always present.Fixes: d39a1d7486d9 (&quot;compiler_types: Disable __builtin_counted_by_ref for Clang&quot;)Signed-off-by: Nathan Chancellor &lt;nathan@kernel.org&gt;Link: https://patch.msgid.link/20260223-fix-clang-version-builtin-counted-by-ref-v1-1-3ea478a24f0a@kernel.orgSigned-off-by: Kees Cook &lt;kees@kernel.org&gt;

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Mon, 23 Feb 2026 19:23:12 +0100</pubDate>
        <dc:creator>Nathan Chancellor &lt;nathan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8934827db5403eae57d4537114a9ff88b0a8460f - Merge tag &apos;kmalloc_obj-treewide-v7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#8934827db5403eae57d4537114a9ff88b0a8460f</link>
        <description>Merge tag &apos;kmalloc_obj-treewide-v7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxPull kmalloc_obj conversion from Kees Cook: &quot;This does the tree-wide conversion to kmalloc_obj() and friends using  coccinelle, with a subsequent small manual cleanup of whitespace  alignment that coccinelle does not handle.  This uncovered a clang bug in __builtin_counted_by_ref(), so the  conversion is preceded by disabling that for current versions of  clang.  The imminent clang 22.1 release has the fix.  I&apos;ve done allmodconfig build tests for x86_64, arm64, i386, and arm. I  did defconfig builds for alpha, m68k, mips, parisc, powerpc, riscv,  s390, sparc, sh, arc, csky, xtensa, hexagon, and openrisc&quot;* tag &apos;kmalloc_obj-treewide-v7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:  kmalloc_obj: Clean up after treewide replacements  treewide: Replace kmalloc with kmalloc_obj for non-scalar types  compiler_types: Disable __builtin_counted_by_ref for Clang

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Sat, 21 Feb 2026 20:02:58 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d39a1d7486d98668dd34aaa6732aad7977c45f5a - compiler_types: Disable __builtin_counted_by_ref for Clang</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#d39a1d7486d98668dd34aaa6732aad7977c45f5a</link>
        <description>compiler_types: Disable __builtin_counted_by_ref for ClangUnfortunately, there is a corner case of __builtin_counted_by_ref()usage that crashes[1] Clang since support was introduced in Clang 19.Disable it prior to Clang 22. Found while tested kmalloc_obj treewiderefactoring (via kmalloc_flex() usage).Link: https://github.com/llvm/llvm-project/issues/182575 [1]Signed-off-by: Kees Cook &lt;kees@kernel.org&gt;

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Fri, 20 Feb 2026 22:15:58 +0100</pubDate>
        <dc:creator>Kees Cook &lt;kees@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>df989b01b5f97dae8f9869cfacbda1308f2182c1 - Merge 7.0 Kbuild changes into kbuild-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#df989b01b5f97dae8f9869cfacbda1308f2182c1</link>
        <description>Merge 7.0 Kbuild changes into kbuild-fixeskbuild-fixes needs to be based on 6.19 to apply some fixes for  62089b804895 (&quot;kbuild: rpm-pkg: Generate debuginfo package manually&quot;)which landed in 6.19-rc1 but the new material of 7.0 needs fixes mergedas well.Signed-off-by: Nathan Chancellor &lt;nathan@kernel.org&gt;

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Thu, 12 Feb 2026 17:28:27 +0100</pubDate>
        <dc:creator>Nathan Chancellor &lt;nathan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>41f1a08645abb5ef7d2a3ed8835c747334878774 - Merge tag &apos;kbuild-7.0-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#41f1a08645abb5ef7d2a3ed8835c747334878774</link>
        <description>Merge tag &apos;kbuild-7.0-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linuxPull Kbuild/Kconfig updates from Nathan Chancellor: &quot;Kbuild:   - Drop &apos;*_probe&apos; pattern from modpost section check allowlist, which     hid legitimate warnings (Johan Hovold)   - Disable -Wtype-limits altogether, instead of enabling at W=2     (Vincent Mailhol)   - Improve UAPI testing to skip testing headers that require a libc     when CONFIG_CC_CAN_LINK is not set, opening up testing of headers     with no libc dependencies to more environments (Thomas Wei&#223;schuh)   - Update gendwarfksyms documentation with required dependencies     (Jihan LIN)   - Reject invalid LLVM= values to avoid unintentionally falling back     to system toolchain (Thomas Wei&#223;schuh)   - Add a script to help run the kernel build process in a container     for consistent environments and testing (Guillaume Tucker)   - Simplify kallsyms by getting rid of the relative base (Ard     Biesheuvel)   - Performance and usability improvements to scripts/make_fit.py     (Simon Glass)   - Minor various clean ups and fixes  Kconfig:   - Move XPM icons to individual files, clearing up GTK deprecation     warnings (Rostislav Krasny)   - Support        depends on FOO if BAR     as syntactic sugar for        depends on FOO || !BAR     (Nicolas Pitre, Graham Roff)   - Refactor merge_config.sh to use awk over shell/sed/grep,     dramatically speeding up processing large number of config     fragments (Anders Roxell, Mikko Rapeli)&quot;* tag &apos;kbuild-7.0-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux: (39 commits)  kbuild: remove dependency of run-command on config  scripts/make_fit: Compress dtbs in parallel  scripts/make_fit: Support a few more parallel compressors  kbuild: Support a FIT_EXTRA_ARGS environment variable  scripts/make_fit: Move dtb processing into a function  scripts/make_fit: Support an initial ramdisk  scripts/make_fit: Speed up operation  rust: kconfig: Don&apos;t require RUST_IS_AVAILABLE for rustc-option  MAINTAINERS: Add scripts/install.sh into Kbuild entry  modpost: Amend ppc64 save/restfpr symnames for -Os build  MIPS: tools: relocs: Ship a definition of R_MIPS_PC32  streamline_config.pl: remove superfluous exclamation mark  kbuild: dummy-tools: Add python3  scripts: kconfig: merge_config.sh: warn on duplicate input files  scripts: kconfig: merge_config.sh: use awk in checks too  scripts: kconfig: merge_config.sh: refactor from shell/sed/grep to awk  kallsyms: Get rid of kallsyms relative base  mips: Add support for PC32 relocations in vmlinux  Documentation: dev-tools: add container.rst page  scripts: add tool to run containerized builds  ...

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Wed, 11 Feb 2026 22:40:35 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>bf2c3138ae3694d4687cbe451c774c288ae2ad06 - Merge tag &apos;kvm-x86-pmu-6.20&apos; of https://github.com/kvm-x86/linux into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#bf2c3138ae3694d4687cbe451c774c288ae2ad06</link>
        <description>Merge tag &apos;kvm-x86-pmu-6.20&apos; of https://github.com/kvm-x86/linux into HEADKVM mediated PMU support for 6.20Add support for mediated PMUs, where KVM gives the guest full ownership of PMUhardware (contexted switched around the fastpath run loop) and allows directaccess to data MSRs and PMCs (restricted by the vPMU model), but interceptsaccess to control registers, e.g. to enforce event filtering and to prevent theguest from profiling sensitive host state.To keep overall complexity reasonable, mediated PMU usage is all or nothingfor a given instance of KVM (controlled via module param).  The Mediated PMUis disabled default, partly to maintain backwards compatilibity for existingsetup, partly because there are tradeoffs when running with a mediated PMU thatmay be non-starters for some use cases, e.g. the host loses the ability toprofile guests with mediated PMUs, the fastpath run loop is also a blind spot,entry/exit transitions are more expensive, etc.Versus the emulated PMU, where KVM is &quot;just another perf user&quot;, the mediatedPMU delivers more accurate profiling and monitoring (no risk of contention andthus dropped events), with significantly less overhead (fewer exits and fasteremulation/programming of event selectors) E.g. when running Specint-2017 ona single-socket Sapphire Rapids with 56 cores and no-SMT, and using perf fromwithin the guest:  Perf command:  a. basic-sampling: perf record -F 1000 -e 6-instructions  -a --overwrite  b. multiplex-sampling: perf record -F 1000 -e 10-instructions -a --overwrite  Guest performance overhead:  ---------------------------------------------------------------------------  | Test case          | emulated vPMU | all passthrough | passthrough with |  |                    |               |                 | event filters    |  ---------------------------------------------------------------------------  | basic-sampling     |   33.62%      |    4.24%        |   6.21%          |  ---------------------------------------------------------------------------  | multiplex-sampling |   79.32%      |    7.34%        |   10.45%         |  ---------------------------------------------------------------------------

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Mon, 09 Feb 2026 19:35:16 +0100</pubDate>
        <dc:creator>Paolo Bonzini &lt;pbonzini@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>36ae1c45b2cede43ab2fc679b450060bbf119f1b - Merge tag &apos;sched-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#36ae1c45b2cede43ab2fc679b450060bbf119f1b</link>
        <description>Merge tag &apos;sched-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipPull scheduler updates from Ingo Molnar: &quot;Scheduler Kconfig space updates:   - Further consolidate configurable preemption modes (Peter Zijlstra)     Reduce the number of architectures that are allowed to offer     PREEMPT_NONE and PREEMPT_VOLUNTARY, reducing the number of     preemption models from four to just two: &apos;full&apos; and &apos;lazy&apos; on     up-to-date architectures (arm64, loongarch, powerpc, riscv, s390,     x86).     None and voluntary are only available as legacy features on     platforms that don&apos;t implement lazy preemption yet, or which don&apos;t     even support preemption.     The goal is to eventually remove cond_resched() and voluntary     preemption altogether.  RSEQ based &apos;scheduler time slice extension&apos; support (Thomas Gleixner  and Peter Zijlstra):  This allows a thread to request a time slice extension when it enters  a critical section to avoid contention on a resource when the thread  is scheduled out inside of the critical section.   - Add fields and constants for time slice extension   - Provide static branch for time slice extensions   - Add statistics for time slice extensions   - Add prctl() to enable time slice extensions   - Implement sys_rseq_slice_yield()   - Implement syscall entry work for time slice extensions   - Implement time slice extension enforcement timer   - Reset slice extension when scheduled   - Implement rseq_grant_slice_extension()   - entry: Hook up rseq time slice extension   - selftests: Implement time slice extension test   - Allow registering RSEQ with slice extension   - Move slice_ext_nsec to debugfs   - Lower default slice extension   - selftests/rseq: Add rseq slice histogram script  Scheduler performance/scalability improvements:   - Update rq-&gt;avg_idle when a task is moved to an idle CPU, which     improves the scalability of various workloads (Shubhang Kaushik)   - Reorder fields in &apos;struct rq&apos; for better caching (Blake Jones)   - Fair scheduler SMP NOHZ balancing code speedups (Shrikanth Hegde):      - Move checking for nohz cpus after time check      - Change likelyhood of nohz.nr_cpus      - Remove nohz.nr_cpus and use weight of cpumask instead   - Avoid false sharing for sched_clock_irqtime (Wangyang Guo)   - Cleanups (Yury Norov):      - Drop useless cpumask_empty() in find_energy_efficient_cpu()      - Simplify task_numa_find_cpu()      - Use cpumask_weight_and() in sched_balance_find_dst_group()  DL scheduler updates:   - Add a deadline server for sched_ext tasks (by Andrea Righi and Joel     Fernandes, with fixes by Peter Zijlstra)  RT scheduler updates:   - Skip currently executing CPU in rto_next_cpu() (Chen Jinghuang)  Entry code updates and performance improvements (Jinjie Ruan)  This is part of the scheduler tree in this cycle due to inter-  dependencies with the RSEQ based time slice extension work:    - Remove unused syscall argument from syscall_trace_enter()    - Rework syscall_exit_to_user_mode_work() for architecture reuse    - Add arch_ptrace_report_syscall_entry/exit()    - Inline syscall_exit_work() and syscall_trace_enter()  Scheduler core updates (Peter Zijlstra):   - Rework sched_class::wakeup_preempt() and rq_modified_*()   - Avoid rq-&gt;lock bouncing in sched_balance_newidle()   - Rename rcu_dereference_check_sched_domain() =&gt;            rcu_dereference_sched_domain()   - &lt;linux/compiler_types.h&gt;: Add the __signed_scalar_typeof() helper  Fair scheduler updates/refactoring (Peter Zijlstra and Ingo Molnar):   - Fold the sched_avg update   - Change rcu_dereference_check_sched_domain() to rcu-sched   - Switch to rcu_dereference_all()   - Remove superfluous rcu_read_lock()   - Limit hrtick work   - Join two #ifdef CONFIG_FAIR_GROUP_SCHED blocks   - Clean up comments in &apos;struct cfs_rq&apos;   - Separate se-&gt;vlag from se-&gt;vprot   - Rename cfs_rq::avg_load to cfs_rq::sum_weight   - Rename cfs_rq::avg_vruntime to ::sum_w_vruntime &amp; helper functions   - Introduce and use the vruntime_cmp() and vruntime_op() wrappers for     wrapped-signed aritmetics   - Sort out &apos;blocked_load*&apos; namespace noise  Scheduler debugging code updates:   - Export hidden tracepoints to modules (Gabriele Monaco)   - Convert copy_from_user() + kstrtouint() to kstrtouint_from_user()     (Fushuai Wang)   - Add assertions to QUEUE_CLASS (Peter Zijlstra)   - hrtimer: Fix tracing oddity (Thomas Gleixner)  Misc fixes and cleanups:   - Re-evaluate scheduling when migrating queued tasks out of throttled     cgroups (Zicheng Qu)   - Remove task_struct-&gt;faults_disabled_mapping (Christoph Hellwig)   - Fix math notation errors in avg_vruntime comment (Zhan Xusheng)   - sched/cpufreq: Use %pe format for PTR_ERR() printing     (zenghongling)&quot;* tag &apos;sched-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (64 commits)  sched: Re-evaluate scheduling when migrating queued tasks out of throttled cgroups  sched/cpufreq: Use %pe format for PTR_ERR() printing  sched/rt: Skip currently executing CPU in rto_next_cpu()  sched/clock: Avoid false sharing for sched_clock_irqtime  selftests/sched_ext: Add test for DL server total_bw consistency  selftests/sched_ext: Add test for sched_ext dl_server  sched/debug: Fix dl_server (re)start conditions  sched/debug: Add support to change sched_ext server params  sched_ext: Add a DL server for sched_ext tasks  sched/debug: Stop and start server based on if it was active  sched/debug: Fix updating of ppos on server write ops  sched/deadline: Clear the defer params  entry: Inline syscall_exit_work() and syscall_trace_enter()  entry: Add arch_ptrace_report_syscall_entry/exit()  entry: Rework syscall_exit_to_user_mode_work() for architecture reuse  entry: Remove unused syscall argument from syscall_trace_enter()  sched: remove task_struct-&gt;faults_disabled_mapping  sched: Update rq-&gt;avg_idle when a task is moved to an idle CPU  selftests/rseq: Add rseq slice histogram script  hrtimer: Fix trace oddity  ...

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Tue, 10 Feb 2026 21:50:10 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>4d84667627c4ff70826b349c449bbaf63b9af4e5 - Merge tag &apos;perf-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#4d84667627c4ff70826b349c449bbaf63b9af4e5</link>
        <description>Merge tag &apos;perf-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipPull performance event updates from Ingo Molnar: &quot;x86 PMU driver updates:   - Add support for the core PMU for Intel Diamond Rapids (DMR) CPUs     (Dapeng Mi)     Compared to previous iterations of the Intel PMU code, there&apos;s been     a lot of changes, which center around three main areas:      - Introduce the OFF-MODULE RESPONSE (OMR) facility to replace the        Off-Core Response (OCR) facility      - New PEBS data source encoding layout      - Support the new &quot;RDPMC user disable&quot; feature   - Likewise, a large series adds uncore PMU support for Intel Diamond     Rapids (DMR) CPUs (Zide Chen)     This centers around these four main areas:      - DMR may have two Integrated I/O and Memory Hub (IMH) dies,        separate from the compute tile (CBB) dies. Each CBB and each IMH        die has its own discovery domain.      - Unlike prior CPUs that retrieve the global discovery table        portal exclusively via PCI or MSR, DMR uses PCI for IMH PMON        discovery and MSR for CBB PMON discovery.      - DMR introduces several new PMON types: SCA, HAMVF, D2D_ULA, UBR,        PCIE4, CRS, CPC, ITC, OTC, CMS, and PCIE6.      - IIO free-running counters in DMR are MMIO-based, unlike SPR.   - Also add support for Add missing PMON units for Intel Panther Lake,     and support Nova Lake (NVL), which largely maps to Panther Lake.     (Zide Chen)   - KVM integration: Add support for mediated vPMUs (by Kan Liang and     Sean Christopherson, with fixes and cleanups by Peter Zijlstra,     Sandipan Das and Mingwei Zhang)   - Add Intel cstate driver to support for Wildcat Lake (WCL) CPUs,     which are a low-power variant of Panther Lake (Zide Chen)   - Add core, cstate and MSR PMU support for the Airmont NP Intel CPU     (aka MaxLinear Lightning Mountain), which maps to the existing     Airmont code (Martin Schiller)  Performance enhancements:   - Speed up kexec shutdown by avoiding unnecessary cross CPU calls     (Jan H. Sch&#246;nherr)   - Fix slow perf_event_task_exit() with LBR callstacks (Namhyung Kim)  User-space stack unwinding support:   - Various cleanups and refactorings in preparation to generalize the     unwinding code for other architectures (Jens Remus)  Uprobes updates:   - Transition from kmap_atomic to kmap_local_page (Keke Ming)   - Fix incorrect lockdep condition in filter_chain() (Breno Leitao)   - Fix XOL allocation failure for 32-bit tasks (Oleg Nesterov)  Misc fixes and cleanups:   - s390: Remove kvm_types.h from Kbuild (Randy Dunlap)   - x86/intel/uncore: Convert comma to semicolon (Chen Ni)   - x86/uncore: Clean up const mismatch (Greg Kroah-Hartman)   - x86/ibs: Fix typo in dc_l2tlb_miss comment (Xiang-Bin Shi)&quot;* tag &apos;perf-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (58 commits)  s390: remove kvm_types.h from Kbuild  uprobes: Fix incorrect lockdep condition in filter_chain()  x86/ibs: Fix typo in dc_l2tlb_miss comment  x86/uprobes: Fix XOL allocation failure for 32-bit tasks  perf/x86/intel/uncore: Convert comma to semicolon  perf/x86/intel: Add support for rdpmc user disable feature  perf/x86: Use macros to replace magic numbers in attr_rdpmc  perf/x86/intel: Add core PMU support for Novalake  perf/x86/intel: Add support for PEBS memory auxiliary info field in NVL  perf/x86/intel: Add core PMU support for DMR  perf/x86/intel: Add support for PEBS memory auxiliary info field in DMR  perf/x86/intel: Support the 4 new OMR MSRs introduced in DMR and NVL  perf/core: Fix slow perf_event_task_exit() with LBR callstacks  perf/core: Speed up kexec shutdown by avoiding unnecessary cross CPU calls  uprobes: use kmap_local_page() for temporary page mappings  arm/uprobes: use kmap_local_page() in arch_uprobe_copy_ixol()  mips/uprobes: use kmap_local_page() in arch_uprobe_copy_ixol()  arm64/uprobes: use kmap_local_page() in arch_uprobe_copy_ixol()  riscv/uprobes: use kmap_local_page() in arch_uprobe_copy_ixol()  perf/x86/intel/uncore: Add Nova Lake support  ...

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Tue, 10 Feb 2026 21:00:46 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>f17b474e36647c23801ef8fdaf2255ab66dd2973 - Merge tag &apos;bpf-next-7.0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#f17b474e36647c23801ef8fdaf2255ab66dd2973</link>
        <description>Merge tag &apos;bpf-next-7.0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextPull bpf updates from Alexei Starovoitov: - Support associating BPF program with struct_ops (Amery Hung) - Switch BPF local storage to rqspinlock and remove recursion detection   counters which were causing false positives (Amery Hung) - Fix live registers marking for indirect jumps (Anton Protopopov) - Introduce execution context detection BPF helpers (Changwoo Min) - Improve verifier precision for 32bit sign extension pattern   (Cupertino Miranda) - Optimize BTF type lookup by sorting vmlinux BTF and doing binary   search (Donglin Peng) - Allow states pruning for misc/invalid slots in iterator loops (Eduard   Zingerman) - In preparation for ASAN support in BPF arenas teach libbpf to move   global BPF variables to the end of the region and enable arena kfuncs   while holding locks (Emil Tsalapatis) - Introduce support for implicit arguments in kfuncs and migrate a   number of them to new API. This is a prerequisite for cgroup   sub-schedulers in sched-ext (Ihor Solodrai) - Fix incorrect copied_seq calculation in sockmap (Jiayuan Chen) - Fix ORC stack unwind from kprobe_multi (Jiri Olsa) - Speed up fentry attach by using single ftrace direct ops in BPF   trampolines (Jiri Olsa) - Require frozen map for calculating map hash (KP Singh) - Fix lock entry creation in TAS fallback in rqspinlock (Kumar   Kartikeya Dwivedi) - Allow user space to select cpu in lookup/update operations on per-cpu   array and hash maps (Leon Hwang) - Make kfuncs return trusted pointers by default (Matt Bobrowski) - Introduce &quot;fsession&quot; support where single BPF program is executed   upon entry and exit from traced kernel function (Menglong Dong) - Allow bpf_timer and bpf_wq use in all programs types (Mykyta   Yatsenko, Andrii Nakryiko, Kumar Kartikeya Dwivedi, Alexei   Starovoitov) - Make KF_TRUSTED_ARGS the default for all kfuncs and clean up their   definition across the tree (Puranjay Mohan) - Allow BPF arena calls from non-sleepable context (Puranjay Mohan) - Improve register id comparison logic in the verifier and extend   linked registers with negative offsets (Puranjay Mohan) - In preparation for BPF-OOM introduce kfuncs to access memcg events   (Roman Gushchin) - Use CFI compatible destructor kfunc type (Sami Tolvanen) - Add bitwise tracking for BPF_END in the verifier (Tianci Cao) - Add range tracking for BPF_DIV and BPF_MOD in the verifier (Yazhou   Tang) - Make BPF selftests work with 64k page size (Yonghong Song)* tag &apos;bpf-next-7.0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next: (268 commits)  selftests/bpf: Fix outdated test on storage-&gt;smap  selftests/bpf: Choose another percpu variable in bpf for btf_dump test  selftests/bpf: Remove test_task_storage_map_stress_lookup  selftests/bpf: Update task_local_storage/task_storage_nodeadlock test  selftests/bpf: Update task_local_storage/recursion test  selftests/bpf: Update sk_storage_omem_uncharge test  bpf: Switch to bpf_selem_unlink_nofail in bpf_local_storage_{map_free, destroy}  bpf: Support lockless unlink when freeing map or local storage  bpf: Prepare for bpf_selem_unlink_nofail()  bpf: Remove unused percpu counter from bpf_local_storage_map_free  bpf: Remove cgroup local storage percpu counter  bpf: Remove task local storage percpu counter  bpf: Change local_storage-&gt;lock and b-&gt;lock to rqspinlock  bpf: Convert bpf_selem_unlink to failable  bpf: Convert bpf_selem_link_map to failable  bpf: Convert bpf_selem_unlink_map to failable  bpf: Select bpf_local_storage_map_bucket based on bpf_local_storage  selftests/xsk: fix number of Tx frags in invalid packet  selftests/xsk: properly handle batch ending in the middle of a packet  bpf: Prevent reentrance into call_rcu_tasks_trace()  ...

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Tue, 10 Feb 2026 20:26:21 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>85f24b0ace9aa79142f632fc3ccc730a8d2a4a28 - Merge tag &apos;hardening-v7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#85f24b0ace9aa79142f632fc3ccc730a8d2a4a28</link>
        <description>Merge tag &apos;hardening-v7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxPull hardening updates from Kees Cook: &quot;Mostly small cleanups and various scattered annotations and flex array  warning fixes that we reviewed by unlanded in other trees. Introduces  new annotation for expanding counted_by to pointer members, now that  compiler behavior between GCC and Clang has been normalized.   - Various missed __counted_by annotations (Thorsten Blum)   - Various missed -Wflex-array-member-not-at-end fixes (Gustavo A. R.     Silva)   - Avoid leftover tempfiles for interrupted compile-time FORTIFY tests     (Nicolas Schier)   - Remove non-existant CONFIG_UBSAN_REPORT_FULL from docs (Stefan     Wiehler)   - fortify: Use C arithmetic not FIELD_xxx() in FORTIFY_REASON defines     (David Laight)   - Add __counted_by_ptr attribute, tests, and first user (Bill     Wendling, Kees Cook)   - Update MAINTAINERS file to make hardening section not include     pstore&quot;* tag &apos;hardening-v7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:  MAINTAINERS: pstore: Remove L: entry  nfp: tls: Avoid -Wflex-array-member-not-at-end warnings  carl9170: Avoid -Wflex-array-member-not-at-end warning  coredump: Use __counted_by_ptr for struct core_name::corename  lkdtm/bugs: Add __counted_by_ptr() test PTR_BOUNDS  compiler_types.h: Attributes: Add __counted_by_ptr macro  fortify: Cleanup temp file also on non-successful exit  fortify: Rename temporary file to match ignore pattern  fortify: Use C arithmetic not FIELD_xxx() in FORTIFY_REASON defines  ecryptfs: Annotate struct ecryptfs_message with __counted_by  fs/xattr: Annotate struct simple_xattr with __counted_by  crypto: af_alg - Annotate struct af_alg_iv with __counted_by  Kconfig.ubsan: Remove CONFIG_UBSAN_REPORT_FULL from documentation  drm/nouveau: fifo: Avoid -Wflex-array-member-not-at-end warning

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Tue, 10 Feb 2026 17:54:13 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d16738a4e79e55b2c3c9ff4fb7b74a4a24723515 - Merge tag &apos;kthread-for-7.0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/frederic/linux-dynticks</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#d16738a4e79e55b2c3c9ff4fb7b74a4a24723515</link>
        <description>Merge tag &apos;kthread-for-7.0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/frederic/linux-dynticksPull kthread updates from Frederic Weisbecker: &quot;The kthread code provides an infrastructure which manages the  preferred affinity of unbound kthreads (node or custom cpumask)  against housekeeping (CPU isolation) constraints and CPU hotplug  events.  One crucial missing piece is the handling of cpuset: when an isolated  partition is created, deleted, or its CPUs updated, all the unbound  kthreads in the top cpuset become indifferently affine to _all_ the  non-isolated CPUs, possibly breaking their preferred affinity along  the way.  Solve this with performing the kthreads affinity update from cpuset to  the kthreads consolidated relevant code instead so that preferred  affinities are honoured and applied against the updated cpuset  isolated partitions.  The dispatch of the new isolated cpumasks to timers, workqueues and  kthreads is performed by housekeeping, as per the nice Tejun&apos;s  suggestion.  As a welcome side effect, HK_TYPE_DOMAIN then integrates both the set  from boot defined domain isolation (through isolcpus=) and cpuset  isolated partitions. Housekeeping cpumasks are now modifiable with a  specific RCU based synchronization. A big step toward making  nohz_full= also mutable through cpuset in the future&quot;* tag &apos;kthread-for-7.0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/frederic/linux-dynticks: (33 commits)  doc: Add housekeeping documentation  kthread: Document kthread_affine_preferred()  kthread: Comment on the purpose and placement of kthread_affine_node() call  kthread: Honour kthreads preferred affinity after cpuset changes  sched/arm64: Move fallback task cpumask to HK_TYPE_DOMAIN  sched: Switch the fallback task allowed cpumask to HK_TYPE_DOMAIN  kthread: Rely on HK_TYPE_DOMAIN for preferred affinity management  kthread: Include kthreadd to the managed affinity list  kthread: Include unbound kthreads in the managed affinity list  kthread: Refine naming of affinity related fields  PCI: Remove superfluous HK_TYPE_WQ check  sched/isolation: Remove HK_TYPE_TICK test from cpu_is_isolated()  cpuset: Remove cpuset_cpu_is_isolated()  timers/migration: Remove superfluous cpuset isolation test  cpuset: Propagate cpuset isolation update to timers through housekeeping  cpuset: Propagate cpuset isolation update to workqueue through housekeeping  PCI: Flush PCI probe workqueue on cpuset isolated partition change  sched/isolation: Flush vmstat workqueues on cpuset isolated partition change  sched/isolation: Flush memcg workqueues on cpuset isolated partition change  cpuset: Update HK_TYPE_DOMAIN cpumask from cpuset  ...

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Tue, 10 Feb 2026 04:57:30 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>9e355113f02be17db573d579515dee63621b7c8b - Merge tag &apos;vfs-7.0-rc1.misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs</title>
        <link>http://kernelsources.org:8080/source/history/linux/init/Kconfig#9e355113f02be17db573d579515dee63621b7c8b</link>
        <description>Merge tag &apos;vfs-7.0-rc1.misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsPull misc vfs updates from Christian Brauner: &quot;This contains a mix of VFS cleanups, performance improvements, API  fixes, documentation, and a deprecation notice.  Scalability and performance:   - Rework pid allocation to only take pidmap_lock once instead of     twice during alloc_pid(), improving thread creation/teardown     throughput by 10-16% depending on false-sharing luck. Pad the     namespace refcount to reduce false-sharing   - Track file lock presence via a flag in -&gt;i_opflags instead of     reading -&gt;i_flctx, avoiding false-sharing with -&gt;i_readcount on     open/close hot paths. Measured 4-16% improvement on 24-core     open-in-a-loop benchmarks   - Use a consume fence in locks_inode_context() to match the     store-release/load-consume idiom, eliminating a hardware fence on     some architectures   - Annotate cdev_lock with __cacheline_aligned_in_smp to prevent     false-sharing   - Remove a redundant DCACHE_MANAGED_DENTRY check in     __follow_mount_rcu() that never fires since the caller already     verifies it, eliminating a 100% mispredicted branch   - Fix a 100% mispredicted likely() in devcgroup_inode_permission()     that became wrong after a prior code reorder  Bug fixes and correctness:   - Make insert_inode_locked() wait for inode destruction instead of     skipping, fixing a corner case where two matching inodes could     exist in the hash   - Move f_mode initialization before file_ref_init() in alloc_file()     to respect the SLAB_TYPESAFE_BY_RCU ordering contract   - Add a WARN_ON_ONCE guard in try_to_free_buffers() for folios with     no buffers attached, preventing a null pointer dereference when     AS_RELEASE_ALWAYS is set but no release_folio op exists   - Fix select restart_block to store end_time as timespec64, avoiding     truncation of tv_sec on 32-bit architectures   - Make dump_inode() use get_kernel_nofault() to safely access inode     and superblock fields, matching the dump_mapping() pattern  API modernization:   - Make posix_acl_to_xattr() allocate the buffer internally since     every single caller was doing it anyway. Reduces boilerplate and     unnecessary error checking across ~15 filesystems   - Replace deprecated simple_strtoul() with kstrtoul() for the     ihash_entries, dhash_entries, mhash_entries, and mphash_entries     boot parameters, adding proper error handling   - Convert chardev code to use guard(mutex) and __free(kfree) cleanup     patterns   - Replace min_t() with min() or umin() in VFS code to avoid silently     truncating unsigned long to unsigned int   - Gate LOOKUP_RCU assertions behind CONFIG_DEBUG_VFS since callers     already check the flag  Deprecation:   - Begin deprecating legacy BSD process accounting (acct(2)). The     interface has numerous footguns and better alternatives exist     (eBPF)  Documentation:   - Fix and complete kernel-doc for struct export_operations, removing     duplicated documentation between ReST and source   - Fix kernel-doc warnings for __start_dirop() and ilookup5_nowait()  Testing:   - Add a kunit test for initramfs cpio handling of entries with     filesize &gt; PATH_MAX  Misc:   - Add missing &lt;linux/init_task.h&gt; include in fs_struct.c&quot;* tag &apos;vfs-7.0-rc1.misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs: (28 commits)  posix_acl: make posix_acl_to_xattr() alloc the buffer  fs: make insert_inode_locked() wait for inode destruction  initramfs_test: kunit test for cpio.filesize &gt; PATH_MAX  fs: improve dump_inode() to safely access inode fields  fs: add &lt;linux/init_task.h&gt; for &apos;init_fs&apos;  docs: exportfs: Use source code struct documentation  fs: move initializing f_mode before file_ref_init()  exportfs: Complete kernel-doc for struct export_operations  exportfs: Mark struct export_operations functions at kernel-doc  exportfs: Fix kernel-doc output for get_name()  acct(2): begin the deprecation of legacy BSD process accounting  device_cgroup: remove branch hint after code refactor  VFS: fix __start_dirop() kernel-doc warnings  fs: Describe @isnew parameter in ilookup5_nowait()  fs/namei: Remove redundant DCACHE_MANAGED_DENTRY check in __follow_mount_rcu  fs: only assert on LOOKUP_RCU when built with CONFIG_DEBUG_VFS  select: store end_time as timespec64 in restart block  chardev: Switch to guard(mutex) and __free(kfree)  namespace: Replace simple_strtoul with kstrtoul to parse boot params  dcache: Replace simple_strtoul with kstrtoul in set_dhash_entries  ...

            List of files:
            /linux/init/Kconfig</description>
        <pubDate>Tue, 10 Feb 2026 00:13:05 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
</channel>
</rss>
