kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-11-23 07:27:24 to 2021-11-25 00:22:57 UTC [more...]

[RFC PATCH v3 00/59] KVM: X86: TDX support
 2021-11-25  0:20 UTC  (39+ messages)
` [RFC PATCH v3 01/59] x86/mktme: move out MKTME related constatnts/macro to msr-index.h
` [RFC PATCH v3 02/59] x86/mtrr: mask out keyid bits from variable mtrr mask register
` [RFC PATCH v3 03/59] KVM: TDX: Define TDX architectural definitions
` [RFC PATCH v3 05/59] KVM: TDX: add a helper function for kvm to call seamcall
` [RFC PATCH v3 06/59] KVM: TDX: Add C wrapper functions for TDX SEAMCALLs
` [RFC PATCH v3 07/59] KVM: TDX: Add helper functions to print TDX SEAMCALL error
` [RFC PATCH v3 08/59] KVM: Export kvm_io_bus_read for use by TDX for PV MMIO
` [RFC PATCH v3 09/59] KVM: Enable hardware before doing arch VM initialization
` [RFC PATCH v3 10/59] KVM: x86: Split core of hypercall emulation to helper function
` [RFC PATCH v3 11/59] KVM: x86: Export kvm_mmio tracepoint for use by TDX for PV MMIO
` [RFC PATCH v3 12/59] KVM: x86/mmu: Zap only leaf SPTEs for deleted/moved memslot by default
` [RFC PATCH v3 14/59] KVM: x86: Add vm_type to differentiate legacy VMs from protected VMs
` [RFC PATCH v3 18/59] KVM: x86: Add flag to mark TSC as immutable (for TDX)
` [RFC PATCH v3 21/59] KVM: x86: Add per-VM flag to disable in-kernel I/O APIC and level routes
` [RFC PATCH v3 26/59] KVM: x86: Introduce vm_teardown() hook in kvm_arch_vm_destroy()
` [RFC PATCH v3 27/59] KVM: x86: Add a switch_db_regs flag to handle TDX's auto-switched behavior
` [RFC PATCH v3 28/59] KVM: x86: Check for pending APICv interrupt in kvm_vcpu_has_events()
` [RFC PATCH v3 29/59] KVM: x86: Add option to force LAPIC expiration wait
` [RFC PATCH v3 31/59] KVM: x86: Add infrastructure for stolen GPA bits
` [RFC PATCH v3 33/59] KVM: x86/mmu: Ignore bits 63 and 62 when checking for "present" SPTEs
` [RFC PATCH v3 36/59] KVM: x86/mmu: Frame in support for private/inaccessible shadow pages
` [RFC PATCH v3 37/59] KVM: x86/mmu: Introduce kvm_mmu_map_tdp_page() for use by TDX
` [RFC PATCH v3 38/59] KVM: x86/mmu: Allow per-VM override of the TDP max page level
` [RFC PATCH v3 39/59] KVM: VMX: Modify NMI and INTR handlers to take intr_info as param
` [RFC PATCH v3 40/59] KVM: VMX: Move NMI/exception handler to common helper
` [RFC PATCH v3 41/59] KVM: VMX: Split out guts of EPT violation to common/exposed function
` [RFC PATCH v3 42/59] KVM: VMX: Define EPT Violation architectural bits
` [RFC PATCH v3 43/59] KVM: VMX: Define VMCS encodings for shared EPT pointer
` [RFC PATCH v3 44/59] KVM: VMX: Add 'main.c' to wrap VMX and TDX
` [RFC PATCH v3 45/59] KVM: VMX: Move setting of EPT MMU masks to common VT-x code
` [RFC PATCH v3 46/59] KVM: VMX: Move register caching logic to common code
` [RFC PATCH v3 47/59] KVM: TDX: Define TDCALL exit reason
` [RFC PATCH v3 48/59] KVM: TDX: Stub in tdx.h with structs, accessors, and VMCS helpers
` [RFC PATCH v3 49/59] KVM: VMX: Add macro framework to read/write VMCS for VMs and TDs
` [RFC PATCH v3 50/59] KVM: VMX: Move AR_BYTES encoder/decoder helpers to common.h
` [RFC PATCH v3 51/59] KVM: VMX: MOVE GDT and IDT accessors to common code
` [RFC PATCH v3 52/59] KVM: VMX: Move .get_interrupt_shadow() implementation to common VMX code
` [RFC PATCH v3 53/59] KVM: x86: Add a helper function to restore 4 host MSRs on exit to user space

[PATCH 0/2] optimize spte zapping in zap_gfn_range()
 2021-11-24 21:44 UTC  (3+ messages)
` [PATCH 1/2] Revert "KVM: x86/mmu: Don't step down in the TDP iterator when zapping all SPTEs"
` [PATCH 2/2] KVM: mmu/x86: optimize zapping by retaining non-leaf SPTEs and avoid rcu stall

[RFC PATCH v3 00/29] KVM: arm64: Make CPU ID registers writable by userspace
 2021-11-24 21:07 UTC  (30+ messages)
` [RFC PATCH v3 02/29] KVM: arm64: Save ID registers' sanitized value per vCPU
` [RFC PATCH v3 03/29] KVM: arm64: Introduce struct id_reg_info
` [RFC PATCH v3 04/29] KVM: arm64: Make ID_AA64PFR0_EL1 writable
` [RFC PATCH v3 11/29] KVM: arm64: Make ID_DFR0_EL1 writable
` [RFC PATCH v3 21/29] KVM: arm64: Introduce framework to trap disabled features

[PATCH Part2 v5 00/45] Add AMD Secure Nested Paging (SEV-SNP) Hypervisor Support
 2021-11-24 19:34 UTC  (15+ messages)

[PATCH v2] KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE
 2021-11-24 18:50 UTC  (2+ messages)

[PATCH 00/28] KVM: x86/mmu: Overhaul TDP MMU zapping and flushing
 2021-11-24 18:42 UTC  (14+ messages)
` [PATCH 19/28] KVM: x86/mmu: Zap only the target TDP MMU shadow page in NX recovery
` [PATCH 25/28] KVM: x86/mmu: Require mmu_lock be held for write to zap TDP MMU range
` [PATCH 26/28] KVM: x86/mmu: Zap only TDP MMU leafs in kvm_zap_gfn_range()
` [PATCH 27/28] KVM: x86/mmu: Do remote TLB flush before dropping RCU in TDP MMU resched
` [PATCH 28/28] KVM: x86/mmu: Defer TLB flush to caller when freeing TDP MMU shadow pages

[PATCH RFC] vfio: Documentation for the migration region
 2021-11-24 18:40 UTC  (5+ messages)

[PATCH MANUALSEL 5.15 1/8] KVM: X86: Fix tlb flush for tdp in kvm_invalidate_pcid()
 2021-11-24 18:20 UTC  (8+ messages)
` [PATCH MANUALSEL 5.15 2/8] KVM: X86: Don't reset mmu context when X86_CR4_PCIDE 1->0
` [PATCH MANUALSEL 5.15 3/8] KVM: X86: Don't check unsync if the original spte is writible
` [PATCH MANUALSEL 5.15 4/8] KVM: selftests: Fix kvm_vm_free() in cr4_cpuid_sync and vmx_tsc_adjust tests
` [PATCH MANUALSEL 5.15 5/8] KVM: s390: Cap KVM_CAP_NR_VCPUS by num_online_cpus()
` [PATCH MANUALSEL 5.15 7/8] KVM: MIPS: Cap KVM_CAP_NR_VCPUS by KVM_CAP_MAX_VCPUS

[PATCH v4 11/11] KVM: x86: First attempt at converting nested virtual APIC page to gpc
 2021-11-24 17:55 UTC  (2+ messages)

[kvm-unit-tests PATCH v8 00/10] MTTCG sanity tests for ARM
 2021-11-24 16:48 UTC  (9+ messages)
` [kvm-unit-tests PATCH v8 01/10] docs: mention checkpatch in the README
` [kvm-unit-tests PATCH v8 04/10] run_tests.sh: add --config option for alt test set
` [kvm-unit-tests PATCH v8 08/10] arm/barrier-litmus-tests: add simple mp and sal litmus tests

[PATCH V4 0/3] vDPA/ifcvf: enables Intel C5000X-PL virtio-blk
 2021-11-24 15:39 UTC  (2+ messages)

[PATCH 0/2] KVM/arm64: Early PSTATE evaluation fixes
 2021-11-24 13:11 UTC  (5+ messages)
` [PATCH 1/2] KVM: arm64: Save PSTATE early on exit
` [PATCH 2/2] KVM: arm64: Move pkvm's special 32bit handling into a generic infrastructure

[PATCH 00/12] KVM: X86: misc fixes and cleanup
 2021-11-24 12:20 UTC  (13+ messages)
` [PATCH 01/12] KVM: X86: Fix when shadow_root_level=5 && guest root_level<4
` [PATCH 02/12] KVM: X86: Add parameter struct kvm_mmu *mmu into mmu->gva_to_gpa()
` [PATCH 03/12] KVM: X86: Remove mmu->translate_gpa
` [PATCH 04/12] KVM: X86: Use vcpu->arch.walk_mmu for kvm_mmu_invlpg()
` [PATCH 05/12] KVM: X86: Change the type of a parameter of kvm_mmu_invalidate_gva() and mmu->invlpg() to gpa_t
` [PATCH 06/12] KVM: X86: Add huge_page_level to __reset_rsvds_bits_mask_ept()
` [PATCH 07/12] KVM: X86: Add parameter huge_page_level to kvm_init_shadow_ept_mmu()
` [PATCH 08/12] KVM: VMX: Use ept_caps_to_lpage_level() in hardware_setup()
` [PATCH 09/12] KVM: X86: Rename gpte_is_8_bytes to has_4_byte_gpte and invert the direction
` [PATCH 10/12] KVM: X86: Remove mmu parameter from load_pdptrs()
` [PATCH 11/12] KVM: X86: Check root_level only in fast_pgd_switch()
` [PATCH 12/12] KVM: X86: Walk shadow page starting with shadow_root_level

[PATCH v2] x86/sev-es: Fix SEV-ES INS/OUTS instructions for word, dword, and qword
 2021-11-24 13:28 UTC  (2+ messages)

[RE]: [PATCH v3 10/10] vfio/ccw: Move the lifecycle of the struct vfio_ccw_private to the mdev
 2021-11-24 12:25 UTC 

[syzbot] kernel BUG in kvm_read_guest_offset_cached
 2021-11-24 11:25 UTC  (3+ messages)

[PATCH] KVM: selftests: use ARRAY_SIZE
 2021-11-24  9:46 UTC  (2+ messages)

[RFC PATCH v2 00/44] TDX support
 2021-11-24  7:31 UTC  (4+ messages)
` [RFC PATCH v2 06/44] hw/i386: Introduce kvm-type for TDX guest

[PATCH] KVM: LAPIC: To keep the vCPUs in non-root mode for timer-pi
 2021-11-24  5:59 UTC 

[PROBLEM] Frequently get "irq 31: nobody cared" when passing through 2x GPUs that share same pci switch via vfio
 2021-11-24  5:52 UTC  (11+ messages)

[PATCH v2] KVM: LAPIC: Per vCPU control over kvm_can_post_timer_interrupt
 2021-11-24  4:54 UTC 

[PATCH] vfio/pci: Fix OpRegion read
 2021-11-24  0:56 UTC  (2+ messages)

[PATCH] KVM: x86/mmu: Handle "default" period when selectively waking kthread
 2021-11-23 22:04 UTC  (2+ messages)

[PATCH v7 00/45] Add AMD Secure Nested Paging (SEV-SNP) Guest Support
 2021-11-23 21:55 UTC  (5+ messages)
` [PATCH v7 01/45] x86/compressed/64: detect/setup SEV/SME features earlier in boot

[PATCH v3 0/6] KVM: arm64: Emulate the OS lock
 2021-11-23 21:01 UTC  (7+ messages)
` [PATCH v3 1/6] KVM: arm64: Correctly treat writes to OSLSR_EL1 as undefined
` [PATCH v3 2/6] KVM: arm64: Stash OSLSR_EL1 in the cpu context
` [PATCH v3 3/6] KVM: arm64: Allow guest to set the OSLK bit
` [PATCH v3 4/6] KVM: arm64: Emulate the OS Lock
` [PATCH v3 5/6] selftests: KVM: Add OSLSR_EL1 to the list of blessed regs
` [PATCH v3 6/6] selftests: KVM: Test OS lock behavior

[RFC PATCH v2 00/11] KVM: arm64: Add support for hypercall services selection
 2021-11-23 18:48 UTC  (10+ messages)
` [RFC PATCH v2 02/11] KVM: Introduce kvm_vcpu_has_run_once
` [RFC PATCH v2 03/11] KVM: Introduce kvm_vm_has_run_once
` [RFC PATCH v2 04/11] KVM: arm64: Setup a framework for hypercall bitmap firmware registers

[RFC PATCH v3 0/2] s390x: Improvements to SIGP handling [KVM]
 2021-11-23 18:44 UTC  (13+ messages)
` [RFC PATCH v3 2/2] KVM: s390: Extend the USER_SIGP capability

[RFC v2 PATCH 00/13] KVM: mm: fd-based approach for supporting KVM guest private memory
 2021-11-23 17:17 UTC  (21+ messages)
` [RFC v2 PATCH 01/13] mm/shmem: Introduce F_SEAL_GUEST
` [RFC v2 PATCH 04/13] KVM: Add fd-based memslot data structure and utils
` [RFC v2 PATCH 09/13] KVM: Introduce kvm_memfd_invalidate_range
` [RFC v2 PATCH 13/13] KVM: Enable memfd based page invalidation/fallocate

[PATCH MANUALSEL 4.14 1/3] KVM: s390: Cap KVM_CAP_NR_VCPUS by num_online_cpus()
 2021-11-23 16:37 UTC  (2+ messages)
` [PATCH MANUALSEL 4.14 3/3] KVM: MIPS: Cap KVM_CAP_NR_VCPUS by KVM_CAP_MAX_VCPUS

[PATCH MANUALSEL 4.9 1/2] KVM: s390: Cap KVM_CAP_NR_VCPUS by num_online_cpus()
 2021-11-23 16:37 UTC 

[PATCH MANUALSEL 4.19 1/4] KVM: selftests: Fix kvm_vm_free() in cr4_cpuid_sync and vmx_tsc_adjust tests
 2021-11-23 16:37 UTC  (3+ messages)
` [PATCH MANUALSEL 4.19 2/4] KVM: s390: Cap KVM_CAP_NR_VCPUS by num_online_cpus()
` [PATCH MANUALSEL 4.19 4/4] KVM: MIPS: Cap KVM_CAP_NR_VCPUS by KVM_CAP_MAX_VCPUS

[PATCH MANUALSEL 5.4 1/4] KVM: selftests: Fix kvm_vm_free() in cr4_cpuid_sync and vmx_tsc_adjust tests
 2021-11-23 16:37 UTC  (3+ messages)
` [PATCH MANUALSEL 5.4 2/4] KVM: s390: Cap KVM_CAP_NR_VCPUS by num_online_cpus()
` [PATCH MANUALSEL 5.4 4/4] KVM: MIPS: Cap KVM_CAP_NR_VCPUS by KVM_CAP_MAX_VCPUS

[PATCH MANUALSEL 5.10 1/5] KVM: selftests: Fix kvm_vm_free() in cr4_cpuid_sync and vmx_tsc_adjust tests
 2021-11-23 16:36 UTC  (3+ messages)
` [PATCH MANUALSEL 5.10 2/5] KVM: s390: Cap KVM_CAP_NR_VCPUS by num_online_cpus()
` [PATCH MANUALSEL 5.10 4/5] KVM: MIPS: Cap KVM_CAP_NR_VCPUS by KVM_CAP_MAX_VCPUS

[PATCH 00/17] KVM: selftests: aarch64: Test userspace IRQ injection
 2021-11-23 15:06 UTC  (4+ messages)
` [PATCH 02/17] KVM: selftests: aarch64: add function for accessing GICv3 dist and redist registers

[PATCH v5.5 00/30] KVM: Scalable memslots implementation
 2021-11-23 14:42 UTC  (5+ messages)

[PATCH] KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE
 2021-11-23 13:52 UTC  (4+ messages)

[PATCH 0/2] vhost/vsock: fix used length and cleanup in vhost_vsock_handle_tx_kick()
 2021-11-23 13:22 UTC  (4+ messages)
` [PATCH 1/2] vhost/vsock: fix incorrect used length reported to the guest

[PATCH RFC 00/39] x86/KVM: Xen HVM guest support
 2021-11-23 13:15 UTC  (7+ messages)
` [PATCH RFC 11/39] KVM: x86/xen: evtchn signaling via eventfd

[kvm-unit-tests PATCH 0/8] s390x: sie: Add PV snippet support
 2021-11-23 12:49 UTC  (18+ messages)
` [kvm-unit-tests PATCH 1/8] lib: s390x: sie: Add sca allocation and freeing
` [kvm-unit-tests PATCH 2/8] s390x: sie: Add PV fields to SIE control block
` [kvm-unit-tests PATCH 3/8] s390x: sie: Add UV information into VM struct
` [kvm-unit-tests PATCH 4/8] s390x: uv: Add more UV call functions
` [kvm-unit-tests PATCH 5/8] s390x: lib: Extend UV library with PV guest management
` [kvm-unit-tests PATCH 6/8] lib: s390: sie: Add PV guest register handling
` [kvm-unit-tests PATCH 7/8] s390x: snippets: Add PV support
` [kvm-unit-tests PATCH 8/8] s390x: sie: Add PV diag test

[PATCH] vsock/virtio: suppress used length validation
 2021-11-23 12:49 UTC  (2+ messages)

[PATCH v2 0/3] KVM: s390: Some gaccess cleanup
 2021-11-23 12:39 UTC  (4+ messages)
` [PATCH v2 1/3] KVM: s390: gaccess: Refactor gpa and length calculation

[PATCH v2 0/5] KVM: arm64: Rework FPSIMD/SVE tracking
 2021-11-23 12:33 UTC  (9+ messages)
` [PATCH v2 2/5] KVM: arm64: Get rid of host SVE tracking/saving

RFC: KVM: x86/mmu: Eager Page Splitting
 2021-11-23 12:15 UTC  (4+ messages)

kernel-selftests/kvm: kvm.tsc_msrs_test.fail
 2021-11-23 10:42 UTC 

[PATCH 00/15] KVM: X86: Fix and clean up for register caches
 2021-11-23  9:34 UTC  (3+ messages)
` [PATCH 17/15] KVM: X86: Ensure pae_root to be reconstructed for shadow paging if the guest PDPTEs is changed

[PATCH] KVM: VMX: do not use uninitialized gfn_to_hva_cache
 2021-11-23  9:26 UTC  (2+ messages)

[PATCH v5 00/12] KVM: x86/xen: Add in-kernel Xen event channel delivery
 2021-11-23  9:12 UTC  (3+ messages)
` [PATCH v5 05/12] KVM: RISC-V: Use Makefile.kvm for common files

[PATCH] KVM: LAPIC: Per vCPU control over kvm_can_post_timer_interrupt
 2021-11-23  8:18 UTC  (3+ messages)

[PATCH v5 0/5] Add SBI v0.2 support for KVM
 2021-11-23  8:06 UTC  (11+ messages)
` [PATCH v5 1/5] RISC-V: KVM: Mark the existing SBI implementation as v01
` [PATCH v5 2/5] RISC-V: KVM: Reorganize SBI code by moving SBI v0.1 to its own file
` [PATCH v5 3/5] RISC-V: KVM: Add SBI v0.2 base extension
` [PATCH v5 4/5] RISC-V: KVM: Add v0.1 replacement SBI extensions defined in v02
` [PATCH v5 5/5] RISC-V: KVM: Add SBI HSM extension in KVM

[RFC 0/3] vfio/pci: Enable runtime power management support
 2021-11-23  7:27 UTC  (7+ messages)
` [RFC 3/3] vfio/pci: use runtime PM for vfio-device into low power state


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).