diff options
Diffstat (limited to 'fs/xfs/xfs_ag.h')
-rw-r--r-- | fs/xfs/xfs_ag.h | 150 |
1 files changed, 26 insertions, 124 deletions
diff --git a/fs/xfs/xfs_ag.h b/fs/xfs/xfs_ag.h index 96b70f7fba39..7d15ef341a90 100644 --- a/fs/xfs/xfs_ag.h +++ b/fs/xfs/xfs_ag.h | |||
@@ -46,18 +46,9 @@ struct xfs_trans; | |||
46 | #define XFS_AGI_MAGIC 0x58414749 /* 'XAGI' */ | 46 | #define XFS_AGI_MAGIC 0x58414749 /* 'XAGI' */ |
47 | #define XFS_AGF_VERSION 1 | 47 | #define XFS_AGF_VERSION 1 |
48 | #define XFS_AGI_VERSION 1 | 48 | #define XFS_AGI_VERSION 1 |
49 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGF_GOOD_VERSION) | 49 | |
50 | int xfs_agf_good_version(unsigned v); | 50 | #define XFS_AGF_GOOD_VERSION(v) ((v) == XFS_AGF_VERSION) |
51 | #define XFS_AGF_GOOD_VERSION(v) xfs_agf_good_version(v) | 51 | #define XFS_AGI_GOOD_VERSION(v) ((v) == XFS_AGI_VERSION) |
52 | #else | ||
53 | #define XFS_AGF_GOOD_VERSION(v) ((v) == XFS_AGF_VERSION) | ||
54 | #endif | ||
55 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGI_GOOD_VERSION) | ||
56 | int xfs_agi_good_version(unsigned v); | ||
57 | #define XFS_AGI_GOOD_VERSION(v) xfs_agi_good_version(v) | ||
58 | #else | ||
59 | #define XFS_AGI_GOOD_VERSION(v) ((v) == XFS_AGI_VERSION) | ||
60 | #endif | ||
61 | 52 | ||
62 | /* | 53 | /* |
63 | * Btree number 0 is bno, 1 is cnt. This value gives the size of the | 54 | * Btree number 0 is bno, 1 is cnt. This value gives the size of the |
@@ -110,12 +101,9 @@ typedef struct xfs_agf | |||
110 | 101 | ||
111 | /* disk block (xfs_daddr_t) in the AG */ | 102 | /* disk block (xfs_daddr_t) in the AG */ |
112 | #define XFS_AGF_DADDR(mp) ((xfs_daddr_t)(1 << (mp)->m_sectbb_log)) | 103 | #define XFS_AGF_DADDR(mp) ((xfs_daddr_t)(1 << (mp)->m_sectbb_log)) |
113 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGF_BLOCK) | 104 | #define XFS_AGF_BLOCK(mp) XFS_HDR_BLOCK(mp, XFS_AGF_DADDR(mp)) |
114 | xfs_agblock_t xfs_agf_block(struct xfs_mount *mp); | 105 | #define XFS_BUF_TO_AGF(bp) ((xfs_agf_t *)XFS_BUF_PTR(bp)) |
115 | #define XFS_AGF_BLOCK(mp) xfs_agf_block(mp) | 106 | |
116 | #else | ||
117 | #define XFS_AGF_BLOCK(mp) XFS_HDR_BLOCK(mp, XFS_AGF_DADDR(mp)) | ||
118 | #endif | ||
119 | 107 | ||
120 | /* | 108 | /* |
121 | * Size of the unlinked inode hash table in the agi. | 109 | * Size of the unlinked inode hash table in the agi. |
@@ -165,25 +153,17 @@ typedef struct xfs_agi | |||
165 | 153 | ||
166 | /* disk block (xfs_daddr_t) in the AG */ | 154 | /* disk block (xfs_daddr_t) in the AG */ |
167 | #define XFS_AGI_DADDR(mp) ((xfs_daddr_t)(2 << (mp)->m_sectbb_log)) | 155 | #define XFS_AGI_DADDR(mp) ((xfs_daddr_t)(2 << (mp)->m_sectbb_log)) |
168 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGI_BLOCK) | 156 | #define XFS_AGI_BLOCK(mp) XFS_HDR_BLOCK(mp, XFS_AGI_DADDR(mp)) |
169 | xfs_agblock_t xfs_agi_block(struct xfs_mount *mp); | 157 | #define XFS_BUF_TO_AGI(bp) ((xfs_agi_t *)XFS_BUF_PTR(bp)) |
170 | #define XFS_AGI_BLOCK(mp) xfs_agi_block(mp) | ||
171 | #else | ||
172 | #define XFS_AGI_BLOCK(mp) XFS_HDR_BLOCK(mp, XFS_AGI_DADDR(mp)) | ||
173 | #endif | ||
174 | 158 | ||
175 | /* | 159 | /* |
176 | * The third a.g. block contains the a.g. freelist, an array | 160 | * The third a.g. block contains the a.g. freelist, an array |
177 | * of block pointers to blocks owned by the allocation btree code. | 161 | * of block pointers to blocks owned by the allocation btree code. |
178 | */ | 162 | */ |
179 | #define XFS_AGFL_DADDR(mp) ((xfs_daddr_t)(3 << (mp)->m_sectbb_log)) | 163 | #define XFS_AGFL_DADDR(mp) ((xfs_daddr_t)(3 << (mp)->m_sectbb_log)) |
180 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGFL_BLOCK) | 164 | #define XFS_AGFL_BLOCK(mp) XFS_HDR_BLOCK(mp, XFS_AGFL_DADDR(mp)) |
181 | xfs_agblock_t xfs_agfl_block(struct xfs_mount *mp); | ||
182 | #define XFS_AGFL_BLOCK(mp) xfs_agfl_block(mp) | ||
183 | #else | ||
184 | #define XFS_AGFL_BLOCK(mp) XFS_HDR_BLOCK(mp, XFS_AGFL_DADDR(mp)) | ||
185 | #endif | ||
186 | #define XFS_AGFL_SIZE(mp) ((mp)->m_sb.sb_sectsize / sizeof(xfs_agblock_t)) | 165 | #define XFS_AGFL_SIZE(mp) ((mp)->m_sb.sb_sectsize / sizeof(xfs_agblock_t)) |
166 | #define XFS_BUF_TO_AGFL(bp) ((xfs_agfl_t *)XFS_BUF_PTR(bp)) | ||
187 | 167 | ||
188 | typedef struct xfs_agfl { | 168 | typedef struct xfs_agfl { |
189 | xfs_agblock_t agfl_bno[1]; /* actually XFS_AGFL_SIZE(mp) */ | 169 | xfs_agblock_t agfl_bno[1]; /* actually XFS_AGFL_SIZE(mp) */ |
@@ -230,116 +210,38 @@ typedef struct xfs_perag | |||
230 | xfs_perag_busy_t *pagb_list; /* unstable blocks */ | 210 | xfs_perag_busy_t *pagb_list; /* unstable blocks */ |
231 | } xfs_perag_t; | 211 | } xfs_perag_t; |
232 | 212 | ||
233 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AG_MAXLEVELS) | 213 | #define XFS_AG_MAXLEVELS(mp) ((mp)->m_ag_maxlevels) |
234 | int xfs_ag_maxlevels(struct xfs_mount *mp); | 214 | #define XFS_MIN_FREELIST_RAW(bl,cl,mp) \ |
235 | #define XFS_AG_MAXLEVELS(mp) xfs_ag_maxlevels(mp) | 215 | (MIN(bl + 1, XFS_AG_MAXLEVELS(mp)) + MIN(cl + 1, XFS_AG_MAXLEVELS(mp))) |
236 | #else | 216 | #define XFS_MIN_FREELIST(a,mp) \ |
237 | #define XFS_AG_MAXLEVELS(mp) ((mp)->m_ag_maxlevels) | 217 | (XFS_MIN_FREELIST_RAW( \ |
238 | #endif | ||
239 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_MIN_FREELIST) | ||
240 | int xfs_min_freelist(xfs_agf_t *a, struct xfs_mount *mp); | ||
241 | #define XFS_MIN_FREELIST(a,mp) xfs_min_freelist(a,mp) | ||
242 | #else | ||
243 | #define XFS_MIN_FREELIST(a,mp) \ | ||
244 | XFS_MIN_FREELIST_RAW( \ | ||
245 | INT_GET((a)->agf_levels[XFS_BTNUM_BNOi], ARCH_CONVERT), \ | 218 | INT_GET((a)->agf_levels[XFS_BTNUM_BNOi], ARCH_CONVERT), \ |
246 | INT_GET((a)->agf_levels[XFS_BTNUM_CNTi], ARCH_CONVERT), mp) | 219 | INT_GET((a)->agf_levels[XFS_BTNUM_CNTi], ARCH_CONVERT), mp)) |
247 | #endif | ||
248 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_MIN_FREELIST_PAG) | ||
249 | int xfs_min_freelist_pag(xfs_perag_t *pag, struct xfs_mount *mp); | ||
250 | #define XFS_MIN_FREELIST_PAG(pag,mp) xfs_min_freelist_pag(pag,mp) | ||
251 | #else | ||
252 | #define XFS_MIN_FREELIST_PAG(pag,mp) \ | 220 | #define XFS_MIN_FREELIST_PAG(pag,mp) \ |
253 | XFS_MIN_FREELIST_RAW((uint_t)(pag)->pagf_levels[XFS_BTNUM_BNOi], \ | 221 | (XFS_MIN_FREELIST_RAW( \ |
254 | (uint_t)(pag)->pagf_levels[XFS_BTNUM_CNTi], mp) | 222 | (uint_t)(pag)->pagf_levels[XFS_BTNUM_BNOi], \ |
255 | #endif | 223 | (uint_t)(pag)->pagf_levels[XFS_BTNUM_CNTi], mp)) |
256 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_MIN_FREELIST_RAW) | ||
257 | int xfs_min_freelist_raw(int bl, int cl, struct xfs_mount *mp); | ||
258 | #define XFS_MIN_FREELIST_RAW(bl,cl,mp) xfs_min_freelist_raw(bl,cl,mp) | ||
259 | #else | ||
260 | #define XFS_MIN_FREELIST_RAW(bl,cl,mp) \ | ||
261 | (MIN(bl + 1, XFS_AG_MAXLEVELS(mp)) + \ | ||
262 | MIN(cl + 1, XFS_AG_MAXLEVELS(mp))) | ||
263 | #endif | ||
264 | 224 | ||
265 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGB_TO_FSB) | 225 | #define XFS_AGB_TO_FSB(mp,agno,agbno) \ |
266 | xfs_fsblock_t xfs_agb_to_fsb(struct xfs_mount *mp, xfs_agnumber_t agno, | ||
267 | xfs_agblock_t agbno); | ||
268 | #define XFS_AGB_TO_FSB(mp,agno,agbno) xfs_agb_to_fsb(mp,agno,agbno) | ||
269 | #else | ||
270 | #define XFS_AGB_TO_FSB(mp,agno,agbno) \ | ||
271 | (((xfs_fsblock_t)(agno) << (mp)->m_sb.sb_agblklog) | (agbno)) | 226 | (((xfs_fsblock_t)(agno) << (mp)->m_sb.sb_agblklog) | (agbno)) |
272 | #endif | 227 | #define XFS_FSB_TO_AGNO(mp,fsbno) \ |
273 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_FSB_TO_AGNO) | ||
274 | xfs_agnumber_t xfs_fsb_to_agno(struct xfs_mount *mp, xfs_fsblock_t fsbno); | ||
275 | #define XFS_FSB_TO_AGNO(mp,fsbno) xfs_fsb_to_agno(mp,fsbno) | ||
276 | #else | ||
277 | #define XFS_FSB_TO_AGNO(mp,fsbno) \ | ||
278 | ((xfs_agnumber_t)((fsbno) >> (mp)->m_sb.sb_agblklog)) | 228 | ((xfs_agnumber_t)((fsbno) >> (mp)->m_sb.sb_agblklog)) |
279 | #endif | 229 | #define XFS_FSB_TO_AGBNO(mp,fsbno) \ |
280 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_FSB_TO_AGBNO) | ||
281 | xfs_agblock_t xfs_fsb_to_agbno(struct xfs_mount *mp, xfs_fsblock_t fsbno); | ||
282 | #define XFS_FSB_TO_AGBNO(mp,fsbno) xfs_fsb_to_agbno(mp,fsbno) | ||
283 | #else | ||
284 | #define XFS_FSB_TO_AGBNO(mp,fsbno) \ | ||
285 | ((xfs_agblock_t)((fsbno) & XFS_MASK32LO((mp)->m_sb.sb_agblklog))) | 230 | ((xfs_agblock_t)((fsbno) & XFS_MASK32LO((mp)->m_sb.sb_agblklog))) |
286 | #endif | 231 | #define XFS_AGB_TO_DADDR(mp,agno,agbno) \ |
287 | 232 | ((xfs_daddr_t)XFS_FSB_TO_BB(mp, \ | |
288 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGB_TO_DADDR) | 233 | (xfs_fsblock_t)(agno) * (mp)->m_sb.sb_agblocks + (agbno))) |
289 | xfs_daddr_t xfs_agb_to_daddr(struct xfs_mount *mp, xfs_agnumber_t agno, | 234 | #define XFS_AG_DADDR(mp,agno,d) (XFS_AGB_TO_DADDR(mp, agno, 0) + (d)) |
290 | xfs_agblock_t agbno); | ||
291 | #define XFS_AGB_TO_DADDR(mp,agno,agbno) xfs_agb_to_daddr(mp,agno,agbno) | ||
292 | #else | ||
293 | #define XFS_AGB_TO_DADDR(mp,agno,agbno) \ | ||
294 | ((xfs_daddr_t)(XFS_FSB_TO_BB(mp, \ | ||
295 | (xfs_fsblock_t)(agno) * (mp)->m_sb.sb_agblocks + (agbno)))) | ||
296 | #endif | ||
297 | /* | ||
298 | * XFS_DADDR_TO_AGNO and XFS_DADDR_TO_AGBNO moved to xfs_mount.h | ||
299 | * to avoid header file ordering change | ||
300 | */ | ||
301 | |||
302 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AG_DADDR) | ||
303 | xfs_daddr_t xfs_ag_daddr(struct xfs_mount *mp, xfs_agnumber_t agno, | ||
304 | xfs_daddr_t d); | ||
305 | #define XFS_AG_DADDR(mp,agno,d) xfs_ag_daddr(mp,agno,d) | ||
306 | #else | ||
307 | #define XFS_AG_DADDR(mp,agno,d) (XFS_AGB_TO_DADDR(mp, agno, 0) + (d)) | ||
308 | #endif | ||
309 | |||
310 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_BUF_TO_AGF) | ||
311 | xfs_agf_t *xfs_buf_to_agf(struct xfs_buf *bp); | ||
312 | #define XFS_BUF_TO_AGF(bp) xfs_buf_to_agf(bp) | ||
313 | #else | ||
314 | #define XFS_BUF_TO_AGF(bp) ((xfs_agf_t *)XFS_BUF_PTR(bp)) | ||
315 | #endif | ||
316 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_BUF_TO_AGI) | ||
317 | xfs_agi_t *xfs_buf_to_agi(struct xfs_buf *bp); | ||
318 | #define XFS_BUF_TO_AGI(bp) xfs_buf_to_agi(bp) | ||
319 | #else | ||
320 | #define XFS_BUF_TO_AGI(bp) ((xfs_agi_t *)XFS_BUF_PTR(bp)) | ||
321 | #endif | ||
322 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_BUF_TO_AGFL) | ||
323 | xfs_agfl_t *xfs_buf_to_agfl(struct xfs_buf *bp); | ||
324 | #define XFS_BUF_TO_AGFL(bp) xfs_buf_to_agfl(bp) | ||
325 | #else | ||
326 | #define XFS_BUF_TO_AGFL(bp) ((xfs_agfl_t *)XFS_BUF_PTR(bp)) | ||
327 | #endif | ||
328 | 235 | ||
329 | /* | 236 | /* |
330 | * For checking for bad ranges of xfs_daddr_t's, covering multiple | 237 | * For checking for bad ranges of xfs_daddr_t's, covering multiple |
331 | * allocation groups or a single xfs_daddr_t that's a superblock copy. | 238 | * allocation groups or a single xfs_daddr_t that's a superblock copy. |
332 | */ | 239 | */ |
333 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AG_CHECK_DADDR) | ||
334 | void xfs_ag_check_daddr(struct xfs_mount *mp, xfs_daddr_t d, xfs_extlen_t len); | ||
335 | #define XFS_AG_CHECK_DADDR(mp,d,len) xfs_ag_check_daddr(mp,d,len) | ||
336 | #else | ||
337 | #define XFS_AG_CHECK_DADDR(mp,d,len) \ | 240 | #define XFS_AG_CHECK_DADDR(mp,d,len) \ |
338 | ((len) == 1 ? \ | 241 | ((len) == 1 ? \ |
339 | ASSERT((d) == XFS_SB_DADDR || \ | 242 | ASSERT((d) == XFS_SB_DADDR || \ |
340 | XFS_DADDR_TO_AGBNO(mp, d) != XFS_SB_DADDR) : \ | 243 | XFS_DADDR_TO_AGBNO(mp, d) != XFS_SB_DADDR) : \ |
341 | ASSERT(XFS_DADDR_TO_AGNO(mp, d) == \ | 244 | ASSERT(XFS_DADDR_TO_AGNO(mp, d) == \ |
342 | XFS_DADDR_TO_AGNO(mp, (d) + (len) - 1))) | 245 | XFS_DADDR_TO_AGNO(mp, (d) + (len) - 1))) |
343 | #endif | ||
344 | 246 | ||
345 | #endif /* __XFS_AG_H__ */ | 247 | #endif /* __XFS_AG_H__ */ |