Linux KVM/arm64 development list
 help / color / mirror / Atom feed
 messages from 2022-10-17 23:32:20 to 2022-10-20 19:12:36 UTC [more...]

[PATCH v2 0/9] KVM: arm64: selftests: Test linked {break, watch}points
 2022-10-20 19:12 UTC  (13+ messages)
` [PATCH v2 1/9] KVM: arm64: selftests: Use FIELD_GET() to extract ID register fields
` [PATCH v2 2/9] KVM: arm64: selftests: Add write_dbg{b,w}{c,v}r helpers in debug-exceptions
` [PATCH v2 3/9] KVM: arm64: selftests: Remove the hard-coded {b, w}pn#0 from debug-exceptions
  ` [PATCH v2 3/9] KVM: arm64: selftests: Remove the hard-coded {b,w}pn#0 "
` [PATCH v2 4/9] KVM: arm64: selftests: Add helpers to enable debug exceptions
` [PATCH v2 5/9] KVM: arm64: selftests: Stop unnecessary test stage tracking of debug-exceptions
` [PATCH v2 6/9] KVM: arm64: selftests: Change debug_version() to take ID_AA64DFR0_EL1
` [PATCH v2 7/9] KVM: arm64: selftests: Add a test case for a linked breakpoint
` [PATCH v2 8/9] KVM: arm64: selftests: Add a test case for a linked watchpoint
` [PATCH v2 9/9] KVM: arm64: selftests: Test with every breakpoint/watchpoint

[PATCH v6 0/8] KVM: arm64: Enable ring-based dirty memory tracking
 2022-10-20 18:58 UTC  (8+ messages)
` [PATCH v6 3/8] KVM: Add support for using dirty ring in conjunction with bitmap

[PATCH v2 0/7] perf: Arm SPEv1.2 support
 2022-10-20 14:33 UTC  (18+ messages)
` [PATCH v2 1/7] perf: arm_spe: Use feature numbering for PMSEVFR_EL1 defines
` [PATCH v2 2/7] arm64: Drop SYS_ from SPE register defines
` [PATCH v2 3/7] arm64/sysreg: Convert SPE registers to automatic generation
` [PATCH v2 4/7] perf: arm_spe: Drop BIT() and use FIELD_GET/PREP accessors
` [PATCH v2 5/7] perf: arm_spe: Support new SPEv1.2/v8.7 'not taken' event
` [PATCH v2 6/7] perf: Add perf_event_attr::config3
` [PATCH v2 7/7] perf: arm_spe: Add support for SPEv1.2 inverted event filtering

[PATCH v5 00/25] KVM: arm64: Introduce pKVM hyp VM and vCPU state at EL2
 2022-10-20 13:38 UTC  (26+ messages)
` [PATCH v5 01/25] KVM: arm64: Move hyp refcount manipulation helpers to common header file
` [PATCH v5 02/25] KVM: arm64: Allow attaching of non-coalescable pages to a hyp pool
` [PATCH v5 03/25] KVM: arm64: Back the hypervisor 'struct hyp_page' array for all memory
` [PATCH v5 04/25] KVM: arm64: Fix-up hyp stage-1 refcounts for all pages mapped at EL2
` [PATCH v5 05/25] KVM: arm64: Unify identifiers used to distinguish host and hypervisor
` [PATCH v5 06/25] KVM: arm64: Implement do_donate() helper for donating memory
` [PATCH v5 07/25] KVM: arm64: Prevent the donation of no-map pages
` [PATCH v5 08/25] KVM: arm64: Add helpers to pin memory shared with the hypervisor at EL2
` [PATCH v5 09/25] KVM: arm64: Include asm/kvm_mmu.h in nvhe/mem_protect.h
` [PATCH v5 10/25] KVM: arm64: Add hyp_spinlock_t static initializer
` [PATCH v5 11/25] KVM: arm64: Rename 'host_kvm' to 'host_mmu'
` [PATCH v5 12/25] KVM: arm64: Add infrastructure to create and track pKVM instances at EL2
` [PATCH v5 13/25] KVM: arm64: Instantiate pKVM hypervisor VM and vCPU structures from EL1
` [PATCH v5 14/25] KVM: arm64: Add per-cpu fixmap infrastructure at EL2
` [PATCH v5 15/25] KVM: arm64: Initialise hypervisor copies of host symbols unconditionally
` [PATCH v5 16/25] KVM: arm64: Provide I-cache invalidation by virtual address at EL2
` [PATCH v5 17/25] KVM: arm64: Add generic hyp_memcache helpers
` [PATCH v5 18/25] KVM: arm64: Consolidate stage-2 initialisation into a single function
` [PATCH v5 19/25] KVM: arm64: Instantiate guest stage-2 page-tables at EL2
` [PATCH v5 20/25] KVM: arm64: Return guest memory from EL2 via dedicated teardown memcache
` [PATCH v5 21/25] KVM: arm64: Unmap 'kvm_arm_hyp_percpu_base' from the host
` [PATCH v5 22/25] KVM: arm64: Maintain a copy of 'kvm_arm_vmid_bits' at EL2
` [PATCH v5 23/25] KVM: arm64: Explicitly map 'kvm_vgic_global_state' "
` [PATCH v5 24/25] KVM: arm64: Don't unnecessarily map host kernel sections "
` [RFC PATCH v5 25/25] KVM: arm64: Use the pKVM hyp vCPU structure in handle___kvm_vcpu_run()

[GIT PULL] KVM/arm64 fixes for 6.1, take #2
 2022-10-20 10:01 UTC  (2+ messages)

[PATCH 00/17] KVM: arm64: Allow using VHE in the nVHE hypervisor
 2022-10-20  9:07 UTC  (36+ messages)
` [PATCH 01/17] arm64: Turn kaslr_feature_override into a generic SW feature override
` [PATCH 02/17] arm64: Add KVM_HVHE capability and has_hvhe() predicate
` [PATCH 03/17] arm64: Don't enable VHE for the kernel if OVERRIDE_HVHE is set
` [PATCH 04/17] arm64: Prevent the use of is_kernel_in_hyp_mode() in hypervisor code
` [PATCH 05/17] arm64: Allow EL1 physical timer access when running VHE
` [PATCH 06/17] arm64: Use CPACR_EL1 format to set CPTR_EL2 when E2H is set
` [PATCH 07/17] KVM: arm64: Elide kern_hyp_va() in VHE-specific parts of the hypervisor
` [PATCH 08/17] KVM: arm64: Remove alternatives from sysreg accessors in VHE hypervisor context
` [PATCH 09/17] KVM: arm64: Key use of VHE instructions in nVHE code off ARM64_KVM_HVHE
` [PATCH 10/17] KVM: arm64: Force HCR_EL2.E2H when ARM64_KVM_HVHE is set
` [PATCH 11/17] KVM: arm64: Disable TTBR1_EL2 when using ARM64_KVM_HVHE
` [PATCH 12/17] KVM: arm64: Adjust EL2 stage-1 leaf AP bits when ARM64_KVM_HVHE is set
` [PATCH 13/17] KVM: arm64: Rework CPTR_EL2 programming for HVHE configuration
` [PATCH 14/17] KVM: arm64: Program the timer traps with VHE layout in hVHE mode
` [PATCH 15/17] KVM: arm64: Force HCR_E2H in guest context when ARM64_KVM_HVHE is set
` [PATCH 16/17] arm64: Allow arm64_sw.hvhe on command line
` [PATCH 17/17] KVM: arm64: Terrible timer hack for M1 with hVHE

[PATCH v2 00/15] KVM: arm64: Parallel stage-2 fault handling
 2022-10-20  8:35 UTC  (16+ messages)
` [PATCH v2 07/15] KVM: arm64: Use an opaque type for pteps
` [PATCH v2 08/15] KVM: arm64: Protect stage-2 traversal with RCU
` [PATCH v2 15/15] KVM: arm64: Handle stage-2 faults in parallel

[PATCH 0/6] KVM: selftests: memslot_perf_test: aarch64 cleanup/fixes
 2022-10-20  7:19 UTC  (32+ messages)
` [PATCH 3/6] KVM: selftests: memslot_perf_test: Probe memory slots for once
` [PATCH 4/6] KVM: selftests: memslot_perf_test: Support variable guest page size
` [PATCH 5/6] KVM: selftests: memslot_perf_test: Consolidate memory sizes

[PATCH v3 0/6] KVM: selftests: memslot_perf_test: aarch64 cleanup/fixes
 2022-10-20  7:12 UTC  (14+ messages)
` [PATCH v3 1/6] KVM: selftests: memslot_perf_test: Use data->nslots in prepare_vm()
` [PATCH v3 2/6] KVM: selftests: memslot_perf_test: Consolidate loop conditions "
` [PATCH v3 3/6] KVM: selftests: memslot_perf_test: Probe memory slots for once
` [PATCH v3 4/6] KVM: selftests: memslot_perf_test: Support variable guest page size
` [PATCH v3 5/6] KVM: selftests: memslot_perf_test: Consolidate memory
` [PATCH v3 6/6] KVM: selftests: memslot_perf_test: Report optimal memory slots

[PATCH v10 00/14] KVM: selftests: Add aarch64/page_fault_test
 2022-10-19 23:47 UTC  (6+ messages)
` [PATCH v10 01/14] KVM: selftests: Add a userfaultfd library

[PATCH v4 00/25] KVM: arm64: Introduce pKVM hyp VM and vCPU state at EL2
 2022-10-19 16:34 UTC  (31+ messages)
` [PATCH v4 07/25] KVM: arm64: Prevent the donation of no-map pages
` [PATCH v4 10/25] KVM: arm64: Add hyp_spinlock_t static initializer
` [PATCH v4 11/25] KVM: arm64: Rename 'host_kvm' to 'host_mmu'
` [PATCH v4 12/25] KVM: arm64: Add infrastructure to create and track pKVM instances at EL2
` [PATCH v4 13/25] KVM: arm64: Instantiate pKVM hypervisor VM and vCPU structures from EL1
` [PATCH v4 14/25] KVM: arm64: Add per-cpu fixmap infrastructure at EL2
` [PATCH v4 20/25] KVM: arm64: Return guest memory from EL2 via dedicated teardown memcache

[PATCH 0/3] KVM: arm64: nv: Fixes for Nested Virtualization issues
 2022-10-19  7:59 UTC  (3+ messages)

[PATCH v5 3/7] KVM: x86: Allow to use bitmap in ring-based dirty page tracking
 2022-10-18 15:50 UTC  (16+ messages)

[PATCH v2 0/6] KVM: selftests: memslot_perf_test: aarch64 cleanup/fixes
 2022-10-18  4:04 UTC  (14+ messages)
` [PATCH v2 1/6] KVM: selftests: memslot_perf_test: Use data->nslots in prepare_vm()
` [PATCH v2 2/6] KVM: selftests: memslot_perf_test: Consolidate loop conditions "
` [PATCH v2 3/6] KVM: selftests: memslot_perf_test: Probe memory slots for once
` [PATCH v2 4/6] KVM: selftests: memslot_perf_test: Support variable guest page size
` [PATCH v2 5/6] KVM: selftests: memslot_perf_test: Consolidate memory sizes
` [PATCH v2 6/6] KVM: selftests: memslot_perf_test: Report optimal memory slots


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