messages from 2025-12-02 09:36:46 to 2025-12-09 21:33:17 UTC [more...]
[PATCH v5 00/24] ARM64 PMU Partitioning
2025-12-09 21:33 UTC (29+ messages)
` [PATCH v5 01/24] arm64: cpufeature: Add cpucap for HPMN0
` [PATCH v5 02/24] KVM: arm64: Move arm_{psci,hypercalls}.h to an internal KVM path
` [PATCH v5 03/24] KVM: arm64: Include KVM headers to get forward declarations
` [PATCH v5 04/24] KVM: arm64: Move ARM specific headers in include/kvm to arch directory
` [PATCH v5 05/24] KVM: arm64: Reorganize PMU includes
` [PATCH v5 06/24] KVM: arm64: Reorganize PMU functions
` [PATCH v5 07/24] perf: arm_pmuv3: Introduce method to partition the PMU
` [PATCH v5 08/24] perf: arm_pmuv3: Generalize counter bitmasks
` [PATCH v5 09/24] perf: arm_pmuv3: Keep out of guest counter partition
` [PATCH v5 10/24] KVM: arm64: Set up FGT for Partitioned PMU
` [PATCH v5 11/24] KVM: arm64: Writethrough trapped PMEVTYPER register
` [PATCH v5 12/24] KVM: arm64: Use physical PMSELR for PMXEVTYPER if partitioned
` [PATCH v5 13/24] KVM: arm64: Writethrough trapped PMOVS register
` [PATCH v5 14/24] KVM: arm64: Write fast path PMU register handlers
` [PATCH v5 15/24] KVM: arm64: Setup MDCR_EL2 to handle a partitioned PMU
` [PATCH v5 16/24] KVM: arm64: Account for partitioning in PMCR_EL0 access
` [PATCH v5 17/24] KVM: arm64: Context swap Partitioned PMU guest registers
` [PATCH v5 18/24] KVM: arm64: Enforce PMU event filter at vcpu_load()
` [PATCH v5 19/24] KVM: arm64: Implement lazy PMU context swaps
` [PATCH v5 20/24] perf: arm_pmuv3: Handle IRQs for Partitioned PMU guest counters
` [PATCH v5 21/24] KVM: arm64: Inject recorded guest interrupts
` [PATCH v5 22/24] KVM: arm64: Add KVM_CAP to partition the PMU
` [PATCH v5 23/24] KVM: selftests: Add find_bit to KVM library
` [PATCH v5 24/24] KVM: arm64: selftests: Add test case for partitioned PMU
[PATCH v6 00/44] KVM: x86: Add support for mediated vPMUs
2025-12-09 17:37 UTC (59+ messages)
` [PATCH v6 01/44] perf: Skip pmu_ctx based on event_type
` [PATCH v6 02/44] perf: Add generic exclude_guest support
` [PATCH v6 03/44] perf: Move security_perf_event_free() call to __free_event()
` [PATCH v6 04/44] perf: Add APIs to create/release mediated guest vPMUs
` [PATCH v6 05/44] perf: Clean up perf ctx time
` [PATCH v6 06/44] perf: Add a EVENT_GUEST flag
` [PATCH v6 07/44] perf: Add APIs to load/put guest mediated PMU context
` [PATCH v6 08/44] perf/x86/core: Register a new vector for handling mediated guest PMIs
` [PATCH v6 09/44] perf/x86/core: Add APIs to switch to/from mediated PMI vector (for KVM)
` [PATCH v6 10/44] perf/x86/core: Do not set bit width for unavailable counters
` [PATCH v6 11/44] perf/x86/core: Plumb mediated PMU capability from x86_pmu to x86_pmu_cap
` [PATCH v6 12/44] perf/x86/intel: Support PERF_PMU_CAP_MEDIATED_VPMU
` [PATCH v6 13/44] perf/x86/amd: Support PERF_PMU_CAP_MEDIATED_VPMU for AMD host
` [PATCH v6 14/44] KVM: Add a simplified wrapper for registering perf callbacks
` [PATCH v6 15/44] KVM: x86/pmu: Snapshot host (i.e. perf's) reported PMU capabilities
` [PATCH v6 16/44] KVM: x86/pmu: Start stubbing in mediated PMU support
` [PATCH v6 17/44] KVM: x86/pmu: Implement Intel mediated PMU requirements and constraints
` [PATCH v6 18/44] KVM: x86/pmu: Implement AMD mediated PMU requirements
` [PATCH v6 19/44] KVM: x86/pmu: Register PMI handler for mediated vPMU
` [PATCH v6 20/44] KVM: x86/pmu: Disable RDPMC interception for compatible "
` [PATCH v6 21/44] KVM: x86/pmu: Load/save GLOBAL_CTRL via entry/exit fields for mediated PMU
` [PATCH v6 22/44] KVM: x86/pmu: Disable interception of select PMU MSRs for mediated vPMUs
` [PATCH v6 23/44] KVM: x86/pmu: Bypass perf checks when emulating mediated PMU counter accesses
` [PATCH v6 24/44] KVM: x86/pmu: Introduce eventsel_hw to prepare for pmu event filtering
` [PATCH v6 25/44] KVM: x86/pmu: Reprogram mediated PMU event selectors on event filter updates
` [PATCH v6 26/44] KVM: x86/pmu: Always stuff GuestOnly=1,HostOnly=0 for mediated PMCs on AMD
` [PATCH v6 27/44] KVM: x86/pmu: Load/put mediated PMU context when entering/exiting guest
` [PATCH v6 28/44] KVM: x86/pmu: Disallow emulation in the fastpath if mediated PMCs are active
` [PATCH v6 29/44] KVM: x86/pmu: Handle emulated instruction for mediated vPMU
` [PATCH v6 30/44] KVM: nVMX: Add macros to simplify nested MSR interception setting
` [PATCH v6 31/44] KVM: nVMX: Disable PMU MSR interception as appropriate while running L2
` [PATCH v6 32/44] KVM: nSVM: "
` [PATCH v6 33/44] KVM: x86/pmu: Expose enable_mediated_pmu parameter to user space
` [PATCH v6 34/44] KVM: x86/pmu: Elide WRMSRs when loading guest PMCs if values already match
` [PATCH v6 35/44] KVM: VMX: Drop intermediate "guest" field from msr_autostore
` [PATCH v6 36/44] KVM: nVMX: Don't update msr_autostore count when saving TSC for vmcs12
` [PATCH v6 37/44] KVM: VMX: Dedup code for removing MSR from VMCS's auto-load list
` [PATCH v6 38/44] KVM: VMX: Drop unused @entry_only param from add_atomic_switch_msr()
` [PATCH v6 39/44] KVM: VMX: Bug the VM if either MSR auto-load list is full
` [PATCH v6 40/44] KVM: VMX: Set MSR index auto-load entry if and only if entry is "new"
` [PATCH v6 41/44] KVM: VMX: Compartmentalize adding MSRs to host vs. guest auto-load list
` [PATCH v6 42/44] KVM: VMX: Dedup code for adding MSR to VMCS's auto list
` [PATCH v6 43/44] KVM: VMX: Initialize vmcs01.VM_EXIT_MSR_STORE_ADDR with list address
` [PATCH v6 44/44] KVM: VMX: Add mediated PMU support for CPUs without "save perf global ctrl"
[PATCH 0/2] Enable GICv5 Legacy CPUIF trapping & fix TDIR cap test
2025-12-08 15:53 UTC (5+ messages)
` [PATCH 1/2] KVM: arm64: gic: Enable GICv3 CPUIF trapping on GICv5 hosts if required
` [PATCH 2/2] KVM: arm64: Correct test for ICH_HCR_EL2_TDIR cap for GICv5 hosts
[PATCH] KVM: Remove subtle "struct kvm_stats_desc" pseudo-overlay
2025-12-08 10:42 UTC (6+ messages)
[PATCH v8 00/13] Direct Map Removal Support for guest_memfd
2025-12-08 9:10 UTC (22+ messages)
` [PATCH v8 01/13] x86: export set_direct_map_valid_noflush to KVM module
` [PATCH v8 02/13] x86/tlb: export flush_tlb_kernel_range "
` [PATCH v8 03/13] mm: introduce AS_NO_DIRECT_MAP
` [PATCH v8 04/13] KVM: guest_memfd: Add stub for kvm_arch_gmem_invalidate
` [PATCH v8 05/13] KVM: guest_memfd: Add flag to remove from direct map
` [PATCH v8 06/13] KVM: x86: define kvm_arch_gmem_supports_no_direct_map()
` [PATCH v8 07/13] KVM: arm64: "
` [PATCH v8 08/13] KVM: selftests: load elf via bounce buffer
` [PATCH v8 09/13] KVM: selftests: set KVM_MEM_GUEST_MEMFD in vm_mem_add() if guest_memfd != -1
` [PATCH v8 10/13] KVM: selftests: Add guest_memfd based vm_mem_backing_src_types
` [PATCH v8 11/13] KVM: selftests: cover GUEST_MEMFD_FLAG_NO_DIRECT_MAP in existing selftests
` [PATCH v8 12/13] KVM: selftests: stuff vm_mem_backing_src_type into vm_shape
` [PATCH v8 13/13] KVM: selftests: Test guest execution from direct map removed gmem
[PATCH v3 0/3] KVM ARM64 pre_fault_memory
2025-12-05 17:33 UTC (3+ messages)
` [PATCH v3 2/3] KVM: selftests: Enable pre_fault_memory_test for arm64
[PATCH v7 03/12] mm: introduce AS_NO_DIRECT_MAP
2025-12-05 17:24 UTC (8+ messages)
` [PATCH v7 04/12] KVM: guest_memfd: Add stub for kvm_arch_gmem_invalidate
` [PATCH v7 05/12] KVM: guest_memfd: Add flag to remove from direct map
` [PATCH v7 12/12] KVM: selftests: Test guest execution from direct map removed gmem
[PATCH v1 0/5] KVM: arm64: Enforce MTE disablement at EL2
2025-12-05 17:00 UTC (3+ messages)
[PATCH v7 0/7] Add support for FEAT_{LS64, LS64_V} and related tests
2025-12-05 7:09 UTC (13+ messages)
` [PATCH v7 5/7] arm64: Add support for FEAT_{LS64, LS64_V}
[PATCH v3 0/9] KVM: arm64: Add support for FEAT_IDST
2025-12-05 6:25 UTC (21+ messages)
` [PATCH v3 1/9] arm64: Repaint ID_AA64MMFR2_EL1.IDS description
` [PATCH v3 2/9] KVM: arm64: Add trap routing for GMID_EL1
` [PATCH v3 3/9] KVM: arm64: Add a generic synchronous exception injection primitive
` [PATCH v3 4/9] KVM: arm64: Handle FEAT_IDST for sysregs without specific handlers
` [PATCH v3 5/9] KVM: arm64: Handle CSSIDR2_EL1 and SMIDR_EL1 in a generic way
` [PATCH v3 6/9] KVM: arm64: Force trap of GMID_EL1 when the guest doesn't have MTE
` [PATCH v3 7/9] KVM: arm64: pkvm: Add a generic synchronous exception injection primitive
` [PATCH v3 8/9] KVM: arm64: pkvm: Report optional ID register traps with a 0x18 syndrome
` [PATCH v3 9/9] KVM: arm64: selftests: Add a test for FEAT_IDST
[kvm-unit-tests PATCH v4 00/11] arm64: EL2 support
2025-12-04 17:17 UTC (15+ messages)
` [kvm-unit-tests PATCH v4 01/11] arm64: set SCTLR_EL1 to a known value for secondary cores
` [kvm-unit-tests PATCH v4 02/11] arm64: drop to EL1 if booted at EL2
` [kvm-unit-tests PATCH v4 03/11] arm64: efi: initialise SCTLR_ELx fully
` [kvm-unit-tests PATCH v4 04/11] arm64: efi: initialise the EL
` [kvm-unit-tests PATCH v4 05/11] arm64: timer: use hypervisor timers when at EL2
` [kvm-unit-tests PATCH v4 06/11] arm64: micro-bench: fix timer IRQ
` [kvm-unit-tests PATCH v4 07/11] arm64: micro-bench: use smc when at EL2
` [kvm-unit-tests PATCH v4 08/11] arm64: selftest: update test for running "
` [kvm-unit-tests PATCH v4 09/11] arm64: pmu: count EL2 cycles
` [kvm-unit-tests PATCH v4 10/11] arm64: run at EL2 if supported
` [kvm-unit-tests PATCH v4 11/11] arm64: add EL2 environment variable
[PATCH 00/10] KVM: selftests: Convert to kernel-style types
2025-12-04 0:04 UTC (5+ messages)
[PATCH 0/4] KVM: arm64: VTCR_EL2 conversion to feature dependency framework
2025-12-03 16:43 UTC (11+ messages)
` [PATCH 2/4] arm64: Convert VTCR_EL2 to sysreg infratructure
` [PATCH 4/4] KVM: arm64: Convert VTCR_EL2 to config-driven sanitisation
[GIT PULL] KVM/arm64 updates for 6.19
2025-12-02 17:36 UTC (2+ messages)
[PATCH] KVM: selftests: Fix core dump in rseq_test
2025-12-02 17:05 UTC (2+ messages)
[PATCH v4 0/2] arm: add kvm-psci-version vcpu property
2025-12-02 16:08 UTC (3+ messages)
` [PATCH v4 1/2] target/arm/kvm: add constants for new PSCI versions
` [PATCH v4 2/2] target/arm/kvm: add kvm-psci-version vcpu property
[kvm-unit-tests PATCH v3 00/10] arm64: EL2 support
2025-12-02 14:22 UTC (15+ messages)
` [kvm-unit-tests PATCH v3 07/10] arm64: selftest: update test for running at EL2
` [kvm-unit-tests PATCH v3 08/10] arm64: pmu: count EL2 cycles
` [kvm-unit-tests PATCH v3 09/10] arm64: run at EL2 if supported
[PATCH v9 00/30] Tracefs support for pKVM
2025-12-02 9:36 UTC (18+ messages)
` [PATCH v9 14/30] tracing: Add a trace remote module for testing
` [PATCH v9 15/30] tracing: selftests: Add trace remote tests
` [PATCH v9 16/30] Documentation: tracing: Add tracing remotes
` [PATCH v9 17/30] tracing: load/unload page callbacks for simple_ring_buffer
` [PATCH v9 18/30] tracing: Check for undefined symbols in simple_ring_buffer
` [PATCH v9 19/30] KVM: arm64: Add PKVM_DISABLE_STAGE2_ON_PANIC
` [PATCH v9 20/30] KVM: arm64: Add clock support to nVHE/pKVM hyp
` [PATCH v9 21/30] KVM: arm64: Initialise hyp_nr_cpus for nVHE hyp
` [PATCH v9 22/30] KVM: arm64: Support unaligned fixmap in the pKVM hyp
` [PATCH v9 23/30] KVM: arm64: Add tracing capability for the nVHE/pKVM hyp
` [PATCH v9 24/30] KVM: arm64: Add trace remote "
` [PATCH v9 25/30] KVM: arm64: Sync boot clock with "
` [PATCH v9 26/30] KVM: arm64: Add trace reset to "
` [PATCH v9 27/30] KVM: arm64: Add event support to the nVHE/pKVM hyp and trace remote
` [PATCH v9 28/30] KVM: arm64: Add hyp_enter/hyp_exit events to nVHE/pKVM hyp
` [PATCH v9 29/30] KVM: arm64: Add selftest event support "
` [PATCH v9 30/30] tracing: selftests: Add hypervisor trace remote tests
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox