public inbox for kvmarm@lists.cs.columbia.edu
 help / color / mirror / Atom feed
 messages from 2022-03-14 08:42:05 to 2022-03-22 19:43:03 UTC [more...]

[PATCH v5 00/22] Support SDEI Virtualization
 2022-03-22 19:42 UTC  (26+ messages)
` [PATCH v5 01/22] KVM: arm64: Introduce template for inline functions
` [PATCH v5 02/22] KVM: arm64: Add SDEI virtualization infrastructure
` [PATCH v5 03/22] KVM: arm64: Support SDEI_VERSION hypercall
` [PATCH v5 04/22] KVM: arm64: Support SDEI_EVENT_REGISTER hypercall
` [PATCH v5 05/22] KVM: arm64: Support SDEI_EVENT_{ENABLE, DISABLE} hypercall
` [PATCH v5 06/22] KVM: arm64: Support SDEI_EVENT_CONTEXT hypercall
` [PATCH v5 07/22] KVM: arm64: Support SDEI_EVENT_UNREGISTER hypercall
` [PATCH v5 08/22] KVM: arm64: Support SDEI_EVENT_STATUS hypercall
` [PATCH v5 09/22] KVM: arm64: Support SDEI_EVENT_GET_INFO hypercall
` [PATCH v5 10/22] KVM: arm64: Support SDEI_EVENT_ROUTING_SET hypercall
` [PATCH v5 11/22] KVM: arm64: Support SDEI_PE_{MASK, UNMASK} hypercall
` [PATCH v5 12/22] KVM: arm64: Support SDEI_{PRIVATE, SHARED}_RESET
` [PATCH v5 13/22] KVM: arm64: Support SDEI_FEATURES hypercall
` [PATCH v5 14/22] KVM: arm64: Support SDEI event injection, delivery and cancellation
` [PATCH v5 15/22] KVM: arm64: Support SDEI_EVENT_SIGNAL hypercall
` [PATCH v5 16/22] KVM: arm64: Support SDEI_EVENT_{COMPLETE, COMPLETE_AND_RESUME} hypercall
` [PATCH v5 17/22] KVM: arm64: Support SDEI event notifier
` [PATCH v5 18/22] KVM: arm64: Support SDEI ioctl commands on VM
` [PATCH v5 19/22] KVM: arm64: Support SDEI ioctl commands on vCPU
` [PATCH v5 20/22] KVM: arm64: Export SDEI capability
` [PATCH v5 21/22] KVM: arm64: Add SDEI document
` [PATCH v5 22/22] KVM: selftests: Add SDEI test case

[PATCH v2 0/3] KVM: arm64: Fixes for SMC64 SYSTEM_RESET2 calls
 2022-03-22 18:35 UTC  (4+ messages)
` [PATCH v2 1/3] KVM: arm64: Generally disallow SMC64 for AArch32 guests
` [PATCH v2 2/3] KVM: arm64: Actually prevent SMC64 SYSTEM_RESET2 from AArch32
` [PATCH v2 3/3] KVM: arm64: Drop unneeded minor version check from PSCI v1.x handler

[PATCH v3 0/4] KVM: arm64: selftests: Add edge cases tests for the arch timer
 2022-03-22 17:23 UTC  (5+ messages)
` [PATCH v3 1/4] KVM: arm64: selftests: add timer_get_tval() lib function
` [PATCH v3 2/4] KVM: selftests: add is_cpu_online() utility function
` [PATCH v3 3/4] KVM: arm64: selftests: add arch_timer_edge_cases
` [PATCH v3 4/4] KVM: arm64: selftests: add edge cases tests into arch_timer_edge_cases

[kvm-unit-tests PATCH] libfdt: use logical "or" instead of bitwise "or" with boolean operands
 2022-03-22 13:44 UTC  (6+ messages)

[PATCH 0/2] KVM: arm64: Fixes for SMC64 SYSTEM_RESET2 calls
 2022-03-22  8:48 UTC  (8+ messages)
` [PATCH 1/2] KVM: arm64: Generally disallow SMC64 for AArch32 guests
` [PATCH 2/2] KVM: arm64: Actually prevent SMC64 SYSTEM_RESET2 from AArch32
` [PATCH] KVM: arm64: Drop unneeded minor version check from PSCI v1.x handler

[PATCH v2 00/26] Extend Eager Page Splitting to the shadow MMU
 2022-03-22  0:07 UTC  (40+ messages)
` [PATCH v2 01/26] KVM: x86/mmu: Optimize MMU page cache lookup for all direct SPs
` [PATCH v2 02/26] KVM: x86/mmu: Use a bool for direct
` [PATCH v2 03/26] KVM: x86/mmu: Derive shadow MMU page role from parent
` [PATCH v2 04/26] KVM: x86/mmu: Decompose kvm_mmu_get_page() into separate functions
` [PATCH v2 05/26] KVM: x86/mmu: Rename shadow MMU functions that deal with shadow pages
` [PATCH v2 06/26] KVM: x86/mmu: Pass memslot to kvm_mmu_new_shadow_page()
` [PATCH v2 07/26] KVM: x86/mmu: Separate shadow MMU sp allocation from initialization
` [PATCH v2 08/26] KVM: x86/mmu: Link spt to sp during allocation
` [PATCH v2 09/26] KVM: x86/mmu: Move huge page split sp allocation code to mmu.c
` [PATCH v2 10/26] KVM: x86/mmu: Use common code to free kvm_mmu_page structs
` [PATCH v2 11/26] KVM: x86/mmu: Use common code to allocate kvm_mmu_page structs from vCPU caches
` [PATCH v2 14/26] KVM: x86/mmu: Decouple rmap_add() and link_shadow_page() from kvm_vcpu
` [PATCH v2 15/26] KVM: x86/mmu: Update page stats in __rmap_add()
` [PATCH v2 16/26] KVM: x86/mmu: Cache the access bits of shadowed translations
` [PATCH v2 17/26] KVM: x86/mmu: Pass access information to make_huge_page_split_spte()
` [PATCH v2 18/26] KVM: x86/mmu: Zap collapsible SPTEs at all levels in the shadow MMU
` [PATCH v2 19/26] KVM: x86/mmu: Refactor drop_large_spte()
` [PATCH v2 20/26] KVM: x86/mmu: Extend Eager Page Splitting to the shadow MMU
` [PATCH v2 21/26] KVM: Allow for different capacities in kvm_mmu_memory_cache structs

[PATCH v6 00/25] KVM: arm64: Make CPU ID registers writable by userspace
 2022-03-22  7:42 UTC  (3+ messages)
` [PATCH v6 01/25] KVM: arm64: Introduce a validation function for an ID register

[PATCH v4 00/15] KVM: arm64: PSCI SYSTEM_SUSPEND + SYSTEM_RESET2 bugfix
 2022-03-22  6:52 UTC  (11+ messages)
` [PATCH v4 07/15] KVM: Create helper for setting a system event exit
` [PATCH v4 08/15] KVM: arm64: Return a value from check_vcpu_requests()
` [PATCH v4 09/15] KVM: arm64: Add support for userspace to suspend a vCPU
` (subset) [PATCH v4 00/15] KVM: arm64: PSCI SYSTEM_SUSPEND + SYSTEM_RESET2 bugfix

[PATCH v5 0/2] KVM: arm64: mixed-width check should be skipped for uninitialized vCPUs
 2022-03-22  3:30 UTC  (6+ messages)
` [PATCH v5 1/2] "
` [PATCH v5 2/2] KVM: arm64: selftests: Introduce vcpu_width_config

[PATCH v1 0/2] Add arm64 vcpu exit reasons and tracepoint
 2022-03-21 17:14 UTC  (7+ messages)
` [PATCH v1 1/2] KVM: arm64: Add arch specific exit reasons
` [PATCH v1 2/2] KVM: arm64: Add debug tracepoint for vcpu exits

[PATCH 00/11] KVM: selftests: Add aarch64/page_fault_test
 2022-03-21 17:01 UTC  (14+ messages)
` [PATCH 01/11] KVM: selftests: Add a userfaultfd library
` [PATCH 02/11] KVM: selftests: Add vm_mem_region_get_src_fd library function
` [PATCH 04/11] KVM: selftests: Add vm_alloc_page_table_in_memslot "
` [PATCH 06/11] KVM: selftests: Add missing close and munmap in __vm_mem_region_delete

[RFC PATCH v5 00/38] KVM: arm64: Add Statistical Profiling Extension (SPE) support
 2022-03-21 17:29 UTC  (10+ messages)
` [RFC PATCH v5 04/38] KVM: arm64: Defer CMOs for locked memslots until a VCPU is run
` [RFC PATCH v5 06/38] KVM: arm64: Delay tag scrubbing for locked memslots until a VCPU runs
` [RFC PATCH v5 08/38] KVM: arm64: Unlock memslots after stage 2 tables are freed

[PATCH kvmtool v11 0/3] aarch64: Add stolen time support
 2022-03-21 14:00 UTC  (3+ messages)

[syzbot] WARNING in kvm_mmu_notifier_invalidate_range_start (2)
 2022-03-21 10:25 UTC 

Report an error on GICv4.1 vcpu de-schedule
 2022-03-21  1:33 UTC  (4+ messages)

[PATCH v2 0/3] KVM: arm64: selftests: Add edge cases tests for the arch timer
 2022-03-18 20:54 UTC  (10+ messages)
` [PATCH v2 1/3] KVM: arm64: selftests: add timer_get_tval() lib function
` [PATCH v2 2/3] KVM: arm64: selftests: add arch_timer_edge_cases
` [PATCH v2 3/3] KVM: arm64: selftests: add edge cases tests into arch_timer_edge_cases

[PATCH] KVM: arm64: fix typos in comments
 2022-03-18 14:07 UTC  (2+ messages)

[GIT PULL] KVM/arm64 updates for 5.18
 2022-03-18 14:36 UTC 

Spectre - BHB
 2022-03-18  5:26 UTC 

[kvm-unit-tests PATCH] arm/run: Use TCG with qemu-system-arm on arm64 systems
 2022-03-17 18:03 UTC  (3+ messages)

[PATCH v4 0/6] Improve KVM's interaction with CPU hotplug
 2022-03-17 17:36 UTC  (3+ messages)
  ` [PATCH v4 2/6] Partially revert "KVM: Pass kvm_init()'s opaque param to additional arch funcs"
  ` [PATCH v4 4/6] KVM: arm64: Simplify the CPUHP logic

[PATCH v12 00/40] arm64/sme: Initial support for the Scalable Matrix Extension
 2022-03-16 22:38 UTC  (7+ messages)
` [PATCH v12 11/40] arm64/sme: Identify supported SME vector lengths at boot
` [PATCH v12 20/40] arm64/sme: Implement streaming SVE signal handling
` [PATCH v12 23/40] arm64/sme: Add ptrace support for ZA

[PATCH 0/4] KVM: arm64: vgic-v3: MMIO-based LPI invalidation and co
 2022-03-16 15:01 UTC  (13+ messages)
` [PATCH 1/4] irqchip/gic-v3: Exposes bit values for GICR_CTLR.{IR, CES}
` [PATCH 2/4] KVM: arm64: vgic-v3: Implement MMIO-based LPI invalidation
` [PATCH 3/4] KVM: arm64: vgic-v3: Expose GICR_CTLR.RWP when disabling LPIs
` [PATCH 4/4] KVM: arm64: vgic-v3: Advertise GICR_CTLR.{IR, CES} as a new GICD_IIDR revision

[PATCH] KVM: selftests: get-reg-list: Add KVM_REG_ARM_FW_REG(3)
 2022-03-16 14:34 UTC  (2+ messages)

[kvm-unit-tests] Adding the QCBOR library to kvm-unit-tests
 2022-03-16 10:51 UTC  (7+ messages)

[PATCH v4 0/3] KVM: arm64: mixed-width check should be skipped for uninitialized vCPUs
 2022-03-16  6:18 UTC  (9+ messages)
` [PATCH v4 1/3] KVM: arm64: Generalise VM features into a set of flags
` [PATCH v4 2/3] KVM: arm64: mixed-width check should be skipped for uninitialized vCPUs

[PATCH v4 00/13] KVM: arm64: Add support for hypercall services selection
 2022-03-15 17:53 UTC  (29+ messages)
` [PATCH v4 01/13] KVM: arm64: Factor out firmware register handling from psci.c
` [PATCH v4 03/13] KVM: arm64: Encode the scope for firmware registers
` [PATCH v4 04/13] KVM: arm64: Capture VM's first run
` [PATCH v4 05/13] KVM: arm64: Setup a framework for hypercall bitmap firmware registers
` [PATCH v4 06/13] KVM: arm64: Add standard hypervisor firmware register
` [PATCH v4 07/13] KVM: arm64: Add vendor "
` [PATCH v4 09/13] Docs: KVM: Rename psci.rst to hypercalls.rst
` [PATCH v4 13/13] selftests: KVM: aarch64: Add the bitmap firmware registers to get-reg-list

[PATCH kvm-unit-tests] arch-run: Introduce QEMU_ARCH
 2022-03-15 17:14 UTC  (5+ messages)

[PATCH v6 0/8] KVM: arm64: Hypervisor stack enhancements
 2022-03-14 20:01 UTC  (9+ messages)
` [PATCH v6 1/8] KVM: arm64: Introduce hyp_alloc_private_va_range()
` [PATCH v6 2/8] KVM: arm64: Introduce pkvm_alloc_private_va_range()
` [PATCH v6 3/8] KVM: arm64: Add guard pages for KVM nVHE hypervisor stack
` [PATCH v6 4/8] KVM: arm64: Add guard pages for pKVM (protected nVHE) "
` [PATCH v6 5/8] KVM: arm64: Detect and handle hypervisor stack overflows
` [PATCH v6 6/8] KVM: arm64: Add hypervisor overflow stack
` [PATCH v6 7/8] KVM: arm64: Unwind and dump nVHE HYP stacktrace
` [PATCH v6 8/8] KVM: arm64: Symbolize the nVHE HYP backtrace

[PATCH 4.19 00/30] 4.19.235-rc1 review
 2022-03-14 15:00 UTC  (2+ messages)

[kvm-unit-tests PATCH v2 0/3] configure changes and rename --target-efi
 2022-03-14 12:36 UTC  (2+ messages)

[kvm-unit-tests PATCH] arm: Fix typos
 2022-03-14  8:41 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