aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/map.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/tools/perf/util/map.c b/tools/perf/util/map.c
index a1f4e3669142..8668569d4b2a 100644
--- a/tools/perf/util/map.c
+++ b/tools/perf/util/map.c
@@ -7,6 +7,7 @@
7#include <stdio.h> 7#include <stdio.h>
8#include <unistd.h> 8#include <unistd.h>
9#include "map.h" 9#include "map.h"
10#include "thread.h"
10 11
11const char *map_type__name[MAP__NR_TYPES] = { 12const char *map_type__name[MAP__NR_TYPES] = {
12 [MAP__FUNCTION] = "Functions", 13 [MAP__FUNCTION] = "Functions",
@@ -585,7 +586,21 @@ int machine__init(struct machine *self, const char *root_dir, pid_t pid)
585 self->kmaps.machine = self; 586 self->kmaps.machine = self;
586 self->pid = pid; 587 self->pid = pid;
587 self->root_dir = strdup(root_dir); 588 self->root_dir = strdup(root_dir);
588 return self->root_dir == NULL ? -ENOMEM : 0; 589 if (self->root_dir == NULL)
590 return -ENOMEM;
591
592 if (pid != HOST_KERNEL_ID) {
593 struct thread *thread = machine__findnew_thread(self, pid);
594 char comm[64];
595
596 if (thread == NULL)
597 return -ENOMEM;
598
599 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
600 thread__set_comm(thread, comm);
601 }
602
603 return 0;
589} 604}
590 605
591static void dsos__delete(struct list_head *self) 606static void dsos__delete(struct list_head *self)