public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2024-10-10 07:12:35 to 2024-10-10 19:49:23 UTC [more...]

[PATCH v12 00/19] Add Secure TSC support for SNP guests
 2024-10-10 19:49 UTC  (12+ messages)
` [PATCH v12 05/19] virt: sev-guest: Reduce the scope of SNP command mutex
` [PATCH v12 09/19] x86/cc: Add CC_ATTR_GUEST_SNP_SECURE_TSC
` [PATCH v12 14/19] tsc: Use the GUEST_TSC_FREQ MSR for discovering TSC frequency
` [PATCH v12 16/19] x86/kvmclock: Use clock source callback to update kvm sched clock
` [PATCH v12 17/19] x86/kvmclock: Abort SecureTSC enabled guest when kvmclock is selected

[RFC PATCH 30/39] KVM: guest_memfd: Handle folio preparation for guest_memfd mmap
 2024-10-10 19:27 UTC  (5+ messages)

[RFC PATCH 00/13] Remove implicit devres from pci_intx()
 2024-10-10 18:34 UTC  (22+ messages)
` [RFC PATCH 01/13] PCI: Prepare removing "
` [RFC PATCH 02/13] ALSA: hda: hda_intel: Use always-managed version of pcim_intx()
` [RFC PATCH 10/13] staging: rts5280: Use always-managed version of pci_intx()
` [RFC PATCH 12/13] HID: amd_sfh: Use always-managed version of pcim_intx()
` [RFC PATCH 13/13] Remove devres from pci_intx()

[PATCH v13 00/85] KVM: Stop grabbing references to PFNMAP'd pages
 2024-10-10 18:24 UTC  (86+ messages)
` [PATCH v13 01/85] KVM: Drop KVM_ERR_PTR_BAD_PAGE and instead return NULL to indicate an error
` [PATCH v13 02/85] KVM: Allow calling kvm_release_page_{clean,dirty}() on a NULL page pointer
` [PATCH v13 03/85] KVM: Add kvm_release_page_unused() API to put pages that KVM never consumes
` [PATCH v13 04/85] KVM: x86/mmu: Skip the "try unsync" path iff the old SPTE was a leaf SPTE
` [PATCH v13 05/85] KVM: x86/mmu: Don't overwrite shadow-present MMU SPTEs when prefaulting
` [PATCH v13 06/85] KVM: x86/mmu: Invert @can_unsync and renamed to @synchronizing
` [PATCH v13 07/85] KVM: x86/mmu: Mark new SPTE as Accessed when synchronizing existing SPTE
` [PATCH v13 08/85] KVM: x86/mmu: Mark folio dirty when creating SPTE, not when zapping/modifying
` [PATCH v13 09/85] KVM: x86/mmu: Mark page/folio accessed only when zapping leaf SPTEs
` [PATCH v13 10/85] KVM: x86/mmu: Use gfn_to_page_many_atomic() when prefetching indirect PTEs
` [PATCH v13 11/85] KVM: Rename gfn_to_page_many_atomic() to kvm_prefetch_pages()
` [PATCH v13 12/85] KVM: Drop @atomic param from gfn=>pfn and hva=>pfn APIs
` [PATCH v13 13/85] KVM: Annotate that all paths in hva_to_pfn() might sleep
` [PATCH v13 14/85] KVM: Return ERR_SIGPENDING from hva_to_pfn() if GUP returns -EGAIN
` [PATCH v13 15/85] KVM: Drop extra GUP (via check_user_page_hwpoison()) to detect poisoned page
` [PATCH v13 16/85] KVM: Replace "async" pointer in gfn=>pfn with "no_wait" and error code
` [PATCH v13 17/85] KVM: x86/mmu: Drop kvm_page_fault.hva, i.e. don't track intermediate hva
` [PATCH v13 18/85] KVM: Drop unused "hva" pointer from __gfn_to_pfn_memslot()
` [PATCH v13 19/85] KVM: Introduce kvm_follow_pfn() to eventually replace "gfn_to_pfn" APIs
` [PATCH v13 20/85] KVM: Remove pointless sanity check on @map param to kvm_vcpu_(un)map()
` [PATCH v13 21/85] KVM: Explicitly initialize all fields at the start of kvm_vcpu_map()
` [PATCH v13 22/85] KVM: Use NULL for struct page pointer to indicate mremapped memory
` [PATCH v13 23/85] KVM: nVMX: Rely on kvm_vcpu_unmap() to track validity of eVMCS mapping
` [PATCH v13 24/85] KVM: nVMX: Drop pointless msr_bitmap_map field from struct nested_vmx
` [PATCH v13 25/85] KVM: nVMX: Add helper to put (unmap) vmcs12 pages
` [PATCH v13 26/85] KVM: Use plain "struct page" pointer instead of single-entry array
` [PATCH v13 27/85] KVM: Provide refcounted page as output field in struct kvm_follow_pfn
` [PATCH v13 28/85] KVM: Move kvm_{set,release}_page_{clean,dirty}() helpers up in kvm_main.c
` [PATCH v13 29/85] KVM: pfncache: Precisely track refcounted pages
` [PATCH v13 30/85] KVM: Migrate kvm_vcpu_map() to kvm_follow_pfn()
` [PATCH v13 31/85] KVM: Pin (as in FOLL_PIN) pages during kvm_vcpu_map()
` [PATCH v13 32/85] KVM: nVMX: Mark vmcs12's APIC access page dirty when unmapping
` [PATCH v13 33/85] KVM: Pass in write/dirty to kvm_vcpu_map(), not kvm_vcpu_unmap()
` [PATCH v13 34/85] KVM: Get writable mapping for __kvm_vcpu_map() only when necessary
` [PATCH v13 35/85] KVM: Disallow direct access (w/o mmu_notifier) to unpinned pfn by default
` [PATCH v13 36/85] KVM: x86: Don't fault-in APIC access page during initial allocation
` [PATCH v13 37/85] KVM: x86/mmu: Add "mmu" prefix fault-in helpers to free up generic names
` [PATCH v13 38/85] KVM: x86/mmu: Put direct prefetched pages via kvm_release_page_clean()
` [PATCH v13 39/85] KVM: x86/mmu: Add common helper to handle prefetching SPTEs
` [PATCH v13 40/85] KVM: x86/mmu: Add helper to "finish" handling a guest page fault
` [PATCH v13 41/85] KVM: x86/mmu: Mark pages/folios dirty at the origin of make_spte()
` [PATCH v13 42/85] KVM: Move declarations of memslot accessors up in kvm_host.h
` [PATCH v13 43/85] KVM: Add kvm_faultin_pfn() to specifically service guest page faults
` [PATCH v13 44/85] KVM: x86/mmu: Convert page fault paths to kvm_faultin_pfn()
` [PATCH v13 45/85] KVM: guest_memfd: Pass index, not gfn, to __kvm_gmem_get_pfn()
` [PATCH v13 46/85] KVM: guest_memfd: Provide "struct page" as output from kvm_gmem_get_pfn()
` [PATCH v13 47/85] KVM: x86/mmu: Put refcounted pages instead of blindly releasing pfns
` [PATCH v13 48/85] KVM: x86/mmu: Don't mark unused faultin pages as accessed
` [PATCH v13 49/85] KVM: Move x86's API to release a faultin page to common KVM
` [PATCH v13 50/85] KVM: VMX: Hold mmu_lock until page is released when updating APIC access page
` [PATCH v13 51/85] KVM: VMX: Use __kvm_faultin_page() to get APIC access page/pfn
` [PATCH v13 52/85] KVM: PPC: e500: Mark "struct page" dirty in kvmppc_e500_shadow_map()
` [PATCH v13 53/85] KVM: PPC: e500: Mark "struct page" pfn accessed before dropping mmu_lock
` [PATCH v13 54/85] KVM: PPC: e500: Use __kvm_faultin_pfn() to handle page faults
` [PATCH v13 55/85] KVM: arm64: Mark "struct page" pfns accessed/dirty before dropping mmu_lock
` [PATCH v13 56/85] KVM: arm64: Use __kvm_faultin_pfn() to handle memory aborts
` [PATCH v13 57/85] KVM: RISC-V: Mark "struct page" pfns dirty iff a stage-2 PTE is installed
` [PATCH v13 58/85] KVM: RISC-V: Mark "struct page" pfns accessed before dropping mmu_lock
` [PATCH v13 59/85] KVM: RISC-V: Use kvm_faultin_pfn() when mapping pfns into the guest
` [PATCH v13 60/85] KVM: PPC: Use __kvm_faultin_pfn() to handle page faults on Book3s HV
` [PATCH v13 61/85] KVM: PPC: Use __kvm_faultin_pfn() to handle page faults on Book3s Radix
` [PATCH v13 62/85] KVM: PPC: Drop unused @kvm_ro param from kvmppc_book3s_instantiate_page()
` [PATCH v13 63/85] KVM: PPC: Book3S: Mark "struct page" pfns dirty/accessed after installing PTE
` [PATCH v13 64/85] KVM: PPC: Use kvm_faultin_pfn() to handle page faults on Book3s PR
` [PATCH v13 65/85] KVM: LoongArch: Mark "struct page" pfns dirty only in "slow" page fault path
` [PATCH v13 66/85] KVM: LoongArch: Mark "struct page" pfns accessed "
` [PATCH v13 67/85] KVM: LoongArch: Mark "struct page" pfn accessed before dropping mmu_lock
` [PATCH v13 68/85] KVM: LoongArch: Use kvm_faultin_pfn() to map pfns into the guest
` [PATCH v13 69/85] KVM: MIPS: Mark "struct page" pfns dirty only in "slow" page fault path
` [PATCH v13 70/85] KVM: MIPS: Mark "struct page" pfns accessed "
` [PATCH v13 71/85] KVM: MIPS: Mark "struct page" pfns accessed prior to dropping mmu_lock
` [PATCH v13 72/85] KVM: MIPS: Use kvm_faultin_pfn() to map pfns into the guest
` [PATCH v13 73/85] KVM: PPC: Remove extra get_page() to fix page refcount leak
` [PATCH v13 74/85] KVM: PPC: Use kvm_vcpu_map() to map guest memory to patch dcbz instructions
` [PATCH v13 75/85] KVM: Convert gfn_to_page() to use kvm_follow_pfn()
` [PATCH v13 76/85] KVM: Add support for read-only usage of gfn_to_page()
` [PATCH v13 77/85] KVM: arm64: Use __gfn_to_page() when copying MTE tags to/from userspace
` [PATCH v13 78/85] KVM: PPC: Explicitly require struct page memory for Ultravisor sharing
` [PATCH v13 79/85] KVM: Drop gfn_to_pfn() APIs now that all users are gone
` [PATCH v13 80/85] KVM: s390: Use kvm_release_page_dirty() to unpin "struct page" memory
` [PATCH v13 81/85] KVM: Make kvm_follow_pfn.refcounted_page a required field
` [PATCH v13 82/85] KVM: x86/mmu: Don't mark "struct page" accessed when zapping SPTEs
` [PATCH v13 83/85] KVM: arm64: Don't mark "struct page" accessed when making SPTE young
` [PATCH v13 84/85] KVM: Drop APIs that manipulate "struct page" via pfns
` [PATCH v13 85/85] KVM: Don't grab reference on VM_MIXEDMAP pfns that have a "struct page"

[PATCH 17/24] sched/fair: Implement delayed dequeue
 2024-10-10 18:23 UTC  (7+ messages)

[PATCH 0/5] Add new headers for Hyper-V Dom0
 2024-10-10 18:21 UTC  (6+ messages)
` [PATCH 2/5] hyperv: Remove unnecessary #includes
` [PATCH 3/5] hyperv: Add new Hyper-V headers

[RFC] powerpc/kvm: Fix spinlock member access for PREEMPT_RT
 2024-10-10 18:09 UTC 

[PATCH 0/6] KVM: Fix bugs in vCPUs xarray usage
 2024-10-10 17:48 UTC  (8+ messages)
` [PATCH 1/6] KVM: Explicitly verify target vCPU is online in kvm_get_vcpu()
` [PATCH 4/6] Revert "KVM: Fix vcpu_array[0] races"

[PATCH 09/21] KVM: TDX: Retry seamcall when TDX_OPERAND_BUSY with operand SEPT
 2024-10-10 17:33 UTC  (11+ messages)

Proposal: bi-weekly guest_memfd upstream call
 2024-10-10 17:14 UTC  (5+ messages)

[PATCH v4 0/4] KVM: x86: Fix and harden reg caching from !TASK context
 2024-10-10 16:24 UTC  (4+ messages)

[PATCH v4 00/36] KVM: arm64: Add EL2 support to FEAT_S1PIE/S1POE
 2024-10-10 16:20 UTC  (16+ messages)
` [PATCH v4 03/36] arm64: Add encoding for PIRE0_EL2
` [PATCH v4 10/36] arm64: Define ID_AA64MMFR1_EL1.HAFDBS advertising FEAT_HAFT
` [PATCH v4 20/36] KVM: arm64: Disable hierarchical permissions when S1PIE is enabled
` [PATCH v4 23/36] KVM: arm64: Hide TCR2_EL1 from userspace when disabled for guests
` [PATCH v4 27/36] KVM: arm64: Add a composite EL2 visibility helper
` [PATCH v4 29/36] KVM: arm64: Subject S1PIE/S1POE registers to HCR_EL2.{TVM,TRVM}
` [PATCH v4 33/36] KVM: arm64: Disable hierarchical permissions when POE is enabled

[PATCH 0/3] KVM: x86/mmu: Don't zap "direct" non-leaf SPTEs on memslot removal
 2024-10-10 16:14 UTC  (6+ messages)
` [PATCH 1/3] KVM: x86/mmu: Zap only SPs that shadow gPTEs when deleting memslot
` [PATCH 2/3] KVM: x86/mmu: Add lockdep assert to enforce safe usage of kvm_unmap_gfn_range()

[RFC PATCH 00/39] 1G page support for guest_memfd
 2024-10-10 16:06 UTC  (3+ messages)
` [RFC PATCH 26/39] KVM: guest_memfd: Track faultability within a struct kvm_gmem_private

[kvm-unit-tests PATCH v2] x86: Increase the timeout for the test "vmx_apicv_test"
 2024-10-10 15:39 UTC 

[RFC PATCH 00/13] Support iommu(fd) persistence for live update
 2024-10-10 15:32 UTC  (11+ messages)
` [RFC PATCH 05/13] iommufd: Serialise persisted iommufds and ioas

[PATCH v3 00/11] KVM: Restricted mapping of guest_memfd at the host and arm64 support
 2024-10-10 14:37 UTC  (20+ messages)
` [PATCH v3 01/11] KVM: guest_memfd: Make guest mem use guest mem inodes instead of anonymous inodes
` [PATCH v3 02/11] KVM: guest_memfd: Track mappability within a struct kvm_gmem_private
` [PATCH v3 03/11] KVM: guest_memfd: Introduce kvm_gmem_get_pfn_locked(), which retains the folio lock
` [PATCH v3 04/11] KVM: guest_memfd: Allow host to mmap guest_memfd() pages when shared
` [PATCH v3 05/11] KVM: guest_memfd: Add guest_memfd support to kvm_(read|/write)_guest_page()
` [PATCH v3 06/11] KVM: guest_memfd: Add KVM capability to check if guest_memfd is host mappable
` [PATCH v3 07/11] KVM: guest_memfd: Add a guest_memfd() flag to initialize it as mappable
` [PATCH v3 08/11] KVM: guest_memfd: selftests: guest_memfd mmap() test when mapping is allowed
` [PATCH v3 09/11] KVM: arm64: Skip VMA checks for slots without userspace address
` [PATCH v3 10/11] KVM: arm64: Handle guest_memfd()-backed guest page faults
` [PATCH v3 11/11] KVM: arm64: Enable guest_memfd private memory when pKVM is enabled

[PATCH V12 00/14] perf/core: Add ability for an event to "pause" or "resume" AUX area tracing
 2024-10-10 14:31 UTC  (15+ messages)
` [PATCH V12 01/14] perf/x86/intel/pt: Fix buffer full but size is 0 case
` [PATCH V12 02/14] KVM: x86: Fix Intel PT IA32_RTIT_CTL MSR validation
` [PATCH V12 03/14] KVM: x86: Fix Intel PT Host/Guest mode when host tracing also
` [PATCH V12 04/14] KVM: selftests: Add guest Intel PT test
` [PATCH V12 05/14] perf/core: Add aux_pause, aux_resume, aux_start_paused
` [PATCH V12 06/14] perf/x86/intel/pt: Add support for pause / resume
` [PATCH V12 07/14] perf/x86/intel: Do not enable large PEBS for events with aux actions or aux sampling
` [PATCH V12 08/14] perf tools: Add aux_start_paused, aux_pause and aux_resume
` [PATCH V12 09/14] perf tools: Add aux-action config term
` [PATCH V12 10/14] perf tools: Parse aux-action
` [PATCH V12 11/14] perf tools: Add missing_features for aux_start_paused, aux_pause, aux_resume
` [PATCH V12 12/14] perf intel-pt: Improve man page format
` [PATCH V12 13/14] perf intel-pt: Add documentation for pause / resume
` [PATCH V12 14/14] perf intel-pt: Add a test "

[PATCH] target/i386: Add more features enumerated by CPUID.7.2.EDX
 2024-10-10 13:17 UTC  (2+ messages)

[PATCH] KVM: nSVM: Ignore nCR3[4:0] when loading PDPTEs from memory
 2024-10-10 13:08 UTC  (2+ messages)

[PATCH RFC v2 0/5] mm: Introduce guest_memfd library
 2024-10-10 13:04 UTC  (2+ messages)

[PATCH 0/7] KVM: x86: Clean up MSR_IA32_APICBASE_BASE code
 2024-10-10 12:53 UTC  (3+ messages)
` [PATCH 6/7] KVM: x86: Rename APIC base setters to better capture their relationship

[PATCH v3 00/14] KVM: selftests: Morph max_guest_mem to mmu_stress
 2024-10-10 11:41 UTC  (3+ messages)
` [PATCH v3 01/14] KVM: Move KVM_REG_SIZE() definition to common uAPI header

[PATCH 1/1] KVM: nVMX: update VPPR on vmlaunch/vmresume
 2024-10-10 11:00 UTC  (6+ messages)

[PATCH 00/25] TDX vCPU/VM creation
 2024-10-10 10:36 UTC  (11+ messages)
` [PATCH 10/25] KVM: TDX: Initialize KVM supported capabilities when module setup
` [PATCH 22/25] KVM: TDX: Use guest physical address to configure EPT level and GPAW

[kvm-unit-tests PATCH v4 0/2] s390x: add tests for diag258
 2024-10-10 10:08 UTC  (5+ messages)
` [kvm-unit-tests PATCH v4 1/2] s390x: edat: move LC_SIZE to arch_def.h
` [kvm-unit-tests PATCH v4 2/2] s390x: add test for diag258

[PATCH 0/7] KVM: x86: Introduce new ioctl KVM_HYPERV_SET_TLB_FLUSH_INHIBIT
 2024-10-10  8:57 UTC  (9+ messages)
` [PATCH 1/7] KVM: Add API documentation for KVM_HYPERV_SET_TLB_FLUSH_INHIBIT
` [PATCH 2/7] KVM: x86: Implement Hyper-V's vCPU suspended state
` [PATCH 4/7] KVM: Introduce KVM_HYPERV_SET_TLB_FLUSH_INHIBIT
` [PATCH 5/7] KVM: x86: Implement KVM_HYPERV_SET_TLB_FLUSH_INHIBIT

[kvm-unit-tests PATCH v3 0/7] s390x: STFLE nested interpretation
 2024-10-10  8:37 UTC  (8+ messages)
` [kvm-unit-tests PATCH v3 1/7] lib: Add pseudo random functions
` [kvm-unit-tests PATCH v3 7/7] s390x: Add test for STFLE interpretive execution (format-0)

[kvm-unit-tests PATCH v1] configure: process arguments not starting with dash
 2024-10-10  8:27 UTC  (2+ messages)

[PATCH v3 3/9] ACPI/IORT: Support CANWBS memory access flag
 2024-10-10  7:45 UTC  (2+ messages)


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