summaryrefslogtreecommitdiff
path: root/tools/perf/util/namespaces.h
diff options
context:
space:
mode:
authorYonatan Goldschmidt <yonatan.goldschmidt@granulate.io>2020-11-05 03:54:18 +0200
committerArnaldo Carvalho de Melo <acme@redhat.com>2021-02-03 13:10:44 -0300
commit2b51c71be59960a5b5b36fd4b151002d51166faa (patch)
tree5f8e3755d8a1335e782676194035528aa018d1fb /tools/perf/util/namespaces.h
parent473f742e1845d83dbbd1a32e3881c3d36ae99ea1 (diff)
perf namespaces: Add 'in_pidns' to nsinfo struct
Provides an accurate mean to determine if the owner thread is in a different PID namespace. Signed-off-by: Yonatan Goldschmidt <yonatan.goldschmidt@granulate.io> Acked-by: Jiri Olsa <jolsa@redhat.com> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: https://lore.kernel.org/r/20201105015418.1725218-1-yonatan.goldschmidt@granulate.io Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/namespaces.h')
-rw-r--r--tools/perf/util/namespaces.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/namespaces.h b/tools/perf/util/namespaces.h
index 4b33f684eddd..1cc8637cf885 100644
--- a/tools/perf/util/namespaces.h
+++ b/tools/perf/util/namespaces.h
@@ -33,6 +33,7 @@ struct nsinfo {
pid_t tgid;
pid_t nstgid;
bool need_setns;
+ bool in_pidns;
char *mntns_path;
refcount_t refcnt;
};