<?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/arm/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/arm/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/arm/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/arm/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/arm/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/arm/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/arm/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/arm/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>cdd38c5f1ce4398ec58fec95904b75824daab7b5 - Merge remote-tracking branch &apos;net/master&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#cdd38c5f1ce4398ec58fec95904b75824daab7b5</link>
        <description>Merge remote-tracking branch &apos;net/master&apos;

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Wed, 24 Feb 2021 13:36:58 +0100</pubDate>
        <dc:creator>Stefan Schmidt &lt;stefan@datenfreihafen.org&gt;</dc:creator>
    </item>
<item>
        <title>803074ad77b91e270c1ce90793a924cdb4547162 - Merge branches &apos;rgrp-glock-sharing&apos; and &apos;gfs2-revoke&apos; from https://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#803074ad77b91e270c1ce90793a924cdb4547162</link>
        <description>Merge branches &apos;rgrp-glock-sharing&apos; and &apos;gfs2-revoke&apos; from https://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.gitMerge the resource group glock sharing feature and the revoke accounting rework.Signed-off-by: Andreas Gruenbacher &lt;agruenba@redhat.com&gt;

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Mon, 22 Feb 2021 21:22:16 +0100</pubDate>
        <dc:creator>Andreas Gruenbacher &lt;agruenba@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>d6310078d9f8c416e85f641a631aecf58f9c97ff - Merge branch &apos;for-5.12/google&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#d6310078d9f8c416e85f641a631aecf58f9c97ff</link>
        <description>Merge branch &apos;for-5.12/google&apos; into for-linus- User experience improvements for hid-google from Nicolas Boichat

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Tue, 23 Feb 2021 11:33:13 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>cbecf716ca618fd44feda6bd9a64a8179d031fc5 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#cbecf716ca618fd44feda6bd9a64a8179d031fc5</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 5.12 merge window.

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Tue, 23 Feb 2021 06:35:15 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>415e915fdfc775ad0c6675fde1008f6f43dd6251 - Merge tag &apos;v5.11&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#415e915fdfc775ad0c6675fde1008f6f43dd6251</link>
        <description>Merge tag &apos;v5.11&apos; into nextMerge with mainline to get latest APIs and device tree bindings.

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Tue, 23 Feb 2021 06:21:03 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>857de6fe2f86b009df620f7cdb07c262cc17070d - Merge branch &apos;fixes-v5.11&apos; into fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#857de6fe2f86b009df620f7cdb07c262cc17070d</link>
        <description>Merge branch &apos;fixes-v5.11&apos; into fixes

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Mon, 15 Feb 2021 05:41:56 +0100</pubDate>
        <dc:creator>Tony Lindgren &lt;tony@atomide.com&gt;</dc:creator>
    </item>
<item>
        <title>b491f90ddff013e0be058297a8f704c59932c1fd - Merge tag &apos;spi-nor/for-5.12&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux into mtd/next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#b491f90ddff013e0be058297a8f704c59932c1fd</link>
        <description>Merge tag &apos;spi-nor/for-5.12&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux into mtd/nextSPI NOR core changes:- Add non-uniform erase fixes.- Add Global Block Unlock command. It is defined by few flash  vendors, and it is used for now just by sst.SPI NOR controller drivers changes:- intel-spi: Add support for Intel Alder Lake-P SPI serial flash.- hisi-sfc: Put child node np on error path.

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Wed, 10 Feb 2021 10:21:34 +0100</pubDate>
        <dc:creator>Richard Weinberger &lt;richard@nod.at&gt;</dc:creator>
    </item>
<item>
        <title>9d4d8572a539ef807e21c196f145aa365fd52f0e - Merge tag &apos;amba-make-remove-return-void&apos; of https://git.pengutronix.de/git/ukl/linux into devel-stable</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#9d4d8572a539ef807e21c196f145aa365fd52f0e</link>
        <description>Merge tag &apos;amba-make-remove-return-void&apos; of https://git.pengutronix.de/git/ukl/linux into devel-stableTag for adaptions to struct amba_driver::remove changing prototype

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Tue, 02 Feb 2021 15:37:25 +0100</pubDate>
        <dc:creator>Russell King &lt;rmk+kernel@armlinux.org.uk&gt;</dc:creator>
    </item>
<item>
        <title>6715ea06ced45c8910c878877722ccf502301499 - Merge branch &apos;icc-sdx55&apos; into icc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#6715ea06ced45c8910c878877722ccf502301499</link>
        <description>Merge branch &apos;icc-sdx55&apos; into icc-nextAdd interconnect driver support for SDX55 platform for scaling thebandwidth requirements over RPMh.* icc-sdx55  dt-bindings: interconnect: Add Qualcomm SDX55 DT bindings  interconnect: qcom: Add SDX55 interconnect provider driverLink: https://lore.kernel.org/r/20210121053254.8355-1-manivannan.sadhasivam@linaro.orgSigned-off-by: Georgi Djakov &lt;georgi.djakov@linaro.org&gt;

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Mon, 01 Feb 2021 13:26:57 +0100</pubDate>
        <dc:creator>Georgi Djakov &lt;georgi.djakov@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>0b9112a58836ad6a7e84eebec06a2de9778b7573 - Merge tag &apos;v5.11-rc6&apos; into patchwork</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#0b9112a58836ad6a7e84eebec06a2de9778b7573</link>
        <description>Merge tag &apos;v5.11-rc6&apos; into patchworkLinux 5.11-rc6* tag &apos;v5.11-rc6&apos;: (1466 commits)  Linux 5.11-rc6  leds: rt8515: Add Richtek RT8515 LED driver  dt-bindings: leds: Add DT binding for Richtek RT8515  leds: trigger: fix potential deadlock with libata  leds: leds-ariel: convert comma to semicolon  leds: leds-lm3533: convert comma to semicolon  dt-bindings: Cleanup standard unit properties  soc: litex: Properly depend on HAS_IOMEM  tty: avoid using vfs_iocb_iter_write() for redirected console writes  null_blk: cleanup zoned mode initialization  cifs: fix dfs domain referrals  drm/nouveau/kms/gk104-gp1xx: Fix &gt; 64x64 cursors  drm/nouveau/kms/nv50-: Report max cursor size to userspace  drivers/nouveau/kms/nv50-: Reject format modifiers for cursor planes  drm/nouveau/svm: fail NOUVEAU_SVM_INIT ioctl on unsupported devices  drm/nouveau/dispnv50: Restore pushing of all data.  io_uring: reinforce cancel on flush during exit  cifs: returning mount parm processing errors correctly  rxrpc: Fix memory leak in rxrpc_lookup_local  mlxsw: spectrum_span: Do not overwrite policer configuration  ...

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Mon, 01 Feb 2021 10:03:45 +0100</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b4478a080673958aa8b35d8de46ba7589c8fcc47 - Merge tag &apos;v5.11-rc2&apos; into devel</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#b4478a080673958aa8b35d8de46ba7589c8fcc47</link>
        <description>Merge tag &apos;v5.11-rc2&apos; into develLinux 5.11-rc2

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Tue, 26 Jan 2021 15:35:13 +0100</pubDate>
        <dc:creator>Linus Walleij &lt;linus.walleij@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>4f2da3324eaff382ab1c6aaef8c10180b2f4d08c - Merge tag &apos;tags/isa-void-remove-callback&apos; into for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#4f2da3324eaff382ab1c6aaef8c10180b2f4d08c</link>
        <description>Merge tag &apos;tags/isa-void-remove-callback&apos; into for-nextisa: Make the remove callback for isa drivers return voidLink: https://lore.kernel.org/r/20210122092449.426097-1-uwe@kleine-koenig.orgSigned-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Tue, 26 Jan 2021 07:51:48 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>0f8b29fabacbcf0e617896c7ea832b7ea2ef2406 - Merge 5.11-rc5 into tty-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#0f8b29fabacbcf0e617896c7ea832b7ea2ef2406</link>
        <description>Merge 5.11-rc5 into tty-nextWe need the fixes in here and this resolves a merge issue indrivers/tty/tty_io.cSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Mon, 25 Jan 2021 11:19:46 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>2261352157a932717ec08b9dd18d1bfbb7c37c52 - Merge remote-tracking branch &apos;openrisc/or1k-5.11-fixes&apos; into or1k-5.12-updates</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#2261352157a932717ec08b9dd18d1bfbb7c37c52</link>
        <description>Merge remote-tracking branch &apos;openrisc/or1k-5.11-fixes&apos; into or1k-5.12-updatesPickup fixes that went upstream already in order to resolve conflicts inlitex_soc_ctrl.c between 5.11 fixes that went upstream and theor1k-5.12-updates linux-next queue.Signed-off-by: Stafford Horne &lt;shorne@gmail.com&gt;

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Mon, 25 Jan 2021 03:08:34 +0100</pubDate>
        <dc:creator>Stafford Horne &lt;shorne@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>cd07e536b0201fceffd90a701bfb1e1fc07fcd34 - Merge remote-tracking branch &apos;torvalds/master&apos; into perf/core</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm/include/asm/Kbuild#cd07e536b0201fceffd90a701bfb1e1fc07fcd34</link>
        <description>Merge remote-tracking branch &apos;torvalds/master&apos; into perf/coreTo pick up fixes.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Wed, 20 Jan 2021 18:35:31 +0100</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>c23010ffb20acb02a1d41dc025131609916ed633 - Merge tag &apos;asoc-fix-v5.11-rc4&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/arm/include/asm/Kbuild#c23010ffb20acb02a1d41dc025131609916ed633</link>
        <description>Merge tag &apos;asoc-fix-v5.11-rc4&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v5.11A few more fixes for v5.11, mostly around HDA jack detection, plusa couple of updates to the MAINTAINERS entries.

            List of files:
            /linux/arch/arm/include/asm/Kbuild</description>
        <pubDate>Mon, 18 Jan 2021 19:51:49 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
</channel>
</rss>
