2021-03-02 09:02:07

by Sai Prakash Ranjan

[permalink] [raw]
Subject: [PATCHv2 2/4] perf evsel: Print warning for excluding kernel mode instruction tracing

Add a warning message to check CONFIG_EXCLUDE_KERNEL_HW_ITRACE kernel
config which excludes kernel mode instruction tracing to help perf tool
users identify the perf event open failure when they attempt kernel mode
tracing with this config enabled.

Tested-by: Denis Nikitin <[email protected]>
Signed-off-by: Sai Prakash Ranjan <[email protected]>
---
tools/perf/util/evsel.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c
index 1bf76864c4f2..3f584128a590 100644
--- a/tools/perf/util/evsel.c
+++ b/tools/perf/util/evsel.c
@@ -2672,7 +2672,8 @@ int evsel__open_strerror(struct evsel *evsel, struct target *target,
">= 1: Disallow CPU event access\n"
">= 2: Disallow kernel profiling\n"
"To make the adjusted perf_event_paranoid setting permanent preserve it\n"
- "in /etc/sysctl.conf (e.g. kernel.perf_event_paranoid = <setting>)",
+ "in /etc/sysctl.conf (e.g. kernel.perf_event_paranoid = <setting>)\n\n"
+ "Also check CONFIG_EXCLUDE_KERNEL_PMU_TRACE if kernel mode tracing is allowed.",
perf_event_paranoid());
case ENOENT:
return scnprintf(msg, size, "The %s event is not supported.", evsel__name(evsel));
--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation


2021-03-02 20:06:34

by Sai Prakash Ranjan

[permalink] [raw]
Subject: Re: [PATCHv2 2/4] perf evsel: Print warning for excluding kernel mode instruction tracing

Hi

On 2021-03-02 04:13, Doug Anderson wrote:
> Hi,
>
> On Mon, Mar 1, 2021 at 11:05 AM Sai Prakash Ranjan
> <[email protected]> wrote:
>>
>> Add a warning message to check CONFIG_EXCLUDE_KERNEL_HW_ITRACE kernel
>> config which excludes kernel mode instruction tracing to help perf
>> tool
>> users identify the perf event open failure when they attempt kernel
>> mode
>> tracing with this config enabled.
>>
>> Tested-by: Denis Nikitin <[email protected]>
>> Signed-off-by: Sai Prakash Ranjan <[email protected]>
>> ---
>> tools/perf/util/evsel.c | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> I'm not really knowledgeable at all about the perf subsystem so my
> review doesn't hold a lot of weight. However, Sai's patch seems sane
> to me.
>
> Reviewed-by: Douglas Anderson <[email protected]>

Thanks for the review, I carefully modified all the patch commit
messages
to change the config and wording from CONFIG_EXCLUDE_KERNEL_HW_ITRACE to
CONFIG_EXCLUDE_KERNEL_PMU_TRACE but missed this commit message. I will
fix this up in v3, but will hold off posting v3 till I get some feedback
on other patches.

Thanks,
Sai

--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a
member
of Code Aurora Forum, hosted by The Linux Foundation

2021-03-04 05:29:55

by Doug Anderson

[permalink] [raw]
Subject: Re: [PATCHv2 2/4] perf evsel: Print warning for excluding kernel mode instruction tracing

Hi,

On Mon, Mar 1, 2021 at 11:05 AM Sai Prakash Ranjan
<[email protected]> wrote:
>
> Add a warning message to check CONFIG_EXCLUDE_KERNEL_HW_ITRACE kernel
> config which excludes kernel mode instruction tracing to help perf tool
> users identify the perf event open failure when they attempt kernel mode
> tracing with this config enabled.
>
> Tested-by: Denis Nikitin <[email protected]>
> Signed-off-by: Sai Prakash Ranjan <[email protected]>
> ---
> tools/perf/util/evsel.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)

I'm not really knowledgeable at all about the perf subsystem so my
review doesn't hold a lot of weight. However, Sai's patch seems sane
to me.

Reviewed-by: Douglas Anderson <[email protected]>