blob: e4ecf59c9353590ea9380997922aa0cbc03ab018 [file] [log] [blame]
Al Virob2dba1a2011-11-23 19:26:23 -05001#include <linux/mount.h>
2
Al Viro68e8a9f2011-11-24 22:53:09 -05003struct mnt_pcp {
4 int mnt_count;
5 int mnt_writers;
6};
7
Al Viro7d6fec42011-11-23 12:14:10 -05008struct mount {
Al Viro1b8e5562011-11-24 21:01:32 -05009 struct list_head mnt_hash;
Al Viro0714a532011-11-24 22:19:58 -050010 struct mount *mnt_parent;
Al Viroa73324d2011-11-24 22:25:07 -050011 struct dentry *mnt_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050012 struct vfsmount mnt;
Al Viro68e8a9f2011-11-24 22:53:09 -050013#ifdef CONFIG_SMP
14 struct mnt_pcp __percpu *mnt_pcp;
15 atomic_t mnt_longterm; /* how many of the refs are longterm */
16#else
17 int mnt_count;
18 int mnt_writers;
19#endif
Al Viro6b41d532011-11-24 23:24:33 -050020 struct list_head mnt_mounts; /* list of children, anchored here */
21 struct list_head mnt_child; /* and going through their mnt_child */
Al Viro7d6fec42011-11-23 12:14:10 -050022};
23
24static inline struct mount *real_mount(struct vfsmount *mnt)
25{
26 return container_of(mnt, struct mount, mnt);
27}
28
Al Viro676da582011-11-24 21:47:05 -050029static inline int mnt_has_parent(struct mount *mnt)
Al Virob2dba1a2011-11-23 19:26:23 -050030{
Al Viro0714a532011-11-24 22:19:58 -050031 return mnt != mnt->mnt_parent;
Al Virob2dba1a2011-11-23 19:26:23 -050032}
Al Viroc7105362011-11-24 18:22:03 -050033
34extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int);