kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-03-27 17:04:04 to 2020-03-30 10:21:57 UTC [more...]

[PATCH v8 00/81] VM introspection
 2020-03-30 10:13 UTC  (70+ messages)
` [PATCH v8 01/81] sched/swait: add swait_event_killable_exclusive()
` [PATCH v8 02/81] export kill_pid_info()
` [PATCH v8 03/81] KVM: add new error codes for VM introspection
` [PATCH v8 04/81] KVM: add kvm_vcpu_kick_and_wait()
` [PATCH v8 05/81] KVM: add kvm_get_max_gfn()
` [PATCH v8 07/81] KVM: x86: add kvm_arch_vcpu_get_regs() and kvm_arch_vcpu_get_sregs()
` [PATCH v8 08/81] KVM: x86: add kvm_arch_vcpu_set_regs()
` [PATCH v8 10/81] KVM: x86: add .bp_intercepted() to struct kvm_x86_ops
` [PATCH v8 11/81] KVM: x86: add .control_cr3_intercept() "
` [PATCH v8 12/81] KVM: x86: add .cr3_write_intercepted()
` [PATCH v8 13/81] KVM: x86: add .desc_ctrl_supported()
` [PATCH v8 15/81] KVM: x86: add .control_desc_intercept()
` [PATCH v8 16/81] KVM: x86: add .desc_intercepted()
` [PATCH v8 17/81] KVM: x86: export .msr_write_intercepted()
` [PATCH v8 18/81] KVM: x86: use MSR_TYPE_R, MSR_TYPE_W and MSR_TYPE_RW with AMD code too
` [PATCH v8 19/81] KVM: svm: pass struct kvm_vcpu to set_msr_interception()
` [PATCH v8 20/81] KVM: vmx: pass struct kvm_vcpu to the intercept msr related functions
` [PATCH v8 22/81] KVM: x86: vmx: use a symbolic constant when checking the exit qualifications
` [PATCH v8 23/81] KVM: x86: save the error code during EPT/NPF exits handling
` [PATCH v8 24/81] KVM: x86: add .fault_gla()
` [PATCH v8 25/81] KVM: x86: add .spt_fault()
` [PATCH v8 26/81] KVM: x86: add .gpt_translation_fault()
` [PATCH v8 27/81] KVM: x86: add .control_singlestep()
` [PATCH v8 28/81] KVM: x86: export kvm_arch_vcpu_set_guest_debug()
` [PATCH v8 29/81] KVM: x86: extend kvm_mmu_gva_to_gpa_system() with the 'access' parameter
` [PATCH v8 31/81] KVM: x86: export kvm_vcpu_ioctl_x86_get_xsave()
` [PATCH v8 32/81] KVM: x86: page track: provide all page tracking hooks with the guest virtual address
` [PATCH v8 33/81] KVM: x86: page track: add track_create_slot() callback
` [PATCH v8 34/81] KVM: x86: page_track: add support for preread, prewrite and preexec
` [PATCH v8 35/81] KVM: x86: wire in the preread/prewrite/preexec page trackers
` [PATCH v8 36/81] KVM: x86: intercept the write access on sidt and other emulated instructions
` [PATCH v8 37/81] KVM: x86: disable gpa_available optimization for fetch and page-walk NPF/EPT violations
` [PATCH v8 38/81] KVM: introduce VM introspection
` [PATCH v8 39/81] KVM: introspection: add hook/unhook ioctls
` [PATCH v8 41/81] KVM: introspection: add the read/dispatch message function
` [PATCH v8 43/81] KVM: introspection: add KVMI_VM_CHECK_COMMAND and KVMI_VM_CHECK_EVENT
` [PATCH v8 44/81] KVM: introspection: add KVMI_VM_GET_INFO
` [PATCH v8 45/81] KVM: introspection: add KVMI_EVENT_UNHOOK
` [PATCH v8 46/81] KVM: introspection: add KVMI_VM_CONTROL_EVENTS
` [PATCH v8 47/81] KVM: introspection: add KVMI_VM_READ_PHYSICAL/KVMI_VM_WRITE_PHYSICAL
` [PATCH v8 48/81] KVM: introspection: add vCPU related data
` [PATCH v8 49/81] KVM: introspection: add a jobs list to every introspected vCPU
` [PATCH v8 50/81] KVM: introspection: handle vCPU introspection requests
` [PATCH v8 51/81] KVM: introspection: handle vCPU commands
` [PATCH v8 52/81] KVM: introspection: add KVMI_VCPU_GET_INFO
` [PATCH v8 54/81] KVM: introspection: add KVMI_EVENT_PAUSE_VCPU
` [PATCH v8 55/81] KVM: introspection: add crash action handling on event reply
` [PATCH v8 56/81] KVM: introspection: add KVMI_VCPU_CONTROL_EVENTS
` [PATCH v8 57/81] KVM: introspection: add KVMI_VCPU_GET_REGISTERS
` [PATCH v8 58/81] KVM: introspection: add KVMI_VCPU_SET_REGISTERS
` [PATCH v8 59/81] KVM: introspection: add KVMI_VCPU_GET_CPUID
` [PATCH v8 60/81] KVM: introspection: add KVMI_EVENT_HYPERCALL
` [PATCH v8 61/81] KVM: introspection: add KVMI_EVENT_BREAKPOINT
` [PATCH v8 62/81] KVM: introspection: restore the state of #BP interception on unhook
` [PATCH v8 63/81] KVM: introspection: add KVMI_VCPU_CONTROL_CR and KVMI_EVENT_CR
` [PATCH v8 64/81] KVM: introspection: restore the state of CR3 interception on unhook
` [PATCH v8 65/81] KVM: introspection: add KVMI_VCPU_INJECT_EXCEPTION + KVMI_EVENT_TRAP
` [PATCH v8 66/81] KVM: introspection: add KVMI_VM_GET_MAX_GFN
` [PATCH v8 68/81] KVM: introspection: add KVMI_VCPU_GET_XSAVE
` [PATCH v8 69/81] KVM: introspection: add KVMI_VCPU_GET_MTRR_TYPE
` [PATCH v8 70/81] KVM: introspection: add KVMI_EVENT_DESCRIPTOR
` [PATCH v8 71/81] KVM: introspection: restore the state of descriptor-table register interception on unhook
` [PATCH v8 73/81] KVM: introspection: restore the state of MSR "
` [PATCH v8 74/81] KVM: introspection: add KVMI_VM_SET_PAGE_ACCESS
` [PATCH v8 75/81] KVM: introspection: add KVMI_EVENT_PF
` [PATCH v8 76/81] KVM: introspection: extend KVMI_GET_VERSION with struct kvmi_features
` [PATCH v8 78/81] KVM: introspection: add KVMI_EVENT_SINGLESTEP
` [PATCH v8 79/81] KVM: introspection: add KVMI_VCPU_TRANSLATE_GVA
` [PATCH v8 80/81] KVM: introspection: emulate a guest page table walk on SPT violations due to A/D bit updates

[kvm-unit-tests PATCH v7 00/13] arm/arm64: Add ITS tests
 2020-03-30 10:19 UTC  (14+ messages)
` [kvm-unit-tests PATCH v7 06/13] arm/arm64: ITS: Introspection tests
` [kvm-unit-tests PATCH v7 08/13] arm/arm64: ITS: Device and collection Initialization
` [kvm-unit-tests PATCH v7 09/13] arm/arm64: ITS: Commands

[PATCH v1 0/8] vfio: expose virtual Shared Virtual Addressing to VMs
 2020-03-30  9:43 UTC  (10+ messages)
` [PATCH v1 1/8] vfio: Add VFIO_IOMMU_PASID_REQUEST(alloc/free)
` [PATCH v1 2/8] vfio/type1: Add vfio_iommu_type1 parameter for quota tuning
` [PATCH v1 3/8] vfio/type1: Report PASID alloc/free support to userspace

[PATCH v2 00/22] intel_iommu: expose Shared Virtual Addressing to VMs
 2020-03-30  9:36 UTC  (25+ messages)
` [PATCH v2 01/22] scripts/update-linux-headers: Import iommu.h
` [PATCH v2 02/22] header file update VFIO/IOMMU vSVA APIs
` [PATCH v2 03/22] vfio: check VFIO_TYPE1_NESTING_IOMMU support
` [PATCH v2 04/22] hw/iommu: introduce HostIOMMUContext
` [PATCH v2 05/22] hw/pci: modify pci_setup_iommu() to set PCIIOMMUOps
` [PATCH v2 06/22] hw/pci: introduce pci_device_set/unset_iommu_context()
` [PATCH v2 07/22] intel_iommu: add set/unset_iommu_context callback
` [PATCH v2 08/22] vfio/common: provide PASID alloc/free hooks
` [PATCH v2 09/22] vfio/common: init HostIOMMUContext per-container
` [PATCH v2 10/22] vfio/pci: set host iommu context to vIOMMU
` [PATCH v2 11/22] intel_iommu: add virtual command capability support
` [PATCH v2 12/22] intel_iommu: process PASID cache invalidation
` [PATCH v2 13/22] intel_iommu: add PASID cache management infrastructure
` [PATCH v2 14/22] vfio: add bind stage-1 page table support
` [PATCH v2 15/22] intel_iommu: bind/unbind guest page table to host
` [PATCH v2 16/22] intel_iommu: replay pasid binds after context cache invalidation
` [PATCH v2 17/22] intel_iommu: do not pass down pasid bind for PASID #0
` [PATCH v2 18/22] vfio: add support for flush iommu stage-1 cache
` [PATCH v2 19/22] intel_iommu: process PASID-based iotlb invalidation
` [PATCH v2 20/22] intel_iommu: propagate PASID-based iotlb invalidation to host
` [PATCH v2 21/22] intel_iommu: process PASID-based Device-TLB invalidation
` [PATCH v2 22/22] intel_iommu: modify x-scalable-mode to be string option

[PATCH v3 kvmtool 00/32] Add reassignable BARs and PCIE 1.1 support
 2020-03-30  9:30 UTC  (11+ messages)
` [PATCH v3 kvmtool 08/32] pci: Fix ioport allocation size
` [PATCH v3 kvmtool 12/32] vfio/pci: Ignore expansion ROM BAR writes
` [PATCH v3 kvmtool 13/32] vfio/pci: Don't access unallocated regions
` [PATCH v3 kvmtool 14/32] virtio: Don't ignore initialization failures
` [PATCH v3 kvmtool 16/32] hw/vesa: Don't ignore fatal errors

[PATCH v2 kvmtool 00/30] Add reassignable BARs and PCIE 1.1 support
 2020-03-30  9:27 UTC  (5+ messages)
` [PATCH v2 kvmtool 15/30] virtio: Don't ignore initialization failures

[kvm-unit-tests 0/2] s390x/smp fix and enhancement
 2020-03-30  9:17 UTC  (5+ messages)
` [kvm-unit-tests 1/2] s390x/smp: fix detection of "running"
` [kvm-unit-tests 2/2] s390x/smp: add minimal test for sigp sense running status

[PATCH 0/6] vhost: Reset batched descriptors on SET_VRING_BASE call
 2020-03-30  9:15 UTC  (15+ messages)
` [PATCH 1/6] tools/virtio: Add --batch option
` [PATCH 2/6] tools/virtio: Add --batch=random option
` [PATCH 3/6] tools/virtio: Add --reset=random
` [PATCH 4/6] tools/virtio: Make --reset reset ring idx
` [PATCH 5/6] vhost: Delete virtqueue batch_descs member
` [PATCH 6/6] fixup! vhost: batching fetches

[PATCH v2 00/10] virtio-mem: paravirtualized memory
 2020-03-30  8:42 UTC  (8+ messages)

[1/1] s390x/smp: fix detection of "running"
 2020-03-30  7:37 UTC  (5+ messages)

[PATCH v1 00/22] intel_iommu: expose Shared Virtual Addressing to VMs
 2020-03-30  7:06 UTC  (9+ messages)
` [PATCH v1 02/22] header file update VFIO/IOMMU vSVA APIs
` [PATCH v1 19/22] intel_iommu: process PASID-based iotlb invalidation

[PATCH v6 00/14] Add AMD SEV guest live migration support
 2020-03-30  6:23 UTC  (15+ messages)
` [PATCH v6 01/14] KVM: SVM: Add KVM_SEV SEND_START command
` [PATCH v6 02/14] KVM: SVM: Add KVM_SEND_UPDATE_DATA command
` [PATCH v6 03/14] KVM: SVM: Add KVM_SEV_SEND_FINISH command
` [PATCH v6 04/14] KVM: SVM: Add support for KVM_SEV_RECEIVE_START command
` [PATCH v6 05/14] KVM: SVM: Add KVM_SEV_RECEIVE_UPDATE_DATA command
` [PATCH v6 06/14] KVM: SVM: Add KVM_SEV_RECEIVE_FINISH command
` [PATCH v6 07/14] KVM: x86: Add AMD SEV specific Hypercall3
` [PATCH v6 08/14] KVM: X86: Introduce KVM_HC_PAGE_ENC_STATUS hypercall
` [PATCH v6 09/14] KVM: x86: Introduce KVM_GET_PAGE_ENC_BITMAP ioctl
` [PATCH v6 10/14] mm: x86: Invoke hypercall when page encryption status is changed
` [PATCH v6 11/14] KVM: x86: Introduce KVM_SET_PAGE_ENC_BITMAP ioctl
` [PATCH v6 12/14] KVM: x86: Introduce KVM_PAGE_ENC_BITMAP_RESET ioctl
` [PATCH v6 13/14] KVM: x86: Introduce new KVM_FEATURE_SEV_LIVE_MIGRATION feature & Custom MSR
` [PATCH v6 14/14] KVM: x86: Add kexec support for SEV Live Migration

[PATCH v16 Kernel 4/7] vfio iommu: Implementation of ioctl for dirty pages tracking
 2020-03-30  3:24 UTC  (8+ messages)

[vhost:linux-next 8/13] include/linux/vringh.h:18:10: fatal error: linux/vhost_iotlb.h: No such file or directory
 2020-03-30  2:46 UTC  (2+ messages)

[PATCH v5 00/14] Add AMD SEV guest live migration support
 2020-03-30  2:37 UTC  (16+ messages)
` [PATCH v5 01/14] KVM: SVM: Add KVM_SEV SEND_START command
` [PATCH v5 02/14] KVM: SVM: Add KVM_SEND_UPDATE_DATA command
` [PATCH v5 03/14] KVM: SVM: Add KVM_SEV_SEND_FINISH command
` [PATCH v5 04/14] KVM: SVM: Add support for KVM_SEV_RECEIVE_START command
` [PATCH v5 05/14] KVM: SVM: Add KVM_SEV_RECEIVE_UPDATE_DATA command
` [PATCH v5 06/14] KVM: SVM: Add KVM_SEV_RECEIVE_FINISH command
` [PATCH v5 07/14] KVM: x86: Add AMD SEV specific Hypercall3
` [PATCH v5 08/14] KVM: X86: Introduce KVM_HC_PAGE_ENC_STATUS hypercall
` [PATCH v5 09/14] KVM: x86: Introduce KVM_GET_PAGE_ENC_BITMAP ioctl
` [PATCH v5 10/14] mm: x86: Invoke hypercall when page encryption status is changed
` [PATCH v5 11/14] KVM: x86: Introduce KVM_SET_PAGE_ENC_BITMAP ioctl
` [PATCH v5 12/14] KVM: x86: Introduce KVM_PAGE_ENC_BITMAP_RESET ioctl
` [PATCH v5 13/14] KVM: x86: Introduce new KVM_FEATURE_SEV_LIVE_MIGRATION feature & Custom MSR
` [PATCH v5 14/14] KVM: x86: Add kexec support for SEV Live Migration

[PATCH v16 Kernel 0/7] KABIs to support migration for VFIO devices
 2020-03-30  2:15 UTC  (7+ messages)
` [PATCH v16 Kernel 5/7] vfio iommu: Update UNMAP_DMA ioctl to get dirty bitmap before unmap

[PATCH 0/7] tools/kvm_stat: add logfile support
 2020-03-29 11:22 UTC  (9+ messages)
` [PATCH 7/7] tools/kvm_stat: add sample systemd unit file

[PATCH V9 0/9] vDPA support
 2020-03-29 11:07 UTC  (2+ messages)

[kvm-unit-tests PATCH] x86: realmode: Test interrupt delivery after STI
 2020-03-29  7:11 UTC 

[PATCH v4] mm/hugetlb: fix a addressing exception caused by huge_pte_offset
 2020-03-28 23:07 UTC  (2+ messages)

[PATCH 0/3] KVM: x86: sync SPTEs on page/EPT fault injection
 2020-03-28 18:41 UTC  (7+ messages)
` [PATCH 1/3] KVM: x86: introduce kvm_mmu_invalidate_gva
` [PATCH 2/3] KVM: x86: cleanup kvm_inject_emulated_page_fault
` [PATCH 3/3] KVM: x86: Sync SPTEs when injecting page/EPT fault into L1

[RFC v3 0/3] Fix errors when try to build kvm selftests on specified output
 2020-03-28  8:51 UTC  (5+ messages)

[PATCH v11 7/9] KVM: X86: Add userspace access interface for CET MSRs
 2020-03-28  7:40 UTC  (2+ messages)

[PATCH RESEND v4] mm/hugetlb: fix a addressing exception caused by huge_pte_offset
 2020-03-27 23:57 UTC 

[PATCH v3] mm/hugetlb: fix a addressing exception caused by huge_pte_offset
 2020-03-27 23:32 UTC  (3+ messages)

[PATCH 0/9] vfio/fsl-mc: VFIO support for FSL-MC devices
 2020-03-27 21:12 UTC  (4+ messages)
` [PATCH 1/9] vfio/fsl-mc: Add VFIO framework skeleton for fsl-mc devices

[Bug 201753] AMD-Vi: Unable to write to IOMMU perf counter
 2020-03-27 21:06 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).