diff options
author | David Ahern <dsahern@gmail.com> | 2012-07-20 19:25:51 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-07-25 10:31:03 -0400 |
commit | c80c3c269011c67b8dabef5238af44a6d94e4d0e (patch) | |
tree | 8471e1d0362479e8e0505bbef5c5a6f5eaeb7cd3 /tools | |
parent | adb5d2a487c55e5ca2ecc0b73c8f592e95d292c7 (diff) |
perf kvm: Limit repetitive guestmount message to once per directory
After 7ed97ad use of the guestmount option without a subdir for *each*
VM generates an error message for each sample related to that VM. Once
per VM is enough.
Signed-off-by: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1342826756-64663-7-git-send-email-dsahern@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/map.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tools/perf/util/map.c b/tools/perf/util/map.c index 16d783d322b6..cc33486ad9e2 100644 --- a/tools/perf/util/map.c +++ b/tools/perf/util/map.c | |||
@@ -8,6 +8,7 @@ | |||
8 | #include <unistd.h> | 8 | #include <unistd.h> |
9 | #include "map.h" | 9 | #include "map.h" |
10 | #include "thread.h" | 10 | #include "thread.h" |
11 | #include "strlist.h" | ||
11 | 12 | ||
12 | const char *map_type__name[MAP__NR_TYPES] = { | 13 | const char *map_type__name[MAP__NR_TYPES] = { |
13 | [MAP__FUNCTION] = "Functions", | 14 | [MAP__FUNCTION] = "Functions", |
@@ -695,7 +696,15 @@ struct machine *machines__findnew(struct rb_root *self, pid_t pid) | |||
695 | (symbol_conf.guestmount)) { | 696 | (symbol_conf.guestmount)) { |
696 | sprintf(path, "%s/%d", symbol_conf.guestmount, pid); | 697 | sprintf(path, "%s/%d", symbol_conf.guestmount, pid); |
697 | if (access(path, R_OK)) { | 698 | if (access(path, R_OK)) { |
698 | pr_err("Can't access file %s\n", path); | 699 | static struct strlist *seen; |
700 | |||
701 | if (!seen) | ||
702 | seen = strlist__new(true, NULL); | ||
703 | |||
704 | if (!strlist__has_entry(seen, path)) { | ||
705 | pr_err("Can't access file %s\n", path); | ||
706 | strlist__add(seen, path); | ||
707 | } | ||
699 | machine = NULL; | 708 | machine = NULL; |
700 | goto out; | 709 | goto out; |
701 | } | 710 | } |