diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2021-02-18 11:57:55 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2021-02-18 16:14:14 -0300 |
commit | fcda5ff711d9ddb7a92fff38b2cc153be8123c0e (patch) | |
tree | 5141bb8f61b510a103e4713f0fb31d28d98711e2 /tools/perf/util/session.c | |
parent | 80a038860b5ca3aa864756ad6bfe1af5ac5839b0 (diff) | |
download | lwn-fcda5ff711d9ddb7a92fff38b2cc153be8123c0e.tar.gz lwn-fcda5ff711d9ddb7a92fff38b2cc153be8123c0e.zip |
perf machine: Factor out machines__find_guest()
Factor out machines__find_guest() so it can be re-used.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Acked-by: Andi Kleen <ak@linux.intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/r/20210218095801.19576-6-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/session.c')
-rw-r--r-- | tools/perf/util/session.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c index f4aeb1af05d8..7b0d0c9e3dd1 100644 --- a/tools/perf/util/session.c +++ b/tools/perf/util/session.c @@ -1356,8 +1356,6 @@ static struct machine *machines__find_for_cpumode(struct machines *machines, union perf_event *event, struct perf_sample *sample) { - struct machine *machine; - if (perf_guest && ((sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL) || (sample->cpumode == PERF_RECORD_MISC_GUEST_USER))) { @@ -1369,10 +1367,7 @@ static struct machine *machines__find_for_cpumode(struct machines *machines, else pid = sample->pid; - machine = machines__find(machines, pid); - if (!machine) - machine = machines__findnew(machines, DEFAULT_GUEST_KERNEL_ID); - return machine; + return machines__find_guest(machines, pid); } return &machines->host; |