kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-05-29 05:44:33 to 2025-06-02 09:43:43 UTC [more...]

[RFC PATCH v2 00/51] 1G page support for guest_memfd
 2025-06-02  9:43 UTC  (26+ messages)
` [RFC PATCH v2 02/51] KVM: guest_memfd: Introduce and use shareability to guard faulting
` [RFC PATCH v2 03/51] KVM: selftests: Update guest_memfd_test for INIT_PRIVATE flag
` [RFC PATCH v2 04/51] KVM: guest_memfd: Introduce KVM_GMEM_CONVERT_SHARED/PRIVATE ioctls
` [RFC PATCH v2 05/51] KVM: guest_memfd: Skip LRU for guest_memfd folios
` [RFC PATCH v2 22/51] mm: hugetlb: Refactor hugetlb allocation functions
` [RFC PATCH v2 23/51] mm: hugetlb: Refactor out hugetlb_alloc_folio()

[PATCH v3 0/3] KVM: s390: Use ESCA instead of BSCA at VM init
 2025-06-02  9:24 UTC  (6+ messages)
` [PATCH v3 1/3] KVM: s390: Set KVM_MAX_VCPUS to 256
` [PATCH v3 2/3] KVM: s390: Always allocate esca_block

[PATCH v6 0/5] Enable shared device assignment
 2025-06-02  9:20 UTC  (13+ messages)
` [PATCH v6 1/5] memory: Export a helper to get intersection of a MemoryRegionSection with a given range
` [PATCH v6 2/5] memory: Change memory_region_set_ram_discard_manager() to return the result
` [PATCH v6 3/5] memory: Unify the definiton of ReplayRamPopulate() and ReplayRamDiscard()
` [PATCH v6 4/5] ram-block-attributes: Introduce RamBlockAttributes to manage RAMBlock with guest_memfd
` [PATCH v6 5/5] physmem: Support coordinated discarding of RAM "

[PATCH v4 00/27] hw/i386/pc: Remove deprecated 2.6 and 2.7 PC machines
 2025-06-02  8:53 UTC  (8+ messages)
` [PATCH v4 01/27] hw/i386/pc: Remove deprecated pc-q35-2.6 and pc-i440fx-2.6 machines

[GIT PULL] Second batch of KVM changes for Linux 6.16 merge window
 2025-06-02  7:11 UTC 

[RFC PATCH 00/30] Host side (KVM/VFIO/IOMMUFD) support for TDISP using TSM
 2025-06-02  5:20 UTC  (9+ messages)
` [RFC PATCH 19/30] vfio/pci: Add TSM TDI bind/unbind IOCTLs for TEE-IO support
` [RFC PATCH 20/30] vfio/pci: Do TSM Unbind before zapping bars
` [RFC PATCH 27/30] PCI/TSM: Add PCI driver callbacks to handle TSM requirements
` [RFC PATCH 28/30] vfio/pci: Implement TSM handlers for MMIO
` [RFC PATCH 29/30] iommufd/vdevice: Implement TSM handlers for trusted DMA
` [RFC PATCH 30/30] coco/tdx_tsm: Manage TDX Module enforced operation sequences for Unbind

[RFC PATCH 00/33] vfio: Introduce selftests for VFIO
 2025-06-01  7:45 UTC  (9+ messages)
` [RFC PATCH 07/33] vfio: selftests: Use command line to set hugepage size for DMA mapping test
` [RFC PATCH 08/33] vfio: selftests: Validate 2M/1G HugeTLB are mapped as 2M/1G in IOMMU

[PATCH v10 00/16] KVM: Mapping guest_memfd backed memory at the host for software protected VMs
 2025-05-31 19:19 UTC  (15+ messages)
` [PATCH v10 01/16] KVM: Rename CONFIG_KVM_PRIVATE_MEM to CONFIG_KVM_GMEM
` [PATCH v10 02/16] KVM: Rename CONFIG_KVM_GENERIC_PRIVATE_MEM to CONFIG_KVM_GENERIC_GMEM_POPULATE
` [PATCH v10 03/16] KVM: Rename kvm_arch_has_private_mem() to kvm_arch_supports_gmem()
` [PATCH v10 04/16] KVM: x86: Rename kvm->arch.has_private_mem to kvm->arch.supports_gmem
` [PATCH v10 05/16] KVM: Rename kvm_slot_can_be_private() to kvm_slot_has_gmem()
` [PATCH v10 06/16] KVM: Fix comments that refer to slots_lock
` [PATCH v10 07/16] KVM: Fix comment that refers to kvm uapi header path

[PATCH 00/28] KVM: x86: Clean up MSR interception code
 2025-05-31 18:01 UTC  (32+ messages)
` [PATCH 01/28] KVM: SVM: Don't BUG if setting up the MSR intercept bitmaps fails
` [PATCH 02/28] KVM: SVM: Tag MSR bitmap initialization helpers with __init
` [PATCH 03/28] KVM: SVM: Use ARRAY_SIZE() to iterate over direct_access_msrs
` [PATCH 04/28] KVM: SVM: Kill the VM instead of the host if MSR interception is buggy
` [PATCH 05/28] KVM: x86: Use non-atomic bit ops to manipulate "shadow" MSR intercepts
` [PATCH 06/28] KVM: SVM: Massage name and param of helper that merges vmcb01 and vmcb12 MSRPMs
` [PATCH 07/28] KVM: SVM: Clean up macros related to architectural MSRPM definitions
` [PATCH 08/28] KVM: nSVM: Use dedicated array of MSRPM offsets to merge L0 and L1 bitmaps
` [PATCH 09/28] KVM: nSVM: Omit SEV-ES specific passthrough MSRs from L0+L1 bitmap merge
` [PATCH 10/28] KVM: nSVM: Don't initialize vmcb02 MSRPM with vmcb01's "always passthrough"
` [PATCH 11/28] KVM: SVM: Add helpers for accessing MSR bitmap that don't rely on offsets
` [PATCH 12/28] KVM: SVM: Implement and adopt VMX style MSR intercepts APIs
` [PATCH 13/28] KVM: SVM: Pass through GHCB MSR if and only if VM is an SEV-ES guest
` [PATCH 14/28] KVM: SVM: Drop "always" flag from list of possible passthrough MSRs
` [PATCH 15/28] KVM: x86: Move definition of X2APIC_MSR() to lapic.h
` [PATCH 16/28] KVM: VMX: Manually recalc all MSR intercepts on userspace MSR filter change
` [PATCH 17/28] KVM: SVM: "
` [PATCH 18/28] KVM: x86: Rename msr_filter_changed() => recalc_msr_intercepts()
` [PATCH 19/28] KVM: SVM: Rename init_vmcb_after_set_cpuid() to make it intercepts specific
` [PATCH 20/28] KVM: SVM: Fold svm_vcpu_init_msrpm() into its sole caller
` [PATCH 21/28] KVM: SVM: Merge "after set CPUID" intercept recalc helpers
` [PATCH 22/28] KVM: SVM: Drop explicit check on MSRPM offset when emulating SEV-ES accesses
` [PATCH 23/28] KVM: SVM: Move svm_msrpm_offset() to nested.c
` [PATCH 24/28] KVM: SVM: Store MSRPM pointer as "void *" instead of "u32 *"
` [PATCH 25/28] KVM: nSVM: Access MSRPM in 4-byte chunks only for merging L0 and L1 bitmaps
` [PATCH 26/28] KVM: SVM: Return -EINVAL instead of MSR_INVALID to signal out-of-range MSR
` [PATCH 27/28] KVM: nSVM: Merge MSRPM in 64-bit chunks on 64-bit kernels
` [PATCH 28/28] KVM: selftests: Verify KVM disable interception (for userspace) on filter change

[PATCH] samples: vfio-mdev: mtty.c: delete MODULE_VERSION
 2025-05-31 16:18 UTC 

[PATCH v6] target/arm: Always add pmu property for host
 2025-05-31 14:12 UTC 

[PATCH v2] rtmutex_api: provide correct extern functions
 2025-05-31  6:38 UTC  (2+ messages)

[kvm-unit-tests PATCH] travis.yml: Remove the aarch64 job
 2025-05-30 19:44 UTC  (3+ messages)

[PATCH v3 0/9] Add SBI v3.0 PMU enhancements
 2025-05-30 19:29 UTC  (15+ messages)
` [PATCH v3 9/9] RISC-V: KVM: Upgrade the supported SBI version to 3.0

[PATCH v4 0/3] KVM: x86: Provide a capability to disable APERF/MPERF read intercepts
 2025-05-30 18:52 UTC  (4+ messages)
` [PATCH v4 1/3] KVM: x86: Replace growing set of *_in_guest bools with a u64
` [PATCH v4 2/3] KVM: x86: Provide a capability to disable APERF/MPERF read intercepts
` [PATCH v4 3/3] KVM: selftests: Test behavior of KVM_X86_DISABLE_EXITS_APERFMPERF

[PATCH v1 0/6] VMM can handle guest SEA via KVM_EXIT_ARM_SEA
 2025-05-30 17:29 UTC  (4+ messages)
` [PATCH v1 1/6] KVM: arm64: VM exit to userspace to handle SEA

[RFC PATCH 00/12] Private MMIO support for private assigned dev
 2025-05-30 16:23 UTC  (15+ messages)

[kvm-unit-tests PATCH 00/16] x86: Add CPUID properties, clean up related code
 2025-05-30 16:22 UTC  (20+ messages)
` [kvm-unit-tests PATCH 01/16] lib: Add and use static_assert() convenience wrappers
` [kvm-unit-tests PATCH 02/16] x86: Encode X86_FEATURE_* definitions using a structure
` [kvm-unit-tests PATCH 03/16] x86: Add X86_PROPERTY_* framework to retrieve CPUID values
` [kvm-unit-tests PATCH 04/16] x86: Use X86_PROPERTY_MAX_VIRT_ADDR in is_canonical()
` [kvm-unit-tests PATCH 05/16] x86: Implement get_supported_xcr0() using X86_PROPERTY_SUPPORTED_XCR0_{LO,HI}
` [kvm-unit-tests PATCH 06/16] x86: Add and use X86_PROPERTY_INTEL_PT_NR_RANGES
` [kvm-unit-tests PATCH 07/16] x86/pmu: Rename pmu_gp_counter_is_available() to pmu_arch_event_is_available()
` [kvm-unit-tests PATCH 08/16] x86/pmu: Rename gp_counter_mask_length to arch_event_mask_length
` [kvm-unit-tests PATCH 09/16] x86/pmu: Mark all arch events as available on AMD
` [kvm-unit-tests PATCH 10/16] x86/pmu: Use X86_PROPERTY_PMU_* macros to retrieve PMU information
` [kvm-unit-tests PATCH 11/16] x86/sev: Use VC_VECTOR from processor.h
` [kvm-unit-tests PATCH 12/16] x86/sev: Skip the AMD SEV test if SEV is unsupported/disabled
` [kvm-unit-tests PATCH 13/16] x86/sev: Define and use X86_FEATURE_* flags for CPUID 0x8000001F
` [kvm-unit-tests PATCH 14/16] x86/sev: Use X86_PROPERTY_SEV_C_BIT to get the AMD SEV C-bit location
` [kvm-unit-tests PATCH 15/16] x86/sev: Use amd_sev_es_enabled() to detect if SEV-ES is enabled
` [kvm-unit-tests PATCH 16/16] x86: Move SEV MSR definitions to msr.h

[PATCH v8 0/6] Introduce CET supervisor state support
 2025-05-30 16:05 UTC  (13+ messages)
` [PATCH v8 1/6] x86/fpu/xstate: Differentiate default features for host and guest FPUs
` [PATCH v8 2/6] x86/fpu: Initialize guest FPU permissions from guest defaults
` [PATCH v8 3/6] x86/fpu: Initialize guest fpstate and FPU pseudo container "
` [PATCH v8 4/6] x86/fpu: Remove xfd argument from __fpstate_reset()
` [PATCH v8 5/6] x86/fpu/xstate: Introduce "guest-only" supervisor xfeature set
` [PATCH v8 6/6] x86/fpu/xstate: Add CET supervisor xfeature support as a guest-only feature

[kvm-unit-tests PATCH] runtime: Skip tests if the target "kernel" file doesn't exist
 2025-05-30 15:32 UTC  (4+ messages)

[GIT PULL] KVM/arm64 fixes for 6.16, take #1
 2025-05-30 15:11 UTC  (2+ messages)

[PATCH] rtmutex_api: remove definition of mutex_lock_killable_nested
 2025-05-30 14:14 UTC  (2+ messages)

[RFC, PATCH 00/12] TDX: Enable Dynamic PAMT
 2025-05-30 10:28 UTC  (4+ messages)
` [RFC, PATCH 09/12] KVM: TDX: Preallocate PAMT pages to be used in page fault path

[PATCH v2 00/59] KVM: iommu: Overhaul device posted IRQs support
 2025-05-30 10:13 UTC  (5+ messages)
` [PATCH v2 38/59] iommu/amd: KVM: SVM: Infer IsRun from validity of pCPU destination
` [PATCH v2 41/59] iommu/amd: KVM: SVM: Add IRTE metadata to affined vCPU's list if AVIC is inhibited

[PATCH v3 00/13] KVM: Make irqfd registration globally unique
 2025-05-30  8:49 UTC  (4+ messages)
` [PATCH v3 08/13] sched/wait: Add a waitqueue helper for fully exclusive priority waiters

[GIT PULL] VFIO updates for v6.16-rc1
 2025-05-30  5:23 UTC  (2+ messages)

[PATCH net-next v12 00/10] tun: Introduce virtio-net hashing feature
 2025-05-30  4:50 UTC  (11+ messages)
` [PATCH net-next v12 01/10] virtio_net: Add functions for hashing
` [PATCH net-next v12 02/10] net: flow_dissector: Export flow_keys_dissector_symmetric
` [PATCH net-next v12 03/10] tun: Allow steering eBPF program to fall back
` [PATCH net-next v12 04/10] tun: Add common virtio-net hash feature code
` [PATCH net-next v12 05/10] tun: Introduce virtio-net hash feature
` [PATCH net-next v12 06/10] tap: "
` [PATCH net-next v12 07/10] selftest: tun: Test vnet ioctls without device
` [PATCH net-next v12 08/10] selftest: tun: Add tests for virtio-net hashing
` [PATCH net-next v12 09/10] selftest: tap: Add tests for virtio-net ioctls
` [PATCH net-next v12 10/10] vhost/net: Support VIRTIO_NET_F_HASH_REPORT

[PATCH 00/15] KVM: x86: Add I/O APIC kconfig, delete irq_comm.c
 2025-05-29 23:55 UTC  (15+ messages)
` [PATCH 04/15] KVM: x86: Drop superfluous kvm_hv_set_sint() => kvm_hv_synic_set_irq() wrapper
` [PATCH 08/15] KVM: x86: Don't clear PIT's IRQ line status when destroying PIT
` [PATCH 11/15] KVM: x86: Add CONFIG_KVM_IOAPIC to allow disabling in-kernel I/O APIC

[PATCH 0/5] KVM: VMX: Fix MMIO Stale Data Mitigation
 2025-05-29 23:40 UTC  (5+ messages)
` [PATCH 3/5] KVM: VMX: Apply MMIO Stale Data mitigation if KVM maps MMIO into the guest

[PATCH 1/2] x86/sev/vc: fix efi runtime instruction emulation
 2025-05-29 23:02 UTC  (4+ messages)

[kvm-unit-tests PATCH] riscv: sbi: Add SBI Debug Triggers Extension tests
 2025-05-29 22:36 UTC 

[kvm-unit-tests PATCH 0/2] x86/svm: Make nSVM MSR test useful
 2025-05-29 21:57 UTC  (3+ messages)
` [kvm-unit-tests PATCH 1/2] x86/svm: Actually report missed MSR intercepts as failures
` [kvm-unit-tests PATCH 2/2] x86/svm: Test MSRs just outside the ranges of the MSR Permissions Map

[kvm-unit-tests PATCH] x86/run: Specify "-vnc none" for QEMU if and only if QEMU supports VNC
 2025-05-29 21:34 UTC 

[PATCH 0/2] Remove some hardcoded SEV-SNP guest policy checks during guest launch
 2025-05-29 21:18 UTC  (3+ messages)
` [PATCH 1/2] KVM: SVM: Allow SNP guest policy disallow running with SMT enabled
` [PATCH 2/2] KVM: SVM: Allow SNP guest policy to specify SINGLE_SOCKET

[kvm-unit-tests PATCH] x86/pmu: Explicitly zero PERF_GLOBAL_CTRL at start of PMU test
 2025-05-29 21:01 UTC 

[kvm-unit-tests PATCH] x86/pks: Actually skip the PKS test if PKS isn't support
 2025-05-29 20:59 UTC 

[GIT PULL] First batch of KVM changes for Linux 6.16 merge window
 2025-05-29 16:41 UTC  (2+ messages)

[GIT PULL] virtio, vhost: features, fixes
 2025-05-29 16:40 UTC  (2+ messages)

[PATCH v2 00/13] KVM: Introduce KVM Userfault
 2025-05-29 16:17 UTC  (11+ messages)
` [PATCH v2 05/13] KVM: x86/mmu: Add support for KVM_MEM_USERFAULT

[kvm-unit-tests PATCH v2 0/9] arm64: support EL2
 2025-05-29 13:55 UTC  (10+ messages)
` [kvm-unit-tests PATCH v2 1/9] arm64: drop to EL1 if booted at EL2
` [kvm-unit-tests PATCH v2 2/9] arm64: efi: initialise SCTLR_ELx fully
` [kvm-unit-tests PATCH v2 3/9] arm64: efi: initialise the EL
` [kvm-unit-tests PATCH v2 4/9] arm64: timer: use hypervisor timers when at EL2
` [kvm-unit-tests PATCH v2 5/9] arm64: micro-bench: fix timer IRQ
` [kvm-unit-tests PATCH v2 6/9] arm64: micro-bench: use smc when at EL2
` [kvm-unit-tests PATCH v2 7/9] arm64: selftest: update test for running "
` [kvm-unit-tests PATCH v2 8/9] arm64: pmu: count EL2 cycles
` [kvm-unit-tests PATCH v2 9/9] arm64: run at EL2 if supported

[PATCH v8 00/14] riscv: add SBI FWFT misaligned exception delegation support
 2025-05-29 12:43 UTC  (3+ messages)
` [PATCH v8 08/14] riscv: misaligned: declare misaligned_access_speed under CONFIG_RISCV_MISALIGNED

[PATCH v2 00/13] objtool: Detect and warn about indirect calls in __nocfi functions
 2025-05-29  9:30 UTC  (11+ messages)

[PATCH v5] vfio/type1: optimize vfio_pin_pages_remote() for large folios
 2025-05-29  6:49 UTC 


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