Patch "perf tools: Fix misleading add event PMU debug message" has been added to the 5.17-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    perf tools: Fix misleading add event PMU debug message

to the 5.17-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     perf-tools-fix-misleading-add-event-pmu-debug-messag.patch
and it can be found in the queue-5.17 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 054690ef5608098db014d3455564f06eb98b9930
Author: Adrian Hunter <adrian.hunter@xxxxxxxxx>
Date:   Mon Apr 11 09:17:58 2022 +0300

    perf tools: Fix misleading add event PMU debug message
    
    [ Upstream commit f034fc50d3c7d9385c20d505ab4cf56b8fd18ac7 ]
    
    Fix incorrect debug message:
    
       Attempting to add event pmu 'intel_pt' with '' that may result in
       non-fatal errors
    
    which always appears with perf record -vv and intel_pt e.g.
    
        perf record -vv -e intel_pt//u uname
    
    The message is incorrect because there will never be non-fatal errors.
    
    Suppress the message if the PMU is 'selectable' i.e. meant to be
    selected directly as an event.
    
    Fixes: 4ac22b484d4c79e8 ("perf parse-events: Make add PMU verbose output clearer")
    Signed-off-by: Adrian Hunter <adrian.hunter@xxxxxxxxx>
    Cc: Ian Rogers <irogers@xxxxxxxxxx>
    Cc: Jiri Olsa <jolsa@xxxxxxxxxx>
    Link: http://lore.kernel.org/lkml/20220411061758.2458417-1-adrian.hunter@xxxxxxxxx
    Signed-off-by: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c
index 24997925ae00..dd84fed698a3 100644
--- a/tools/perf/util/parse-events.c
+++ b/tools/perf/util/parse-events.c
@@ -1523,7 +1523,9 @@ int parse_events_add_pmu(struct parse_events_state *parse_state,
 	bool use_uncore_alias;
 	LIST_HEAD(config_terms);
 
-	if (verbose > 1) {
+	pmu = parse_state->fake_pmu ?: perf_pmu__find(name);
+
+	if (verbose > 1 && !(pmu && pmu->selectable)) {
 		fprintf(stderr, "Attempting to add event pmu '%s' with '",
 			name);
 		if (head_config) {
@@ -1536,7 +1538,6 @@ int parse_events_add_pmu(struct parse_events_state *parse_state,
 		fprintf(stderr, "' that may result in non-fatal errors\n");
 	}
 
-	pmu = parse_state->fake_pmu ?: perf_pmu__find(name);
 	if (!pmu) {
 		char *err_str;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux