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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_NTFS_FS_I_H
  2. #define _LINUX_NTFS_FS_I_H
  3. #include <linux/types.h>
  4. /* Forward declarations, to keep number of mutual includes low */
  5. struct ntfs_attribute;
  6. struct ntfs_sb_info;
  7. /* Duplicate definitions from ntfs/ntfstypes.h */
  8. #ifndef NTFS_INTEGRAL_TYPES
  9. #define NTFS_INTEGRAL_TYPES
  10. typedef u8  ntfs_u8;
  11. typedef u16 ntfs_u16;
  12. typedef u32 ntfs_u32;
  13. typedef u64 ntfs_u64;
  14. typedef s8  ntfs_s8;
  15. typedef s16 ntfs_s16;
  16. typedef s32 ntfs_s32;
  17. typedef s64 ntfs_s64;
  18. #endif
  19. #ifndef NTMODE_T
  20. #define NTMODE_T
  21. typedef __kernel_mode_t ntmode_t;
  22. #endif
  23. #ifndef NTFS_UID_T
  24. #define NTFS_UID_T
  25. typedef uid_t ntfs_uid_t;
  26. #endif
  27. #ifndef NTFS_GID_T
  28. #define NTFS_GID_T
  29. typedef gid_t ntfs_gid_t;
  30. #endif
  31. #ifndef NTFS_SIZE_T
  32. #define NTFS_SIZE_T
  33. typedef __kernel_size_t ntfs_size_t;
  34. #endif
  35. #ifndef NTFS_TIME_T
  36. #define NTFS_TIME_T
  37. typedef __kernel_time_t ntfs_time_t;
  38. #endif
  39. /* unicode character type */
  40. #ifndef NTFS_WCHAR_T
  41. #define NTFS_WCHAR_T
  42. typedef u16 ntfs_wchar_t;
  43. #endif
  44. /* file offset */
  45. #ifndef NTFS_OFFSET_T
  46. #define NTFS_OFFSET_T
  47. typedef s64 ntfs_offset_t;
  48. #endif
  49. /* UTC */
  50. #ifndef NTFS_TIME64_T
  51. #define NTFS_TIME64_T
  52. typedef u64 ntfs_time64_t;
  53. #endif
  54. /*
  55.  * This is really signed long long. So we support only volumes up to 2Tb. This
  56.  * is ok as Win2k also only uses 32-bits to store clusters.
  57.  * Whatever you do keep this a SIGNED value or a lot of NTFS users with
  58.  * corrupted filesystems will lynch you! It causes massive fs corruption when
  59.  * unsigned due to the nature of many checks relying on being performed on
  60.  * signed quantities. (AIA)
  61.  */
  62. #ifndef NTFS_CLUSTER_T
  63. #define NTFS_CLUSTER_T
  64. typedef s32 ntfs_cluster_t;
  65. #endif
  66. /* Definition of the NTFS in-memory inode structure. */
  67. struct ntfs_inode_info {
  68. struct ntfs_sb_info *vol;
  69. unsigned long i_number; /* Should be really 48 bits. */
  70. __u16 sequence_number; /* The current sequence number. */
  71. unsigned char *attr; /* Array of the attributes. */
  72. int attr_count; /* Size of attrs[]. */
  73. struct ntfs_attribute *attrs;
  74. int record_count; /* Size of records[]. */
  75. int *records; /* Array of the record numbers of the $Mft whose 
  76.        * attributes have been inserted in the inode. */
  77. union {
  78. struct {
  79. int recordsize;
  80. int clusters_per_record;
  81. } index;
  82. } u;
  83. };
  84. #endif