<?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/sh/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/sh/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/sh/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/sh/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/sh/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/sh/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/sh/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/sh/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>c771600c6af14749609b49565ffb4cac2959710d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/sh/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/sh/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/sh/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/sh/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/sh/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/sh/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/sh/include/asm/Kbuild#6d4a0f4ea72319c9a37c1a7191695467006dd272</link>
        <description>Merge tag &apos;v6.13-rc3&apos; into nextSync up with the mainline.

            List of files:
            /linux/arch/sh/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>
<item>
        <title>c5fb51b71788926feef0d07f30c8af1d5e4af1a6 - Merge remote-tracking branch &apos;pm/opp/linux-next&apos; into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/sh/include/asm/Kbuild#c5fb51b71788926feef0d07f30c8af1d5e4af1a6</link>
        <description>Merge remote-tracking branch &apos;pm/opp/linux-next&apos; into HEADMerge pm/opp tree to get dev_pm_opp_get_bw()Signed-off-by: Rob Clark &lt;robdclark@chromium.org&gt;

            List of files:
            /linux/arch/sh/include/asm/Kbuild</description>
        <pubDate>Fri, 03 Jan 2025 16:13:45 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robdclark@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>e7f0a3a6f7339af55f1ca2c27131739d75569c08 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/sh/include/asm/Kbuild#e7f0a3a6f7339af55f1ca2c27131739d75569c08</link>
        <description>Merge drm/drm-next into drm-intel-nextCatching up with 6.13-rc2.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/arch/sh/include/asm/Kbuild</description>
        <pubDate>Wed, 11 Dec 2024 21:06:05 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8f109f287fdc7b8fc7dcb6b2190c8b17dc22fcda - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/sh/include/asm/Kbuild#8f109f287fdc7b8fc7dcb6b2190c8b17dc22fcda</link>
        <description>Merge drm/drm-next into drm-xe-nextA backmerge to get the PMT preparation work formerging the BMG PMT support.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/arch/sh/include/asm/Kbuild</description>
        <pubDate>Mon, 02 Dec 2024 17:22:11 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3aba2eba84e0219fb66061359052be81bd883d53 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/sh/include/asm/Kbuild#3aba2eba84e0219fb66061359052be81bd883d53</link>
        <description>Merge drm/drm-next into drm-misc-nextKickstart 6.14 cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/arch/sh/include/asm/Kbuild</description>
        <pubDate>Mon, 02 Dec 2024 12:44:18 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>bcfd5f644c5b933cfb3c488220e40a03e011e8a4 - Merge tag &apos;v6.13-rc1&apos; into perf/core, to refresh the branch</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/sh/include/asm/Kbuild#bcfd5f644c5b933cfb3c488220e40a03e011e8a4</link>
        <description>Merge tag &apos;v6.13-rc1&apos; into perf/core, to refresh the branchSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/arch/sh/include/asm/Kbuild</description>
        <pubDate>Mon, 02 Dec 2024 11:52:59 +0100</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c34e9ab9a612ee8b18273398ef75c207b01f516d - Merge tag &apos;asoc-fix-v6.13-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/sh/include/asm/Kbuild#c34e9ab9a612ee8b18273398ef75c207b01f516d</link>
        <description>Merge tag &apos;asoc-fix-v6.13-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v6.13A few small fixes for v6.13, all system specific - the biggest thing isthe fix for jack handling over suspend on some Intel laptops.

            List of files:
            /linux/arch/sh/include/asm/Kbuild</description>
        <pubDate>Thu, 05 Dec 2024 18:09:29 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>5c00ff742bf5caf85f60e1c73999f99376fb865d - Merge tag &apos;mm-stable-2024-11-18-19-27&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/sh/include/asm/Kbuild#5c00ff742bf5caf85f60e1c73999f99376fb865d</link>
        <description>Merge tag &apos;mm-stable-2024-11-18-19-27&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull MM updates from Andrew Morton: - The series &quot;zram: optimal post-processing target selection&quot; from   Sergey Senozhatsky improves zram&apos;s post-processing selection   algorithm. This leads to improved memory savings. - Wei Yang has gone to town on the mapletree code, contributing several   series which clean up the implementation:	- &quot;refine mas_mab_cp()&quot;	- &quot;Reduce the space to be cleared for maple_big_node&quot;	- &quot;maple_tree: simplify mas_push_node()&quot;	- &quot;Following cleanup after introduce mas_wr_store_type()&quot;	- &quot;refine storing null&quot; - The series &quot;selftests/mm: hugetlb_fault_after_madv improvements&quot; from   David Hildenbrand fixes this selftest for s390. - The series &quot;introduce pte_offset_map_{ro|rw}_nolock()&quot; from Qi Zheng   implements some rationaizations and cleanups in the page mapping   code. - The series &quot;mm: optimize shadow entries removal&quot; from Shakeel Butt   optimizes the file truncation code by speeding up the handling of   shadow entries. - The series &quot;Remove PageKsm()&quot; from Matthew Wilcox completes the   migration of this flag over to being a folio-based flag. - The series &quot;Unify hugetlb into arch_get_unmapped_area functions&quot; from   Oscar Salvador implements a bunch of consolidations and cleanups in   the hugetlb code. - The series &quot;Do not shatter hugezeropage on wp-fault&quot; from Dev Jain   takes away the wp-fault time practice of turning a huge zero page   into small pages. Instead we replace the whole thing with a THP. More   consistent cleaner and potentiall saves a large number of pagefaults. - The series &quot;percpu: Add a test case and fix for clang&quot; from Andy   Shevchenko enhances and fixes the kernel&apos;s built in percpu test code. - The series &quot;mm/mremap: Remove extra vma tree walk&quot; from Liam Howlett   optimizes mremap() by avoiding doing things which we didn&apos;t need to   do. - The series &quot;Improve the tmpfs large folio read performance&quot; from   Baolin Wang teaches tmpfs to copy data into userspace at the folio   size rather than as individual pages. A 20% speedup was observed. - The series &quot;mm/damon/vaddr: Fix issue in   damon_va_evenly_split_region()&quot; fro Zheng Yejian fixes DAMON   splitting. - The series &quot;memcg-v1: fully deprecate charge moving&quot; from Shakeel   Butt removes the long-deprecated memcgv2 charge moving feature. - The series &quot;fix error handling in mmap_region() and refactor&quot; from   Lorenzo Stoakes cleanup up some of the mmap() error handling and   addresses some potential performance issues. - The series &quot;x86/module: use large ROX pages for text allocations&quot;   from Mike Rapoport teaches x86 to use large pages for   read-only-execute module text. - The series &quot;page allocation tag compression&quot; from Suren Baghdasaryan   is followon maintenance work for the new page allocation profiling   feature. - The series &quot;page-&gt;index removals in mm&quot; from Matthew Wilcox remove   most references to page-&gt;index in mm/. A slow march towards shrinking   struct page. - The series &quot;damon/{self,kunit}tests: minor fixups for DAMON debugfs   interface tests&quot; from Andrew Paniakin performs maintenance work for   DAMON&apos;s self testing code. - The series &quot;mm: zswap swap-out of large folios&quot; from Kanchana Sridhar   improves zswap&apos;s batching of compression and decompression. It is a   step along the way towards using Intel IAA hardware acceleration for   this zswap operation. - The series &quot;kasan: migrate the last module test to kunit&quot; from   Sabyrzhan Tasbolatov completes the migration of the KASAN built-in   tests over to the KUnit framework. - The series &quot;implement lightweight guard pages&quot; from Lorenzo Stoakes   permits userapace to place fault-generating guard pages within a   single VMA, rather than requiring that multiple VMAs be created for   this. Improved efficiencies for userspace memory allocators are   expected. - The series &quot;memcg: tracepoint for flushing stats&quot; from JP Kobryn uses   tracepoints to provide increased visibility into memcg stats flushing   activity. - The series &quot;zram: IDLE flag handling fixes&quot; from Sergey Senozhatsky   fixes a zram buglet which potentially affected performance. - The series &quot;mm: add more kernel parameters to control mTHP&quot; from   Ma&#237;ra Canal enhances our ability to control/configuremultisize THP   from the kernel boot command line. - The series &quot;kasan: few improvements on kunit tests&quot; from Sabyrzhan   Tasbolatov has a couple of fixups for the KASAN KUnit tests. - The series &quot;mm/list_lru: Split list_lru lock into per-cgroup scope&quot;   from Kairui Song optimizes list_lru memory utilization when lockdep   is enabled.* tag &apos;mm-stable-2024-11-18-19-27&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (215 commits)  cma: enforce non-zero pageblock_order during cma_init_reserved_mem()  mm/kfence: add a new kunit test test_use_after_free_read_nofault()  zram: fix NULL pointer in comp_algorithm_show()  memcg/hugetlb: add hugeTLB counters to memcg  vmstat: call fold_vm_zone_numa_events() before show per zone NUMA event  mm: mmap_lock: check trace_mmap_lock_$type_enabled() instead of regcount  zram: ZRAM_DEF_COMP should depend on ZRAM  MAINTAINERS/MEMORY MANAGEMENT: add document files for mm  Docs/mm/damon: recommend academic papers to read and/or cite  mm: define general function pXd_init()  kmemleak: iommu/iova: fix transient kmemleak false positive  mm/list_lru: simplify the list_lru walk callback function  mm/list_lru: split the lock to per-cgroup scope  mm/list_lru: simplify reparenting and initial allocation  mm/list_lru: code clean up for reparenting  mm/list_lru: don&apos;t export list_lru_add  mm/list_lru: don&apos;t pass unnecessary key parameters  kasan: add kunit tests for kmalloc_track_caller, kmalloc_node_track_caller  kasan: change kasan_atomics kunit test as KUNIT_CASE_SLOW  kasan: use EXPORT_SYMBOL_IF_KUNIT to export symbols  ...

            List of files:
            /linux/arch/sh/include/asm/Kbuild</description>
        <pubDate>Sat, 23 Nov 2024 18:58:07 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>0c3beacf681ec897e0b36685a9b49d01f5cb2dfb - asm-generic: introduce text-patching.h</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/sh/include/asm/Kbuild#0c3beacf681ec897e0b36685a9b49d01f5cb2dfb</link>
        <description>asm-generic: introduce text-patching.hSeveral architectures support text patching, but they name the headerfiles that declare patching functions differently.Make all such headers consistently named text-patching.h and add an emptyheader in asm-generic for architectures that do not support text patching.Link: https://lkml.kernel.org/r/20241023162711.2579610-4-rppt@kernel.orgSigned-off-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt; # m68kAcked-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: Luis Chamberlain &lt;mcgrof@kernel.org&gt;Tested-by: kdevops &lt;kdevops@lists.linux.dev&gt;Cc: Andreas Larsson &lt;andreas@gaisler.com&gt;Cc: Andy Lutomirski &lt;luto@kernel.org&gt;Cc: Ard Biesheuvel &lt;ardb@kernel.org&gt;Cc: Borislav Petkov (AMD) &lt;bp@alien8.de&gt;Cc: Brian Cain &lt;bcain@quicinc.com&gt;Cc: Catalin Marinas &lt;catalin.marinas@arm.com&gt;Cc: Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;Cc: Dave Hansen &lt;dave.hansen@linux.intel.com&gt;Cc: Dinh Nguyen &lt;dinguyen@kernel.org&gt;Cc: Guo Ren &lt;guoren@kernel.org&gt;Cc: Helge Deller &lt;deller@gmx.de&gt;Cc: Huacai Chen &lt;chenhuacai@kernel.org&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Johannes Berg &lt;johannes@sipsolutions.net&gt;Cc: John Paul Adrian Glaubitz &lt;glaubitz@physik.fu-berlin.de&gt;Cc: Kent Overstreet &lt;kent.overstreet@linux.dev&gt;Cc: Liam R. Howlett &lt;Liam.Howlett@Oracle.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Masami Hiramatsu (Google) &lt;mhiramat@kernel.org&gt;Cc: Matt Turner &lt;mattst88@gmail.com&gt;Cc: Max Filippov &lt;jcmvbkbc@gmail.com&gt;Cc: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Cc: Michal Simek &lt;monstr@monstr.eu&gt;Cc: Oleg Nesterov &lt;oleg@redhat.com&gt;Cc: Palmer Dabbelt &lt;palmer@dabbelt.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Richard Weinberger &lt;richard@nod.at&gt;Cc: Russell King &lt;linux@armlinux.org.uk&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Stafford Horne &lt;shorne@gmail.com&gt;Cc: Steven Rostedt (Google) &lt;rostedt@goodmis.org&gt;Cc: Suren Baghdasaryan &lt;surenb@google.com&gt;Cc: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Uladzislau Rezki (Sony) &lt;urezki@gmail.com&gt;Cc: Vineet Gupta &lt;vgupta@kernel.org&gt;Cc: Will Deacon &lt;will@kernel.org&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/arch/sh/include/asm/Kbuild</description>
        <pubDate>Wed, 23 Oct 2024 18:27:06 +0200</pubDate>
        <dc:creator>Mike Rapoport (Microsoft) &lt;rppt@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/sh/include/asm/Kbuild#cdd38c5f1ce4398ec58fec95904b75824daab7b5</link>
        <description>Merge remote-tracking branch &apos;net/master&apos;

            List of files:
            /linux/arch/sh/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/sh/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/sh/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/sh/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/sh/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/sh/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/sh/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>
</channel>
</rss>
