aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/evlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/evlist.c')
-rw-r--r--tools/perf/util/evlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c
index 90db2a14e4bb..d0e1e821fe85 100644
--- a/tools/perf/util/evlist.c
+++ b/tools/perf/util/evlist.c
@@ -221,7 +221,7 @@ void perf_evlist__disable(struct perf_evlist *evlist)
221 221
222 for (cpu = 0; cpu < evlist->cpus->nr; cpu++) { 222 for (cpu = 0; cpu < evlist->cpus->nr; cpu++) {
223 list_for_each_entry(pos, &evlist->entries, node) { 223 list_for_each_entry(pos, &evlist->entries, node) {
224 if (perf_evsel__is_group_member(pos)) 224 if (!perf_evsel__is_group_leader(pos))
225 continue; 225 continue;
226 for (thread = 0; thread < evlist->threads->nr; thread++) 226 for (thread = 0; thread < evlist->threads->nr; thread++)
227 ioctl(FD(pos, cpu, thread), 227 ioctl(FD(pos, cpu, thread),
@@ -237,7 +237,7 @@ void perf_evlist__enable(struct perf_evlist *evlist)
237 237
238 for (cpu = 0; cpu < cpu_map__nr(evlist->cpus); cpu++) { 238 for (cpu = 0; cpu < cpu_map__nr(evlist->cpus); cpu++) {
239 list_for_each_entry(pos, &evlist->entries, node) { 239 list_for_each_entry(pos, &evlist->entries, node) {
240 if (perf_evsel__is_group_member(pos)) 240 if (!perf_evsel__is_group_leader(pos))
241 continue; 241 continue;
242 for (thread = 0; thread < evlist->threads->nr; thread++) 242 for (thread = 0; thread < evlist->threads->nr; thread++)
243 ioctl(FD(pos, cpu, thread), 243 ioctl(FD(pos, cpu, thread),