diff options
author | David Ahern <dsahern@gmail.com> | 2012-07-20 19:25:46 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-07-23 14:03:48 -0400 |
commit | f51304d3fe4fee475991ee424a4b7f85eec65a7b (patch) | |
tree | 2007a4542f7f711cdf616a992567a1e1939b6d0c /tools/perf/util | |
parent | 6e0f17be0361444862637e8986c8c1a3b3f8dcf8 (diff) |
perf symbols: Add machine id to modules debug message
Current debug message is:
Problems creating module maps, continuing anyway...
When running multiple VMs it would be nice to know which machine the
message is referring to:
$ perf kvm --guest --guestmount=/tmp/guest-mount record -av -- sleep 10
Problems creating module maps for guest 6613, continuing anyway...
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-2-git-send-email-dsahern@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util')
-rw-r--r-- | tools/perf/util/symbol.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index 50958bbeb26a..66c132e52875 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c | |||
@@ -2564,8 +2564,15 @@ int machine__create_kernel_maps(struct machine *machine) | |||
2564 | __machine__create_kernel_maps(machine, kernel) < 0) | 2564 | __machine__create_kernel_maps(machine, kernel) < 0) |
2565 | return -1; | 2565 | return -1; |
2566 | 2566 | ||
2567 | if (symbol_conf.use_modules && machine__create_modules(machine) < 0) | 2567 | if (symbol_conf.use_modules && machine__create_modules(machine) < 0) { |
2568 | pr_debug("Problems creating module maps, continuing anyway...\n"); | 2568 | if (machine__is_host(machine)) |
2569 | pr_debug("Problems creating module maps, " | ||
2570 | "continuing anyway...\n"); | ||
2571 | else | ||
2572 | pr_debug("Problems creating module maps for guest %d, " | ||
2573 | "continuing anyway...\n", machine->pid); | ||
2574 | } | ||
2575 | |||
2569 | /* | 2576 | /* |
2570 | * Now that we have all the maps created, just set the ->end of them: | 2577 | * Now that we have all the maps created, just set the ->end of them: |
2571 | */ | 2578 | */ |