Linux KVM/arm64 development list
 help / color / mirror / Atom feed
 messages from 2024-07-19 14:01:19 to 2024-07-30 20:00:52 UTC [more...]

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

[PATCH v4 00/15] arm64: Support for running as a guest in Arm CCA
 2024-07-30 13:51 UTC  (12+ messages)
` [PATCH v4 01/15] arm64: rsi: Add RSI definitions
` [PATCH v4 03/15] arm64: Detect if in a realm and set RIPAS RAM
` [PATCH v4 05/15] arm64: Mark all I/O as non-secure shared

[PATCH v3] KVM: arm64: Fix confusion in documentation for pKVM SME assert
 2024-07-30 13:33 UTC 

[PATCH v6 0/4] KVM: arm64: Fix underallocation of storage for SVE state
 2024-07-30 13:29 UTC  (5+ messages)
` [PATCH v6 1/4] arm64/fpsimd: Introduce __bit_to_vl() helper
` [PATCH v6 2/4] arm64/fpsimd: Discover maximum vector length implemented by any CPU
` [PATCH v6 3/4] KVM: arm64: Fix FFR offset calculation for pKVM host state save and restore
` [PATCH v6 4/4] KVM: arm64: Avoid underallocating storage for host SVE state

[RFC PATCH 00/18] KVM: Post-copy live migration for guest_memfd
 2024-07-29 21:09 UTC  (15+ messages)
` [RFC PATCH 08/18] KVM: x86: Add KVM Userfault support
` [RFC PATCH 14/18] KVM: Add asynchronous userfaults, KVM_READ_USERFAULT

[PATCH 00/12] KVM: arm64: nv: Add support for address translation instructions
 2024-07-29 15:26 UTC  (16+ messages)
` [PATCH 08/12] KVM: arm64: nv: Add emulation of AT S12E{0,1}{R,W}
` [PATCH 10/12] KVM: arm64: nv: Add SW walker for AT S1 emulation

[PATCH v4 00/29] arm64: Permission Overlay Extension
 2024-07-29 14:41 UTC  (33+ messages)
` [PATCH v4 04/29] arm64: disable trapping of POR_EL0 to EL2
` [PATCH v4 06/29] arm64: context switch POR_EL0 register
` [PATCH v4 10/29] arm64: enable the Permission Overlay Extension for EL0
` [PATCH v4 13/29] arm64: convert protection key into vm_flags and pgprot values
` [PATCH v4 15/29] arm64: handle PKEY/POE faults
` [PATCH v4 17/29] arm64: implement PKEYS support
` [PATCH v4 18/29] arm64: add POE signal support
` [PATCH v4 19/29] arm64: enable PKEY support for CPUs with S1POE

[kvm-unit-tests PATCH] build: retain intermediate .aux.o targets
 2024-07-26  9:05 UTC  (7+ messages)

[PATCH v6 00/11] mm: multi-gen LRU: Walk secondary MMU page tables while aging
 2024-07-26  0:34 UTC  (19+ messages)
` [PATCH v6 01/11] KVM: Add lockless memslot walk to KVM
` [PATCH v6 02/11] KVM: x86: Relax locking for kvm_test_age_gfn and kvm_age_gfn
` [PATCH v6 03/11] KVM: arm64: "
` [PATCH v6 04/11] mm: Add missing mmu_notifier_clear_young for !MMU_NOTIFIER
` [PATCH v6 05/11] mm: Add fast_only bool to test_young and clear_young MMU notifiers
` [PATCH v6 06/11] mm: Add has_fast_aging to struct mmu_notifier
` [PATCH v6 07/11] KVM: Pass fast_only to kvm_{test_,}age_gfn
` [PATCH v6 08/11] KVM: x86: Optimize kvm_{test_,}age_gfn a little bit
` [PATCH v6 09/11] KVM: x86: Implement fast_only versions of kvm_{test_,}age_gfn
` [PATCH v6 10/11] mm: multi-gen LRU: Have secondary MMUs participate in aging
` [PATCH v6 11/11] KVM: selftests: Add multi-gen LRU aging to access_tracking_perf_test

[PATCH] KVM: arm64: Add some statistics under kvm debugfs
 2024-07-25 12:38 UTC  (2+ messages)

[PATCH 0/3] irqchip/gic-v4: Fix VMAPP/VMOVP races
 2024-07-24  1:13 UTC  (7+ messages)
` [PATCH 3/3] irqchip/gic-v4: Make sure a VPE is locked when VMAPP is issued

[PATCH v2 0/3] KVM: arm64: fix warnings in W=1 build
 2024-07-23 17:04 UTC  (5+ messages)
` [PATCH v2 1/3] KVM: arm64: fix override-init warnings in W=1 builds
` [PATCH v2 2/3] KVM: arm64: fix kdoc "
` [PATCH v2 3/3] KVM: arm64: vgic: fix unexpected unlock sparse warnings

[PATCH] arm64/sysreg: Correct the values for GICv4.1
 2024-07-23 15:46 UTC  (7+ messages)

[PATCH] KVM: arm64: free kvm->arch.nested_mmus with kvfree()
 2024-07-23 15:00 UTC  (2+ messages)

[PATCH v5 0/4] Allow userspace to change ID_AA64PFR1_EL1
 2024-07-23  7:20 UTC  (5+ messages)
` [PATCH v5 1/4] KVM: arm64: Disable fields that KVM doesn't know how to handle in ID_AA64PFR1_EL1
` [PATCH v5 2/4] KVM: arm64: Use kvm_has_feat() to check if FEAT_SSBS is advertised to the guest
` [PATCH v5 3/4] KVM: arm64: Allow userspace to change ID_AA64PFR1_EL1
` [PATCH v5 4/4] KVM: selftests: aarch64: Add writable test for ID_AA64PFR1_EL1

[PATCH v5 0/9] mm: multi-gen LRU: Walk secondary MMU page tables while aging
 2024-07-22 21:23 UTC  (7+ messages)
` [PATCH v5 8/9] mm: multi-gen LRU: Have secondary MMUs participate in aging

[PATCH v2] KVM: arm64: Tidying up PAuth code in KVM
 2024-07-22 16:33 UTC 

[PATCH v1] KVM: arm64: Tidying up PAuth code in KVM
 2024-07-22 15:22 UTC  (3+ messages)

[PATCH v9 00/39] arm64/gcs: Provide support for GCS in userspace
 2024-07-22 14:31 UTC  (11+ messages)
` [PATCH v9 35/39] kselftest/arm64: Add a GCS test program built with the system libc
` [PATCH v9 38/39] kselftest/arm64: Add a GCS stress test

[PATCH v7 0/6] arm64: ptdump: View the second stage page-tables
 2024-07-19 16:27 UTC  (10+ messages)
` [PATCH v7 5/6] KVM: arm64: Initialize the ptdump parser with stage-2 attributes

[PATCH] KVM: arm64: Move data barrier to end of split walk
 2024-07-19 15:15 UTC  (3+ messages)


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