Blame view

include/linux/mount.h 3.66 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
  #include <linux/spinlock.h>
b3e19d924   Nick Piggin   fs: scale mntget/...
16
  #include <linux/seqlock.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
  #include <asm/atomic.h>
726c33422   David Howells   [PATCH] VFS: Perm...
18
19
20
  struct super_block;
  struct vfsmount;
  struct dentry;
6b3286ed1   Kirill Korotaev   [PATCH] rename st...
21
  struct mnt_namespace;
726c33422   David Howells   [PATCH] VFS: Perm...
22

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

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

fc33a7bb9   Christoph Hellwig   [PATCH] per-mount...
34
35
  #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...
36
37
38
39
40
41
42
43
44
  /*
   * 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
45

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

b3e19d924   Nick Piggin   fs: scale mntget/...
48
49
50
51
  struct mnt_pcp {
  	int mnt_count;
  	int mnt_writers;
  };
07b20889e   Ram Pai   [PATCH] beginning...
52
  struct vfsmount {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
53
54
55
56
57
  	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 */
b3e19d924   Nick Piggin   fs: scale mntget/...
58
59
  #ifdef CONFIG_SMP
  	struct mnt_pcp __percpu *mnt_pcp;
f03c65993   Al Viro   sanitize vfsmount...
60
  	atomic_t mnt_longterm;		/* how many of the refs are longterm */
b3e19d924   Nick Piggin   fs: scale mntget/...
61
62
63
64
  #else
  	int mnt_count;
  	int mnt_writers;
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
  	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
67
  	int mnt_flags;
2504c5d63   Andreas Gruenbacher   fsnotify/vfsmount...
68
69
70
71
72
  	/* 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 ...
73
  	const char *mnt_devname;	/* Name of device e.g. /dev/dsk/hda1 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
74
  	struct list_head mnt_list;
55e700b92   Miklos Szeredi   [PATCH] namespace...
75
  	struct list_head mnt_expire;	/* link in fs-specific expiry list */
03e06e68f   Ram Pai   [PATCH] introduce...
76
  	struct list_head mnt_share;	/* circular list of shared mounts */
a58b0eb8e   Ram Pai   [PATCH] introduce...
77
78
79
  	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...
80
  	struct mnt_namespace *mnt_ns;	/* containing namespace */
73cd49ecd   Miklos Szeredi   [patch 3/7] vfs: ...
81
  	int mnt_id;			/* mount identifier */
719f5d7f0   Miklos Szeredi   [patch 4/7] vfs: ...
82
  	int mnt_group_id;		/* peer group identifier */
4ba4d4c0c   Eric Dumazet   [PATCH] struct vf...
83
  	int mnt_expiry_mark;		/* true if marked for expiry */
7b7b1ace2   Al Viro   [PATCH] saner han...
84
  	int mnt_pinned;
7c4b93d82   Al Viro   [PATCH] count gho...
85
  	int mnt_ghosts;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
86
  };
96029c4e0   npiggin@suse.de   fs: introduce mnt...
87
  struct file; /* forward dec */
8366025eb   Dave Hansen   [PATCH] r/o bind ...
88
  extern int mnt_want_write(struct vfsmount *mnt);
96029c4e0   npiggin@suse.de   fs: introduce mnt...
89
90
  extern int mnt_want_write_file(struct file *file);
  extern int mnt_clone_write(struct vfsmount *mnt);
8366025eb   Dave Hansen   [PATCH] r/o bind ...
91
  extern void mnt_drop_write(struct vfsmount *mnt);
b3e19d924   Nick Piggin   fs: scale mntget/...
92
93
  extern void mntput(struct vfsmount *mnt);
  extern struct vfsmount *mntget(struct vfsmount *mnt);
7b7b1ace2   Al Viro   [PATCH] saner han...
94
95
  extern void mnt_pin(struct vfsmount *mnt);
  extern void mnt_unpin(struct vfsmount *mnt);
8366025eb   Dave Hansen   [PATCH] r/o bind ...
96
  extern int __mnt_is_readonly(struct vfsmount *mnt);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
97

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
98
99
  extern struct vfsmount *do_kern_mount(const char *fstype, int flags,
  				      const char *name, void *data);
bb4a58bf4   Trond Myklebust   VFS: Add GPL_EXPO...
100
101
102
103
  struct file_system_type;
  extern struct vfsmount *vfs_kern_mount(struct file_system_type *type,
  				      int flags, const char *name,
  				      void *data);
ea5b778a8   David Howells   Unexport do_add_m...
104
  extern void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105
  extern void mark_mounts_for_expiry(struct list_head *mounts);
d53d9f16e   Andrew Morton   [PATCH] name_to_d...
106
  extern dev_t name_to_dev_t(char *name);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107

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