]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/mount.h
UBUNTU: [Config] updateconfigs after removing powerpc builds
[mirror_ubuntu-zesty-kernel.git] / fs / mount.h
CommitLineData
b2dba1af 1#include <linux/mount.h>
0226f492
AV
2#include <linux/seq_file.h>
3#include <linux/poll.h>
435d5f4b 4#include <linux/ns_common.h>
87b95ce0 5#include <linux/fs_pin.h>
0226f492
AV
6
7struct mnt_namespace {
8 atomic_t count;
435d5f4b 9 struct ns_common ns;
be08d6d2 10 struct mount * root;
0226f492 11 struct list_head list;
771b1371 12 struct user_namespace *user_ns;
537f7ccb 13 struct ucounts *ucounts;
8823c079 14 u64 seq; /* Sequence number to prevent loops */
0226f492 15 wait_queue_head_t poll;
c7999c36 16 u64 event;
d2921684
EB
17 unsigned int mounts; /* # of mounts in the namespace */
18 unsigned int pending_mounts;
0226f492 19};
b2dba1af 20
68e8a9fe
AV
21struct mnt_pcp {
22 int mnt_count;
23 int mnt_writers;
24};
25
84d17192 26struct mountpoint {
0818bf27 27 struct hlist_node m_hash;
84d17192 28 struct dentry *m_dentry;
0a5eb7c8 29 struct hlist_head m_list;
84d17192
AV
30 int m_count;
31};
32
7d6fec45 33struct mount {
38129a13 34 struct hlist_node mnt_hash;
0714a533 35 struct mount *mnt_parent;
a73324da 36 struct dentry *mnt_mountpoint;
7d6fec45 37 struct vfsmount mnt;
9ea459e1
AV
38 union {
39 struct rcu_head mnt_rcu;
40 struct llist_node mnt_llist;
41 };
68e8a9fe
AV
42#ifdef CONFIG_SMP
43 struct mnt_pcp __percpu *mnt_pcp;
68e8a9fe
AV
44#else
45 int mnt_count;
46 int mnt_writers;
47#endif
6b41d536
AV
48 struct list_head mnt_mounts; /* list of children, anchored here */
49 struct list_head mnt_child; /* and going through their mnt_child */
39f7c4db 50 struct list_head mnt_instance; /* mount instance on sb->s_mounts */
52ba1621 51 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
1a4eeaf2 52 struct list_head mnt_list;
6776db3d
AV
53 struct list_head mnt_expire; /* link in fs-specific expiry list */
54 struct list_head mnt_share; /* circular list of shared mounts */
55 struct list_head mnt_slave_list;/* list of slave mounts */
56 struct list_head mnt_slave; /* slave list entry */
32301920 57 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
143c8c91 58 struct mnt_namespace *mnt_ns; /* containing namespace */
84d17192 59 struct mountpoint *mnt_mp; /* where is it mounted */
0a5eb7c8 60 struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */
c63181e6
AV
61#ifdef CONFIG_FSNOTIFY
62 struct hlist_head mnt_fsnotify_marks;
63 __u32 mnt_fsnotify_mask;
64#endif
15169fe7
AV
65 int mnt_id; /* mount identifier */
66 int mnt_group_id; /* peer group identifier */
863d684f 67 int mnt_expiry_mark; /* true if marked for expiry */
215752fc 68 struct hlist_head mnt_pins;
87b95ce0
AV
69 struct fs_pin mnt_umount;
70 struct dentry *mnt_ex_mountpoint;
7d6fec45
AV
71};
72
f7a99c5b
AV
73#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
74
7d6fec45
AV
75static inline struct mount *real_mount(struct vfsmount *mnt)
76{
77 return container_of(mnt, struct mount, mnt);
78}
79
676da58d 80static inline int mnt_has_parent(struct mount *mnt)
b2dba1af 81{
0714a533 82 return mnt != mnt->mnt_parent;
b2dba1af 83}
c7105365 84
f7a99c5b
AV
85static inline int is_mounted(struct vfsmount *mnt)
86{
87 /* neither detached nor internal? */
260a459d 88 return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns);
f7a99c5b
AV
89}
90
474279dc 91extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *);
0226f492 92
294d71ff 93extern int __legitimize_mnt(struct vfsmount *, unsigned);
48a066e7
AV
94extern bool legitimize_mnt(struct vfsmount *, unsigned);
95
c6609c0a
IK
96static inline bool __path_is_mountpoint(const struct path *path)
97{
98 struct mount *m = __lookup_mnt(path->mnt, path->dentry);
99 return m && likely(!(m->mnt.mnt_flags & MNT_SYNC_UMOUNT));
100}
101
80b5dce8
EB
102extern void __detach_mounts(struct dentry *dentry);
103
104static inline void detach_mounts(struct dentry *dentry)
105{
106 if (!d_mountpoint(dentry))
107 return;
108 __detach_mounts(dentry);
109}
110
0226f492
AV
111static inline void get_mnt_ns(struct mnt_namespace *ns)
112{
113 atomic_inc(&ns->count);
114}
115
48a066e7 116extern seqlock_t mount_lock;
719ea2fb
AV
117
118static inline void lock_mount_hash(void)
119{
48a066e7 120 write_seqlock(&mount_lock);
719ea2fb
AV
121}
122
123static inline void unlock_mount_hash(void)
124{
48a066e7 125 write_sequnlock(&mount_lock);
719ea2fb
AV
126}
127
0226f492 128struct proc_mounts {
0226f492
AV
129 struct mnt_namespace *ns;
130 struct path root;
131 int (*show)(struct seq_file *, struct vfsmount *);
c7999c36
AV
132 void *cached_mount;
133 u64 cached_event;
134 loff_t cached_index;
0226f492
AV
135};
136
137extern const struct seq_operations mounts_op;
7af1364f
EB
138
139extern bool __is_local_mountpoint(struct dentry *dentry);
140static inline bool is_local_mountpoint(struct dentry *dentry)
141{
142 if (!d_mountpoint(dentry))
143 return false;
144
145 return __is_local_mountpoint(dentry);
146}