mbox series

[v2,0/4] arm64: Support perf event modifiers :G and :H

Message ID 1542723322-42536-1-git-send-email-andrew.murray@arm.com (mailing list archive)
Headers show
Series arm64: Support perf event modifiers :G and :H | expand

Message

Andrew Murray Nov. 20, 2018, 2:15 p.m. UTC
This patchset provides support for perf event modifiers :G and :H which
allows for filtering of PMU events between host and guests when used
with KVM.

As the underlying hardware cannot distinguish between guest and host
context, the performance counters must be stopped and started upon
entry/exit to the guest. This is performed at EL2 in a way that
minimizes overhead and improves accuracy of recording events that only
occur in the requested context.

This has been tested with VHE and non-VHE kernels with a KVM guest.

Changes from v1:

 - Removed unnecessary exclusion of EL1 with exclude_guest on VHE
 - Removed unnecessary isb from existing perf_event.c driver
 - Folded perf_event.c patches together
 - Added additional information to last patch commit message

Andrew Murray (4):
  arm64: arm_pmu: remove unnecessary isb instruction
  arm64: KVM: add accessors to track guest/host only counters
  arm64: arm_pmu: Add support for exclude_host/exclude_guest attributes
  arm64: KVM: Enable support for :G/:H perf event modifiers

 arch/arm64/include/asm/kvm_host.h | 20 +++++++++++++++++++
 arch/arm64/kernel/perf_event.c    | 42 ++++++++++++++++++++++++++++++++-------
 arch/arm64/kvm/hyp/switch.c       | 38 +++++++++++++++++++++++++++++++++++
 3 files changed, 93 insertions(+), 7 deletions(-)