<?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>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#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/drivers/hv/Makefile</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>d31558c077d8be422b65e97974017c030b4bd91a - Merge tag &apos;hyperv-next-signed-20260218&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#d31558c077d8be422b65e97974017c030b4bd91a</link>
        <description>Merge tag &apos;hyperv-next-signed-20260218&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linuxPull Hyper-V updates from Wei Liu: - Debugfs support for MSHV statistics (Nuno Das Neves) - Support for the integrated scheduler (Stanislav Kinsburskii) - Various fixes for MSHV memory management and hypervisor status   handling (Stanislav Kinsburskii) - Expose more capabilities and flags for MSHV partition management   (Anatol Belski, Muminul Islam, Magnus Kulke) - Miscellaneous fixes to improve code quality and stability (Carlos   L&#243;pez, Ethan Nelson-Moore, Li RongQing, Michael Kelley, Mukesh   Rathor, Purna Pavan Chandra Aekkaladevi, Stanislav Kinsburskii, Uros   Bizjak) - PREEMPT_RT fixes for vmbus interrupts (Jan Kiszka)* tag &apos;hyperv-next-signed-20260218&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux: (34 commits)  mshv: Handle insufficient root memory hypervisor statuses  mshv: Handle insufficient contiguous memory hypervisor status  mshv: Introduce hv_deposit_memory helper functions  mshv: Introduce hv_result_needs_memory() helper function  mshv: Add SMT_ENABLED_GUEST partition creation flag  mshv: Add nested virtualization creation flag  Drivers: hv: vmbus: Simplify allocation of vmbus_evt  mshv: expose the scrub partition hypercall  mshv: Add support for integrated scheduler  mshv: Use try_cmpxchg() instead of cmpxchg()  x86/hyperv: Fix error pointer dereference  x86/hyperv: Reserve 3 interrupt vectors used exclusively by MSHV  Drivers: hv: vmbus: Use kthread for vmbus interrupts on PREEMPT_RT  x86/hyperv: Remove ASM_CALL_CONSTRAINT with VMMCALL insn  x86/hyperv: Use savesegment() instead of inline asm() to save segment registers  mshv: fix SRCU protection in irqfd resampler ack handler  mshv: make field names descriptive in a header struct  x86/hyperv: Update comment in hyperv_cleanup()  mshv: clear eventfd counter on irqfd shutdown  x86/hyperv: Use memremap()/memunmap() instead of ioremap_cache()/iounmap()  ...

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Fri, 20 Feb 2026 17:48:31 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>ff225ba9ad71c4c5f900b9aa1b757adafcfb449d - mshv: Add debugfs to view hypervisor statistics</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#ff225ba9ad71c4c5f900b9aa1b757adafcfb449d</link>
        <description>mshv: Add debugfs to view hypervisor statisticsIntroduce a debugfs interface to expose root and child partition statswhen running with mshv_root.Create a debugfs directory &quot;mshv&quot; containing &apos;stats&apos; files organized bytype and id. A stats file contains a number of counters depending onits type. e.g. an excerpt from a VP stats file:TotalRunTime                  : 1997602722HypervisorRunTime             : 649671371RemoteNodeRunTime             : 0NormalizedRunTime             : 1997602721IdealCpu                      : 0HypercallsCount               : 1708169HypercallsTime                : 111914774PageInvalidationsCount        : 0PageInvalidationsTime         : 0On a root partition with some active child partitions, the entiredirectory structure may look like:mshv/  stats             # hypervisor stats  lp/               # logical processors    0/              # LP id      stats         # LP 0 stats    1/    2/    3/  partition/        # partition stats    1/              # root partition id      stats         # root partition stats      vp/           # root virtual processors        0/          # root VP id          stats     # root VP 0 stats        1/        2/        3/    42/             # child partition id      stats         # child partition stats      vp/           # child VPs        0/          # child VP id          stats     # child VP 0 stats        1/    43/    55/On L1VH, some stats are not present as it does not own the hardwarelike the root partition does:- The hypervisor and lp stats are not present- L1VH&apos;s partition directory is named &quot;self&quot; because it can&apos;t get its  own id- Some of L1VH&apos;s partition and VP stats fields are not populated, because  it can&apos;t map its own HV_STATS_AREA_PARENT page.Co-developed-by: Stanislav Kinsburskii &lt;skinsburskii@linux.microsoft.com&gt;Signed-off-by: Stanislav Kinsburskii &lt;skinsburskii@linux.microsoft.com&gt;Co-developed-by: Praveen K Paladugu &lt;prapal@linux.microsoft.com&gt;Signed-off-by: Praveen K Paladugu &lt;prapal@linux.microsoft.com&gt;Co-developed-by: Mukesh Rathor &lt;mrathor@linux.microsoft.com&gt;Signed-off-by: Mukesh Rathor &lt;mrathor@linux.microsoft.com&gt;Co-developed-by: Purna Pavan Chandra Aekkaladevi &lt;paekkaladevi@linux.microsoft.com&gt;Signed-off-by: Purna Pavan Chandra Aekkaladevi &lt;paekkaladevi@linux.microsoft.com&gt;Co-developed-by: Jinank Jain &lt;jinankjain@microsoft.com&gt;Signed-off-by: Jinank Jain &lt;jinankjain@microsoft.com&gt;Signed-off-by: Nuno Das Neves &lt;nunodasneves@linux.microsoft.com&gt;Reviewed-by: Stanislav Kinsburskii &lt;skinsburskii@linux.microsoft.com&gt;Acked-by: Stanislav Kinsburskii &lt;skinsburskii@linux.microsoft.com&gt;Reviewed-by: Michael Kelley &lt;mhklinux@outlook.com&gt;Signed-off-by: Wei Liu &lt;wei.liu@kernel.org&gt;

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Wed, 28 Jan 2026 19:11:46 +0100</pubDate>
        <dc:creator>Nuno Das Neves &lt;nunodasneves@linux.microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>ec496f77b4c11036cc835d6f045fb5e5ef1e6530 - Merge branch &apos;for-6.20/sony&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#ec496f77b4c11036cc835d6f045fb5e5ef1e6530</link>
        <description>Merge branch &apos;for-6.20/sony&apos; into for-linus- Support for Rock band 4 PS4 and PS5 guitars (Rosalie Wanders)

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Mon, 09 Feb 2026 17:33:26 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>cc4adab164b772a34b3340d644b7c4728498581e - Merge tag &apos;v6.19-rc1&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#cc4adab164b772a34b3340d644b7c4728498581e</link>
        <description>Merge tag &apos;v6.19-rc1&apos; into msm-nextMerge Linux 6.19-rc1 in order to catch up with other changes (e.g. UBWCconfig database defining UBWC_6).Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Tue, 20 Jan 2026 23:06:55 +0100</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>5add3c3c280a35f7e258e9cef7607db5a2e56fdc - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#5add3c3c280a35f7e258e9cef7607db5a2e56fdc</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.19-rc1. An important upstream bugfix andto help unblock PTL CI.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Fri, 19 Dec 2025 11:51:22 +0100</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ec439c38013550420aecc15988ae6acb670838c1 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 6.19-rc1</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#ec439c38013550420aecc15988ae6acb670838c1</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 6.19-rc1Cross-merge BPF and other fixes after downstream PR.Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Wed, 17 Dec 2025 06:29:38 +0100</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b8304863a3990d0f18c38e5b94191830a63ee1af - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#b8304863a3990d0f18c38e5b94191830a63ee1af</link>
        <description>Merge drm/drm-next into drm-intel-nextSync-up some display code needed for Async flips refactor.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Mon, 15 Dec 2025 14:24:02 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>7f790dd21a931c61167f7bdc327aecf2cebad327 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#7f790dd21a931c61167f7bdc327aecf2cebad327</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s kickstart the v6.20 (7.0?) release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Mon, 15 Dec 2025 09:27:39 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a4a508df2aa34f8650afde54ea804321c618f45f - Merge tag &apos;v6.18&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/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/drivers/hv/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>24f171c7e145f43b9f187578e89b0982ce87e54c - Merge tag &apos;asoc-fix-v6.19-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/drivers/hv/Makefile#24f171c7e145f43b9f187578e89b0982ce87e54c</link>
        <description>Merge tag &apos;asoc-fix-v6.19-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v6.19We&apos;ve been quite busy with fixes since the merge window, though not inany particularly exciting ways - the standout thing is the fix for _SXcontrols which were broken by a change to how we do clamping, otherwiseit&apos;s all fairly run of the mill fixes and quirks.

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Sun, 21 Dec 2025 11:11:11 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>84318277d6334c6981ab326d4acc87c6a6ddc9b8 - Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#84318277d6334c6981ab326d4acc87c6a6ddc9b8</link>
        <description>Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixesPull in rc1 to include all changes since the merge window closed,and grab all fixes and changes from drm/drm-next.Signed-off-by: Maarten Lankhorst &lt;dev@lankhorst.se&gt;

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Mon, 15 Dec 2025 12:53:27 +0100</pubDate>
        <dc:creator>Maarten Lankhorst &lt;dev@lankhorst.se&gt;</dc:creator>
    </item>
<item>
        <title>feb06d2690bb826fd33798a99ce5cff8d07b38f9 - Merge tag &apos;hyperv-next-signed-20251207&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#feb06d2690bb826fd33798a99ce5cff8d07b38f9</link>
        <description>Merge tag &apos;hyperv-next-signed-20251207&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linuxPull hyperv updates from Wei Liu: - Enhancements to Linux as the root partition for Microsoft Hypervisor:     - Support a new mode called L1VH, which allows Linux to drive the       hypervisor running the Azure Host directly     - Support for MSHV crash dump collection     - Allow Linux&apos;s memory management subsystem to better manage guest       memory regions     - Fix issues that prevented a clean shutdown of the whole system on       bare metal and nested configurations     - ARM64 support for the MSHV driver     - Various other bug fixes and cleanups - Add support for Confidential VMBus for Linux guest on Hyper-V - Secure AVIC support for Linux guests on Hyper-V - Add the mshv_vtl driver to allow Linux to run as the secure kernel in   a higher virtual trust level for Hyper-V* tag &apos;hyperv-next-signed-20251207&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux: (58 commits)  mshv: Cleanly shutdown root partition with MSHV  mshv: Use reboot notifier to configure sleep state  mshv: Add definitions for MSHV sleep state configuration  mshv: Add support for movable memory regions  mshv: Add refcount and locking to mem regions  mshv: Fix huge page handling in memory region traversal  mshv: Move region management to mshv_regions.c  mshv: Centralize guest memory region destruction  mshv: Refactor and rename memory region handling functions  mshv: adjust interrupt control structure for ARM64  Drivers: hv: use kmalloc_array() instead of kmalloc()  mshv: Add ioctl for self targeted passthrough hvcalls  Drivers: hv: Introduce mshv_vtl driver  Drivers: hv: Export some symbols for mshv_vtl  static_call: allow using STATIC_CALL_TRAMP_STR() from assembly  mshv: Extend create partition ioctl to support cpu features  mshv: Allow mappings that overlap in uaddr  mshv: Fix create memory region overlap check  mshv: add WQ_PERCPU to alloc_workqueue users  Drivers: hv: Use kmalloc_array() instead of kmalloc()  ...

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Mon, 08 Dec 2025 22:10:17 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>e950c30a1051d27fd6dd9a48c53ffbc41ee773f2 - mshv: Move region management to mshv_regions.c</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#e950c30a1051d27fd6dd9a48c53ffbc41ee773f2</link>
        <description>mshv: Move region management to mshv_regions.cRefactor memory region management functions from mshv_root_main.c intomshv_regions.c for better modularity and code organization.Adjust function calls and headers to use the new implementation. Improvemaintainability and separation of concerns in the mshv_root module.Signed-off-by: Stanislav Kinsburskii &lt;skinsburskii@linux.microsoft.com&gt;Reviewed-by: Anirudh Rayabharam (Microsoft) &lt;anirudh@anirudhrb.com&gt;Reviewed-by: Nuno Das Neves &lt;nunodasneves@linux.microsoft.com&gt;Signed-off-by: Wei Liu &lt;wei.liu@kernel.org&gt;

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Wed, 03 Dec 2025 22:40:50 +0100</pubDate>
        <dc:creator>Stanislav Kinsburskii &lt;skinsburskii@linux.microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>7bfe3b8ea6e30437e01fcb8e4f56ef6e4d986d0f - Drivers: hv: Introduce mshv_vtl driver</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#7bfe3b8ea6e30437e01fcb8e4f56ef6e4d986d0f</link>
        <description>Drivers: hv: Introduce mshv_vtl driverProvide an interface for Virtual Machine Monitor like OpenVMM and itsuse as OpenHCL paravisor to control VTL0 (Virtual trust Level).Expose devices and support IOCTLs for features like VTL creation,VTL0 memory management, context switch, making hypercalls,mapping VTL0 address space to VTL2 userspace, getting new VMBusmessages and channel events in VTL2 etc.Co-developed-by: Roman Kisel &lt;romank@linux.microsoft.com&gt;Signed-off-by: Roman Kisel &lt;romank@linux.microsoft.com&gt;Co-developed-by: Saurabh Sengar &lt;ssengar@linux.microsoft.com&gt;Signed-off-by: Saurabh Sengar &lt;ssengar@linux.microsoft.com&gt;Reviewed-by: Michael Kelley &lt;mhklinux@outlook.com&gt;Signed-off-by: Naman Jain &lt;namjain@linux.microsoft.com&gt;Signed-off-by: Wei Liu &lt;wei.liu@kernel.org&gt;

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Thu, 13 Nov 2025 05:41:49 +0100</pubDate>
        <dc:creator>Naman Jain &lt;namjain@linux.microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>7362b5b493102c6b71827c2da22117b475528f6d - Merge branch &apos;for-6.19/nintendo&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/hv/Makefile#7362b5b493102c6b71827c2da22117b475528f6d</link>
        <description>Merge branch &apos;for-6.19/nintendo&apos; into for-linus- switch to WQ_PERCPU workaueues (Marco Crivellari)- reduce potential initialization blocking time of hid-nintendo (Willy Huang)

            List of files:
            /linux/drivers/hv/Makefile</description>
        <pubDate>Tue, 02 Dec 2025 14:46:11 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.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/drivers/hv/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/drivers/hv/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/drivers/hv/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/drivers/hv/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/drivers/hv/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/drivers/hv/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/drivers/hv/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/drivers/hv/Makefile</description>
        <pubDate>Mon, 13 Oct 2025 09:19:19 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
</channel>
</rss>
