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