blob: b1a83f8ec04422b7aa6a4bc447754ca3af2dd6d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18#ifndef __XFS_SB_H__
19#define __XFS_SB_H__
20
21/*
22 * Super block
23 * Fits into a sector-sized buffer at address 0 of each allocation group.
24 * Only the first of these is ever updated except during growfs.
25 */
26
27struct xfs_buf;
28struct xfs_mount;
29
30#define XFS_SB_MAGIC 0x58465342 /* 'XFSB' */
31#define XFS_SB_VERSION_1 1 /* 5.3, 6.0.1, 6.1 */
32#define XFS_SB_VERSION_2 2 /* 6.2 - attributes */
33#define XFS_SB_VERSION_3 3 /* 6.2 - new inode version */
34#define XFS_SB_VERSION_4 4 /* 6.2+ - bitmask version */
35#define XFS_SB_VERSION_NUMBITS 0x000f
36#define XFS_SB_VERSION_ALLFBITS 0xfff0
37#define XFS_SB_VERSION_SASHFBITS 0xf000
38#define XFS_SB_VERSION_REALFBITS 0x0ff0
39#define XFS_SB_VERSION_ATTRBIT 0x0010
40#define XFS_SB_VERSION_NLINKBIT 0x0020
41#define XFS_SB_VERSION_QUOTABIT 0x0040
42#define XFS_SB_VERSION_ALIGNBIT 0x0080
43#define XFS_SB_VERSION_DALIGNBIT 0x0100
44#define XFS_SB_VERSION_SHAREDBIT 0x0200
45#define XFS_SB_VERSION_LOGV2BIT 0x0400
46#define XFS_SB_VERSION_SECTORBIT 0x0800
47#define XFS_SB_VERSION_EXTFLGBIT 0x1000
48#define XFS_SB_VERSION_DIRV2BIT 0x2000
49#define XFS_SB_VERSION_MOREBITSBIT 0x8000
50#define XFS_SB_VERSION_OKSASHFBITS \
51 (XFS_SB_VERSION_EXTFLGBIT | \
52 XFS_SB_VERSION_DIRV2BIT)
53#define XFS_SB_VERSION_OKREALFBITS \
54 (XFS_SB_VERSION_ATTRBIT | \
55 XFS_SB_VERSION_NLINKBIT | \
56 XFS_SB_VERSION_QUOTABIT | \
57 XFS_SB_VERSION_ALIGNBIT | \
58 XFS_SB_VERSION_DALIGNBIT | \
59 XFS_SB_VERSION_SHAREDBIT | \
60 XFS_SB_VERSION_LOGV2BIT | \
Nathan Scottd8cc8902005-11-02 10:34:53 +110061 XFS_SB_VERSION_SECTORBIT | \
62 XFS_SB_VERSION_MOREBITSBIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define XFS_SB_VERSION_OKREALBITS \
64 (XFS_SB_VERSION_NUMBITS | \
65 XFS_SB_VERSION_OKREALFBITS | \
66 XFS_SB_VERSION_OKSASHFBITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
69 * There are two words to hold XFS "feature" bits: the original
70 * word, sb_versionnum, and sb_features2. Whenever a bit is set in
71 * sb_features2, the feature bit XFS_SB_VERSION_MOREBITSBIT must be set.
72 *
73 * These defines represent bits in sb_features2.
74 */
75#define XFS_SB_VERSION2_REALFBITS 0x00ffffff /* Mask: features */
76#define XFS_SB_VERSION2_RESERVED1BIT 0x00000001
David Chinner92821e22007-05-24 15:26:31 +100077#define XFS_SB_VERSION2_LAZYSBCOUNTBIT 0x00000002 /* Superblk counters */
Nathan Scottd8cc8902005-11-02 10:34:53 +110078#define XFS_SB_VERSION2_RESERVED4BIT 0x00000004
79#define XFS_SB_VERSION2_ATTR2BIT 0x00000008 /* Inline attr rework */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81#define XFS_SB_VERSION2_OKREALFBITS \
David Chinner92821e22007-05-24 15:26:31 +100082 (XFS_SB_VERSION2_LAZYSBCOUNTBIT | \
83 XFS_SB_VERSION2_ATTR2BIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define XFS_SB_VERSION2_OKSASHFBITS \
85 (0)
86#define XFS_SB_VERSION2_OKREALBITS \
87 (XFS_SB_VERSION2_OKREALFBITS | \
88 XFS_SB_VERSION2_OKSASHFBITS )
89
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +100090/*
91 * Superblock - in core version. Must match the ondisk version below.
David Chinneree1c0902008-03-06 13:45:50 +110092 * Must be padded to 64 bit alignment.
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +100093 */
94typedef struct xfs_sb {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 __uint32_t sb_magicnum; /* magic number == XFS_SB_MAGIC */
96 __uint32_t sb_blocksize; /* logical block size, bytes */
97 xfs_drfsbno_t sb_dblocks; /* number of data blocks */
98 xfs_drfsbno_t sb_rblocks; /* number of realtime blocks */
99 xfs_drtbno_t sb_rextents; /* number of realtime extents */
100 uuid_t sb_uuid; /* file system unique id */
101 xfs_dfsbno_t sb_logstart; /* starting block of log if internal */
102 xfs_ino_t sb_rootino; /* root inode number */
103 xfs_ino_t sb_rbmino; /* bitmap inode for realtime extents */
104 xfs_ino_t sb_rsumino; /* summary inode for rt bitmap */
105 xfs_agblock_t sb_rextsize; /* realtime extent size, blocks */
106 xfs_agblock_t sb_agblocks; /* size of an allocation group */
107 xfs_agnumber_t sb_agcount; /* number of allocation groups */
108 xfs_extlen_t sb_rbmblocks; /* number of rt bitmap blocks */
109 xfs_extlen_t sb_logblocks; /* number of log blocks */
110 __uint16_t sb_versionnum; /* header version == XFS_SB_VERSION */
111 __uint16_t sb_sectsize; /* volume sector size, bytes */
112 __uint16_t sb_inodesize; /* inode size, bytes */
113 __uint16_t sb_inopblock; /* inodes per block */
114 char sb_fname[12]; /* file system name */
115 __uint8_t sb_blocklog; /* log2 of sb_blocksize */
116 __uint8_t sb_sectlog; /* log2 of sb_sectsize */
117 __uint8_t sb_inodelog; /* log2 of sb_inodesize */
118 __uint8_t sb_inopblog; /* log2 of sb_inopblock */
119 __uint8_t sb_agblklog; /* log2 of sb_agblocks (rounded up) */
120 __uint8_t sb_rextslog; /* log2 of sb_rextents */
121 __uint8_t sb_inprogress; /* mkfs is in progress, don't mount */
122 __uint8_t sb_imax_pct; /* max % of fs for inode space */
123 /* statistics */
124 /*
125 * These fields must remain contiguous. If you really
126 * want to change their layout, make sure you fix the
127 * code in xfs_trans_apply_sb_deltas().
128 */
129 __uint64_t sb_icount; /* allocated inodes */
130 __uint64_t sb_ifree; /* free inodes */
131 __uint64_t sb_fdblocks; /* free data blocks */
132 __uint64_t sb_frextents; /* free realtime extents */
133 /*
134 * End contiguous fields.
135 */
136 xfs_ino_t sb_uquotino; /* user quota inode */
137 xfs_ino_t sb_gquotino; /* group quota inode */
138 __uint16_t sb_qflags; /* quota flags */
139 __uint8_t sb_flags; /* misc. flags */
140 __uint8_t sb_shared_vn; /* shared version number */
141 xfs_extlen_t sb_inoalignmt; /* inode chunk alignment, fsblocks */
142 __uint32_t sb_unit; /* stripe or raid unit */
143 __uint32_t sb_width; /* stripe or raid width */
144 __uint8_t sb_dirblklog; /* log2 of dir block size (fsbs) */
145 __uint8_t sb_logsectlog; /* log2 of the log sector size */
146 __uint16_t sb_logsectsize; /* sector size for the log, bytes */
147 __uint32_t sb_logsunit; /* stripe unit size for the log */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100148 __uint32_t sb_features2; /* additional feature bits */
David Chinneree1c0902008-03-06 13:45:50 +1100149
150 /*
151 * bad features2 field as a result of failing to pad the sb
152 * structure to 64 bits. Some machines will be using this field
153 * for features2 bits. Easiest just to mark it bad and not use
154 * it for anything else.
155 */
156 __uint32_t sb_bad_features2;
157
158 /* must be padded to 64 bit alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159} xfs_sb_t;
160
161/*
David Chinneree1c0902008-03-06 13:45:50 +1100162 * Superblock - on disk version. Must match the in core version above.
163 * Must be padded to 64 bit alignment.
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000164 */
165typedef struct xfs_dsb {
166 __be32 sb_magicnum; /* magic number == XFS_SB_MAGIC */
167 __be32 sb_blocksize; /* logical block size, bytes */
168 __be64 sb_dblocks; /* number of data blocks */
169 __be64 sb_rblocks; /* number of realtime blocks */
170 __be64 sb_rextents; /* number of realtime extents */
171 uuid_t sb_uuid; /* file system unique id */
172 __be64 sb_logstart; /* starting block of log if internal */
173 __be64 sb_rootino; /* root inode number */
174 __be64 sb_rbmino; /* bitmap inode for realtime extents */
175 __be64 sb_rsumino; /* summary inode for rt bitmap */
176 __be32 sb_rextsize; /* realtime extent size, blocks */
177 __be32 sb_agblocks; /* size of an allocation group */
178 __be32 sb_agcount; /* number of allocation groups */
179 __be32 sb_rbmblocks; /* number of rt bitmap blocks */
180 __be32 sb_logblocks; /* number of log blocks */
181 __be16 sb_versionnum; /* header version == XFS_SB_VERSION */
182 __be16 sb_sectsize; /* volume sector size, bytes */
183 __be16 sb_inodesize; /* inode size, bytes */
184 __be16 sb_inopblock; /* inodes per block */
185 char sb_fname[12]; /* file system name */
186 __u8 sb_blocklog; /* log2 of sb_blocksize */
187 __u8 sb_sectlog; /* log2 of sb_sectsize */
188 __u8 sb_inodelog; /* log2 of sb_inodesize */
189 __u8 sb_inopblog; /* log2 of sb_inopblock */
190 __u8 sb_agblklog; /* log2 of sb_agblocks (rounded up) */
191 __u8 sb_rextslog; /* log2 of sb_rextents */
192 __u8 sb_inprogress; /* mkfs is in progress, don't mount */
193 __u8 sb_imax_pct; /* max % of fs for inode space */
194 /* statistics */
195 /*
196 * These fields must remain contiguous. If you really
197 * want to change their layout, make sure you fix the
198 * code in xfs_trans_apply_sb_deltas().
199 */
200 __be64 sb_icount; /* allocated inodes */
201 __be64 sb_ifree; /* free inodes */
202 __be64 sb_fdblocks; /* free data blocks */
203 __be64 sb_frextents; /* free realtime extents */
204 /*
205 * End contiguous fields.
206 */
207 __be64 sb_uquotino; /* user quota inode */
208 __be64 sb_gquotino; /* group quota inode */
209 __be16 sb_qflags; /* quota flags */
210 __u8 sb_flags; /* misc. flags */
211 __u8 sb_shared_vn; /* shared version number */
212 __be32 sb_inoalignmt; /* inode chunk alignment, fsblocks */
213 __be32 sb_unit; /* stripe or raid unit */
214 __be32 sb_width; /* stripe or raid width */
215 __u8 sb_dirblklog; /* log2 of dir block size (fsbs) */
216 __u8 sb_logsectlog; /* log2 of the log sector size */
217 __be16 sb_logsectsize; /* sector size for the log, bytes */
218 __be32 sb_logsunit; /* stripe unit size for the log */
219 __be32 sb_features2; /* additional feature bits */
David Chinneree1c0902008-03-06 13:45:50 +1100220 /*
221 * bad features2 field as a result of failing to pad the sb
222 * structure to 64 bits. Some machines will be using this field
223 * for features2 bits. Easiest just to mark it bad and not use
224 * it for anything else.
225 */
226 __be32 sb_bad_features2;
227
228 /* must be padded to 64 bit alignment */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000229} xfs_dsb_t;
230
231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * Sequence number values for the fields.
233 */
234typedef enum {
235 XFS_SBS_MAGICNUM, XFS_SBS_BLOCKSIZE, XFS_SBS_DBLOCKS, XFS_SBS_RBLOCKS,
236 XFS_SBS_REXTENTS, XFS_SBS_UUID, XFS_SBS_LOGSTART, XFS_SBS_ROOTINO,
237 XFS_SBS_RBMINO, XFS_SBS_RSUMINO, XFS_SBS_REXTSIZE, XFS_SBS_AGBLOCKS,
238 XFS_SBS_AGCOUNT, XFS_SBS_RBMBLOCKS, XFS_SBS_LOGBLOCKS,
239 XFS_SBS_VERSIONNUM, XFS_SBS_SECTSIZE, XFS_SBS_INODESIZE,
240 XFS_SBS_INOPBLOCK, XFS_SBS_FNAME, XFS_SBS_BLOCKLOG,
241 XFS_SBS_SECTLOG, XFS_SBS_INODELOG, XFS_SBS_INOPBLOG, XFS_SBS_AGBLKLOG,
242 XFS_SBS_REXTSLOG, XFS_SBS_INPROGRESS, XFS_SBS_IMAX_PCT, XFS_SBS_ICOUNT,
243 XFS_SBS_IFREE, XFS_SBS_FDBLOCKS, XFS_SBS_FREXTENTS, XFS_SBS_UQUOTINO,
244 XFS_SBS_GQUOTINO, XFS_SBS_QFLAGS, XFS_SBS_FLAGS, XFS_SBS_SHARED_VN,
245 XFS_SBS_INOALIGNMT, XFS_SBS_UNIT, XFS_SBS_WIDTH, XFS_SBS_DIRBLKLOG,
246 XFS_SBS_LOGSECTLOG, XFS_SBS_LOGSECTSIZE, XFS_SBS_LOGSUNIT,
David Chinneree1c0902008-03-06 13:45:50 +1100247 XFS_SBS_FEATURES2, XFS_SBS_BAD_FEATURES2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 XFS_SBS_FIELDCOUNT
249} xfs_sb_field_t;
250
251/*
252 * Mask values, defined based on the xfs_sb_field_t values.
253 * Only define the ones we're using.
254 */
255#define XFS_SB_MVAL(x) (1LL << XFS_SBS_ ## x)
256#define XFS_SB_UUID XFS_SB_MVAL(UUID)
257#define XFS_SB_FNAME XFS_SB_MVAL(FNAME)
258#define XFS_SB_ROOTINO XFS_SB_MVAL(ROOTINO)
259#define XFS_SB_RBMINO XFS_SB_MVAL(RBMINO)
260#define XFS_SB_RSUMINO XFS_SB_MVAL(RSUMINO)
261#define XFS_SB_VERSIONNUM XFS_SB_MVAL(VERSIONNUM)
262#define XFS_SB_UQUOTINO XFS_SB_MVAL(UQUOTINO)
263#define XFS_SB_GQUOTINO XFS_SB_MVAL(GQUOTINO)
264#define XFS_SB_QFLAGS XFS_SB_MVAL(QFLAGS)
265#define XFS_SB_SHARED_VN XFS_SB_MVAL(SHARED_VN)
266#define XFS_SB_UNIT XFS_SB_MVAL(UNIT)
267#define XFS_SB_WIDTH XFS_SB_MVAL(WIDTH)
David Chinner92821e22007-05-24 15:26:31 +1000268#define XFS_SB_ICOUNT XFS_SB_MVAL(ICOUNT)
269#define XFS_SB_IFREE XFS_SB_MVAL(IFREE)
270#define XFS_SB_FDBLOCKS XFS_SB_MVAL(FDBLOCKS)
Nathan Scottd8cc8902005-11-02 10:34:53 +1100271#define XFS_SB_FEATURES2 XFS_SB_MVAL(FEATURES2)
David Chinneree1c0902008-03-06 13:45:50 +1100272#define XFS_SB_BAD_FEATURES2 XFS_SB_MVAL(BAD_FEATURES2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#define XFS_SB_NUM_BITS ((int)XFS_SBS_FIELDCOUNT)
274#define XFS_SB_ALL_BITS ((1LL << XFS_SB_NUM_BITS) - 1)
275#define XFS_SB_MOD_BITS \
276 (XFS_SB_UUID | XFS_SB_ROOTINO | XFS_SB_RBMINO | XFS_SB_RSUMINO | \
277 XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO | XFS_SB_GQUOTINO | \
Nathan Scottd8cc8902005-11-02 10:34:53 +1100278 XFS_SB_QFLAGS | XFS_SB_SHARED_VN | XFS_SB_UNIT | XFS_SB_WIDTH | \
David Chinneree1c0902008-03-06 13:45:50 +1100279 XFS_SB_ICOUNT | XFS_SB_IFREE | XFS_SB_FDBLOCKS | XFS_SB_FEATURES2 | \
280 XFS_SB_BAD_FEATURES2)
Nathan Scottd8cc8902005-11-02 10:34:53 +1100281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283/*
284 * Misc. Flags - warning - these will be cleared by xfs_repair unless
285 * a feature bit is set when the flag is used.
286 */
287#define XFS_SBF_NOFLAGS 0x00 /* no flags set */
288#define XFS_SBF_READONLY 0x01 /* only read-only mounts allowed */
289
290/*
291 * define max. shared version we can interoperate with
292 */
293#define XFS_SB_MAX_SHARED_VN 0
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#define XFS_SB_VERSION_NUM(sbp) ((sbp)->sb_versionnum & XFS_SB_VERSION_NUMBITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297#ifdef __KERNEL__
Nathan Scotta844f452005-11-02 14:38:42 +1100298static inline int xfs_sb_good_version(xfs_sb_t *sbp)
299{
300 return (((sbp->sb_versionnum >= XFS_SB_VERSION_1) && \
301 (sbp->sb_versionnum <= XFS_SB_VERSION_3)) || \
302 ((XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
303 !((sbp->sb_versionnum & ~XFS_SB_VERSION_OKREALBITS) || \
304 ((sbp->sb_versionnum & XFS_SB_VERSION_MOREBITSBIT) && \
305 (sbp->sb_features2 & ~XFS_SB_VERSION2_OKREALBITS))) && \
306 (sbp->sb_shared_vn <= XFS_SB_MAX_SHARED_VN)));
307}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#else
Nathan Scotta844f452005-11-02 14:38:42 +1100309static inline int xfs_sb_good_version(xfs_sb_t *sbp)
310{
311 return (((sbp->sb_versionnum >= XFS_SB_VERSION_1) && \
312 (sbp->sb_versionnum <= XFS_SB_VERSION_3)) || \
313 ((XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
314 !((sbp->sb_versionnum & ~XFS_SB_VERSION_OKREALBITS) || \
315 ((sbp->sb_versionnum & XFS_SB_VERSION_MOREBITSBIT) && \
316 (sbp->sb_features2 & ~XFS_SB_VERSION2_OKREALBITS))) && \
317 (!(sbp->sb_versionnum & XFS_SB_VERSION_SHAREDBIT) || \
318 (sbp->sb_shared_vn <= XFS_SB_MAX_SHARED_VN))));
319}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
David Chinneree1c0902008-03-06 13:45:50 +1100322/*
323 * Detect a bad features2 field
324 */
325static inline int xfs_sb_has_bad_features2(xfs_sb_t *sbp)
326{
327 return (sbp->sb_bad_features2 != 0);
328}
329
Nathan Scotta844f452005-11-02 14:38:42 +1100330static inline unsigned xfs_sb_version_tonew(unsigned v)
331{
332 return ((((v) == XFS_SB_VERSION_1) ? \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 0 : \
334 (((v) == XFS_SB_VERSION_2) ? \
335 XFS_SB_VERSION_ATTRBIT : \
336 (XFS_SB_VERSION_ATTRBIT | XFS_SB_VERSION_NLINKBIT))) | \
Nathan Scotta844f452005-11-02 14:38:42 +1100337 XFS_SB_VERSION_4);
338}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Nathan Scotta844f452005-11-02 14:38:42 +1100340static inline unsigned xfs_sb_version_toold(unsigned v)
341{
342 return (((v) & (XFS_SB_VERSION_QUOTABIT | XFS_SB_VERSION_ALIGNBIT)) ? \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 0 : \
344 (((v) & XFS_SB_VERSION_NLINKBIT) ? \
345 XFS_SB_VERSION_3 : \
346 (((v) & XFS_SB_VERSION_ATTRBIT) ? \
347 XFS_SB_VERSION_2 : \
Nathan Scotta844f452005-11-02 14:38:42 +1100348 XFS_SB_VERSION_1)));
349}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Nathan Scotta844f452005-11-02 14:38:42 +1100351static inline int xfs_sb_version_hasattr(xfs_sb_t *sbp)
352{
353 return ((sbp)->sb_versionnum == XFS_SB_VERSION_2) || \
354 ((sbp)->sb_versionnum == XFS_SB_VERSION_3) || \
355 ((XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
356 ((sbp)->sb_versionnum & XFS_SB_VERSION_ATTRBIT));
357}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Nathan Scotta844f452005-11-02 14:38:42 +1100359static inline void xfs_sb_version_addattr(xfs_sb_t *sbp)
360{
361 (sbp)->sb_versionnum = (((sbp)->sb_versionnum == XFS_SB_VERSION_1) ? \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 XFS_SB_VERSION_2 : \
363 ((XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) ? \
364 ((sbp)->sb_versionnum | XFS_SB_VERSION_ATTRBIT) : \
Nathan Scotta844f452005-11-02 14:38:42 +1100365 (XFS_SB_VERSION_4 | XFS_SB_VERSION_ATTRBIT)));
366}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Nathan Scotta844f452005-11-02 14:38:42 +1100368static inline int xfs_sb_version_hasnlink(xfs_sb_t *sbp)
369{
370 return ((sbp)->sb_versionnum == XFS_SB_VERSION_3) || \
371 ((XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
372 ((sbp)->sb_versionnum & XFS_SB_VERSION_NLINKBIT));
373}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Nathan Scotta844f452005-11-02 14:38:42 +1100375static inline void xfs_sb_version_addnlink(xfs_sb_t *sbp)
376{
377 (sbp)->sb_versionnum = ((sbp)->sb_versionnum <= XFS_SB_VERSION_2 ? \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 XFS_SB_VERSION_3 : \
Nathan Scotta844f452005-11-02 14:38:42 +1100379 ((sbp)->sb_versionnum | XFS_SB_VERSION_NLINKBIT));
380}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Nathan Scotta844f452005-11-02 14:38:42 +1100382static inline int xfs_sb_version_hasquota(xfs_sb_t *sbp)
383{
384 return (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
385 ((sbp)->sb_versionnum & XFS_SB_VERSION_QUOTABIT);
386}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Nathan Scotta844f452005-11-02 14:38:42 +1100388static inline void xfs_sb_version_addquota(xfs_sb_t *sbp)
389{
390 (sbp)->sb_versionnum = \
391 (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4 ? \
392 ((sbp)->sb_versionnum | XFS_SB_VERSION_QUOTABIT) : \
Eric Sandeen62118702008-03-06 13:44:28 +1100393 (xfs_sb_version_tonew((sbp)->sb_versionnum) | \
Nathan Scotta844f452005-11-02 14:38:42 +1100394 XFS_SB_VERSION_QUOTABIT));
395}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Nathan Scotta844f452005-11-02 14:38:42 +1100397static inline int xfs_sb_version_hasalign(xfs_sb_t *sbp)
398{
399 return (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
400 ((sbp)->sb_versionnum & XFS_SB_VERSION_ALIGNBIT);
401}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Nathan Scotta844f452005-11-02 14:38:42 +1100403static inline int xfs_sb_version_hasdalign(xfs_sb_t *sbp)
404{
405 return (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
406 ((sbp)->sb_versionnum & XFS_SB_VERSION_DALIGNBIT);
407}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Nathan Scotta844f452005-11-02 14:38:42 +1100409static inline int xfs_sb_version_hasshared(xfs_sb_t *sbp)
410{
411 return (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
412 ((sbp)->sb_versionnum & XFS_SB_VERSION_SHAREDBIT);
413}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Nathan Scotta844f452005-11-02 14:38:42 +1100415static inline int xfs_sb_version_hasdirv2(xfs_sb_t *sbp)
416{
417 return (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
418 ((sbp)->sb_versionnum & XFS_SB_VERSION_DIRV2BIT);
419}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Nathan Scotta844f452005-11-02 14:38:42 +1100421static inline int xfs_sb_version_haslogv2(xfs_sb_t *sbp)
422{
423 return (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
424 ((sbp)->sb_versionnum & XFS_SB_VERSION_LOGV2BIT);
425}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Nathan Scotta844f452005-11-02 14:38:42 +1100427static inline int xfs_sb_version_hasextflgbit(xfs_sb_t *sbp)
428{
429 return (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
430 ((sbp)->sb_versionnum & XFS_SB_VERSION_EXTFLGBIT);
431}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Nathan Scotta844f452005-11-02 14:38:42 +1100433static inline int xfs_sb_version_hassector(xfs_sb_t *sbp)
434{
435 return (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
436 ((sbp)->sb_versionnum & XFS_SB_VERSION_SECTORBIT);
437}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Nathan Scotta844f452005-11-02 14:38:42 +1100439static inline int xfs_sb_version_hasmorebits(xfs_sb_t *sbp)
440{
441 return (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_4) && \
442 ((sbp)->sb_versionnum & XFS_SB_VERSION_MOREBITSBIT);
443}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445/*
446 * sb_features2 bit version macros.
447 *
Nathan Scottd8cc8902005-11-02 10:34:53 +1100448 * For example, for a bit defined as XFS_SB_VERSION2_FUNBIT, has a macro:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 *
Nathan Scottd8cc8902005-11-02 10:34:53 +1100450 * SB_VERSION_HASFUNBIT(xfs_sb_t *sbp)
Eric Sandeen62118702008-03-06 13:44:28 +1100451 * ((xfs_sb_version_hasmorebits(sbp) &&
Nathan Scottd8cc8902005-11-02 10:34:53 +1100452 * ((sbp)->sb_features2 & XFS_SB_VERSION2_FUNBIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 */
454
David Chinner92821e22007-05-24 15:26:31 +1000455static inline int xfs_sb_version_haslazysbcount(xfs_sb_t *sbp)
456{
Eric Sandeen62118702008-03-06 13:44:28 +1100457 return (xfs_sb_version_hasmorebits(sbp) && \
David Chinner92821e22007-05-24 15:26:31 +1000458 ((sbp)->sb_features2 & XFS_SB_VERSION2_LAZYSBCOUNTBIT));
459}
460
Nathan Scotta844f452005-11-02 14:38:42 +1100461static inline int xfs_sb_version_hasattr2(xfs_sb_t *sbp)
462{
Eric Sandeen62118702008-03-06 13:44:28 +1100463 return (xfs_sb_version_hasmorebits(sbp)) && \
Nathan Scotta844f452005-11-02 14:38:42 +1100464 ((sbp)->sb_features2 & XFS_SB_VERSION2_ATTR2BIT);
465}
466
Nathan Scotta844f452005-11-02 14:38:42 +1100467static inline void xfs_sb_version_addattr2(xfs_sb_t *sbp)
468{
Nathan Scottd8cc8902005-11-02 10:34:53 +1100469 ((sbp)->sb_versionnum = \
470 ((sbp)->sb_versionnum | XFS_SB_VERSION_MOREBITSBIT), \
471 ((sbp)->sb_features2 = \
Nathan Scotta844f452005-11-02 14:38:42 +1100472 ((sbp)->sb_features2 | XFS_SB_VERSION2_ATTR2BIT)));
473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475/*
476 * end of superblock version macros
477 */
478
Nathan Scotta844f452005-11-02 14:38:42 +1100479#define XFS_SB_DADDR ((xfs_daddr_t)0) /* daddr in filesystem/ag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480#define XFS_SB_BLOCK(mp) XFS_HDR_BLOCK(mp, XFS_SB_DADDR)
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000481#define XFS_BUF_TO_SBP(bp) ((xfs_dsb_t *)XFS_BUF_PTR(bp))
Nathan Scotta844f452005-11-02 14:38:42 +1100482
483#define XFS_HDR_BLOCK(mp,d) ((xfs_agblock_t)XFS_BB_TO_FSBT(mp,d))
484#define XFS_DADDR_TO_FSB(mp,d) XFS_AGB_TO_FSB(mp, \
485 XFS_DADDR_TO_AGNO(mp,d), XFS_DADDR_TO_AGBNO(mp,d))
486#define XFS_FSB_TO_DADDR(mp,fsbno) XFS_AGB_TO_DADDR(mp, \
487 XFS_FSB_TO_AGNO(mp,fsbno), XFS_FSB_TO_AGBNO(mp,fsbno))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489/*
490 * File system sector to basic block conversions.
491 */
492#define XFS_FSS_TO_BB(mp,sec) ((sec) << (mp)->m_sectbb_log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494/*
495 * File system block to basic block conversions.
496 */
497#define XFS_FSB_TO_BB(mp,fsbno) ((fsbno) << (mp)->m_blkbb_log)
498#define XFS_BB_TO_FSB(mp,bb) \
499 (((bb) + (XFS_FSB_TO_BB(mp,1) - 1)) >> (mp)->m_blkbb_log)
500#define XFS_BB_TO_FSBT(mp,bb) ((bb) >> (mp)->m_blkbb_log)
501#define XFS_BB_FSB_OFFSET(mp,bb) ((bb) & ((mp)->m_bsize - 1))
502
503/*
504 * File system block to byte conversions.
505 */
506#define XFS_FSB_TO_B(mp,fsbno) ((xfs_fsize_t)(fsbno) << (mp)->m_sb.sb_blocklog)
507#define XFS_B_TO_FSB(mp,b) \
508 ((((__uint64_t)(b)) + (mp)->m_blockmask) >> (mp)->m_sb.sb_blocklog)
509#define XFS_B_TO_FSBT(mp,b) (((__uint64_t)(b)) >> (mp)->m_sb.sb_blocklog)
510#define XFS_B_FSB_OFFSET(mp,b) ((b) & (mp)->m_blockmask)
511
512#endif /* __XFS_SB_H__ */