xfs_types.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * Copyright (c) 2000-2005 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef __XFS_TYPES_H__
  19. #define __XFS_TYPES_H__
  20. #ifdef __KERNEL__
  21. /*
  22. * Additional type declarations for XFS
  23. */
  24. typedef signed char __int8_t;
  25. typedef unsigned char __uint8_t;
  26. typedef signed short int __int16_t;
  27. typedef unsigned short int __uint16_t;
  28. typedef signed int __int32_t;
  29. typedef unsigned int __uint32_t;
  30. typedef signed long long int __int64_t;
  31. typedef unsigned long long int __uint64_t;
  32. typedef enum { B_FALSE,B_TRUE } boolean_t;
  33. typedef __uint32_t prid_t; /* project ID */
  34. typedef __uint32_t inst_t; /* an instruction */
  35. typedef __s64 xfs_off_t; /* <file offset> type */
  36. typedef unsigned long long xfs_ino_t; /* <inode> type */
  37. typedef __s64 xfs_daddr_t; /* <disk address> type */
  38. typedef char * xfs_caddr_t; /* <core address> type */
  39. typedef __u32 xfs_dev_t;
  40. typedef __u32 xfs_nlink_t;
  41. /* __psint_t is the same size as a pointer */
  42. #if (BITS_PER_LONG == 32)
  43. typedef __int32_t __psint_t;
  44. typedef __uint32_t __psunsigned_t;
  45. #elif (BITS_PER_LONG == 64)
  46. typedef __int64_t __psint_t;
  47. typedef __uint64_t __psunsigned_t;
  48. #else
  49. #error BITS_PER_LONG must be 32 or 64
  50. #endif
  51. #endif /* __KERNEL__ */
  52. typedef __uint32_t xfs_agblock_t; /* blockno in alloc. group */
  53. typedef __uint32_t xfs_extlen_t; /* extent length in blocks */
  54. typedef __uint32_t xfs_agnumber_t; /* allocation group number */
  55. typedef __int32_t xfs_extnum_t; /* # of extents in a file */
  56. typedef __int16_t xfs_aextnum_t; /* # extents in an attribute fork */
  57. typedef __int64_t xfs_fsize_t; /* bytes in a file */
  58. typedef __uint64_t xfs_ufsize_t; /* unsigned bytes in a file */
  59. typedef __int32_t xfs_suminfo_t; /* type of bitmap summary info */
  60. typedef __int32_t xfs_rtword_t; /* word type for bitmap manipulations */
  61. typedef __int64_t xfs_lsn_t; /* log sequence number */
  62. typedef __int32_t xfs_tid_t; /* transaction identifier */
  63. typedef __uint32_t xfs_dablk_t; /* dir/attr block number (in file) */
  64. typedef __uint32_t xfs_dahash_t; /* dir/attr hash value */
  65. /*
  66. * These types are 64 bits on disk but are either 32 or 64 bits in memory.
  67. * Disk based types:
  68. */
  69. typedef __uint64_t xfs_dfsbno_t; /* blockno in filesystem (agno|agbno) */
  70. typedef __uint64_t xfs_drfsbno_t; /* blockno in filesystem (raw) */
  71. typedef __uint64_t xfs_drtbno_t; /* extent (block) in realtime area */
  72. typedef __uint64_t xfs_dfiloff_t; /* block number in a file */
  73. typedef __uint64_t xfs_dfilblks_t; /* number of blocks in a file */
  74. /*
  75. * Memory based types are conditional.
  76. */
  77. #if XFS_BIG_BLKNOS
  78. typedef __uint64_t xfs_fsblock_t; /* blockno in filesystem (agno|agbno) */
  79. typedef __uint64_t xfs_rfsblock_t; /* blockno in filesystem (raw) */
  80. typedef __uint64_t xfs_rtblock_t; /* extent (block) in realtime area */
  81. typedef __int64_t xfs_srtblock_t; /* signed version of xfs_rtblock_t */
  82. #else
  83. typedef __uint32_t xfs_fsblock_t; /* blockno in filesystem (agno|agbno) */
  84. typedef __uint32_t xfs_rfsblock_t; /* blockno in filesystem (raw) */
  85. typedef __uint32_t xfs_rtblock_t; /* extent (block) in realtime area */
  86. typedef __int32_t xfs_srtblock_t; /* signed version of xfs_rtblock_t */
  87. #endif
  88. typedef __uint64_t xfs_fileoff_t; /* block number in a file */
  89. typedef __int64_t xfs_sfiloff_t; /* signed block number in a file */
  90. typedef __uint64_t xfs_filblks_t; /* number of blocks in a file */
  91. /*
  92. * Null values for the types.
  93. */
  94. #define NULLDFSBNO ((xfs_dfsbno_t)-1)
  95. #define NULLDRFSBNO ((xfs_drfsbno_t)-1)
  96. #define NULLDRTBNO ((xfs_drtbno_t)-1)
  97. #define NULLDFILOFF ((xfs_dfiloff_t)-1)
  98. #define NULLFSBLOCK ((xfs_fsblock_t)-1)
  99. #define NULLRFSBLOCK ((xfs_rfsblock_t)-1)
  100. #define NULLRTBLOCK ((xfs_rtblock_t)-1)
  101. #define NULLFILEOFF ((xfs_fileoff_t)-1)
  102. #define NULLAGBLOCK ((xfs_agblock_t)-1)
  103. #define NULLAGNUMBER ((xfs_agnumber_t)-1)
  104. #define NULLEXTNUM ((xfs_extnum_t)-1)
  105. #define NULLCOMMITLSN ((xfs_lsn_t)-1)
  106. /*
  107. * Max values for extlen, extnum, aextnum.
  108. */
  109. #define MAXEXTLEN ((xfs_extlen_t)0x001fffff) /* 21 bits */
  110. #define MAXEXTNUM ((xfs_extnum_t)0x7fffffff) /* signed int */
  111. #define MAXAEXTNUM ((xfs_aextnum_t)0x7fff) /* signed short */
  112. /*
  113. * Min numbers of data/attr fork btree root pointers.
  114. */
  115. #define MINDBTPTRS 3
  116. #define MINABTPTRS 2
  117. /*
  118. * MAXNAMELEN is the length (including the terminating null) of
  119. * the longest permissible file (component) name.
  120. */
  121. #define MAXNAMELEN 256
  122. typedef enum {
  123. XFS_LOOKUP_EQi, XFS_LOOKUP_LEi, XFS_LOOKUP_GEi
  124. } xfs_lookup_t;
  125. typedef enum {
  126. XFS_BTNUM_BNOi, XFS_BTNUM_CNTi, XFS_BTNUM_BMAPi, XFS_BTNUM_INOi,
  127. XFS_BTNUM_MAX
  128. } xfs_btnum_t;
  129. struct xfs_name {
  130. const unsigned char *name;
  131. int len;
  132. };
  133. #endif /* __XFS_TYPES_H__ */