public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2024-11-04 13:25:16 to 2024-11-05 11:54:08 UTC [more...]

[PATCH v6 00/60] QEMU TDX support
 2024-11-05 11:53 UTC  (85+ messages)
` [PATCH v6 01/60] *** HACK *** linux-headers: Update headers to pull in TDX API changes
` [PATCH v6 02/60] i386: Introduce tdx-guest object
` [PATCH v6 03/60] i386/tdx: Implement tdx_kvm_type() for TDX
` [PATCH v6 04/60] i386/tdx: Implement tdx_kvm_init() to initialize TDX VM context
` [PATCH v6 05/60] i386/tdx: Get tdx_capabilities via KVM_TDX_CAPABILITIES
` [PATCH v6 06/60] i386/tdx: Introduce is_tdx_vm() helper and cache tdx_guest object
` [PATCH v6 07/60] kvm: Introduce kvm_arch_pre_create_vcpu()
` [PATCH v6 08/60] i386/kvm: Export cpuid_entry_get_reg() and cpuid_find_entry()
` [PATCH v6 09/60] i386/tdx: Initialize TDX before creating TD vcpus
` [PATCH v6 10/60] i386/tdx: Add property sept-ve-disable for tdx-guest object
` [PATCH v6 11/60] i386/tdx: Make sept_ve_disable set by default
` [PATCH v6 12/60] i386/tdx: Wire CPU features up with attributes of TD guest
` [PATCH v6 13/60] i386/tdx: Validate TD attributes
` [PATCH v6 14/60] i386/tdx: Support user configurable mrconfigid/mrowner/mrownerconfig
` [PATCH v6 15/60] i386/tdx: Set APIC bus rate to match with what TDX module enforces
` [PATCH v6 16/60] i386/tdx: Implement user specified tsc frequency
` [PATCH v6 17/60] i386/tdx: load TDVF for TD guest
` [PATCH v6 18/60] i386/tdvf: Introduce function to parse TDVF metadata
` [PATCH v6 19/60] i386/tdx: Parse TDVF metadata for TDX VM
` [PATCH v6 20/60] i386/tdx: Don't initialize pc.rom for TDX VMs
` [PATCH v6 21/60] i386/tdx: Track mem_ptr for each firmware entry of TDVF
` [PATCH v6 22/60] i386/tdx: Track RAM entries for TDX VM
` [PATCH v6 23/60] headers: Add definitions from UEFI spec for volumes, resources, etc
` [PATCH v6 24/60] i386/tdx: Setup the TD HOB list
` [PATCH v6 25/60] i386/tdx: Add TDVF memory via KVM_TDX_INIT_MEM_REGION
` [PATCH v6 26/60] i386/tdx: Call KVM_TDX_INIT_VCPU to initialize TDX vcpu
` [PATCH v6 27/60] i386/tdx: Finalize TDX VM
` [PATCH v6 28/60] i386/tdx: Enable user exit on KVM_HC_MAP_GPA_RANGE
` [PATCH v6 29/60] i386/tdx: Handle KVM_SYSTEM_EVENT_TDX_FATAL
` [PATCH v6 30/60] i386/tdx: Wire TDX_REPORT_FATAL_ERROR with GuestPanic facility
` [PATCH v6 31/60] i386/cpu: introduce x86_confidential_guest_cpu_instance_init()
` [PATCH v6 32/60] i386/tdx: implement tdx_cpu_instance_init()
` [PATCH v6 33/60] i386/cpu: introduce x86_confidenetial_guest_cpu_realizefn()
` [PATCH v6 34/60] i386/tdx: implement tdx_cpu_realizefn()
` [PATCH v6 35/60] i386/cpu: Introduce enable_cpuid_0x1f to force exposing CPUID 0x1f
` [PATCH v6 36/60] i386/tdx: Force "
` [PATCH v6 37/60] i386/tdx: Set kvm_readonly_mem_enabled to false for TDX VM
` [PATCH v6 38/60] i386/tdx: Disable SMM for TDX VMs
` [PATCH v6 39/60] i386/tdx: Disable PIC "
` [PATCH v6 40/60] hw/i386: add eoi_intercept_unsupported member to X86MachineState
` [PATCH v6 41/60] hw/i386: add option to forcibly report edge trigger in acpi tables
` [PATCH v6 42/60] i386/tdx: Don't synchronize guest tsc for TDs
` [PATCH v6 43/60] i386/tdx: Only configure MSR_IA32_UCODE_REV in kvm_init_msrs() "
` [PATCH v6 44/60] i386/tdx: Skip kvm_put_apicbase() "
` [PATCH v6 45/60] i386/tdx: Don't get/put guest state for TDX VMs
` [PATCH v6 46/60] i386/cgs: Rename *mask_cpuid_features() to *adjust_cpuid_features()
` [PATCH v6 47/60] i386/tdx: Implement adjust_cpuid_features() for TDX
` [PATCH v6 48/60] i386/tdx: Apply TDX fixed0 and fixed1 information to supported CPUIDs
` [PATCH v6 49/60] i386/tdx: Mask off CPUID bits by unsupported TD Attributes
` [PATCH v6 50/60] i386/cpu: Move CPUID_XSTATE_XSS_MASK to header file and introduce CPUID_XSTATE_MASK
` [PATCH v6 51/60] i386/tdx: Mask off CPUID bits by unsupported XFAM
` [PATCH v6 52/60] i386/cpu: Expose mark_unavailable_features() for TDX
` [PATCH v6 53/60] i386/cpu: introduce mark_forced_on_features()
` [PATCH v6 54/60] i386/cgs: Introduce x86_confidential_guest_check_features()
` [PATCH v6 55/60] i386/tdx: Fetch and validate CPUID of TD guest
` [PATCH v6 56/60] i386/tdx: Don't treat SYSCALL as unavailable
` [PATCH v6 57/60] i386/tdx: Make invtsc default on
` [PATCH v6 58/60] cpu: Introduce qemu_early_init_vcpu()
` [PATCH v6 59/60] i386/cpu: Set up CPUID_HT in x86_cpu_realizefn() instead of cpu_x86_cpuid()
` [PATCH v6 60/60] docs: Add TDX documentation

[PATCH 0/2] Add support for the ERAPS feature
 2024-11-05 10:39 UTC  (11+ messages)
` [PATCH 1/2] x86: cpu/bugs: add support for AMD "

[PATCH v3 0/2] KVM: x86: Check hypercall's exit to userspace generically
 2024-11-05  9:20 UTC  (12+ messages)
` [PATCH v3 1/2] "

[PATCH kvmtool] riscv: Pass correct size to snprintf()
 2024-11-05  9:14 UTC  (2+ messages)

[PATCH v12 0/4] debugfs to hisilicon migration driver
 2024-11-05  8:55 UTC  (6+ messages)
` [PATCH v12 1/4] hisi_acc_vfio_pci: extract public functions for container_of
` [PATCH v12 2/4] hisi_acc_vfio_pci: create subfunction for data reading
` [PATCH v12 3/4] hisi_acc_vfio_pci: register debugfs for hisilicon migration driver
` [PATCH v12 4/4] Documentation: add debugfs description for hisi migration

[PATCH v5 00/12] iommufd support pasid attach/replace
 2024-11-05  8:14 UTC  (24+ messages)
` [PATCH v5 01/12] iommu: Introduce a replace API for device pasid
` [PATCH v5 02/12] iommufd: Refactor __fault_domain_replace_dev() to be a wrapper of iommu_replace_group_handle()
` [PATCH v5 03/12] iommufd: Move the iommufd_handle helpers to device.c
` [PATCH v5 04/12] iommufd: Always pass iommu_attach_handle to iommu core
` [PATCH v5 05/12] iommufd: Pass pasid through the device attach/replace path
` [PATCH v5 06/12] iommufd: Support pasid attach/replace
` [PATCH v5 07/12] iommufd: Allocate auto_domain with IOMMU_HWPT_ALLOC_PASID flag if device is PASID-capable
` [PATCH v5 08/12] iommufd: Enforce pasid compatible domain for PASID-capable device
` [PATCH v5 09/12] iommufd/selftest: Add set_dev_pasid in mock iommu
` [PATCH v5 10/12] iommufd/selftest: Add a helper to get test device
` [PATCH v5 11/12] iommufd/selftest: Add test ops to test pasid attach/detach
` [PATCH v5 12/12] iommufd/selftest: Add coverage for iommufd "

[PATCH v4 0/4] vfio-pci support pasid attach/detach
 2024-11-05  7:44 UTC  (10+ messages)
` [PATCH v4 1/4] ida: Add ida_find_first_range()
` [PATCH v4 2/4] vfio-iommufd: Support pasid [at|de]tach for physical VFIO devices
` [PATCH v4 3/4] vfio: VFIO_DEVICE_[AT|DE]TACH_IOMMUFD_PT support pasid
` [PATCH v4 4/4] iommufd: Extend IOMMU_GET_HW_INFO to report PASID capability

[PATCH] riscv: kvm: Fix out-of-bounds array access
 2024-11-05  6:28 UTC  (2+ messages)

[PATCH v3 0/1] Remove KVM MMU shrinker
 2024-11-05  5:56 UTC  (5+ messages)
` [PATCH v3 1/1] KVM: x86/mmu: Remove KVM mmu shrinker

[PATCH 0/2] KVM: x86/mmu: Micro-optimize TDP MMU cond_resched()
 2024-11-05  5:56 UTC  (2+ messages)

[PATCH v2 0/6] KVM: x86/mmu: Optimize TDP MMU huge page recovery during disable-dirty-log
 2024-11-05  5:56 UTC  (9+ messages)
` [PATCH v2 4/6] KVM: x86/mmu: Recover TDP MMU huge page mappings in-place instead of zapping

[PATCH v2 0/9] KVM: x86: Clean up MSR_IA32_APICBASE_BASE code
 2024-11-05  5:56 UTC  (5+ messages)
` [PATCH v2 9/9] KVM: x86: Short-circuit all of kvm_apic_set_base() if MSR value is unchanged

[PATCH] KVM: selftests: Don't force -march=x86-64-v2 if it's unsupported
 2024-11-05  5:56 UTC  (2+ messages)

[PATCH] KVM: nVMX: Treat vpid01 as current if L2 is active, but with VPID disabled
 2024-11-05  5:56 UTC  (2+ messages)

[PATCH] KVM: selftests: memslot_perf_test: increase guest sync timeout
 2024-11-05  5:55 UTC  (3+ messages)

[PATCH v2] x86: KVM: Advertise CPUIDs for new instructions in Clearwater Forest
 2024-11-05  5:48 UTC 

[PATCH v3 00/14] KVM: selftests: Morph max_guest_mem to mmu_stress
 2024-11-05  5:53 UTC  (3+ messages)

[PATCH] kvm: selftest: fix noop test in guest_memfd_test.c
 2024-11-05  5:53 UTC  (3+ messages)

[PATCH v4 00/13] Make set_dev_pasid op supporting domain replacement
 2024-11-05  5:47 UTC  (26+ messages)
` [PATCH v4 02/13] iommu/vt-d: Add a helper to flush cache for updating present pasid entry
` [PATCH v4 03/13] iommu/vt-d: Refactor the pasid setup helpers
` [PATCH v4 04/13] iommu/vt-d: Add pasid replace helpers
` [PATCH v4 05/13] iommu/vt-d: Prepare intel_iommu_set_dev_pasid() handle replacement
` [PATCH v4 06/13] iommu/vt-d: Make intel_iommu_set_dev_pasid() to handle domain replacement
` [PATCH v4 07/13] iommu/vt-d: Limit intel_iommu_set_dev_pasid() for paging domain
` [PATCH v4 08/13] iommu/vt-d: Make identity_domain_set_dev_pasid() to handle domain replacement
` [PATCH v4 09/13] iommu/vt-d: Consolidate the dev_pasid code in intel_svm_set_dev_pasid()
` [PATCH v4 10/13] iommu/vt-d: Fail SVA domain replacement
` [PATCH v4 11/13] iommu/vt-d: Add set_dev_pasid callback for nested domain

[PATCH v3 0/7] Support attaching PASID to the blocked_domain
 2024-11-05  5:45 UTC  (5+ messages)
` [PATCH v3 5/7] iommu/vt-d: Make the blocked domain support PASID

[PATCH v2 1/1] RISC-V: KVM: Fix APLIC in_clrip and clripnum write emulation
 2024-11-05  5:11 UTC  (2+ messages)

[PATCH 0/3] KVM: x86: Small changes to support VMware guests
 2024-11-05  4:59 UTC  (4+ messages)
` [PATCH 2/3] KVM: x86: Add support for VMware guest specific hypercalls

[PATCH] KVM: x86: Update irr_pending when setting APIC state with APICv disabled
 2024-11-05  4:54 UTC  (2+ messages)

[PATCH v3 0/9] SEV Kernel Selftests
 2024-11-05  4:14 UTC  (14+ messages)
` [PATCH v3 2/9] KVM: selftests: Add a basic SNP smoke test

[PATCH 0/2] KVM: nVMX: Fix an SVI update bug with passthrough APIC
 2024-11-05  4:02 UTC  (8+ messages)
` [PATCH 1/2] KVM: x86: Plumb in the vCPU to kvm_x86_ops.hwapic_isr_update()
` [PATCH 2/2] KVM: nVMX: Defer SVI update to vmcs01 on EOI when L2 is active w/o VID

[PATCH v3 0/4] Add support for the Bus Lock Threshold
 2024-11-05  2:22 UTC  (5+ messages)
` [PATCH v3 2/4] KVM: SVM: Enable Bus lock threshold exit

[Bug 219112] New: Machine will not wake from suspend if KVM VM is running
 2024-11-05  1:37 UTC  (2+ messages)
` [Bug 219112] "

[PATCH v4 1/6] kvm: svm: Fix gctx page leak on invalid inputs
 2024-11-05  1:05 UTC  (2+ messages)
` [PATCH v4 6/6] KVM: SVM: Delay legacy platform initialization on SNP

[PATCH 0/4] Advertise CPUID for new instructions in Clearwater Forest
 2024-11-05  0:58 UTC  (8+ messages)
` [PATCH 2/4] x86: KVM: Advertise SM3 CPUID to userspace

[PATCH] x86/bugs: Adjust SRSO mitigation to new features
 2024-11-05  0:57 UTC  (2+ messages)

[Bug 218259] New: High latency in KVM guests
 2024-11-05  0:27 UTC  (2+ messages)
` [Bug 218259] "

[PATCH 0/2] KVM: VMX: Mark Intel PT virtualization as BROKEN
 2024-11-04 23:52 UTC  (6+ messages)
` [PATCH 1/2] KVM: VMX: Bury Intel PT virtualization (guest/host mode) behind CONFIG_BROKEN

[RFC PATCH v3 0/6] Direct Map Removal for guest_memfd
 2024-11-04 21:30 UTC  (6+ messages)

Proposal: bi-weekly guest_memfd upstream call
 2024-11-04 20:36 UTC  (2+ messages)

[PATCH v4 00/12] Initial support for SMMUv3 nested translation
 2024-11-04 17:19 UTC  (4+ messages)
` [PATCH v4 09/12] iommu/arm-smmu-v3: Support IOMMU_DOMAIN_NESTED

[PATCH v6 0/6] Add PSCI v1.3 SYSTEM_OFF2 support for hibernation
 2024-11-04 15:11 UTC  (6+ messages)
` [PATCH v6 6/6] arm64: Use SYSTEM_OFF2 PSCI call to power off for hibernate

[PATCH 1/2] x86: cpu/bugs: add support for AMD ERAPS feature
 2024-11-04 15:00 UTC  (3+ messages)

[PATCH 00/10] Introduce guestmemfs: persistent in-memory filesystem
 2024-11-04 14:39 UTC  (9+ messages)
` [PATCH 05/10] guestmemfs: add file mmap callback

[RFC RESEND 0/6] hugetlbfs largepage RAS project
 2024-11-04 14:10 UTC  (13+ messages)
` [PATCH v1 0/4] hugetlbfs memory HW error fixes
  ` [PATCH v1 2/4] accel/kvm: Keep track of the HWPoisonPage page_size
  ` [PATCH v1 3/4] system/physmem: Largepage punch hole before reset of memory pages


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