Skip to content

Commit

Permalink
libperf: Add perf_evlist__poll() function
Browse files Browse the repository at this point in the history
Move perf_evlist__poll() from tools/perf to libperf, it will be used in
the following patches.

And rename the existing perf's function to evlist__poll().

Signed-off-by: Jiri Olsa <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Michael Petlan <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lore.kernel.org/lkml/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
  • Loading branch information
olsajiri authored and acmel committed Sep 25, 2019
1 parent f4009e7 commit 80ab298
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion tools/perf/builtin-record.c
Original file line number Diff line number Diff line change
Expand Up @@ -1615,7 +1615,7 @@ static int __cmd_record(struct record *rec, int argc, const char **argv)
if (hits == rec->samples) {
if (done || draining)
break;
err = perf_evlist__poll(rec->evlist, -1);
err = evlist__poll(rec->evlist, -1);
/*
* Propagate error, only if there's any. Ignore positive
* number of returned events and interrupt error.
Expand Down
4 changes: 2 additions & 2 deletions tools/perf/builtin-top.c
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,7 @@ static int __cmd_top(struct perf_top *top)
}

/* Wait for a minimal set of events before starting the snapshot */
perf_evlist__poll(top->evlist, 100);
evlist__poll(top->evlist, 100);

perf_top__mmap_read(top);

Expand All @@ -1317,7 +1317,7 @@ static int __cmd_top(struct perf_top *top)
perf_top__mmap_read(top);

if (opts->overwrite || (hits == top->samples))
ret = perf_evlist__poll(top->evlist, 100);
ret = evlist__poll(top->evlist, 100);

if (resize) {
perf_top__resize(top);
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/builtin-trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -3474,7 +3474,7 @@ static int trace__run(struct trace *trace, int argc, const char **argv)
if (trace->nr_events == before) {
int timeout = done ? 100 : -1;

if (!draining && perf_evlist__poll(evlist, timeout) > 0) {
if (!draining && evlist__poll(evlist, timeout) > 0) {
if (evlist__filter_pollfd(evlist, POLLERR | POLLHUP | POLLNVAL) == 0)
draining = true;

Expand Down
5 changes: 5 additions & 0 deletions tools/perf/lib/evlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,3 +276,8 @@ int perf_evlist__add_pollfd(struct perf_evlist *evlist, int fd,

return pos;
}

int perf_evlist__poll(struct perf_evlist *evlist, int timeout)
{
return fdarray__poll(&evlist->pollfd, timeout);
}
1 change: 1 addition & 0 deletions tools/perf/lib/include/perf/evlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ LIBPERF_API void perf_evlist__disable(struct perf_evlist *evlist);
LIBPERF_API void perf_evlist__set_maps(struct perf_evlist *evlist,
struct perf_cpu_map *cpus,
struct perf_thread_map *threads);
LIBPERF_API int perf_evlist__poll(struct perf_evlist *evlist, int timeout);

#endif /* __LIBPERF_EVLIST_H */
1 change: 1 addition & 0 deletions tools/perf/lib/libperf.map
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ LIBPERF_0.0.1 {
perf_evlist__remove;
perf_evlist__next;
perf_evlist__set_maps;
perf_evlist__poll;
local:
*;
};
2 changes: 1 addition & 1 deletion tools/perf/tests/openat-syscall-tp-fields.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ int test__syscall_openat_tp_fields(struct test *test __maybe_unused, int subtest
}

if (nr_events == before)
perf_evlist__poll(evlist, 10);
evlist__poll(evlist, 10);

if (++nr_polls > 5) {
pr_debug("%s: no events!\n", __func__);
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/tests/perf-record.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ int test__PERF_RECORD(struct test *test __maybe_unused, int subtest __maybe_unus
* perf_event_attr.wakeup_events, just PERF_EVENT_SAMPLE does.
*/
if (total_events == before && false)
perf_evlist__poll(evlist, -1);
evlist__poll(evlist, -1);

sleep(1);
if (++wakeups > 5) {
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/tests/task-exit.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ int test__task_exit(struct test *test __maybe_unused, int subtest __maybe_unused

out_init:
if (!exited || !nr_exit) {
perf_evlist__poll(evlist, -1);
evlist__poll(evlist, -1);
goto retry;
}

Expand Down
6 changes: 3 additions & 3 deletions tools/perf/util/evlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -418,9 +418,9 @@ int evlist__filter_pollfd(struct evlist *evlist, short revents_and_mask)
perf_evlist__munmap_filtered, NULL);
}

int perf_evlist__poll(struct evlist *evlist, int timeout)
int evlist__poll(struct evlist *evlist, int timeout)
{
return fdarray__poll(&evlist->core.pollfd, timeout);
return perf_evlist__poll(&evlist->core, timeout);
}

static void perf_evlist__set_sid_idx(struct evlist *evlist,
Expand Down Expand Up @@ -1736,7 +1736,7 @@ static void *perf_evlist__poll_thread(void *arg)
draining = true;

if (!draining)
perf_evlist__poll(evlist, 1000);
evlist__poll(evlist, 1000);

for (i = 0; i < evlist->core.nr_mmaps; i++) {
struct mmap *map = &evlist->mmap[i];
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/util/evlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ perf_evlist__find_tracepoint_by_name(struct evlist *evlist,
int evlist__add_pollfd(struct evlist *evlist, int fd);
int evlist__filter_pollfd(struct evlist *evlist, short revents_and_mask);

int perf_evlist__poll(struct evlist *evlist, int timeout);
int evlist__poll(struct evlist *evlist, int timeout);

struct evsel *perf_evlist__id2evsel(struct evlist *evlist, u64 id);
struct evsel *perf_evlist__id2evsel_strict(struct evlist *evlist,
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/util/python.c
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ static PyObject *pyrf_evlist__poll(struct pyrf_evlist *pevlist,
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i", kwlist, &timeout))
return NULL;

n = perf_evlist__poll(evlist, timeout);
n = evlist__poll(evlist, timeout);
if (n < 0) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
Expand Down

0 comments on commit 80ab298

Please sign in to comment.