<?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 Kbuild</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>2c142b63c8ee982cdfdba49a616027c266294838 - Merge tag &apos;asoc-fix-v7.1-rc5&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/xtensa/include/asm/Kbuild#2c142b63c8ee982cdfdba49a616027c266294838</link>
        <description>Merge tag &apos;asoc-fix-v7.1-rc5&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v7.1This round of fixes is mostly Sirini&apos;s Qualcomm cleanups that have beenin review for a while, we also have a couple of small fixes from C&#225;ssio.

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Thu, 28 May 2026 13:48:04 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>37f32d5ab83968d63cfba6092ecaae3e582db964 - Merge tag &apos;kvm-s390-master-7.1-2&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#37f32d5ab83968d63cfba6092ecaae3e582db964</link>
        <description>Merge tag &apos;kvm-s390-master-7.1-2&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEADKVM: s390: some vSIE and UCONTROL fixesFix some memory issues and some hangs in vSIE.

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Sat, 23 May 2026 10:03:58 +0200</pubDate>
        <dc:creator>Paolo Bonzini &lt;pbonzini@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>7acfa2c5f4366d63653380646ffa7dbd1bfaccc0 - Merge tag &apos;trace-ringbuffer-v7.1-rc4&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#7acfa2c5f4366d63653380646ffa7dbd1bfaccc0</link>
        <description>Merge tag &apos;trace-ringbuffer-v7.1-rc4&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-tracePull ring-buffer fixes from Steven Rostedt: - Fix reporting MISSED EVENTS in trace iterator   When the &quot;trace&quot; file is read with tracing enabled, if the writer   were to pass the iterator reader, it resets, sets a &quot;missed_events&quot;   flag and continues. The tracing output checks for missed events and   if there are some, it prints out &quot;[LOST EVENTS]&quot; to let the user know   events were dropped.   But the clearing of the missed_events happened when the tracing   system queried the ring buffer iterator about missed events. This was   premature as the ring buffer is per CPU, and the tracing code reads   all the CPU buffers and checks for missed events when it is read. If   the CPU iterator that had missed events isn&apos;t printed next, the   output for the LOST EVENTS is lost.   Clear the missed_events flag when the iterator moves to the next   event and not when the missed_events flag is queried. Also clear it   on reset. - Flush and stop the persistent ring buffer on panic   On panic the persistent ring buffer is used to debug what caused the   panic. But on some architectures, it requires flushing the memory   from cache, otherwise, the ring buffer persistent memory may not have   the last events and this could also cause the ring buffer to be   corrupted on the next boot. - Fix nr_subbufs initialization in simple_ring_buffer_init_mm   The remote simple ring buffer meta data nr_subbufs is initialized too   early and gets cleared later on, making it zero and not reflect the   actual number of sub-buffers. - Fix unload_page for simple_ring_buffer init rollback   On error, the pages loaded need to be unloaded. To unload a page it   is expected that: page = load_page(va); -&gt; unload_page(page). But the   code was doing: unload_page(va) and not unload_page(page). - Create output file from cmd_check_undefined   The check for undefined symbols checks if the file *.o.checked exists   and if so it skips doing the work. But the *.o.checked file never was   created making every build do the work even when it was already done   previously.* tag &apos;trace-ringbuffer-v7.1-rc4&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:  tracing: Create output file from cmd_check_undefined  tracing: Fix unload_page for simple_ring_buffer init rollback  tracing: Fix nr_subbufs initialization in simple_ring_buffer_init_mm()  ring-buffer: Flush and stop persistent ring buffer on panic  ring-buffer: Fix reporting of missed events in iterator

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Thu, 21 May 2026 23:05:09 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>a494d3c8d5392bcdff83c2a593df0c160ff9f322 - ring-buffer: Flush and stop persistent ring buffer on panic</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#a494d3c8d5392bcdff83c2a593df0c160ff9f322</link>
        <description>ring-buffer: Flush and stop persistent ring buffer on panicOn real hardware, panic and machine reboot may not flush hardware cacheto memory. This means the persistent ring buffer, which relies on acoherent state of memory, may not have its events written to the bufferand they may be lost. Moreover, there may be inconsistency with thecounters which are used for validation of the integrity of thepersistent ring buffer which may cause all data to be discarded.To avoid this issue, stop recording of the ring buffer on panic andflush the cache of the ring buffer&apos;s memory.Fixes: e645535a954a (&quot;tracing: Add option to use memmapped memory for trace boot instance&quot;)Cc: stable@vger.kernel.orgCc: Will Deacon &lt;will@kernel.org&gt;Cc: Mathieu Desnoyers &lt;mathieu.desnoyers@efficios.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Link: https://patch.msgid.link/177751969602.2136606.12031934362587643488.stgit@mhiramat.tok.corp.google.comSigned-off-by: Masami Hiramatsu (Google) &lt;mhiramat@kernel.org&gt;Acked-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Signed-off-by: Steven Rostedt &lt;rostedt@goodmis.org&gt;

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Thu, 30 Apr 2026 05:28:16 +0200</pubDate>
        <dc:creator>Masami Hiramatsu (Google) &lt;mhiramat@kernel.org&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/xtensa/include/asm/Kbuild#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/xtensa/include/asm/Kbuild</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>f088104d837a991c65e51fa30bb4196169b3244d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#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/xtensa/include/asm/Kbuild</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>a53d0cf7f1cb3182ad533ff5cacfa5fd29c419ad - Merge commit &apos;linus&apos; into core/bugs, to resolve conflicts</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#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/xtensa/include/asm/Kbuild</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>8b87f67b4c87452e21721887fa8dec1f4c6b2b7c - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#8b87f67b4c87452e21721887fa8dec1f4c6b2b7c</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.18 merge window.

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</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/xtensa/include/asm/Kbuild#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/xtensa/include/asm/Kbuild</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/xtensa/include/asm/Kbuild#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/xtensa/include/asm/Kbuild</description>
        <pubDate>Mon, 15 Sep 2025 10:23:28 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>702fdf3513b045f596f836d9a4b8672c76f11834 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#702fdf3513b045f596f836d9a4b8672c76f11834</link>
        <description>Merge drm/drm-next into drm-intel-nextCatching up with some display dependencies.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Wed, 10 Sep 2025 14:01:42 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ca994e8922f25f7fed2075098f185cf198109eaa - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#ca994e8922f25f7fed2075098f185cf198109eaa</link>
        <description>Merge drm/drm-next into drm-xe-nextBring v6.17-rc1 to propagate commits from other subsystems, particularlyPCI, which has some new functions needed for SR-IOV integration.Signed-off-by: Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Tue, 12 Aug 2025 14:58:37 +0200</pubDate>
        <dc:creator>Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>08c51f5bddc81c8c97c1eb11861b0dc009e5ccd8 - Merge drm/drm-next into drm-misc-n</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#08c51f5bddc81c8c97c1eb11861b0dc009e5ccd8</link>
        <description>Merge drm/drm-next into drm-misc-nUpdating drm-misc-next to the state of v6.17-rc1. Begins a new releasecycle.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Mon, 11 Aug 2025 14:37:45 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>8d2b0853add1d7534dc0794e3c8e0b9e8c4ec640 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#8d2b0853add1d7534dc0794e3c8e0b9e8c4ec640</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesUpdating drm-misc-fixes to the state of v6.17-rc1. Begins a new releasecycle.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Mon, 11 Aug 2025 16:49:06 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>126e5754e942b1a007246561fc61b745747cedcd - Merge tag &apos;pull-headers_param&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#126e5754e942b1a007246561fc61b745747cedcd</link>
        <description>Merge tag &apos;pull-headers_param&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsPull asm/param cleanup from Al Viro: &quot;This massages asm/param.h to simpler and more uniform shape:   - all arch/*/include/uapi/asm/param.h are either generated includes     of &lt;asm-generic/param.h&gt; or a #define or two followed by such     include   - no arch/*/include/asm/param.h anywhere, generated or not   - include &lt;asm/param.h&gt; resolves to arch/*/include/uapi/asm/param.h     of the architecture in question (or that of host in case of uml)   - include/asm-generic/param.h pulls uapi/asm-generic/param.h and     deals with USER_HZ, CLOCKS_PER_SEC and with HZ redefinition after     that&quot;* tag &apos;pull-headers_param&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:  loongarch, um, xtensa: get rid of generated arch/$ARCH/include/asm/param.h  alpha: regularize the situation with asm/param.h  xtensa: get rid uapi/asm/param.h

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Mon, 28 Jul 2025 18:03:37 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>2560014ec150fd41b969ea6bcf8a985ae910eea5 - loongarch, um, xtensa: get rid of generated arch/$ARCH/include/asm/param.h</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#2560014ec150fd41b969ea6bcf8a985ae910eea5</link>
        <description>loongarch, um, xtensa: get rid of generated arch/$ARCH/include/asm/param.hFor loongarch and xtensa that gets them to do what x86 et.al. aredoing - have asm/param.h resolve to uapi variant, which is generatedby mandatory-y += param.h and contains exact same include.On um it will resolve to x86 uapi variant instead, which also containsthe same include (um doesn&apos;t have uapi headers, but it does build thehost ones).Reviewed-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Al Viro &lt;viro@zeniv.linux.org.uk&gt;

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Mon, 02 Dec 2024 01:46:43 +0100</pubDate>
        <dc:creator>Al Viro &lt;viro@zeniv.linux.org.uk&gt;</dc:creator>
    </item>
<item>
        <title>c771600c6af14749609b49565ffb4cac2959710d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#c771600c6af14749609b49565ffb4cac2959710d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextWe need4ba4f1afb6a9 (&quot;perf: Generic hotplug support for a PMU with a scope&quot;)in order to land a i915 PMU simplification and a fix. That landed in 6.12and we are stuck at 6.9 so lets bump things forward.Signed-off-by: Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Wed, 05 Feb 2025 10:29:14 +0100</pubDate>
        <dc:creator>Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;</dc:creator>
    </item>
<item>
        <title>60675d4ca1ef0857e44eba5849b74a3a998d0c0f - Merge branch &apos;linus&apos; into x86/mm, to pick up fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#60675d4ca1ef0857e44eba5849b74a3a998d0c0f</link>
        <description>Merge branch &apos;linus&apos; into x86/mm, to pick up fixesSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Fri, 20 Dec 2024 10:25:44 +0100</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>25768de50b1f2dbb6ea44bd5148a87fe2c9c3688 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#25768de50b1f2dbb6ea44bd5148a87fe2c9c3688</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.14 merge window.

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Tue, 21 Jan 2025 06:37:39 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6d4a0f4ea72319c9a37c1a7191695467006dd272 - Merge tag &apos;v6.13-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/xtensa/include/asm/Kbuild#6d4a0f4ea72319c9a37c1a7191695467006dd272</link>
        <description>Merge tag &apos;v6.13-rc3&apos; into nextSync up with the mainline.

            List of files:
            /linux/arch/xtensa/include/asm/Kbuild</description>
        <pubDate>Tue, 17 Dec 2024 18:40:45 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
