<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in params.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Mon, 27 Apr 2026 08:26:49 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>3e9e952bb3139ad1e08f3e1960239c2988ab90c9 - Merge branch &apos;for-7.1-printf-kunit-build&apos; into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#3e9e952bb3139ad1e08f3e1960239c2988ab90c9</link>
        <description>Merge branch &apos;for-7.1-printf-kunit-build&apos; into for-linus

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Mon, 20 Apr 2026 11:41:28 +0000</pubDate>
        <dc:creator>Petr Mladek &lt;pmladek@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>f4b369c6fe0ceaba2da2daff8c9eb415f85926dd - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Mon, 20 Apr 2026 01:28:57 +0000</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d4eb7b2da66c848709e31585b9c371fa234abc39 - Merge branch &apos;for-7.1/core-v2&apos; into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#d4eb7b2da66c848709e31585b9c371fa234abc39</link>
        <description>Merge branch &apos;for-7.1/core-v2&apos; into for-linus- fixed handling of 0-sized reports (Dmitry Torokhov)- convert core code to __free() (Dmitry Torokhov)- support for multiple batteries per HID device (Lucas Zampieri)

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Thu, 16 Apr 2026 19:01:18 +0000</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>88b29f3f579987fff0d2bd726d5fa95a53f857fa - Merge tag &apos;modules-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/modules/linux</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#88b29f3f579987fff0d2bd726d5fa95a53f857fa</link>
        <description>Merge tag &apos;modules-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/modules/linuxPull module updates from Sami Tolvanen: &quot;Kernel symbol flags:   - Replace the separate *_gpl symbol sections (__ksymtab_gpl and     __kcrctab_gpl) with a unified symbol table and a new __kflagstab     section.     This section stores symbol flags, such as the GPL-only flag, as an     8-bit bitset for each exported symbol. This is a cleanup that     simplifies symbol lookup in the module loader by avoiding table     fragmentation and will allow a cleaner way to add more flags later     if needed.  Module signature UAPI:   - Move struct module_signature to the UAPI headers to allow reuse by     tools outside the kernel proper, such as kmod and     scripts/sign-file.     This also renames a few constants for clarity and drops unused     signature types as preparation for hash-based module integrity     checking work that&apos;s in progress.  Sysfs:   - Add a /sys/module/&lt;module&gt;/import_ns sysfs attribute to show the     symbol namespaces imported by loaded modules.     This makes it easier to verify driver API access at runtime on     systems that care about such things (e.g. Android).  Cleanups and fixes:   - Force sh_addr to 0 for all sections in module.lds. This prevents     non-zero section addresses when linking modules with &apos;ld.bfd -r&apos;,     which confused elfutils.   - Fix a memory leak of charp module parameters on module unload when     the kernel is configured with CONFIG_SYSFS=n.   - Override the -EEXIST error code returned by module_init() to     userspace. This prevents confusion with the errno reserved by the     module loader to indicate that a module is already loaded.   - Simplify the warning message and drop the stack dump on positive     returns from module_init().   - Drop unnecessary extern keywords from function declarations and     synchronize parse_args() arguments with their implementation&quot;* tag &apos;modules-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/modules/linux: (23 commits)  module: Simplify warning on positive returns from module_init()  module: Override -EEXIST module return  documentation: remove references to *_gpl sections  module: remove *_gpl sections from vmlinux and modules  module: deprecate usage of *_gpl sections in module loader  module: use kflagstab instead of *_gpl sections  module: populate kflagstab in modpost  module: add kflagstab section to vmlinux and modules  module: define ksym_flags enumeration to represent kernel symbol flags  selftests/bpf: verify_pkcs7_sig: Use &apos;struct module_signature&apos; from the UAPI headers  sign-file: use &apos;struct module_signature&apos; from the UAPI headers  tools uapi headers: add linux/module_signature.h  module: Move &apos;struct module_signature&apos; to UAPI  module: Give MODULE_SIG_STRING a more descriptive name  module: Give &apos;enum pkey_id_type&apos; a more specific name  module: Drop unused signature types  extract-cert: drop unused definition of PKEY_ID_PKCS7  docs: symbol-namespaces: mention sysfs attribute  module: expose imported namespaces via sysfs  module: Remove extern keyword from param prototypes  ...

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Wed, 15 Apr 2026 00:16:38 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>65f535501e2a3378629b8650eca553920de5e5a2 - module: Clean up parse_args() arguments</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#65f535501e2a3378629b8650eca553920de5e5a2</link>
        <description>module: Clean up parse_args() arguments* Use the preferred `unsigned int` over plain `unsigned` for the `num`  parameter.* Synchronize the parameter names in moduleparam.h with the ones used by  the implementation in params.c.Signed-off-by: Petr Pavlu &lt;petr.pavlu@suse.com&gt;Signed-off-by: Sami Tolvanen &lt;samitolvanen@google.com&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Fri, 13 Mar 2026 13:48:03 +0000</pubDate>
        <dc:creator>Petr Pavlu &lt;petr.pavlu@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>deffe1edba626d474fef38007c03646ca5876a0e - module: Fix freeing of charp module parameters when CONFIG_SYSFS=n</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#deffe1edba626d474fef38007c03646ca5876a0e</link>
        <description>module: Fix freeing of charp module parameters when CONFIG_SYSFS=nWhen setting a charp module parameter, the param_set_charp() functionallocates memory to store a copy of the input value. Later, when the moduleis potentially unloaded, the destroy_params() function is called to freethis allocated memory.However, destroy_params() is available only when CONFIG_SYSFS=y, otherwiseonly a dummy variant is present. In the unlikely case that the kernel isconfigured with CONFIG_MODULES=y and CONFIG_SYSFS=n, this results ina memory leak of charp values when a module is unloaded.Fix this issue by making destroy_params() always available whenCONFIG_MODULES=y. Rename the function to module_destroy_params() to clarifythat it is intended for use by the module loader.Fixes: e180a6b7759a (&quot;param: fix charp parameters set via sysfs&quot;)Signed-off-by: Petr Pavlu &lt;petr.pavlu@suse.com&gt;Signed-off-by: Sami Tolvanen &lt;samitolvanen@google.com&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Fri, 13 Mar 2026 13:48:02 +0000</pubDate>
        <dc:creator>Petr Pavlu &lt;petr.pavlu@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>0421ccdfad0d92713a812a5aeb7d07b0ea7213c8 - Merge tag &apos;v7.0-rc3&apos; into next</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#0421ccdfad0d92713a812a5aeb7d07b0ea7213c8</link>
        <description>Merge tag &apos;v7.0-rc3&apos; into nextSync up with the mainline to brig up the latest changes, specificallychanges to ALPS driver.

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Thu, 12 Mar 2026 17:44:42 +0000</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>42d3b66d4cdbacfc9d120d2301b8de89cc29a914 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#42d3b66d4cdbacfc9d120d2301b8de89cc29a914</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 7.00-rc3. Important ahead GPU SVM merging THPsupport.Signed-off-by: Matthew Brost &lt;matthew.brost@intel.com&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Thu, 12 Mar 2026 14:17:56 +0000</pubDate>
        <dc:creator>Matthew Brost &lt;matthew.brost@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>0314e382cf02983eb3c33ac537ad9701e7858bc9 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#0314e382cf02983eb3c33ac537ad9701e7858bc9</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netCross-merge networking fixes after downstream PR (net-7.0-rc2).Conflicts:tools/testing/selftests/drivers/net/hw/rss_ctx.py  19c3a2a81d2b (&quot;selftests: drv-net: rss: Generate unique ports for RSS context tests&quot;)  ce5a0f4612db (&quot;selftests: drv-net: rss_ctx: test RSS contexts persist after ifdown/up&quot;)include/net/inet_connection_sock.h  858d2a4f67ff6 (&quot;tcp: fix potential race in tcp_v6_syn_recv_sock()&quot;)  fcd3d039fab69 (&quot;tcp: make tcp_v{4,6}_send_check() static&quot;)https://lore.kernel.org/aZ8PSFLzBrEU3I89@sirena.org.ukdrivers/net/ethernet/mellanox/mlx5/core/en/xsk/setup.cdrivers/net/ethernet/mellanox/mlx5/core/en/xsk/pool.c  69050f8d6d075 (&quot;treewide: Replace kmalloc with kmalloc_obj for non-scalar types&quot;)  bf4afc53b77ae (&quot;Convert &apos;alloc_obj&apos; family to use the new default GFP_KERNEL argument&quot;)  8a96b9144f18a (&quot;net/mlx5e: Alloc xsk channel param out of mlx5e_open_xsk()&quot;)Adjacent changes:net/netfilter/ipvs/ip_vs_ctl.c  c59bd9e62e06 (&quot;ipvs: use more counters to avoid service lookups&quot;)  bf4afc53b77a (&quot;Convert &apos;alloc_obj&apos; family to use the new default GFP_KERNEL argument&quot;)Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Thu, 26 Feb 2026 18:20:47 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f09812b85fa6f41058bcc46e70ac406bf9b0493a - Merge drm/drm-next into drm-intel-next</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#f09812b85fa6f41058bcc46e70ac406bf9b0493a</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v7.0-rc1 which contains a few treewide changes affecting i915.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Wed, 25 Feb 2026 11:23:04 +0000</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3ecf0b4a0e0ed4783aa32c5f3e42d23c7021e1c8 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 7.0-rc1</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#3ecf0b4a0e0ed4783aa32c5f3e42d23c7021e1c8</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 7.0-rc1Cross-merge trees after 7.0-rc1.No conflicts.Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Mon, 23 Feb 2026 16:06:33 +0000</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8b85987d3cf50178f67618122d9f3bb202f62f42 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#8b85987d3cf50178f67618122d9f3bb202f62f42</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s merge 7.0-rc1 to start the new drm-misc-next windowSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Mon, 23 Feb 2026 10:48:20 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#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/kernel/params.c</description>
        <pubDate>Mon, 23 Feb 2026 09:09:45 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>32a92f8c89326985e05dce8b22d3f0aa07a3e1bd - Convert more &apos;alloc_obj&apos; cases to default GFP_KERNEL arguments</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#32a92f8c89326985e05dce8b22d3f0aa07a3e1bd</link>
        <description>Convert more &apos;alloc_obj&apos; cases to default GFP_KERNEL argumentsThis converts some of the visually simpler cases that have been splitover multiple lines.  I only did the ones that are easy to verify theresulting diff by having just that final GFP_KERNEL argument on the nextline.Somebody should probably do a proper coccinelle script for this, but forme the trivial script actually resulted in an assertion failure in themiddle of the script.  I probably had made it a bit _too_ trivial.So after fighting that far a while I decided to just do some of thesyntactically simpler cases with variations of the previous &apos;sed&apos;scripts.The more syntactically complex multi-line cases would mostly really wantwhitespace cleanup anyway.Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Sun, 22 Feb 2026 04:03:00 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>bf4afc53b77aeaa48b5409da5c8da6bb4eff7f43 - Convert &apos;alloc_obj&apos; family to use the new default GFP_KERNEL argument</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#bf4afc53b77aeaa48b5409da5c8da6bb4eff7f43</link>
        <description>Convert &apos;alloc_obj&apos; family to use the new default GFP_KERNEL argumentThis was done entirely with mindless brute force, using    git grep -l &apos;\&lt;k[vmz]*alloc_objs*(.*, GFP_KERNEL)&apos; |        xargs sed -i &apos;s/\(alloc_objs*(.*\), GFP_KERNEL)/\1)/&apos;to convert the new alloc_obj() users that had a simple GFP_KERNELargument to just drop that argument.Note that due to the extreme simplicity of the scripting, any slightlymore complex cases spread over multiple lines would not be triggered:they definitely exist, but this covers the vast bulk of the cases, andthe resulting diff is also then easier to check automatically.For the same reason the &apos;flex&apos; versions will be done as a separateconversion.Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Sun, 22 Feb 2026 00:37:42 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.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://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#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/kernel/params.c</description>
        <pubDate>Sat, 21 Feb 2026 19:02:58 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>69050f8d6d075dc01af7a5f2f550a8067510366f - treewide: Replace kmalloc with kmalloc_obj for non-scalar types</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#69050f8d6d075dc01af7a5f2f550a8067510366f</link>
        <description>treewide: Replace kmalloc with kmalloc_obj for non-scalar typesThis is the result of running the Coccinelle script fromscripts/coccinelle/api/kmalloc_objs.cocci. The script is designed toavoid scalar types (which need careful case-by-case checking), andinstead replace kmalloc-family calls that allocate struct or unionobject instances:Single allocations:	kmalloc(sizeof(TYPE), ...)are replaced with:	kmalloc_obj(TYPE, ...)Array allocations:	kmalloc_array(COUNT, sizeof(TYPE), ...)are replaced with:	kmalloc_objs(TYPE, COUNT, ...)Flex array allocations:	kmalloc(struct_size(PTR, FAM, COUNT), ...)are replaced with:	kmalloc_flex(*PTR, FAM, COUNT, ...)(where TYPE may also be *VAR)The resulting allocations no longer return &quot;void *&quot;, instead returning&quot;TYPE *&quot;.Signed-off-by: Kees Cook &lt;kees@kernel.org&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Sat, 21 Feb 2026 07:49:23 +0000</pubDate>
        <dc:creator>Kees Cook &lt;kees@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a7423e6ea2f8f6f453de79213c26f7a36c86d9a2 - Merge tag &apos;modules-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/modules/linux</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#a7423e6ea2f8f6f453de79213c26f7a36c86d9a2</link>
        <description>Merge tag &apos;modules-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/modules/linuxPull module updates from Sami Tolvanen: &quot;Module signing:   - Remove SHA-1 support for signing modules.     SHA-1 is no longer considered secure for signatures due to     vulnerabilities that can lead to hash collisions. None of the major     distributions use SHA-1 anymore, and the kernel has defaulted to     SHA-512 since v6.11.     Note that loading SHA-1 signed modules is still supported.   - Update scripts/sign-file to use only the OpenSSL CMS API for     signing.     As SHA-1 support is gone, we can drop the legacy PKCS#7 API which     was limited to SHA-1. This also cleans up support for legacy     OpenSSL versions.  Cleanups and fixes:   - Use system_dfl_wq instead of the per-cpu system_wq following the     ongoing workqueue API refactoring.   - Avoid open-coded kvrealloc() in module decompression logic by using     the standard helper.   - Improve section annotations by replacing the custom __modinit with     __init_or_module and removing several unused __INIT*_OR_MODULE     macros.   - Fix kernel-doc warnings in include/linux/moduleparam.h.   - Ensure set_module_sig_enforced is only declared when module signing     is enabled.   - Fix gendwarfksyms build failures on 32-bit hosts.  MAINTAINERS:   - Update the module subsystem entry to reflect the maintainer     rotation and update the git repository link&quot;* tag &apos;modules-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/modules/linux:  modules: moduleparam.h: fix kernel-doc comments  module: Only declare set_module_sig_enforced when CONFIG_MODULE_SIG=y  module/decompress: Avoid open-coded kvrealloc()  gendwarfksyms: Fix build on 32-bit hosts  sign-file: Use only the OpenSSL CMS API for signing  module: Remove SHA-1 support for module signing  module: replace use of system_wq with system_dfl_wq  params: Replace __modinit with __init_or_module  module: Remove unused __INIT*_OR_MODULE macros  MAINTAINERS: Update module subsystem maintainers and repository

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Tue, 10 Feb 2026 17:49:18 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>3cb0c3bdea5388519bc1bf575dca6421b133302b - params: Replace __modinit with __init_or_module</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/kernel/params.c#3cb0c3bdea5388519bc1bf575dca6421b133302b</link>
        <description>params: Replace __modinit with __init_or_moduleRemove the custom __modinit macro from kernel/params.c and instead use thecommon __init_or_module macro from include/linux/module.h. Both provide thesame functionality.Signed-off-by: Petr Pavlu &lt;petr.pavlu@suse.com&gt;Reviewed-by: Aaron Tomlin &lt;atomlin@atomlin.com&gt;Reviewed-by: Daniel Gomez &lt;da.gomez@samsung.com&gt;Reviewed-by: Sami Tolvanen &lt;samitolvanen@google.com&gt;Signed-off-by: Sami Tolvanen &lt;samitolvanen@google.com&gt;

            List of files:
            /linux/kernel/params.c</description>
        <pubDate>Tue, 19 Aug 2025 12:12:09 +0000</pubDate>
        <dc:creator>Petr Pavlu &lt;petr.pavlu@suse.com&gt;</dc:creator>
    </item>
</channel>
</rss>
