kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-10-21 14:42:26 to 2020-10-24 21:36:19 UTC [more...]

[PATCH v2 8/8] x86/ioapic: Generate RTE directly from parent irqchip's MSI message
 2020-10-24 21:35 UTC  (20+ messages)
              ` [PATCH v3 00/35] Fix x2apic enablement and allow more CPUs, clean up I/OAPIC and MSI bitfields
                ` [PATCH v3 01/35] x86/apic: Fix x2apic enablement without interrupt remapping
                ` [PATCH v3 07/35] x86/apic: Get rid of apic::dest_logical
                ` [PATCH v3 14/35] iommu/amd: Use msi_msg shadow structs
                ` [PATCH v3 19/35] x86/io_apic: Cleanup trigger/polarity helpers
                ` [PATCH v3 23/35] x86/apic: Add select() method on vector irqdomain
                ` [PATCH v3 27/35] x86/hpet: Use irq_find_matching_fwspec() to find remapping irqdomain
                ` [PATCH v3 34/35] x86/kvm: Reserve KVM_FEATURE_MSI_EXT_DEST_ID
                ` [PATCH v3 35/35] x86/kvm: Enable 15-bit extension when KVM_FEATURE_MSI_EXT_DEST_ID detected

[GIT PULL] KVM fixes for Linux 5.10-rc1
 2020-10-24 19:37 UTC  (2+ messages)

[PATCH] KVM: vmx: rename pi_init to avoid conflict with paride
 2020-10-24 15:18 UTC  (2+ messages)

[PATCH] KVM: ioapic: break infinite recursion on lazy EOI
 2020-10-24  8:17 UTC 

[PATCH] KVM: x86/mmu: Avoid modulo operator on 64-bit value to fix i386 build
 2020-10-24  6:29 UTC  (2+ messages)

kvm: x86-32 fails to link with tdp_mmu
 2020-10-24  3:04 UTC  (3+ messages)

[Bug 209253] New: Loss of connectivity on guest after important host <-> guest traffic
 2020-10-23 22:28 UTC  (7+ messages)
` [Bug 209253] "

[GIT PULL] KVM changes for Linux 5.10
 2020-10-23 18:53 UTC 

[GIT PULL] vhost,vdpa,virtio: cleanups, fixes
 2020-10-23 18:53 UTC  (2+ messages)

[PATCH v15 00/14] KVM: Dirty ring interface
 2020-10-23 18:33 UTC  (15+ messages)
` [PATCH v15 01/14] KVM: Documentation: Update entry for KVM_X86_SET_MSR_FILTER
` [PATCH v15 02/14] KVM: Documentation: Update entry for KVM_CAP_ENFORCE_PV_CPUID
` [PATCH v15 03/14] KVM: X86: Don't track dirty for KVM_SET_[TSS_ADDR|IDENTITY_MAP_ADDR]
` [PATCH v15 04/14] KVM: Pass in kvm pointer into mark_page_dirty_in_slot()
` [PATCH v15 05/14] KVM: X86: Implement ring-based dirty memory tracking
` [PATCH v15 06/14] KVM: Make dirty ring exclusive to dirty bitmap log
` [PATCH v15 07/14] KVM: Don't allocate dirty bitmap if dirty ring is enabled
` [PATCH v15 08/14] KVM: selftests: Always clear dirty bitmap after iteration
` [PATCH v15 09/14] KVM: selftests: Sync uapi/linux/kvm.h to tools/
` [PATCH v15 10/14] KVM: selftests: Use a single binary for dirty/clear log test
` [PATCH v15 11/14] KVM: selftests: Introduce after_vcpu_run hook for dirty "
` [PATCH v15 12/14] KVM: selftests: Add dirty ring buffer test
` [PATCH v15 13/14] KVM: selftests: Let dirty_log_test async for dirty ring test
` [PATCH v15 14/14] KVM: selftests: Add "-c" parameter to dirty log test

[PATCH 1/3] sched: better handling for busy polling loops
 2020-10-23 17:48 UTC  (7+ messages)
` [PATCH 2/3] kvm: better handling for kvm halt polling
` [PATCH 3/3] net: better handling for network busy poll

[PATCH v3 0/9] KVM: Support guest MAXPHYADDR < host MAXPHYADDR
 2020-10-23 17:43 UTC  (10+ messages)
` [PATCH v3 7/9] KVM: VMX: Add guest physical address check in EPT violation and misconfig

[PATCH] KVM: X86: Expose KVM_HINTS_REALTIME in KVM_GET_SUPPORTED_CPUID
 2020-10-23 17:03 UTC  (13+ messages)

[RFCv2 00/16] KVM protected memory extension
 2020-10-23 16:32 UTC  (29+ messages)
` [RFCv2 05/16] x86/kvm: Make VirtIO use DMA API in KVM guest
` [RFCv2 08/16] KVM: Use GUP instead of copy_from/to_user() to access guest memory
` [RFCv2 09/16] KVM: mm: Introduce VM_KVM_PROTECTED
` [RFCv2 14/16] KVM: Handle protected memory in __kvm_map_gfn()/__kvm_unmap_gfn()
` [RFCv2 15/16] KVM: Unmap protected pages from direct mapping

[PATCH 00/22] Introduce the TDP MMU
 2020-10-23 16:30 UTC  (23+ messages)
` [PATCH 01/22] kvm: mmu: Separate making non-leaf sptes from link_shadow_page
` [PATCH 02/22] kvm: x86/mmu: Separate making SPTEs from set_spte
` [PATCH 03/22] KVM: mmu: Separate updating a PTE from kvm_set_pte_rmapp
` [PATCH 04/22] KVM: mmu: extract spte.h and spte.c
` [PATCH 05/22] kvm: x86/mmu: Introduce tdp_iter
` [PATCH 06/22] kvm: x86/mmu: Init / Uninit the TDP MMU
` [PATCH 07/22] kvm: x86/mmu: Allocate and free TDP MMU roots
` [PATCH 08/22] kvm: x86/mmu: Add functions to handle changed TDP SPTEs
` [PATCH 09/22] KVM: Cache as_id in kvm_memory_slot
` [PATCH 10/22] kvm: x86/mmu: Support zapping SPTEs in the TDP MMU
` [PATCH 11/22] kvm: x86/mmu: Remove disallowed_hugepage_adjust shadow_walk_iterator arg
` [PATCH 12/22] kvm: x86/mmu: Add TDP MMU PF handler
` [PATCH 13/22] kvm: x86/mmu: Allocate struct kvm_mmu_pages for all pages in TDP MMU
` [PATCH 14/22] kvm: x86/mmu: Support invalidate range MMU notifier for "
` [PATCH 15/22] kvm: x86/mmu: Add access tracking for tdp_mmu
` [PATCH 16/22] kvm: x86/mmu: Support changed pte notifier in tdp MMU
` [PATCH 17/22] kvm: x86/mmu: Support dirty logging for the TDP MMU
` [PATCH 18/22] kvm: x86/mmu: Support disabling dirty logging for the tdp MMU
` [PATCH 19/22] kvm: x86/mmu: Support write protection for nesting in "
` [PATCH 20/22] kvm: x86/mmu: Support MMIO in the TDP MMU
` [PATCH 21/22] kvm: x86/mmu: Don't clear write flooding count for direct roots
` [PATCH 22/22] kvm: x86/mmu: NX largepage recovery for TDP MMU

[PATCH net] vhost_vdpa: Return -EFUALT if copy_from_user() fails
 2020-10-23 15:34 UTC  (2+ messages)

[Bug 209831] New: Time spent on behalf of vcpu is not accounted as guest time
 2020-10-23 15:01 UTC 

[PATCH 37/65] mm: Add unsafe_follow_pfn
 2020-10-23 12:21 UTC  (2+ messages)
  ` [PATCH 39/65] vfio/type1: Mark follow_pfn as unsafe

[PATCH 1/2] vfio/fsl-mc: return -EFAULT if copy_to_user() fails
 2020-10-23 11:34 UTC 

[PATCH 2/2] vfio/fsl-mc: prevent underflow in vfio_fsl_mc_mmap()
 2020-10-23 11:29 UTC 

[PATCH] KVM: arm64: Correctly handle the mmio faulting
 2020-10-23 11:29 UTC  (2+ messages)

[PATCH v3 00/16] follow_pfn and other iomap races
 2020-10-23  9:12 UTC  (19+ messages)
` [PATCH v3 04/16] misc/habana: Use FOLL_LONGTERM for userptr
` [PATCH v3 12/16] PCI: Obey iomem restrictions for procfs mmap
` [PATCH v3 13/16] /dev/mem: Only set filp->f_mapping
` [PATCH v3 14/16] resource: Move devmem revoke code to resource framework

[PATCH v2 0/2] DIAG 318 tests and fix
 2020-10-23  7:25 UTC  (6+ messages)
` [PATCH v2 1/2] s390/kvm: fix diag318 reset

[PATCH][v3] KVM: x86/mmu: fix counting of rmap entries in pte_list_add
 2020-10-23  1:57 UTC  (2+ messages)

[PATCH v11 00/14] s390/vfio-ap: dynamic configuration support
 2020-10-22 21:17 UTC  (18+ messages)
` [PATCH v11 01/14] s390/vfio-ap: No need to disable IRQ after queue reset
` [PATCH v11 02/14] 390/vfio-ap: use new AP bus interface to search for queue devices
` [PATCH v11 03/14] s390/vfio-ap: manage link between queue struct and matrix mdev
` [PATCH v11 04/14] s390/zcrypt: driver callback to indicate resource in use
` [PATCH v11 05/14] s390/vfio-ap: implement in-use callback for vfio_ap driver
` [PATCH v11 06/14] s390/vfio-ap: introduce shadow APCB
` [PATCH v11 07/14] s390/vfio-ap: sysfs attribute to display the guest's matrix
` [PATCH v11 08/14] s390/vfio-ap: hot plug/unplug queues on bind/unbind of queue device
` [PATCH v11 09/14] s390/vfio-ap: allow assignment of unavailable AP queues to mdev device
` [PATCH v11 10/14] s390/vfio-ap: allow hot plug/unplug of AP resources using "
` [PATCH v11 11/14] s390/zcrypt: Notify driver on config changed and scan complete callbacks
` [PATCH v11 12/14] s390/vfio-ap: handle host AP config change notification
` [PATCH v11 13/14] s390/vfio-ap: handle AP bus scan completed notification
` [PATCH v11 14/14] s390/vfio-ap: update docs to include dynamic config support

[GIT PULL] VFIO updates for v5.10-rc1
 2020-10-22 20:04 UTC  (2+ messages)

[PATCH] vfio/type1: Use the new helper to find vfio_group
 2020-10-22 12:24 UTC 

[Bug 209809] New: kernel: x86/cpu: VMX (outside TXT) disabled by BIOS
 2020-10-22 10:15 UTC 

[PATCH v2 00/10] KVM: VMX: Clean up Hyper-V PV TLB flush
 2020-10-22  9:03 UTC  (9+ messages)
` [PATCH v2 05/10] KVM: VMX: Invalidate hv_tlb_eptp to denote an EPTP mismatch
` [PATCH v2 07/10] KVM: VMX: Explicitly check for hv_remote_flush_tlb when loading pgd
` [PATCH v2 10/10] KVM: VMX: Track PGD instead of EPTP for paravirt Hyper-V TLB flush

[PATCH v2 00/17] follow_pfn and other iomap races
 2020-10-22  7:39 UTC  (6+ messages)
` [PATCH v2 08/17] s390/pci: Remove races against pte updates

(proposal) RE: [PATCH v7 00/16] vfio: expose virtual Shared Virtual Addressing to VMs
 2020-10-22  4:38 UTC  (18+ messages)

CPUID.40000001H:EDX.KVM_HINTS_REALTIME[bit 0]
 2020-10-22  3:14 UTC  (5+ messages)

[PATCH v2 00/20] Introduce the TDP MMU
 2020-10-22  2:34 UTC  (15+ messages)
` [PATCH v2 02/20] kvm: x86/mmu: Introduce tdp_iter
` [PATCH v2 04/20] kvm: x86/mmu: Allocate and free TDP MMU roots
` [PATCH v2 07/20] kvm: x86/mmu: Support zapping SPTEs in the TDP MMU

[PATCH v2] KVM: x86: Add tracepoint for dr_write/dr_read
 2020-10-22  0:43 UTC  (2+ messages)

[PATCH] KVM: VMX: Forbid userspace MSR filters for x2APIC
 2020-10-21 21:36 UTC 

[PATCH] KVM: VMX: Ignore userspace MSR filters for x2APIC
 2020-10-21 21:36 UTC 

AMD SME encrpytion and PCI BAR pages to user space
 2020-10-21 16:03 UTC  (5+ messages)

[PATCH] s390/vfio-ap: fix unregister GISC when KVM is already gone results in OOPS
 2020-10-21 15:46 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).