]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/mnt_namespace.h
xps: Transmit Packet Steering
[net-next-2.6.git] / include / linux / mnt_namespace.h
CommitLineData
6b3286ed
KK
1#ifndef _NAMESPACE_H_
2#define _NAMESPACE_H_
3#ifdef __KERNEL__
4
b43f3cbd 5#include <linux/path.h>
a1a2c409 6#include <linux/seq_file.h>
b43f3cbd 7#include <linux/wait.h>
6b3286ed
KK
8
9struct mnt_namespace {
10 atomic_t count;
11 struct vfsmount * root;
12 struct list_head list;
13 wait_queue_head_t poll;
14 int event;
15};
16
a1a2c409
MS
17struct proc_mounts {
18 struct seq_file m; /* must be the first element */
19 struct mnt_namespace *ns;
20 struct path root;
21 int event;
22};
23
5ad4e53b
AV
24struct fs_struct;
25
a2770d86 26extern struct mnt_namespace *create_mnt_ns(struct vfsmount *mnt);
213dd266 27extern struct mnt_namespace *copy_mnt_ns(unsigned long, struct mnt_namespace *,
6b3286ed 28 struct fs_struct *);
616511d0 29extern void put_mnt_ns(struct mnt_namespace *ns);
6b3286ed
KK
30static inline void get_mnt_ns(struct mnt_namespace *ns)
31{
32 atomic_inc(&ns->count);
33}
34
a1a2c409 35extern const struct seq_operations mounts_op;
2d4d4864 36extern const struct seq_operations mountinfo_op;
a1a2c409 37extern const struct seq_operations mountstats_op;
9f5596af 38extern int mnt_had_events(struct proc_mounts *);
a1a2c409 39
6b3286ed
KK
40#endif
41#endif