<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>7149ce34dd48886b3f69153c7f5533dd3fd5f47e - Revert &quot;revocable: Add Kunit test cases&quot;</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#7149ce34dd48886b3f69153c7f5533dd3fd5f47e</link>
        <description>Revert &quot;revocable: Add Kunit test cases&quot;This reverts commit cd7693419bb5abd91ad2f407dab69c480e417a61.The new revocable functionality is fundamentally broken and at a minimumneeds to be redesigned.Drop the revocable Kunit tests to allow the implementation to be reverted.Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;Link: https://patch.msgid.link/20260204142849.22055-3-johan@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Wed, 04 Feb 2026 15:28:48 +0100</pubDate>
        <dc:creator>Johan Hovold &lt;johan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c5048ddee936ca5ce0aeb79172ce512130779d31 - driver core: disable revocable code from build</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#c5048ddee936ca5ce0aeb79172ce512130779d31</link>
        <description>driver core: disable revocable code from buildThe revocable code is still under active discussion, and there is noin-kernel users of it.  So disable it from the build for now so that noone suffers from it being present in the tree, yet leave it in thesource tree so that others can easily test it by reverting this commitand building off of it for future releases.Acked-by: Danilo Krummrich &lt;dakr@kernel.org&gt;Link: https://patch.msgid.link/2026020307-rimmed-dreamy-5a67@gregkhReviewed-by: Tzung-Bi Shih &lt;tzungbi@kernel.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Tue, 03 Feb 2026 13:30:37 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>cd7693419bb5abd91ad2f407dab69c480e417a61 - revocable: Add Kunit test cases</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#cd7693419bb5abd91ad2f407dab69c480e417a61</link>
        <description>revocable: Add Kunit test casesAdd Kunit test cases for the revocable API.The test cases cover the following scenarios:- Basic: Verifies that a consumer can successfully access the resource  provided via the provider.- Revocation: Verifies that after the provider revokes the resource,  the consumer correctly receives a NULL pointer on a subsequent access.- Try Access Macro: Same as &quot;Revocation&quot; but uses the  REVOCABLE_TRY_ACCESS_WITH() and REVOCABLE_TRY_ACCESS_SCOPED().A way to run the test:$ ./tools/testing/kunit/kunit.py run \        --kconfig_add CONFIG_REVOCABLE_KUNIT_TEST=y \        revocable_testSigned-off-by: Tzung-Bi Shih &lt;tzungbi@kernel.org&gt;Link: https://patch.msgid.link/20260116080235.350305-3-tzungbi@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Fri, 16 Jan 2026 09:02:34 +0100</pubDate>
        <dc:creator>Tzung-Bi Shih &lt;tzungbi@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>62eb557580eb2177cf16c3fd2b6efadff297b29a - revocable: Revocable resource management</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#62eb557580eb2177cf16c3fd2b6efadff297b29a</link>
        <description>revocable: Revocable resource managementSome resources can be removed asynchronously, for example, resourcesprovided by a hot-pluggable device like USB.  When holding a referenceto such a resource, it&apos;s possible for the resource to be removed andits memory freed, leading to use-after-free errors on subsequent access.The &quot;revocable&quot; mechanism addresses this by establishing a weak referenceto a resource that might be freed at any time.  It allows a resourceconsumer to safely attempt to access the resource, guaranteeing that theaccess is valid for the duration of its use, or it fails safely if theresource has already been revoked.The implementation uses a provider/consumer model built on SleepableRCU (SRCU) to guarantee safe memory access:- A resource provider, such as a driver for a hot-pluggable device,  allocates a struct revocable_provider and initializes it with a pointer  to the resource.- A resource consumer that wants to access the resource allocates a  struct revocable which acts as a handle containing a reference to the  provider.- To access the resource, the consumer uses revocable_try_access().  This function enters an SRCU read-side critical section and returns  the pointer to the resource.  If the provider has already freed the  resource, it returns NULL.  After use, the consumer calls  revocable_withdraw_access() to exit the SRCU critical section.  The  REVOCABLE_TRY_ACCESS_WITH() and REVOCABLE_TRY_ACCESS_SCOPED() are  convenient helpers for doing that.- When the provider needs to remove the resource, it calls  revocable_provider_revoke().  This function sets the internal resource  pointer to NULL and then calls synchronize_srcu() to wait for all  current readers to finish before the resource can be completely torn  down.Acked-by: Danilo Krummrich &lt;dakr@kernel.org&gt;Signed-off-by: Tzung-Bi Shih &lt;tzungbi@kernel.org&gt;Link: https://patch.msgid.link/20260116080235.350305-2-tzungbi@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Fri, 16 Jan 2026 09:02:33 +0100</pubDate>
        <dc:creator>Tzung-Bi Shih &lt;tzungbi@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>bbfd5594756011167b8f8de9a00e0c946afda1e6 - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#bbfd5594756011167b8f8de9a00e0c946afda1e6</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextNeed to pull in a67221b5eb8d (&quot;drm/i915/dp: Return min bpc supported by source instead of 0&quot;)in order to fix build breakage on GCC 9.4.0 (from Ubuntu 20.04).Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Wed, 28 May 2025 09:20:17 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1260ed77798502de9c98020040d2995008de10cc - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#1260ed77798502de9c98020040d2995008de10cc</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesBackmerging to get updates from v6.15-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Tue, 08 Apr 2025 10:15:47 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>946661e3bef8efa11ba8079d4ebafe6fc3b0aaad - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#946661e3bef8efa11ba8079d4ebafe6fc3b0aaad</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.15 merge window.

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Sat, 05 Apr 2025 08:04:35 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0b119045b79a672bc6d8f18641c60fc8ce1b4585 - Merge tag &apos;v6.14-rc4&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#0b119045b79a672bc6d8f18641c60fc8ce1b4585</link>
        <description>Merge tag &apos;v6.14-rc4&apos; into nextSync up with the mainline.

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Wed, 26 Feb 2025 01:03:25 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>df02351331671abb26788bc13f6d276e26ae068f - Merge tag &apos;riscv-mw1-6.15-rc1&apos; of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/alexghiti/linux into for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#df02351331671abb26788bc13f6d276e26ae068f</link>
        <description>Merge tag &apos;riscv-mw1-6.15-rc1&apos; of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/alexghiti/linux into for-nextriscv patches for 6.15-rc1* A bunch of fixes:  - We were missing a secondary mmu notifier call when flushing the tlb which is required for IOMMU  - Fix ftrace panics by saving the registers as expected by ftrace  - Fix a couple of stimecmp usage related to cpu hotplug  - Fix a bunch of issues in the misaligned probing handling* Perf improvements:  - Introduce support for runtime constant improving perf of d_hash()  - Add support for huge pfnmaps to improve tlb utilization  - Use Zawrs to improve smp_cond_load8/16() used by the queued spinlocks* Hwprobe additions:  - Add support for Zicntr and Zihpm  - Add support for Zaamo and Zalrsc  - Add support for bfloat16 extensiosn  - Add support for Zicbom (only enabling clean and flush, not inval for security reasons)* Misc:  - Add a kernel parameter to bypass the misaligned speed probing since we can&apos;t rely on Zicclsm* tag &apos;riscv-mw1-6.15-rc1&apos; of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/alexghiti/linux: (1585 commits)  riscv: Add runtime constant support  riscv: Move nop definition to insn-def.h  Documentation/kernel-parameters: Add riscv unaligned speed parameters  riscv: Add parameter for skipping access speed tests  riscv: Fix set up of vector cpu hotplug callback  riscv: Fix set up of cpu hotplug callbacks  riscv: Change check_unaligned_access_speed_all_cpus to void  riscv: Fix check_unaligned_access_all_cpus  riscv: Fix riscv_online_cpu_vec  riscv: Annotate unaligned access init functions  KVM: riscv: selftests: Add Zaamo/Zalrsc extensions to get-reg-list test  RISC-V: KVM: Allow Zaamo/Zalrsc extensions for Guest/VM  riscv: hwprobe: export Zaamo and Zalrsc extensions  riscv: add parsing for Zaamo and Zalrsc extensions  dt-bindings: riscv: add Zaamo and Zalrsc ISA extension description  riscv: fgraph: Fix stack layout to match __arch_ftrace_regs argument of ftrace_return_to_handler  riscv: fgraph: Select HAVE_FUNCTION_GRAPH_TRACER depends on HAVE_DYNAMIC_FTRACE_WITH_ARGS  riscv: Fix missing __free_pages() in check_vector_unaligned_access()  riscv: Fix the __riscv_copy_vec_words_unaligned implementation  riscv: mm: Don&apos;t use %pK through printk  ...

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Wed, 26 Mar 2025 23:54:12 +0100</pubDate>
        <dc:creator>Palmer Dabbelt &lt;palmer@rivosinc.com&gt;</dc:creator>
    </item>
<item>
        <title>f8da37e46253316d29a274a6747cb69007bc81f2 - Merge 6.14-rc3 into usb-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#f8da37e46253316d29a274a6747cb69007bc81f2</link>
        <description>Merge 6.14-rc3 into usb-nextWe need the USB fixes in here as well.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Mon, 17 Feb 2025 07:33:47 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>e749820252c73a17da97cc18b68fec7b6299cfd3 - Merge 6.14-rc3 into tty-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#e749820252c73a17da97cc18b68fec7b6299cfd3</link>
        <description>Merge 6.14-rc3 into tty-nextWe need the tty changes in here as well.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Mon, 17 Feb 2025 07:25:34 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>21fd84953571c7d2b73552ffcf0d0d1bcc7e8a20 - Merge tag &apos;i2c-host-6.15&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux into i2c/for-mergewindow</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#21fd84953571c7d2b73552ffcf0d0d1bcc7e8a20</link>
        <description>Merge tag &apos;i2c-host-6.15&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux into i2c/for-mergewindowi2c-host updates for v6.15Refactoring and cleanups - octeon, cadence, i801, pasemi, mlxbf, bcm-iproc: general   refactorings - octeon: remove 10-bit address supportImprovements - amd-asf: improved error handling - designware: use guard(mutex) - amd-asf, designware: update naming to follow latest specs - cadence: fix cleanup path in probe - i801: use MMIO and I/O mapping helpers to access registers - pxa: handle error after clk_prepare_enableNew features - added i2c_10bit_addr_*_from_msg() and updated multiple drivers - omap: added multiplexer state handling - qcom-geni: update frequency configuration - qup: introduce DMA usage policyNew hardware support - exynos: add support for Samsung exynos7870 - k1: add support for spacemit k1 (new driver) - imx: add support for i.mx94 lpi2c - rk3x: add support for rk3562Multiplexers - ltc4306, reg: fix assignment in platform_driver structure

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Tue, 25 Mar 2025 12:35:59 +0100</pubDate>
        <dc:creator>Wolfram Sang &lt;wsa+renesas@sang-engineering.com&gt;</dc:creator>
    </item>
<item>
        <title>046cc01be6b9d139b49dfc396b7201c633ff1a26 - Merge 6.14-rc6 into char-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#046cc01be6b9d139b49dfc396b7201c633ff1a26</link>
        <description>Merge 6.14-rc6 into char-misc-nextWe need the fixes in here as well to build on top of.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Mon, 10 Mar 2025 07:31:51 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>2ce177e9b3649afa9c19cc71460f3ad50e7fd344 - Merge 6.14-rc3 into driver-core-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#2ce177e9b3649afa9c19cc71460f3ad50e7fd344</link>
        <description>Merge 6.14-rc3 into driver-core-nextWe need the faux_device changes in here for future work.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Mon, 17 Feb 2025 07:24:33 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>0410c6121529409b08e81a77ae3ee58c657e2243 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#0410c6121529409b08e81a77ae3ee58c657e2243</link>
        <description>Merge drm/drm-next into drm-xe-nextSync to fix conlicts between drm-xe-next and drm-intel-next.Signed-off-by: Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Fri, 28 Feb 2025 15:54:14 +0100</pubDate>
        <dc:creator>Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8918e180a6fd67fc9864f2ba18186b4573f8a61b - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#8918e180a6fd67fc9864f2ba18186b4573f8a61b</link>
        <description>Merge drm/drm-next into drm-intel-nextSync to fix conlicts between drm-xe-next and drm-intel-next.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Fri, 28 Feb 2025 10:25:36 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>130377304ed09e54ff35a8974372498aad7059f3 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#130377304ed09e54ff35a8974372498aad7059f3</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to get fixes from v6.14-rc4.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Tue, 25 Feb 2025 11:43:10 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>230804a89319a76c6e653caadc98a870877548cc - Merge branch &apos;mlx5-next&apos; into wip/leon-for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#230804a89319a76c6e653caadc98a870877548cc</link>
        <description>Merge branch &apos;mlx5-next&apos; into wip/leon-for-nextThis is merge of shared branch between RDMA and net-next trees.* mlx5-next: (550 commits)  net/mlx5: Change POOL_NEXT_SIZE define value and make it global  net/mlx5: Add new health syndrome error and crr bit offset  Linux 6.14-rc3  ...Signed-off-by: Leon Romanovsky &lt;leon@kernel.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Tue, 25 Feb 2025 10:04:46 +0100</pubDate>
        <dc:creator>Leon Romanovsky &lt;leon@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>fb51bf02551958265b7116f6ba92752295c83c26 - Merge tag &apos;v6.14-rc4&apos; into drm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#fb51bf02551958265b7116f6ba92752295c83c26</link>
        <description>Merge tag &apos;v6.14-rc4&apos; into drm-nextBackmerge Linux 6.14-rc4 at the request of tzimmermann so misc-nextcan base on rc4.Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Tue, 25 Feb 2025 08:36:09 +0100</pubDate>
        <dc:creator>Dave Airlie &lt;airlied@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>bd4319b6c2b36aa5c6534aec1dbe16921ec960ef - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf bpf-6.14-rc4</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/base/Makefile#bd4319b6c2b36aa5c6534aec1dbe16921ec960ef</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf bpf-6.14-rc4Cross-merge bpf fixes after downstream PR (bpf-6.14-rc4).Minor conflict:  kernel/bpf/btf.cAdjacent changes:  kernel/bpf/arena.c  kernel/bpf/btf.c  kernel/bpf/syscall.c  kernel/bpf/verifier.c  mm/memory.cSigned-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/drivers/base/Makefile</description>
        <pubDate>Fri, 21 Feb 2025 03:10:24 +0100</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
