messages from 2024-10-07 17:46:34 to 2024-10-10 18:27:02 UTC [more...]
[PATCH v13 00/85] KVM: Stop grabbing references to PFNMAP'd pages
2024-10-10 18:24 UTC (62+ 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 00/40] arm64/gcs: Provide support for GCS in userspace
2024-10-10 17:16 UTC (5+ messages)
` [PATCH v13 11/40] arm64/gcs: Provide basic EL2 setup to allow GCS usage at EL0 and EL1
[PATCH] KVM: arm64: Don't eagerly teardown the vgic on init error
2024-10-10 16:47 UTC (9+ messages)
[PATCH v4 00/36] KVM: arm64: Add EL2 support to FEAT_S1PIE/S1POE
2024-10-10 16:20 UTC (46+ messages)
` [PATCH v4 01/36] arm64: Drop SKL0/SKL1 from TCR2_EL2
` [PATCH v4 02/36] arm64: Remove VNCR definition for PIRE0_EL2
` [PATCH v4 03/36] arm64: Add encoding "
` [PATCH v4 04/36] KVM: arm64: Drop useless struct s2_mmu in __kvm_at_s1e2()
` [PATCH v4 05/36] KVM: arm64: nv: Add missing EL2->EL1 mappings in get_el2_to_el1_mapping()
` [PATCH v4 06/36] KVM: arm64: nv: Handle CNTHCTL_EL2 specially
` [PATCH v4 07/36] KVM: arm64: nv: Save/Restore vEL2 sysregs
` [PATCH v4 08/36] KVM: arm64: Correctly access TCR2_EL1, PIR_EL1, PIRE0_EL1 with VHE
` [PATCH v4 09/36] KVM: arm64: Extend masking facility to arbitrary registers
` [PATCH v4 10/36] arm64: Define ID_AA64MMFR1_EL1.HAFDBS advertising FEAT_HAFT
` [PATCH v4 11/36] KVM: arm64: Add TCR2_EL2 to the sysreg arrays
` [PATCH v4 12/36] KVM: arm64: Sanitise TCR2_EL2
` [PATCH v4 13/36] KVM: arm64: Add save/restore for TCR2_EL2
` [PATCH v4 14/36] KVM: arm64: Add PIR{,E0}_EL2 to the sysreg arrays
` [PATCH v4 15/36] KVM: arm64: Add save/restore for PIR{,E0}_EL2
` [PATCH v4 16/36] KVM: arm64: Handle PIR{,E0}_EL2 traps
` [PATCH v4 17/36] KVM: arm64: Sanitise ID_AA64MMFR3_EL1
` [PATCH v4 18/36] KVM: arm64: Add AT fast-path support for S1PIE
` [PATCH v4 19/36] KVM: arm64: Split S1 permission evaluation into direct and hierarchical parts
` [PATCH v4 20/36] KVM: arm64: Disable hierarchical permissions when S1PIE is enabled
` [PATCH v4 21/36] KVM: arm64: Implement AT S1PIE support
` [PATCH v4 22/36] KVM: arm64: Define helper for EL2 registers with custom visibility
` [PATCH v4 23/36] KVM: arm64: Hide TCR2_EL1 from userspace when disabled for guests
` [PATCH v4 24/36] KVM: arm64: Hide S1PIE registers "
` [PATCH v4 25/36] KVM: arm64: Rely on visibility to let PIR*_ELx/TCR2_ELx UNDEF
` [PATCH v4 26/36] arm64: Add encoding for POR_EL2
` [PATCH v4 27/36] KVM: arm64: Add a composite EL2 visibility helper
` [PATCH v4 28/36] KVM: arm64: Drop bogus CPTR_EL2.E0POE trap routing
` [PATCH v4 29/36] KVM: arm64: Subject S1PIE/S1POE registers to HCR_EL2.{TVM,TRVM}
` [PATCH v4 30/36] KVM: arm64: Add basic support for POR_EL2
` [PATCH v4 31/36] KVM: arm64: Add save/retore "
` [PATCH v4 32/36] KVM: arm64: Add POE save/restore for AT emulation fast-path
` [PATCH v4 33/36] KVM: arm64: Disable hierarchical permissions when POE is enabled
` [PATCH v4 34/36] KVM: arm64: Make PAN conditions part of the S1 walk context
` [PATCH v4 35/36] KVM: arm64: Handle stage-1 permission overlays
` [PATCH v4 36/36] KVM: arm64: Handle WXN attribute
[RFC PATCH 0/7] support for mm-local memory allocations and use it
2024-10-10 15:52 UTC (2+ messages)
[PATCH] KVM: arm64: nVHE: gen-hyprel: Silent build warnings
2024-10-10 15:23 UTC (5+ messages)
[PATCH v3 00/14] KVM: selftests: Morph max_guest_mem to mmu_stress
2024-10-10 11:41 UTC (16+ messages)
` [PATCH v3 01/14] KVM: Move KVM_REG_SIZE() definition to common uAPI header
` [PATCH v3 02/14] KVM: selftests: Disable strict aliasing
` [PATCH v3 03/14] KVM: selftests: Return a value from vcpu_get_reg() instead of using an out-param
` [PATCH v3 04/14] KVM: selftests: Assert that vcpu_{g,s}et_reg() won't truncate
` [PATCH v3 05/14] KVM: selftests: Check for a potential unhandled exception iff KVM_RUN succeeded
` [PATCH v3 06/14] KVM: selftests: Rename max_guest_memory_test to mmu_stress_test
` [PATCH v3 07/14] KVM: selftests: Only muck with SREGS on x86 in mmu_stress_test
` [PATCH v3 08/14] KVM: selftests: Compute number of extra pages needed "
` [PATCH v3 09/14] KVM: sefltests: Explicitly include ucall_common.h in mmu_stress_test.c
` [PATCH v3 10/14] KVM: selftests: Enable mmu_stress_test on arm64
` [PATCH v3 11/14] KVM: selftests: Use vcpu_arch_put_guest() in mmu_stress_test
` [PATCH v3 12/14] KVM: selftests: Precisely limit the number of guest loops "
` [PATCH v3 13/14] KVM: selftests: Add a read-only mprotect() phase to mmu_stress_test
` [PATCH v3 14/14] KVM: selftests: Verify KVM correctly handles mprotect(PROT_READ)
[PATCH v4 0/7] KVM: arm64: Hide unsupported MPAM from the guest
2024-10-10 10:18 UTC (14+ messages)
` [PATCH v4 1/7] arm64: head.S: Initialise MPAM EL2 registers and disable traps
` [PATCH v4 2/7] arm64/sysreg: Convert existing MPAM sysregs and add the remaining entries
` [PATCH v4 3/7] arm64: cpufeature: discover CPU support for MPAM
` [PATCH v4 4/7] KVM: arm64: Fix missing traps of guest accesses to the MPAM registers
` [PATCH v4 5/7] KVM: arm64: Add a macro for creating filtered sys_reg_descs entries
` [PATCH v4 6/7] KVM: arm64: Disable MPAM visibility by default and ignore VMM writes
[PATCH v5 00/30] Permission Overlay Extension
2024-10-09 14:43 UTC (4+ messages)
` [PATCH v5 19/30] arm64: add POE signal support
[PATCH 0/5] arm64/mm: Drop PXD_TABLE_BIT
2024-10-09 13:32 UTC (10+ messages)
` [PATCH 1/5] arm64/mm: Drop pte_mkhuge()
` [PATCH 2/5] arm64/mm: Replace PXD_TABLE_BIT with PXD_TYPE_[MASK|SECT]
` [PATCH 3/5] arm64/ptdump: Test PMD_TYPE_MASK for block mapping
` [PATCH 4/5] KVM: arm64: ptdump: "
[BUG] ARM64 KVM: Data abort executing post-indexed LDR on MMIO address
2024-10-09 8:05 UTC (12+ messages)
[PATCH v5 42/43] arm64: kvm: Expose support for private memory
2024-10-09 7:03 UTC (2+ messages)
[RFC PATCH 1/7] mseal: expose interface to seal / unseal user memory ranges
2024-10-08 20:31 UTC (2+ messages)
[RFC PATCH 0/7] support for mm-local memory allocations and use it
2024-10-08 20:06 UTC (2+ messages)
[PATCH v5 00/43] arm64: Support for Arm CCA in KVM
2024-10-08 16:31 UTC (3+ messages)
` [PATCH v5 09/43] arm64: RME: ioctls to create and configure realms
[PATCH] KVM: arm64: Expose S1PIE to guests
2024-10-08 12:05 UTC (3+ messages)
[PATCH v6 00/11] arm64: Support for running as a guest in Arm CCA
2024-10-08 11:05 UTC (24+ messages)
` [PATCH v6 01/11] arm64: rsi: Add RSI definitions
` [PATCH v6 02/11] arm64: Detect if in a realm and set RIPAS RAM
` [PATCH v6 03/11] arm64: realm: Query IPA size from the RMM
` [PATCH v6 04/11] arm64: rsi: Add support for checking whether an MMIO is protected
` [PATCH v6 05/11] arm64: rsi: Map unprotected MMIO as decrypted
` [PATCH v6 06/11] efi: arm64: Map Device with Prot Shared
` [PATCH v6 07/11] arm64: Enforce bounce buffers for realm DMA
` [PATCH v6 08/11] arm64: mm: Avoid TLBI when marking pages as valid
` [PATCH v6 09/11] arm64: Enable memory encrypt for Realms
` [PATCH v6 10/11] virt: arm-cca-guest: TSM_REPORT support for realms
` [PATCH v6 11/11] arm64: Document Arm Confidential Compute
[PATCH v3 0/4] KVM: arm64: nv: Fixes for stage-2 MMU recycling
2024-10-08 9:41 UTC (6+ messages)
` [PATCH v3 1/4] KVM: arm64: nv: Keep reference on stage-2 MMU when scheduled out
` [PATCH v3 2/4] KVM: arm64: nv: Do not block when unmapping stage-2 if disallowed
` [PATCH v3 3/4] KVM: arm64: nv: Punt stage-2 recycling to a vCPU request
` [PATCH v3 4/4] KVM: arm64: nv: Clarify safety of allowing TLBI unmaps to reschedule
[PATCH] KVM: arm64: Unregister redistributor for failed vCPU creation
2024-10-08 9:41 UTC (2+ messages)
[PATCH v2 0/4] KVM: arm64: nv: Fixes for stage-2 MMU recycling
2024-10-07 22:18 UTC (13+ messages)
` [PATCH v2 1/4] KVM: arm64: nv: Keep reference on stage-2 MMU when scheduled out
` [PATCH v2 3/4] KVM: arm64: nv: Punt stage-2 recycling to a vCPU request
` [PATCH v2 4/4] KVM: arm64: nv: Clarify safety of allowing TLBI unmaps to reschedule
[PATCH v3 00/17] KVM: arm64: nv: Support for EL2 PMU controls
2024-10-07 17:45 UTC (9+ messages)
` [PATCH v3 10/17] KVM: arm64: nv: Advertise support for FEAT_HPMN0
` [PATCH v3 11/17] KVM: arm64: Rename kvm_pmu_valid_counter_mask()
` [PATCH v3 12/17] KVM: arm64: nv: Adjust range of accessible PMCs according to HPMN
` [PATCH v3 13/17] KVM: arm64: Add helpers to determine if PMC counts at a given EL
` [PATCH v3 14/17] KVM: arm64: nv: Honor MDCR_EL2.HPME
` [PATCH v3 15/17] KVM: arm64: nv: Honor MDCR_EL2.HLP
` [PATCH v3 16/17] KVM: arm64: nv: Apply EL2 event filtering when in hyp context
` [PATCH v3 17/17] KVM: arm64: nv: Reprogram PMU events affected by nested transition
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox