Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1 | #ifndef _NAMESPACE_H_ |
| 2 | #define _NAMESPACE_H_ |
| 3 | #ifdef __KERNEL__ |
| 4 | |
| 5 | #include <linux/mount.h> |
| 6 | #include <linux/sched.h> |
| 7 | #include <linux/nsproxy.h> |
Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 8 | #include <linux/seq_file.h> |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 9 | |
| 10 | struct mnt_namespace { |
| 11 | atomic_t count; |
| 12 | struct vfsmount * root; |
| 13 | struct list_head list; |
| 14 | wait_queue_head_t poll; |
| 15 | int event; |
| 16 | }; |
| 17 | |
Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 18 | struct proc_mounts { |
| 19 | struct seq_file m; /* must be the first element */ |
| 20 | struct mnt_namespace *ns; |
| 21 | struct path root; |
| 22 | int event; |
| 23 | }; |
| 24 | |
Eric W. Biederman | 213dd26 | 2007-07-15 23:41:15 -0700 | [diff] [blame] | 25 | extern struct mnt_namespace *copy_mnt_ns(unsigned long, struct mnt_namespace *, |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 26 | struct fs_struct *); |
Badari Pulavarty | e3222c4 | 2007-05-08 00:25:21 -0700 | [diff] [blame] | 27 | extern void __put_mnt_ns(struct mnt_namespace *ns); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 28 | |
| 29 | static inline void put_mnt_ns(struct mnt_namespace *ns) |
| 30 | { |
| 31 | if (atomic_dec_and_lock(&ns->count, &vfsmount_lock)) |
| 32 | /* releases vfsmount_lock */ |
| 33 | __put_mnt_ns(ns); |
| 34 | } |
| 35 | |
| 36 | static inline void exit_mnt_ns(struct task_struct *p) |
| 37 | { |
| 38 | struct mnt_namespace *ns = p->nsproxy->mnt_ns; |
| 39 | if (ns) |
| 40 | put_mnt_ns(ns); |
| 41 | } |
| 42 | |
| 43 | static inline void get_mnt_ns(struct mnt_namespace *ns) |
| 44 | { |
| 45 | atomic_inc(&ns->count); |
| 46 | } |
| 47 | |
Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 48 | extern const struct seq_operations mounts_op; |
Ram Pai | 2d4d486 | 2008-03-27 13:06:25 +0100 | [diff] [blame] | 49 | extern const struct seq_operations mountinfo_op; |
Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 50 | extern const struct seq_operations mountstats_op; |
| 51 | |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 52 | #endif |
| 53 | #endif |