diff options
Diffstat (limited to 'tools/perf/util/namespaces.c')
-rw-r--r-- | tools/perf/util/namespaces.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/perf/util/namespaces.c b/tools/perf/util/namespaces.c index 99be15dd2b6b..285d6f30d912 100644 --- a/tools/perf/util/namespaces.c +++ b/tools/perf/util/namespaces.c | |||
@@ -17,8 +17,26 @@ | |||
17 | #include <string.h> | 17 | #include <string.h> |
18 | #include <unistd.h> | 18 | #include <unistd.h> |
19 | #include <asm/bug.h> | 19 | #include <asm/bug.h> |
20 | #include <linux/kernel.h> | ||
20 | #include <linux/zalloc.h> | 21 | #include <linux/zalloc.h> |
21 | 22 | ||
23 | static const char *perf_ns__names[] = { | ||
24 | [NET_NS_INDEX] = "net", | ||
25 | [UTS_NS_INDEX] = "uts", | ||
26 | [IPC_NS_INDEX] = "ipc", | ||
27 | [PID_NS_INDEX] = "pid", | ||
28 | [USER_NS_INDEX] = "user", | ||
29 | [MNT_NS_INDEX] = "mnt", | ||
30 | [CGROUP_NS_INDEX] = "cgroup", | ||
31 | }; | ||
32 | |||
33 | const char *perf_ns__name(unsigned int id) | ||
34 | { | ||
35 | if (id >= ARRAY_SIZE(perf_ns__names)) | ||
36 | return "UNKNOWN"; | ||
37 | return perf_ns__names[id]; | ||
38 | } | ||
39 | |||
22 | struct namespaces *namespaces__new(struct perf_record_namespaces *event) | 40 | struct namespaces *namespaces__new(struct perf_record_namespaces *event) |
23 | { | 41 | { |
24 | struct namespaces *namespaces; | 42 | struct namespaces *namespaces; |