kvmarm.lists.cs.columbia.edu archive mirror
 help / color / mirror / Atom feed
 messages from 2022-10-01 09:12:58 to 2022-10-11 06:31:35 UTC [more...]

[PATCH v5 0/7] KVM: arm64: Enable ring-based dirty memory tracking
 2022-10-11  6:31 UTC  (40+ messages)
` [PATCH v5 1/7] KVM: x86: Introduce KVM_REQ_RING_SOFT_FULL
` [PATCH v5 2/7] KVM: x86: Move declaration of kvm_cpu_dirty_log_size() to kvm_dirty_ring.h
` [PATCH v5 3/7] KVM: x86: Allow to use bitmap in ring-based dirty page tracking
` [PATCH v5 4/7] KVM: arm64: Enable ring-based dirty memory tracking
` [PATCH v5 5/7] KVM: selftests: Use host page size to map ring buffer in dirty_log_test
` [PATCH v5 6/7] KVM: selftests: Clear dirty ring states between two modes "
` [PATCH v5 7/7] KVM: selftests: Automate choosing dirty ring size "

[PATCH v6 0/8] KVM: arm64: Enable ring-based dirty memory tracking
 2022-10-11  6:23 UTC  (20+ messages)
` [PATCH v6 1/8] KVM: x86: Introduce KVM_REQ_RING_SOFT_FULL
` [PATCH v6 2/8] KVM: x86: Move declaration of kvm_cpu_dirty_log_size() to kvm_dirty_ring.h
` [PATCH v6 3/8] KVM: Add support for using dirty ring in conjunction with bitmap
` [PATCH v6 4/8] KVM: arm64: Enable ring-based dirty memory tracking
` [PATCH v6 5/8] KVM: selftests: Enable KVM_CAP_DIRTY_LOG_RING_WITH_BITMAP if possible
` [PATCH v6 6/8] KVM: selftests: Use host page size to map ring buffer in dirty_log_test
` [PATCH v6 7/8] KVM: selftests: Clear dirty ring states between two modes "
` [PATCH v6 8/8] KVM: selftests: Automate choosing dirty ring size "

[kvm-unit-tests PATCH v3 0/3] arm: pmu: Fixes for bare metal
 2022-10-11  3:50 UTC  (10+ messages)

[PATCH v2] KVM: arm64: nvhe: Fix build with profile optimization
 2022-10-11  2:15 UTC  (8+ messages)

[PATCH v9 00/14] KVM: selftests: Add aarch64/page_fault_test
 2022-10-11  1:06 UTC  (30+ messages)
` [PATCH v9 01/14] KVM: selftests: Add a userfaultfd library
` [PATCH v9 02/14] KVM: selftests: aarch64: Add virt_get_pte_hva() library function
` [PATCH v9 03/14] KVM: selftests: Add missing close and munmap in __vm_mem_region_delete()
` [PATCH v9 04/14] KVM: selftests: aarch64: Construct DEFAULT_MAIR_EL1 using sysreg.h macros
` [PATCH v9 05/14] tools: Copy bitfield.h from the kernel sources
` [PATCH v9 06/14] KVM: selftests: Stash backing_src_type in struct userspace_mem_region
` [PATCH v9 07/14] KVM: selftests: Add vm->memslots[] and enum kvm_mem_region_type
` [PATCH v9 08/14] KVM: selftests: Fix alignment in virt_arch_pgd_alloc() and vm_vaddr_alloc()
` [PATCH v9 09/14] KVM: selftests: Use the right memslot for code, page-tables, and data allocations
` [PATCH v9 10/14] KVM: selftests: aarch64: Add aarch64/page_fault_test
` [PATCH v9 11/14] KVM: selftests: aarch64: Add userfaultfd tests into page_fault_test
` [PATCH v9 12/14] KVM: selftests: aarch64: Add dirty logging "
` [PATCH v9 13/14] KVM: selftests: aarch64: Add readonly memslot "
` [PATCH v9 14/14] KVM: selftests: aarch64: Add mix of "

[PATCH] KVM: arm64: selftests: Fix multiple versions of GIC creation
 2022-10-10  8:43 UTC  (6+ messages)

[PATCH 0/3] KVM: arm64: nv: Fixes for Nested Virtualization issues
 2022-10-10  5:56 UTC  (2+ messages)

[PATCH 00/14] KVM: arm64: Parallel stage-2 fault handling
 2022-10-10  3:58 UTC  (4+ messages)
` [PATCH 02/14] KVM: arm64: Tear down unlinked stage-2 subtree after break-before-make

[PATCH] KVM: arm64: Enable stack protection and branch profiling for VHE
 2022-10-09  2:16 UTC  (3+ messages)

[PATCH v3 0/2] KVM: arm64: Limit stage2_apply_range() batch size to largest block
 2022-10-09  1:36 UTC  (8+ messages)
` [PATCH v3 1/2] KVM: arm64: Work out supported block level at compile time
` [PATCH v3 2/2] KVM: arm64: Limit stage2_apply_range() batch size to largest block

[PATCH v2 00/15] KVM: arm64: Parallel stage-2 fault handling
 2022-10-08  3:14 UTC  (36+ messages)
` [PATCH v2 01/15] KVM: arm64: Combine visitor arguments into a context structure
` [PATCH v2 02/15] KVM: arm64: Stash observed pte value in visitor context
` [PATCH v2 03/15] KVM: arm64: Pass mm_ops through the "
` [PATCH v2 04/15] KVM: arm64: Don't pass kvm_pgtable through kvm_pgtable_walk_data
` [PATCH v2 05/15] KVM: arm64: Add a helper to tear down unlinked stage-2 subtrees
` [PATCH v2 06/15] KVM: arm64: Tear down unlinked stage-2 subtree after break-before-make
` [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 09/15] KVM: arm64: Free removed stage-2 tables in RCU callback
` [PATCH v2 10/15] KVM: arm64: Atomically update stage 2 leaf attributes in parallel walks
` [PATCH v2 11/15] KVM: arm64: Split init and set for table PTE
` [PATCH v2 12/15] KVM: arm64: Make block->table PTE changes parallel-aware
` [PATCH v2 13/15] KVM: arm64: Make leaf->leaf "
` [PATCH v2 14/15] KVM: arm64: Make table->block "
` [PATCH v2 15/15] KVM: arm64: Handle stage-2 faults in parallel

[kvm-unit-tests PATCH 0/3] arm/arm64: mmu cleanups and fixes
 2022-10-06 14:50 UTC  (7+ messages)
` [kvm-unit-tests PATCH 1/3] lib/vmalloc: Treat virt_to_pte_phys() as returning a physical address
` [kvm-unit-tests PATCH 2/3] arm/arm64: mmu: Teach virt_to_pte_phys() about block descriptors
` [kvm-unit-tests PATCH 3/3] arm/arm64: mmu: Rename mmu_get_pte() -> follow_pte()

(no subject)
 2022-10-06 11:11 UTC 

[PATCH v6 0/7] KVM: selftests: Implement ucall "pool" (for SEV)
 2022-10-06  0:34 UTC  (16+ messages)
` [PATCH v6 1/7] KVM: selftests: Consolidate common code for populating ucall struct
` [PATCH v6 2/7] KVM: selftests: Consolidate boilerplate code in get_ucall()
` [PATCH v6 3/7] KVM: selftests: Automatically do init_ucall() for non-barebones VMs
` [PATCH v6 4/7] tools: Add atomic_test_and_set_bit()
` [PATCH v6 5/7] KVM: selftests: Make arm64's MMIO ucall multi-VM friendly
` [PATCH v6 6/7] KVM: selftest: Drop now-unnecessary ucall_uninit()
` [PATCH v6 7/7] KVM: selftests: Add ucall pool based implementation

arm64 build failure on kvm/next
 2022-10-04 22:32 UTC  (4+ messages)

[PATCH v4 0/6] KVM: arm64: Enable ring-based dirty memory tracking
 2022-10-04 15:45 UTC  (16+ messages)
` [PATCH v4 3/6] "

[PATCH kernel v4] KVM: PPC: Make KVM_CAP_IRQFD_RESAMPLE support platform dependent
 2022-10-03 23:57 UTC 

[GIT PULL] KVM/arm64 updates for 6.1
 2022-10-03 19:39 UTC  (4+ messages)

[PATCH] KVM: arm64: Advertise new kvmarm mailing list
 2022-10-01  9:18 UTC  (4+ messages)


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