Linux KVM/arm64 development list
 help / color / mirror / Atom feed
 messages from 2025-07-07 16:08:00 to 2025-07-14 14:21:03 UTC [more...]

[syzbot] [kvmarm?] WARNING in pend_sync_exception
 2025-07-14 14:21 UTC  (3+ messages)

[PATCH v3 00/10] perf: arm_spe: Armv8.8 SPE features
 2025-07-14 14:04 UTC  (15+ messages)
` [PATCH v3 01/10] arm64: sysreg: Add new PMSFCR_EL1 fields and PMSDSFR_EL1 register
` [PATCH v3 02/10] perf: arm_spe: Support FEAT_SPEv1p4 filters
` [PATCH v3 03/10] perf: arm_spe: Add support for FEAT_SPE_EFT extended filtering
` [PATCH v3 04/10] arm64/boot: Enable EL2 requirements for SPE_FEAT_FDS
` [PATCH v3 05/10] KVM: arm64: Add trap configs for PMSDSFR_EL1
` [PATCH v3 06/10] perf: Add perf_event_attr::config4
` [PATCH v3 07/10] perf: arm_spe: Add support for filtering on data source

[PATCH v4 0/6] KVM: arm64: Allow userspace to write GICD_TYPER2.nASSGIcap
 2025-07-14 12:59 UTC  (12+ messages)
` [PATCH v4 1/6] KVM: arm64: Disambiguate support for vSGIs v. vLPIs
` [PATCH v4 2/6] KVM: arm64: vgic-v3: Consolidate MAINT_IRQ handling
` [PATCH v4 3/6] KVM: arm64: vgic-v3: Allow access to GICD_IIDR prior to initialization
` [PATCH v4 4/6] KVM: arm64: vgic-v3: Allow userspace to write GICD_TYPER2.nASSGIcap
` [PATCH v4 5/6] KVM: arm64: selftests: Add test for nASSGIcap attribute
` [PATCH v4 6/6] Documentation: KVM: arm64: Describe VGICv3 registers writable pre-init

[PATCH 00/11] KVM: arm64: nv: Userspace register visibility fixes
 2025-07-14 12:26 UTC  (12+ messages)
` [PATCH 01/11] KVM: arm64: Make RVBAR_EL2 accesses UNDEF
` [PATCH 02/11] KVM: arm64: Don't advertise ICH_*_EL2 registers through GET_ONE_REG
` [PATCH 03/11] KVM: arm64: Define constant value for ICC_SRE_EL2
` [PATCH 04/11] KVM: arm64: Define helper for ICH_VTR_EL2
` [PATCH 05/11] KVM: arm64: Let GICv3 save/restore honor visibility attribute
` [PATCH 06/11] KVM: arm64: Expose GICv3 EL2 registers via KVM_DEV_ARM_VGIC_GRP_CPU_SYSREGS
` [PATCH 07/11] KVM: arm64: Condition FGT registers on feature availability
` [PATCH 08/11] KVM: arm64: Advertise FGT2 registers to userspace
` [PATCH 09/11] KVM: arm64: selftests: get-reg-list: Simplify feature dependency
` [PATCH 10/11] KVM: arm64: selftests: get-reg-list: Add base EL2 registers
` [PATCH 11/11] KVM: arm64: Document registers exposed via KVM_DEV_ARM_VGIC_GRP_CPU_SYSREGS

[PATCH 0/5] KVM: arm64: Config driven dependencies for TCR2/SCTLR/MDCR
 2025-07-14 11:55 UTC  (6+ messages)
` [PATCH 1/5] arm64: sysreg: Add THE/ASID2 controls to TCR2_ELx
` [PATCH 2/5] KVM: arm64: Convert TCR2_EL2 to config-driven sanitisation
` [PATCH 3/5] KVM: arm64: Convert SCTLR_EL1 "
` [PATCH 4/5] KVM: arm64: Convert MDCR_EL2 "
` [PATCH 5/5] KVM: arm64: Tighten the definition of FEAT_PMUv3p9

[PATCH v3 08/10] KVM: arm64: Handle FFA_MEM_LEND calls from the host
 2025-07-14  9:58 UTC  (6+ messages)

[PATCH v13 00/20] KVM: Enable host userspace mapping for guest_memfd-backed memory for non-CoCo VMs
 2025-07-14  8:04 UTC  (40+ messages)
` [PATCH v13 01/20] KVM: Rename CONFIG_KVM_PRIVATE_MEM to CONFIG_KVM_GMEM
` [PATCH v13 02/20] KVM: Rename CONFIG_KVM_GENERIC_PRIVATE_MEM to CONFIG_KVM_GENERIC_GMEM_POPULATE
` [PATCH v13 03/20] KVM: Introduce kvm_arch_supports_gmem()
` [PATCH v13 04/20] KVM: x86: Introduce kvm->arch.supports_gmem
` [PATCH v13 05/20] KVM: Rename kvm_slot_can_be_private() to kvm_slot_has_gmem()
` [PATCH v13 06/20] KVM: Fix comments that refer to slots_lock
` [PATCH v13 07/20] KVM: Fix comment that refers to kvm uapi header path
` [PATCH v13 08/20] KVM: guest_memfd: Allow host to map guest_memfd pages
` [PATCH v13 09/20] KVM: guest_memfd: Track guest_memfd mmap support in memslot
` [PATCH v13 10/20] KVM: x86/mmu: Generalize private_max_mapping_level x86 op to max_mapping_level
` [PATCH v13 11/20] KVM: x86/mmu: Allow NULL-able fault in kvm_max_private_mapping_level
` [PATCH v13 12/20] KVM: x86/mmu: Consult guest_memfd when computing max_mapping_level
` [PATCH v13 13/20] KVM: x86/mmu: Handle guest page faults for guest_memfd with shared memory
` [PATCH v13 14/20] KVM: x86: Enable guest_memfd mmap for default VM type
` [PATCH v13 15/20] KVM: arm64: Refactor user_mem_abort()
` [PATCH v13 16/20] KVM: arm64: Handle guest_memfd-backed guest page faults
` [PATCH v13 17/20] KVM: arm64: Enable host mapping of shared guest_memfd memory
` [PATCH v13 18/20] KVM: Introduce the KVM capability KVM_CAP_GMEM_MMAP
` [PATCH v13 19/20] KVM: selftests: Do not use hardcoded page sizes in guest_memfd test
` [PATCH v13 20/20] KVM: selftests: guest_memfd mmap() test when mmap is supported

[PATCH v3 08/10] KVM: arm64: Handle FFA_MEM_LEND calls from the host
 2025-07-14  1:49 UTC 

[PATCH v2 0/6] VMM can handle guest SEA via KVM_EXIT_ARM_SEA
 2025-07-13  2:42 UTC  (13+ messages)
` [PATCH v2 1/6] KVM: arm64: VM exit to userspace to handle SEA
` [PATCH v2 3/6] KVM: arm64: Allow userspace to inject external instruction aborts
` [PATCH v2 5/6] KVM: selftests: Test for KVM_CAP_INJECT_EXT_IABT

[syzbot] [kvmarm?] WARNING in pend_serror_exception
 2025-07-13  0:06 UTC 

[PATCH v3 08/10] KVM: arm64: Handle FFA_MEM_LEND calls from the host
 2025-07-12 13:55 UTC  (2+ messages)
` [QUESTION] "

[kvm-unit-tests PATCH v4 00/13] arm/arm64: Add kvmtool to the runner script
 2025-07-11 14:37 UTC  (5+ messages)
` [kvm-unit-tests PATCH v4 07/13] scripts: Add default arguments for kvmtool

[PATCH] KVM: arm64: fix u64_replace_bits() usage
 2025-07-11  9:13 UTC  (6+ messages)

[GIT PULL] KVM/arm64 fixes for 6.16, take #6
 2025-07-11  8:48 UTC 

[PATCH v5 0/5] KVM: x86: Provide a cap to disable APERF/MPERF read intercepts
 2025-07-10 23:08 UTC  (2+ messages)

[GIT PULL] KVM/arm64 fixes for 6.16, take #4
 2025-07-10 10:48 UTC  (4+ messages)

[RFC PATCH] tools: Remove obsolete 32-bit arm kvm.h header file
 2025-07-10 10:25 UTC 

[PATCH v9 00/43] arm64: Support for Arm CCA in KVM
 2025-07-10  5:24 UTC  (11+ messages)
` [PATCH v9 13/43] arm64: RME: Support for the VGIC in realms
` [PATCH v9 14/43] KVM: arm64: Support timers in realm RECs
` [PATCH v9 15/43] arm64: RME: Allow VMM to set RIPAS

[PATCH v2 00/14] stackleak: Support Clang stack depth tracking
 2025-07-10  1:57 UTC  (4+ messages)
` [PATCH v2 08/14] powerpc: Handle KCOV __init vs inline mismatches

[PATCH v2 00/15] Add KVM Selftests runner
 2025-07-10  0:20 UTC  (18+ messages)
` [PATCH v2 01/15] KVM: selftest: Create KVM selftest runner
` [PATCH v2 02/15] KVM: selftests: Enable selftests runner to find executables in different path
` [PATCH v2 03/15] KVM: selftests: Add timeout option in selftests runner
` [PATCH v2 04/15] KVM: selftests: Add option to save selftest runner output to a directory
` [PATCH v2 06/15] KVM: selftests: Add a flag to print only test status in KVM Selftests run
` [PATCH v2 07/15] KVM: selftests: Add various print flags to KVM Selftest Runner
` [PATCH v2 11/15] KVM: selftests: Auto generate default tests for KVM Selftests Runner

[PATCH 0/2] KVM: arm64: Fix + test for SError ESR
 2025-07-09 16:59 UTC  (4+ messages)
` [PATCH 1/2] KVM: arm64: Populate ESR_ELx.EC for emulated SError injection
` [PATCH 2/2] KVM: arm64: selftests: Test ESR propagation for vSError injection

[PATCH v2 0/2] Fix and add warning of misuse of type##_replace_bits()
 2025-07-09 15:33 UTC  (5+ messages)
` [PATCH v2 1/2] KVM: arm64: Fix enforcement of upper bound on MDCR_EL2.HPMN
  ` (subset) "
` [PATCH v2 2/2] bitfield: Ensure the return values of helper functions are checked

[PATCH v10 0/6] KVM: arm64: Map GPU device memory as cacheable
 2025-07-09 14:34 UTC  (4+ messages)

[PATCH v4 00/20] KVM: arm64: Rework timer offsetting for fun and profit
 2025-07-09  8:12 UTC  (3+ messages)
` [PATCH v4 05/20] KVM: arm64: timers: Allow physical offset without CNTPOFF_EL2

[PATCH] ARM64: errata: Add workaround for HIP10/HIP10C erratum 162200803
 2025-07-09  2:08 UTC  (9+ messages)

[PATCH v3 00/22] ARM64 PMU Partitioning
 2025-07-08 22:41 UTC  (14+ messages)
` [PATCH v3 02/22] arm64: Generate sign macro for sysreg Enums
` [PATCH v3 04/22] KVM: arm64: Cleanup PMU includes
` [PATCH v3 06/22] perf: arm_pmuv3: Introduce method to partition the PMU
` [PATCH v3 07/22] perf: arm_pmuv3: Generalize counter bitmasks

[PATCH v3 01/22] arm64: cpufeature: Add cpucap for HPMN0
 2025-07-08 22:34 UTC  (2+ messages)

[PATCH v2 0/5] KVM: arm64: Enable GICv3 guests on GICv5 hosts using FEAT_GCIE_LEGACY
 2025-07-08 22:24 UTC  (2+ messages)

[PATCH v3 00/27] KVM: arm64: SCTLR2, DoubleFault2, and NV external abort fixes
 2025-07-08 19:00 UTC  (30+ messages)
` [PATCH v3 01/27] arm64: Detect FEAT_SCTLR2
` [PATCH v3 02/27] arm64: Detect FEAT_DoubleFault2
` [PATCH v3 03/27] KVM: arm64: Add helper to identify a nested context
` [PATCH v3 04/27] KVM: arm64: Treat vCPU with pending SError as runnable
` [PATCH v3 05/27] KVM: arm64: nv: Respect exception routing rules for SEAs
` [PATCH v3 06/27] KVM: arm64: nv: Honor SError exception routing / masking
` [PATCH v3 07/27] KVM: arm64: nv: Add FEAT_RAS vSError sys regs to table
` [PATCH v3 08/27] KVM: arm64: nv: Use guest hypervisor's vSError state
` [PATCH v3 09/27] KVM: arm64: nv: Advertise support for FEAT_RAS
` [PATCH v3 10/27] KVM: arm64: nv: Describe trap behavior of SCTLR2_EL1
` [PATCH v3 11/27] KVM: arm64: Wire up SCTLR2_ELx sysreg descriptors
` [PATCH v3 12/27] KVM: arm64: Context switch SCTLR2_ELx when advertised to the guest
` [PATCH v3 13/27] KVM: arm64: Enable SCTLR2 "
` [PATCH v3 14/27] KVM: arm64: Describe SCTLR2_ELx RESx masks
` [PATCH v3 15/27] KVM: arm64: Factor out helper for selecting exception target EL
` [PATCH v3 16/27] KVM: arm64: nv: Ensure Address size faults affect correct ESR
` [PATCH v3 17/27] KVM: arm64: Route SEAs to the SError vector when EASE is set
` [PATCH v3 18/27] KVM: arm64: nv: Take "masked" aborts to EL2 when HCRX_EL2.TMEA "
` [PATCH v3 19/27] KVM: arm64: nv: Honor SError routing effects of SCTLR2_ELx.NMEA
` [PATCH v3 20/27] KVM: arm64: nv: Enable vSErrors when HCRX_EL2.TMEA is set
` [PATCH v3 21/27] KVM: arm64: Advertise support for FEAT_SCTLR2
` [PATCH v3 22/27] KVM: arm64: Advertise support for FEAT_DoubleFault2
` [PATCH v3 23/27] KVM: arm64: Don't retire MMIO instruction w/ pending (emulated) SError
` [PATCH v3 24/27] KVM: arm64: selftests: Add basic SError injection test
` [PATCH v3 25/27] KVM: arm64: selftests: Test SEAs are taken to SError vector when EASE=1
` [PATCH v3 26/27] KVM: arm64: selftests: Add SCTLR2_EL1 to get-reg-list
` [PATCH v3 27/27] KVM: arm64: selftests: Catch up set_id_regs with the kernel

[PATCH v23 0/4] arm64/perf: Enable branch stack sampling
 2025-07-08 18:02 UTC  (2+ messages)

[GIT PULL] KVM/arm64 fixes for 6.16, take #5
 2025-07-08 14:48 UTC  (2+ messages)

[PATCH 0/2] Fix and add warning of misuse of type##_replace_bits()
 2025-07-08 14:46 UTC  (6+ messages)
` [PATCH 2/2] bitfield: Ensure the return value of type##_replace_bits() is checked

[PATCH v12 10/18] KVM: x86/mmu: Handle guest page faults for guest_memfd with shared memory
 2025-07-08 13:44 UTC  (12+ messages)

[PATCH v9 0/6] KVM: arm64: Map GPU device memory as cacheable
 2025-07-08 12:47 UTC  (9+ messages)
` [PATCH v9 3/6] KVM: arm64: Block cacheable PFNMAP mapping

[kvm-unit-tests PATCH 0/2] riscv: Add kvmtool support
 2025-07-08  9:00 UTC  (8+ messages)
` [kvm-unit-tests PATCH 1/2] arm/arm64: Ensure proper host arch with kvmtool
` [kvm-unit-tests PATCH 2/2] riscv: Add kvmtool support

[PATCH v7 0/5] KVM: arm64: Support FF-A 1.2 and SEND_DIRECT2 ABI
 2025-07-08  0:06 UTC  (4+ messages)
` [PATCH v7 2/5] KVM: arm64: Use SMCCC 1.2 for FF-A initialization and in host handler


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