xfs_sb.h 19 KB

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