Linux KVM/arm64 development list
 help / color / mirror / Atom feed
 messages from 2024-03-21 15:54:32 to 2024-04-02 07:00:34 UTC [more...]

[PATCH v3 0/7] mm/kvm: Improve parallelism for access bit harvesting
 2024-04-02  7:00 UTC  (10+ messages)
` [PATCH v3 1/7] mm: Add a bitmap into mmu_notifier_{clear,test}_young
` [PATCH v3 2/7] KVM: Move MMU notifier function declarations
` [PATCH v3 3/7] KVM: Add basic bitmap support into kvm_mmu_notifier_test/clear_young
` [PATCH v3 4/7] KVM: x86: Move tdp_mmu_enabled and shadow_accessed_mask
` [PATCH v3 5/7] KVM: x86: Participate in bitmap-based PTE aging
` [PATCH v3 6/7] KVM: arm64: "
` [PATCH v3 7/7] mm: multi-gen LRU: use mmu_notifier_test_clear_young()

[GIT PULL] KVM/arm64 fixes for 6.9, part #1
 2024-04-02  6:45 UTC 

[PATCH] KVM: arm64: Rationalise KVM banner output
 2024-04-01  8:47 UTC  (2+ messages)

[PATCH] arm64: Fix early handling of FEAT_E2H0 not being implemented
 2024-04-01  8:46 UTC  (4+ messages)

[PATCH v2 0/4] KVM: arm64: TLBI fixes for the pgtable code
 2024-04-01  8:46 UTC  (8+ 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 v6 0/5] KVM: arm64: Support for 2023 dpISA extensions
 2024-03-31 10:59 UTC  (8+ messages)
` [PATCH v6 1/5] KVM: arm64: Share all userspace hardened thread data with the hypervisor
` [PATCH v6 2/5] KVM: arm64: Add newly allocated ID registers to register descriptions
` [PATCH v6 3/5] KVM: arm64: Support FEAT_FPMR for guests
` [PATCH v6 4/5] KVM: arm64: selftests: Document feature registers added in 2023 extensions
` [PATCH v6 5/5] KVM: arm64: selftests: Teach get-reg-list about FPMR

[RFC] KVM: arm64: improving IO performance during unmap?
 2024-03-30 10:17 UTC  (5+ messages)
` [PATCH] KVM: arm64: Limit stage2_apply_range() batch size to smallest block

folio_mmapped
 2024-03-29 18:38 UTC  (28+ messages)
                    ` folio_mmapped
                        `  "

[PATCH v1 00/44] KVM: arm64: Preamble for pKVM
 2024-03-28 19:20 UTC  (50+ 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 1/2] KVM: arm64: Fix the identification range for the FF-A smcs
 2024-03-28 13:59 UTC  (6+ messages)
` [PATCH 2/2] KVM: arm64: Allow only the specified FF-A calls to be forwarded to TZ

[PATCH v2] KVM: arm64: Add KVM_CAP to control WFx trapping
 2024-03-28 10:30 UTC  (5+ messages)

[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

[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 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  (4+ messages)
` [PATCH v5 2/3] "

[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  (19+ messages)
` [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 5/5] arm64: Use SYSTEM_OFF2 PSCI call to power off for hibernate

[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  (12+ messages)
` [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


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