diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-09-08 11:55:12 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-09-25 15:46:54 -0400 |
commit | 033fa713db66b96d5779e6a93d50ff821bc1abd2 (patch) | |
tree | 9aa00f4a43b86ff11b45500dae37eb9490ffaede /tools | |
parent | 8179672c2f7b9c41a7ef3e8c907d214fa92ed614 (diff) |
perf evlist: We need to poll all event file descriptors
Because we want to notice when they get POLLHUP'ed, so that we can
figure out when all threads exited in a workload being monitored.
We can't just monitor the fds that were mmaped, we need to notice when
all the fds that were PERF_EVENT_IOC_SET_OUTPUT'ed too, because the mmap
stays even after the fd that originally was used to do the mmap call
went away, its only when all the set-output fds for a mmap are gone that
the mmap is.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/20140908151016.GH17728@krava.brq.redhat.com
Link: http://lkml.kernel.org/n/tip-24omlq5asrfg4uo3muuzn2bl@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/evlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c index 502cd11ab17e..6b13bfa7ac2c 100644 --- a/tools/perf/util/evlist.c +++ b/tools/perf/util/evlist.c | |||
@@ -717,8 +717,6 @@ static int __perf_evlist__mmap(struct perf_evlist *evlist, int idx, | |||
717 | evlist->mmap[idx].base = NULL; | 717 | evlist->mmap[idx].base = NULL; |
718 | return -1; | 718 | return -1; |
719 | } | 719 | } |
720 | |||
721 | perf_evlist__add_pollfd(evlist, fd); | ||
722 | return 0; | 720 | return 0; |
723 | } | 721 | } |
724 | 722 | ||
@@ -745,6 +743,8 @@ static int perf_evlist__mmap_per_evsel(struct perf_evlist *evlist, int idx, | |||
745 | return -1; | 743 | return -1; |
746 | } | 744 | } |
747 | 745 | ||
746 | perf_evlist__add_pollfd(evlist, fd); | ||
747 | |||
748 | if ((evsel->attr.read_format & PERF_FORMAT_ID) && | 748 | if ((evsel->attr.read_format & PERF_FORMAT_ID) && |
749 | perf_evlist__id_add_fd(evlist, evsel, cpu, thread, fd) < 0) | 749 | perf_evlist__id_add_fd(evlist, evsel, cpu, thread, fd) < 0) |
750 | return -1; | 750 | return -1; |