Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'kvmarm-fixes-6.7-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into kvm-master

KVM/arm64 fixes for 6.7, take #1

- Avoid mapping vLPIs that have already been mapped

+4
+4
arch/arm64/kvm/vgic/vgic-v4.c
··· 436 436 if (ret) 437 437 goto out; 438 438 439 + /* Silently exit if the vLPI is already mapped */ 440 + if (irq->hw) 441 + goto out; 442 + 439 443 /* 440 444 * Emit the mapping request. If it fails, the ITS probably 441 445 * isn't v4 compatible, so let's silently bail out. Holding