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/machine.h | |
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/machine.h')
-rw-r--r-- | tools/perf/util/machine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/machine.h b/tools/perf/util/machine.h index 26368d3c1754..022c19ecd287 100644 --- a/tools/perf/util/machine.h +++ b/tools/perf/util/machine.h @@ -162,6 +162,7 @@ struct machine *machines__add(struct machines *machines, pid_t pid, struct machine *machines__find_host(struct machines *machines); struct machine *machines__find(struct machines *machines, pid_t pid); struct machine *machines__findnew(struct machines *machines, pid_t pid); +struct machine *machines__find_guest(struct machines *machines, pid_t pid); void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size); void machines__set_comm_exec(struct machines *machines, bool comm_exec); |