mount.h 2.7 KB
Newer Older
1
#include <linux/mount.h>
2 3
#include <linux/seq_file.h>
#include <linux/poll.h>
4
#include <linux/lglock.h>
5 6 7

struct mnt_namespace {
	atomic_t		count;
8
	unsigned int		proc_inum;
9
	struct mount *	root;
10
	struct list_head	list;
11
	struct user_namespace	*user_ns;
12
	u64			seq;	/* Sequence number to prevent loops */
13 14 15
	wait_queue_head_t poll;
	int event;
};
16

17 18 19 20 21
struct mnt_pcp {
	int mnt_count;
	int mnt_writers;
};

22 23 24 25 26 27
struct mountpoint {
	struct list_head m_hash;
	struct dentry *m_dentry;
	int m_count;
};

A
Al Viro 已提交
28
struct mount {
A
Al Viro 已提交
29
	struct list_head mnt_hash;
30
	struct mount *mnt_parent;
31
	struct dentry *mnt_mountpoint;
A
Al Viro 已提交
32
	struct vfsmount mnt;
33 34 35 36 37 38
#ifdef CONFIG_SMP
	struct mnt_pcp __percpu *mnt_pcp;
#else
	int mnt_count;
	int mnt_writers;
#endif
39 40
	struct list_head mnt_mounts;	/* list of children, anchored here */
	struct list_head mnt_child;	/* and going through their mnt_child */
41
	struct list_head mnt_instance;	/* mount instance on sb->s_mounts */
A
Al Viro 已提交
42
	const char *mnt_devname;	/* Name of device e.g. /dev/dsk/hda1 */
A
Al Viro 已提交
43
	struct list_head mnt_list;
44 45 46 47
	struct list_head mnt_expire;	/* link in fs-specific expiry list */
	struct list_head mnt_share;	/* circular list of shared mounts */
	struct list_head mnt_slave_list;/* list of slave mounts */
	struct list_head mnt_slave;	/* slave list entry */
48
	struct mount *mnt_master;	/* slave is on master->mnt_slave_list */
A
Al Viro 已提交
49
	struct mnt_namespace *mnt_ns;	/* containing namespace */
50
	struct mountpoint *mnt_mp;	/* where is it mounted */
51 52 53 54
#ifdef CONFIG_FSNOTIFY
	struct hlist_head mnt_fsnotify_marks;
	__u32 mnt_fsnotify_mask;
#endif
A
Al Viro 已提交
55 56
	int mnt_id;			/* mount identifier */
	int mnt_group_id;		/* peer group identifier */
57 58
	int mnt_expiry_mark;		/* true if marked for expiry */
	int mnt_pinned;
A
Al Viro 已提交
59
	struct path mnt_ex_mountpoint;
A
Al Viro 已提交
60 61
};

A
Al Viro 已提交
62 63
#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */

A
Al Viro 已提交
64 65 66 67 68
static inline struct mount *real_mount(struct vfsmount *mnt)
{
	return container_of(mnt, struct mount, mnt);
}

69
static inline int mnt_has_parent(struct mount *mnt)
70
{
71
	return mnt != mnt->mnt_parent;
72
}
73

A
Al Viro 已提交
74 75 76 77 78 79
static inline int is_mounted(struct vfsmount *mnt)
{
	/* neither detached nor internal? */
	return !IS_ERR_OR_NULL(real_mount(mnt));
}

80
extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int);
81 82 83 84 85 86

static inline void get_mnt_ns(struct mnt_namespace *ns)
{
	atomic_inc(&ns->count);
}

87 88 89 90 91 92 93 94 95 96 97 98
extern struct lglock vfsmount_lock;

static inline void lock_mount_hash(void)
{
	br_write_lock(&vfsmount_lock);
}

static inline void unlock_mount_hash(void)
{
	br_write_unlock(&vfsmount_lock);
}

99
struct proc_mounts {
A
Al Viro 已提交
100
	struct seq_file m;
101 102 103 104 105
	struct mnt_namespace *ns;
	struct path root;
	int (*show)(struct seq_file *, struct vfsmount *);
};

A
Al Viro 已提交
106 107
#define proc_mounts(p) (container_of((p), struct proc_mounts, m))

108
extern const struct seq_operations mounts_op;