|
@@ -222,6 +222,8 @@ void perf_evlist__disable(struct perf_evlist *evlist)
|
|
|
|
|
|
for (cpu = 0; cpu < evlist->cpus->nr; cpu++) {
|
|
|
list_for_each_entry(pos, &evlist->entries, node) {
|
|
|
+ if (pos->leader)
|
|
|
+ continue;
|
|
|
for (thread = 0; thread < evlist->threads->nr; thread++)
|
|
|
ioctl(FD(pos, cpu, thread),
|
|
|
PERF_EVENT_IOC_DISABLE, 0);
|
|
@@ -236,6 +238,8 @@ void perf_evlist__enable(struct perf_evlist *evlist)
|
|
|
|
|
|
for (cpu = 0; cpu < cpu_map__nr(evlist->cpus); cpu++) {
|
|
|
list_for_each_entry(pos, &evlist->entries, node) {
|
|
|
+ if (pos->leader)
|
|
|
+ continue;
|
|
|
for (thread = 0; thread < evlist->threads->nr; thread++)
|
|
|
ioctl(FD(pos, cpu, thread),
|
|
|
PERF_EVENT_IOC_ENABLE, 0);
|