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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ISOFS_FS_SB
  2. #define _ISOFS_FS_SB
  3. /*
  4.  * iso9660 super-block data in memory
  5.  */
  6. struct isofs_sb_info {
  7. unsigned long s_ninodes;
  8. unsigned long s_nzones;
  9. unsigned long s_firstdatazone;
  10. unsigned long s_log_zone_size;
  11. unsigned long s_max_size;
  12. unsigned char s_high_sierra; /* A simple flag */
  13. unsigned char s_mapping;
  14. int           s_rock_offset; /* offset of SUSP fields within SU area */
  15. unsigned char s_rock;
  16. unsigned char s_joliet_level;
  17. unsigned char s_utf8;
  18. unsigned char s_cruft; /* Broken disks with high
  19.   byte of length containing
  20.   junk */
  21. unsigned char s_unhide;
  22. unsigned char s_nosuid;
  23. unsigned char s_nodev;
  24. unsigned char s_nocompress;
  25. mode_t s_mode;
  26. gid_t s_gid;
  27. uid_t s_uid;
  28. struct nls_table *s_nls_iocharset; /* Native language support table */
  29. };
  30. #endif