kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-03-17 12:10:37 to 2020-03-19 09:17:38 UTC [more...]

[RFC PATCH 00/70 v2] x86: SEV-ES Guest Support
 2020-03-19  9:14 UTC  (38+ messages)
` [PATCH 04/70] x86/traps: Move some definitions to <asm/trap_defs.h>
` [PATCH 06/70] x86/umip: Factor out instruction fetch
` [PATCH 12/70] x86/boot/compressed/64: Add IDT Infrastructure
` [PATCH 13/70] x86/boot/compressed/64: Rename kaslr_64.c to ident_map_64.c
` [PATCH 34/70] x86/head/64: Load IDT earlier
` [PATCH 39/70] x86/sev-es: Setup GHCB based boot #VC handler
` [PATCH 40/70] x86/sev-es: Setup per-cpu GHCBs for the runtime handler
` [PATCH 41/70] x86/sev-es: Add Runtime #VC Exception Handler
` [PATCH 42/70] x86/sev-es: Support nested #VC exceptions
` [PATCH 43/70] x86/sev-es: Wire up existing #VC exit-code handlers
` [PATCH 44/70] x86/sev-es: Handle instruction fetches from user-space
` [PATCH 45/70] x86/sev-es: Harden runtime #VC handler for exceptions "
` [PATCH 46/70] x86/sev-es: Filter exceptions not supported "
` [PATCH 47/70] x86/sev-es: Handle MMIO events
` [PATCH 48/70] x86/sev-es: Handle MMIO String Instructions
` [PATCH 49/70] x86/sev-es: Handle MSR events
` [PATCH 50/70] x86/sev-es: Handle DR7 read/write events
` [PATCH 51/70] x86/sev-es: Handle WBINVD Events
` [PATCH 52/70] x86/sev-es: Handle RDTSC Events
` [PATCH 53/70] x86/sev-es: Handle RDPMC Events
` [PATCH 54/70] x86/sev-es: Handle INVD Events
` [PATCH 55/70] x86/sev-es: Handle RDTSCP Events
` [PATCH 56/70] x86/sev-es: Handle MONITOR/MONITORX Events
` [PATCH 57/70] x86/sev-es: Handle MWAIT/MWAITX Events
` [PATCH 58/70] x86/sev-es: Handle VMMCALL Events
` [PATCH 59/70] x86/sev-es: Handle #AC Events
` [PATCH 60/70] x86/sev-es: Handle #DB Events
` [PATCH 61/70] x86/paravirt: Allow hypervisor specific VMMCALL handling under SEV-ES
` [PATCH 62/70] x86/kvm: Add KVM "
` [PATCH 63/70] x86/vmware: Add VMware specific handling for VMMCALL "
` [PATCH 64/70] x86/realmode: Add SEV-ES specific trampoline entry point
` [PATCH 65/70] x86/realmode: Setup AP jump table
` [PATCH 66/70] x86/head/64: Don't call verify_cpu() on starting APs
` [PATCH 67/70] x86/head/64: Rename start_cpu0
` [PATCH 68/70] x86/sev-es: Support CPU offline/online
` [PATCH 69/70] x86/cpufeature: Add SEV_ES_GUEST CPU Feature
` [PATCH 70/70] x86/sev-es: Add NMI state tracking

[PATCH v8 0/5] x86/kvm/hyper-v: add support for synthetic debugger
 2020-03-19  8:30 UTC  (8+ messages)
` [PATCH v8 1/5] x86/kvm/hyper-v: Explicitly align hcall param for kvm_hyperv_exit
` [PATCH v8 2/5] x86/hyper-v: Add synthetic debugger definitions
` [PATCH v8 3/5] x86/kvm/hyper-v: Add support for synthetic debugger capability
` [PATCH v8 4/5] x86/kvm/hyper-v: enable hypercalls without hypercall page with syndbg
` [PATCH v8 5/5] x86/kvm/hyper-v: Add support for synthetic debugger via hypercalls

[PATCH V6 0/8] vDPA support
 2020-03-19  8:14 UTC  (16+ messages)
` [PATCH V6 1/8] vhost: allow per device message handler
` [PATCH V6 2/8] vhost: factor out IOTLB
` [PATCH V6 3/8] vringh: IOTLB support
` [PATCH V6 4/8] vDPA: introduce vDPA bus
` [PATCH V6 5/8] virtio: introduce a vDPA based transport
` [PATCH V6 6/8] vhost: introduce vDPA-based backend
` [PATCH V6 7/8] vdpasim: vDPA device simulator
` [PATCH V6 8/8] virtio: Intel IFC VF driver for VDPA

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

[PATCH v2 0/5] PEBS virtualization enabling via Intel PT
 2020-03-19 14:33 UTC  (6+ messages)
` [PATCH v2 1/5] KVM: x86/pmu: Add base address parameter for get_fixed_pmc function
` [PATCH v2 2/5] KVM: x86/pmu: Expose PDCM feature when PEBS output to PT
` [PATCH v2 3/5] KVM: x86/pmu: PEBS output Intel PT MSRs emulation
` [PATCH v2 4/5] KVM: x86/pmu: Add counter reload register to MSR list
` [PATCH v2 5/5] KVM: VMX: Switch PEBS records output to Intel PT buffer

[PATCH v14 Kernel 0/7] KABIs to support migration for VFIO devices
 2020-03-19  6:24 UTC  (21+ messages)
` [PATCH v14 Kernel 1/7] vfio: KABI for migration interface for device state
` [PATCH v14 Kernel 2/7] vfio iommu: Remove atomicity of ref_count of pinned pages
` [PATCH v14 Kernel 3/7] vfio iommu: Add ioctl definition for dirty pages tracking
` [PATCH v14 Kernel 4/7] vfio iommu: Implementation of ioctl "
` [PATCH v14 Kernel 5/7] vfio iommu: Update UNMAP_DMA ioctl to get dirty bitmap before unmap
` [PATCH v14 Kernel 6/7] vfio iommu: Adds flag to indicate dirty pages tracking capability support
` [PATCH v14 Kernel 7/7] vfio: Selective dirty page tracking if IOMMU backed device pins pages

[PATCH v3 0/7] vfio/pci: SR-IOV support
 2020-03-19  6:32 UTC  (2+ messages)

[PATCH] KVM: VMX: Disable Intel PT before VM-entry
 2020-03-19  6:13 UTC  (3+ messages)

[PATCH v7 0/5] x86/kvm/hyper-v: add support for synthetic debugger
 2020-03-19  5:58 UTC  (6+ messages)
` [PATCH v7 1/5] x86/kvm/hyper-v: Explicitly align hcall param for kvm_hyperv_exit
` [PATCH v7 2/5] x86/hyper-v: Add synthetic debugger definitions
` [PATCH v7 3/5] x86/kvm/hyper-v: Add support for synthetic debugger capability
` [PATCH v7 4/5] x86/kvm/hyper-v: enable hypercalls without hypercall page with syndbg
` [PATCH v7 5/5] x86/kvm/hyper-v: Add support for synthetic debugger via hypercalls

[PATCH] KVM: PPC: Book3S HV: Add a capability for enabling secure guests
 2020-03-19  4:33 UTC 

[PATCH RFC 0/4] KVM: MIPS: Provide arch-specific kvm_flush_remote_tlbs()
 2020-03-19  2:21 UTC  (9+ messages)
` [PATCH RFC 4/4] KVM: MIPS: Define "

[kvm-unit-tests PATCH 0/8] nVMX: Clean up __enter_guest() and co
 2020-03-18 23:40 UTC  (3+ messages)
` [kvm-unit-tests PATCH 2/8] nVMX: Refactor VM-Entry "failure" struct into "result"

[PATCH kvmtool v3] Add emulation for CFI compatible flash memory
 2020-03-18 21:58 UTC  (2+ messages)

[PATCH v6 03/14] KVM: X86: Don't track dirty for KVM_SET_[TSS_ADDR|IDENTITY_MAP_ADDR]
 2020-03-18 20:04 UTC  (4+ messages)

[PATCH] KVM: nSVM: check for EFER.SVME=1 before entering guest
 2020-03-18 18:40 UTC  (3+ messages)

[PATCH v2 00/32] KVM: x86: TLB flushing fixes and enhancements
 2020-03-18 17:38 UTC  (14+ messages)
` [PATCH v2 23/32] KVM: nVMX: Add helper to handle TLB flushes on nested VM-Enter/VM-Exit
` [PATCH v2 31/32] KVM: nVMX: Don't flush TLB on nested VM transition with EPT enabled

[PATCH v4 0/2] KVM: VMX: cleanup VMXON region allocation
 2020-03-18 17:31 UTC  (4+ messages)
` [PATCH v4 1/2] KVM: VMX: rename 'kvm_area' to 'vmxon_region'
` [PATCH v4 2/2] KVM: VMX: untangle VMXON revision_id setting when using eVMCS

[PATCH v3 0/2] KVM: VMX: cleanup VMXON region allocation
 2020-03-18 17:17 UTC  (8+ messages)
` [PATCH v3 2/2] KVM: VMX: untangle VMXON revision_id setting when using eVMCS

[PATCH v13 Kernel 0/7] KABIs to support migration for VFIO devices
 2020-03-18 17:01 UTC  (13+ messages)
` [PATCH v13 Kernel 4/7] vfio iommu: Implementation of ioctl to for dirty pages tracking
` [PATCH v13 Kernel 5/7] vfio iommu: Update UNMAP_DMA ioctl to get dirty bitmap before unmap
` [PATCH v13 Kernel 7/7] vfio: Selective dirty page tracking if IOMMU backed device pins pages

[PATCH] KVM: nVMX: remove side effects from nested_vmx_exit_reflected
 2020-03-18 15:12 UTC  (4+ messages)

[PATCH v2 0/2] KVM: selftests: steal_time cleanups and timespec rework
 2020-03-18 14:58 UTC  (4+ messages)
` [PATCH v2 2/2] KVM: selftests: Rework timespec functions and usage

[PATCH 0/2] Fix errors when try to build kvm selftests on
 2020-03-18 13:13 UTC  (2+ messages)

[PATCH v6 0/5] x86/kvm/hyper-v: add support for synthetic debugger
 2020-03-18 13:11 UTC  (7+ messages)
` [PATCH v6 1/5] x86/kvm/hyper-v: Explicitly align hcall param for kvm_hyperv_exit
` [PATCH v6 3/5] x86/kvm/hyper-v: Add support for synthetic debugger capability
` [PATCH v6 4/5] x86/kvm/hyper-v: enable hypercalls regardless of hypercall page

[PATCH 0/2 v2] kvm-unit-test: nVMX: Test GUEST_BNDCFGS VM-Entry control on vmentry of nested guests
 2020-03-18 13:07 UTC  (4+ messages)
` [PATCH 1/2 v2] kvm-unit-test: VMX: Add enum for GUEST_BNDCFGS field and LOAD_BNDCFGS vmentry control field
` [PATCH 2/2 v2] kvm-unit-test: nVMX: Test GUEST_BNDCFGS VM-Entry control on vmentry of nested guests

[PATCH v2] KVM: x86: Remove unnecessary brackets in kvm_arch_dev_ioctl()
 2020-03-18 13:05 UTC  (3+ messages)

[PATCH 0/3] kvm-unit-test: nSVM: Add alternative (v2) test framework and add test for SVME.EFER vmcb field
 2020-03-18 12:45 UTC  (5+ messages)
` [PATCH 1/3] kvm-unit-test: nSVM: Add alternative (v2) test format for nested guests
` [PATCH 2/3] kvm-unit-test: nSVM: Add helper functions to write and read vmcb fields
` [PATCH 3/3] kvm-unit-test: nSVM: Test SVME.EFER on VMRUN of nested guests

[PATCH 0/2] KVM: x86: CPUID tracepoint enhancements
 2020-03-18 12:45 UTC  (4+ messages)
` [PATCH 1/2] KVM: x86: Add requested index to the CPUID tracepoint
` [PATCH 2/2] KVM: x86: Add blurb to CPUID tracepoint when using max basic leaf values

[PATCH] kvm-unit-test: nSVM: Restructure nSVM test code
 2020-03-18 12:02 UTC  (2+ messages)

[PATCH kvm-unit-tests] x86: vmx: Expect multiple error codes on HOST_EFER corruption
 2020-03-18 11:29 UTC  (2+ messages)

[PATCH] KVM: x86: Expose AVX512 VP2INTERSECT in cpuid for TGL
 2020-03-18 11:26 UTC  (3+ messages)
` [PATCH rebase] "

[PATCH] kvm: support to get/set dirty log initial-all-set capability
 2020-03-18 10:47 UTC  (2+ messages)

[Bug 206877] New: Nested virt on AMD (and probably older Intel) doesn't work with ignore_msrs=Y on L0 (fails with UMWAIT error)
 2020-03-18 10:22 UTC 

Some warnings occur in hyperv.c
 2020-03-18  9:54 UTC  (4+ messages)

[PATCH v5 00/23] irqchip/gic-v4: GICv4.1 architecture support
 2020-03-18  6:34 UTC  (9+ messages)
` [PATCH v5 18/23] KVM: arm64: GICv4.1: Add direct injection capability to SGI registers
` [PATCH v5 20/23] KVM: arm64: GICv4.1: Plumb SGI implementation selection in the distributor
` [PATCH v5 21/23] KVM: arm64: GICv4.1: Reload VLPI configuration on distributor enable/disable
` [PATCH v5 23/23] KVM: arm64: GICv4.1: Expose HW-based SGIs in debugfs

[RFC PATCH 00/62] Linux as SEV-ES Guest Support
 2020-03-17 21:34 UTC  (5+ messages)
` [PATCH 38/62] x86/sev-es: Handle instruction fetches from user-space

[PATCH 00/10] KVM: VMX: Unionize vcpu_vmx.exit_reason
 2020-03-17 18:01 UTC  (19+ messages)
` [PATCH 01/10] KVM: nVMX: Move reflection check into nested_vmx_reflect_vmexit()
` [PATCH 06/10] KVM: nVMX: Convert local exit_reason to u16 in ...enter_non_root_mode()
` [PATCH 09/10] KVM: VMX: Cache vmx->exit_reason in local u16 in vmx_handle_exit_irqoff()
` [PATCH 10/10] KVM: VMX: Convert vcpu_vmx.exit_reason to a union

[PATCH 0/2] kvm-unit-test: nVMX: Test GUEST_BNDCFGS VM-Entry control on vmentry of nested guests
 2020-03-17 15:46 UTC  (3+ messages)
` [PATCH 2/2] "

[Patch v1] x86: Fix the logical destination mode test
 2020-03-17 15:43 UTC  (3+ messages)

[PATCH 09/12] docs: fix broken references for ReST files that moved around
 2020-03-17 13:10 UTC 

[PULL kvm-unit-tests 00/10] arm/arm64: Various fixes
 2020-03-17 12:10 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).