Linux Audio

Check our new training course

Loading...
v4.17
 
 1/*
 2 * This program is free software; you can redistribute it and/or modify
 3 * it under the terms of the GNU General Public License, version 2, as
 4 * published by the Free Software Foundation.
 5 *
 6 * Copyright (C) 2017 Hari Bathini, IBM Corporation
 7 */
 8
 9#ifndef __PERF_NAMESPACES_H
10#define __PERF_NAMESPACES_H
11
12#include <sys/types.h>
 
13#include <linux/perf_event.h>
14#include <linux/refcount.h>
15#include <linux/types.h>
16
17struct namespaces_event;
 
 
 
 
18
19struct namespaces {
20	struct list_head list;
21	u64 end_time;
22	struct perf_ns_link_info link_info[];
23};
24
25struct namespaces *namespaces__new(struct namespaces_event *event);
26void namespaces__free(struct namespaces *namespaces);
27
28struct nsinfo {
29	pid_t			pid;
30	pid_t			tgid;
31	pid_t			nstgid;
32	bool			need_setns;
33	char			*mntns_path;
34	refcount_t		refcnt;
35};
36
37struct nscookie {
38	int			oldns;
39	int			newns;
 
40};
41
42int nsinfo__init(struct nsinfo *nsi);
43struct nsinfo *nsinfo__new(pid_t pid);
44struct nsinfo *nsinfo__copy(struct nsinfo *nsi);
45void nsinfo__delete(struct nsinfo *nsi);
46
47struct nsinfo *nsinfo__get(struct nsinfo *nsi);
48void nsinfo__put(struct nsinfo *nsi);
49
50void nsinfo__mountns_enter(struct nsinfo *nsi, struct nscookie *nc);
51void nsinfo__mountns_exit(struct nscookie *nc);
52
53char *nsinfo__realpath(const char *path, struct nsinfo *nsi);
54
55static inline void __nsinfo__zput(struct nsinfo **nsip)
56{
57	if (nsip) {
58		nsinfo__put(*nsip);
59		*nsip = NULL;
60	}
61}
62
63#define nsinfo__zput(nsi) __nsinfo__zput(&nsi)
 
 
64
65#endif  /* __PERF_NAMESPACES_H */
v5.4
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2/*
 
 
 
 3 *
 4 * Copyright (C) 2017 Hari Bathini, IBM Corporation
 5 */
 6
 7#ifndef __PERF_NAMESPACES_H
 8#define __PERF_NAMESPACES_H
 9
10#include <sys/types.h>
11#include <linux/stddef.h>
12#include <linux/perf_event.h>
13#include <linux/refcount.h>
14#include <linux/types.h>
15
16#ifndef HAVE_SETNS_SUPPORT
17int setns(int fd, int nstype);
18#endif
19
20struct perf_record_namespaces;
21
22struct namespaces {
23	struct list_head list;
24	u64 end_time;
25	struct perf_ns_link_info link_info[];
26};
27
28struct namespaces *namespaces__new(struct perf_record_namespaces *event);
29void namespaces__free(struct namespaces *namespaces);
30
31struct nsinfo {
32	pid_t			pid;
33	pid_t			tgid;
34	pid_t			nstgid;
35	bool			need_setns;
36	char			*mntns_path;
37	refcount_t		refcnt;
38};
39
40struct nscookie {
41	int			oldns;
42	int			newns;
43	char			*oldcwd;
44};
45
46int nsinfo__init(struct nsinfo *nsi);
47struct nsinfo *nsinfo__new(pid_t pid);
48struct nsinfo *nsinfo__copy(struct nsinfo *nsi);
49void nsinfo__delete(struct nsinfo *nsi);
50
51struct nsinfo *nsinfo__get(struct nsinfo *nsi);
52void nsinfo__put(struct nsinfo *nsi);
53
54void nsinfo__mountns_enter(struct nsinfo *nsi, struct nscookie *nc);
55void nsinfo__mountns_exit(struct nscookie *nc);
56
57char *nsinfo__realpath(const char *path, struct nsinfo *nsi);
58
59static inline void __nsinfo__zput(struct nsinfo **nsip)
60{
61	if (nsip) {
62		nsinfo__put(*nsip);
63		*nsip = NULL;
64	}
65}
66
67#define nsinfo__zput(nsi) __nsinfo__zput(&nsi)
68
69const char *perf_ns__name(unsigned int id);
70
71#endif  /* __PERF_NAMESPACES_H */