mount.h 3.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 *
 * Definitions for mount interface. This describes the in the kernel build 
 * linkedlist with mounted filesystems.
 *
 * Author:  Marco van Wieringen <mvw@planets.elm.net>
 *
 * Version: $Id: mount.h,v 2.0 1996/11/17 16:48:14 mvw Exp mvw $
 *
 */
#ifndef _LINUX_MOUNT_H
#define _LINUX_MOUNT_H
#ifdef __KERNEL__

15
#include <linux/types.h>
L
Linus Torvalds 已提交
16
#include <linux/list.h>
17
#include <linux/nodemask.h>
L
Linus Torvalds 已提交
18 19 20
#include <linux/spinlock.h>
#include <asm/atomic.h>

21 22 23
struct super_block;
struct vfsmount;
struct dentry;
24
struct mnt_namespace;
25

26 27 28
#define MNT_NOSUID	0x01
#define MNT_NODEV	0x02
#define MNT_NOEXEC	0x04
29 30
#define MNT_NOATIME	0x08
#define MNT_NODIRATIME	0x10
V
Valerie Henson 已提交
31
#define MNT_RELATIME	0x20
M
Miklos Szeredi 已提交
32

T
Trond Myklebust 已提交
33
#define MNT_SHRINKABLE	0x100
34
#define MNT_IMBALANCED_WRITE_COUNT	0x200 /* just for debugging */
T
Trond Myklebust 已提交
35

36 37
#define MNT_SHARED	0x1000	/* if the vfsmount is a shared mount */
#define MNT_UNBINDABLE	0x2000	/* if the vfsmount is a unbindable mount */
38
#define MNT_PNODE_MASK	0x3000	/* propagation flag mask */
L
Linus Torvalds 已提交
39

40
struct vfsmount {
L
Linus Torvalds 已提交
41 42 43 44 45 46 47 48
	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 */
	int mnt_flags;
49
	/* 4 bytes hole on 64bits arches */
L
Linus Torvalds 已提交
50 51
	char *mnt_devname;		/* Name of device e.g. /dev/dsk/hda1 */
	struct list_head mnt_list;
52
	struct list_head mnt_expire;	/* link in fs-specific expiry list */
R
Ram Pai 已提交
53
	struct list_head mnt_share;	/* circular list of shared mounts */
R
Ram Pai 已提交
54 55 56
	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 */
57
	struct mnt_namespace *mnt_ns;	/* containing namespace */
58 59 60 61 62 63 64
	/*
	 * 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 */
65
	int mnt_pinned;
66
	int mnt_ghosts;
67 68 69 70 71
	/*
	 * This value is not stable unless all of the mnt_writers[] spinlocks
	 * are held, and all mnt_writer[]s on this mount have 0 as their ->count
	 */
	atomic_t __mnt_writers;
L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79 80
};

static inline struct vfsmount *mntget(struct vfsmount *mnt)
{
	if (mnt)
		atomic_inc(&mnt->mnt_count);
	return mnt;
}

81 82
extern int mnt_want_write(struct vfsmount *mnt);
extern void mnt_drop_write(struct vfsmount *mnt);
83 84 85
extern void mntput_no_expire(struct vfsmount *mnt);
extern void mnt_pin(struct vfsmount *mnt);
extern void mnt_unpin(struct vfsmount *mnt);
86
extern int __mnt_is_readonly(struct vfsmount *mnt);
L
Linus Torvalds 已提交
87 88 89 90 91

static inline void mntput(struct vfsmount *mnt)
{
	if (mnt) {
		mnt->mnt_expiry_mark = 0;
92
		mntput_no_expire(mnt);
L
Linus Torvalds 已提交
93 94 95 96 97 98 99 100
	}
}

extern void free_vfsmnt(struct vfsmount *mnt);
extern struct vfsmount *alloc_vfsmnt(const char *name);
extern struct vfsmount *do_kern_mount(const char *fstype, int flags,
				      const char *name, void *data);

101 102 103 104 105
struct file_system_type;
extern struct vfsmount *vfs_kern_mount(struct file_system_type *type,
				      int flags, const char *name,
				      void *data);

L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113
struct nameidata;

extern int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd,
			int mnt_flags, struct list_head *fslist);

extern void mark_mounts_for_expiry(struct list_head *mounts);

extern spinlock_t vfsmount_lock;
114
extern dev_t name_to_dev_t(char *name);
L
Linus Torvalds 已提交
115 116 117

#endif
#endif /* _LINUX_MOUNT_H */