initial commit with v2.6.9
[linux-2.6.9-moxart.git] / include / linux / mount.h
blob42e2c9460088e46f560ee17331340e5b60d66f1d
1 /*
3 * Definitions for mount interface. This describes the in the kernel build
4 * linkedlist with mounted filesystems.
6 * Author: Marco van Wieringen <mvw@planets.elm.net>
8 * Version: $Id: mount.h,v 2.0 1996/11/17 16:48:14 mvw Exp mvw $
11 #ifndef _LINUX_MOUNT_H
12 #define _LINUX_MOUNT_H
13 #ifdef __KERNEL__
15 #include <linux/list.h>
17 #define MNT_NOSUID 1
18 #define MNT_NODEV 2
19 #define MNT_NOEXEC 4
21 struct vfsmount
23 struct list_head mnt_hash;
24 struct vfsmount *mnt_parent; /* fs we are mounted on */
25 struct dentry *mnt_mountpoint; /* dentry of mountpoint */
26 struct dentry *mnt_root; /* root of the mounted tree */
27 struct super_block *mnt_sb; /* pointer to superblock */
28 struct list_head mnt_mounts; /* list of children, anchored here */
29 struct list_head mnt_child; /* and going through their mnt_child */
30 atomic_t mnt_count;
31 int mnt_flags;
32 int mnt_expiry_mark; /* true if marked for expiry */
33 char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
34 struct list_head mnt_list;
35 struct list_head mnt_fslink; /* link in fs-specific expiry list */
36 struct namespace *mnt_namespace; /* containing namespace */
39 static inline struct vfsmount *mntget(struct vfsmount *mnt)
41 if (mnt)
42 atomic_inc(&mnt->mnt_count);
43 return mnt;
46 extern void __mntput(struct vfsmount *mnt);
48 static inline void _mntput(struct vfsmount *mnt)
50 if (mnt) {
51 if (atomic_dec_and_test(&mnt->mnt_count))
52 __mntput(mnt);
56 static inline void mntput(struct vfsmount *mnt)
58 if (mnt) {
59 mnt->mnt_expiry_mark = 0;
60 _mntput(mnt);
64 extern void free_vfsmnt(struct vfsmount *mnt);
65 extern struct vfsmount *alloc_vfsmnt(const char *name);
66 extern struct vfsmount *do_kern_mount(const char *fstype, int flags,
67 const char *name, void *data);
69 struct nameidata;
71 extern int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd,
72 int mnt_flags, struct list_head *fslist);
74 extern void mark_mounts_for_expiry(struct list_head *mounts);
76 extern spinlock_t vfsmount_lock;
78 #endif
79 #endif /* _LINUX_MOUNT_H */