xfs_arch.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * Copyright (c) 2000-2002,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_ARCH_H__
  19. #define __XFS_ARCH_H__
  20. #ifndef XFS_BIG_INUMS
  21. # error XFS_BIG_INUMS must be defined true or false
  22. #endif
  23. #ifdef __KERNEL__
  24. #include <asm/byteorder.h>
  25. #ifdef __BIG_ENDIAN
  26. #define XFS_NATIVE_HOST 1
  27. #else
  28. #undef XFS_NATIVE_HOST
  29. #endif
  30. #else /* __KERNEL__ */
  31. #if __BYTE_ORDER == __BIG_ENDIAN
  32. #define XFS_NATIVE_HOST 1
  33. #else
  34. #undef XFS_NATIVE_HOST
  35. #endif
  36. #ifdef XFS_NATIVE_HOST
  37. #define cpu_to_be16(val) ((__force __be16)(__u16)(val))
  38. #define cpu_to_be32(val) ((__force __be32)(__u32)(val))
  39. #define cpu_to_be64(val) ((__force __be64)(__u64)(val))
  40. #define be16_to_cpu(val) ((__force __u16)(__be16)(val))
  41. #define be32_to_cpu(val) ((__force __u32)(__be32)(val))
  42. #define be64_to_cpu(val) ((__force __u64)(__be64)(val))
  43. #else
  44. #define cpu_to_be16(val) ((__force __be16)__swab16((__u16)(val)))
  45. #define cpu_to_be32(val) ((__force __be32)__swab32((__u32)(val)))
  46. #define cpu_to_be64(val) ((__force __be64)__swab64((__u64)(val)))
  47. #define be16_to_cpu(val) (__swab16((__force __u16)(__be16)(val)))
  48. #define be32_to_cpu(val) (__swab32((__force __u32)(__be32)(val)))
  49. #define be64_to_cpu(val) (__swab64((__force __u64)(__be64)(val)))
  50. #endif
  51. static inline void be16_add_cpu(__be16 *a, __s16 b)
  52. {
  53. *a = cpu_to_be16(be16_to_cpu(*a) + b);
  54. }
  55. static inline void be32_add_cpu(__be32 *a, __s32 b)
  56. {
  57. *a = cpu_to_be32(be32_to_cpu(*a) + b);
  58. }
  59. static inline void be64_add_cpu(__be64 *a, __s64 b)
  60. {
  61. *a = cpu_to_be64(be64_to_cpu(*a) + b);
  62. }
  63. #endif /* __KERNEL__ */
  64. /*
  65. * get and set integers from potentially unaligned locations
  66. */
  67. #define INT_GET_UNALIGNED_16_BE(pointer) \
  68. ((__u16)((((__u8*)(pointer))[0] << 8) | (((__u8*)(pointer))[1])))
  69. #define INT_SET_UNALIGNED_16_BE(pointer,value) \
  70. { \
  71. ((__u8*)(pointer))[0] = (((value) >> 8) & 0xff); \
  72. ((__u8*)(pointer))[1] = (((value) ) & 0xff); \
  73. }
  74. /*
  75. * In directories inode numbers are stored as unaligned arrays of unsigned
  76. * 8bit integers on disk.
  77. *
  78. * For v1 directories or v2 directories that contain inode numbers that
  79. * do not fit into 32bit the array has eight members, but the first member
  80. * is always zero:
  81. *
  82. * |unused|48-55|40-47|32-39|24-31|16-23| 8-15| 0- 7|
  83. *
  84. * For v2 directories that only contain entries with inode numbers that fit
  85. * into 32bits a four-member array is used:
  86. *
  87. * |24-31|16-23| 8-15| 0- 7|
  88. */
  89. #define XFS_GET_DIR_INO4(di) \
  90. (((__u32)(di).i[0] << 24) | ((di).i[1] << 16) | ((di).i[2] << 8) | ((di).i[3]))
  91. #define XFS_PUT_DIR_INO4(from, di) \
  92. do { \
  93. (di).i[0] = (((from) & 0xff000000ULL) >> 24); \
  94. (di).i[1] = (((from) & 0x00ff0000ULL) >> 16); \
  95. (di).i[2] = (((from) & 0x0000ff00ULL) >> 8); \
  96. (di).i[3] = ((from) & 0x000000ffULL); \
  97. } while (0)
  98. #define XFS_DI_HI(di) \
  99. (((__u32)(di).i[1] << 16) | ((di).i[2] << 8) | ((di).i[3]))
  100. #define XFS_DI_LO(di) \
  101. (((__u32)(di).i[4] << 24) | ((di).i[5] << 16) | ((di).i[6] << 8) | ((di).i[7]))
  102. #define XFS_GET_DIR_INO8(di) \
  103. (((xfs_ino_t)XFS_DI_LO(di) & 0xffffffffULL) | \
  104. ((xfs_ino_t)XFS_DI_HI(di) << 32))
  105. #define XFS_PUT_DIR_INO8(from, di) \
  106. do { \
  107. (di).i[0] = 0; \
  108. (di).i[1] = (((from) & 0x00ff000000000000ULL) >> 48); \
  109. (di).i[2] = (((from) & 0x0000ff0000000000ULL) >> 40); \
  110. (di).i[3] = (((from) & 0x000000ff00000000ULL) >> 32); \
  111. (di).i[4] = (((from) & 0x00000000ff000000ULL) >> 24); \
  112. (di).i[5] = (((from) & 0x0000000000ff0000ULL) >> 16); \
  113. (di).i[6] = (((from) & 0x000000000000ff00ULL) >> 8); \
  114. (di).i[7] = ((from) & 0x00000000000000ffULL); \
  115. } while (0)
  116. #endif /* __XFS_ARCH_H__ */