<?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>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#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/arch/riscv/purgatory/Makefile</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>feff82eb5f4075d541990d0ba60dad14ea83ea9b - Merge tag &apos;riscv-for-linus-7.1-mw1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#feff82eb5f4075d541990d0ba60dad14ea83ea9b</link>
        <description>Merge tag &apos;riscv-for-linus-7.1-mw1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linuxPull RISC-V updates from Paul Walmsley: &quot;There is one significant change outside arch/riscv in this pull  request: the addition of a set of KUnit tests for strlen(), strnlen(),  and strrchr().  Otherwise, the most notable changes are to add some RISC-V-specific  string function implementations, to remove XIP kernel support, to add  hardware error exception handling, and to optimize our runtime  unaligned access speed testing.  A few comments on the motivation for removing XIP support. It&apos;s been  broken in the RISC-V kernel for months. The code is not easy to  maintain. Furthermore, for XIP support to truly be useful for RISC-V,  we think that compile-time feature switches would need to be added for  many of the RISC-V ISA features and microarchitectural properties that  are currently implemented with runtime patching. No one has stepped  forward to take responsibility for that work, so many of us think it&apos;s  best to remove it until clear use cases and champions emerge.  Summary:   - Add Kunit correctness testing and microbenchmarks for strlen(),     strnlen(), and strrchr()   - Add RISC-V-specific strnlen(), strchr(), strrchr() implementations   - Add hardware error exception handling   - Clean up and optimize our unaligned access probe code   - Enable HAVE_IOREMAP_PROT to be able to use generic_access_phys()   - Remove XIP kernel support   - Warn when addresses outside the vmemmap range are passed to     vmemmap_populate()   - Update the ACPI FADT revision check to warn if it&apos;s not at least     ACPI v6.6, which is when key RISC-V-specific tables were added to     the specification   - Increase COMMAND_LINE_SIZE to 2048 to match ARM64, x86, PowerPC,     etc.   - Make kaslr_offset() a static inline function, since there&apos;s no need     for it to show up in the symbol table   - Add KASLR offset and SATP to the VMCOREINFO ELF notes to improve     kdump support   - Add Makefile cleanup rule for vdso_cfi copied source files, and add     a .gitignore for the build artifacts in that directory   - Remove some redundant ifdefs that check Kconfig macros   - Add missing SPDX license tag to the CFI selftest   - Simplify UTS_MACHINE assignment in the RISC-V Makefile   - Clarify some unclear comments and remove some superfluous comments   - Fix various English typos across the RISC-V codebase&quot;* tag &apos;riscv-for-linus-7.1-mw1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux: (31 commits)  riscv: Remove support for XIP kernel  riscv: Reuse compare_unaligned_access() in check_vector_unaligned_access()  riscv: Split out compare_unaligned_access()  riscv: Reuse measure_cycles() in check_vector_unaligned_access()  riscv: Split out measure_cycles() for reuse  riscv: Clean up &amp; optimize unaligned scalar access probe  riscv: lib: add strrchr() implementation  riscv: lib: add strchr() implementation  riscv: lib: add strnlen() implementation  lib/string_kunit: extend benchmarks to strnlen() and chr searches  lib/string_kunit: add performance benchmark for strlen()  lib/string_kunit: add correctness test for strrchr()  lib/string_kunit: add correctness test for strnlen()  lib/string_kunit: add correctness test for strlen()  riscv: vdso_cfi: Add .gitignore for build artifacts  riscv: vdso_cfi: Add clean rule for copied sources  riscv: enable HAVE_IOREMAP_PROT  riscv: mm: WARN_ON() for bad addresses in vmemmap_populate()  riscv: acpi: update FADT revision check to 6.6  riscv: add hardware error trap handler support  ...

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Fri, 24 Apr 2026 19:00:37 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>bef64bcb940269a503d12eb1bc180d1aa9adf74d - riscv: lib: add strrchr() implementation</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#bef64bcb940269a503d12eb1bc180d1aa9adf74d</link>
        <description>riscv: lib: add strrchr() implementationAdd an assembly implementation of strrchr() for RISC-V.This implementation minimizes instruction count and avoids unnecessarymemory access to the stack. The performance benefits are most visibleon small workloads (1-16 bytes) where the architectural savings infunction overhead outweigh the execution time of the scan loop.Benchmark results (QEMU TCG, rv64):  Length | Original (MB/s) | Optimized (MB/s) | Improvement  -------|-----------------|------------------|------------  1 B    | 20              | 21               | +5.0%  7 B    | 111             | 120              | +8.1%  16 B   | 189             | 199              | +5.3%  512 B  | 361             | 382              | +5.8%  4096 B | 388             | 391              | +0.8%Signed-off-by: Feng Jiang &lt;jiangfeng@kylinos.cn&gt;Tested-by: Joel Stanley &lt;joel@jms.id.au&gt;Link: https://patch.msgid.link/20260130025018.172925-9-jiangfeng@kylinos.cnSigned-off-by: Paul Walmsley &lt;pjw@kernel.org&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Sat, 04 Apr 2026 03:28:47 +0200</pubDate>
        <dc:creator>Feng Jiang &lt;jiangfeng@kylinos.cn&gt;</dc:creator>
    </item>
<item>
        <title>adf542133960d402f63c976b00e46be4d986d4c3 - riscv: lib: add strchr() implementation</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#adf542133960d402f63c976b00e46be4d986d4c3</link>
        <description>riscv: lib: add strchr() implementationAdd an assembly implementation of strchr() for RISC-V.By eliminating stack frame management (prologue/epilogue) and optimizingthe function entries, the assembly version provides significant relativegains for short strings where the fixed overhead of the C function ismost prominent. As string length increases, performance converges withthe generic C implementation.Benchmark results (QEMU TCG, rv64):  Length | Original (MB/s) | Optimized (MB/s) | Improvement  -------|-----------------|------------------|------------  1 B    | 21              | 22               | +4.8%  7 B    | 113             | 121              | +7.1%  16 B   | 195             | 202              | +3.6%  512 B  | 376             | 389              | +3.5%  4096 B | 394             | 393              | -0.3%Signed-off-by: Feng Jiang &lt;jiangfeng@kylinos.cn&gt;Tested-by: Joel Stanley &lt;joel@jms.id.au&gt;Link: https://patch.msgid.link/20260130025018.172925-8-jiangfeng@kylinos.cnSigned-off-by: Paul Walmsley &lt;pjw@kernel.org&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Sat, 04 Apr 2026 03:28:47 +0200</pubDate>
        <dc:creator>Feng Jiang &lt;jiangfeng@kylinos.cn&gt;</dc:creator>
    </item>
<item>
        <title>5ba15d419fab848a3813eb56bbcad00e291fbc49 - riscv: lib: add strnlen() implementation</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#5ba15d419fab848a3813eb56bbcad00e291fbc49</link>
        <description>riscv: lib: add strnlen() implementationAdd an optimized strnlen() implementation for RISC-V. This versionincludes a generic optimization and a Zbb-powered optimization usingthe &apos;orc.b&apos; instruction, derived from the strlen() implementation.Benchmark results (QEMU TCG, rv64):  Length | Original (MB/s) | Optimized (MB/s) | Improvement  -------|-----------------|------------------|------------  16 B   | 179             | 309              | +72.6%  512 B  | 347             | 1562             | +350.1%  4096 B | 356             | 1878             | +427.5%Suggested-by: Qingfang Deng &lt;dqfext@gmail.com&gt;Signed-off-by: Feng Jiang &lt;jiangfeng@kylinos.cn&gt;Link: https://patch.msgid.link/20260130025018.172925-7-jiangfeng@kylinos.cnSigned-off-by: Paul Walmsley &lt;pjw@kernel.org&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Sat, 04 Apr 2026 03:28:47 +0200</pubDate>
        <dc:creator>Feng Jiang &lt;jiangfeng@kylinos.cn&gt;</dc:creator>
    </item>
<item>
        <title>a4a508df2aa34f8650afde54ea804321c618f45f - Merge tag &apos;v6.18&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#a4a508df2aa34f8650afde54ea804321c618f45f</link>
        <description>Merge tag &apos;v6.18&apos; into nextSync up with the mainline to bring in the latest APIs.

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Sat, 13 Dec 2025 10:18:20 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>cb9f145f638d7afa633632a9290d6ad06caeb8ee - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclark</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#cb9f145f638d7afa633632a9290d6ad06caeb8ee</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclarkBack-merge drm-next to get caught up.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Sat, 01 Nov 2025 13:47:30 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>82ee50252dc891e3f3b32d923bb4f656d300b772 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#82ee50252dc891e3f3b32d923bb4f656d300b772</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.18-rc1.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Tue, 14 Oct 2025 11:31:49 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2acee98fcc61052d63fab4539fcb6ee677555645 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#2acee98fcc61052d63fab4539fcb6ee677555645</link>
        <description>Merge drm/drm-next into drm-intel-nextSync to v6.18-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Tue, 14 Oct 2025 09:37:11 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>9b966ae42235a88eaea714be09ff3d698535bdfe - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#9b966ae42235a88eaea714be09ff3d698535bdfe</link>
        <description>Merge drm/drm-next into drm-misc-nextUpdating drm-misc-next to the state of v6.18-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Mon, 13 Oct 2025 09:19:19 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>f088104d837a991c65e51fa30bb4196169b3244d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#f088104d837a991c65e51fa30bb4196169b3244d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerge in order to get the commit:  048832a3f400 (&quot;drm/i915: Refactor shmem_pwrite() to use kiocb and write_iter&quot;)To drm-intel-gt-next as there are followup fixes to be applied.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Tue, 16 Sep 2025 12:53:20 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2ace52718376fdb56aca863da2eebe70d7e2ddb1 - Merge branch &apos;objtool/core&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#2ace52718376fdb56aca863da2eebe70d7e2ddb1</link>
        <description>Merge branch &apos;objtool/core&apos;Bring in the UDB and objtool data annotations to avoid conflicts while further extending the bug exceptions.Signed-off-by: Peter Zijlstra &lt;peterz@infradead.org&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Fri, 21 Nov 2025 11:21:20 +0100</pubDate>
        <dc:creator>Peter Zijlstra &lt;peterz@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>a53d0cf7f1cb3182ad533ff5cacfa5fd29c419ad - Merge commit &apos;linus&apos; into core/bugs, to resolve conflicts</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#a53d0cf7f1cb3182ad533ff5cacfa5fd29c419ad</link>
        <description>Merge commit &apos;linus&apos; into core/bugs, to resolve conflictsResolve conflicts with this commit that was developed in parallelduring the merge window: 8c8efa93db68 (&quot;x86/bug: Add ARCH_WARN_ASM macro for BUG/WARN asm code sharing with Rust&quot;) Conflicts:	arch/riscv/include/asm/bug.h	arch/x86/include/asm/bug.hSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Tue, 05 Aug 2025 11:15:34 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f39b6c468c52745dbca9a842d91c8373fda208ab - Merge tag &apos;v6.18-rc6&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#f39b6c468c52745dbca9a842d91c8373fda208ab</link>
        <description>Merge tag &apos;v6.18-rc6&apos; into for-linusSync up with the mainline to bring in definition ofINPUT_PROP_HAPTIC_TOUCHPAD.

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Tue, 18 Nov 2025 08:16:55 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4f38da1f027ea2c9f01bb71daa7a299c191b6940 - spi: Merge up v6.18-rc1</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#4f38da1f027ea2c9f01bb71daa7a299c191b6940</link>
        <description>spi: Merge up v6.18-rc1Ensure my CI has a sensible baseline.

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Mon, 13 Oct 2025 14:32:13 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ec2e0fb07d789976c601bec19ecced7a501c3705 - Merge tag &apos;asoc-fix-v6.18-rc1&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/arch/riscv/purgatory/Makefile#ec2e0fb07d789976c601bec19ecced7a501c3705</link>
        <description>Merge tag &apos;asoc-fix-v6.18-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v6.18A moderately large collection of driver specific fixes, plus a few newquirks and device IDs.  The NAU8821 changes are a little large but morein mechanical ways than in ways that are complex.

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Thu, 16 Oct 2025 20:14:24 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>48a710760e10a4f36e11233a21860796ba204b1e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#48a710760e10a4f36e11233a21860796ba204b1e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesUpdating drm-misc-fixes to the state of v6.18-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Tue, 14 Oct 2025 10:59:58 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>8b87f67b4c87452e21721887fa8dec1f4c6b2b7c - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#8b87f67b4c87452e21721887fa8dec1f4c6b2b7c</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.18 merge window.

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Wed, 08 Oct 2025 06:53:13 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4b051897df2375414587a245ecb9bb1a4d26b3b8 - Merge tag &apos;v6.17-rc2&apos; into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#4b051897df2375414587a245ecb9bb1a4d26b3b8</link>
        <description>Merge tag &apos;v6.17-rc2&apos; into HEADSync up with mainline to bring in changes to include/linux/sprintf.h

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Thu, 21 Aug 2025 20:46:49 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b4d90dbc4c1bc4bd3eb2d2989330af0eb95c98e8 - Merge drm/drm-next into drm-misc-next-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/purgatory/Makefile#b4d90dbc4c1bc4bd3eb2d2989330af0eb95c98e8</link>
        <description>Merge drm/drm-next into drm-misc-next-fixesBackmerging to drm-misc-next-fixes to get features and fixes fromv6.17-rc6.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/riscv/purgatory/Makefile</description>
        <pubDate>Mon, 15 Sep 2025 10:23:28 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
</channel>
</rss>
