blob: cafc90251d1993e76c10d0b6c6dae9d875dcd21e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
22#include "xfs_trans.h"
23#include "xfs_sb.h"
24#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_alloc_btree.h"
28#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_dinode.h"
30#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_alloc.h"
Dave Chinnerefc27b52012-04-29 10:39:43 +000033#include "xfs_extent_busy.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000035#include "xfs_trace.h"
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050036#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Christoph Hellwig561f7d12008-10-30 16:53:59 +110039STATIC struct xfs_btree_cur *
40xfs_allocbt_dup_cursor(
41 struct xfs_btree_cur *cur)
42{
43 return xfs_allocbt_init_cursor(cur->bc_mp, cur->bc_tp,
44 cur->bc_private.a.agbp, cur->bc_private.a.agno,
45 cur->bc_btnum);
46}
47
Christoph Hellwig344207c2008-10-30 16:57:16 +110048STATIC void
49xfs_allocbt_set_root(
50 struct xfs_btree_cur *cur,
51 union xfs_btree_ptr *ptr,
52 int inc)
53{
54 struct xfs_buf *agbp = cur->bc_private.a.agbp;
55 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
56 xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno);
57 int btnum = cur->bc_btnum;
Dave Chinnera862e0f2010-01-11 11:47:41 +000058 struct xfs_perag *pag = xfs_perag_get(cur->bc_mp, seqno);
Christoph Hellwig344207c2008-10-30 16:57:16 +110059
60 ASSERT(ptr->s != 0);
61
62 agf->agf_roots[btnum] = ptr->s;
63 be32_add_cpu(&agf->agf_levels[btnum], inc);
Dave Chinnera862e0f2010-01-11 11:47:41 +000064 pag->pagf_levels[btnum] += inc;
65 xfs_perag_put(pag);
Christoph Hellwig344207c2008-10-30 16:57:16 +110066
67 xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_ROOTS | XFS_AGF_LEVELS);
68}
69
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110070STATIC int
71xfs_allocbt_alloc_block(
72 struct xfs_btree_cur *cur,
73 union xfs_btree_ptr *start,
74 union xfs_btree_ptr *new,
75 int length,
76 int *stat)
77{
78 int error;
79 xfs_agblock_t bno;
80
81 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
82
83 /* Allocate the new block from the freelist. If we can't, give up. */
84 error = xfs_alloc_get_freelist(cur->bc_tp, cur->bc_private.a.agbp,
85 &bno, 1);
86 if (error) {
87 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
88 return error;
89 }
90
91 if (bno == NULLAGBLOCK) {
92 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
93 *stat = 0;
94 return 0;
95 }
Christoph Hellwig97d3ac72011-04-24 19:06:16 +000096
Dave Chinner4ecbfe62012-04-29 10:41:10 +000097 xfs_extent_busy_reuse(cur->bc_mp, cur->bc_private.a.agno, bno, 1, false);
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110098
99 xfs_trans_agbtree_delta(cur->bc_tp, 1);
100 new->s = cpu_to_be32(bno);
101
102 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
103 *stat = 1;
104 return 0;
105}
106
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100107STATIC int
108xfs_allocbt_free_block(
109 struct xfs_btree_cur *cur,
110 struct xfs_buf *bp)
111{
112 struct xfs_buf *agbp = cur->bc_private.a.agbp;
113 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
114 xfs_agblock_t bno;
115 int error;
116
Eric Sandeenb6e32222009-01-14 23:22:07 -0600117 bno = xfs_daddr_to_agbno(cur->bc_mp, XFS_BUF_ADDR(bp));
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100118 error = xfs_alloc_put_freelist(cur->bc_tp, agbp, NULL, bno, 1);
119 if (error)
120 return error;
121
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000122 xfs_extent_busy_insert(cur->bc_tp, be32_to_cpu(agf->agf_seqno), bno, 1,
123 XFS_EXTENT_BUSY_SKIP_DISCARD);
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100124 xfs_trans_agbtree_delta(cur->bc_tp, -1);
Dave Chinner4c05f9a2012-11-02 11:38:41 +1100125
126 xfs_trans_binval(cur->bc_tp, bp);
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100127 return 0;
128}
129
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100130/*
131 * Update the longest extent in the AGF
132 */
133STATIC void
134xfs_allocbt_update_lastrec(
135 struct xfs_btree_cur *cur,
136 struct xfs_btree_block *block,
137 union xfs_btree_rec *rec,
138 int ptr,
139 int reason)
140{
141 struct xfs_agf *agf = XFS_BUF_TO_AGF(cur->bc_private.a.agbp);
142 xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno);
Dave Chinnera862e0f2010-01-11 11:47:41 +0000143 struct xfs_perag *pag;
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100144 __be32 len;
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100145 int numrecs;
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100146
147 ASSERT(cur->bc_btnum == XFS_BTNUM_CNT);
148
149 switch (reason) {
150 case LASTREC_UPDATE:
151 /*
152 * If this is the last leaf block and it's the last record,
153 * then update the size of the longest extent in the AG.
154 */
155 if (ptr != xfs_btree_get_numrecs(block))
156 return;
157 len = rec->alloc.ar_blockcount;
158 break;
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100159 case LASTREC_INSREC:
160 if (be32_to_cpu(rec->alloc.ar_blockcount) <=
161 be32_to_cpu(agf->agf_longest))
162 return;
163 len = rec->alloc.ar_blockcount;
164 break;
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100165 case LASTREC_DELREC:
166 numrecs = xfs_btree_get_numrecs(block);
167 if (ptr <= numrecs)
168 return;
169 ASSERT(ptr == numrecs + 1);
170
171 if (numrecs) {
172 xfs_alloc_rec_t *rrp;
173
Christoph Hellwig136341b2008-10-30 17:11:40 +1100174 rrp = XFS_ALLOC_REC_ADDR(cur->bc_mp, block, numrecs);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100175 len = rrp->ar_blockcount;
176 } else {
177 len = 0;
178 }
179
180 break;
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100181 default:
182 ASSERT(0);
183 return;
184 }
185
186 agf->agf_longest = len;
Dave Chinnera862e0f2010-01-11 11:47:41 +0000187 pag = xfs_perag_get(cur->bc_mp, seqno);
188 pag->pagf_longest = be32_to_cpu(len);
189 xfs_perag_put(pag);
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100190 xfs_alloc_log_agf(cur->bc_tp, cur->bc_private.a.agbp, XFS_AGF_LONGEST);
191}
192
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100193STATIC int
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100194xfs_allocbt_get_minrecs(
195 struct xfs_btree_cur *cur,
196 int level)
197{
198 return cur->bc_mp->m_alloc_mnr[level != 0];
199}
200
201STATIC int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100202xfs_allocbt_get_maxrecs(
203 struct xfs_btree_cur *cur,
204 int level)
205{
206 return cur->bc_mp->m_alloc_mxr[level != 0];
207}
208
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100209STATIC void
210xfs_allocbt_init_key_from_rec(
211 union xfs_btree_key *key,
212 union xfs_btree_rec *rec)
213{
214 ASSERT(rec->alloc.ar_startblock != 0);
215
216 key->alloc.ar_startblock = rec->alloc.ar_startblock;
217 key->alloc.ar_blockcount = rec->alloc.ar_blockcount;
218}
219
220STATIC void
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100221xfs_allocbt_init_rec_from_key(
222 union xfs_btree_key *key,
223 union xfs_btree_rec *rec)
224{
225 ASSERT(key->alloc.ar_startblock != 0);
226
227 rec->alloc.ar_startblock = key->alloc.ar_startblock;
228 rec->alloc.ar_blockcount = key->alloc.ar_blockcount;
229}
230
231STATIC void
232xfs_allocbt_init_rec_from_cur(
233 struct xfs_btree_cur *cur,
234 union xfs_btree_rec *rec)
235{
236 ASSERT(cur->bc_rec.a.ar_startblock != 0);
237
238 rec->alloc.ar_startblock = cpu_to_be32(cur->bc_rec.a.ar_startblock);
239 rec->alloc.ar_blockcount = cpu_to_be32(cur->bc_rec.a.ar_blockcount);
240}
241
242STATIC void
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100243xfs_allocbt_init_ptr_from_cur(
244 struct xfs_btree_cur *cur,
245 union xfs_btree_ptr *ptr)
246{
247 struct xfs_agf *agf = XFS_BUF_TO_AGF(cur->bc_private.a.agbp);
248
249 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agf->agf_seqno));
250 ASSERT(agf->agf_roots[cur->bc_btnum] != 0);
251
252 ptr->s = agf->agf_roots[cur->bc_btnum];
253}
254
255STATIC __int64_t
256xfs_allocbt_key_diff(
257 struct xfs_btree_cur *cur,
258 union xfs_btree_key *key)
259{
260 xfs_alloc_rec_incore_t *rec = &cur->bc_rec.a;
261 xfs_alloc_key_t *kp = &key->alloc;
262 __int64_t diff;
263
264 if (cur->bc_btnum == XFS_BTNUM_BNO) {
265 return (__int64_t)be32_to_cpu(kp->ar_startblock) -
266 rec->ar_startblock;
267 }
268
269 diff = (__int64_t)be32_to_cpu(kp->ar_blockcount) - rec->ar_blockcount;
270 if (diff)
271 return diff;
272
273 return (__int64_t)be32_to_cpu(kp->ar_startblock) - rec->ar_startblock;
274}
275
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500276static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +1100277xfs_allocbt_verify(
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100278 struct xfs_buf *bp)
279{
280 struct xfs_mount *mp = bp->b_target->bt_mount;
281 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
282 struct xfs_perag *pag = bp->b_pag;
283 unsigned int level;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100284
285 /*
286 * magic number and level verification
287 *
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500288 * During growfs operations, we can't verify the exact level or owner as
289 * the perag is not fully initialised and hence not attached to the
290 * buffer. In this case, check against the maximum tree depth.
291 *
292 * Similarly, during log recovery we will have a perag structure
293 * attached, but the agf information will not yet have been initialised
294 * from the on disk AGF. Again, we can only check against maximum limits
295 * in this case.
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100296 */
297 level = be16_to_cpu(block->bb_level);
298 switch (block->bb_magic) {
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500299 case cpu_to_be32(XFS_ABTB_CRC_MAGIC):
300 if (!xfs_sb_version_hascrc(&mp->m_sb))
301 return false;
302 if (!uuid_equal(&block->bb_u.s.bb_uuid, &mp->m_sb.sb_uuid))
303 return false;
304 if (block->bb_u.s.bb_blkno != cpu_to_be64(bp->b_bn))
305 return false;
306 if (pag &&
307 be32_to_cpu(block->bb_u.s.bb_owner) != pag->pag_agno)
308 return false;
309 /* fall through */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100310 case cpu_to_be32(XFS_ABTB_MAGIC):
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500311 if (pag && pag->pagf_init) {
312 if (level >= pag->pagf_levels[XFS_BTNUM_BNOi])
313 return false;
314 } else if (level >= mp->m_ag_maxlevels)
315 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100316 break;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500317 case cpu_to_be32(XFS_ABTC_CRC_MAGIC):
318 if (!xfs_sb_version_hascrc(&mp->m_sb))
319 return false;
320 if (!uuid_equal(&block->bb_u.s.bb_uuid, &mp->m_sb.sb_uuid))
321 return false;
322 if (block->bb_u.s.bb_blkno != cpu_to_be64(bp->b_bn))
323 return false;
324 if (pag &&
325 be32_to_cpu(block->bb_u.s.bb_owner) != pag->pag_agno)
326 return false;
327 /* fall through */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100328 case cpu_to_be32(XFS_ABTC_MAGIC):
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500329 if (pag && pag->pagf_init) {
330 if (level >= pag->pagf_levels[XFS_BTNUM_CNTi])
331 return false;
332 } else if (level >= mp->m_ag_maxlevels)
333 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100334 break;
335 default:
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500336 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100337 }
338
339 /* numrecs verification */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500340 if (be16_to_cpu(block->bb_numrecs) > mp->m_alloc_mxr[level != 0])
341 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100342
343 /* sibling pointer verification */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500344 if (!block->bb_u.s.bb_leftsib ||
345 (be32_to_cpu(block->bb_u.s.bb_leftsib) >= mp->m_sb.sb_agblocks &&
346 block->bb_u.s.bb_leftsib != cpu_to_be32(NULLAGBLOCK)))
347 return false;
348 if (!block->bb_u.s.bb_rightsib ||
349 (be32_to_cpu(block->bb_u.s.bb_rightsib) >= mp->m_sb.sb_agblocks &&
350 block->bb_u.s.bb_rightsib != cpu_to_be32(NULLAGBLOCK)))
351 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100352
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500353 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +1100354}
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100355
Dave Chinner612cfbf2012-11-14 17:52:32 +1100356static void
Dave Chinner1813dd62012-11-14 17:54:40 +1100357xfs_allocbt_read_verify(
358 struct xfs_buf *bp)
359{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500360 if (!(xfs_btree_sblock_verify_crc(bp) &&
361 xfs_allocbt_verify(bp))) {
362 trace_xfs_btree_corrupt(bp, _RET_IP_);
363 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
364 bp->b_target->bt_mount, bp->b_addr);
365 xfs_buf_ioerror(bp, EFSCORRUPTED);
366 }
Dave Chinner1813dd62012-11-14 17:54:40 +1100367}
368
369static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100370xfs_allocbt_write_verify(
371 struct xfs_buf *bp)
372{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500373 if (!xfs_allocbt_verify(bp)) {
374 trace_xfs_btree_corrupt(bp, _RET_IP_);
375 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
376 bp->b_target->bt_mount, bp->b_addr);
377 xfs_buf_ioerror(bp, EFSCORRUPTED);
378 }
379 xfs_btree_sblock_calc_crc(bp);
380
Dave Chinner612cfbf2012-11-14 17:52:32 +1100381}
382
Dave Chinner1813dd62012-11-14 17:54:40 +1100383const struct xfs_buf_ops xfs_allocbt_buf_ops = {
384 .verify_read = xfs_allocbt_read_verify,
385 .verify_write = xfs_allocbt_write_verify,
386};
387
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100388
Dave Chinner742ae1e2013-04-30 21:39:34 +1000389#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100390STATIC int
391xfs_allocbt_keys_inorder(
392 struct xfs_btree_cur *cur,
393 union xfs_btree_key *k1,
394 union xfs_btree_key *k2)
395{
396 if (cur->bc_btnum == XFS_BTNUM_BNO) {
397 return be32_to_cpu(k1->alloc.ar_startblock) <
398 be32_to_cpu(k2->alloc.ar_startblock);
399 } else {
400 return be32_to_cpu(k1->alloc.ar_blockcount) <
401 be32_to_cpu(k2->alloc.ar_blockcount) ||
402 (k1->alloc.ar_blockcount == k2->alloc.ar_blockcount &&
403 be32_to_cpu(k1->alloc.ar_startblock) <
404 be32_to_cpu(k2->alloc.ar_startblock));
405 }
406}
407
408STATIC int
409xfs_allocbt_recs_inorder(
410 struct xfs_btree_cur *cur,
411 union xfs_btree_rec *r1,
412 union xfs_btree_rec *r2)
413{
414 if (cur->bc_btnum == XFS_BTNUM_BNO) {
415 return be32_to_cpu(r1->alloc.ar_startblock) +
416 be32_to_cpu(r1->alloc.ar_blockcount) <=
417 be32_to_cpu(r2->alloc.ar_startblock);
418 } else {
419 return be32_to_cpu(r1->alloc.ar_blockcount) <
420 be32_to_cpu(r2->alloc.ar_blockcount) ||
421 (r1->alloc.ar_blockcount == r2->alloc.ar_blockcount &&
422 be32_to_cpu(r1->alloc.ar_startblock) <
423 be32_to_cpu(r2->alloc.ar_startblock));
424 }
425}
426#endif /* DEBUG */
427
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100428static const struct xfs_btree_ops xfs_allocbt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100429 .rec_len = sizeof(xfs_alloc_rec_t),
430 .key_len = sizeof(xfs_alloc_key_t),
431
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100432 .dup_cursor = xfs_allocbt_dup_cursor,
Christoph Hellwig344207c2008-10-30 16:57:16 +1100433 .set_root = xfs_allocbt_set_root,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100434 .alloc_block = xfs_allocbt_alloc_block,
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100435 .free_block = xfs_allocbt_free_block,
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100436 .update_lastrec = xfs_allocbt_update_lastrec,
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100437 .get_minrecs = xfs_allocbt_get_minrecs,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100438 .get_maxrecs = xfs_allocbt_get_maxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100439 .init_key_from_rec = xfs_allocbt_init_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100440 .init_rec_from_key = xfs_allocbt_init_rec_from_key,
441 .init_rec_from_cur = xfs_allocbt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100442 .init_ptr_from_cur = xfs_allocbt_init_ptr_from_cur,
443 .key_diff = xfs_allocbt_key_diff,
Dave Chinner1813dd62012-11-14 17:54:40 +1100444 .buf_ops = &xfs_allocbt_buf_ops,
Dave Chinner742ae1e2013-04-30 21:39:34 +1000445#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100446 .keys_inorder = xfs_allocbt_keys_inorder,
447 .recs_inorder = xfs_allocbt_recs_inorder,
448#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100449};
450
451/*
452 * Allocate a new allocation btree cursor.
453 */
454struct xfs_btree_cur * /* new alloc btree cursor */
455xfs_allocbt_init_cursor(
456 struct xfs_mount *mp, /* file system mount point */
457 struct xfs_trans *tp, /* transaction pointer */
458 struct xfs_buf *agbp, /* buffer for agf structure */
459 xfs_agnumber_t agno, /* allocation group number */
460 xfs_btnum_t btnum) /* btree identifier */
461{
462 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
463 struct xfs_btree_cur *cur;
464
465 ASSERT(btnum == XFS_BTNUM_BNO || btnum == XFS_BTNUM_CNT);
466
467 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
468
469 cur->bc_tp = tp;
470 cur->bc_mp = mp;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100471 cur->bc_btnum = btnum;
472 cur->bc_blocklog = mp->m_sb.sb_blocklog;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100473 cur->bc_ops = &xfs_allocbt_ops;
Christoph Hellwigdec58f12011-07-08 14:34:18 +0200474
475 if (btnum == XFS_BTNUM_CNT) {
476 cur->bc_nlevels = be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNT]);
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100477 cur->bc_flags = XFS_BTREE_LASTREC_UPDATE;
Christoph Hellwigdec58f12011-07-08 14:34:18 +0200478 } else {
479 cur->bc_nlevels = be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]);
480 }
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100481
482 cur->bc_private.a.agbp = agbp;
483 cur->bc_private.a.agno = agno;
484
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500485 if (xfs_sb_version_hascrc(&mp->m_sb))
486 cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
487
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100488 return cur;
489}
Christoph Hellwig60197e82008-10-30 17:11:19 +1100490
491/*
492 * Calculate number of records in an alloc btree block.
493 */
494int
495xfs_allocbt_maxrecs(
496 struct xfs_mount *mp,
497 int blocklen,
498 int leaf)
499{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100500 blocklen -= XFS_ALLOC_BLOCK_LEN(mp);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100501
502 if (leaf)
503 return blocklen / sizeof(xfs_alloc_rec_t);
504 return blocklen / (sizeof(xfs_alloc_key_t) + sizeof(xfs_alloc_ptr_t));
505}