diff options
author | Jiri Olsa <jolsa@kernel.org> | 2018-04-23 11:08:19 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-04-23 11:21:56 -0300 |
commit | e9add8bac6c69edb4bf391e537faa659b2ed70d2 (patch) | |
tree | 9ea7858fa103f9fc527e58ed672f80c6d89393f5 /tools/perf/tests/attr/test-record-group-sampling | |
parent | 9a4a931ce847f4aaa12edf11b2e050e18bf45910 (diff) | |
download | linux-e9add8bac6c69edb4bf391e537faa659b2ed70d2.tar.gz linux-e9add8bac6c69edb4bf391e537faa659b2ed70d2.tar.bz2 linux-e9add8bac6c69edb4bf391e537faa659b2ed70d2.zip |
perf evsel: Disable write_backward for leader sampling group events
.. and other related fields that do not need to be enabled
for events that have sampling leader.
It fixes the perf top usage Ingo reported broken:
# perf top -e '{cycles,msr/aperf/}:S'
The 'msr/aperf/' event is configured for write_back sampling, which is
not allowed by the MSR PMU, so it fails to create the event.
Adjusting related attr test.
Reported-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Jiri Olsa <jolsa@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: Kan Liang <kan.liang@linux.intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20180423090823.32309-6-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests/attr/test-record-group-sampling')
-rw-r--r-- | tools/perf/tests/attr/test-record-group-sampling | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/tests/attr/test-record-group-sampling b/tools/perf/tests/attr/test-record-group-sampling index f906b793196f..8a33ca4f9e1f 100644 --- a/tools/perf/tests/attr/test-record-group-sampling +++ b/tools/perf/tests/attr/test-record-group-sampling @@ -35,3 +35,6 @@ inherit=0 # sampling disabled sample_freq=0 sample_period=0 +freq=0 +write_backward=0 +sample_id_all=0 |