diff options
author | Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> | 2016-07-01 04:03:36 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-07-01 10:34:57 -0400 |
commit | 4a0f65c102ec3a718b4a0b90981232b6cb019477 (patch) | |
tree | dae2108b485a4623939a72db9b4de98f93add3cf /tools/perf | |
parent | 1f3736c9c833e40ac4d3a8dc6d661e341df8a259 (diff) |
perf probe: Remove caches when --cache is given
'perf probe --del' removes caches when '--cache' is given. Note that
the delete pattern is not the same as for normal events.
If you cached probes with event name, --del "eventname" works as
expected. However, if you skipped it, the cached probes doesn't have
actual event name. In that case --del "probe-desc" is required (wildcard
is acceptable). For example a cache entry has the probe-desc "vfs_read
$params", you can remove it with --del 'vfs_read*'.
-----
# perf probe --cache --list
/[kernel.kallsyms] (1466a0a250b5d0070c6d0f03c5fed30b237970a1):
vfs_read $params
/usr/lib64/libc-2.17.so (c31ffe7942bfd77b2fca8f9bd5709d387a86d3bc):
getaddrinfo $params
# perf probe --cache --del vfs_read\*
Removed cached event: probe:vfs_read
# perf probe --cache --list
/[kernel.kallsyms] (1466a0a250b5d0070c6d0f03c5fed30b237970a1):
/usr/lib64/libc-2.17.so (c31ffe7942bfd77b2fca8f9bd5709d387a86d3bc):
getaddrinfo $params
-----
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Hemant Kumar <hemant@linux.vnet.ibm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/146736021651.27797.10250879847070772920.stgit@devbox
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/Documentation/perf-probe.txt | 1 | ||||
-rw-r--r-- | tools/perf/builtin-probe.c | 29 | ||||
-rw-r--r-- | tools/perf/util/probe-file.c | 36 | ||||
-rw-r--r-- | tools/perf/util/probe-file.h | 2 |
4 files changed, 60 insertions, 8 deletions
diff --git a/tools/perf/Documentation/perf-probe.txt b/tools/perf/Documentation/perf-probe.txt index 5a70d45015ea..8d091734d02c 100644 --- a/tools/perf/Documentation/perf-probe.txt +++ b/tools/perf/Documentation/perf-probe.txt | |||
@@ -116,6 +116,7 @@ OPTIONS | |||
116 | (With --add) Cache the probes. Any events which successfully added | 116 | (With --add) Cache the probes. Any events which successfully added |
117 | are also stored in the cache file. | 117 | are also stored in the cache file. |
118 | (With --list) Show cached probes. | 118 | (With --list) Show cached probes. |
119 | (With --del) Remove cached probes. | ||
119 | 120 | ||
120 | --max-probes=NUM:: | 121 | --max-probes=NUM:: |
121 | Set the maximum number of probe points for an event. Default is 128. | 122 | Set the maximum number of probe points for an event. Default is 128. |
diff --git a/tools/perf/builtin-probe.c b/tools/perf/builtin-probe.c index 0bb9084bf6cf..a1a5cd1b8d60 100644 --- a/tools/perf/builtin-probe.c +++ b/tools/perf/builtin-probe.c | |||
@@ -363,6 +363,32 @@ out_cleanup: | |||
363 | return ret; | 363 | return ret; |
364 | } | 364 | } |
365 | 365 | ||
366 | static int del_perf_probe_caches(struct strfilter *filter) | ||
367 | { | ||
368 | struct probe_cache *cache; | ||
369 | struct strlist *bidlist; | ||
370 | struct str_node *nd; | ||
371 | int ret; | ||
372 | |||
373 | bidlist = build_id_cache__list_all(); | ||
374 | if (!bidlist) { | ||
375 | ret = -errno; | ||
376 | pr_debug("Failed to get buildids: %d\n", ret); | ||
377 | return ret ?: -ENOMEM; | ||
378 | } | ||
379 | |||
380 | strlist__for_each_entry(nd, bidlist) { | ||
381 | cache = probe_cache__new(nd->s); | ||
382 | if (!cache) | ||
383 | continue; | ||
384 | if (probe_cache__filter_purge(cache, filter) < 0 || | ||
385 | probe_cache__commit(cache) < 0) | ||
386 | pr_warning("Failed to remove entries for %s\n", nd->s); | ||
387 | probe_cache__delete(cache); | ||
388 | } | ||
389 | return 0; | ||
390 | } | ||
391 | |||
366 | static int perf_del_probe_events(struct strfilter *filter) | 392 | static int perf_del_probe_events(struct strfilter *filter) |
367 | { | 393 | { |
368 | int ret, ret2, ufd = -1, kfd = -1; | 394 | int ret, ret2, ufd = -1, kfd = -1; |
@@ -375,6 +401,9 @@ static int perf_del_probe_events(struct strfilter *filter) | |||
375 | 401 | ||
376 | pr_debug("Delete filter: \'%s\'\n", str); | 402 | pr_debug("Delete filter: \'%s\'\n", str); |
377 | 403 | ||
404 | if (probe_conf.cache) | ||
405 | return del_perf_probe_caches(filter); | ||
406 | |||
378 | /* Get current event names */ | 407 | /* Get current event names */ |
379 | ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW); | 408 | ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW); |
380 | if (ret < 0) | 409 | if (ret < 0) |
diff --git a/tools/perf/util/probe-file.c b/tools/perf/util/probe-file.c index 156e3d883965..6cb6ec03c1fe 100644 --- a/tools/perf/util/probe-file.c +++ b/tools/perf/util/probe-file.c | |||
@@ -684,20 +684,40 @@ out: | |||
684 | return ret; | 684 | return ret; |
685 | } | 685 | } |
686 | 686 | ||
687 | static bool probe_cache_entry__compare(struct probe_cache_entry *entry, | ||
688 | struct strfilter *filter) | ||
689 | { | ||
690 | char buf[128], *ptr = entry->spev; | ||
691 | |||
692 | if (entry->pev.event) { | ||
693 | snprintf(buf, 128, "%s:%s", entry->pev.group, entry->pev.event); | ||
694 | ptr = buf; | ||
695 | } | ||
696 | return strfilter__compare(filter, ptr); | ||
697 | } | ||
698 | |||
699 | int probe_cache__filter_purge(struct probe_cache *pcache, | ||
700 | struct strfilter *filter) | ||
701 | { | ||
702 | struct probe_cache_entry *entry, *tmp; | ||
703 | |||
704 | list_for_each_entry_safe(entry, tmp, &pcache->entries, node) { | ||
705 | if (probe_cache_entry__compare(entry, filter)) { | ||
706 | pr_info("Removed cached event: %s\n", entry->spev); | ||
707 | list_del_init(&entry->node); | ||
708 | probe_cache_entry__delete(entry); | ||
709 | } | ||
710 | } | ||
711 | return 0; | ||
712 | } | ||
713 | |||
687 | static int probe_cache__show_entries(struct probe_cache *pcache, | 714 | static int probe_cache__show_entries(struct probe_cache *pcache, |
688 | struct strfilter *filter) | 715 | struct strfilter *filter) |
689 | { | 716 | { |
690 | struct probe_cache_entry *entry; | 717 | struct probe_cache_entry *entry; |
691 | char buf[128], *ptr; | ||
692 | 718 | ||
693 | list_for_each_entry(entry, &pcache->entries, node) { | 719 | list_for_each_entry(entry, &pcache->entries, node) { |
694 | if (entry->pev.event) { | 720 | if (probe_cache_entry__compare(entry, filter)) |
695 | ptr = buf; | ||
696 | snprintf(buf, 128, "%s:%s", | ||
697 | entry->pev.group, entry->pev.event); | ||
698 | } else | ||
699 | ptr = entry->spev; | ||
700 | if (strfilter__compare(filter, ptr)) | ||
701 | printf("%s\n", entry->spev); | 721 | printf("%s\n", entry->spev); |
702 | } | 722 | } |
703 | return 0; | 723 | return 0; |
diff --git a/tools/perf/util/probe-file.h b/tools/perf/util/probe-file.h index 0009b8a65a5c..0ed1fc563b77 100644 --- a/tools/perf/util/probe-file.h +++ b/tools/perf/util/probe-file.h | |||
@@ -38,6 +38,8 @@ int probe_cache__add_entry(struct probe_cache *pcache, | |||
38 | int probe_cache__commit(struct probe_cache *pcache); | 38 | int probe_cache__commit(struct probe_cache *pcache); |
39 | void probe_cache__purge(struct probe_cache *pcache); | 39 | void probe_cache__purge(struct probe_cache *pcache); |
40 | void probe_cache__delete(struct probe_cache *pcache); | 40 | void probe_cache__delete(struct probe_cache *pcache); |
41 | int probe_cache__filter_purge(struct probe_cache *pcache, | ||
42 | struct strfilter *filter); | ||
41 | struct probe_cache_entry *probe_cache__find(struct probe_cache *pcache, | 43 | struct probe_cache_entry *probe_cache__find(struct probe_cache *pcache, |
42 | struct perf_probe_event *pev); | 44 | struct perf_probe_event *pev); |
43 | struct probe_cache_entry *probe_cache__find_by_name(struct probe_cache *pcache, | 45 | struct probe_cache_entry *probe_cache__find_by_name(struct probe_cache *pcache, |