Message ID | 1544610573-28446-5-git-send-email-andrew.murray@arm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | arm64: Support perf event modifiers :G and :H | expand |
On 12/12/2018 10:29, Andrew Murray wrote: > Add support for the :G and :H attributes in perf by handling the > exclude_host/exclude_guest event attributes. > > We notify KVM of counters that we wish to be enabled or disabled on > guest entry/exit and thus defer from starting or stopping :G events > as per the events exclude_host attribute. > > With both VHE and non-VHE we switch the counters between host/guest > at EL2. We are able to eliminate counters counting host events on > the boundaries of guest entry/exit when using :G by filtering out > EL2 for exclude_host. However when using :H unless exclude_hv is set > on non-VHE then there is a small blackout window at the guest > entry/exit where host events are not captured. > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > --- > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > 1 file changed, 44 insertions(+), 7 deletions(-) > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > index de564ae..4a3c73d 100644 > --- a/arch/arm64/kernel/perf_event.c > +++ b/arch/arm64/kernel/perf_event.c > @@ -26,6 +26,7 @@ > > #include <linux/acpi.h> > #include <linux/clocksource.h> > +#include <linux/kvm_host.h> > #include <linux/of.h> > #include <linux/perf/arm_pmu.h> > #include <linux/platform_device.h> > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > { > + struct perf_event_attr *attr = &event->attr; > int idx = event->hw.idx; > + int flags = 0; > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > - armv8pmu_enable_counter(idx); > if (armv8pmu_event_is_chained(event)) > - armv8pmu_enable_counter(idx - 1); > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > + > + if (!attr->exclude_host) > + flags |= KVM_PMU_EVENTS_HOST; > + if (!attr->exclude_guest) > + flags |= KVM_PMU_EVENTS_GUEST; > + > + kvm_set_pmu_events(counter_bits, flags); > + > + if (!attr->exclude_host) { > + armv8pmu_enable_counter(idx); > + if (armv8pmu_event_is_chained(event)) > + armv8pmu_enable_counter(idx - 1); > + } > } > > static inline int armv8pmu_disable_counter(int idx) > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > { > struct hw_perf_event *hwc = &event->hw; > + struct perf_event_attr *attr = &event->attr; > int idx = hwc->idx; > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > if (armv8pmu_event_is_chained(event)) > - armv8pmu_disable_counter(idx - 1); > - armv8pmu_disable_counter(idx); > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > + > + kvm_clr_pmu_events(counter_bits); > + > + if (!attr->exclude_host) { > + if (armv8pmu_event_is_chained(event)) > + armv8pmu_disable_counter(idx - 1); > + armv8pmu_disable_counter(idx); > + } Shouldn't we disable the events, irrespective of whether it is for host or/and guest ? Otherwise looks good to me. Cheers Suzuki
On 12/12/2018 10:42, Suzuki K Poulose wrote: > > > On 12/12/2018 10:29, Andrew Murray wrote: >> Add support for the :G and :H attributes in perf by handling the >> exclude_host/exclude_guest event attributes. >> >> We notify KVM of counters that we wish to be enabled or disabled on >> guest entry/exit and thus defer from starting or stopping :G events >> as per the events exclude_host attribute. >> >> With both VHE and non-VHE we switch the counters between host/guest >> at EL2. We are able to eliminate counters counting host events on >> the boundaries of guest entry/exit when using :G by filtering out >> EL2 for exclude_host. However when using :H unless exclude_hv is set >> on non-VHE then there is a small blackout window at the guest >> entry/exit where host events are not captured. >> >> Signed-off-by: Andrew Murray <andrew.murray@arm.com> >> --- >> arch/arm64/kernel/perf_event.c | 51 >> ++++++++++++++++++++++++++++++++++++------ >> 1 file changed, 44 insertions(+), 7 deletions(-) >> >> diff --git a/arch/arm64/kernel/perf_event.c >> b/arch/arm64/kernel/perf_event.c >> index de564ae..4a3c73d 100644 >> --- a/arch/arm64/kernel/perf_event.c >> +++ b/arch/arm64/kernel/perf_event.c >> @@ -26,6 +26,7 @@ >> #include <linux/acpi.h> >> #include <linux/clocksource.h> >> +#include <linux/kvm_host.h> >> #include <linux/of.h> >> #include <linux/perf/arm_pmu.h> >> #include <linux/platform_device.h> >> @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) >> static inline void armv8pmu_enable_event_counter(struct perf_event >> *event) >> { >> + struct perf_event_attr *attr = &event->attr; >> int idx = event->hw.idx; >> + int flags = 0; >> + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); >> - armv8pmu_enable_counter(idx); >> if (armv8pmu_event_is_chained(event)) >> - armv8pmu_enable_counter(idx - 1); >> + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); >> + >> + if (!attr->exclude_host) >> + flags |= KVM_PMU_EVENTS_HOST; >> + if (!attr->exclude_guest) >> + flags |= KVM_PMU_EVENTS_GUEST; >> + >> + kvm_set_pmu_events(counter_bits, flags); >> + >> + if (!attr->exclude_host) { >> + armv8pmu_enable_counter(idx); >> + if (armv8pmu_event_is_chained(event)) >> + armv8pmu_enable_counter(idx - 1); >> + } >> } >> static inline int armv8pmu_disable_counter(int idx) >> @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) >> static inline void armv8pmu_disable_event_counter(struct perf_event >> *event) >> { >> struct hw_perf_event *hwc = &event->hw; >> + struct perf_event_attr *attr = &event->attr; >> int idx = hwc->idx; >> + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); >> if (armv8pmu_event_is_chained(event)) >> - armv8pmu_disable_counter(idx - 1); >> - armv8pmu_disable_counter(idx); >> + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); >> + >> + kvm_clr_pmu_events(counter_bits); >> + >> + if (!attr->exclude_host) { >> + if (armv8pmu_event_is_chained(event)) >> + armv8pmu_disable_counter(idx - 1); >> + armv8pmu_disable_counter(idx); >> + } > > Shouldn't we disable the events, irrespective of whether it is for host > or/and guest ? Otherwise looks good to me. > I made the opposite remark on one of the early version. My reasoning is that, if we rely on the hypervisor to enable event that exclude the host, we should also rely on the hypervisor disabling these events. At least in my mind it makes more sense this way. Cheers,
On 12/12/2018 10:47, Julien Thierry wrote: > > > On 12/12/2018 10:42, Suzuki K Poulose wrote: >> >> >> On 12/12/2018 10:29, Andrew Murray wrote: >>> Add support for the :G and :H attributes in perf by handling the >>> exclude_host/exclude_guest event attributes. >>> >>> We notify KVM of counters that we wish to be enabled or disabled on >>> guest entry/exit and thus defer from starting or stopping :G events >>> as per the events exclude_host attribute. >>> >>> With both VHE and non-VHE we switch the counters between host/guest >>> at EL2. We are able to eliminate counters counting host events on >>> the boundaries of guest entry/exit when using :G by filtering out >>> EL2 for exclude_host. However when using :H unless exclude_hv is set >>> on non-VHE then there is a small blackout window at the guest >>> entry/exit where host events are not captured. >>> >>> Signed-off-by: Andrew Murray <andrew.murray@arm.com> >>> --- >>> arch/arm64/kernel/perf_event.c | 51 >>> ++++++++++++++++++++++++++++++++++++------ >>> 1 file changed, 44 insertions(+), 7 deletions(-) >>> >>> diff --git a/arch/arm64/kernel/perf_event.c >>> b/arch/arm64/kernel/perf_event.c >>> index de564ae..4a3c73d 100644 >>> --- a/arch/arm64/kernel/perf_event.c >>> +++ b/arch/arm64/kernel/perf_event.c >>> @@ -26,6 +26,7 @@ >>> #include <linux/acpi.h> >>> #include <linux/clocksource.h> >>> +#include <linux/kvm_host.h> >>> #include <linux/of.h> >>> #include <linux/perf/arm_pmu.h> >>> #include <linux/platform_device.h> >>> @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) >>> static inline void armv8pmu_enable_event_counter(struct perf_event >>> *event) >>> { >>> + struct perf_event_attr *attr = &event->attr; >>> int idx = event->hw.idx; >>> + int flags = 0; >>> + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); >>> - armv8pmu_enable_counter(idx); >>> if (armv8pmu_event_is_chained(event)) >>> - armv8pmu_enable_counter(idx - 1); >>> + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); >>> + >>> + if (!attr->exclude_host) >>> + flags |= KVM_PMU_EVENTS_HOST; >>> + if (!attr->exclude_guest) >>> + flags |= KVM_PMU_EVENTS_GUEST; >>> + >>> + kvm_set_pmu_events(counter_bits, flags); >>> + >>> + if (!attr->exclude_host) { >>> + armv8pmu_enable_counter(idx); >>> + if (armv8pmu_event_is_chained(event)) >>> + armv8pmu_enable_counter(idx - 1); >>> + } >>> } >>> static inline int armv8pmu_disable_counter(int idx) >>> @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) >>> static inline void armv8pmu_disable_event_counter(struct perf_event >>> *event) >>> { >>> struct hw_perf_event *hwc = &event->hw; >>> + struct perf_event_attr *attr = &event->attr; >>> int idx = hwc->idx; >>> + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); >>> if (armv8pmu_event_is_chained(event)) >>> - armv8pmu_disable_counter(idx - 1); >>> - armv8pmu_disable_counter(idx); >>> + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); >>> + >>> + kvm_clr_pmu_events(counter_bits); >>> + >>> + if (!attr->exclude_host) { >>> + if (armv8pmu_event_is_chained(event)) >>> + armv8pmu_disable_counter(idx - 1); >>> + armv8pmu_disable_counter(idx); >>> + } >> >> Shouldn't we disable the events, irrespective of whether it is for host >> or/and guest ? Otherwise looks good to me. >> > > I made the opposite remark on one of the early version. My reasoning is > that, if we rely on the hypervisor to enable event that exclude the > host, we should also rely on the hypervisor disabling these events. > > At least in my mind it makes more sense this way. Ah! ok. Makes sense. I was thinking about something similar in the way we apply the filters (set/clr) in the KVM hook. It may make sense to add in a comment. Sorry for the noise. Suzuki
On 12/12/2018 10:29, Andrew Murray wrote: > Add support for the :G and :H attributes in perf by handling the > exclude_host/exclude_guest event attributes. > > We notify KVM of counters that we wish to be enabled or disabled on > guest entry/exit and thus defer from starting or stopping :G events > as per the events exclude_host attribute. > > With both VHE and non-VHE we switch the counters between host/guest > at EL2. We are able to eliminate counters counting host events on > the boundaries of guest entry/exit when using :G by filtering out > EL2 for exclude_host. However when using :H unless exclude_hv is set > on non-VHE then there is a small blackout window at the guest > entry/exit where host events are not captured. > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > --- > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > 1 file changed, 44 insertions(+), 7 deletions(-) > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > index de564ae..4a3c73d 100644 > --- a/arch/arm64/kernel/perf_event.c > +++ b/arch/arm64/kernel/perf_event.c > @@ -26,6 +26,7 @@ > > #include <linux/acpi.h> > #include <linux/clocksource.h> > +#include <linux/kvm_host.h> > #include <linux/of.h> > #include <linux/perf/arm_pmu.h> > #include <linux/platform_device.h> > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > { > + struct perf_event_attr *attr = &event->attr; > int idx = event->hw.idx; > + int flags = 0; > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > - armv8pmu_enable_counter(idx); > if (armv8pmu_event_is_chained(event)) > - armv8pmu_enable_counter(idx - 1); > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > + > + if (!attr->exclude_host) > + flags |= KVM_PMU_EVENTS_HOST; > + if (!attr->exclude_guest) > + flags |= KVM_PMU_EVENTS_GUEST; > + > + kvm_set_pmu_events(counter_bits, flags); > + > + if (!attr->exclude_host) { > + armv8pmu_enable_counter(idx); > + if (armv8pmu_event_is_chained(event)) > + armv8pmu_enable_counter(idx - 1); > + } > } > > static inline int armv8pmu_disable_counter(int idx) > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > { > struct hw_perf_event *hwc = &event->hw; > + struct perf_event_attr *attr = &event->attr; > int idx = hwc->idx; > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > if (armv8pmu_event_is_chained(event)) > - armv8pmu_disable_counter(idx - 1); > - armv8pmu_disable_counter(idx); > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > + > + kvm_clr_pmu_events(counter_bits); > + > + if (!attr->exclude_host) { > + if (armv8pmu_event_is_chained(event)) > + armv8pmu_disable_counter(idx - 1); > + armv8pmu_disable_counter(idx); > + } It may be helpful to add in a comment why we do this only for !exclude_host. Either way, Reviewed-by: Suzuki K Poulose <suzuki.poulose@arm.com>
On Wed, Dec 12, 2018 at 10:55:33AM +0000, Suzuki K Poulose wrote: > > > On 12/12/2018 10:29, Andrew Murray wrote: > > Add support for the :G and :H attributes in perf by handling the > > exclude_host/exclude_guest event attributes. > > > > We notify KVM of counters that we wish to be enabled or disabled on > > guest entry/exit and thus defer from starting or stopping :G events > > as per the events exclude_host attribute. > > > > With both VHE and non-VHE we switch the counters between host/guest > > at EL2. We are able to eliminate counters counting host events on > > the boundaries of guest entry/exit when using :G by filtering out > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > on non-VHE then there is a small blackout window at the guest > > entry/exit where host events are not captured. > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > --- > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > index de564ae..4a3c73d 100644 > > --- a/arch/arm64/kernel/perf_event.c > > +++ b/arch/arm64/kernel/perf_event.c > > @@ -26,6 +26,7 @@ > > #include <linux/acpi.h> > > #include <linux/clocksource.h> > > +#include <linux/kvm_host.h> > > #include <linux/of.h> > > #include <linux/perf/arm_pmu.h> > > #include <linux/platform_device.h> > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > { > > + struct perf_event_attr *attr = &event->attr; > > int idx = event->hw.idx; > > + int flags = 0; > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > - armv8pmu_enable_counter(idx); > > if (armv8pmu_event_is_chained(event)) > > - armv8pmu_enable_counter(idx - 1); > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > + > > + if (!attr->exclude_host) > > + flags |= KVM_PMU_EVENTS_HOST; > > + if (!attr->exclude_guest) > > + flags |= KVM_PMU_EVENTS_GUEST; > > + > > + kvm_set_pmu_events(counter_bits, flags); > > + > > + if (!attr->exclude_host) { > > + armv8pmu_enable_counter(idx); > > + if (armv8pmu_event_is_chained(event)) > > + armv8pmu_enable_counter(idx - 1); > > + } > > } > > static inline int armv8pmu_disable_counter(int idx) > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > { > > struct hw_perf_event *hwc = &event->hw; > > + struct perf_event_attr *attr = &event->attr; > > int idx = hwc->idx; > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > if (armv8pmu_event_is_chained(event)) > > - armv8pmu_disable_counter(idx - 1); > > - armv8pmu_disable_counter(idx); > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > + > > + kvm_clr_pmu_events(counter_bits); > > + > > + if (!attr->exclude_host) { > > + if (armv8pmu_event_is_chained(event)) > > + armv8pmu_disable_counter(idx - 1); > > + armv8pmu_disable_counter(idx); > > + } > > It may be helpful to add in a comment why we do this only for !exclude_host. > > Either way, No problem, I'll add the comments. > > Reviewed-by: Suzuki K Poulose <suzuki.poulose@arm.com>
On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > Add support for the :G and :H attributes in perf by handling the > exclude_host/exclude_guest event attributes. > > We notify KVM of counters that we wish to be enabled or disabled on > guest entry/exit and thus defer from starting or stopping :G events > as per the events exclude_host attribute. > > With both VHE and non-VHE we switch the counters between host/guest > at EL2. We are able to eliminate counters counting host events on > the boundaries of guest entry/exit when using :G by filtering out > EL2 for exclude_host. However when using :H unless exclude_hv is set > on non-VHE then there is a small blackout window at the guest > entry/exit where host events are not captured. > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > --- > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > 1 file changed, 44 insertions(+), 7 deletions(-) > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > index de564ae..4a3c73d 100644 > --- a/arch/arm64/kernel/perf_event.c > +++ b/arch/arm64/kernel/perf_event.c > @@ -26,6 +26,7 @@ > > #include <linux/acpi.h> > #include <linux/clocksource.h> > +#include <linux/kvm_host.h> > #include <linux/of.h> > #include <linux/perf/arm_pmu.h> > #include <linux/platform_device.h> > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > { > + struct perf_event_attr *attr = &event->attr; > int idx = event->hw.idx; > + int flags = 0; > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > - armv8pmu_enable_counter(idx); > if (armv8pmu_event_is_chained(event)) > - armv8pmu_enable_counter(idx - 1); > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > + > + if (!attr->exclude_host) > + flags |= KVM_PMU_EVENTS_HOST; > + if (!attr->exclude_guest) > + flags |= KVM_PMU_EVENTS_GUEST; > + > + kvm_set_pmu_events(counter_bits, flags); > + > + if (!attr->exclude_host) { > + armv8pmu_enable_counter(idx); > + if (armv8pmu_event_is_chained(event)) > + armv8pmu_enable_counter(idx - 1); > + } > } > > static inline int armv8pmu_disable_counter(int idx) > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > { > struct hw_perf_event *hwc = &event->hw; > + struct perf_event_attr *attr = &event->attr; > int idx = hwc->idx; > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > if (armv8pmu_event_is_chained(event)) > - armv8pmu_disable_counter(idx - 1); > - armv8pmu_disable_counter(idx); > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > + > + kvm_clr_pmu_events(counter_bits); > + > + if (!attr->exclude_host) { > + if (armv8pmu_event_is_chained(event)) > + armv8pmu_disable_counter(idx - 1); > + armv8pmu_disable_counter(idx); > + } > } > > static inline int armv8pmu_enable_intens(int idx) > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > * Therefore we ignore exclude_hv in this configuration, since > * there's no hypervisor to sample anyway. This is consistent > * with other architectures (x86 and Power). > + * > + * To eliminate counting host events on the boundaries of > + * guest entry/exit we ensure EL2 is not included in hyp mode > + * with !exclude_host. > */ > if (is_kernel_in_hyp_mode()) { > - if (!attr->exclude_kernel) > + if (!attr->exclude_kernel && !attr->exclude_host) > config_base |= ARMV8_PMU_INCLUDE_EL2; > } else { > - if (attr->exclude_kernel) > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > if (!attr->exclude_hv) > config_base |= ARMV8_PMU_INCLUDE_EL2; I'm not sure about the current use of exclude_hv here. The comment says it's consistent with other architectures, but I can't find an example to confirm this, and I don't think we have a comparable thing to the split of the hypervisor between EL1 and EL2 we have on non-VHE. Joerg told me the semantics were designed to be: exclude_hv: When running as a guest, stop counting events when the HV runs. exclude_host: When Linux runs as a HV itself, only count events while a guest is running. exclude_guest: When Linux runs as a HV, only count events when running in host mode. (But tools/perf/design.txt does not really confirm this). On arm64 that would mean: exclude_hv: As a host, no effect. As a guest, set the counter to include EL2 for a hypervisor to emulate. exclude_host: As a guest, has no effect. Don't count EL1 host or EL2, but count EL1 guest by enabling EL1 counting at EL2 when entering a guest, and disabling EL1 counting when returning from a guest. exclude_guest: As a guest, has no effect. As a host, disable EL1 counting at EL2 when entering a guest. Not sure if we break anything by changing the behavior on arm64 now, but I really doubt that being able to exclude an arbitrary part (the one tha happens to run in EL2 on non-VHE systems) is meaningful, and the fact that behavior and semantics change depending on the version of the underlying CPU is not great, if what you care about is understanding the system's performance. Thoughts? Thanks, Christoffer
On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > Add support for the :G and :H attributes in perf by handling the > > exclude_host/exclude_guest event attributes. > > > > We notify KVM of counters that we wish to be enabled or disabled on > > guest entry/exit and thus defer from starting or stopping :G events > > as per the events exclude_host attribute. > > > > With both VHE and non-VHE we switch the counters between host/guest > > at EL2. We are able to eliminate counters counting host events on > > the boundaries of guest entry/exit when using :G by filtering out > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > on non-VHE then there is a small blackout window at the guest > > entry/exit where host events are not captured. > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > --- > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > index de564ae..4a3c73d 100644 > > --- a/arch/arm64/kernel/perf_event.c > > +++ b/arch/arm64/kernel/perf_event.c > > @@ -26,6 +26,7 @@ > > > > #include <linux/acpi.h> > > #include <linux/clocksource.h> > > +#include <linux/kvm_host.h> > > #include <linux/of.h> > > #include <linux/perf/arm_pmu.h> > > #include <linux/platform_device.h> > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > { > > + struct perf_event_attr *attr = &event->attr; > > int idx = event->hw.idx; > > + int flags = 0; > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > - armv8pmu_enable_counter(idx); > > if (armv8pmu_event_is_chained(event)) > > - armv8pmu_enable_counter(idx - 1); > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > + > > + if (!attr->exclude_host) > > + flags |= KVM_PMU_EVENTS_HOST; > > + if (!attr->exclude_guest) > > + flags |= KVM_PMU_EVENTS_GUEST; > > + > > + kvm_set_pmu_events(counter_bits, flags); > > + > > + if (!attr->exclude_host) { > > + armv8pmu_enable_counter(idx); > > + if (armv8pmu_event_is_chained(event)) > > + armv8pmu_enable_counter(idx - 1); > > + } > > } > > > > static inline int armv8pmu_disable_counter(int idx) > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > { > > struct hw_perf_event *hwc = &event->hw; > > + struct perf_event_attr *attr = &event->attr; > > int idx = hwc->idx; > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > if (armv8pmu_event_is_chained(event)) > > - armv8pmu_disable_counter(idx - 1); > > - armv8pmu_disable_counter(idx); > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > + > > + kvm_clr_pmu_events(counter_bits); > > + > > + if (!attr->exclude_host) { > > + if (armv8pmu_event_is_chained(event)) > > + armv8pmu_disable_counter(idx - 1); > > + armv8pmu_disable_counter(idx); > > + } > > } > > > > static inline int armv8pmu_enable_intens(int idx) > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > * Therefore we ignore exclude_hv in this configuration, since > > * there's no hypervisor to sample anyway. This is consistent > > * with other architectures (x86 and Power). > > + * > > + * To eliminate counting host events on the boundaries of > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > + * with !exclude_host. > > */ > > if (is_kernel_in_hyp_mode()) { > > - if (!attr->exclude_kernel) > > + if (!attr->exclude_kernel && !attr->exclude_host) > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > } else { > > - if (attr->exclude_kernel) > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > if (!attr->exclude_hv) > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > I'm not sure about the current use of exclude_hv here. The comment says > it's consistent with other architectures, but I can't find an example to > confirm this, and I don't think we have a comparable thing to the split > of the hypervisor between EL1 and EL2 we have on non-VHE. > > Joerg told me the semantics were designed to be: > > exclude_hv: When running as a guest, stop counting events when > the HV runs. Can the definition of "guest" here refer to both type 1 and type 2 hypervisor guests? Or do we assume type 1 only? > > exclude_host: When Linux runs as a HV itself, only count events > while a guest is running. > > exclude_guest: When Linux runs as a HV, only count events when > running in host mode. > > (But tools/perf/design.txt does not really confirm this). > > On arm64 that would mean: > > exclude_hv: As a host, no effect. > As a guest, set the counter to include EL2 for a > hypervisor to emulate. If guest means either type 1 or type 2 guest, then we allow KVM guests to understand their individual HV overhead. We can do this by counting EL2 events whilst pinned to the KVM task. Though more correctly we should count EL2 *and EL1* events whilst pinned to the KVM task and whilst running outside of the guest. This then covers both !VHE and VHE and allows for fair comparasion between !VHE and VHE systems. This then gives us the unique benefit of the type 2 host being able to examine the hypervisor overhead of its individual guests. The only issue here is that the type 2 host wouldn't be able to examine the HV overhead of all its guests across the system as you wouldn't be able to rely on the perf task pinning to distinguish between EL1 from host and EL1 from guests in a !VHE system. I'm not sure the best way to overcome this limitation. > > exclude_host: As a guest, has no effect. > Don't count EL1 host or EL2, but count EL1 guest > by enabling EL1 counting at EL2 when entering a > guest, and disabling EL1 counting when returning > from a guest. > > exclude_guest: As a guest, has no effect. As a host, disable > EL1 counting at EL2 when entering a guest. > > Not sure if we break anything by changing the behavior on arm64 now, but > I really doubt that being able to exclude an arbitrary part (the one tha > happens to run in EL2 on non-VHE systems) is meaningful, and the fact > that behavior and semantics change depending on the version of the > underlying CPU is not great, if what you care about is understanding the > system's performance. This is a bit strange. It's arbitary as it only represents a bit of the HV overhead - this is solved though by counting the whole overhead (EL1 and EL2 instead (but only counting outside the guest and pinned to the guest tasks). > > Thoughts? > Though if I've understood you correctly, you're suggesting that the only time we count EL2 is when exclude_hv is not set on the immediate guest of a type 1 hypervisor? Thanks, Andrew Murray > > Thanks, > > Christoffer
On Tue, Dec 18, 2018 at 01:25:32PM +0000, Andrew Murray wrote: > On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > > Add support for the :G and :H attributes in perf by handling the > > > exclude_host/exclude_guest event attributes. > > > > > > We notify KVM of counters that we wish to be enabled or disabled on > > > guest entry/exit and thus defer from starting or stopping :G events > > > as per the events exclude_host attribute. > > > > > > With both VHE and non-VHE we switch the counters between host/guest > > > at EL2. We are able to eliminate counters counting host events on > > > the boundaries of guest entry/exit when using :G by filtering out > > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > > on non-VHE then there is a small blackout window at the guest > > > entry/exit where host events are not captured. > > > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > > --- > > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > > index de564ae..4a3c73d 100644 > > > --- a/arch/arm64/kernel/perf_event.c > > > +++ b/arch/arm64/kernel/perf_event.c > > > @@ -26,6 +26,7 @@ > > > > > > #include <linux/acpi.h> > > > #include <linux/clocksource.h> > > > +#include <linux/kvm_host.h> > > > #include <linux/of.h> > > > #include <linux/perf/arm_pmu.h> > > > #include <linux/platform_device.h> > > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > > { > > > + struct perf_event_attr *attr = &event->attr; > > > int idx = event->hw.idx; > > > + int flags = 0; > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > - armv8pmu_enable_counter(idx); > > > if (armv8pmu_event_is_chained(event)) > > > - armv8pmu_enable_counter(idx - 1); > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > + > > > + if (!attr->exclude_host) > > > + flags |= KVM_PMU_EVENTS_HOST; > > > + if (!attr->exclude_guest) > > > + flags |= KVM_PMU_EVENTS_GUEST; > > > + > > > + kvm_set_pmu_events(counter_bits, flags); > > > + > > > + if (!attr->exclude_host) { > > > + armv8pmu_enable_counter(idx); > > > + if (armv8pmu_event_is_chained(event)) > > > + armv8pmu_enable_counter(idx - 1); > > > + } > > > } > > > > > > static inline int armv8pmu_disable_counter(int idx) > > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > > { > > > struct hw_perf_event *hwc = &event->hw; > > > + struct perf_event_attr *attr = &event->attr; > > > int idx = hwc->idx; > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > if (armv8pmu_event_is_chained(event)) > > > - armv8pmu_disable_counter(idx - 1); > > > - armv8pmu_disable_counter(idx); > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > + > > > + kvm_clr_pmu_events(counter_bits); > > > + > > > + if (!attr->exclude_host) { > > > + if (armv8pmu_event_is_chained(event)) > > > + armv8pmu_disable_counter(idx - 1); > > > + armv8pmu_disable_counter(idx); > > > + } > > > } > > > > > > static inline int armv8pmu_enable_intens(int idx) > > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > > * Therefore we ignore exclude_hv in this configuration, since > > > * there's no hypervisor to sample anyway. This is consistent > > > * with other architectures (x86 and Power). > > > + * > > > + * To eliminate counting host events on the boundaries of > > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > > + * with !exclude_host. > > > */ > > > if (is_kernel_in_hyp_mode()) { > > > - if (!attr->exclude_kernel) > > > + if (!attr->exclude_kernel && !attr->exclude_host) > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > } else { > > > - if (attr->exclude_kernel) > > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > > if (!attr->exclude_hv) > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > I'm not sure about the current use of exclude_hv here. The comment says > > it's consistent with other architectures, but I can't find an example to > > confirm this, and I don't think we have a comparable thing to the split > > of the hypervisor between EL1 and EL2 we have on non-VHE. > > > > Joerg told me the semantics were designed to be: > > > > exclude_hv: When running as a guest, stop counting events when > > the HV runs. > > Can the definition of "guest" here refer to both type 1 and type 2 > hypervisor guests? Or do we assume type 1 only? > A guest is a guest. Linux can run as a guest under a hypervisor with a type 1 or type 2 design, doesn't matter for this conversation. > > > > exclude_host: When Linux runs as a HV itself, only count events > > while a guest is running. > > > > exclude_guest: When Linux runs as a HV, only count events when > > running in host mode. > > > > (But tools/perf/design.txt does not really confirm this). > > > > On arm64 that would mean: > > > > exclude_hv: As a host, no effect. > > As a guest, set the counter to include EL2 for a > > hypervisor to emulate. [...] > > Though more correctly we should count EL2 *and EL1* events whilst pinned > to the KVM task and whilst running outside of the guest. This then > covers both !VHE and VHE and allows for fair comparasion between !VHE > and VHE systems. Yes, if the guest has cleared exclude_hv and if we can properly detect that from the hypervisor. > > This then gives us the unique benefit of the type 2 host being able to > examine the hypervisor overhead of its individual guests. Not sure I understand this part. > > The only issue here is that the type 2 host wouldn't be able to examine > the HV overhead of all its guests across the system as you wouldn't be > able to rely on the perf task pinning to distinguish between EL1 from > host and EL1 from guests in a !VHE system. I'm not sure the best way > to overcome this limitation. Why can't you disable EL1 counting whilst running in the host, and enable EL1 counting whilst running in the guest? > > > > exclude_host: As a guest, has no effect. > > Don't count EL1 host or EL2, but count EL1 guest > > by enabling EL1 counting at EL2 when entering a > > guest, and disabling EL1 counting when returning > > from a guest. > > > > exclude_guest: As a guest, has no effect. As a host, disable > > EL1 counting at EL2 when entering a guest. > > > > Not sure if we break anything by changing the behavior on arm64 now, but > > I really doubt that being able to exclude an arbitrary part (the one tha > > happens to run in EL2 on non-VHE systems) is meaningful, and the fact > > that behavior and semantics change depending on the version of the > > underlying CPU is not great, if what you care about is understanding the > > system's performance. > > This is a bit strange. It's arbitary as it only represents a bit of the > HV overhead - this is solved though by counting the whole overhead (EL1 > and EL2 instead (but only counting outside the guest and pinned to the > guest tasks). Not sure I understand your point here? > > > > > Thoughts? > > > > Though if I've understood you correctly, you're suggesting that the only > time we count EL2 is when exclude_hv is not set on the immediate guest > of a type 1 hypervisor? > No, I didn't say anything about a type 1 or type 2 hypervisor, and I think that distinction is completely irrelevant to the discussion at hand. I also don't know what an immediate guest is -- is there any other kind? I don't think exclude_hv, exclude_host, and exclude_guest are directly tied to a single CPU mode. The only 'modes' you need to consider for Linux are 'guest' and 'host' when Linux can run VMs and, 'self' and 'hypervisor' when Linux is a guest. When Linux can run VMs, you count EL2 events when exclude_host is not set. (When Linux is a guest, and you set/clear exclude_hv, for this to work, you need some way of informing your hypervisor that you want to know about events happening in the hypervisor. This could be a PV interface, or maybe this can work by the guest setting/clearing the NSH bit in its virtual PMU registers, which then amusingly can get translated into actually counting in EL1/EL2 (non-VHE) or EL2 (VHE) by KVM's PMU emulation code. The method used is specific to the hypervisor used, but not specific to whether the hypervisor is type-1 or type-2.) Thanks, Christoffer
On Tue, Dec 18, 2018 at 03:38:33PM +0100, Christoffer Dall wrote: > On Tue, Dec 18, 2018 at 01:25:32PM +0000, Andrew Murray wrote: > > On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > > > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > > > Add support for the :G and :H attributes in perf by handling the > > > > exclude_host/exclude_guest event attributes. > > > > > > > > We notify KVM of counters that we wish to be enabled or disabled on > > > > guest entry/exit and thus defer from starting or stopping :G events > > > > as per the events exclude_host attribute. > > > > > > > > With both VHE and non-VHE we switch the counters between host/guest > > > > at EL2. We are able to eliminate counters counting host events on > > > > the boundaries of guest entry/exit when using :G by filtering out > > > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > > > on non-VHE then there is a small blackout window at the guest > > > > entry/exit where host events are not captured. > > > > > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > > > --- > > > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > > > index de564ae..4a3c73d 100644 > > > > --- a/arch/arm64/kernel/perf_event.c > > > > +++ b/arch/arm64/kernel/perf_event.c > > > > @@ -26,6 +26,7 @@ > > > > > > > > #include <linux/acpi.h> > > > > #include <linux/clocksource.h> > > > > +#include <linux/kvm_host.h> > > > > #include <linux/of.h> > > > > #include <linux/perf/arm_pmu.h> > > > > #include <linux/platform_device.h> > > > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > > > { > > > > + struct perf_event_attr *attr = &event->attr; > > > > int idx = event->hw.idx; > > > > + int flags = 0; > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > - armv8pmu_enable_counter(idx); > > > > if (armv8pmu_event_is_chained(event)) > > > > - armv8pmu_enable_counter(idx - 1); > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > + > > > > + if (!attr->exclude_host) > > > > + flags |= KVM_PMU_EVENTS_HOST; > > > > + if (!attr->exclude_guest) > > > > + flags |= KVM_PMU_EVENTS_GUEST; > > > > + > > > > + kvm_set_pmu_events(counter_bits, flags); > > > > + > > > > + if (!attr->exclude_host) { > > > > + armv8pmu_enable_counter(idx); > > > > + if (armv8pmu_event_is_chained(event)) > > > > + armv8pmu_enable_counter(idx - 1); > > > > + } > > > > } > > > > > > > > static inline int armv8pmu_disable_counter(int idx) > > > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > > > { > > > > struct hw_perf_event *hwc = &event->hw; > > > > + struct perf_event_attr *attr = &event->attr; > > > > int idx = hwc->idx; > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > if (armv8pmu_event_is_chained(event)) > > > > - armv8pmu_disable_counter(idx - 1); > > > > - armv8pmu_disable_counter(idx); > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > + > > > > + kvm_clr_pmu_events(counter_bits); > > > > + > > > > + if (!attr->exclude_host) { > > > > + if (armv8pmu_event_is_chained(event)) > > > > + armv8pmu_disable_counter(idx - 1); > > > > + armv8pmu_disable_counter(idx); > > > > + } > > > > } > > > > > > > > static inline int armv8pmu_enable_intens(int idx) > > > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > > > * Therefore we ignore exclude_hv in this configuration, since > > > > * there's no hypervisor to sample anyway. This is consistent > > > > * with other architectures (x86 and Power). > > > > + * > > > > + * To eliminate counting host events on the boundaries of > > > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > > > + * with !exclude_host. > > > > */ > > > > if (is_kernel_in_hyp_mode()) { > > > > - if (!attr->exclude_kernel) > > > > + if (!attr->exclude_kernel && !attr->exclude_host) > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > } else { > > > > - if (attr->exclude_kernel) > > > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > > > if (!attr->exclude_hv) > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > > I'm not sure about the current use of exclude_hv here. The comment says > > > it's consistent with other architectures, but I can't find an example to > > > confirm this, and I don't think we have a comparable thing to the split > > > of the hypervisor between EL1 and EL2 we have on non-VHE. > > > > > > Joerg told me the semantics were designed to be: > > > > > > exclude_hv: When running as a guest, stop counting events when > > > the HV runs. > > > > Can the definition of "guest" here refer to both type 1 and type 2 > > hypervisor guests? Or do we assume type 1 only? > > > > A guest is a guest. Linux can run as a guest under a hypervisor with a > type 1 or type 2 design, doesn't matter for this conversation. > > > > > > > exclude_host: When Linux runs as a HV itself, only count events > > > while a guest is running. > > > > > > exclude_guest: When Linux runs as a HV, only count events when > > > running in host mode. > > > > > > (But tools/perf/design.txt does not really confirm this). > > > > > > On arm64 that would mean: > > > > > > exclude_hv: As a host, no effect. > > > As a guest, set the counter to include EL2 for a > > > hypervisor to emulate. > > [...] > > > > > Though more correctly we should count EL2 *and EL1* events whilst pinned > > to the KVM task and whilst running outside of the guest. This then > > covers both !VHE and VHE and allows for fair comparasion between !VHE > > and VHE systems. > > Yes, if the guest has cleared exclude_hv and if we can properly detect > that from the hypervisor. > > > > > This then gives us the unique benefit of the type 2 host being able to > > examine the hypervisor overhead of its individual guests. > > Not sure I understand this part. I got a bit confused here so ignore this. (I thought it would be useful to measure from the KVM host perspective, the host-only time of the KVM guest, which I incorrectly thought could also be the exclude_hv flag. Though I forgot that 'perf stat -e instructions:H kvmtask' from the host should be equivalent to 'perf stat -e instructions:h' from the guest.) > > > > > The only issue here is that the type 2 host wouldn't be able to examine > > the HV overhead of all its guests across the system as you wouldn't be > > able to rely on the perf task pinning to distinguish between EL1 from > > host and EL1 from guests in a !VHE system. I'm not sure the best way > > to overcome this limitation. > > Why can't you disable EL1 counting whilst running in the host, and > enable EL1 counting whilst running in the guest? You can. (I was assuming you could use exclude_hv from KVM host to measure all the KVM guest overheads - but you would need to know which tasks are KVM tasks such that you can consider their EL1 time - again ignore this). > > > > > > > exclude_host: As a guest, has no effect. > > > Don't count EL1 host or EL2, but count EL1 guest > > > by enabling EL1 counting at EL2 when entering a > > > guest, and disabling EL1 counting when returning > > > from a guest. > > > > > > exclude_guest: As a guest, has no effect. As a host, disable > > > EL1 counting at EL2 when entering a guest. > > > > > > Not sure if we break anything by changing the behavior on arm64 now, but > > > I really doubt that being able to exclude an arbitrary part (the one tha > > > happens to run in EL2 on non-VHE systems) is meaningful, and the fact > > > that behavior and semantics change depending on the version of the > > > underlying CPU is not great, if what you care about is understanding the > > > system's performance. > > > > This is a bit strange. It's arbitary as it only represents a bit of the > > HV overhead - this is solved though by counting the whole overhead (EL1 > > and EL2 instead (but only counting outside the guest and pinned to the > > guest tasks). > > Not sure I understand your point here? I was considering how we support exclude_hv from a KVM guest. If we count only EL2 for HV then we are not measuring the true overhead, we also need to include the EL1 time from the KVM host process when on !VHE. > > > > > > > > > Thoughts? > > > > > > > Though if I've understood you correctly, you're suggesting that the only > > time we count EL2 is when exclude_hv is not set on the immediate guest > > of a type 1 hypervisor? > > > No, I didn't say anything about a type 1 or type 2 hypervisor, and I > think that distinction is completely irrelevant to the discussion at > hand. I also don't know what an immediate guest is -- is there any > other kind? An immediate guest = the host's guest but not a guest-guest or further (Apologies if I'm making this up as I go along). > > I don't think exclude_hv, exclude_host, and exclude_guest are directly > tied to a single CPU mode. The only 'modes' you need to consider for > Linux are 'guest' and 'host' when Linux can run VMs and, 'self' and > 'hypervisor' when Linux is a guest. > > When Linux can run VMs, you count EL2 events when exclude_host is not > set. > > (When Linux is a guest, and you set/clear exclude_hv, for this to work, > you need some way of informing your hypervisor that you want to know > about events happening in the hypervisor. This could be a PV interface, > or maybe this can work by the guest setting/clearing the NSH bit in its > virtual PMU registers, which then amusingly can get translated into > actually counting in EL1/EL2 (non-VHE) or EL2 (VHE) by KVM's PMU > emulation code. The method used is specific to the hypervisor used, but > not specific to whether the hypervisor is type-1 or type-2.) This is what I had in mind. I think we're aligned despite nomenclature confusing me. I think we need to: - Add support in KVM guests for exclude_hv. - Prevent !exclude_hv from returning a count when is is not a guest on a !VHE kernel. I'm not really clear how we implement the second point. We want to count EL2 (because that would represent a HV) but only when it is a guest. How does it know it's a guest? (Is it a guest when it's not a KVM host?). I'm struggling to see how we update the logic in armv8pmu_set_event_filter (whilst keeping in mind that we want it to write ARMV8_PMU_INCLUDE_EL2 such that when it's a guest the KVM PMU emulation code can use that to know to do something different). Thanks, Andrew Murray > > > Thanks, > > Christoffer
On Tue, Dec 18, 2018 at 04:27:05PM +0000, Andrew Murray wrote: > On Tue, Dec 18, 2018 at 03:38:33PM +0100, Christoffer Dall wrote: > > On Tue, Dec 18, 2018 at 01:25:32PM +0000, Andrew Murray wrote: > > > On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > > > > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > > > > Add support for the :G and :H attributes in perf by handling the > > > > > exclude_host/exclude_guest event attributes. > > > > > > > > > > We notify KVM of counters that we wish to be enabled or disabled on > > > > > guest entry/exit and thus defer from starting or stopping :G events > > > > > as per the events exclude_host attribute. > > > > > > > > > > With both VHE and non-VHE we switch the counters between host/guest > > > > > at EL2. We are able to eliminate counters counting host events on > > > > > the boundaries of guest entry/exit when using :G by filtering out > > > > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > > > > on non-VHE then there is a small blackout window at the guest > > > > > entry/exit where host events are not captured. > > > > > > > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > > > > --- > > > > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > > > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > > > > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > > > > index de564ae..4a3c73d 100644 > > > > > --- a/arch/arm64/kernel/perf_event.c > > > > > +++ b/arch/arm64/kernel/perf_event.c > > > > > @@ -26,6 +26,7 @@ > > > > > > > > > > #include <linux/acpi.h> > > > > > #include <linux/clocksource.h> > > > > > +#include <linux/kvm_host.h> > > > > > #include <linux/of.h> > > > > > #include <linux/perf/arm_pmu.h> > > > > > #include <linux/platform_device.h> > > > > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > > > > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > > > > { > > > > > + struct perf_event_attr *attr = &event->attr; > > > > > int idx = event->hw.idx; > > > > > + int flags = 0; > > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > > > - armv8pmu_enable_counter(idx); > > > > > if (armv8pmu_event_is_chained(event)) > > > > > - armv8pmu_enable_counter(idx - 1); > > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > > + > > > > > + if (!attr->exclude_host) > > > > > + flags |= KVM_PMU_EVENTS_HOST; > > > > > + if (!attr->exclude_guest) > > > > > + flags |= KVM_PMU_EVENTS_GUEST; > > > > > + > > > > > + kvm_set_pmu_events(counter_bits, flags); > > > > > + > > > > > + if (!attr->exclude_host) { > > > > > + armv8pmu_enable_counter(idx); > > > > > + if (armv8pmu_event_is_chained(event)) > > > > > + armv8pmu_enable_counter(idx - 1); > > > > > + } > > > > > } > > > > > > > > > > static inline int armv8pmu_disable_counter(int idx) > > > > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > > > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > > > > { > > > > > struct hw_perf_event *hwc = &event->hw; > > > > > + struct perf_event_attr *attr = &event->attr; > > > > > int idx = hwc->idx; > > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > > > if (armv8pmu_event_is_chained(event)) > > > > > - armv8pmu_disable_counter(idx - 1); > > > > > - armv8pmu_disable_counter(idx); > > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > > + > > > > > + kvm_clr_pmu_events(counter_bits); > > > > > + > > > > > + if (!attr->exclude_host) { > > > > > + if (armv8pmu_event_is_chained(event)) > > > > > + armv8pmu_disable_counter(idx - 1); > > > > > + armv8pmu_disable_counter(idx); > > > > > + } > > > > > } > > > > > > > > > > static inline int armv8pmu_enable_intens(int idx) > > > > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > > > > * Therefore we ignore exclude_hv in this configuration, since > > > > > * there's no hypervisor to sample anyway. This is consistent > > > > > * with other architectures (x86 and Power). > > > > > + * > > > > > + * To eliminate counting host events on the boundaries of > > > > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > > > > + * with !exclude_host. > > > > > */ > > > > > if (is_kernel_in_hyp_mode()) { > > > > > - if (!attr->exclude_kernel) > > > > > + if (!attr->exclude_kernel && !attr->exclude_host) > > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > } else { > > > > > - if (attr->exclude_kernel) > > > > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > > > > if (!attr->exclude_hv) > > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > > > > I'm not sure about the current use of exclude_hv here. The comment says > > > > it's consistent with other architectures, but I can't find an example to > > > > confirm this, and I don't think we have a comparable thing to the split > > > > of the hypervisor between EL1 and EL2 we have on non-VHE. > > > > > > > > Joerg told me the semantics were designed to be: > > > > > > > > exclude_hv: When running as a guest, stop counting events when > > > > the HV runs. > > > > > > Can the definition of "guest" here refer to both type 1 and type 2 > > > hypervisor guests? Or do we assume type 1 only? > > > > > > > A guest is a guest. Linux can run as a guest under a hypervisor with a > > type 1 or type 2 design, doesn't matter for this conversation. > > > > > > > > > > exclude_host: When Linux runs as a HV itself, only count events > > > > while a guest is running. > > > > > > > > exclude_guest: When Linux runs as a HV, only count events when > > > > running in host mode. > > > > > > > > (But tools/perf/design.txt does not really confirm this). > > > > > > > > On arm64 that would mean: > > > > > > > > exclude_hv: As a host, no effect. > > > > As a guest, set the counter to include EL2 for a > > > > hypervisor to emulate. > > > > [...] > > > > > > > > Though more correctly we should count EL2 *and EL1* events whilst pinned > > > to the KVM task and whilst running outside of the guest. This then > > > covers both !VHE and VHE and allows for fair comparasion between !VHE > > > and VHE systems. > > > > Yes, if the guest has cleared exclude_hv and if we can properly detect > > that from the hypervisor. > > > > > > > > This then gives us the unique benefit of the type 2 host being able to > > > examine the hypervisor overhead of its individual guests. > > > > Not sure I understand this part. > > I got a bit confused here so ignore this. (I thought it would be useful to > measure from the KVM host perspective, the host-only time of the KVM guest, > which I incorrectly thought could also be the exclude_hv flag. Though I > forgot that 'perf stat -e instructions:H kvmtask' from the host should be > equivalent to 'perf stat -e instructions:h' from the guest.) > > > > > > > > > The only issue here is that the type 2 host wouldn't be able to examine > > > the HV overhead of all its guests across the system as you wouldn't be > > > able to rely on the perf task pinning to distinguish between EL1 from > > > host and EL1 from guests in a !VHE system. I'm not sure the best way > > > to overcome this limitation. > > > > Why can't you disable EL1 counting whilst running in the host, and > > enable EL1 counting whilst running in the guest? > > You can. (I was assuming you could use exclude_hv from KVM host to measure > all the KVM guest overheads - but you would need to know which tasks are > KVM tasks such that you can consider their EL1 time - again ignore this). > > > > > > > > > > > exclude_host: As a guest, has no effect. > > > > Don't count EL1 host or EL2, but count EL1 guest > > > > by enabling EL1 counting at EL2 when entering a > > > > guest, and disabling EL1 counting when returning > > > > from a guest. > > > > > > > > exclude_guest: As a guest, has no effect. As a host, disable > > > > EL1 counting at EL2 when entering a guest. > > > > > > > > Not sure if we break anything by changing the behavior on arm64 now, but > > > > I really doubt that being able to exclude an arbitrary part (the one tha > > > > happens to run in EL2 on non-VHE systems) is meaningful, and the fact > > > > that behavior and semantics change depending on the version of the > > > > underlying CPU is not great, if what you care about is understanding the > > > > system's performance. > > > > > > This is a bit strange. It's arbitary as it only represents a bit of the > > > HV overhead - this is solved though by counting the whole overhead (EL1 > > > and EL2 instead (but only counting outside the guest and pinned to the > > > guest tasks). > > > > Not sure I understand your point here? > > I was considering how we support exclude_hv from a KVM guest. If we count > only EL2 for HV then we are not measuring the true overhead, we also need > to include the EL1 time from the KVM host process when on !VHE. > > > > > > > > > > > > > > > Thoughts? > > > > > > > > > > Though if I've understood you correctly, you're suggesting that the only > > > time we count EL2 is when exclude_hv is not set on the immediate guest > > > of a type 1 hypervisor? > > > > > No, I didn't say anything about a type 1 or type 2 hypervisor, and I > > think that distinction is completely irrelevant to the discussion at > > hand. I also don't know what an immediate guest is -- is there any > > other kind? > > An immediate guest = the host's guest but not a guest-guest or further > (Apologies if I'm making this up as I go along). > I strongly recommend thinking about this in terms of a single hypervisor, which can run a single layer of guests (no nested virtualization) first. Once we've figured out how to do that, we can try to think about nested virt, and factor in PMU emulation among the great many things that will break with nested virtualization. > > > > I don't think exclude_hv, exclude_host, and exclude_guest are directly > > tied to a single CPU mode. The only 'modes' you need to consider for > > Linux are 'guest' and 'host' when Linux can run VMs and, 'self' and > > 'hypervisor' when Linux is a guest. > > > > When Linux can run VMs, you count EL2 events when exclude_host is not > > set. > > > > (When Linux is a guest, and you set/clear exclude_hv, for this to work, > > you need some way of informing your hypervisor that you want to know > > about events happening in the hypervisor. This could be a PV interface, > > or maybe this can work by the guest setting/clearing the NSH bit in its > > virtual PMU registers, which then amusingly can get translated into > > actually counting in EL1/EL2 (non-VHE) or EL2 (VHE) by KVM's PMU > > emulation code. The method used is specific to the hypervisor used, but > > not specific to whether the hypervisor is type-1 or type-2.) > > This is what I had in mind. I think we're aligned despite nomenclature > confusing me. > > I think we need to: > > - Add support in KVM guests for exclude_hv. > > - Prevent !exclude_hv from returning a count when is is not a guest > on a !VHE kernel. > > I'm not really clear how we implement the second point. We want to count > EL2 (because that would represent a HV) but only when it is a guest. How > does it know it's a guest? (Is it a guest when it's not a KVM host?). > I'm struggling to see how we update the logic in armv8pmu_set_event_filter > (whilst keeping in mind that we want it to write ARMV8_PMU_INCLUDE_EL2 > such that when it's a guest the KVM PMU emulation code can use that to > know to do something different). > If (!hyp_mode_is_available()) you are either running bare metal or as a guest. It should be benign to program the PMU to count EL2 in both cases, as it should have no effect in the first case. Alternatively we could make it so that it only makes a difference if the DT/ACPI describes the fact that you're a KVM guest. I don't know the implementation details of that. Thanks, Christoffer
On Tue, Dec 18, 2018 at 07:51:21PM +0100, Christoffer Dall wrote: > On Tue, Dec 18, 2018 at 04:27:05PM +0000, Andrew Murray wrote: > > On Tue, Dec 18, 2018 at 03:38:33PM +0100, Christoffer Dall wrote: > > > On Tue, Dec 18, 2018 at 01:25:32PM +0000, Andrew Murray wrote: > > > > On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > > > > > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > > > > > Add support for the :G and :H attributes in perf by handling the > > > > > > exclude_host/exclude_guest event attributes. > > > > > > > > > > > > We notify KVM of counters that we wish to be enabled or disabled on > > > > > > guest entry/exit and thus defer from starting or stopping :G events > > > > > > as per the events exclude_host attribute. > > > > > > > > > > > > With both VHE and non-VHE we switch the counters between host/guest > > > > > > at EL2. We are able to eliminate counters counting host events on > > > > > > the boundaries of guest entry/exit when using :G by filtering out > > > > > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > > > > > on non-VHE then there is a small blackout window at the guest > > > > > > entry/exit where host events are not captured. > > > > > > > > > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > > > > > --- > > > > > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > > > > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > > > > > > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > > > > > index de564ae..4a3c73d 100644 > > > > > > --- a/arch/arm64/kernel/perf_event.c > > > > > > +++ b/arch/arm64/kernel/perf_event.c > > > > > > @@ -26,6 +26,7 @@ > > > > > > > > > > > > #include <linux/acpi.h> > > > > > > #include <linux/clocksource.h> > > > > > > +#include <linux/kvm_host.h> > > > > > > #include <linux/of.h> > > > > > > #include <linux/perf/arm_pmu.h> > > > > > > #include <linux/platform_device.h> > > > > > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > > > > > > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > > > > > { > > > > > > + struct perf_event_attr *attr = &event->attr; > > > > > > int idx = event->hw.idx; > > > > > > + int flags = 0; > > > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > > > > > - armv8pmu_enable_counter(idx); > > > > > > if (armv8pmu_event_is_chained(event)) > > > > > > - armv8pmu_enable_counter(idx - 1); > > > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > > > + > > > > > > + if (!attr->exclude_host) > > > > > > + flags |= KVM_PMU_EVENTS_HOST; > > > > > > + if (!attr->exclude_guest) > > > > > > + flags |= KVM_PMU_EVENTS_GUEST; > > > > > > + > > > > > > + kvm_set_pmu_events(counter_bits, flags); > > > > > > + > > > > > > + if (!attr->exclude_host) { > > > > > > + armv8pmu_enable_counter(idx); > > > > > > + if (armv8pmu_event_is_chained(event)) > > > > > > + armv8pmu_enable_counter(idx - 1); > > > > > > + } > > > > > > } > > > > > > > > > > > > static inline int armv8pmu_disable_counter(int idx) > > > > > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > > > > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > > > > > { > > > > > > struct hw_perf_event *hwc = &event->hw; > > > > > > + struct perf_event_attr *attr = &event->attr; > > > > > > int idx = hwc->idx; > > > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > > > > > if (armv8pmu_event_is_chained(event)) > > > > > > - armv8pmu_disable_counter(idx - 1); > > > > > > - armv8pmu_disable_counter(idx); > > > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > > > + > > > > > > + kvm_clr_pmu_events(counter_bits); > > > > > > + > > > > > > + if (!attr->exclude_host) { > > > > > > + if (armv8pmu_event_is_chained(event)) > > > > > > + armv8pmu_disable_counter(idx - 1); > > > > > > + armv8pmu_disable_counter(idx); > > > > > > + } > > > > > > } > > > > > > > > > > > > static inline int armv8pmu_enable_intens(int idx) > > > > > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > > > > > * Therefore we ignore exclude_hv in this configuration, since > > > > > > * there's no hypervisor to sample anyway. This is consistent > > > > > > * with other architectures (x86 and Power). > > > > > > + * > > > > > > + * To eliminate counting host events on the boundaries of > > > > > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > > > > > + * with !exclude_host. > > > > > > */ > > > > > > if (is_kernel_in_hyp_mode()) { > > > > > > - if (!attr->exclude_kernel) > > > > > > + if (!attr->exclude_kernel && !attr->exclude_host) > > > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > > } else { > > > > > > - if (attr->exclude_kernel) > > > > > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > > > > > if (!attr->exclude_hv) > > > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > > > > > > I'm not sure about the current use of exclude_hv here. The comment says > > > > > it's consistent with other architectures, but I can't find an example to > > > > > confirm this, and I don't think we have a comparable thing to the split > > > > > of the hypervisor between EL1 and EL2 we have on non-VHE. > > > > > > > > > > Joerg told me the semantics were designed to be: > > > > > > > > > > exclude_hv: When running as a guest, stop counting events when > > > > > the HV runs. > > > > > > > > Can the definition of "guest" here refer to both type 1 and type 2 > > > > hypervisor guests? Or do we assume type 1 only? > > > > > > > > > > A guest is a guest. Linux can run as a guest under a hypervisor with a > > > type 1 or type 2 design, doesn't matter for this conversation. > > > > > > > > > > > > > exclude_host: When Linux runs as a HV itself, only count events > > > > > while a guest is running. > > > > > > > > > > exclude_guest: When Linux runs as a HV, only count events when > > > > > running in host mode. > > > > > > > > > > (But tools/perf/design.txt does not really confirm this). > > > > > > > > > > On arm64 that would mean: > > > > > > > > > > exclude_hv: As a host, no effect. > > > > > As a guest, set the counter to include EL2 for a > > > > > hypervisor to emulate. > > > > > > [...] > > > > > > > > > > > Though more correctly we should count EL2 *and EL1* events whilst pinned > > > > to the KVM task and whilst running outside of the guest. This then > > > > covers both !VHE and VHE and allows for fair comparasion between !VHE > > > > and VHE systems. > > > > > > Yes, if the guest has cleared exclude_hv and if we can properly detect > > > that from the hypervisor. > > > > > > > > > > > This then gives us the unique benefit of the type 2 host being able to > > > > examine the hypervisor overhead of its individual guests. > > > > > > Not sure I understand this part. > > > > I got a bit confused here so ignore this. (I thought it would be useful to > > measure from the KVM host perspective, the host-only time of the KVM guest, > > which I incorrectly thought could also be the exclude_hv flag. Though I > > forgot that 'perf stat -e instructions:H kvmtask' from the host should be > > equivalent to 'perf stat -e instructions:h' from the guest.) > > > > > > > > > > > > > The only issue here is that the type 2 host wouldn't be able to examine > > > > the HV overhead of all its guests across the system as you wouldn't be > > > > able to rely on the perf task pinning to distinguish between EL1 from > > > > host and EL1 from guests in a !VHE system. I'm not sure the best way > > > > to overcome this limitation. > > > > > > Why can't you disable EL1 counting whilst running in the host, and > > > enable EL1 counting whilst running in the guest? > > > > You can. (I was assuming you could use exclude_hv from KVM host to measure > > all the KVM guest overheads - but you would need to know which tasks are > > KVM tasks such that you can consider their EL1 time - again ignore this). > > > > > > > > > > > > > > > exclude_host: As a guest, has no effect. > > > > > Don't count EL1 host or EL2, but count EL1 guest > > > > > by enabling EL1 counting at EL2 when entering a > > > > > guest, and disabling EL1 counting when returning > > > > > from a guest. > > > > > > > > > > exclude_guest: As a guest, has no effect. As a host, disable > > > > > EL1 counting at EL2 when entering a guest. > > > > > > > > > > Not sure if we break anything by changing the behavior on arm64 now, but > > > > > I really doubt that being able to exclude an arbitrary part (the one tha > > > > > happens to run in EL2 on non-VHE systems) is meaningful, and the fact > > > > > that behavior and semantics change depending on the version of the > > > > > underlying CPU is not great, if what you care about is understanding the > > > > > system's performance. > > > > > > > > This is a bit strange. It's arbitary as it only represents a bit of the > > > > HV overhead - this is solved though by counting the whole overhead (EL1 > > > > and EL2 instead (but only counting outside the guest and pinned to the > > > > guest tasks). > > > > > > Not sure I understand your point here? > > > > I was considering how we support exclude_hv from a KVM guest. If we count > > only EL2 for HV then we are not measuring the true overhead, we also need > > to include the EL1 time from the KVM host process when on !VHE. > > > > > > > > > > > > > > > > > > > > > Thoughts? > > > > > > > > > > > > > Though if I've understood you correctly, you're suggesting that the only > > > > time we count EL2 is when exclude_hv is not set on the immediate guest > > > > of a type 1 hypervisor? > > > > > > > No, I didn't say anything about a type 1 or type 2 hypervisor, and I > > > think that distinction is completely irrelevant to the discussion at > > > hand. I also don't know what an immediate guest is -- is there any > > > other kind? > > > > An immediate guest = the host's guest but not a guest-guest or further > > (Apologies if I'm making this up as I go along). > > > > I strongly recommend thinking about this in terms of a single > hypervisor, which can run a single layer of guests (no nested > virtualization) first. Once we've figured out how to do that, we can > try to think about nested virt, and factor in PMU emulation among the > great many things that will break with nested virtualization. > > > > > > > I don't think exclude_hv, exclude_host, and exclude_guest are directly > > > tied to a single CPU mode. The only 'modes' you need to consider for > > > Linux are 'guest' and 'host' when Linux can run VMs and, 'self' and > > > 'hypervisor' when Linux is a guest. > > > > > > When Linux can run VMs, you count EL2 events when exclude_host is not > > > set. > > > > > > (When Linux is a guest, and you set/clear exclude_hv, for this to work, > > > you need some way of informing your hypervisor that you want to know > > > about events happening in the hypervisor. This could be a PV interface, > > > or maybe this can work by the guest setting/clearing the NSH bit in its > > > virtual PMU registers, which then amusingly can get translated into > > > actually counting in EL1/EL2 (non-VHE) or EL2 (VHE) by KVM's PMU > > > emulation code. The method used is specific to the hypervisor used, but > > > not specific to whether the hypervisor is type-1 or type-2.) > > > > This is what I had in mind. I think we're aligned despite nomenclature > > confusing me. > > > > I think we need to: > > > > - Add support in KVM guests for exclude_hv. > > > > - Prevent !exclude_hv from returning a count when is is not a guest > > on a !VHE kernel. > > > > I'm not really clear how we implement the second point. We want to count > > EL2 (because that would represent a HV) but only when it is a guest. How > > does it know it's a guest? (Is it a guest when it's not a KVM host?). > > I'm struggling to see how we update the logic in armv8pmu_set_event_filter > > (whilst keeping in mind that we want it to write ARMV8_PMU_INCLUDE_EL2 > > such that when it's a guest the KVM PMU emulation code can use that to > > know to do something different). > > > > If (!hyp_mode_is_available()) you are either running bare metal or as a > guest. It should be benign to program the PMU to count EL2 in both > cases, as it should have no effect in the first case. Alternatively we > could make it so that it only makes a difference if the DT/ACPI > describes the fact that you're a KVM guest. I don't know the > implementation details of that. That would be a userspace specific trigger, as nothing requires userspace to describe anything like that. QEMU does inform the guest that it is a KVM guest through SMBIOS for ACPI boots, though. When the guest is boot with DT the guest can infer that it's at least a QEMU guest by the existence of the fw-cfg DT node. However that heuristic isn't good enough to tell the difference between TCG and KVM, so it's unlikely to be helpful here. There were some patches on the KVM list once proposing that KVM provide a PV interface allowing KVM guests to populate the /sys/hypervisor sysfs node (which was invented for xen). But those patches were for x86, and also seem to have been abandoned. Thanks, drew
On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > Add support for the :G and :H attributes in perf by handling the > > exclude_host/exclude_guest event attributes. > > > > We notify KVM of counters that we wish to be enabled or disabled on > > guest entry/exit and thus defer from starting or stopping :G events > > as per the events exclude_host attribute. > > > > With both VHE and non-VHE we switch the counters between host/guest > > at EL2. We are able to eliminate counters counting host events on > > the boundaries of guest entry/exit when using :G by filtering out > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > on non-VHE then there is a small blackout window at the guest > > entry/exit where host events are not captured. > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > --- > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > index de564ae..4a3c73d 100644 > > --- a/arch/arm64/kernel/perf_event.c > > +++ b/arch/arm64/kernel/perf_event.c > > @@ -26,6 +26,7 @@ > > > > #include <linux/acpi.h> > > #include <linux/clocksource.h> > > +#include <linux/kvm_host.h> > > #include <linux/of.h> > > #include <linux/perf/arm_pmu.h> > > #include <linux/platform_device.h> > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > { > > + struct perf_event_attr *attr = &event->attr; > > int idx = event->hw.idx; > > + int flags = 0; > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > - armv8pmu_enable_counter(idx); > > if (armv8pmu_event_is_chained(event)) > > - armv8pmu_enable_counter(idx - 1); > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > + > > + if (!attr->exclude_host) > > + flags |= KVM_PMU_EVENTS_HOST; > > + if (!attr->exclude_guest) > > + flags |= KVM_PMU_EVENTS_GUEST; > > + > > + kvm_set_pmu_events(counter_bits, flags); > > + > > + if (!attr->exclude_host) { > > + armv8pmu_enable_counter(idx); > > + if (armv8pmu_event_is_chained(event)) > > + armv8pmu_enable_counter(idx - 1); > > + } > > } > > > > static inline int armv8pmu_disable_counter(int idx) > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > { > > struct hw_perf_event *hwc = &event->hw; > > + struct perf_event_attr *attr = &event->attr; > > int idx = hwc->idx; > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > if (armv8pmu_event_is_chained(event)) > > - armv8pmu_disable_counter(idx - 1); > > - armv8pmu_disable_counter(idx); > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > + > > + kvm_clr_pmu_events(counter_bits); > > + > > + if (!attr->exclude_host) { > > + if (armv8pmu_event_is_chained(event)) > > + armv8pmu_disable_counter(idx - 1); > > + armv8pmu_disable_counter(idx); > > + } > > } > > > > static inline int armv8pmu_enable_intens(int idx) > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > * Therefore we ignore exclude_hv in this configuration, since > > * there's no hypervisor to sample anyway. This is consistent > > * with other architectures (x86 and Power). > > + * > > + * To eliminate counting host events on the boundaries of > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > + * with !exclude_host. > > */ > > if (is_kernel_in_hyp_mode()) { > > - if (!attr->exclude_kernel) > > + if (!attr->exclude_kernel && !attr->exclude_host) > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > } else { > > - if (attr->exclude_kernel) > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > if (!attr->exclude_hv) > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > I'm not sure about the current use of exclude_hv here. The comment says > it's consistent with other architectures, but I can't find an example to > confirm this, and I don't think we have a comparable thing to the split > of the hypervisor between EL1 and EL2 we have on non-VHE. FWIW, that comment came from this thread: http://lists.infradead.org/pipermail/linux-arm-kernel/2017-April/503908.html That was painful enough at the time, so I'd /really/ prefer not to change the semantics of this again if we can avoid it. Will
On Fri, Jan 04, 2019 at 03:32:06PM +0000, Will Deacon wrote: > On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > > Add support for the :G and :H attributes in perf by handling the > > > exclude_host/exclude_guest event attributes. > > > > > > We notify KVM of counters that we wish to be enabled or disabled on > > > guest entry/exit and thus defer from starting or stopping :G events > > > as per the events exclude_host attribute. > > > > > > With both VHE and non-VHE we switch the counters between host/guest > > > at EL2. We are able to eliminate counters counting host events on > > > the boundaries of guest entry/exit when using :G by filtering out > > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > > on non-VHE then there is a small blackout window at the guest > > > entry/exit where host events are not captured. > > > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > > --- > > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > > index de564ae..4a3c73d 100644 > > > --- a/arch/arm64/kernel/perf_event.c > > > +++ b/arch/arm64/kernel/perf_event.c > > > @@ -26,6 +26,7 @@ > > > > > > #include <linux/acpi.h> > > > #include <linux/clocksource.h> > > > +#include <linux/kvm_host.h> > > > #include <linux/of.h> > > > #include <linux/perf/arm_pmu.h> > > > #include <linux/platform_device.h> > > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > > { > > > + struct perf_event_attr *attr = &event->attr; > > > int idx = event->hw.idx; > > > + int flags = 0; > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > - armv8pmu_enable_counter(idx); > > > if (armv8pmu_event_is_chained(event)) > > > - armv8pmu_enable_counter(idx - 1); > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > + > > > + if (!attr->exclude_host) > > > + flags |= KVM_PMU_EVENTS_HOST; > > > + if (!attr->exclude_guest) > > > + flags |= KVM_PMU_EVENTS_GUEST; > > > + > > > + kvm_set_pmu_events(counter_bits, flags); > > > + > > > + if (!attr->exclude_host) { > > > + armv8pmu_enable_counter(idx); > > > + if (armv8pmu_event_is_chained(event)) > > > + armv8pmu_enable_counter(idx - 1); > > > + } > > > } > > > > > > static inline int armv8pmu_disable_counter(int idx) > > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > > { > > > struct hw_perf_event *hwc = &event->hw; > > > + struct perf_event_attr *attr = &event->attr; > > > int idx = hwc->idx; > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > if (armv8pmu_event_is_chained(event)) > > > - armv8pmu_disable_counter(idx - 1); > > > - armv8pmu_disable_counter(idx); > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > + > > > + kvm_clr_pmu_events(counter_bits); > > > + > > > + if (!attr->exclude_host) { > > > + if (armv8pmu_event_is_chained(event)) > > > + armv8pmu_disable_counter(idx - 1); > > > + armv8pmu_disable_counter(idx); > > > + } > > > } > > > > > > static inline int armv8pmu_enable_intens(int idx) > > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > > * Therefore we ignore exclude_hv in this configuration, since > > > * there's no hypervisor to sample anyway. This is consistent > > > * with other architectures (x86 and Power). > > > + * > > > + * To eliminate counting host events on the boundaries of > > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > > + * with !exclude_host. > > > */ > > > if (is_kernel_in_hyp_mode()) { > > > - if (!attr->exclude_kernel) > > > + if (!attr->exclude_kernel && !attr->exclude_host) > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > } else { > > > - if (attr->exclude_kernel) > > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > > if (!attr->exclude_hv) > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > I'm not sure about the current use of exclude_hv here. The comment says > > it's consistent with other architectures, but I can't find an example to > > confirm this, and I don't think we have a comparable thing to the split > > of the hypervisor between EL1 and EL2 we have on non-VHE. > > FWIW, that comment came from this thread: > > http://lists.infradead.org/pipermail/linux-arm-kernel/2017-April/503908.html > > That was painful enough at the time, so I'd /really/ prefer not to change > the semantics of this again if we can avoid it. The comment makes sense for the is_kernel_in_hyp_mode() case. However, for the !is_kernel_in_hyp_mode() case I can't see the current behavior of exclude_hv being similar in other architectures. I don't think the current semantics of excluding EL2 on a non-VHE host system makes much sense, and I doubt anyone is using that for something meaningful. I think changing behavior for excldue_hv to depend on is_hyp_mode_available rather than is_kernel_in_hyp_mode is the right thing to do which would also align the semantics with other architectures and between VHE and non-VHE. Thanks, Christoffer
On Tue, Jan 08, 2019 at 11:18:43AM +0100, Christoffer Dall wrote: > On Fri, Jan 04, 2019 at 03:32:06PM +0000, Will Deacon wrote: > > On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > > > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > > > Add support for the :G and :H attributes in perf by handling the > > > > exclude_host/exclude_guest event attributes. > > > > > > > > We notify KVM of counters that we wish to be enabled or disabled on > > > > guest entry/exit and thus defer from starting or stopping :G events > > > > as per the events exclude_host attribute. > > > > > > > > With both VHE and non-VHE we switch the counters between host/guest > > > > at EL2. We are able to eliminate counters counting host events on > > > > the boundaries of guest entry/exit when using :G by filtering out > > > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > > > on non-VHE then there is a small blackout window at the guest > > > > entry/exit where host events are not captured. > > > > > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > > > --- > > > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > > > index de564ae..4a3c73d 100644 > > > > --- a/arch/arm64/kernel/perf_event.c > > > > +++ b/arch/arm64/kernel/perf_event.c > > > > @@ -26,6 +26,7 @@ > > > > > > > > #include <linux/acpi.h> > > > > #include <linux/clocksource.h> > > > > +#include <linux/kvm_host.h> > > > > #include <linux/of.h> > > > > #include <linux/perf/arm_pmu.h> > > > > #include <linux/platform_device.h> > > > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > > > { > > > > + struct perf_event_attr *attr = &event->attr; > > > > int idx = event->hw.idx; > > > > + int flags = 0; > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > - armv8pmu_enable_counter(idx); > > > > if (armv8pmu_event_is_chained(event)) > > > > - armv8pmu_enable_counter(idx - 1); > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > + > > > > + if (!attr->exclude_host) > > > > + flags |= KVM_PMU_EVENTS_HOST; > > > > + if (!attr->exclude_guest) > > > > + flags |= KVM_PMU_EVENTS_GUEST; > > > > + > > > > + kvm_set_pmu_events(counter_bits, flags); > > > > + > > > > + if (!attr->exclude_host) { > > > > + armv8pmu_enable_counter(idx); > > > > + if (armv8pmu_event_is_chained(event)) > > > > + armv8pmu_enable_counter(idx - 1); > > > > + } > > > > } > > > > > > > > static inline int armv8pmu_disable_counter(int idx) > > > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > > > { > > > > struct hw_perf_event *hwc = &event->hw; > > > > + struct perf_event_attr *attr = &event->attr; > > > > int idx = hwc->idx; > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > if (armv8pmu_event_is_chained(event)) > > > > - armv8pmu_disable_counter(idx - 1); > > > > - armv8pmu_disable_counter(idx); > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > + > > > > + kvm_clr_pmu_events(counter_bits); > > > > + > > > > + if (!attr->exclude_host) { > > > > + if (armv8pmu_event_is_chained(event)) > > > > + armv8pmu_disable_counter(idx - 1); > > > > + armv8pmu_disable_counter(idx); > > > > + } > > > > } > > > > > > > > static inline int armv8pmu_enable_intens(int idx) > > > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > > > * Therefore we ignore exclude_hv in this configuration, since > > > > * there's no hypervisor to sample anyway. This is consistent > > > > * with other architectures (x86 and Power). > > > > + * > > > > + * To eliminate counting host events on the boundaries of > > > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > > > + * with !exclude_host. > > > > */ > > > > if (is_kernel_in_hyp_mode()) { > > > > - if (!attr->exclude_kernel) > > > > + if (!attr->exclude_kernel && !attr->exclude_host) > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > } else { > > > > - if (attr->exclude_kernel) > > > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > > > if (!attr->exclude_hv) > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > > I'm not sure about the current use of exclude_hv here. The comment says > > > it's consistent with other architectures, but I can't find an example to > > > confirm this, and I don't think we have a comparable thing to the split > > > of the hypervisor between EL1 and EL2 we have on non-VHE. > > > > FWIW, that comment came from this thread: > > > > http://lists.infradead.org/pipermail/linux-arm-kernel/2017-April/503908.html > > > > That was painful enough at the time, so I'd /really/ prefer not to change > > the semantics of this again if we can avoid it. > > The comment makes sense for the is_kernel_in_hyp_mode() case. > > However, for the !is_kernel_in_hyp_mode() case I can't see the current > behavior of exclude_hv being similar in other architectures. > > I don't think the current semantics of excluding EL2 on a non-VHE host > system makes much sense, and I doubt anyone is using that for something > meaningful. I think changing behavior for excldue_hv to depend on > is_hyp_mode_available rather than is_kernel_in_hyp_mode is the right > thing to do which would also align the semantics with other > architectures and between VHE and non-VHE. Just for clarity, see below for the proposed patch - this disallows EL2 counting for !VHE when we have the capability to be a KVM host. Subject: [PATCH] arm64: arm_pmu: Disallow EL2 counting on !VHE unless guest When the kernel runs without VHE support it runs at EL1. However it switches to EL2 when switching to and from KVM guests. The exclude_hv flag (for a !VHE kernel) will include EL2 counting. The exclude_hv flag is intended to count events associated with the hypervisor for the current instance, not the overhead of the current instance's guests. Let's disallow EL2 counting for !VHE when we know that we have the capability to be a KVM host (by virtue that we booted in EL2) and thus probably aren't a guest ourselves. Signed-off-by: Andrew Murray <andrew.murray@arm.com> --- arch/arm64/kernel/perf_event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c index 1620a37..bd3f6ca 100644 --- a/arch/arm64/kernel/perf_event.c +++ b/arch/arm64/kernel/perf_event.c @@ -832,7 +832,7 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, } else { if (attr->exclude_kernel) config_base |= ARMV8_PMU_EXCLUDE_EL1; - if (!attr->exclude_hv) + if (!attr->exclude_hv && !is_hyp_mode_is_available()) config_base |= ARMV8_PMU_INCLUDE_EL2; } if (attr->exclude_user)
On Tue, 08 Jan 2019 11:25:13 +0000, Andrew Murray <andrew.murray@arm.com> wrote: Hi Andrew, > My only doubt about this is as follows. If, on a KVM host you run this: > > perf stat -e cycles:H lkvm run ... > > then on the VHE host the cycles reported represents the entire non-guest cycles > associated with running the guest. > > On a !VHE, the cycles reported exclude EL2 (with or without this patch) and > thus you don't get a representation of all the non-guest cycles associated with > the guest. However without this patch you could at least still run: > > perf stat -e cycles:H -e cycles:h lkvm run ... > > and then add the two cycle counts together to get something comparative with > the VHE host. > > If the above patch represents the desired semantics, then perhaps we must count > both EL1 and *EL2* for !exclude_kernel on !VHE. In fact I think we should do > this anyway and remove a little complexity from armv8pmu_set_event_filter. > Thoughts? I'm not sure we should hide the architectural differences between VHE and !VHE. If you're trying to measure what is happening at in the hypervisor, you can't reason about it while ignoring the dual nature of !VHE. Thanks, M.
On Tue, Jan 08, 2019 at 11:50:59AM +0000, Marc Zyngier wrote: > On Tue, 08 Jan 2019 11:25:13 +0000, > Andrew Murray <andrew.murray@arm.com> wrote: > > Hi Andrew, > > > My only doubt about this is as follows. If, on a KVM host you run this: > > > > perf stat -e cycles:H lkvm run ... > > > > then on the VHE host the cycles reported represents the entire non-guest cycles > > associated with running the guest. > > > > On a !VHE, the cycles reported exclude EL2 (with or without this patch) and > > thus you don't get a representation of all the non-guest cycles associated with > > the guest. However without this patch you could at least still run: > > > > perf stat -e cycles:H -e cycles:h lkvm run ... > > > > and then add the two cycle counts together to get something comparative with > > the VHE host. > > > > If the above patch represents the desired semantics, then perhaps we must count > > both EL1 and *EL2* for !exclude_kernel on !VHE. In fact I think we should do > > this anyway and remove a little complexity from armv8pmu_set_event_filter. > > Thoughts? > > I'm not sure we should hide the architectural differences between VHE > and !VHE. If you're trying to measure what is happening at in the > hypervisor, you can't reason about it while ignoring the dual nature > of !VHE. > How do you define hypervisor here? Is that just the code that runs at EL2 or also parts of KVM that runs at EL1? It remains unclear to me why you'd want to measure a subset of KVM, which happens to run in EL2, in your host (and hypervisor-enabled) kernel, and you are even precluded from measuring a comparable portion of your implementation on other Arm systems (VHE). Admittedly, I'm not at export in using perf, but I find this EL1/EL2 distinction out of place as it relates to exlude_kernel, exlude_user, and exlude_hv. Will we have a fourth Arm-specific flag which takes the place of exclude_hv on PowerPC, which excludes an underlying hypervisor when running a guest, should we ever support counting that in the future? Thanks, Christoffer
On 08/01/2019 12:03, Christoffer Dall wrote: > On Tue, Jan 08, 2019 at 11:50:59AM +0000, Marc Zyngier wrote: >> On Tue, 08 Jan 2019 11:25:13 +0000, >> Andrew Murray <andrew.murray@arm.com> wrote: >> >> Hi Andrew, >> >>> My only doubt about this is as follows. If, on a KVM host you run this: >>> >>> perf stat -e cycles:H lkvm run ... >>> >>> then on the VHE host the cycles reported represents the entire non-guest cycles >>> associated with running the guest. >>> >>> On a !VHE, the cycles reported exclude EL2 (with or without this patch) and >>> thus you don't get a representation of all the non-guest cycles associated with >>> the guest. However without this patch you could at least still run: >>> >>> perf stat -e cycles:H -e cycles:h lkvm run ... >>> >>> and then add the two cycle counts together to get something comparative with >>> the VHE host. >>> >>> If the above patch represents the desired semantics, then perhaps we must count >>> both EL1 and *EL2* for !exclude_kernel on !VHE. In fact I think we should do >>> this anyway and remove a little complexity from armv8pmu_set_event_filter. >>> Thoughts? >> >> I'm not sure we should hide the architectural differences between VHE >> and !VHE. If you're trying to measure what is happening at in the >> hypervisor, you can't reason about it while ignoring the dual nature >> of !VHE. >> > > How do you define hypervisor here? Is that just the code that runs at > EL2 or also parts of KVM that runs at EL1? I define it as "not a guest". Whatever is used to support a guest is the hypervisor. > It remains unclear to me why you'd want to measure a subset of KVM, > which happens to run in EL2, in your host (and hypervisor-enabled) > kernel, and you are even precluded from measuring a comparable portion > of your implementation on other Arm systems (VHE). Because I'm not trying to compare apples (VHE) and oranges (!VHE). My use-case for perf is to measure the impact of a change on a given implementation, and the more I can narrow the impact of that change, the better (specially when !VHE precludes the use of other techniques such as sampling). > Admittedly, I'm not at export in using perf, but I find this EL1/EL2 > distinction out of place as it relates to exlude_kernel, exlude_user, > and exlude_hv. Will we have a fourth Arm-specific flag which takes the > place of exclude_hv on PowerPC, which excludes an underlying hypervisor > when running a guest, should we ever support counting that in the > future? In all honestly, exclude_hv doesn't make much sense to me on a VHE system, unless you define an arbitrary cutting point where things are on one side or the other. As for a fourth flag, I have no idea. Thanks, M.
On Tue, Jan 08, 2019 at 11:25:13AM +0000, Andrew Murray wrote: > On Tue, Jan 08, 2019 at 11:18:43AM +0100, Christoffer Dall wrote: > > On Fri, Jan 04, 2019 at 03:32:06PM +0000, Will Deacon wrote: > > > On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > > > > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > > > > Add support for the :G and :H attributes in perf by handling the > > > > > exclude_host/exclude_guest event attributes. > > > > > > > > > > We notify KVM of counters that we wish to be enabled or disabled on > > > > > guest entry/exit and thus defer from starting or stopping :G events > > > > > as per the events exclude_host attribute. > > > > > > > > > > With both VHE and non-VHE we switch the counters between host/guest > > > > > at EL2. We are able to eliminate counters counting host events on > > > > > the boundaries of guest entry/exit when using :G by filtering out > > > > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > > > > on non-VHE then there is a small blackout window at the guest > > > > > entry/exit where host events are not captured. > > > > > > > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > > > > --- > > > > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > > > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > > > > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > > > > index de564ae..4a3c73d 100644 > > > > > --- a/arch/arm64/kernel/perf_event.c > > > > > +++ b/arch/arm64/kernel/perf_event.c > > > > > @@ -26,6 +26,7 @@ > > > > > > > > > > #include <linux/acpi.h> > > > > > #include <linux/clocksource.h> > > > > > +#include <linux/kvm_host.h> > > > > > #include <linux/of.h> > > > > > #include <linux/perf/arm_pmu.h> > > > > > #include <linux/platform_device.h> > > > > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > > > > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > > > > { > > > > > + struct perf_event_attr *attr = &event->attr; > > > > > int idx = event->hw.idx; > > > > > + int flags = 0; > > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > > > - armv8pmu_enable_counter(idx); > > > > > if (armv8pmu_event_is_chained(event)) > > > > > - armv8pmu_enable_counter(idx - 1); > > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > > + > > > > > + if (!attr->exclude_host) > > > > > + flags |= KVM_PMU_EVENTS_HOST; > > > > > + if (!attr->exclude_guest) > > > > > + flags |= KVM_PMU_EVENTS_GUEST; > > > > > + > > > > > + kvm_set_pmu_events(counter_bits, flags); > > > > > + > > > > > + if (!attr->exclude_host) { > > > > > + armv8pmu_enable_counter(idx); > > > > > + if (armv8pmu_event_is_chained(event)) > > > > > + armv8pmu_enable_counter(idx - 1); > > > > > + } > > > > > } > > > > > > > > > > static inline int armv8pmu_disable_counter(int idx) > > > > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > > > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > > > > { > > > > > struct hw_perf_event *hwc = &event->hw; > > > > > + struct perf_event_attr *attr = &event->attr; > > > > > int idx = hwc->idx; > > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > > > if (armv8pmu_event_is_chained(event)) > > > > > - armv8pmu_disable_counter(idx - 1); > > > > > - armv8pmu_disable_counter(idx); > > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > > + > > > > > + kvm_clr_pmu_events(counter_bits); > > > > > + > > > > > + if (!attr->exclude_host) { > > > > > + if (armv8pmu_event_is_chained(event)) > > > > > + armv8pmu_disable_counter(idx - 1); > > > > > + armv8pmu_disable_counter(idx); > > > > > + } > > > > > } > > > > > > > > > > static inline int armv8pmu_enable_intens(int idx) > > > > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > > > > * Therefore we ignore exclude_hv in this configuration, since > > > > > * there's no hypervisor to sample anyway. This is consistent > > > > > * with other architectures (x86 and Power). > > > > > + * > > > > > + * To eliminate counting host events on the boundaries of > > > > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > > > > + * with !exclude_host. > > > > > */ > > > > > if (is_kernel_in_hyp_mode()) { > > > > > - if (!attr->exclude_kernel) > > > > > + if (!attr->exclude_kernel && !attr->exclude_host) > > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > } else { > > > > > - if (attr->exclude_kernel) > > > > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > > > > if (!attr->exclude_hv) > > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > > > > I'm not sure about the current use of exclude_hv here. The comment says > > > > it's consistent with other architectures, but I can't find an example to > > > > confirm this, and I don't think we have a comparable thing to the split > > > > of the hypervisor between EL1 and EL2 we have on non-VHE. > > > > > > FWIW, that comment came from this thread: > > > > > > http://lists.infradead.org/pipermail/linux-arm-kernel/2017-April/503908.html > > > > > > That was painful enough at the time, so I'd /really/ prefer not to change > > > the semantics of this again if we can avoid it. > > > > The comment makes sense for the is_kernel_in_hyp_mode() case. > > > > However, for the !is_kernel_in_hyp_mode() case I can't see the current > > behavior of exclude_hv being similar in other architectures. > > > > I don't think the current semantics of excluding EL2 on a non-VHE host > > system makes much sense, and I doubt anyone is using that for something > > meaningful. I think changing behavior for excldue_hv to depend on > > is_hyp_mode_available rather than is_kernel_in_hyp_mode is the right > > thing to do which would also align the semantics with other > > architectures and between VHE and non-VHE. > > Just for clarity, see below for the proposed patch - this disallows EL2 > counting for !VHE when we have the capability to be a KVM host. > That was not what I meant. I think you want to count EL1 and EL2 together on a non-VHE host system. What I had in mind was more something like the following (completely untested, of course): diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c index e213f8e867f6..37648bedf8b0 100644 --- a/arch/arm64/kernel/perf_event.c +++ b/arch/arm64/kernel/perf_event.c @@ -948,6 +948,11 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, if (is_kernel_in_hyp_mode()) { if (!attr->exclude_kernel) config_base |= ARMV8_PMU_INCLUDE_EL2; + } else if (is_hyp_mode_available()) { + if (attr->exclude_kernel) + config_base |= ARMV8_PMU_EXCLUDE_EL1; + else + config_base |= ARMV8_PMU_INCLUDE_EL2; } else { if (attr->exclude_kernel) config_base |= ARMV8_PMU_EXCLUDE_EL1; Thanks, Christoffer
On Tue, Jan 08, 2019 at 12:12:13PM +0000, Marc Zyngier wrote: > On 08/01/2019 12:03, Christoffer Dall wrote: > > On Tue, Jan 08, 2019 at 11:50:59AM +0000, Marc Zyngier wrote: > >> On Tue, 08 Jan 2019 11:25:13 +0000, > >> Andrew Murray <andrew.murray@arm.com> wrote: > >> > >> Hi Andrew, > >> > >>> My only doubt about this is as follows. If, on a KVM host you run this: > >>> > >>> perf stat -e cycles:H lkvm run ... > >>> > >>> then on the VHE host the cycles reported represents the entire non-guest cycles > >>> associated with running the guest. > >>> > >>> On a !VHE, the cycles reported exclude EL2 (with or without this patch) and > >>> thus you don't get a representation of all the non-guest cycles associated with > >>> the guest. However without this patch you could at least still run: > >>> > >>> perf stat -e cycles:H -e cycles:h lkvm run ... > >>> > >>> and then add the two cycle counts together to get something comparative with > >>> the VHE host. > >>> > >>> If the above patch represents the desired semantics, then perhaps we must count > >>> both EL1 and *EL2* for !exclude_kernel on !VHE. In fact I think we should do > >>> this anyway and remove a little complexity from armv8pmu_set_event_filter. > >>> Thoughts? > >> > >> I'm not sure we should hide the architectural differences between VHE > >> and !VHE. If you're trying to measure what is happening at in the > >> hypervisor, you can't reason about it while ignoring the dual nature > >> of !VHE. > >> > > > > How do you define hypervisor here? Is that just the code that runs at > > EL2 or also parts of KVM that runs at EL1? > > I define it as "not a guest". Whatever is used to support a guest is the > hypervisor. > > > It remains unclear to me why you'd want to measure a subset of KVM, > > which happens to run in EL2, in your host (and hypervisor-enabled) > > kernel, and you are even precluded from measuring a comparable portion > > of your implementation on other Arm systems (VHE). > > Because I'm not trying to compare apples (VHE) and oranges (!VHE). My > use-case for perf is to measure the impact of a change on a given > implementation, and the more I can narrow the impact of that change, the > better (specially when !VHE precludes the use of other techniques such > as sampling). > Fair enough. I don't know if that's the only use case for perf we should consider though. > > Admittedly, I'm not at export in using perf, but I find this EL1/EL2 > > distinction out of place as it relates to exlude_kernel, exlude_user, > > and exlude_hv. Will we have a fourth Arm-specific flag which takes the > > place of exclude_hv on PowerPC, which excludes an underlying hypervisor > > when running a guest, should we ever support counting that in the > > future? > In all honestly, exclude_hv doesn't make much sense to me on a VHE > system, unless you define an arbitrary cutting point where things are on > one side or the other. As for a fourth flag, I have no idea. > I think this all boils down to how these flags are interpreted and represented to a user via tooling. If these flags must be considered in complete isolation on a particular system and architecture, then fine, we can define it as whatever we want, giving us a little bit more insight on where things happen on a !VHE system. If we care about these flags representing similar semantics to other architectures, then I contend that we are abusing the exclude_hv flag today, and exclude_hv should only ever have an effect when set within a guest, not in a host. Thanks, Christoffer
On Tue, Jan 08, 2019 at 01:14:25PM +0100, Christoffer Dall wrote: > On Tue, Jan 08, 2019 at 11:25:13AM +0000, Andrew Murray wrote: > > On Tue, Jan 08, 2019 at 11:18:43AM +0100, Christoffer Dall wrote: > > > On Fri, Jan 04, 2019 at 03:32:06PM +0000, Will Deacon wrote: > > > > On Tue, Dec 18, 2018 at 01:02:26PM +0100, Christoffer Dall wrote: > > > > > On Wed, Dec 12, 2018 at 10:29:32AM +0000, Andrew Murray wrote: > > > > > > Add support for the :G and :H attributes in perf by handling the > > > > > > exclude_host/exclude_guest event attributes. > > > > > > > > > > > > We notify KVM of counters that we wish to be enabled or disabled on > > > > > > guest entry/exit and thus defer from starting or stopping :G events > > > > > > as per the events exclude_host attribute. > > > > > > > > > > > > With both VHE and non-VHE we switch the counters between host/guest > > > > > > at EL2. We are able to eliminate counters counting host events on > > > > > > the boundaries of guest entry/exit when using :G by filtering out > > > > > > EL2 for exclude_host. However when using :H unless exclude_hv is set > > > > > > on non-VHE then there is a small blackout window at the guest > > > > > > entry/exit where host events are not captured. > > > > > > > > > > > > Signed-off-by: Andrew Murray <andrew.murray@arm.com> > > > > > > --- > > > > > > arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ > > > > > > 1 file changed, 44 insertions(+), 7 deletions(-) > > > > > > > > > > > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > > > > > > index de564ae..4a3c73d 100644 > > > > > > --- a/arch/arm64/kernel/perf_event.c > > > > > > +++ b/arch/arm64/kernel/perf_event.c > > > > > > @@ -26,6 +26,7 @@ > > > > > > > > > > > > #include <linux/acpi.h> > > > > > > #include <linux/clocksource.h> > > > > > > +#include <linux/kvm_host.h> > > > > > > #include <linux/of.h> > > > > > > #include <linux/perf/arm_pmu.h> > > > > > > #include <linux/platform_device.h> > > > > > > @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) > > > > > > > > > > > > static inline void armv8pmu_enable_event_counter(struct perf_event *event) > > > > > > { > > > > > > + struct perf_event_attr *attr = &event->attr; > > > > > > int idx = event->hw.idx; > > > > > > + int flags = 0; > > > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > > > > > - armv8pmu_enable_counter(idx); > > > > > > if (armv8pmu_event_is_chained(event)) > > > > > > - armv8pmu_enable_counter(idx - 1); > > > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > > > + > > > > > > + if (!attr->exclude_host) > > > > > > + flags |= KVM_PMU_EVENTS_HOST; > > > > > > + if (!attr->exclude_guest) > > > > > > + flags |= KVM_PMU_EVENTS_GUEST; > > > > > > + > > > > > > + kvm_set_pmu_events(counter_bits, flags); > > > > > > + > > > > > > + if (!attr->exclude_host) { > > > > > > + armv8pmu_enable_counter(idx); > > > > > > + if (armv8pmu_event_is_chained(event)) > > > > > > + armv8pmu_enable_counter(idx - 1); > > > > > > + } > > > > > > } > > > > > > > > > > > > static inline int armv8pmu_disable_counter(int idx) > > > > > > @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) > > > > > > static inline void armv8pmu_disable_event_counter(struct perf_event *event) > > > > > > { > > > > > > struct hw_perf_event *hwc = &event->hw; > > > > > > + struct perf_event_attr *attr = &event->attr; > > > > > > int idx = hwc->idx; > > > > > > + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); > > > > > > > > > > > > if (armv8pmu_event_is_chained(event)) > > > > > > - armv8pmu_disable_counter(idx - 1); > > > > > > - armv8pmu_disable_counter(idx); > > > > > > + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); > > > > > > + > > > > > > + kvm_clr_pmu_events(counter_bits); > > > > > > + > > > > > > + if (!attr->exclude_host) { > > > > > > + if (armv8pmu_event_is_chained(event)) > > > > > > + armv8pmu_disable_counter(idx - 1); > > > > > > + armv8pmu_disable_counter(idx); > > > > > > + } > > > > > > } > > > > > > > > > > > > static inline int armv8pmu_enable_intens(int idx) > > > > > > @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > > > > > > * Therefore we ignore exclude_hv in this configuration, since > > > > > > * there's no hypervisor to sample anyway. This is consistent > > > > > > * with other architectures (x86 and Power). > > > > > > + * > > > > > > + * To eliminate counting host events on the boundaries of > > > > > > + * guest entry/exit we ensure EL2 is not included in hyp mode > > > > > > + * with !exclude_host. > > > > > > */ > > > > > > if (is_kernel_in_hyp_mode()) { > > > > > > - if (!attr->exclude_kernel) > > > > > > + if (!attr->exclude_kernel && !attr->exclude_host) > > > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > > } else { > > > > > > - if (attr->exclude_kernel) > > > > > > - config_base |= ARMV8_PMU_EXCLUDE_EL1; > > > > > > if (!attr->exclude_hv) > > > > > > config_base |= ARMV8_PMU_INCLUDE_EL2; > > > > > > > > > > I'm not sure about the current use of exclude_hv here. The comment says > > > > > it's consistent with other architectures, but I can't find an example to > > > > > confirm this, and I don't think we have a comparable thing to the split > > > > > of the hypervisor between EL1 and EL2 we have on non-VHE. > > > > > > > > FWIW, that comment came from this thread: > > > > > > > > http://lists.infradead.org/pipermail/linux-arm-kernel/2017-April/503908.html > > > > > > > > That was painful enough at the time, so I'd /really/ prefer not to change > > > > the semantics of this again if we can avoid it. > > > > > > The comment makes sense for the is_kernel_in_hyp_mode() case. > > > > > > However, for the !is_kernel_in_hyp_mode() case I can't see the current > > > behavior of exclude_hv being similar in other architectures. > > > > > > I don't think the current semantics of excluding EL2 on a non-VHE host > > > system makes much sense, and I doubt anyone is using that for something > > > meaningful. I think changing behavior for excldue_hv to depend on > > > is_hyp_mode_available rather than is_kernel_in_hyp_mode is the right > > > thing to do which would also align the semantics with other > > > architectures and between VHE and non-VHE. > > > > Just for clarity, see below for the proposed patch - this disallows EL2 > > counting for !VHE when we have the capability to be a KVM host. > > > > That was not what I meant. I think you want to count EL1 and EL2 > together on a non-VHE host system. > > What I had in mind was more > something like the following (completely untested, of course): > > diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c > index e213f8e867f6..37648bedf8b0 100644 > --- a/arch/arm64/kernel/perf_event.c > +++ b/arch/arm64/kernel/perf_event.c > @@ -948,6 +948,11 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, > if (is_kernel_in_hyp_mode()) { > if (!attr->exclude_kernel) > config_base |= ARMV8_PMU_INCLUDE_EL2; > + } else if (is_hyp_mode_available()) { > + if (attr->exclude_kernel) > + config_base |= ARMV8_PMU_EXCLUDE_EL1; > + else > + config_base |= ARMV8_PMU_INCLUDE_EL2; Right - so if we're on !VHE and we have the capability to be a KVM host (and thus we're not a guest) then treat EL1/EL2 as the 'kernel' - this includes EL2 so includes the hypervisor overhead for any guests. This looks correct to me. > } else { > if (attr->exclude_kernel) > config_base |= ARMV8_PMU_EXCLUDE_EL1; And when we don't have the capability to be a KVM host then we don't care about EL2 for exclude_kernel. This looks correct to me. This proposed change also allows us to still count EL2 when we are not a KVM host and when !exclude_hv is set. This makes sense as... - If we're a XEN guest or similar, we can use !exclude_hv to count EL2. - In the future we could support a KVM guest using exclude_hv to count the host kernel time pinned to the KVM process. The proposed change would attempt to count EL2 which virt/kvm/arm/pmu.c could treat as !exclude_kernel on the host (pinned to the KVM process). Thanks, Andrew Murray > > > Thanks, > > Christoffer
diff --git a/arch/arm64/kernel/perf_event.c b/arch/arm64/kernel/perf_event.c index de564ae..4a3c73d 100644 --- a/arch/arm64/kernel/perf_event.c +++ b/arch/arm64/kernel/perf_event.c @@ -26,6 +26,7 @@ #include <linux/acpi.h> #include <linux/clocksource.h> +#include <linux/kvm_host.h> #include <linux/of.h> #include <linux/perf/arm_pmu.h> #include <linux/platform_device.h> @@ -647,11 +648,26 @@ static inline int armv8pmu_enable_counter(int idx) static inline void armv8pmu_enable_event_counter(struct perf_event *event) { + struct perf_event_attr *attr = &event->attr; int idx = event->hw.idx; + int flags = 0; + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); - armv8pmu_enable_counter(idx); if (armv8pmu_event_is_chained(event)) - armv8pmu_enable_counter(idx - 1); + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); + + if (!attr->exclude_host) + flags |= KVM_PMU_EVENTS_HOST; + if (!attr->exclude_guest) + flags |= KVM_PMU_EVENTS_GUEST; + + kvm_set_pmu_events(counter_bits, flags); + + if (!attr->exclude_host) { + armv8pmu_enable_counter(idx); + if (armv8pmu_event_is_chained(event)) + armv8pmu_enable_counter(idx - 1); + } } static inline int armv8pmu_disable_counter(int idx) @@ -664,11 +680,20 @@ static inline int armv8pmu_disable_counter(int idx) static inline void armv8pmu_disable_event_counter(struct perf_event *event) { struct hw_perf_event *hwc = &event->hw; + struct perf_event_attr *attr = &event->attr; int idx = hwc->idx; + u32 counter_bits = BIT(ARMV8_IDX_TO_COUNTER(idx)); if (armv8pmu_event_is_chained(event)) - armv8pmu_disable_counter(idx - 1); - armv8pmu_disable_counter(idx); + counter_bits |= BIT(ARMV8_IDX_TO_COUNTER(idx - 1)); + + kvm_clr_pmu_events(counter_bits); + + if (!attr->exclude_host) { + if (armv8pmu_event_is_chained(event)) + armv8pmu_disable_counter(idx - 1); + armv8pmu_disable_counter(idx); + } } static inline int armv8pmu_enable_intens(int idx) @@ -943,16 +968,25 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, * Therefore we ignore exclude_hv in this configuration, since * there's no hypervisor to sample anyway. This is consistent * with other architectures (x86 and Power). + * + * To eliminate counting host events on the boundaries of + * guest entry/exit we ensure EL2 is not included in hyp mode + * with !exclude_host. */ if (is_kernel_in_hyp_mode()) { - if (!attr->exclude_kernel) + if (!attr->exclude_kernel && !attr->exclude_host) config_base |= ARMV8_PMU_INCLUDE_EL2; } else { - if (attr->exclude_kernel) - config_base |= ARMV8_PMU_EXCLUDE_EL1; if (!attr->exclude_hv) config_base |= ARMV8_PMU_INCLUDE_EL2; } + + /* + * Filter out !VHE kernels and guest kernels + */ + if (attr->exclude_kernel) + config_base |= ARMV8_PMU_EXCLUDE_EL1; + if (attr->exclude_user) config_base |= ARMV8_PMU_EXCLUDE_EL0; @@ -976,6 +1010,9 @@ static void armv8pmu_reset(void *info) armv8pmu_disable_intens(idx); } + /* Clear the counters we flip at guest entry/exit */ + kvm_clr_pmu_events(U32_MAX); + /* * Initialize & Reset PMNC. Request overflow interrupt for * 64 bit cycle counter but cheat in armv8pmu_write_counter().
Add support for the :G and :H attributes in perf by handling the exclude_host/exclude_guest event attributes. We notify KVM of counters that we wish to be enabled or disabled on guest entry/exit and thus defer from starting or stopping :G events as per the events exclude_host attribute. With both VHE and non-VHE we switch the counters between host/guest at EL2. We are able to eliminate counters counting host events on the boundaries of guest entry/exit when using :G by filtering out EL2 for exclude_host. However when using :H unless exclude_hv is set on non-VHE then there is a small blackout window at the guest entry/exit where host events are not captured. Signed-off-by: Andrew Murray <andrew.murray@arm.com> --- arch/arm64/kernel/perf_event.c | 51 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 44 insertions(+), 7 deletions(-)