kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-03-02 23:57:26 to 2020-03-04 10:39:58 UTC [more...]

[PATCH] vfio: platform: Switch to platform_get_irq_optional()
 2020-03-04 10:39 UTC  (2+ messages)

[PATCH] cpuidle-haltpoll: allow force loading on hosts without the REALTIME hint
 2020-03-04 10:31 UTC  (2+ messages)

[PATCH v9 0/7] Introduce support for guest CET feature
 2020-03-04  8:55 UTC  (12+ messages)
` [PATCH v9 2/7] KVM: VMX: Define CET VMCS fields and #CP flag
` [PATCH v9 3/7] KVM: VMX: Pass through CET related MSRs
` [PATCH v9 4/7] KVM: VMX: Load CET states on vmentry/vmexit
` [PATCH v9 7/7] KVM: X86: Add user-space access interface for CET MSRs

[kvm-unit-tests PATCH] x86: Move definition of some exception vectors into processor.h
 2020-03-04  7:49 UTC 

[PATCH 0/4] KVM: x86: TIF_NEED_FPU_LOAD bug fixes
 2020-03-04  7:58 UTC  (5+ messages)
` [PATCH 3/4] KVM: x86: Revert "KVM: X86: Fix fpu state crash in kvm guest"

[PATCH] KVM: X86: Avoid explictly fetch instruction in x86_decode_insn()
 2020-03-04  7:30 UTC  (2+ messages)

[PATCH] kvm: support to get/set dirty log initial-all-set capability
 2020-03-04  2:55 UTC 

[PATCH v3 0/8] kvm/split_lock: Add feature split lock detection support in kvm
 2020-03-04  2:20 UTC  (16+ messages)
` [PATCH v3 1/8] x86/split_lock: Export handle_user_split_lock()
` [PATCH v3 2/8] x86/split_lock: Ensure X86_FEATURE_SPLIT_LOCK_DETECT means the existence of feature
` [PATCH v3 3/8] x86/split_lock: Cache the value of MSR_TEST_CTRL in percpu data
` [PATCH v3 4/8] x86/split_lock: Add and export split_lock_detect_enabled() and split_lock_detect_fatal()
` [PATCH v3 6/8] kvm: vmx: Extend VMX's #AC interceptor to handle split lock #AC happens in guest
` [PATCH v3 8/8] x86: vmx: virtualize split lock detection

[PATCH] KVM: X86: Avoid explictly fetch instruction in x86_decode_insn()
 2020-03-04  2:16 UTC 

Nested virtualization and software page walks in the L1 hypervsior
 2020-03-04  0:22 UTC  (2+ messages)

[PATCH 00/61] KVM: x86: Introduce KVM cpu caps
 2020-03-03 22:41 UTC  (5+ messages)
` [PATCH 19/61] KVM: VMX: Add helpers to query Intel PT mode

[RFC v2 0/4] Paravirtualized Control Register pinning
 2020-03-03 21:35 UTC  (3+ messages)
` [RFC v2 2/4] KVM: X86: Add CR pin MSRs

linux-next: Fixes tags need some work in the kvm-fixes tree
 2020-03-03 20:39 UTC 

[PATCH v2 00/66] KVM: x86: Introduce KVM cpu caps
 2020-03-03 19:47 UTC  (92+ messages)
` [PATCH v2 01/66] KVM: x86: Return -E2BIG when KVM_GET_SUPPORTED_CPUID hits max entries
` [PATCH v2 02/66] KVM: x86: Refactor loop around do_cpuid_func() to separate helper
` [PATCH v2 03/66] KVM: x86: Simplify handling of Centaur CPUID leafs
` [PATCH v2 04/66] KVM: x86: Clean up error handling in kvm_dev_ioctl_get_cpuid()
` [PATCH v2 05/66] KVM: x86: Check userapce CPUID array size after validating sub-leaf
` [PATCH v2 06/66] KVM: x86: Move CPUID 0xD.1 handling out of the index>0 loop
` [PATCH v2 07/66] KVM: x86: Check for CPUID 0xD.N support before validating array size
` [PATCH v2 08/66] KVM: x86: Warn on zero-size save state for valid CPUID 0xD.N sub-leaf
` [PATCH v2 09/66] KVM: x86: Refactor CPUID 0xD.N sub-leaf entry creation
` [PATCH v2 10/66] KVM: x86: Clean up CPUID 0x7 sub-leaf loop
` [PATCH v2 11/66] KVM: x86: Drop the explicit @index from do_cpuid_7_mask()
` [PATCH v2 12/66] KVM: x86: Drop redundant boot cpu checks on SSBD feature bits
` [PATCH v2 13/66] KVM: x86: Consolidate CPUID array max num entries checking
` [PATCH v2 14/66] KVM: x86: Hoist loop counter and terminator to top of __do_cpuid_func()
` [PATCH v2 15/66] KVM: x86: Refactor CPUID 0x4 and 0x8000001d handling
` [PATCH v2 16/66] KVM: x86: Encapsulate CPUID entries and metadata in struct
` [PATCH v2 17/66] KVM: x86: Drop redundant array size check
` [PATCH v2 18/66] KVM: x86: Use common loop iterator when handling CPUID 0xD.N
` [PATCH v2 19/66] KVM: VMX: Add helpers to query Intel PT mode
` [PATCH v2 20/66] KVM: x86: Calculate the supported xcr0 mask at load time
` [PATCH v2 21/66] KVM: x86: Use supported_xcr0 to detect MPX support
` [PATCH v2 22/66] KVM: x86: Make kvm_mpx_supported() an inline function
` [PATCH v2 23/66] KVM: x86: Clear output regs for CPUID 0x14 if PT isn't exposed to guest
` [PATCH v2 24/66] KVM: x86: Drop explicit @func param from ->set_supported_cpuid()
` [PATCH v2 25/66] KVM: x86: Use u32 for holding CPUID register value in helpers
` [PATCH v2 26/66] KVM: x86: Replace bare "unsigned" with "unsigned int" in cpuid helpers
` [PATCH v2 27/66] KVM: x86: Introduce cpuid_entry_{get,has}() accessors
` [PATCH v2 28/66] KVM: x86: Introduce cpuid_entry_{change,set,clear}() mutators
` [PATCH v2 29/66] KVM: x86: Refactor cpuid_mask() to auto-retrieve the register
` [PATCH v2 30/66] KVM: x86: Handle MPX CPUID adjustment in VMX code
` [PATCH v2 31/66] KVM: x86: Handle INVPCID "
` [PATCH v2 32/66] KVM: x86: Handle UMIP emulation "
` [PATCH v2 33/66] KVM: x86: Handle PKU "
` [PATCH v2 34/66] KVM: x86: Handle RDTSCP "
` [PATCH v2 35/66] KVM: x86: Handle Intel PT "
` [PATCH v2 36/66] KVM: x86: Handle GBPAGE CPUID adjustment for EPT "
` [PATCH v2 37/66] KVM: x86: Refactor handling of XSAVES CPUID adjustment
` [PATCH v2 38/66] KVM: x86: Introduce kvm_cpu_caps to replace runtime CPUID masking
` [PATCH v2 39/66] KVM: SVM: Convert feature updates from CPUID to KVM cpu caps
` [PATCH v2 40/66] KVM: VMX: "
` [PATCH v2 41/66] KVM: x86: Move XSAVES CPUID adjust to VMX's KVM cpu cap update
` [PATCH v2 42/66] KVM: x86: Add a helper to check kernel support when setting cpu cap
` [PATCH v2 43/66] KVM: x86: Use KVM cpu caps to mark CR4.LA57 as not-reserved
` [PATCH v2 44/66] KVM: x86: Use KVM cpu caps to track UMIP emulation
` [PATCH v2 45/66] KVM: x86: Fold CPUID 0x7 masking back into __do_cpuid_func()
` [PATCH v2 46/66] KVM: x86: Remove the unnecessary loop on CPUID 0x7 sub-leafs
` [PATCH v2 47/66] KVM: x86: Squash CPUID 0x2.0 insanity for modern CPUs
` [PATCH v2 48/66] KVM: x86: Remove stateful CPUID handling
` [PATCH v2 49/66] KVM: x86: Do host CPUID at load time to mask KVM cpu caps
` [PATCH v2 50/66] KVM: x86: Override host CPUID results with kvm_cpu_caps
` [PATCH v2 51/66] KVM: x86: Set emulated/transmuted feature bits via kvm_cpu_caps
` [PATCH v2 52/66] KVM: x86: Use kvm_cpu_caps to detect Intel PT support
` [PATCH v2 53/66] KVM: x86: Do kvm_cpuid_array capacity checks in terminal functions
` [PATCH v2 54/66] KVM: x86: Use KVM cpu caps to detect MSR_TSC_AUX virt support
` [PATCH v2 55/66] KVM: VMX: Directly use VMX capabilities helper to detect RDTSCP support
` [PATCH v2 56/66] KVM: x86: Check for Intel PT MSR virtualization using KVM cpu caps
` [PATCH v2 57/66] KVM: VMX: Directly query Intel PT mode when refreshing PMUs
` [PATCH v2 58/66] KVM: SVM: Refactor logging of NPT enabled/disabled
` [PATCH v2 59/66] KVM: x86/mmu: Merge kvm_{enable,disable}_tdp() into a common function
` [PATCH v2 60/66] KVM: x86/mmu: Configure max page level during hardware setup
` [PATCH v2 61/66] KVM: x86: Don't propagate MMU lpage support to memslot.disallow_lpage
` [PATCH v2 62/66] KVM: Drop largepages_enabled and its accessor/mutator
` [PATCH v2 63/66] KVM: x86: Move VMX's host_efer to common x86 code
` [PATCH v2 64/66] KVM: nSVM: Expose SVM features to L1 iff nested is enabled
` [PATCH v2 65/66] KVM: nSVM: Advertise and enable NRIPS for L1 iff nrips "
` [PATCH v2 66/66] KVM: x86: Move nSVM CPUID 0x8000000A handing into common x86 code

kvm-unit-tests : Kconfigs and extra kernel args for full coverage
 2020-03-03 18:53 UTC  (11+ messages)

[PATCH 0/6] KVM: x86: CPUID emulation and tracing fixes
 2020-03-03 18:08 UTC  (29+ messages)
` [PATCH 1/6] KVM: x86: Fix tracing of CPUID.function when function is out-of-range
` [PATCH 2/6] KVM: x86: Fix CPUID range check for Centaur and Hypervisor ranges
` [PATCH 3/6] KVM: x86: Add dedicated emulator helper for grabbing CPUID.maxphyaddr

[PATCH v2 00/13] KVM: x86: Allow userspace to disable the emulator
 2020-03-03 17:44 UTC  (16+ messages)
` [PATCH v2 06/13] KVM: x86: Refactor emulate tracepoint to explicitly take context
` [PATCH v2 08/13] KVM: x86: Dynamically allocate per-vCPU emulation context
` [PATCH v2 09/13] KVM: x86: Move kvm_emulate.h into KVM's private directory

[PATCH v4 00/14] KVM: Dirty ring interface
 2020-03-03 17:33 UTC  (2+ messages)

[PATCH 0/2] KVM: x86: avoid using stale x86_emulate_ctxt->intercept value
 2020-03-03 16:37 UTC  (7+ messages)
` [PATCH 1/2] KVM: x86: clear "
` [PATCH 2/2] KVM: x86: remove stale comment from struct x86_emulate_ctxt

[PATCH RFC 4/4] kvm: Implement atomic memory region resizes via region_resize()
 2020-03-03 14:19 UTC 

[PATCH v3 18/18] docs: kvm: get read of devices/README
 2020-03-03 14:03 UTC  (2+ messages)

[GIT PULL] KVM changes for Linux 5.6-rc4
 2020-03-03 13:38 UTC  (6+ messages)

[PATCH v9 00/11] SMMUv3 Nested Stage Setup (VFIO part)
 2020-03-03 13:14 UTC  (5+ messages)
    `  "

[PATCH v1 0/3] x86/kvm/hyper-v: add support for synthetic debugger
 2020-03-03 13:03 UTC  (4+ messages)
` [PATCH v1 1/3] x86/kvm/hyper-v: Add support for synthetic debugger capability
` [PATCH v1 2/3] x86/kvm/hyper-v: enable hypercalls regardless of hypercall page
` [PATCH v1 3/3] x86/kvm/hyper-v: Add support for synthetic debugger via hypercalls

[PATCH] kvm: selftests: Support dirty log initial-all-set test
 2020-03-03 10:14 UTC  (5+ messages)

[PATCH v3 0/7] KVM: x86/mmu: nVMX: 5-level paging cleanup and enabling
 2020-03-03  9:28 UTC  (9+ messages)
` [PATCH v3 1/7] KVM: x86/mmu: Don't drop level/direct from MMU role calculation
` [PATCH v3 2/7] KVM: x86/mmu: Drop kvm_mmu_extended_role.cr4_la57 hack
` [PATCH v3 3/7] KVM: nVMX: Allow L1 to use 5-level page walks for nested EPT
` [PATCH v3 4/7] KVM: nVMX: Rename nested_ept_get_cr3() to nested_ept_get_eptp()
` [PATCH v3 5/7] KVM: nVMX: Rename EPTP validity helper and associated variables
` [PATCH v3 6/7] KVM: x86/mmu: Rename kvm_mmu->get_cr3() to ->get_guest_pgd()
` [PATCH v3 7/7] KVM: nVMX: Drop unnecessary check on ept caps for execute-only

[PATCH] KVM: nVMX: Properly handle userspace interrupt window request
 2020-03-03  8:50 UTC  (2+ messages)

[PATCH v1 02/11] virtio-mem: Paravirtualized memory hotplug
 2020-03-03  8:06 UTC  (3+ messages)

[Bug 206579] New: KVM with passthrough generates "BUG: kernel NULL pointer dereference" and crashes
 2020-03-03  5:04 UTC  (2+ messages)
` [Bug 206579] "

[PATCH 00/12] SEV Live Migration Patchset
 2020-03-03  4:42 UTC  (7+ messages)

RFC: Split EPT huge pages in advance of dirty logging
 2020-03-03  4:29 UTC  (10+ messages)

[PATCH v4] KVM: x86: enable dirty log gradually in small chunks
 2020-03-03  4:25 UTC  (3+ messages)

Problem with virtual to physical memory translation when KVM is enabled
 2020-03-03  2:39 UTC  (3+ 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).