mount.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

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. #define MNT_NOSUID 1
  15. #define MNT_NODEV 2
  16. #define MNT_NOEXEC 4
  17. struct vfsmount
  18. {
  19. struct list_head mnt_hash;
  20. struct vfsmount *mnt_parent; /* fs we are mounted on */
  21. struct dentry *mnt_mountpoint; /* dentry of mountpoint */
  22. struct dentry *mnt_root; /* root of the mounted tree */
  23. struct super_block *mnt_sb; /* pointer to superblock */
  24. struct list_head mnt_mounts; /* list of children, anchored here */
  25. struct list_head mnt_child; /* and going through their mnt_child */
  26. atomic_t mnt_count;
  27. int mnt_flags;
  28. char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
  29. struct list_head mnt_list;
  30. };
  31. static inline struct vfsmount *mntget(struct vfsmount *mnt)
  32. {
  33. if (mnt)
  34. atomic_inc(&mnt->mnt_count);
  35. return mnt;
  36. }
  37. extern void __mntput(struct vfsmount *mnt);
  38. static inline void mntput(struct vfsmount *mnt)
  39. {
  40. if (mnt) {
  41. if (atomic_dec_and_test(&mnt->mnt_count))
  42. __mntput(mnt);
  43. }
  44. }
  45. #endif
  46. #endif /* _LINUX_MOUNT_H */