perf pmu: Fix pmu events parsing rule
Currently all the event parsing fails end up in the event_pmu rule, and
display misleading help like:
$ perf stat -e inst kill
event syntax error: 'inst'
\___ Cannot find PMU `inst'. Missing kernel support?
...
The reason is that the event_pmu is too strong and match also single
string. Changing it to force the '/' separators to be part of the rule,
and getting the proper error now:
$ perf stat -e inst kill
event syntax error: 'inst'
\___ parser error
Run 'perf list' for a list of valid events
...
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Reported-by: Ingo Molnar <mingo@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20180423090823.32309-5-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
committed by
Arnaldo Carvalho de Melo
parent
129193bb0c
commit
9a4a931ce8
@@ -224,15 +224,15 @@ event_def: event_pmu |
|
|||||||
event_bpf_file
|
event_bpf_file
|
||||||
|
|
||||||
event_pmu:
|
event_pmu:
|
||||||
PE_NAME opt_event_config
|
PE_NAME '/' event_config '/'
|
||||||
{
|
{
|
||||||
struct list_head *list, *orig_terms, *terms;
|
struct list_head *list, *orig_terms, *terms;
|
||||||
|
|
||||||
if (parse_events_copy_term_list($2, &orig_terms))
|
if (parse_events_copy_term_list($3, &orig_terms))
|
||||||
YYABORT;
|
YYABORT;
|
||||||
|
|
||||||
ALLOC_LIST(list);
|
ALLOC_LIST(list);
|
||||||
if (parse_events_add_pmu(_parse_state, list, $1, $2, false)) {
|
if (parse_events_add_pmu(_parse_state, list, $1, $3, false)) {
|
||||||
struct perf_pmu *pmu = NULL;
|
struct perf_pmu *pmu = NULL;
|
||||||
int ok = 0;
|
int ok = 0;
|
||||||
char *pattern;
|
char *pattern;
|
||||||
@@ -262,7 +262,7 @@ PE_NAME opt_event_config
|
|||||||
if (!ok)
|
if (!ok)
|
||||||
YYABORT;
|
YYABORT;
|
||||||
}
|
}
|
||||||
parse_events_terms__delete($2);
|
parse_events_terms__delete($3);
|
||||||
parse_events_terms__delete(orig_terms);
|
parse_events_terms__delete(orig_terms);
|
||||||
$$ = list;
|
$$ = list;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user