jfs_types.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * Copyright (C) International Business Machines Corp., 2000-2004
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
  12. * the 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 to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #ifndef _H_JFS_TYPES
  19. #define _H_JFS_TYPES
  20. /*
  21. * jfs_types.h:
  22. *
  23. * basic type/utility definitions
  24. *
  25. * note: this header file must be the 1st include file
  26. * of JFS include list in all JFS .c file.
  27. */
  28. #include <linux/types.h>
  29. #include <linux/nls.h>
  30. #include "endian24.h"
  31. /*
  32. * transaction and lock id's
  33. *
  34. * Don't change these without carefully considering the impact on the
  35. * size and alignment of all of the linelock variants
  36. */
  37. typedef u16 tid_t;
  38. typedef u16 lid_t;
  39. /*
  40. * Almost identical to Linux's timespec, but not quite
  41. */
  42. struct timestruc_t {
  43. __le32 tv_sec;
  44. __le32 tv_nsec;
  45. };
  46. /*
  47. * handy
  48. */
  49. #define LEFTMOSTONE 0x80000000
  50. #define HIGHORDER 0x80000000u /* high order bit on */
  51. #define ONES 0xffffffffu /* all bit on */
  52. /*
  53. * physical xd (pxd)
  54. */
  55. typedef struct {
  56. unsigned len:24;
  57. unsigned addr1:8;
  58. __le32 addr2;
  59. } pxd_t;
  60. /* xd_t field construction */
  61. #define PXDlength(pxd, length32) ((pxd)->len = __cpu_to_le24(length32))
  62. #define PXDaddress(pxd, address64)\
  63. {\
  64. (pxd)->addr1 = ((s64)address64) >> 32;\
  65. (pxd)->addr2 = __cpu_to_le32((address64) & 0xffffffff);\
  66. }
  67. /* xd_t field extraction */
  68. #define lengthPXD(pxd) __le24_to_cpu((pxd)->len)
  69. #define addressPXD(pxd)\
  70. ( ((s64)((pxd)->addr1)) << 32 | __le32_to_cpu((pxd)->addr2))
  71. #define MAXTREEHEIGHT 8
  72. /* pxd list */
  73. struct pxdlist {
  74. s16 maxnpxd;
  75. s16 npxd;
  76. pxd_t pxd[MAXTREEHEIGHT];
  77. };
  78. /*
  79. * data extent descriptor (dxd)
  80. */
  81. typedef struct {
  82. unsigned flag:8; /* 1: flags */
  83. unsigned rsrvd:24;
  84. __le32 size; /* 4: size in byte */
  85. unsigned len:24; /* 3: length in unit of fsblksize */
  86. unsigned addr1:8; /* 1: address in unit of fsblksize */
  87. __le32 addr2; /* 4: address in unit of fsblksize */
  88. } dxd_t; /* - 16 - */
  89. /* dxd_t flags */
  90. #define DXD_INDEX 0x80 /* B+-tree index */
  91. #define DXD_INLINE 0x40 /* in-line data extent */
  92. #define DXD_EXTENT 0x20 /* out-of-line single extent */
  93. #define DXD_FILE 0x10 /* out-of-line file (inode) */
  94. #define DXD_CORRUPT 0x08 /* Inconsistency detected */
  95. /* dxd_t field construction
  96. * Conveniently, the PXD macros work for DXD
  97. */
  98. #define DXDlength PXDlength
  99. #define DXDaddress PXDaddress
  100. #define lengthDXD lengthPXD
  101. #define addressDXD addressPXD
  102. #define DXDsize(dxd, size32) ((dxd)->size = cpu_to_le32(size32))
  103. #define sizeDXD(dxd) le32_to_cpu((dxd)->size)
  104. /*
  105. * directory entry argument
  106. */
  107. struct component_name {
  108. int namlen;
  109. wchar_t *name;
  110. };
  111. /*
  112. * DASD limit information - stored in directory inode
  113. */
  114. struct dasd {
  115. u8 thresh; /* Alert Threshold (in percent) */
  116. u8 delta; /* Alert Threshold delta (in percent) */
  117. u8 rsrvd1;
  118. u8 limit_hi; /* DASD limit (in logical blocks) */
  119. __le32 limit_lo; /* DASD limit (in logical blocks) */
  120. u8 rsrvd2[3];
  121. u8 used_hi; /* DASD usage (in logical blocks) */
  122. __le32 used_lo; /* DASD usage (in logical blocks) */
  123. };
  124. #define DASDLIMIT(dasdp) \
  125. (((u64)((dasdp)->limit_hi) << 32) + __le32_to_cpu((dasdp)->limit_lo))
  126. #define setDASDLIMIT(dasdp, limit)\
  127. {\
  128. (dasdp)->limit_hi = ((u64)limit) >> 32;\
  129. (dasdp)->limit_lo = __cpu_to_le32(limit);\
  130. }
  131. #define DASDUSED(dasdp) \
  132. (((u64)((dasdp)->used_hi) << 32) + __le32_to_cpu((dasdp)->used_lo))
  133. #define setDASDUSED(dasdp, used)\
  134. {\
  135. (dasdp)->used_hi = ((u64)used) >> 32;\
  136. (dasdp)->used_lo = __cpu_to_le32(used);\
  137. }
  138. #endif /* !_H_JFS_TYPES */