Blame view

include/linux/mount.h 4.12 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
  /*
   *
   * Definitions for mount interface. This describes the in the kernel build 
   * linkedlist with mounted filesystems.
   *
   * Author:  Marco van Wieringen <mvw@planets.elm.net>
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
   */
  #ifndef _LINUX_MOUNT_H
  #define _LINUX_MOUNT_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11

d53d9f16e   Andrew Morton   [PATCH] name_to_d...
12
  #include <linux/types.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
  #include <linux/list.h>
3d733633a   Dave Hansen   [PATCH] r/o bind ...
14
  #include <linux/nodemask.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
  #include <linux/spinlock.h>
  #include <asm/atomic.h>
726c33422   David Howells   [PATCH] VFS: Perm...
17
18
19
  struct super_block;
  struct vfsmount;
  struct dentry;
6b3286ed1   Kirill Korotaev   [PATCH] rename st...
20
  struct mnt_namespace;
726c33422   David Howells   [PATCH] VFS: Perm...
21

07b20889e   Ram Pai   [PATCH] beginning...
22
23
24
  #define MNT_NOSUID	0x01
  #define MNT_NODEV	0x02
  #define MNT_NOEXEC	0x04
fc33a7bb9   Christoph Hellwig   [PATCH] per-mount...
25
26
  #define MNT_NOATIME	0x08
  #define MNT_NODIRATIME	0x10
47ae32d6a   Valerie Henson   [PATCH] relative ...
27
  #define MNT_RELATIME	0x20
2e4b7fcd9   Dave Hansen   [PATCH] r/o bind ...
28
  #define MNT_READONLY	0x40	/* does the user want this to be r/o? */
bf066c7db   Miklos Szeredi   [PATCH] shared mo...
29

5528f911b   Trond Myklebust   VFS: Add shrink_s...
30
  #define MNT_SHRINKABLE	0x100
d3ef3d735   npiggin@suse.de   fs: mnt_want_writ...
31
  #define MNT_WRITE_HOLD	0x200
5528f911b   Trond Myklebust   VFS: Add shrink_s...
32

fc33a7bb9   Christoph Hellwig   [PATCH] per-mount...
33
34
  #define MNT_SHARED	0x1000	/* if the vfsmount is a shared mount */
  #define MNT_UNBINDABLE	0x2000	/* if the vfsmount is a unbindable mount */
495d6c9c6   Valerie Aurora   VFS: Clean up sha...
35
36
37
38
39
40
41
42
43
  /*
   * MNT_SHARED_MASK is the set of flags that should be cleared when a
   * mount becomes shared.  Currently, this is only the flag that says a
   * mount cannot be bind mounted, since this is how we create a mount
   * that shares events with another mount.  If you add a new MNT_*
   * flag, consider how it interacts with shared mounts.
   */
  #define MNT_SHARED_MASK	(MNT_UNBINDABLE)
  #define MNT_PROPAGATION_MASK	(MNT_SHARED | MNT_UNBINDABLE)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
44

8089352a1   Al Viro   Mirror MS_KERNMOU...
45
  #define MNT_INTERNAL	0x4000
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46

07b20889e   Ram Pai   [PATCH] beginning...
47
  struct vfsmount {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48
49
50
51
52
53
54
  	struct list_head mnt_hash;
  	struct vfsmount *mnt_parent;	/* fs we are mounted on */
  	struct dentry *mnt_mountpoint;	/* dentry of mountpoint */
  	struct dentry *mnt_root;	/* root of the mounted tree */
  	struct super_block *mnt_sb;	/* pointer to superblock */
  	struct list_head mnt_mounts;	/* list of children, anchored here */
  	struct list_head mnt_child;	/* and going through their mnt_child */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
  	int mnt_flags;
2504c5d63   Andreas Gruenbacher   fsnotify/vfsmount...
56
57
58
59
60
  	/* 4 bytes hole on 64bits arches without fsnotify */
  #ifdef CONFIG_FSNOTIFY
  	__u32 mnt_fsnotify_mask;
  	struct hlist_head mnt_fsnotify_marks;
  #endif
88b387824   Li Zefan   [PATCH] vfs: use ...
61
  	const char *mnt_devname;	/* Name of device e.g. /dev/dsk/hda1 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
  	struct list_head mnt_list;
55e700b92   Miklos Szeredi   [PATCH] namespace...
63
  	struct list_head mnt_expire;	/* link in fs-specific expiry list */
03e06e68f   Ram Pai   [PATCH] introduce...
64
  	struct list_head mnt_share;	/* circular list of shared mounts */
a58b0eb8e   Ram Pai   [PATCH] introduce...
65
66
67
  	struct list_head mnt_slave_list;/* list of slave mounts */
  	struct list_head mnt_slave;	/* slave list entry */
  	struct vfsmount *mnt_master;	/* slave is on master->mnt_slave_list */
6b3286ed1   Kirill Korotaev   [PATCH] rename st...
68
  	struct mnt_namespace *mnt_ns;	/* containing namespace */
73cd49ecd   Miklos Szeredi   [patch 3/7] vfs: ...
69
  	int mnt_id;			/* mount identifier */
719f5d7f0   Miklos Szeredi   [patch 4/7] vfs: ...
70
  	int mnt_group_id;		/* peer group identifier */
4ba4d4c0c   Eric Dumazet   [PATCH] struct vf...
71
72
73
74
75
76
77
  	/*
  	 * We put mnt_count & mnt_expiry_mark at the end of struct vfsmount
  	 * to let these frequently modified fields in a separate cache line
  	 * (so that reads of mnt_flags wont ping-pong on SMP machines)
  	 */
  	atomic_t mnt_count;
  	int mnt_expiry_mark;		/* true if marked for expiry */
7b7b1ace2   Al Viro   [PATCH] saner han...
78
  	int mnt_pinned;
7c4b93d82   Al Viro   [PATCH] count gho...
79
  	int mnt_ghosts;
d3ef3d735   npiggin@suse.de   fs: mnt_want_writ...
80
  #ifdef CONFIG_SMP
003cb608a   Tejun Heo   percpu: add __per...
81
  	int __percpu *mnt_writers;
d3ef3d735   npiggin@suse.de   fs: mnt_want_writ...
82
83
84
  #else
  	int mnt_writers;
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
  };
d3ef3d735   npiggin@suse.de   fs: mnt_want_writ...
86
87
88
89
90
91
92
93
  static inline int *get_mnt_writers_ptr(struct vfsmount *mnt)
  {
  #ifdef CONFIG_SMP
  	return mnt->mnt_writers;
  #else
  	return &mnt->mnt_writers;
  #endif
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
95
96
97
98
99
  static inline struct vfsmount *mntget(struct vfsmount *mnt)
  {
  	if (mnt)
  		atomic_inc(&mnt->mnt_count);
  	return mnt;
  }
96029c4e0   npiggin@suse.de   fs: introduce mnt...
100
  struct file; /* forward dec */
8366025eb   Dave Hansen   [PATCH] r/o bind ...
101
  extern int mnt_want_write(struct vfsmount *mnt);
96029c4e0   npiggin@suse.de   fs: introduce mnt...
102
103
  extern int mnt_want_write_file(struct file *file);
  extern int mnt_clone_write(struct vfsmount *mnt);
8366025eb   Dave Hansen   [PATCH] r/o bind ...
104
  extern void mnt_drop_write(struct vfsmount *mnt);
7b7b1ace2   Al Viro   [PATCH] saner han...
105
106
107
  extern void mntput_no_expire(struct vfsmount *mnt);
  extern void mnt_pin(struct vfsmount *mnt);
  extern void mnt_unpin(struct vfsmount *mnt);
8366025eb   Dave Hansen   [PATCH] r/o bind ...
108
  extern int __mnt_is_readonly(struct vfsmount *mnt);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
109
110
111
112
113
  
  static inline void mntput(struct vfsmount *mnt)
  {
  	if (mnt) {
  		mnt->mnt_expiry_mark = 0;
751c404b8   Miklos Szeredi   [PATCH] namespace...
114
  		mntput_no_expire(mnt);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
115
116
  	}
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
117
118
  extern struct vfsmount *do_kern_mount(const char *fstype, int flags,
  				      const char *name, void *data);
bb4a58bf4   Trond Myklebust   VFS: Add GPL_EXPO...
119
120
121
122
  struct file_system_type;
  extern struct vfsmount *vfs_kern_mount(struct file_system_type *type,
  				      int flags, const char *name,
  				      void *data);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123
  struct nameidata;
8d66bf548   Al Viro   [PATCH] pass stru...
124
125
  struct path;
  extern int do_add_mount(struct vfsmount *newmnt, struct path *path,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
126
127
128
  			int mnt_flags, struct list_head *fslist);
  
  extern void mark_mounts_for_expiry(struct list_head *mounts);
d53d9f16e   Andrew Morton   [PATCH] name_to_d...
129
  extern dev_t name_to_dev_t(char *name);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
130

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
131
  #endif /* _LINUX_MOUNT_H */