blob: 0921b51e27e240123302cb654a26d051fd04740c [file] [log] [blame]
Al Virob2dba1a2011-11-23 19:26:23 -05001#include <linux/mount.h>
Al Viro0226f492011-12-06 12:21:54 -05002#include <linux/seq_file.h>
3#include <linux/poll.h>
4
5struct mnt_namespace {
6 atomic_t count;
Al Virobe08d6d2011-12-06 13:32:36 -05007 struct mount * root;
Al Viro0226f492011-12-06 12:21:54 -05008 struct list_head list;
9 wait_queue_head_t poll;
10 int event;
11};
Al Virob2dba1a2011-11-23 19:26:23 -050012
Al Viro68e8a9f2011-11-24 22:53:09 -050013struct mnt_pcp {
14 int mnt_count;
15 int mnt_writers;
16};
17
Al Viro7d6fec42011-11-23 12:14:10 -050018struct mount {
Al Viro1b8e5562011-11-24 21:01:32 -050019 struct list_head mnt_hash;
Al Viro0714a532011-11-24 22:19:58 -050020 struct mount *mnt_parent;
Al Viroa73324d2011-11-24 22:25:07 -050021 struct dentry *mnt_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050022 struct vfsmount mnt;
Al Viro68e8a9f2011-11-24 22:53:09 -050023#ifdef CONFIG_SMP
24 struct mnt_pcp __percpu *mnt_pcp;
25 atomic_t mnt_longterm; /* how many of the refs are longterm */
26#else
27 int mnt_count;
28 int mnt_writers;
29#endif
Al Viro6b41d532011-11-24 23:24:33 -050030 struct list_head mnt_mounts; /* list of children, anchored here */
31 struct list_head mnt_child; /* and going through their mnt_child */
Al Viro52ba1622011-11-25 02:25:17 -050032 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
Al Viro1a4eeaf2011-11-25 02:19:55 -050033 struct list_head mnt_list;
Al Viro6776db3d2011-11-25 00:22:05 -050034 struct list_head mnt_expire; /* link in fs-specific expiry list */
35 struct list_head mnt_share; /* circular list of shared mounts */
36 struct list_head mnt_slave_list;/* list of slave mounts */
37 struct list_head mnt_slave; /* slave list entry */
Al Viro32301922011-11-25 00:10:28 -050038 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
Al Viro143c8c92011-11-25 00:46:35 -050039 struct mnt_namespace *mnt_ns; /* containing namespace */
Al Viroc63181e2011-11-25 02:35:16 -050040#ifdef CONFIG_FSNOTIFY
41 struct hlist_head mnt_fsnotify_marks;
42 __u32 mnt_fsnotify_mask;
43#endif
Al Viro15169fe2011-11-25 00:50:41 -050044 int mnt_id; /* mount identifier */
45 int mnt_group_id; /* peer group identifier */
Al Viro863d6842011-11-25 00:57:42 -050046 int mnt_expiry_mark; /* true if marked for expiry */
47 int mnt_pinned;
48 int mnt_ghosts;
Al Viro7d6fec42011-11-23 12:14:10 -050049};
50
51static inline struct mount *real_mount(struct vfsmount *mnt)
52{
53 return container_of(mnt, struct mount, mnt);
54}
55
Al Viro676da582011-11-24 21:47:05 -050056static inline int mnt_has_parent(struct mount *mnt)
Al Virob2dba1a2011-11-23 19:26:23 -050057{
Al Viro0714a532011-11-24 22:19:58 -050058 return mnt != mnt->mnt_parent;
Al Virob2dba1a2011-11-23 19:26:23 -050059}
Al Viroc7105362011-11-24 18:22:03 -050060
61extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int);
Al Viro0226f492011-12-06 12:21:54 -050062
63static inline void get_mnt_ns(struct mnt_namespace *ns)
64{
65 atomic_inc(&ns->count);
66}
67
68struct proc_mounts {
69 struct seq_file m; /* must be the first element */
70 struct mnt_namespace *ns;
71 struct path root;
72 int (*show)(struct seq_file *, struct vfsmount *);
73};
74
75extern const struct seq_operations mounts_op;