KVM ARM Archive mirror
 help / color / mirror / Atom feed
[PATCH 00/18] KVM: selftests: Clean up x86's DT initialization
 2024-03-28  2:52 UTC  (29+ messages)
` [PATCH 01/18] Revert "kvm: selftests: move base kvm_util.h declarations to kvm_util_base.h"
` [PATCH 02/18] KVM: sefltests: Add kvm_util_types.h to hold common types, e.g. vm_vaddr_t
` [PATCH 03/18] KVM: selftests: Move GDT, IDT, and TSS fields to x86's kvm_vm_arch
` [PATCH 08/18] KVM: selftests: Move x86's descriptor table helpers "up" in processor.c
` [PATCH 09/18] KVM: selftests: Rename x86's vcpu_setup() to vcpu_init_sregs()
` [PATCH 10/18] KVM: selftests: Init IDT and exception handlers for all VMs/vCPUs on x86
` [PATCH 11/18] KVM: selftests: Map x86's exception_handlers at VM creation, not vCPU setup
` [PATCH 12/18] KVM: selftests: Allocate x86's GDT during VM creation
` [PATCH 13/18] KVM: selftests: Drop superfluous switch() on vm->mode in vcpu_init_sregs()
` [PATCH 14/18] KVM: selftests: Fold x86's descriptor tables helpers into vcpu_init_sregs()
` [PATCH 15/18] KVM: selftests: Allocate x86's TSS at VM creation
` [PATCH 16/18] KVM: selftests: Add macro for TSS selector, rename up code/data macros
` [PATCH 17/18] KVM: selftests: Init x86's segments during VM creation
` [PATCH 18/18] KVM: selftests: Drop @selector from segment helpers

folio_mmapped
 2024-03-27 19:34 UTC  (34+ messages)
` folio_mmapped
                                      `  "

[PATCH v1 00/44] KVM: arm64: Preamble for pKVM
 2024-03-27 17:35 UTC  (45+ messages)
` [PATCH v1 01/44] KVM: arm64: Change kvm_handle_mmio_return() return polarity
` [PATCH v1 02/44] KVM: arm64: Use enum instead of helper for checking FP-state
` [PATCH v1 03/44] KVM: arm64: Move setting the page as dirty out of the critical section
` [PATCH v1 04/44] KVM: arm64: Avoid BUG-ing from the host abort path
` [PATCH v1 05/44] KVM: arm64: Check for PTE validity when checking for executable/cacheable
` [PATCH v1 06/44] KVM: arm64: Avoid BBM when changing only s/w bits in Stage-2 PTE
` [PATCH v1 07/44] KVM: arm64: Support TLB invalidation in guest context
` [PATCH v1 08/44] KVM: arm64: Simplify vgic-v3 hypercalls
` [PATCH v1 09/44] KVM: arm64: Add is_pkvm_initialized() helper
` [PATCH v1 10/44] KVM: arm64: Introduce predicates to check for protected state
` [PATCH v1 11/44] KVM: arm64: Split up nvhe/fixed_config.h
` [PATCH v1 12/44] KVM: arm64: Move pstate reset value definitions to kvm_arm.h
` [PATCH v1 13/44] KVM: arm64: Clarify rationale for ZCR_EL1 value restored on guest exit
` [PATCH v1 14/44] KVM: arm64: Refactor calculating SVE state size to use helpers
` [PATCH v1 15/44] KVM: arm64: Use active guest SVE vector length on guest restore
` [PATCH v1 16/44] KVM: arm64: Do not map the host fpsimd state to hyp in pKVM
` [PATCH v1 17/44] KVM: arm64: Move some kvm_psci functions to a shared header
` [PATCH v1 18/44] KVM: arm64: Refactor reset_mpidr() to extract its computation
` [PATCH v1 19/44] KVM: arm64: Refactor kvm_vcpu_enable_ptrauth() for hyp use
` [PATCH v1 20/44] KVM: arm64: Refactor enter_exception64()
` [PATCH v1 21/44] KVM: arm64: Add PC_UPDATE_REQ flags covering all PC updates
` [PATCH v1 22/44] KVM: arm64: Add vcpu flag copy primitive
` [PATCH v1 23/44] KVM: arm64: Introduce gfn_to_memslot_prot()
` [PATCH v1 24/44] KVM: arm64: Do not use the hva in kvm_handle_guest_abort()
` [PATCH v1 25/44] KVM: arm64: Introduce hyp_rwlock_t
` [PATCH v1 26/44] KVM: arm64: Add atomics-based checking refcount implementation at EL2
` [PATCH v1 27/44] KVM: arm64: Use atomic refcount helpers for 'struct hyp_page::refcount'
` [PATCH v1 28/44] KVM: arm64: Remove locking from EL2 allocation fast-paths
` [PATCH v1 29/44] KVM: arm64: Reformat/beautify PTP hypercall documentation
` [PATCH v1 30/44] KVM: arm64: Rename firmware pseudo-register documentation file
` [PATCH v1 31/44] KVM: arm64: Document the KVM/arm64-specific calls in hypercalls.rst
` [PATCH v1 32/44] KVM: arm64: Prevent kmemleak from accessing .hyp.data
` [PATCH v1 33/44] KVM: arm64: Issue CMOs when tearing down guest s2 pages
` [PATCH v1 34/44] KVM: arm64: Do not set the virtual timer offset for protected vCPUs
` [PATCH v1 35/44] KVM: arm64: Fix comment for __pkvm_vcpu_init_traps()
` [PATCH v1 36/44] KVM: arm64: Do not re-initialize the KVM lock
` [PATCH v1 37/44] KVM: arm64: Check directly whether a vcpu is protected
` [PATCH v1 38/44] KVM: arm64: Trap debug break and watch from guest
` [PATCH v1 39/44] KVM: arm64: Restrict protected VM capabilities
` [PATCH v1 40/44] KVM: arm64: Do not support MTE for protected VMs
` [PATCH v1 41/44] KVM: arm64: Move pkvm_vcpu_init_traps() to hyp vcpu init
` [PATCH v1 42/44] KVM: arm64: Fix initializing traps in protected mode
` [PATCH v1 43/44] KVM: arm64: Advertise GICv3 sysreg interface to protected guests
` [PATCH v1 44/44] KVM: arm64: Force injection of a data abort on NISV MMIO exit

[PATCH v2 0/4] KVM: arm64: TLBI fixes for the pgtable code
 2024-03-27 12:48 UTC  (5+ messages)
` [PATCH v2 1/4] KVM: arm64: Don't defer TLB invalidation when zapping table entries
` [PATCH v2 2/4] KVM: arm64: Don't pass a TLBI level hint "
` [PATCH v2 3/4] KVM: arm64: Use TLBI_TTL_UNKNOWN in __kvm_tlb_flush_vmid_range()
` [PATCH v2 4/4] KVM: arm64: Ensure target address is granule-aligned for range TLBI

[PATCH 0/3] KVM: arm64: TLBI fixes for the pgtable code
 2024-03-27 12:45 UTC  (13+ messages)
` [PATCH 1/3] KVM: arm64: Don't defer TLB invalidation when zapping table entries
` [PATCH 2/3] KVM: arm64: Don't pass a TLBI level hint "
` [PATCH 3/3] KVM: arm64: Use TLBI_TTL_UNKNOWN in __kvm_tlb_flush_vmid_range()

[RFC PATCH] kvm: nv: Optimize the unmapping of shadow S2-MMU tables
 2024-03-27 12:12 UTC  (5+ messages)

[PATCH v2 0/5] KVM: arm64: Move host-specific data out of kvm_vcpu_arch
 2024-03-27  9:04 UTC  (16+ messages)
` [PATCH v2 1/5] KVM: arm64: Add accessor for per-CPU state
` [PATCH v2 2/5] KVM: arm64: Exclude host_debug_data from vcpu_arch
` [PATCH v2 3/5] KVM: arm64: Exclude mdcr_el2_host from kvm_vcpu_arch
` [PATCH v2 4/5] KVM: arm64: Exclude host_fpsimd_state pointer "
` [PATCH v2 5/5] KVM: arm64: Exclude FP ownership "

[PATCH] KVM: selftests: Fix __GUEST_ASSERT() format warnings in ARM's arch timer test
 2024-03-26 13:50 UTC  (2+ messages)

[PATCH] KVM: arm64: Change back kvm fault condition to translation
 2024-03-26 13:48 UTC  (2+ messages)
` (subset) "

[PATCH 0/3] KVM: arm64: PMU fixes for nVHE, protected mode
 2024-03-26 13:44 UTC  (2+ messages)
` (subset) "

[kvm-unit-tests PATCH v3 00/18] arm64: EFI improvements
 2024-03-26  9:03 UTC  (5+ messages)
` [kvm-unit-tests PATCH v3 08/18] arm64: efi: Improve device tree discovery

[PATCH 1/2] KVM: arm64: Fix the identification range for the FF-A smcs
 2024-03-26  8:42 UTC  (5+ messages)
` [PATCH 2/2] KVM: arm64: Allow only the specified FF-A calls to be forwarded to TZ

[PATCH v6 0/3] KVM: selftests: aarch64: Introduce pmu_event_filter_test
 2024-03-26  3:37 UTC  (4+ messages)
` [PATCH v6 1/3] KVM: selftests: aarch64: Add helper function for the vpmu vcpu creation
` [PATCH v6 2/3] KVM: selftests: aarch64: Introduce pmu_event_filter_test
` [PATCH v6 3/3] KVM: selftests: aarch64: Add invalid filter test in pmu_event_filter_test

[PATCH v5 0/3] KVM: selftests: aarch64: Introduce pmu_event_filter_test
 2024-03-26  3:06 UTC  (9+ messages)
` [PATCH v5 1/3] KVM: selftests: aarch64: Add helper function for the vpmu vcpu creation
` [PATCH v5 2/3] KVM: selftests: aarch64: Introduce pmu_event_filter_test
` [PATCH v5 3/3] KVM: selftests: aarch64: Add invalid filter test in pmu_event_filter_test

[PATCH v2] KVM: arm64: Add KVM_CAP to control WFx trapping
 2024-03-25 20:12 UTC  (4+ messages)

[PATCH][next] KVM: selftests: Fix spelling mistake "trigged" -> "triggered"
 2024-03-25  8:45 UTC  (2+ messages)

[RFC PATCH v4 00/15] ACPI/arm64: add support for virtual cpu hotplug
 2024-03-22 18:53 UTC  (4+ messages)
` [PATCH RFC v4 02/15] ACPI: processor: Register all CPUs from acpi_processor_get_info()

[RFC PATCH v3 0/5] Add PSCI v1.3 SYSTEM_OFF2 support for hibernation
 2024-03-22 17:33 UTC  (23+ messages)
` [RFC PATCH v3 1/5] firmware/psci: Add definitions for PSCI v1.3 specification (ALPHA)
` [RFC PATCH v3 2/5] KVM: arm64: Add support for PSCI v1.2 and v1.3
` [RFC PATCH v3 3/5] KVM: arm64: Add PSCI v1.3 SYSTEM_OFF2 function for hibernation
` [RFC PATCH v3 4/5] KVM: arm64: nvhe: Pass through PSCI v1.3 SYSTEM_OFF2 call
` [RFC PATCH v3 5/5] arm64: Use SYSTEM_OFF2 PSCI call to power off for hibernate

[PATCH] arm64: Fix early handling of FEAT_E2H0 not being implemented
 2024-03-21 23:34 UTC  (3+ messages)

[PATCH] KVM: arm64: Rationalise KVM banner output
 2024-03-21 17:37 UTC 

[PATCH v3 0/6] KVM: arm64: Hide unsupported MPAM from the guest
 2024-03-21 16:57 UTC  (7+ messages)
` [PATCH v3 1/6] arm64: head.S: Initialise MPAM EL2 registers and disable traps
` [PATCH v3 2/6] arm64: cpufeature: discover CPU support for MPAM
` [PATCH v3 3/6] KVM: arm64: Fix missing traps of guest accesses to the MPAM registers
` [PATCH v3 4/6] KVM: arm64: Disable MPAM visibility by default and ignore VMM writes
` [PATCH v3 5/6] KVM: arm64: selftests: Move the bulky macro invocation to a helper
` [PATCH v3 6/6] KVM: arm64: selftests: Test ID_AA64PFR0.MPAM isn't completely ignored

[PATCH v3 00/15] KVM/arm64: Add NV support for ERET and PAuth
 2024-03-21 15:53 UTC  (16+ messages)
` [PATCH v3 01/15] KVM: arm64: Harden __ctxt_sys_reg() against out-of-range values
` [PATCH v3 02/15] KVM: arm64: Add helpers for ESR_ELx_ERET_ISS_ERET*
` [PATCH v3 03/15] KVM: arm64: Constraint PAuth support to consistent implementations
` [PATCH v3 04/15] KVM: arm64: nv: Drop VCPU_HYP_CONTEXT flag
` [PATCH v3 05/15] KVM: arm64: nv: Configure HCR_EL2 for FEAT_NV2
` [PATCH v3 06/15] KVM: arm64: nv: Add trap forwarding for ERET and SMC
` [PATCH v3 07/15] KVM: arm64: nv: Fast-track 'InHost' exception returns
` [PATCH v3 08/15] KVM: arm64: nv: Honor HFGITR_EL2.ERET being set
` [PATCH v3 09/15] KVM: arm64: nv: Handle HCR_EL2.{API,APK} independently
` [PATCH v3 10/15] KVM: arm64: nv: Reinject PAC exceptions caused by HCR_EL2.API==0
` [PATCH v3 11/15] KVM: arm64: nv: Add kvm_has_pauth() helper
` [PATCH v3 12/15] KVM: arm64: nv: Add emulation for ERETAx instructions
` [PATCH v3 13/15] KVM: arm64: nv: Handle ERETA[AB] instructions
` [PATCH v3 14/15] KVM: arm64: nv: Advertise support for PAuth
` [PATCH v3 15/15] KVM: arm64: Drop trapping of PAuth instructions/keys

[PATCH v2 0/4] KVM: arm64: Hide unsupported MPAM from the guest
 2024-03-21 15:37 UTC  (6+ messages)

[PATCH v11 0/8] KVM: allow mapping non-refcounted pages
 2024-03-20 20:54 UTC  (13+ messages)

[PATCH v1 1/2] KVM: arm64: determine memory type from VMA
 2024-03-19 13:38 UTC  (11+ messages)

[kvm-unit-tests PATCH v7 33/35] configure: Make arch_libdir a first-class entity
 2024-03-19  7:59 UTC 

[RFC PATCH v2 0/4] arm64: Add PSCI v1.3 SYSTEM_OFF2 support for hibernation
 2024-03-18 18:36 UTC  (12+ messages)
` [RFC PATCH v2 2/4] KVM: arm64: Add PSCI SYSTEM_OFF2 function "


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 read-only IMAP folder(s) and NNTP newsgroup(s).