hfs_fs_sb.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * linux/include/linux/hfs_fs_sb.h
  3.  *
  4.  * Copyright (C) 1995-1997  Paul H. Hargrove
  5.  * This file may be distributed under the terms of the GNU General Public License.
  6.  *
  7.  * This file defines the type (struct hfs_sb_info) which contains the
  8.  * HFS-specific information in the in-core superblock.
  9.  */
  10. #ifndef _LINUX_HFS_FS_SB_H
  11. #define _LINUX_HFS_FS_SB_H
  12. /* forward declaration: */
  13. struct hfs_name;
  14. typedef int (*hfs_namein_fn) (char *, const struct hfs_name *);
  15. typedef void (*hfs_nameout_fn) (struct hfs_name *, const char *, int);
  16. typedef void (*hfs_ifill_fn) (struct inode *, ino_t, const int);
  17. /*
  18.  * struct hfs_sb_info
  19.  *
  20.  * The HFS-specific part of a Linux (struct super_block)
  21.  */
  22. struct hfs_sb_info {
  23. int magic; /* A magic number */
  24. struct hfs_mdb *s_mdb; /* The HFS MDB */
  25. int s_quiet; /* Silent failure when 
  26.    changing owner or mode? */
  27. int s_lowercase; /* Map names to lowercase? */
  28. int s_afpd; /* AFPD compatible mode? */
  29. int                     s_version;      /* version info */
  30. hfs_namein_fn s_namein; /* The function used to
  31.    map Mac filenames to
  32.    Linux filenames */
  33. hfs_nameout_fn s_nameout; /* The function used to
  34.     map Linux filenames
  35.     to Mac filenames */
  36. hfs_ifill_fn s_ifill; /* The function used
  37.    to fill in inode fields */
  38. const struct hfs_name *s_reserved1; /* Reserved names */
  39. const struct hfs_name *s_reserved2; /* Reserved names */
  40. __u32 s_type; /* Type for new files */
  41. __u32 s_creator; /* Creator for new files */
  42. umode_t s_umask; /* The umask applied to the
  43.    permissions on all files */
  44. uid_t s_uid; /* The uid of all files */
  45. gid_t s_gid; /* The gid of all files */
  46. char s_conv; /* Type of text conversion */
  47. };
  48. #endif