public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-02-26 09:07:59 to 2025-02-27 01:19:25 UTC [more...]

[PATCH v2 00/20] KVM: TDX: TDX "the rest" part
 2025-02-27  1:20 UTC  (12+ messages)
` [PATCH v2 01/20] KVM: TDX: Handle EPT violation/misconfig exit
` [PATCH v2 02/20] KVM: TDX: Detect unexpected SEPT violations due to pending SPTEs
` [PATCH v2 03/20] KVM: TDX: Retry locally in TDX EPT violation handler on RET_PF_RETRY
` [PATCH v2 04/20] KVM: TDX: Kick off vCPUs when SEAMCALL is busy during TD page removal
` [PATCH v2 05/20] KVM: TDX: Handle TDX PV CPUID hypercall
` [PATCH v2 06/20] KVM: TDX: Handle TDX PV HLT hypercall
` [PATCH v2 07/20] KVM: x86: Move KVM_MAX_MCE_BANKS to header file
` [PATCH v2 08/20] KVM: TDX: Implement callbacks for MSR operations
` [PATCH v2 09/20] KVM: TDX: Handle TDX PV rdmsr/wrmsr hypercall
` [PATCH v2 10/20] KVM: TDX: Enable guest access to LMCE related MSRs
` [PATCH v2 11/20] KVM: TDX: Handle TDG.VP.VMCALL<GetTdVmCallInfo> hypercall

[PATCH 0/2] KVM: x86: Advertise support for WRMSRNS
 2025-02-27  1:14 UTC  (4+ messages)
` [PATCH 1/2] x86/msr: Rename the WRMSRNS opcode macro to ASM_WRMSRNS (for KVM)
` [PATCH 2/2] KVM: x86: Advertise support for WRMSRNS

[PATCH v2 0/5] KVM: SVM: Fix DEBUGCTL bugs
 2025-02-27  1:13 UTC  (6+ messages)
` [PATCH v2 1/5] KVM: SVM: Drop DEBUGCTL[5:2] from guest's effective value
` [PATCH v2 2/5] KVM: x86: Snapshot the host's DEBUGCTL in common x86
` [PATCH v2 3/5] KVM: SVM: Manually context switch DEBUGCTL if LBR virtualization is disabled
` [PATCH v2 4/5] KVM: x86: Snapshot the host's DEBUGCTL after disabling IRQs
` [PATCH v2 5/5] KVM: SVM: Treat DEBUGCTL[5:2] as reserved

[PATCH v4 00/21] Add Counter delegation ISA extension support
 2025-02-27  1:05 UTC  (10+ messages)
` [PATCH v4 08/21] RISC-V: Add Sscfg extension CSR definition
` [PATCH v4 09/21] RISC-V: Add Ssccfg ISA extension definition and parsing
` [PATCH v4 12/21] RISC-V: perf: Modify the counter discovery mechanism

[PATCH 0/6] IBPB cleanups and a fixup
 2025-02-27  0:54 UTC  (8+ messages)
` [PATCH 4/6] x86/bugs: Use a static branch to guard IBPB on vCPU load

[PATCH] KVM: VMX: Extract checks on entry/exit control pairs to a helper macro
 2025-02-27  0:53 UTC 

[PATCH v9 00/11] KVM: x86/mmu: Age sptes locklessly
 2025-02-27  0:51 UTC  (7+ messages)

[RFC PATCH v2 00/22] TSM: Secure VFIO, TDISP, SEV TIO
 2025-02-27  0:33 UTC  (8+ messages)
` [RFC PATCH v2 14/22] iommufd: Add TIO calls

[PATCH v7 00/11] arm64: Support for running as a guest in Arm CCA
 2025-02-27  0:23 UTC  (5+ messages)
` [PATCH v7 09/11] arm64: Enable memory encrypt for Realms

[PATCH v2 0/2] KVM: VMX: Clean up EPT_VIOLATIONS_xxx #defines
 2025-02-27  0:07 UTC  (3+ messages)
` [PATCH v2 1/2] KVM: VMX: Remove EPT_VIOLATIONS_ACC_*_BIT defines
` [PATCH v2 2/2] KVM: nVMX: Decouple EPT RWX bits from EPT Violation protection bits

[PATCH v7 0/3] KVM: SVM: Flush cache only on CPUs running SEV guest
 2025-02-26 23:58 UTC  (5+ messages)
` [PATCH v7 3/3] "

[PATCH] KVM: selftests: Relax assertion on HLT exits if CPU supports Idle HLT
 2025-02-26 23:18 UTC 

[PATCH] KVM: x86: ioapic: Optimize EOI handling to reduce unnecessary VM exits
 2025-02-26 22:44 UTC  (3+ messages)
` [PATCH Resend] "

[RFC PATCH v5 04/15] KVM: guest_memfd: Track mappability within a struct kvm_gmem_private
 2025-02-26 22:29 UTC  (2+ messages)

[PATCH v4 00/33] TDX initialization + vCPU/VM creation
 2025-02-26 22:03 UTC  (35+ messages)
` [PATCH 01/33] KVM: x86: Free vCPUs before freeing VM state
` [PATCH 02/33] KVM: x86: move vm_destroy callback at end of kvm_arch_destroy_vm
` [PATCH 03/33] KVM: x86: Don't load/put vCPU when unloading its MMU during teardown
` [PATCH 04/33] x86/virt/tdx: Add SEAMCALL wrappers for TDX KeyID management
` [PATCH 05/33] x86/virt/tdx: Add SEAMCALL wrappers for TDX TD creation
` [PATCH 06/33] x86/virt/tdx: Add SEAMCALL wrappers for TDX vCPU creation
` [PATCH 07/33] x86/virt/tdx: Add SEAMCALL wrappers for TDX page cache management
` [PATCH 08/33] x86/virt/tdx: Add SEAMCALL wrappers for TDX VM/vCPU field access
` [PATCH 09/33] x86/virt/tdx: Add SEAMCALL wrappers for TDX flush operations
` [PATCH 10/33] x86/virt/tdx: allocate tdx_sys_info in static memory
` [PATCH 11/33] x86/virt/tdx: Read essential global metadata for KVM
` [PATCH 12/33] x86/virt/tdx: Add tdx_guest_keyid_alloc/free() to alloc and free TDX guest KeyID
` [PATCH 13/33] KVM: Export hardware virtualization enabling/disabling functions
` [PATCH 14/33] KVM: VMX: Refactor VMX module init/exit functions
` [PATCH 15/33] KVM: VMX: Initialize TDX during KVM module load
` [PATCH 16/33] KVM: TDX: Get TDX global information
` [PATCH 17/33] KVM: TDX: Add placeholders for TDX VM/vCPU structures
` [PATCH 18/33] KVM: TDX: Define TDX architectural definitions
` [PATCH 19/33] KVM: TDX: Add TDX "architectural" error codes
` [PATCH 20/33] KVM: TDX: Add helper functions to print TDX SEAMCALL error
` [PATCH 21/33] KVM: TDX: Add place holder for TDX VM specific mem_enc_op ioctl
` [PATCH 22/33] KVM: TDX: Get system-wide info about TDX module on initialization
` [PATCH 23/33] KVM: TDX: create/destroy VM structure
` [PATCH 24/33] KVM: TDX: Support per-VM KVM_CAP_MAX_VCPUS extension check
` [PATCH 25/33] KVM: x86: expose cpuid_entry2_find for TDX
` [PATCH 26/33] KVM: TDX: add ioctl to initialize VM with TDX specific parameters
` [PATCH 27/33] KVM: TDX: Make pmu_intel.c ignore guest TD case
` [PATCH 28/33] KVM: TDX: Don't offline the last cpu of one package when there's TDX guest
` [PATCH 29/33] KVM: TDX: create/free TDX vcpu structure
` [PATCH 30/33] KVM: TDX: Do TDX specific vcpu initialization
` [PATCH 31/33] KVM: x86: Introduce KVM_TDX_GET_CPUID
` [PATCH 32/33] KVM: x86/mmu: Taking guest pa into consideration when calculate tdp level
` [PATCH 33/33] KVM: TDX: Register TDX host key IDs to cgroup misc controller

[PATCHv2 0/2] kvm/x86: vhost task creation failure handling
 2025-02-26 21:38 UTC  (3+ messages)
` [PATCHv2 1/2] vhost: return task creation error instead of NULL
` [PATCHv2 2/2] kvm: retry nx_huge_page_recovery_thread creation

[RFC PATCH 0/3] kvm,sched: Add gtime halted
 2025-02-26 21:00 UTC  (4+ messages)

[PATCH v5 0/6] target/i386: Update EPYC CPU models for Cache property, RAS, SVM feature and add EPYC-Turin CPU model
 2025-02-26 20:28 UTC  (5+ messages)
` [PATCH v5 1/6] target/i386: Update EPYC CPU model for Cache property, RAS, SVM feature bits

[PATCH 0/4] RISC-V KVM PMU fix and selftest improvement
 2025-02-26 20:25 UTC  (5+ messages)
` [PATCH 1/4] RISC-V: KVM: Disable the kernel perf counter during configure
` [PATCH 2/4] KVM: riscv: selftests: Do not start the counter in the overflow handler
` [PATCH 3/4] KVM: riscv: selftests: Change command line option
` [PATCH 4/4] KVM: riscv: selftests: Allow number of interrupts to be configurable

[RFC 2/2] kvm: retry nx_huge_page_recovery_thread creation
 2025-02-26 20:22 UTC  (3+ messages)

[PATCH v1 0/4] iommu: Isolate iova_cookie to actual owners
 2025-02-26 20:16 UTC  (5+ messages)
` [PATCH v1 1/4] iommu: Define iommu_get/put_msi_cookie() under CONFIG_IRQ_MSI_IOMMU
` [PATCH v1 2/4] iommu: Add iommu_default_domain_free helper
` [PATCH v1 3/4] iommu: Request iova_cookie owner to put cookie explicitly
` [PATCH v1 4/4] iommu: Turn iova_cookie to dma-iommu private pointer

[PATCH v2 0/6] vfio: Improve DMA mapping performance for huge pfnmaps
 2025-02-26 20:05 UTC  (12+ messages)
` [PATCH v2 5/6] mm: Provide address mask in struct follow_pfnmap_args
` [PATCH v2 6/6] vfio/type1: Use mapping page mask for pfnmaps

[PATCH v3 00/29] TDX MMU part 2
 2025-02-26 19:55 UTC  (30+ messages)
` [PATCH 01/29] x86/virt/tdx: Add SEAMCALL wrapper tdh_mem_sept_add() to add SEPT pages
` [PATCH 02/29] x86/virt/tdx: Add SEAMCALL wrappers to add TD private pages
` [PATCH 03/29] x86/virt/tdx: Add SEAMCALL wrappers to manage TDX TLB tracking
` [PATCH 04/29] x86/virt/tdx: Add SEAMCALL wrappers to remove a TD private page
` [PATCH 05/29] x86/virt/tdx: Add SEAMCALL wrappers for TD measurement of initial contents
` [PATCH 06/29] KVM: x86/mmu: Implement memslot deletion for TDX
` [PATCH 07/29] KVM: x86/tdp_mmu: Add a helper function to walk down the TDP MMU
` [PATCH 08/29] KVM: x86/mmu: Do not enable page track for TD guest
` [PATCH 09/29] KVM: VMX: Split out guts of EPT violation to common/exposed function
` [PATCH 10/29] KVM: VMX: Teach EPT violation helper about private mem
` [PATCH 11/29] KVM: TDX: Add accessors VMX VMCS helpers
` [PATCH 12/29] KVM: TDX: Add load_mmu_pgd method for TDX
` [PATCH 13/29] KVM: TDX: Set gfn_direct_bits to shared bit
` [PATCH 14/29] KVM: TDX: Require TDP MMU, mmio caching and EPT A/D bits for TDX
` [PATCH 15/29] KVM: x86/mmu: Add setter for shadow_mmio_value
` [PATCH 16/29] KVM: TDX: Set per-VM shadow_mmio_value to 0
` [PATCH 17/29] KVM: TDX: Handle TLB tracking for TDX
` [PATCH 18/29] KVM: TDX: Implement hooks to propagate changes of TDP MMU mirror page table
` [PATCH 19/29] KVM: TDX: Implement hook to get max mapping level of private pages
` [PATCH 20/29] KVM: x86/mmu: Bail out kvm_tdp_map_page() when VM dead
` [PATCH 21/29] KVM: x86/mmu: Export kvm_tdp_map_page()
` [PATCH 22/29] KVM: TDX: Add an ioctl to create initial guest memory
` [PATCH 23/29] KVM: TDX: Finalize VM initialization
` [PATCH 24/29] KVM: TDX: Handle vCPU dissociation
` [PATCH 25/29] KVM: Add parameter "kvm" to kvm_cpu_dirty_log_size() and its callers
` [PATCH 26/29] KVM: x86/mmu: Add parameter "kvm" to kvm_mmu_page_ad_need_write_protect()
` [PATCH 27/29] KVM: x86: Make cpu_dirty_log_size a per-VM value
` [PATCH 28/29] KVM: TDX: Skip updating CPU dirty logging request for TDs
` [PATCH 29/29] KVM: TDX: Handle SEPT zap error due to page add error in premap

[PATCH final?] x86/bugs: KVM: Add support for SRSO_MSR_FIX
 2025-02-26 19:51 UTC  (2+ messages)

[PATCH] KVM: selftests: Wait mprotect_ro_done before write to RO in mmu_stress_test
 2025-02-26 19:30 UTC  (4+ messages)

[GIT PULL] KVM changes for Linux 6.14
 2025-02-26 19:03 UTC  (12+ messages)

[RFC PATCH 14/39] KVM: guest_memfd: hugetlb: initialization and cleanup
 2025-02-26 18:55 UTC  (2+ messages)

[PATCH 0/7] KVM: x86: nVMX IRQ fix and VM teardown cleanups
 2025-02-26 18:38 UTC  (6+ messages)
` [PATCH 1/7] KVM: x86: Free vCPUs before freeing VM state

[PATCH 0/4] cover-letter: Allow MMIO regions to be exported through dmabuf
 2025-02-26 18:27 UTC  (8+ messages)

[RFC PATCH v3 0/2] Eventfd signal on guest AP configuration change
 2025-02-26 18:06 UTC  (3+ messages)
` [RFC PATCH v3 1/2] s390/vfio-ap: Signal eventfd when guest AP configuration is changed
` [RFC PATCH v3 2/2] s390/vfio-ap: Adding mdev remove notification

[RFC PATCH v2 0/2] Eventfd signal on guest AP configuration change
 2025-02-26 18:05 UTC  (4+ messages)
` [RFC PATCH v2 1/2] s390/vfio-ap: Signal eventfd when guest AP configuration is changed
` [RFC PATCH v2 2/2] s390/vfio-ap: Fixing mdev remove notification

[syzbot] [kvm?] WARNING in __kvm_gpc_refresh (3)
 2025-02-26 17:36 UTC  (2+ messages)

[PATCH v2 0/1] KVM: s390: fix a newly introduced bug
 2025-02-26 17:26 UTC  (6+ messages)
` [PATCH v2 1/1] KVM: s390: pv: fix race when making a page secure

[RFC PATCH 0/6] KVM: x86: async PF user
 2025-02-26 17:07 UTC  (9+ messages)

[PATCH v4 00/30] context_tracking,x86: Defer some IPIs until a user->kernel transition
 2025-02-26 16:52 UTC  (16+ messages)
` [PATCH v4 29/30] x86/mm, mm/vmalloc: Defer flush_tlb_kernel_range() targeting NOHZ_FULL CPUs

[PATCH v4 00/14] Change ghes to use HEST-based offsets and add support for error inject
 2025-02-26 16:00 UTC  (7+ messages)
` [PATCH v4 06/14] acpi/ghes: create an ancillary acpi_ghes_get_state() function

[PATCH 0/3] KVM: SVM: Zero DEBUGCTL before VMRUN if necessary
 2025-02-26 15:42 UTC  (4+ messages)
` [PATCH 2/3] KVM: SVM: Manually zero/restore DEBUGCTL if LBR virtualization is disabled

[PATCH v4 00/12] Direct Map Removal for guest_memfd
 2025-02-26 15:30 UTC  (7+ messages)
` [PATCH v4 03/12] KVM: guest_memfd: Add flag to remove from direct map

[PATCH net-next v5 0/9] Device memory TCP TX
 2025-02-26 15:20 UTC  (7+ messages)
` [PATCH net-next v5 3/9] net: devmem: Implement TX path

[PATCH v5 0/1] SEV-SNP: Add KVM support for SNP certificate fetching
 2025-02-26 15:09 UTC  (5+ messages)
` [PATCH v5 1/1] KVM: Introduce KVM_EXIT_SNP_REQ_CERTS for SNP certificate-fetching

[PATCH v5 0/2] KVM: SEV: Prefer WBNOINVD over WBINVD for cache maintenance efficiency
 2025-02-26 14:22 UTC  (5+ messages)
` [PATCH v6 "
  ` [PATCH v6 1/2] x86, lib: Add WBNOINVD helper functions

[RFC PATCH v2 0/2] Eventfd signal on guest AP configuration change
 2025-02-26 14:16 UTC  (3+ messages)
` [RFC PATCH v2 2/2] s390/vfio-ap: Fixing mdev remove notification

[PATCH v6 0/5] Add NUMA mempolicy support for KVM guest-memfd
 2025-02-26 13:59 UTC  (3+ messages)
` [PATCH v6 2/5] mm/mempolicy: export memory policy symbols

[PATCH v3 00/14] Change ghes to use HEST-based offsets and add support for error inject
 2025-02-26 12:29 UTC  (10+ messages)

[PATCH v7 0/3] vfio/pci: s390: Fix issues preventing VFIO_PCI_MMAP=y for s390 and enable it
 2025-02-26 12:07 UTC  (4+ messages)
` [PATCH v7 1/3] s390/pci: Fix s390_mmio_read/write syscall page fault handling
` [PATCH v7 2/3] PCI: s390: Introduce pdev->non_mappable_bars and replace VFIO_PCI_MMAP
` [PATCH v7 3/3] PCI: s390: Support mmap() of PCI resources except for ISM devices

[PATCH v4 0/5] bugfix some driver issues
 2025-02-26 11:53 UTC  (9+ messages)
` [PATCH v4 1/5] hisi_acc_vfio_pci: fix XQE dma address error
` [PATCH v4 5/5] hisi_acc_vfio_pci: bugfix live migration function without VF device driver

[PATCH vfio] vfio/virtio: Enable support for virtio-block live migration
 2025-02-26 11:51 UTC  (3+ messages)

[PATCH v3 0/9] KVM: TDX: TDX hypercalls may exit to userspace
 2025-02-26 10:15 UTC  (4+ messages)
` [PATCH v3 7/9] KVM: TDX: Handle TDG.VP.VMCALL<ReportFatalError>

[Bug 219009] New: Random host reboots on Ryzen 7000/8000 using nested VMs (vls suspected)
 2025-02-26  9:50 UTC  (2+ messages)
` [Bug 219009] "

[RFC v2 00/17] AMD: Add Secure AVIC Guest Support
 2025-02-26  9:05 UTC  (12+ messages)
` [RFC v2 07/17] x86/apic: Support LAPIC timer for Secure AVIC
` [RFC v2 08/17] x86/sev: Initialize VGIF for secondary VCPUs "
` [RFC v2 09/17] x86/apic: Add support to send NMI IPI "
` [RFC v2 10/17] x86/apic: Allow NMI to be injected from hypervisor "
` [RFC v2 11/17] x86/sev: Enable NMI support "
` [RFC v2 12/17] x86/apic: Read and write LVT* APIC registers from HV for SAVIC guests
` [RFC v2 13/17] x86/apic: Handle EOI writes "
` [RFC v2 14/17] x86/apic: Add kexec support for Secure AVIC
` [RFC v2 15/17] x86/apic: Enable Secure AVIC in Control MSR
` [RFC v2 16/17] x86/sev: Prevent SECURE_AVIC_CONTROL MSR interception for Secure AVIC guests
` [RFC v2 17/17] x86/sev: Indicate SEV-SNP guest supports Secure AVIC

[PATCH v7 00/52] QEMU TDX support
 2025-02-26  9:08 UTC  (4+ messages)
` [PATCH v7 19/52] i386/tdx: Track mem_ptr for each firmware entry of TDVF


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox