mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
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>
This commit is contained in:
parent
adb5d2a487
commit
c80c3c2690
1 changed files with 10 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include "map.h"
|
#include "map.h"
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
|
#include "strlist.h"
|
||||||
|
|
||||||
const char *map_type__name[MAP__NR_TYPES] = {
|
const char *map_type__name[MAP__NR_TYPES] = {
|
||||||
[MAP__FUNCTION] = "Functions",
|
[MAP__FUNCTION] = "Functions",
|
||||||
|
@ -695,7 +696,15 @@ struct machine *machines__findnew(struct rb_root *self, pid_t pid)
|
||||||
(symbol_conf.guestmount)) {
|
(symbol_conf.guestmount)) {
|
||||||
sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
|
sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
|
||||||
if (access(path, R_OK)) {
|
if (access(path, R_OK)) {
|
||||||
pr_err("Can't access file %s\n", path);
|
static struct strlist *seen;
|
||||||
|
|
||||||
|
if (!seen)
|
||||||
|
seen = strlist__new(true, NULL);
|
||||||
|
|
||||||
|
if (!strlist__has_entry(seen, path)) {
|
||||||
|
pr_err("Can't access file %s\n", path);
|
||||||
|
strlist__add(seen, path);
|
||||||
|
}
|
||||||
machine = NULL;
|
machine = NULL;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue