Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1405122
| From | Wang Nan <wangnan0@huawei.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v3 00/11] perf tools: Support overwritable ring buffer |
| Date | 2016-05-23 09:20 +0200 |
| Message-ID | <rBSjD-2RI-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
This patch set enables daemonized perf recording by utilizing
overwritable backward ring buffer. With this feature one can
put perf background, and dump ring buffer records by a SIGUSR2
when he/she find something unusual. For example, following
command record system calls, schedule events and samples on cpu cycles
continously:
# perf record -g -e cycles -e raw_syscalls:*/call-graph=no/ \
-e sched:sched_switch/call-graph=no/ \
--switch-output --overwrite -a
Then by sending SIGUSR2 to perf when lagging is happen, we get multiple
perf.data output, each of them correspond a abnormal event, and the data
size is reasonable:
# ls -l ./perf.data*
-rw------- 1 root root 5122165 May 13 23:51 ./perf.data.2016051323511683
-rw------- 1 root root 5135093 May 13 23:51 ./perf.data.2016051323512107
-rw------- 1 root root 5135213 May 13 23:51 ./perf.data.2016051323512215
-rw------- 1 root root 5135157 May 13 23:51 ./perf.data.2016051323512387
v1 -> v2: Totally redesign: drop the principle of 'channal', use
auxiliary evlist instead. Fix missing documentation.
v2 -> v3: Rename perf_evlist__toggle_paused() to perf_evlist__pause/resume.
Wang Nan (11):
perf tools: Add API to pause/resume a evlist
perf record: Prevent reading invalid data in record__mmap_read
perf record: Rename variable to make code clear
perf record: Read from backward ring buffer
perf evlist: Introduce aux perf evlist
perf tools: Don't poll and mmap overwritable events
perf tools: Enable overwrite settings
perf record: Introduce rec->overwrite_evlist for overwritable events
perf record: Toggle overwrite ring buffer for reading
perf tools: Don't warn about out of order event if write_backward is
used
perf tools: Check write_backward during evlist config
tools/perf/Documentation/perf-record.txt | 14 ++
tools/perf/arch/x86/util/tsc.c | 2 +
tools/perf/builtin-record.c | 354 +++++++++++++++++++++++++++----
tools/perf/perf.h | 1 +
tools/perf/util/evlist.c | 85 ++++++--
tools/perf/util/evlist.h | 6 +
tools/perf/util/evsel.c | 27 ++-
tools/perf/util/evsel.h | 15 ++
tools/perf/util/parse-events.c | 20 +-
tools/perf/util/parse-events.h | 2 +
tools/perf/util/parse-events.l | 2 +
tools/perf/util/record.c | 17 ++
tools/perf/util/session.c | 22 +-
13 files changed, 498 insertions(+), 69 deletions(-)
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Wang Nan <wangnan0@huawei.com>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
--
1.8.3.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v3 00/11] perf tools: Support overwritable ring buffer Wang Nan <wangnan0@huawei.com> - 2016-05-23 09:20 +0200
[PATCH v3 11/11] perf tools: Check write_backward during evlist config Wang Nan <wangnan0@huawei.com> - 2016-05-23 09:20 +0200
[PATCH v3 10/11] perf tools: Don't warn about out of order event if write_backward is used Wang Nan <wangnan0@huawei.com> - 2016-05-23 09:20 +0200
[PATCH v3 03/11] perf record: Rename variable to make code clear Wang Nan <wangnan0@huawei.com> - 2016-05-23 09:20 +0200
[tip:perf/urgent] perf record: Rename variable to make code clear tip-bot for Wang Nan <tipbot@zytor.com> - 2016-05-24 07:50 +0200
[PATCH v3 09/11] perf record: Toggle overwrite ring buffer for reading Wang Nan <wangnan0@huawei.com> - 2016-05-23 09:20 +0200
[PATCH v3 02/11] perf record: Prevent reading invalid data in record__mmap_read Wang Nan <wangnan0@huawei.com> - 2016-05-23 09:20 +0200
[tip:perf/urgent] perf record: Prevent reading invalid data in record__mmap_read tip-bot for Wang Nan <tipbot@zytor.com> - 2016-05-24 07:50 +0200
[PATCH v3 07/11] perf tools: Enable overwrite settings Wang Nan <wangnan0@huawei.com> - 2016-05-23 09:20 +0200
[PATCH v3 08/11] perf record: Introduce rec->overwrite_evlist for overwritable events Wang Nan <wangnan0@huawei.com> - 2016-05-23 09:20 +0200
csiph-web