xfs_sb.h 19 KB

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