mount.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * Definitions for mount interface. This describes the in the kernel build 
  4.  * linkedlist with mounted filesystems.
  5.  *
  6.  * Author:  Marco van Wieringen <mvw@planets.elm.net>
  7.  *
  8.  * Version: $Id: mount.h,v 2.0 1996/11/17 16:48:14 mvw Exp mvw $
  9.  *
  10.  */
  11. #ifndef _LINUX_MOUNT_H
  12. #define _LINUX_MOUNT_H
  13. #ifdef __KERNEL__
  14. #include <linux/types.h>
  15. #include <linux/list.h>
  16. #include <linux/spinlock.h>
  17. #include <asm/atomic.h>
  18. #define MNT_NOSUID 1
  19. #define MNT_NODEV 2
  20. #define MNT_NOEXEC 4
  21. struct vfsmount
  22. {
  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_expire; /* link in fs-specific expiry list */
  36. struct namespace *mnt_namespace; /* containing namespace */
  37. };
  38. static inline struct vfsmount *mntget(struct vfsmount *mnt)
  39. {
  40. if (mnt)
  41. atomic_inc(&mnt->mnt_count);
  42. return mnt;
  43. }
  44. extern void __mntput(struct vfsmount *mnt);
  45. static inline void mntput_no_expire(struct vfsmount *mnt)
  46. {
  47. if (mnt) {
  48. if (atomic_dec_and_test(&mnt->mnt_count))
  49. __mntput(mnt);
  50. }
  51. }
  52. static inline void mntput(struct vfsmount *mnt)
  53. {
  54. if (mnt) {
  55. mnt->mnt_expiry_mark = 0;
  56. mntput_no_expire(mnt);
  57. }
  58. }
  59. extern void free_vfsmnt(struct vfsmount *mnt);
  60. extern struct vfsmount *alloc_vfsmnt(const char *name);
  61. extern struct vfsmount *do_kern_mount(const char *fstype, int flags,
  62.       const char *name, void *data);
  63. struct nameidata;
  64. extern int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd,
  65. int mnt_flags, struct list_head *fslist);
  66. extern void mark_mounts_for_expiry(struct list_head *mounts);
  67. extern spinlock_t vfsmount_lock;
  68. extern dev_t name_to_dev_t(char *name);
  69. #endif
  70. #endif /* _LINUX_MOUNT_H */