Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1631188
| From | "Jayachandran C." <c.jayachandran@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2] arm64: perf: Use only exclude_kernel attribute when kernel is running in HYP |
| Date | 2017-04-26 09:00 +0200 |
| Message-ID | <tAp5D-75J-3@gated-at.bofh.it> (permalink) |
| References | (1 earlier) <tyg6t-6Ky-13@gated-at.bofh.it> <tygzv-7a4-3@gated-at.bofh.it> <tzOpt-mK-45@gated-at.bofh.it> <tzZEd-7Hj-5@gated-at.bofh.it> <tAbYK-7eg-21@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Will, On Tue, Apr 25, 2017 at 10:23 PM, Will Deacon <will.deacon@arm.com> wrote: > On Tue, Apr 25, 2017 at 09:13:40AM +0530, Ganapatrao Kulkarni wrote: >> On Mon, Apr 24, 2017 at 9:15 PM, Will Deacon <will.deacon@arm.com> wrote: >> > On Thu, Apr 20, 2017 at 02:56:50PM +0530, Ganapatrao Kulkarni wrote: >> >> On Thu, Apr 20, 2017 at 2:19 PM, Mark Rutland <mark.rutland@arm.com> wrote: >> >> > On Wed, Apr 19, 2017 at 11:14:06PM +0530, Ganapatrao Kulkarni wrote: >> >> >> commit d98ecda (arm64: perf: Count EL2 events if the kernel is running in HYP) >> >> >> is returning error for perf syscall with mixed attribute set for exclude_kernel >> >> >> and exclude_hv. This change is breaking some applications (observed with hhvm) >> >> >> when ran on VHE enabled platforms. >> >> >> >> >> >> Adding fix to consider only exclude_kernel attribute when kernel is >> >> >> running in HYP. Also adding sysfs file to notify the bhehaviour >> >> >> of attribute exclude_hv. >> >> >> >> >> >> Signed-off-by: Ganapatrao Kulkarni <ganapatrao.kulkarni@cavium.com> >> >> >> --- >> >> >> >> >> >> Changelog: >> >> >> >> >> >> V2: >> >> >> - Changes as per Will Deacon's suggestion. >> >> >> >> >> >> V1: Initial patch >> >> >> >> >> >> arch/arm64/kernel/perf_event.c | 28 ++++++++++++++++++++++++---- >> >> >> include/linux/perf/arm_pmu.h | 1 + >> >> >> 2 files changed, 25 insertions(+), 4 deletions(-) >> >> >> >> >> >> @@ -871,14 +890,13 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, >> >> >> >> >> >> if (attr->exclude_idle) >> >> >> return -EPERM; >> >> >> - if (is_kernel_in_hyp_mode() && >> >> >> - attr->exclude_kernel != attr->exclude_hv) >> >> >> - return -EINVAL; >> >> >> + if (is_kernel_in_hyp_mode() && !attr->exclude_kernel) >> >> >> + config_base |= ARMV8_PMU_INCLUDE_EL2; >> >> >> if (attr->exclude_user) >> >> >> config_base |= ARMV8_PMU_EXCLUDE_EL0; >> >> >> if (!is_kernel_in_hyp_mode() && attr->exclude_kernel) >> >> >> config_base |= ARMV8_PMU_EXCLUDE_EL1; >> >> >> - if (!attr->exclude_hv) >> >> >> + if (!is_kernel_in_hyp_mode() && !attr->exclude_hv) >> >> >> config_base |= ARMV8_PMU_INCLUDE_EL2; >> >> > >> >> > This isn't quite what Will suggested. >> >> > >> >> > The idea was that userspace would read sysfs, then use that to determine >> >> > the correct exclusion parameters [1,2]. This logic was not expected to >> >> > change; it correctly validates whether we can provide what the user >> >> > requests. >> >> >> >> OK, if you are ok with sysfs part, i can send next version with that >> >> change only?. >> > >> > I think the sysfs part is still a little dodgy, since you still expose the >> > "exclude_hv" file with a value of 0 when not running at EL2, which would >> > imply that exclude_hv is forced to zero. I don't think that's correct. >> >> okay, i can make exclude_hv visible only when kernel booted in EL2. >> is it ok to have empty directory "attr" when kernel booted to EL1? >> attr can be place holder for any other miscellaneous attributes, that >> can be added in future. > > Sounds good to me, although I'll seek comment from the other perf folks > before merging anything with ABI implications. Do you really think this is the solution given: - this is an arm64 specific sysfs interface that is tied to the perf API - the perf API documentation has to be updated for this - All the applications that use the perf API have to be modified to check this sysfs interface - If the application fails to do so, a very narrow corner case (exclude_hv != exclude_kernel and VHE enabled) fails. Any application that really cares can already do see if exclude_hv != exclude_kernel case works by calling perf_open_event() with those options and checking the return value. Hope I am mistake here, otherwise this does not sound like a good idea. JC.
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [PATCH v2] arm64: perf: Use only exclude_kernel attribute when kernel is running in HYP Ganapatrao Kulkarni <gpkulkarni@gmail.com> - 2017-04-25 05:50 +0200
Re: [PATCH v2] arm64: perf: Use only exclude_kernel attribute when kernel is running in HYP Will Deacon <will.deacon@arm.com> - 2017-04-25 19:00 +0200
Re: [PATCH v2] arm64: perf: Use only exclude_kernel attribute when kernel is running in HYP "Jayachandran C." <c.jayachandran@gmail.com> - 2017-04-26 09:00 +0200
Re: [PATCH v2] arm64: perf: Use only exclude_kernel attribute when kernel is running in HYP Will Deacon <will.deacon@arm.com> - 2017-04-26 12:20 +0200
Re: [PATCH v2] arm64: perf: Use only exclude_kernel attribute when kernel is running in HYP Will Deacon <will.deacon@arm.com> - 2017-04-27 19:40 +0200
Re: [PATCH v2] arm64: perf: Use only exclude_kernel attribute when kernel is running in HYP Will Deacon <will.deacon@arm.com> - 2017-04-28 18:40 +0200
csiph-web