<?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/s390/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/s390/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/s390/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/s390/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/s390/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/s390/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/s390/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/s390/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>f4b369c6fe0ceaba2da2daff8c9eb415f85926dd - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Mon, 20 Apr 2026 03:28:57 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0421ccdfad0d92713a812a5aeb7d07b0ea7213c8 - Merge tag &apos;v7.0-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#0421ccdfad0d92713a812a5aeb7d07b0ea7213c8</link>
        <description>Merge tag &apos;v7.0-rc3&apos; into nextSync up with the mainline to brig up the latest changes, specificallychanges to ALPS driver.

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Thu, 12 Mar 2026 18:44:42 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>42d3b66d4cdbacfc9d120d2301b8de89cc29a914 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#42d3b66d4cdbacfc9d120d2301b8de89cc29a914</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 7.00-rc3. Important ahead GPU SVM merging THPsupport.Signed-off-by: Matthew Brost &lt;matthew.brost@intel.com&gt;

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Thu, 12 Mar 2026 15:17:56 +0100</pubDate>
        <dc:creator>Matthew Brost &lt;matthew.brost@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>f09812b85fa6f41058bcc46e70ac406bf9b0493a - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#f09812b85fa6f41058bcc46e70ac406bf9b0493a</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v7.0-rc1 which contains a few treewide changes affecting i915.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Wed, 25 Feb 2026 12:23:04 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8b85987d3cf50178f67618122d9f3bb202f62f42 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#8b85987d3cf50178f67618122d9f3bb202f62f42</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s merge 7.0-rc1 to start the new drm-misc-next windowSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Mon, 23 Feb 2026 11:48:20 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>4d84667627c4ff70826b349c449bbaf63b9af4e5 - Merge tag &apos;perf-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#4d84667627c4ff70826b349c449bbaf63b9af4e5</link>
        <description>Merge tag &apos;perf-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipPull performance event updates from Ingo Molnar: &quot;x86 PMU driver updates:   - Add support for the core PMU for Intel Diamond Rapids (DMR) CPUs     (Dapeng Mi)     Compared to previous iterations of the Intel PMU code, there&apos;s been     a lot of changes, which center around three main areas:      - Introduce the OFF-MODULE RESPONSE (OMR) facility to replace the        Off-Core Response (OCR) facility      - New PEBS data source encoding layout      - Support the new &quot;RDPMC user disable&quot; feature   - Likewise, a large series adds uncore PMU support for Intel Diamond     Rapids (DMR) CPUs (Zide Chen)     This centers around these four main areas:      - DMR may have two Integrated I/O and Memory Hub (IMH) dies,        separate from the compute tile (CBB) dies. Each CBB and each IMH        die has its own discovery domain.      - Unlike prior CPUs that retrieve the global discovery table        portal exclusively via PCI or MSR, DMR uses PCI for IMH PMON        discovery and MSR for CBB PMON discovery.      - DMR introduces several new PMON types: SCA, HAMVF, D2D_ULA, UBR,        PCIE4, CRS, CPC, ITC, OTC, CMS, and PCIE6.      - IIO free-running counters in DMR are MMIO-based, unlike SPR.   - Also add support for Add missing PMON units for Intel Panther Lake,     and support Nova Lake (NVL), which largely maps to Panther Lake.     (Zide Chen)   - KVM integration: Add support for mediated vPMUs (by Kan Liang and     Sean Christopherson, with fixes and cleanups by Peter Zijlstra,     Sandipan Das and Mingwei Zhang)   - Add Intel cstate driver to support for Wildcat Lake (WCL) CPUs,     which are a low-power variant of Panther Lake (Zide Chen)   - Add core, cstate and MSR PMU support for the Airmont NP Intel CPU     (aka MaxLinear Lightning Mountain), which maps to the existing     Airmont code (Martin Schiller)  Performance enhancements:   - Speed up kexec shutdown by avoiding unnecessary cross CPU calls     (Jan H. Sch&#246;nherr)   - Fix slow perf_event_task_exit() with LBR callstacks (Namhyung Kim)  User-space stack unwinding support:   - Various cleanups and refactorings in preparation to generalize the     unwinding code for other architectures (Jens Remus)  Uprobes updates:   - Transition from kmap_atomic to kmap_local_page (Keke Ming)   - Fix incorrect lockdep condition in filter_chain() (Breno Leitao)   - Fix XOL allocation failure for 32-bit tasks (Oleg Nesterov)  Misc fixes and cleanups:   - s390: Remove kvm_types.h from Kbuild (Randy Dunlap)   - x86/intel/uncore: Convert comma to semicolon (Chen Ni)   - x86/uncore: Clean up const mismatch (Greg Kroah-Hartman)   - x86/ibs: Fix typo in dc_l2tlb_miss comment (Xiang-Bin Shi)&quot;* tag &apos;perf-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (58 commits)  s390: remove kvm_types.h from Kbuild  uprobes: Fix incorrect lockdep condition in filter_chain()  x86/ibs: Fix typo in dc_l2tlb_miss comment  x86/uprobes: Fix XOL allocation failure for 32-bit tasks  perf/x86/intel/uncore: Convert comma to semicolon  perf/x86/intel: Add support for rdpmc user disable feature  perf/x86: Use macros to replace magic numbers in attr_rdpmc  perf/x86/intel: Add core PMU support for Novalake  perf/x86/intel: Add support for PEBS memory auxiliary info field in NVL  perf/x86/intel: Add core PMU support for DMR  perf/x86/intel: Add support for PEBS memory auxiliary info field in DMR  perf/x86/intel: Support the 4 new OMR MSRs introduced in DMR and NVL  perf/core: Fix slow perf_event_task_exit() with LBR callstacks  perf/core: Speed up kexec shutdown by avoiding unnecessary cross CPU calls  uprobes: use kmap_local_page() for temporary page mappings  arm/uprobes: use kmap_local_page() in arch_uprobe_copy_ixol()  mips/uprobes: use kmap_local_page() in arch_uprobe_copy_ixol()  arm64/uprobes: use kmap_local_page() in arch_uprobe_copy_ixol()  riscv/uprobes: use kmap_local_page() in arch_uprobe_copy_ixol()  perf/x86/intel/uncore: Add Nova Lake support  ...

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Tue, 10 Feb 2026 21:00:46 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>7db06e329af30dcb170a6782c1714217ad65033d - s390: remove kvm_types.h from Kbuild</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#7db06e329af30dcb170a6782c1714217ad65033d</link>
        <description>s390: remove kvm_types.h from Kbuildkvm_types.h is mandatory in include/asm-generic/Kbuild so having itin another Kbuild file causes a warning. Remove it from the arch/Kbuild file to fix the warning.../scripts/Makefile.asm-headers:39: redundant generic-y found in ../arch/s390/include/asm/Kbuild: kvm_types.hSigned-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Peter Zijlstra (Intel) &lt;peterz@infradead.org&gt;Link: https://patch.msgid.link/20260203184204.1329414-1-rdunlap@infradead.org

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Tue, 03 Feb 2026 19:42:04 +0100</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.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/s390/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/s390/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>25768de50b1f2dbb6ea44bd5148a87fe2c9c3688 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/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/s390/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/s390/include/asm/Kbuild#6d4a0f4ea72319c9a37c1a7191695467006dd272</link>
        <description>Merge tag &apos;v6.13-rc3&apos; into nextSync up with the mainline.

            List of files:
            /linux/arch/s390/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>77b679453d3364688ff3e5153c0be5b2b52672b7 - Merge tag &apos;v6.12-rc3&apos; into perf-tools-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#77b679453d3364688ff3e5153c0be5b2b52672b7</link>
        <description>Merge tag &apos;v6.12-rc3&apos; into perf-tools-nextTo get the fixes in the current perf-tools tree.Signed-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Mon, 14 Oct 2024 19:45:28 +0200</pubDate>
        <dc:creator>Namhyung Kim &lt;namhyung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3fd6c59042dbba50391e30862beac979491145fe - Merge tag &apos;v6.12-rc1&apos; into clk-meson-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#3fd6c59042dbba50391e30862beac979491145fe</link>
        <description>Merge tag &apos;v6.12-rc1&apos; into clk-meson-nextLinux 6.12-rc1

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Mon, 30 Sep 2024 11:28:07 +0200</pubDate>
        <dc:creator>Jerome Brunet &lt;jbrunet@baylibre.com&gt;</dc:creator>
    </item>
<item>
        <title>a0efa2f362a69e47b9d8b48f770ef3a0249a7911 - Merge net-next/main to resolve conflicts</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#a0efa2f362a69e47b9d8b48f770ef3a0249a7911</link>
        <description>Merge net-next/main to resolve conflictsThe wireless-next tree was based on something older, and thereare now conflicts between -rc2 and work here. Merge net-next,which has enough of -rc2 for the conflicts to happen, resolvingthem in the process.Signed-off-by: Johannes Berg &lt;johannes.berg@intel.com&gt;

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Wed, 09 Oct 2024 08:59:14 +0200</pubDate>
        <dc:creator>Johannes Berg &lt;johannes.berg@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b88132ceb3faccdd785809df75f9d490ebaab459 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#b88132ceb3faccdd785809df75f9d490ebaab459</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to resolve a conflict with core locally.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Fri, 04 Oct 2024 11:29:21 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2dd0ef5d951e9b565ddb324fe26c531b6a40bf82 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/s390/include/asm/Kbuild#2dd0ef5d951e9b565ddb324fe26c531b6a40bf82</link>
        <description>Merge drm/drm-next into drm-misc-nextGet drm-misc-next to up v6.12-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/s390/include/asm/Kbuild</description>
        <pubDate>Mon, 30 Sep 2024 10:50:54 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
</channel>
</rss>
