xfs_sb.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  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_SB_H__
  19. #define __XFS_SB_H__
  20. /*
  21. * Super block
  22. * Fits into a sector-sized buffer at address 0 of each allocation group.
  23. * Only the first of these is ever updated except during growfs.
  24. */
  25. struct xfs_buf;
  26. struct xfs_mount;
  27. #define XFS_SB_MAGIC 0x58465342 /* 'XFSB' */
  28. #define XFS_SB_VERSION_1 1 /* 5.3, 6.0.1, 6.1 */
  29. #define XFS_SB_VERSION_2 2 /* 6.2 - attributes */
  30. #define XFS_SB_VERSION_3 3 /* 6.2 - new inode version */
  31. #define XFS_SB_VERSION_4 4 /* 6.2+ - bitmask version */
  32. #define XFS_SB_VERSION_NUMBITS 0x000f
  33. #define XFS_SB_VERSION_ALLFBITS 0xfff0
  34. #define XFS_SB_VERSION_SASHFBITS 0xf000
  35. #define XFS_SB_VERSION_REALFBITS 0x0ff0
  36. #define XFS_SB_VERSION_ATTRBIT 0x0010
  37. #define XFS_SB_VERSION_NLINKBIT 0x0020
  38. #define XFS_SB_VERSION_QUOTABIT 0x0040
  39. #define XFS_SB_VERSION_ALIGNBIT 0x0080
  40. #define XFS_SB_VERSION_DALIGNBIT 0x0100
  41. #define XFS_SB_VERSION_SHAREDBIT 0x0200
  42. #define XFS_SB_VERSION_LOGV2BIT 0x0400
  43. #define XFS_SB_VERSION_SECTORBIT 0x0800
  44. #define XFS_SB_VERSION_EXTFLGBIT 0x1000
  45. #define XFS_SB_VERSION_DIRV2BIT 0x2000
  46. #define XFS_SB_VERSION_BORGBIT 0x4000 /* ASCII only case-insens. */
  47. #define XFS_SB_VERSION_MOREBITSBIT 0x8000
  48. #define XFS_SB_VERSION_OKSASHFBITS \
  49. (XFS_SB_VERSION_EXTFLGBIT | \
  50. XFS_SB_VERSION_DIRV2BIT | \
  51. XFS_SB_VERSION_BORGBIT)
  52. #define XFS_SB_VERSION_OKREALFBITS \
  53. (XFS_SB_VERSION_ATTRBIT | \
  54. XFS_SB_VERSION_NLINKBIT | \
  55. XFS_SB_VERSION_QUOTABIT | \
  56. XFS_SB_VERSION_ALIGNBIT | \
  57. XFS_SB_VERSION_DALIGNBIT | \
  58. XFS_SB_VERSION_SHAREDBIT | \
  59. XFS_SB_VERSION_LOGV2BIT | \
  60. XFS_SB_VERSION_SECTORBIT | \
  61. XFS_SB_VERSION_MOREBITSBIT)
  62. #define XFS_SB_VERSION_OKREALBITS \
  63. (XFS_SB_VERSION_NUMBITS | \
  64. XFS_SB_VERSION_OKREALFBITS | \
  65. XFS_SB_VERSION_OKSASHFBITS)
  66. /*
  67. * There are two words to hold XFS "feature" bits: the original
  68. * word, sb_versionnum, and sb_features2. Whenever a bit is set in
  69. * sb_features2, the feature bit XFS_SB_VERSION_MOREBITSBIT must be set.
  70. *
  71. * These defines represent bits in sb_features2.
  72. */
  73. #define XFS_SB_VERSION2_REALFBITS 0x00ffffff /* Mask: features */
  74. #define XFS_SB_VERSION2_RESERVED1BIT 0x00000001
  75. #define XFS_SB_VERSION2_LAZYSBCOUNTBIT 0x00000002 /* Superblk counters */
  76. #define XFS_SB_VERSION2_RESERVED4BIT 0x00000004
  77. #define XFS_SB_VERSION2_ATTR2BIT 0x00000008 /* Inline attr rework */
  78. #define XFS_SB_VERSION2_PARENTBIT 0x00000010 /* parent pointers */
  79. #define XFS_SB_VERSION2_OKREALFBITS \
  80. (XFS_SB_VERSION2_LAZYSBCOUNTBIT | \
  81. XFS_SB_VERSION2_ATTR2BIT)
  82. #define XFS_SB_VERSION2_OKSASHFBITS \
  83. (0)
  84. #define XFS_SB_VERSION2_OKREALBITS \
  85. (XFS_SB_VERSION2_OKREALFBITS | \
  86. XFS_SB_VERSION2_OKSASHFBITS )
  87. /*
  88. * Superblock - in core version. Must match the ondisk version below.
  89. * Must be padded to 64 bit alignment.
  90. */
  91. typedef struct xfs_sb {
  92. __uint32_t sb_magicnum; /* magic number == XFS_SB_MAGIC */
  93. __uint32_t sb_blocksize; /* logical block size, bytes */
  94. xfs_drfsbno_t sb_dblocks; /* number of data blocks */
  95. xfs_drfsbno_t sb_rblocks; /* number of realtime blocks */
  96. xfs_drtbno_t sb_rextents; /* number of realtime extents */
  97. uuid_t sb_uuid; /* file system unique id */
  98. xfs_dfsbno_t sb_logstart; /* starting block of log if internal */
  99. xfs_ino_t sb_rootino; /* root inode number */
  100. xfs_ino_t sb_rbmino; /* bitmap inode for realtime extents */
  101. xfs_ino_t sb_rsumino; /* summary inode for rt bitmap */
  102. xfs_agblock_t sb_rextsize; /* realtime extent size, blocks */
  103. xfs_agblock_t sb_agblocks; /* size of an allocation group */
  104. xfs_agnumber_t sb_agcount; /* number of allocation groups */
  105. xfs_extlen_t sb_rbmblocks; /* number of rt bitmap blocks */
  106. xfs_extlen_t sb_logblocks; /* number of log blocks */
  107. __uint16_t sb_versionnum; /* header version == XFS_SB_VERSION */
  108. __uint16_t sb_sectsize; /* volume sector size, bytes */
  109. __uint16_t sb_inodesize; /* inode size, bytes */
  110. __uint16_t sb_inopblock; /* inodes per block */
  111. char sb_fname[12]; /* file system name */
  112. __uint8_t sb_blocklog; /* log2 of sb_blocksize */
  113. __uint8_t sb_sectlog; /* log2 of sb_sectsize */
  114. __uint8_t sb_inodelog; /* log2 of sb_inodesize */
  115. __uint8_t sb_inopblog; /* log2 of sb_inopblock */
  116. __uint8_t sb_agblklog; /* log2 of sb_agblocks (rounded up) */
  117. __uint8_t sb_rextslog; /* log2 of sb_rextents */
  118. __uint8_t sb_inprogress; /* mkfs is in progress, don't mount */
  119. __uint8_t sb_imax_pct; /* max % of fs for inode space */
  120. /* statistics */
  121. /*
  122. * These fields must remain contiguous. If you really
  123. * want to change their layout, make sure you fix the
  124. * code in xfs_trans_apply_sb_deltas().
  125. */
  126. __uint64_t sb_icount; /* allocated inodes */
  127. __uint64_t sb_ifree; /* free inodes */
  128. __uint64_t sb_fdblocks; /* free data blocks */
  129. __uint64_t sb_frextents; /* free realtime extents */
  130. /*
  131. * End contiguous fields.
  132. */
  133. xfs_ino_t sb_uquotino; /* user quota inode */
  134. xfs_ino_t sb_gquotino; /* group quota inode */
  135. __uint16_t sb_qflags; /* quota flags */
  136. __uint8_t sb_flags; /* misc. flags */
  137. __uint8_t sb_shared_vn; /* shared version number */
  138. xfs_extlen_t sb_inoalignmt; /* inode chunk alignment, fsblocks */
  139. __uint32_t sb_unit; /* stripe or raid unit */
  140. __uint32_t sb_width; /* stripe or raid width */
  141. __uint8_t sb_dirblklog; /* log2 of dir block size (fsbs) */
  142. __uint8_t sb_logsectlog; /* log2 of the log sector size */
  143. __uint16_t sb_logsectsize; /* sector size for the log, bytes */
  144. __uint32_t sb_logsunit; /* stripe unit size for the log */
  145. __uint32_t sb_features2; /* additional feature bits */
  146. /*
  147. * bad features2 field as a result of failing to pad the sb
  148. * structure to 64 bits. Some machines will be using this field
  149. * for features2 bits. Easiest just to mark it bad and not use
  150. * it for anything else.
  151. */
  152. __uint32_t sb_bad_features2;
  153. /* must be padded to 64 bit alignment */
  154. } xfs_sb_t;
  155. /*
  156. * Superblock - on disk version. Must match the in core version above.
  157. * Must be padded to 64 bit alignment.
  158. */
  159. typedef struct xfs_dsb {
  160. __be32 sb_magicnum; /* magic number == XFS_SB_MAGIC */
  161. __be32 sb_blocksize; /* logical block size, bytes */
  162. __be64 sb_dblocks; /* number of data blocks */
  163. __be64 sb_rblocks; /* number of realtime blocks */
  164. __be64 sb_rextents; /* number of realtime extents */
  165. uuid_t sb_uuid; /* file system unique id */
  166. __be64 sb_logstart; /* starting block of log if internal */
  167. __be64 sb_rootino; /* root inode number */
  168. __be64 sb_rbmino; /* bitmap inode for realtime extents */
  169. __be64 sb_rsumino; /* summary inode for rt bitmap */
  170. __be32 sb_rextsize; /* realtime extent size, blocks */
  171. __be32 sb_agblocks; /* size of an allocation group */
  172. __be32 sb_agcount; /* number of allocation groups */
  173. __be32 sb_rbmblocks; /* number of rt bitmap blocks */
  174. __be32 sb_logblocks; /* number of log blocks */
  175. __be16 sb_versionnum; /* header version == XFS_SB_VERSION */
  176. __be16 sb_sectsize; /* volume sector size, bytes */
  177. __be16 sb_inodesize; /* inode size, bytes */
  178. __be16 sb_inopblock; /* inodes per block */
  179. char sb_fname[12]; /* file system name */
  180. __u8 sb_blocklog; /* log2 of sb_blocksize */
  181. __u8 sb_sectlog; /* log2 of sb_sectsize */
  182. __u8 sb_inodelog; /* log2 of sb_inodesize */
  183. __u8 sb_inopblog; /* log2 of sb_inopblock */
  184. __u8 sb_agblklog; /* log2 of sb_agblocks (rounded up) */
  185. __u8 sb_rextslog; /* log2 of sb_rextents */
  186. __u8 sb_inprogress; /* mkfs is in progress, don't mount */
  187. __u8 sb_imax_pct; /* max % of fs for inode space */
  188. /* statistics */
  189. /*
  190. * These fields must remain contiguous. If you really
  191. * want to change their layout, make sure you fix the
  192. * code in xfs_trans_apply_sb_deltas().
  193. */
  194. __be64 sb_icount; /* allocated inodes */
  195. __be64 sb_ifree; /* free inodes */
  196. __be64 sb_fdblocks; /* free data blocks */
  197. __be64 sb_frextents; /* free realtime extents */
  198. /*
  199. * End contiguous fields.
  200. */
  201. __be64 sb_uquotino; /* user quota inode */
  202. __be64 sb_gquotino; /* group quota inode */
  203. __be16 sb_qflags; /* quota flags */
  204. __u8 sb_flags; /* misc. flags */
  205. __u8 sb_shared_vn; /* shared version number */
  206. __be32 sb_inoalignmt; /* inode chunk alignment, fsblocks */
  207. __be32 sb_unit; /* stripe or raid unit */
  208. __be32 sb_width; /* stripe or raid width */
  209. __u8 sb_dirblklog; /* log2 of dir block size (fsbs) */
  210. __u8 sb_logsectlog; /* log2 of the log sector size */
  211. __be16 sb_logsectsize; /* sector size for the log, bytes */
  212. __be32 sb_logsunit; /* stripe unit size for the log */
  213. __be32 sb_features2; /* additional feature bits */
  214. /*
  215. * bad features2 field as a result of failing to pad the sb
  216. * structure to 64 bits. Some machines will be using this field
  217. * for features2 bits. Easiest just to mark it bad and not use
  218. * it for anything else.
  219. */
  220. __be32 sb_bad_features2;
  221. /* must be padded to 64 bit alignment */
  222. } xfs_dsb_t;
  223. /*
  224. * Sequence number values for the fields.
  225. */
  226. typedef enum {
  227. XFS_SBS_MAGICNUM, XFS_SBS_BLOCKSIZE, XFS_SBS_DBLOCKS, XFS_SBS_RBLOCKS,
  228. XFS_SBS_REXTENTS, XFS_SBS_UUID, XFS_SBS_LOGSTART, XFS_SBS_ROOTINO,
  229. XFS_SBS_RBMINO, XFS_SBS_RSUMINO, XFS_SBS_REXTSIZE, XFS_SBS_AGBLOCKS,
  230. XFS_SBS_AGCOUNT, XFS_SBS_RBMBLOCKS, XFS_SBS_LOGBLOCKS,
  231. XFS_SBS_VERSIONNUM, XFS_SBS_SECTSIZE, XFS_SBS_INODESIZE,
  232. XFS_SBS_INOPBLOCK, XFS_SBS_FNAME, XFS_SBS_BLOCKLOG,
  233. XFS_SBS_SECTLOG, XFS_SBS_INODELOG, XFS_SBS_INOPBLOG, XFS_SBS_AGBLKLOG,
  234. XFS_SBS_REXTSLOG, XFS_SBS_INPROGRESS, XFS_SBS_IMAX_PCT, XFS_SBS_ICOUNT,
  235. XFS_SBS_IFREE, XFS_SBS_FDBLOCKS, XFS_SBS_FREXTENTS, XFS_SBS_UQUOTINO,
  236. XFS_SBS_GQUOTINO, XFS_SBS_QFLAGS, XFS_SBS_FLAGS, XFS_SBS_SHARED_VN,
  237. XFS_SBS_INOALIGNMT, XFS_SBS_UNIT, XFS_SBS_WIDTH, XFS_SBS_DIRBLKLOG,
  238. XFS_SBS_LOGSECTLOG, XFS_SBS_LOGSECTSIZE, XFS_SBS_LOGSUNIT,
  239. XFS_SBS_FEATURES2, XFS_SBS_BAD_FEATURES2,
  240. XFS_SBS_FIELDCOUNT
  241. } xfs_sb_field_t;
  242. /*
  243. * Mask values, defined based on the xfs_sb_field_t values.
  244. * Only define the ones we're using.
  245. */
  246. #define XFS_SB_MVAL(x) (1LL << XFS_SBS_ ## x)
  247. #define XFS_SB_UUID XFS_SB_MVAL(UUID)
  248. #define XFS_SB_FNAME XFS_SB_MVAL(FNAME)
  249. #define XFS_SB_ROOTINO XFS_SB_MVAL(ROOTINO)
  250. #define XFS_SB_RBMINO XFS_SB_MVAL(RBMINO)
  251. #define XFS_SB_RSUMINO XFS_SB_MVAL(RSUMINO)
  252. #define XFS_SB_VERSIONNUM XFS_SB_MVAL(VERSIONNUM)
  253. #define XFS_SB_UQUOTINO XFS_SB_MVAL(UQUOTINO)
  254. #define XFS_SB_GQUOTINO XFS_SB_MVAL(GQUOTINO)
  255. #define XFS_SB_QFLAGS XFS_SB_MVAL(QFLAGS)
  256. #define XFS_SB_SHARED_VN XFS_SB_MVAL(SHARED_VN)
  257. #define XFS_SB_UNIT XFS_SB_MVAL(UNIT)
  258. #define XFS_SB_WIDTH XFS_SB_MVAL(WIDTH)
  259. #define XFS_SB_ICOUNT XFS_SB_MVAL(ICOUNT)
  260. #define XFS_SB_IFREE XFS_SB_MVAL(IFREE)
  261. #define XFS_SB_FDBLOCKS XFS_SB_MVAL(FDBLOCKS)
  262. #define XFS_SB_FEATURES2 XFS_SB_MVAL(FEATURES2)
  263. #define XFS_SB_BAD_FEATURES2 XFS_SB_MVAL(BAD_FEATURES2)
  264. #define XFS_SB_NUM_BITS ((int)XFS_SBS_FIELDCOUNT)
  265. #define XFS_SB_ALL_BITS ((1LL << XFS_SB_NUM_BITS) - 1)
  266. #define XFS_SB_MOD_BITS \
  267. (XFS_SB_UUID | XFS_SB_ROOTINO | XFS_SB_RBMINO | XFS_SB_RSUMINO | \
  268. XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO | XFS_SB_GQUOTINO | \
  269. XFS_SB_QFLAGS | XFS_SB_SHARED_VN | XFS_SB_UNIT | XFS_SB_WIDTH | \
  270. XFS_SB_ICOUNT | XFS_SB_IFREE | XFS_SB_FDBLOCKS | XFS_SB_FEATURES2 | \
  271. XFS_SB_BAD_FEATURES2)
  272. /*
  273. * Misc. Flags - warning - these will be cleared by xfs_repair unless
  274. * a feature bit is set when the flag is used.
  275. */
  276. #define XFS_SBF_NOFLAGS 0x00 /* no flags set */
  277. #define XFS_SBF_READONLY 0x01 /* only read-only mounts allowed */
  278. /*
  279. * define max. shared version we can interoperate with
  280. */
  281. #define XFS_SB_MAX_SHARED_VN 0
  282. #define XFS_SB_VERSION_NUM(sbp) ((sbp)->sb_versionnum & XFS_SB_VERSION_NUMBITS)
  283. static inline int xfs_sb_good_version(xfs_sb_t *sbp)
  284. {
  285. /* We always support version 1-3 */
  286. if (sbp->sb_versionnum >= XFS_SB_VERSION_1 &&
  287. sbp->sb_versionnum <= XFS_SB_VERSION_3)
  288. return 1;
  289. /* We support version 4 if all feature bits are supported */
  290. if (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) {
  291. if ((sbp->sb_versionnum & ~XFS_SB_VERSION_OKREALBITS) ||
  292. ((sbp->sb_versionnum & XFS_SB_VERSION_MOREBITSBIT) &&
  293. (sbp->sb_features2 & ~XFS_SB_VERSION2_OKREALBITS)))
  294. return 0;
  295. #ifdef __KERNEL__
  296. if (sbp->sb_shared_vn > XFS_SB_MAX_SHARED_VN)
  297. return 0;
  298. #else
  299. if ((sbp->sb_versionnum & XFS_SB_VERSION_SHAREDBIT) &&
  300. sbp->sb_shared_vn > XFS_SB_MAX_SHARED_VN)
  301. return 0;
  302. #endif
  303. return 1;
  304. }
  305. return 0;
  306. }
  307. /*
  308. * Detect a mismatched features2 field. Older kernels read/wrote
  309. * this into the wrong slot, so to be safe we keep them in sync.
  310. */
  311. static inline int xfs_sb_has_mismatched_features2(xfs_sb_t *sbp)
  312. {
  313. return (sbp->sb_bad_features2 != sbp->sb_features2);
  314. }
  315. static inline unsigned xfs_sb_version_tonew(unsigned v)
  316. {
  317. if (v == XFS_SB_VERSION_1)
  318. return XFS_SB_VERSION_4;
  319. if (v == XFS_SB_VERSION_2)
  320. return XFS_SB_VERSION_4 | XFS_SB_VERSION_ATTRBIT;
  321. return XFS_SB_VERSION_4 | XFS_SB_VERSION_ATTRBIT |
  322. XFS_SB_VERSION_NLINKBIT;
  323. }
  324. static inline unsigned xfs_sb_version_toold(unsigned v)
  325. {
  326. if (v & (XFS_SB_VERSION_QUOTABIT | XFS_SB_VERSION_ALIGNBIT))
  327. return 0;
  328. if (v & XFS_SB_VERSION_NLINKBIT)
  329. return XFS_SB_VERSION_3;
  330. if (v & XFS_SB_VERSION_ATTRBIT)
  331. return XFS_SB_VERSION_2;
  332. return XFS_SB_VERSION_1;
  333. }
  334. static inline int xfs_sb_version_hasattr(xfs_sb_t *sbp)
  335. {
  336. return sbp->sb_versionnum == XFS_SB_VERSION_2 ||
  337. sbp->sb_versionnum == XFS_SB_VERSION_3 ||
  338. (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  339. (sbp->sb_versionnum & XFS_SB_VERSION_ATTRBIT));
  340. }
  341. static inline void xfs_sb_version_addattr(xfs_sb_t *sbp)
  342. {
  343. if (sbp->sb_versionnum == XFS_SB_VERSION_1)
  344. sbp->sb_versionnum = XFS_SB_VERSION_2;
  345. else if (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4)
  346. sbp->sb_versionnum |= XFS_SB_VERSION_ATTRBIT;
  347. else
  348. sbp->sb_versionnum = XFS_SB_VERSION_4 | XFS_SB_VERSION_ATTRBIT;
  349. }
  350. static inline int xfs_sb_version_hasnlink(xfs_sb_t *sbp)
  351. {
  352. return sbp->sb_versionnum == XFS_SB_VERSION_3 ||
  353. (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  354. (sbp->sb_versionnum & XFS_SB_VERSION_NLINKBIT));
  355. }
  356. static inline void xfs_sb_version_addnlink(xfs_sb_t *sbp)
  357. {
  358. if (sbp->sb_versionnum <= XFS_SB_VERSION_2)
  359. sbp->sb_versionnum = XFS_SB_VERSION_3;
  360. else
  361. sbp->sb_versionnum |= XFS_SB_VERSION_NLINKBIT;
  362. }
  363. static inline int xfs_sb_version_hasquota(xfs_sb_t *sbp)
  364. {
  365. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  366. (sbp->sb_versionnum & XFS_SB_VERSION_QUOTABIT);
  367. }
  368. static inline void xfs_sb_version_addquota(xfs_sb_t *sbp)
  369. {
  370. if (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4)
  371. sbp->sb_versionnum |= XFS_SB_VERSION_QUOTABIT;
  372. else
  373. sbp->sb_versionnum = xfs_sb_version_tonew(sbp->sb_versionnum) |
  374. XFS_SB_VERSION_QUOTABIT;
  375. }
  376. static inline int xfs_sb_version_hasalign(xfs_sb_t *sbp)
  377. {
  378. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  379. (sbp->sb_versionnum & XFS_SB_VERSION_ALIGNBIT);
  380. }
  381. static inline int xfs_sb_version_hasdalign(xfs_sb_t *sbp)
  382. {
  383. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  384. (sbp->sb_versionnum & XFS_SB_VERSION_DALIGNBIT);
  385. }
  386. static inline int xfs_sb_version_hasshared(xfs_sb_t *sbp)
  387. {
  388. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  389. (sbp->sb_versionnum & XFS_SB_VERSION_SHAREDBIT);
  390. }
  391. static inline int xfs_sb_version_hasdirv2(xfs_sb_t *sbp)
  392. {
  393. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  394. (sbp->sb_versionnum & XFS_SB_VERSION_DIRV2BIT);
  395. }
  396. static inline int xfs_sb_version_haslogv2(xfs_sb_t *sbp)
  397. {
  398. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  399. (sbp->sb_versionnum & XFS_SB_VERSION_LOGV2BIT);
  400. }
  401. static inline int xfs_sb_version_hasextflgbit(xfs_sb_t *sbp)
  402. {
  403. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  404. (sbp->sb_versionnum & XFS_SB_VERSION_EXTFLGBIT);
  405. }
  406. static inline int xfs_sb_version_hassector(xfs_sb_t *sbp)
  407. {
  408. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  409. (sbp->sb_versionnum & XFS_SB_VERSION_SECTORBIT);
  410. }
  411. static inline int xfs_sb_version_hasasciici(xfs_sb_t *sbp)
  412. {
  413. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  414. (sbp->sb_versionnum & XFS_SB_VERSION_BORGBIT);
  415. }
  416. static inline int xfs_sb_version_hasmorebits(xfs_sb_t *sbp)
  417. {
  418. return XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 &&
  419. (sbp->sb_versionnum & XFS_SB_VERSION_MOREBITSBIT);
  420. }
  421. /*
  422. * sb_features2 bit version macros.
  423. *
  424. * For example, for a bit defined as XFS_SB_VERSION2_FUNBIT, has a macro:
  425. *
  426. * SB_VERSION_HASFUNBIT(xfs_sb_t *sbp)
  427. * ((xfs_sb_version_hasmorebits(sbp) &&
  428. * ((sbp)->sb_features2 & XFS_SB_VERSION2_FUNBIT)
  429. */
  430. static inline int xfs_sb_version_haslazysbcount(xfs_sb_t *sbp)
  431. {
  432. return xfs_sb_version_hasmorebits(sbp) &&
  433. (sbp->sb_features2 & XFS_SB_VERSION2_LAZYSBCOUNTBIT);
  434. }
  435. static inline int xfs_sb_version_hasattr2(xfs_sb_t *sbp)
  436. {
  437. return xfs_sb_version_hasmorebits(sbp) &&
  438. (sbp->sb_features2 & XFS_SB_VERSION2_ATTR2BIT);
  439. }
  440. static inline void xfs_sb_version_addattr2(xfs_sb_t *sbp)
  441. {
  442. sbp->sb_versionnum |= XFS_SB_VERSION_MOREBITSBIT;
  443. sbp->sb_features2 |= XFS_SB_VERSION2_ATTR2BIT;
  444. }
  445. static inline void xfs_sb_version_removeattr2(xfs_sb_t *sbp)
  446. {
  447. sbp->sb_features2 &= ~XFS_SB_VERSION2_ATTR2BIT;
  448. if (!sbp->sb_features2)
  449. sbp->sb_versionnum &= ~XFS_SB_VERSION_MOREBITSBIT;
  450. }
  451. /*
  452. * end of superblock version macros
  453. */
  454. #define XFS_SB_DADDR ((xfs_daddr_t)0) /* daddr in filesystem/ag */
  455. #define XFS_SB_BLOCK(mp) XFS_HDR_BLOCK(mp, XFS_SB_DADDR)
  456. #define XFS_BUF_TO_SBP(bp) ((xfs_dsb_t *)XFS_BUF_PTR(bp))
  457. #define XFS_HDR_BLOCK(mp,d) ((xfs_agblock_t)XFS_BB_TO_FSBT(mp,d))
  458. #define XFS_DADDR_TO_FSB(mp,d) XFS_AGB_TO_FSB(mp, \
  459. xfs_daddr_to_agno(mp,d), xfs_daddr_to_agbno(mp,d))
  460. #define XFS_FSB_TO_DADDR(mp,fsbno) XFS_AGB_TO_DADDR(mp, \
  461. XFS_FSB_TO_AGNO(mp,fsbno), XFS_FSB_TO_AGBNO(mp,fsbno))
  462. /*
  463. * File system sector to basic block conversions.
  464. */
  465. #define XFS_FSS_TO_BB(mp,sec) ((sec) << (mp)->m_sectbb_log)
  466. /*
  467. * File system block to basic block conversions.
  468. */
  469. #define XFS_FSB_TO_BB(mp,fsbno) ((fsbno) << (mp)->m_blkbb_log)
  470. #define XFS_BB_TO_FSB(mp,bb) \
  471. (((bb) + (XFS_FSB_TO_BB(mp,1) - 1)) >> (mp)->m_blkbb_log)
  472. #define XFS_BB_TO_FSBT(mp,bb) ((bb) >> (mp)->m_blkbb_log)
  473. #define XFS_BB_FSB_OFFSET(mp,bb) ((bb) & ((mp)->m_bsize - 1))
  474. /*
  475. * File system block to byte conversions.
  476. */
  477. #define XFS_FSB_TO_B(mp,fsbno) ((xfs_fsize_t)(fsbno) << (mp)->m_sb.sb_blocklog)
  478. #define XFS_B_TO_FSB(mp,b) \
  479. ((((__uint64_t)(b)) + (mp)->m_blockmask) >> (mp)->m_sb.sb_blocklog)
  480. #define XFS_B_TO_FSBT(mp,b) (((__uint64_t)(b)) >> (mp)->m_sb.sb_blocklog)
  481. #define XFS_B_FSB_OFFSET(mp,b) ((b) & (mp)->m_blockmask)
  482. #endif /* __XFS_SB_H__ */