<?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>e80948062dcfff0543c5c60ba8654e825bf73b5a - Merge tag &apos;loongarch-fixes-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#e80948062dcfff0543c5c60ba8654e825bf73b5a</link>
        <description>Merge tag &apos;loongarch-fixes-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongsonPull LoongArch fixes from Huacai Chen: &quot;Fix some build and runtime issues after 32BIT Kconfig option enabled,  improve the platform-specific PCI controller compatibility, drop  custom __arch_vdso_hres_capable(), and fix a lot of KVM bugs&quot;* tag &apos;loongarch-fixes-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson:  LoongArch: KVM: Move unconditional delay into timer clear scenery  LoongArch: KVM: Fix HW timer interrupt lost when inject interrupt by software  LoongArch: KVM: Move AVEC interrupt injection into switch loop  LoongArch: KVM: Use kvm_set_pte() in kvm_flush_pte()  LoongArch: KVM: Fix missing EMULATE_FAIL in kvm_emu_mmio_read()  LoongArch: KVM: Cap KVM_CAP_NR_VCPUS by KVM_CAP_MAX_VCPUS  LoongArch: KVM: Fix &quot;unreliable stack&quot; for kvm_exc_entry  LoongArch: KVM: Compile switch.S directly into the kernel  LoongArch: vDSO: Drop custom __arch_vdso_hres_capable()  LoongArch: Fix potential ADE in loongson_gpu_fixup_dma_hang()  LoongArch: Use per-root-bridge PCIH flag to skip mem resource fixup  LoongArch: Fix SYM_SIGFUNC_START definition for 32BIT  LoongArch: Specify -m32/-m64 explicitly for 32BIT/64BIT  LoongArch: Make CONFIG_64BIT as the default option

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Wed, 06 May 2026 04:44:46 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>5203012fa6045aac4b69d4e7c212e16dcf38ef10 - LoongArch: KVM: Compile switch.S directly into the kernel</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#5203012fa6045aac4b69d4e7c212e16dcf38ef10</link>
        <description>LoongArch: KVM: Compile switch.S directly into the kernelIf we directly compile the switch.S file into the kernel, the address ofthe kvm_exc_entry function will definitely be within the DMW memory area.Therefore, we will no longer need to perform a copy relocation of thekvm_exc_entry.So this patch compiles switch.S directly into the kernel, and then removethe copy relocation execution logic for the kvm_exc_entry function.Cc: stable@vger.kernel.orgSigned-off-by: Xianglai Li &lt;lixianglai@loongson.cn&gt;Signed-off-by: Huacai Chen &lt;chenhuacai@loongson.cn&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Mon, 04 May 2026 03:00:37 +0200</pubDate>
        <dc:creator>Xianglai Li &lt;lixianglai@loongson.cn&gt;</dc:creator>
    </item>
<item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>01f492e1817e858d1712f2489d0afbaa552f417b - Merge tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/virt/kvm/kvm</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#01f492e1817e858d1712f2489d0afbaa552f417b</link>
        <description>Merge tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/virt/kvm/kvmPull kvm updates from Paolo Bonzini: &quot;Arm:   - Add support for tracing in the standalone EL2 hypervisor code,     which should help both debugging and performance analysis. This     uses the new infrastructure for &apos;remote&apos; trace buffers that can be     exposed by non-kernel entities such as firmware, and which came     through the tracing tree   - Add support for GICv5 Per Processor Interrupts (PPIs), as the     starting point for supporting the new GIC architecture in KVM   - Finally add support for pKVM protected guests, where pages are     unmapped from the host as they are faulted into the guest and can     be shared back from the guest using pKVM hypercalls. Protected     guests are created using a new machine type identifier. As the     elusive guestmem has not yet delivered on its promises, anonymous     memory is also supported     This is only a first step towards full isolation from the host; for     example, the CPU register state and DMA accesses are not yet     isolated. Because this does not really yet bring fully what it     promises, it is hidden behind CONFIG_ARM_PKVM_GUEST +     &apos;kvm-arm.mode=protected&apos;, and also triggers TAINT_USER when a VM is     created. Caveat emptor   - Rework the dreaded user_mem_abort() function to make it more     maintainable, reducing the amount of state being exposed to the     various helpers and rendering a substantial amount of state     immutable   - Expand the Stage-2 page table dumper to support NV shadow page     tables on a per-VM basis   - Tidy up the pKVM PSCI proxy code to be slightly less hard to     follow   - Fix both SPE and TRBE in non-VHE configurations so that they do not     generate spurious, out of context table walks that ultimately lead     to very bad HW lockups   - A small set of patches fixing the Stage-2 MMU freeing in error     cases   - Tighten-up accepted SMC immediate value to be only #0 for host     SMCCC calls   - The usual cleanups and other selftest churn  LoongArch:   - Use CSR_CRMD_PLV for kvm_arch_vcpu_in_kernel()   - Add DMSINTC irqchip in kernel support  RISC-V:   - Fix steal time shared memory alignment checks   - Fix vector context allocation leak   - Fix array out-of-bounds in pmu_ctr_read() and pmu_fw_ctr_read_hi()   - Fix double-free of sdata in kvm_pmu_clear_snapshot_area()   - Fix integer overflow in kvm_pmu_validate_counter_mask()   - Fix shift-out-of-bounds in make_xfence_request()   - Fix lost write protection on huge pages during dirty logging   - Split huge pages during fault handling for dirty logging   - Skip CSR restore if VCPU is reloaded on the same core   - Implement kvm_arch_has_default_irqchip() for KVM selftests   - Factored-out ISA checks into separate sources   - Added hideleg to struct kvm_vcpu_config   - Factored-out VCPU config into separate sources   - Support configuration of per-VM HGATP mode from KVM user space  s390:   - Support for ESA (31-bit) guests inside nested hypervisors   - Remove restriction on memslot alignment, which is not needed     anymore with the new gmap code   - Fix LPSW/E to update the bear (which of course is the breaking     event address register)  x86:   - Shut up various UBSAN warnings on reading module parameter before     they were initialized   - Don&apos;t zero-allocate page tables that are used for splitting     hugepages in the TDP MMU, as KVM is guaranteed to set all SPTEs in     the page table and thus write all bytes   - As an optimization, bail early when trying to unsync 4KiB mappings     if the target gfn can just be mapped with a 2MiB hugepage  x86 generic:   - Copy single-chunk MMIO write values into struct kvm_vcpu (more     precisely struct kvm_mmio_fragment) to fix use-after-free stack     bugs where KVM would dereference stack pointer after an exit to     userspace   - Clean up and comment the emulated MMIO code to try to make it     easier to maintain (not necessarily &quot;easy&quot;, but &quot;easier&quot;)   - Move VMXON+VMXOFF and EFER.SVME toggling out of KVM (not *all* of     VMX and SVM enabling) as it is needed for trusted I/O   - Advertise support for AVX512 Bit Matrix Multiply (BMM) instructions   - Immediately fail the build if a required #define is missing in one     of KVM&apos;s headers that is included multiple times   - Reject SET_GUEST_DEBUG with -EBUSY if there&apos;s an already injected     exception, mostly to prevent syzkaller from abusing the uAPI to     trigger WARNs, but also because it can help prevent userspace from     unintentionally crashing the VM   - Exempt SMM from CPUID faulting on Intel, as per the spec   - Misc hardening and cleanup changes  x86 (AMD):   - Fix and optimize IRQ window inhibit handling for AVIC; make it     per-vCPU so that KVM doesn&apos;t prematurely re-enable AVIC if multiple     vCPUs have to-be-injected IRQs   - Clean up and optimize the OSVW handling, avoiding a bug in which     KVM would overwrite state when enabling virtualization on multiple     CPUs in parallel. This should not be a problem because OSVW should     usually be the same for all CPUs   - Drop a WARN in KVM_MEMORY_ENCRYPT_REG_REGION where KVM complains     about a &quot;too large&quot; size based purely on user input   - Clean up and harden the pinning code for KVM_MEMORY_ENCRYPT_REG_REGION   - Disallow synchronizing a VMSA of an already-launched/encrypted     vCPU, as doing so for an SNP guest will crash the host due to an     RMP violation page fault   - Overhaul KVM&apos;s APIs for detecting SEV+ guests so that VM-scoped     queries are required to hold kvm-&gt;lock, and enforce it by lockdep.     Fix various bugs where sev_guest() was not ensured to be stable for     the whole duration of a function or ioctl   - Convert a pile of kvm-&gt;lock SEV code to guard()   - Play nicer with userspace that does not enable     KVM_CAP_EXCEPTION_PAYLOAD, for which KVM needs to set CR2 and DR6     as a response to ioctls such as KVM_GET_VCPU_EVENTS (even if the     payload would end up in EXITINFO2 rather than CR2, for example).     Only set CR2 and DR6 when consumption of the payload is imminent,     but on the other hand force delivery of the payload in all paths     where userspace retrieves CR2 or DR6   - Use vcpu-&gt;arch.cr2 when updating vmcb12&apos;s CR2 on nested #VMEXIT     instead of vmcb02-&gt;save.cr2. The value is out of sync after a     save/restore or after a #PF is injected into L2   - Fix a class of nSVM bugs where some fields written by the CPU are     not synchronized from vmcb02 to cached vmcb12 after VMRUN, and so     are not up-to-date when saved by KVM_GET_NESTED_STATE   - Fix a class of bugs where the ordering between KVM_SET_NESTED_STATE     and KVM_SET_{S}REGS could cause vmcb02 to be incorrectly     initialized after save+restore   - Add a variety of missing nSVM consistency checks   - Fix several bugs where KVM failed to correctly update VMCB fields     on nested #VMEXIT   - Fix several bugs where KVM failed to correctly synthesize #UD or     #GP for SVM-related instructions   - Add support for save+restore of virtualized LBRs (on SVM)   - Refactor various helpers and macros to improve clarity and     (hopefully) make the code easier to maintain   - Aggressively sanitize fields when copying from vmcb12, to guard     against unintentionally allowing L1 to utilize yet-to-be-defined     features   - Fix several bugs where KVM botched rAX legality checks when     emulating SVM instructions. There are remaining issues in that KVM     doesn&apos;t handle size prefix overrides for 64-bit guests   - Fail emulation of VMRUN/VMLOAD/VMSAVE if mapping vmcb12 fails     instead of somewhat arbitrarily synthesizing #GP (i.e. don&apos;t double     down on AMD&apos;s architectural but sketchy behavior of generating #GP     for &quot;unsupported&quot; addresses)   - Cache all used vmcb12 fields to further harden against TOCTOU bugs  x86 (Intel):   - Drop obsolete branch hint prefixes from the VMX instruction macros   - Use ASM_INPUT_RM() in __vmcs_writel() to coerce clang into using a     register input when appropriate   - Code cleanups  guest_memfd:   - Don&apos;t mark guest_memfd folios as accessed, as guest_memfd doesn&apos;t     support reclaim, the memory is unevictable, and there is no storage     to write back to  LoongArch selftests:   - Add KVM PMU test cases  s390 selftests:   - Enable more memory selftests  x86 selftests:   - Add support for Hygon CPUs in KVM selftests   - Fix a bug in the MSR test where it would get false failures on     AMD/Hygon CPUs with exactly one of RDPID or RDTSCP   - Add an MADV_COLLAPSE testcase for guest_memfd as a regression test     for a bug where the kernel would attempt to collapse guest_memfd     folios against KVM&apos;s will&quot;* tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/virt/kvm/kvm: (373 commits)  KVM: x86: use inlines instead of macros for is_sev_*guest  x86/virt: Treat SVM as unsupported when running as an SEV+ guest  KVM: SEV: Goto an existing error label if charging misc_cg for an ASID fails  KVM: SVM: Move lock-protected allocation of SEV ASID into a separate helper  KVM: SEV: use mutex guard in snp_handle_guest_req()  KVM: SEV: use mutex guard in sev_mem_enc_unregister_region()  KVM: SEV: use mutex guard in sev_mem_enc_ioctl()  KVM: SEV: use mutex guard in snp_launch_update()  KVM: SEV: Assert that kvm-&gt;lock is held when querying SEV+ support  KVM: SEV: Document that checking for SEV+ guests when reclaiming memory is &quot;safe&quot;  KVM: SEV: Hide &quot;struct kvm_sev_info&quot; behind CONFIG_KVM_AMD_SEV=y  KVM: SEV: WARN on unhandled VM type when initializing VM  KVM: LoongArch: selftests: Add PMU overflow interrupt test  KVM: LoongArch: selftests: Add basic PMU event counting test  KVM: LoongArch: selftests: Add cpucfg read/write helpers  LoongArch: KVM: Add DMSINTC inject msi to vCPU  LoongArch: KVM: Add DMSINTC device support  LoongArch: KVM: Make vcpu_is_preempted() as a macro rather than function  LoongArch: KVM: Move host CSR_GSTAT save and restore in context switch  LoongArch: KVM: Move host CSR_EENTRY save and restore in context switch  ...

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Fri, 17 Apr 2026 16:18:03 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>05578316ca7246b45fb7d9eaf81308c0e0f3ee10 - Merge tag &apos;loongarch-kvm-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#05578316ca7246b45fb7d9eaf81308c0e0f3ee10</link>
        <description>Merge tag &apos;loongarch-kvm-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson into HEADLoongArch KVM changes for v7.11. Use CSR_CRMD_PLV in kvm_arch_vcpu_in_kernel().2. Let vcpu_is_preempted() a macro &amp; some enhanments.3. Add DMSINTC irqchip in kernel support.4. Add KVM PMU test cases for tools/selftests.

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Mon, 13 Apr 2026 11:46:11 +0200</pubDate>
        <dc:creator>Paolo Bonzini &lt;pbonzini@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>229132c309d667bb05405fc8b539e7d90e0dfb3b - LoongArch: KVM: Add DMSINTC device support</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#229132c309d667bb05405fc8b539e7d90e0dfb3b</link>
        <description>LoongArch: KVM: Add DMSINTC device supportAdd device model for DMSINTC interrupt controller, implement basiccreate/destroy/set_attr interfaces, and register device model to kvmdevice table.Reviewed-by: Bibo Mao &lt;maobibo@loongson.cn&gt;Signed-off-by: Song Gao &lt;gaosong@loongson.cn&gt;Signed-off-by: Huacai Chen &lt;chenhuacai@loongson.cn&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Thu, 09 Apr 2026 12:56:37 +0200</pubDate>
        <dc:creator>Song Gao &lt;gaosong@loongson.cn&gt;</dc:creator>
    </item>
<item>
        <title>74f1af95820fc2ee580a775a3a17c416db30b38c - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#74f1af95820fc2ee580a775a3a17c416db30b38c</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-nextBack-merge drm-next to (indirectly) get arm-smmu updates for makingstall-on-fault more reliable.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Sun, 29 Jun 2025 04:54:49 +0200</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>86e2d052c2320bf12571a5d96b16c2745e1cfc5e - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#86e2d052c2320bf12571a5d96b16c2745e1cfc5e</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.16Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Mon, 09 Jun 2025 18:26:55 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>bbfd5594756011167b8f8de9a00e0c946afda1e6 - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#bbfd5594756011167b8f8de9a00e0c946afda1e6</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextNeed to pull in a67221b5eb8d (&quot;drm/i915/dp: Return min bpc supported by source instead of 0&quot;)in order to fix build breakage on GCC 9.4.0 (from Ubuntu 20.04).Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Wed, 28 May 2025 09:20:17 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>db5302ae571beec635c1a96e7f72926a4e65195e - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#db5302ae571beec635c1a96e7f72926a4e65195e</link>
        <description>Merge drm/drm-next into drm-intel-nextBackmerge to sync with v6.15-rc, xe, and specifically async flip changesin drm-misc.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Fri, 16 May 2025 09:22:36 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2670a39b1ea68fb0b9175e26e299f3fe974e0332 - Merge tag &apos;riscv-mw2-6.16-rc1&apos; of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/alexghiti/linux into for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#2670a39b1ea68fb0b9175e26e299f3fe974e0332</link>
        <description>Merge tag &apos;riscv-mw2-6.16-rc1&apos; of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/alexghiti/linux into for-nextriscv patches for 6.16-rc1, part 2* Performance improvements  - Add support for vdso getrandom  - Implement raid6 calculations using vectors  - Introduce svinval tlb invalidation* Cleanup  - A bunch of deduplication of the macros we use for manipulating instructions* Misc  - Introduce a kunit test for kprobes  - Add support for mseal as riscv fits the requirements (thanks to Lorenzo for making sure of that :))[Palmer: There was a rebase between part 1 and part 2, so I&apos;ve had to dosome more git surgery here... at least two rounds of surgery...]* alex-pr-2: (866 commits)  RISC-V: vDSO: Wire up getrandom() vDSO implementation  riscv: enable mseal sysmap for RV64  raid6: Add RISC-V SIMD syndrome and recovery calculations  riscv: mm: Add support for Svinval extension  riscv: Add kprobes KUnit test  riscv: kprobes: Remove duplication of RV_EXTRACT_ITYPE_IMM  riscv: kprobes: Remove duplication of RV_EXTRACT_UTYPE_IMM  riscv: kprobes: Remove duplication of RV_EXTRACT_RD_REG  riscv: kprobes: Remove duplication of RVC_EXTRACT_BTYPE_IMM  riscv: kprobes: Remove duplication of RVC_EXTRACT_C2_RS1_REG  riscv: kproves: Remove duplication of RVC_EXTRACT_JTYPE_IMM  riscv: kprobes: Remove duplication of RV_EXTRACT_BTYPE_IMM  riscv: kprobes: Remove duplication of RV_EXTRACT_RS1_REG  riscv: kprobes: Remove duplication of RV_EXTRACT_JTYPE_IMM  riscv: kprobes: Move branch_funct3 to insn.h  riscv: kprobes: Move branch_rs2_idx to insn.h  Linux 6.15-rc6  Input: xpad - fix xpad_device sorting  Input: xpad - add support for several more controllers  Input: xpad - fix Share button on Xbox One controllers  ...

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Thu, 05 Jun 2025 20:23:07 +0200</pubDate>
        <dc:creator>Palmer Dabbelt &lt;palmer@dabbelt.com&gt;</dc:creator>
    </item>
<item>
        <title>3349e275067f94ffb4141989aed9cbae7409429b - Merge 6.15-rc6 into staging-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#3349e275067f94ffb4141989aed9cbae7409429b</link>
        <description>Merge 6.15-rc6 into staging-nextWe need the staging changes in here as wellSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Tue, 13 May 2025 08:37:56 +0200</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>615dca38c2eae55aff80050275931c87a812b48c - Merge 6.15-rc4 into usb-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#615dca38c2eae55aff80050275931c87a812b48c</link>
        <description>Merge 6.15-rc4 into usb-nextWe need the USB fixes in here as well, and this resolves the followingmerge conflicts that were reported in linux-next:	drivers/usb/chipidea/ci_hdrc_imx.c	drivers/usb/host/xhci.hReported-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Mon, 28 Apr 2025 10:32:58 +0200</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>689835c00ec7b78f3c828e796895661c13584a64 - Merge 6.15-rc4 into tty-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#689835c00ec7b78f3c828e796895661c13584a64</link>
        <description>Merge 6.15-rc4 into tty-nextWe need the tty/serial fixes in here as well.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Mon, 28 Apr 2025 10:13:28 +0200</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>4f822ad5ee944ffafc21937a32dd055f1df5c28d - Merge 6.15-rc4 into char-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#4f822ad5ee944ffafc21937a32dd055f1df5c28d</link>
        <description>Merge 6.15-rc4 into char-misc-nextWe need the char-misc fixes in here as well.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Mon, 28 Apr 2025 09:45:00 +0200</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>8330d092f789ca7859042c80cbf3ea496bc53d99 - Merge remote-tracking branch &apos;torvalds/master&apos; into perf-tools-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#8330d092f789ca7859042c80cbf3ea496bc53d99</link>
        <description>Merge remote-tracking branch &apos;torvalds/master&apos; into perf-tools-nextTo pick up fixes from the latest perf-tools pull request from Namhyungand get perf-tools-next in line with thinngs in other areas it uses,like tools/lib/bpf, etc.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Wed, 07 May 2025 17:51:38 +0200</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>4f9786035f9e519db41375818e1d0b5f20da2f10 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#4f9786035f9e519db41375818e1d0b5f20da2f10</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.16 merge window.

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Mon, 02 Jun 2025 06:41:07 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d51b9d81f7883f526b26e3ab903e646274aebeb1 - Merge tag &apos;v6.15-rc6&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#d51b9d81f7883f526b26e3ab903e646274aebeb1</link>
        <description>Merge tag &apos;v6.15-rc6&apos; into nextSync up with mainline to bring in xpad controller changes.

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Fri, 16 May 2025 01:20:39 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ef2233850edc4cc0d5fc6136fcdb004a1ddfa7db - Merge tag &apos;v6.15&apos; into rdma.git for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#ef2233850edc4cc0d5fc6136fcdb004a1ddfa7db</link>
        <description>Merge tag &apos;v6.15&apos; into rdma.git for-nextFollowing patches need the RDMA rc branch since we are past the RC cyclenow.Merge conflicts resolved based on Linux-next:- For RXE odp changes keep for-next version and fixup new places that  need to call is_odp_mr()  https://lore.kernel.org/r/20250422143019.500201bd@canb.auug.org.au  https://lore.kernel.org/r/20250514122455.3593b083@canb.auug.org.au- irdma is keeping the while/kfree bugfix from -rc and the pf/cdev_info  change from for-next  https://lore.kernel.org/r/20250513130630.280ee6c5@canb.auug.org.auSigned-off-by: Jason Gunthorpe &lt;jgg@nvidia.com&gt;

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Mon, 26 May 2025 20:32:29 +0200</pubDate>
        <dc:creator>Jason Gunthorpe &lt;jgg@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>9c7dcf4c16ef521657450a82dc26775d6f556209 - Merge tag &apos;i2c-host-6.16&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux into i2c/for-mergewindow</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/loongarch/kvm/Makefile#9c7dcf4c16ef521657450a82dc26775d6f556209</link>
        <description>Merge tag &apos;i2c-host-6.16&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux into i2c/for-mergewindowi2c-host updates for v6.16Cleanups and refactorings- Many drivers switched to dev_err_probe()- Generic cleanups applied to designware, iproc, ismt, mlxbf,  npcm7xx, qcom-geni, pasemi, and thunderx- davinci: declare I2C mangling support among I2C features- designware: clean up DTS handling- designware: fix PM runtime on driver unregister- imx: improve error logging during probe- lpc2k: improve checks in probe error path- xgene-slimpro: improve PCC shared memory handling- pasemi: improve error handling in reset, smbus clear, timeouts- tegra: validate buffer length during transfers- wmt: convert binding to YAML formatImprovements and extended support:- microchip-core: add SMBus support- mlxbf: add support for repeated start in block transfers- mlxbf: improve timer configuration- npcm: attempt clock toggle recovery before failing init- octeon: add support for block mode operations- pasemi: add support for unjam device feature- riic: add support for bus recoveryNew device support:- MediaTek Dimensity 1200 (MT6893)- Sophgo SG2044- Renesas RZ/V2N (R9A09G056)- Rockchip RK3528- AMD ISP (new driver)Misc changes:- core: add support for Write Disable-aware SPD

            List of files:
            /linux/arch/loongarch/kvm/Makefile</description>
        <pubDate>Fri, 23 May 2025 17:18:16 +0200</pubDate>
        <dc:creator>Wolfram Sang &lt;wsa+renesas@sang-engineering.com&gt;</dc:creator>
    </item>
</channel>
</rss>
