2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
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.
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.
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
20 #include "xfs_types.h"
24 #include "xfs_trans.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_alloc_btree.h"
32 #include "xfs_ialloc_btree.h"
33 #include "xfs_dir2_sf.h"
34 #include "xfs_attr_sf.h"
35 #include "xfs_dinode.h"
36 #include "xfs_inode.h"
37 #include "xfs_btree.h"
38 #include "xfs_ialloc.h"
39 #include "xfs_alloc.h"
40 #include "xfs_error.h"
43 * Prototypes for internal functions.
46 STATIC
void xfs_alloc_log_block(xfs_trans_t
*, xfs_buf_t
*, int);
47 STATIC
void xfs_alloc_log_keys(xfs_btree_cur_t
*, xfs_buf_t
*, int, int);
48 STATIC
void xfs_alloc_log_ptrs(xfs_btree_cur_t
*, xfs_buf_t
*, int, int);
49 STATIC
void xfs_alloc_log_recs(xfs_btree_cur_t
*, xfs_buf_t
*, int, int);
50 STATIC
int xfs_alloc_lshift(xfs_btree_cur_t
*, int, int *);
51 STATIC
int xfs_alloc_newroot(xfs_btree_cur_t
*, int *);
52 STATIC
int xfs_alloc_rshift(xfs_btree_cur_t
*, int, int *);
53 STATIC
int xfs_alloc_split(xfs_btree_cur_t
*, int, xfs_agblock_t
*,
54 xfs_alloc_key_t
*, xfs_btree_cur_t
**, int *);
55 STATIC
int xfs_alloc_updkey(xfs_btree_cur_t
*, xfs_alloc_key_t
*, int);
62 * Single level of the xfs_alloc_delete record deletion routine.
63 * Delete record pointed to by cur/level.
64 * Remove the record from its block then rebalance the tree.
65 * Return 0 for error, 1 for done, 2 to go on to the next level.
67 STATIC
int /* error */
69 xfs_btree_cur_t
*cur
, /* btree cursor */
70 int level
, /* level removing record from */
71 int *stat
) /* fail/done/go-on */
73 xfs_agf_t
*agf
; /* allocation group freelist header */
74 xfs_alloc_block_t
*block
; /* btree block record/key lives in */
75 xfs_agblock_t bno
; /* btree block number */
76 xfs_buf_t
*bp
; /* buffer for block */
77 int error
; /* error return value */
78 int i
; /* loop index */
79 xfs_alloc_key_t key
; /* kp points here if block is level 0 */
80 xfs_agblock_t lbno
; /* left block's block number */
81 xfs_buf_t
*lbp
; /* left block's buffer pointer */
82 xfs_alloc_block_t
*left
; /* left btree block */
83 xfs_alloc_key_t
*lkp
=NULL
; /* left block key pointer */
84 xfs_alloc_ptr_t
*lpp
=NULL
; /* left block address pointer */
85 int lrecs
=0; /* number of records in left block */
86 xfs_alloc_rec_t
*lrp
; /* left block record pointer */
87 xfs_mount_t
*mp
; /* mount structure */
88 int ptr
; /* index in btree block for this rec */
89 xfs_agblock_t rbno
; /* right block's block number */
90 xfs_buf_t
*rbp
; /* right block's buffer pointer */
91 xfs_alloc_block_t
*right
; /* right btree block */
92 xfs_alloc_key_t
*rkp
; /* right block key pointer */
93 xfs_alloc_ptr_t
*rpp
; /* right block address pointer */
94 int rrecs
=0; /* number of records in right block */
95 xfs_alloc_rec_t
*rrp
; /* right block record pointer */
96 xfs_btree_cur_t
*tcur
; /* temporary btree cursor */
99 * Get the index of the entry being deleted, check for nothing there.
101 ptr
= cur
->bc_ptrs
[level
];
107 * Get the buffer & block containing the record or key/ptr.
109 bp
= cur
->bc_bufs
[level
];
110 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
112 if ((error
= xfs_btree_check_sblock(cur
, block
, level
, bp
)))
116 * Fail if we're off the end of the block.
118 if (ptr
> be16_to_cpu(block
->bb_numrecs
)) {
122 XFS_STATS_INC(xs_abt_delrec
);
124 * It's a nonleaf. Excise the key and ptr being deleted, by
125 * sliding the entries past them down one.
126 * Log the changed areas of the block.
129 lkp
= XFS_ALLOC_KEY_ADDR(block
, 1, cur
);
130 lpp
= XFS_ALLOC_PTR_ADDR(block
, 1, cur
);
132 for (i
= ptr
; i
< be16_to_cpu(block
->bb_numrecs
); i
++) {
133 if ((error
= xfs_btree_check_sptr(cur
, be32_to_cpu(lpp
[i
]), level
)))
137 if (ptr
< be16_to_cpu(block
->bb_numrecs
)) {
138 memmove(&lkp
[ptr
- 1], &lkp
[ptr
],
139 (be16_to_cpu(block
->bb_numrecs
) - ptr
) * sizeof(*lkp
));
140 memmove(&lpp
[ptr
- 1], &lpp
[ptr
],
141 (be16_to_cpu(block
->bb_numrecs
) - ptr
) * sizeof(*lpp
));
142 xfs_alloc_log_ptrs(cur
, bp
, ptr
, be16_to_cpu(block
->bb_numrecs
) - 1);
143 xfs_alloc_log_keys(cur
, bp
, ptr
, be16_to_cpu(block
->bb_numrecs
) - 1);
147 * It's a leaf. Excise the record being deleted, by sliding the
148 * entries past it down one. Log the changed areas of the block.
151 lrp
= XFS_ALLOC_REC_ADDR(block
, 1, cur
);
152 if (ptr
< be16_to_cpu(block
->bb_numrecs
)) {
153 memmove(&lrp
[ptr
- 1], &lrp
[ptr
],
154 (be16_to_cpu(block
->bb_numrecs
) - ptr
) * sizeof(*lrp
));
155 xfs_alloc_log_recs(cur
, bp
, ptr
, be16_to_cpu(block
->bb_numrecs
) - 1);
158 * If it's the first record in the block, we'll need a key
159 * structure to pass up to the next level (updkey).
162 key
.ar_startblock
= lrp
->ar_startblock
;
163 key
.ar_blockcount
= lrp
->ar_blockcount
;
168 * Decrement and log the number of entries in the block.
170 be16_add(&block
->bb_numrecs
, -1);
171 xfs_alloc_log_block(cur
->bc_tp
, bp
, XFS_BB_NUMRECS
);
173 * See if the longest free extent in the allocation group was
174 * changed by this operation. True if it's the by-size btree, and
175 * this is the leaf level, and there is no right sibling block,
176 * and this was the last record.
178 agf
= XFS_BUF_TO_AGF(cur
->bc_private
.a
.agbp
);
182 cur
->bc_btnum
== XFS_BTNUM_CNT
&&
183 be32_to_cpu(block
->bb_rightsib
) == NULLAGBLOCK
&&
184 ptr
> be16_to_cpu(block
->bb_numrecs
)) {
185 ASSERT(ptr
== be16_to_cpu(block
->bb_numrecs
) + 1);
187 * There are still records in the block. Grab the size
190 if (be16_to_cpu(block
->bb_numrecs
)) {
191 rrp
= XFS_ALLOC_REC_ADDR(block
, be16_to_cpu(block
->bb_numrecs
), cur
);
192 agf
->agf_longest
= rrp
->ar_blockcount
;
195 * No free extents left.
198 agf
->agf_longest
= 0;
199 mp
->m_perag
[be32_to_cpu(agf
->agf_seqno
)].pagf_longest
=
200 be32_to_cpu(agf
->agf_longest
);
201 xfs_alloc_log_agf(cur
->bc_tp
, cur
->bc_private
.a
.agbp
,
205 * Is this the root level? If so, we're almost done.
207 if (level
== cur
->bc_nlevels
- 1) {
209 * If this is the root level,
210 * and there's only one entry left,
211 * and it's NOT the leaf level,
212 * then we can get rid of this level.
214 if (be16_to_cpu(block
->bb_numrecs
) == 1 && level
> 0) {
216 * lpp is still set to the first pointer in the block.
217 * Make it the new root of the btree.
219 bno
= be32_to_cpu(agf
->agf_roots
[cur
->bc_btnum
]);
220 agf
->agf_roots
[cur
->bc_btnum
] = *lpp
;
221 be32_add(&agf
->agf_levels
[cur
->bc_btnum
], -1);
222 mp
->m_perag
[be32_to_cpu(agf
->agf_seqno
)].pagf_levels
[cur
->bc_btnum
]--;
224 * Put this buffer/block on the ag's freelist.
226 if ((error
= xfs_alloc_put_freelist(cur
->bc_tp
,
227 cur
->bc_private
.a
.agbp
, NULL
, bno
)))
230 * Since blocks move to the free list without the
231 * coordination used in xfs_bmap_finish, we can't allow
232 * block to be available for reallocation and
233 * non-transaction writing (user data) until we know
234 * that the transaction that moved it to the free list
235 * is permanently on disk. We track the blocks by
236 * declaring these blocks as "busy"; the busy list is
237 * maintained on a per-ag basis and each transaction
238 * records which entries should be removed when the
239 * iclog commits to disk. If a busy block is
240 * allocated, the iclog is pushed up to the LSN
241 * that freed the block.
243 xfs_alloc_mark_busy(cur
->bc_tp
,
244 be32_to_cpu(agf
->agf_seqno
), bno
, 1);
246 xfs_trans_agbtree_delta(cur
->bc_tp
, -1);
247 xfs_alloc_log_agf(cur
->bc_tp
, cur
->bc_private
.a
.agbp
,
248 XFS_AGF_ROOTS
| XFS_AGF_LEVELS
);
250 * Update the cursor so there's one fewer level.
252 xfs_btree_setbuf(cur
, level
, NULL
);
254 } else if (level
> 0 &&
255 (error
= xfs_alloc_decrement(cur
, level
, &i
)))
261 * If we deleted the leftmost entry in the block, update the
262 * key values above us in the tree.
264 if (ptr
== 1 && (error
= xfs_alloc_updkey(cur
, lkp
, level
+ 1)))
267 * If the number of records remaining in the block is at least
268 * the minimum, we're done.
270 if (be16_to_cpu(block
->bb_numrecs
) >= XFS_ALLOC_BLOCK_MINRECS(level
, cur
)) {
271 if (level
> 0 && (error
= xfs_alloc_decrement(cur
, level
, &i
)))
277 * Otherwise, we have to move some records around to keep the
278 * tree balanced. Look at the left and right sibling blocks to
279 * see if we can re-balance by moving only one record.
281 rbno
= be32_to_cpu(block
->bb_rightsib
);
282 lbno
= be32_to_cpu(block
->bb_leftsib
);
284 ASSERT(rbno
!= NULLAGBLOCK
|| lbno
!= NULLAGBLOCK
);
286 * Duplicate the cursor so our btree manipulations here won't
287 * disrupt the next level up.
289 if ((error
= xfs_btree_dup_cursor(cur
, &tcur
)))
292 * If there's a right sibling, see if it's ok to shift an entry
295 if (rbno
!= NULLAGBLOCK
) {
297 * Move the temp cursor to the last entry in the next block.
298 * Actually any entry but the first would suffice.
300 i
= xfs_btree_lastrec(tcur
, level
);
301 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
302 if ((error
= xfs_alloc_increment(tcur
, level
, &i
)))
304 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
305 i
= xfs_btree_lastrec(tcur
, level
);
306 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
308 * Grab a pointer to the block.
310 rbp
= tcur
->bc_bufs
[level
];
311 right
= XFS_BUF_TO_ALLOC_BLOCK(rbp
);
313 if ((error
= xfs_btree_check_sblock(cur
, right
, level
, rbp
)))
317 * Grab the current block number, for future use.
319 bno
= be32_to_cpu(right
->bb_leftsib
);
321 * If right block is full enough so that removing one entry
322 * won't make it too empty, and left-shifting an entry out
323 * of right to us works, we're done.
325 if (be16_to_cpu(right
->bb_numrecs
) - 1 >=
326 XFS_ALLOC_BLOCK_MINRECS(level
, cur
)) {
327 if ((error
= xfs_alloc_lshift(tcur
, level
, &i
)))
330 ASSERT(be16_to_cpu(block
->bb_numrecs
) >=
331 XFS_ALLOC_BLOCK_MINRECS(level
, cur
));
332 xfs_btree_del_cursor(tcur
,
335 (error
= xfs_alloc_decrement(cur
, level
,
343 * Otherwise, grab the number of records in right for
344 * future reference, and fix up the temp cursor to point
345 * to our block again (last record).
347 rrecs
= be16_to_cpu(right
->bb_numrecs
);
348 if (lbno
!= NULLAGBLOCK
) {
349 i
= xfs_btree_firstrec(tcur
, level
);
350 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
351 if ((error
= xfs_alloc_decrement(tcur
, level
, &i
)))
353 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
357 * If there's a left sibling, see if it's ok to shift an entry
360 if (lbno
!= NULLAGBLOCK
) {
362 * Move the temp cursor to the first entry in the
365 i
= xfs_btree_firstrec(tcur
, level
);
366 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
367 if ((error
= xfs_alloc_decrement(tcur
, level
, &i
)))
369 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
370 xfs_btree_firstrec(tcur
, level
);
372 * Grab a pointer to the block.
374 lbp
= tcur
->bc_bufs
[level
];
375 left
= XFS_BUF_TO_ALLOC_BLOCK(lbp
);
377 if ((error
= xfs_btree_check_sblock(cur
, left
, level
, lbp
)))
381 * Grab the current block number, for future use.
383 bno
= be32_to_cpu(left
->bb_rightsib
);
385 * If left block is full enough so that removing one entry
386 * won't make it too empty, and right-shifting an entry out
387 * of left to us works, we're done.
389 if (be16_to_cpu(left
->bb_numrecs
) - 1 >=
390 XFS_ALLOC_BLOCK_MINRECS(level
, cur
)) {
391 if ((error
= xfs_alloc_rshift(tcur
, level
, &i
)))
394 ASSERT(be16_to_cpu(block
->bb_numrecs
) >=
395 XFS_ALLOC_BLOCK_MINRECS(level
, cur
));
396 xfs_btree_del_cursor(tcur
,
405 * Otherwise, grab the number of records in right for
408 lrecs
= be16_to_cpu(left
->bb_numrecs
);
411 * Delete the temp cursor, we're done with it.
413 xfs_btree_del_cursor(tcur
, XFS_BTREE_NOERROR
);
415 * If here, we need to do a join to keep the tree balanced.
417 ASSERT(bno
!= NULLAGBLOCK
);
419 * See if we can join with the left neighbor block.
421 if (lbno
!= NULLAGBLOCK
&&
422 lrecs
+ be16_to_cpu(block
->bb_numrecs
) <= XFS_ALLOC_BLOCK_MAXRECS(level
, cur
)) {
424 * Set "right" to be the starting block,
425 * "left" to be the left neighbor.
430 if ((error
= xfs_btree_read_bufs(mp
, cur
->bc_tp
,
431 cur
->bc_private
.a
.agno
, lbno
, 0, &lbp
,
432 XFS_ALLOC_BTREE_REF
)))
434 left
= XFS_BUF_TO_ALLOC_BLOCK(lbp
);
435 if ((error
= xfs_btree_check_sblock(cur
, left
, level
, lbp
)))
439 * If that won't work, see if we can join with the right neighbor block.
441 else if (rbno
!= NULLAGBLOCK
&&
442 rrecs
+ be16_to_cpu(block
->bb_numrecs
) <=
443 XFS_ALLOC_BLOCK_MAXRECS(level
, cur
)) {
445 * Set "left" to be the starting block,
446 * "right" to be the right neighbor.
451 if ((error
= xfs_btree_read_bufs(mp
, cur
->bc_tp
,
452 cur
->bc_private
.a
.agno
, rbno
, 0, &rbp
,
453 XFS_ALLOC_BTREE_REF
)))
455 right
= XFS_BUF_TO_ALLOC_BLOCK(rbp
);
456 if ((error
= xfs_btree_check_sblock(cur
, right
, level
, rbp
)))
460 * Otherwise, we can't fix the imbalance.
461 * Just return. This is probably a logic error, but it's not fatal.
464 if (level
> 0 && (error
= xfs_alloc_decrement(cur
, level
, &i
)))
470 * We're now going to join "left" and "right" by moving all the stuff
471 * in "right" to "left" and deleting "right".
475 * It's a non-leaf. Move keys and pointers.
477 lkp
= XFS_ALLOC_KEY_ADDR(left
, be16_to_cpu(left
->bb_numrecs
) + 1, cur
);
478 lpp
= XFS_ALLOC_PTR_ADDR(left
, be16_to_cpu(left
->bb_numrecs
) + 1, cur
);
479 rkp
= XFS_ALLOC_KEY_ADDR(right
, 1, cur
);
480 rpp
= XFS_ALLOC_PTR_ADDR(right
, 1, cur
);
482 for (i
= 0; i
< be16_to_cpu(right
->bb_numrecs
); i
++) {
483 if ((error
= xfs_btree_check_sptr(cur
, be32_to_cpu(rpp
[i
]), level
)))
487 memcpy(lkp
, rkp
, be16_to_cpu(right
->bb_numrecs
) * sizeof(*lkp
));
488 memcpy(lpp
, rpp
, be16_to_cpu(right
->bb_numrecs
) * sizeof(*lpp
));
489 xfs_alloc_log_keys(cur
, lbp
, be16_to_cpu(left
->bb_numrecs
) + 1,
490 be16_to_cpu(left
->bb_numrecs
) +
491 be16_to_cpu(right
->bb_numrecs
));
492 xfs_alloc_log_ptrs(cur
, lbp
, be16_to_cpu(left
->bb_numrecs
) + 1,
493 be16_to_cpu(left
->bb_numrecs
) +
494 be16_to_cpu(right
->bb_numrecs
));
497 * It's a leaf. Move records.
499 lrp
= XFS_ALLOC_REC_ADDR(left
, be16_to_cpu(left
->bb_numrecs
) + 1, cur
);
500 rrp
= XFS_ALLOC_REC_ADDR(right
, 1, cur
);
501 memcpy(lrp
, rrp
, be16_to_cpu(right
->bb_numrecs
) * sizeof(*lrp
));
502 xfs_alloc_log_recs(cur
, lbp
, be16_to_cpu(left
->bb_numrecs
) + 1,
503 be16_to_cpu(left
->bb_numrecs
) +
504 be16_to_cpu(right
->bb_numrecs
));
507 * If we joined with the left neighbor, set the buffer in the
508 * cursor to the left block, and fix up the index.
511 xfs_btree_setbuf(cur
, level
, lbp
);
512 cur
->bc_ptrs
[level
] += be16_to_cpu(left
->bb_numrecs
);
515 * If we joined with the right neighbor and there's a level above
516 * us, increment the cursor at that level.
518 else if (level
+ 1 < cur
->bc_nlevels
&&
519 (error
= xfs_alloc_increment(cur
, level
+ 1, &i
)))
522 * Fix up the number of records in the surviving block.
524 be16_add(&left
->bb_numrecs
, be16_to_cpu(right
->bb_numrecs
));
526 * Fix up the right block pointer in the surviving block, and log it.
528 left
->bb_rightsib
= right
->bb_rightsib
;
529 xfs_alloc_log_block(cur
->bc_tp
, lbp
, XFS_BB_NUMRECS
| XFS_BB_RIGHTSIB
);
531 * If there is a right sibling now, make it point to the
534 if (be32_to_cpu(left
->bb_rightsib
) != NULLAGBLOCK
) {
535 xfs_alloc_block_t
*rrblock
;
538 if ((error
= xfs_btree_read_bufs(mp
, cur
->bc_tp
,
539 cur
->bc_private
.a
.agno
, be32_to_cpu(left
->bb_rightsib
), 0,
540 &rrbp
, XFS_ALLOC_BTREE_REF
)))
542 rrblock
= XFS_BUF_TO_ALLOC_BLOCK(rrbp
);
543 if ((error
= xfs_btree_check_sblock(cur
, rrblock
, level
, rrbp
)))
545 rrblock
->bb_leftsib
= cpu_to_be32(lbno
);
546 xfs_alloc_log_block(cur
->bc_tp
, rrbp
, XFS_BB_LEFTSIB
);
549 * Free the deleting block by putting it on the freelist.
551 if ((error
= xfs_alloc_put_freelist(cur
->bc_tp
, cur
->bc_private
.a
.agbp
,
555 * Since blocks move to the free list without the coordination
556 * used in xfs_bmap_finish, we can't allow block to be available
557 * for reallocation and non-transaction writing (user data)
558 * until we know that the transaction that moved it to the free
559 * list is permanently on disk. We track the blocks by declaring
560 * these blocks as "busy"; the busy list is maintained on a
561 * per-ag basis and each transaction records which entries
562 * should be removed when the iclog commits to disk. If a
563 * busy block is allocated, the iclog is pushed up to the
564 * LSN that freed the block.
566 xfs_alloc_mark_busy(cur
->bc_tp
, be32_to_cpu(agf
->agf_seqno
), bno
, 1);
567 xfs_trans_agbtree_delta(cur
->bc_tp
, -1);
570 * Adjust the current level's cursor so that we're left referring
571 * to the right node, after we're done.
572 * If this leaves the ptr value 0 our caller will fix it up.
575 cur
->bc_ptrs
[level
]--;
577 * Return value means the next level up has something to do.
583 xfs_btree_del_cursor(tcur
, XFS_BTREE_ERROR
);
588 * Insert one record/level. Return information to the caller
589 * allowing the next level up to proceed if necessary.
591 STATIC
int /* error */
593 xfs_btree_cur_t
*cur
, /* btree cursor */
594 int level
, /* level to insert record at */
595 xfs_agblock_t
*bnop
, /* i/o: block number inserted */
596 xfs_alloc_rec_t
*recp
, /* i/o: record data inserted */
597 xfs_btree_cur_t
**curp
, /* output: new cursor replacing cur */
598 int *stat
) /* output: success/failure */
600 xfs_agf_t
*agf
; /* allocation group freelist header */
601 xfs_alloc_block_t
*block
; /* btree block record/key lives in */
602 xfs_buf_t
*bp
; /* buffer for block */
603 int error
; /* error return value */
604 int i
; /* loop index */
605 xfs_alloc_key_t key
; /* key value being inserted */
606 xfs_alloc_key_t
*kp
; /* pointer to btree keys */
607 xfs_agblock_t nbno
; /* block number of allocated block */
608 xfs_btree_cur_t
*ncur
; /* new cursor to be used at next lvl */
609 xfs_alloc_key_t nkey
; /* new key value, from split */
610 xfs_alloc_rec_t nrec
; /* new record value, for caller */
611 int optr
; /* old ptr value */
612 xfs_alloc_ptr_t
*pp
; /* pointer to btree addresses */
613 int ptr
; /* index in btree block for this rec */
614 xfs_alloc_rec_t
*rp
; /* pointer to btree records */
616 ASSERT(be32_to_cpu(recp
->ar_blockcount
) > 0);
619 * GCC doesn't understand the (arguably complex) control flow in
620 * this function and complains about uninitialized structure fields
623 memset(&nrec
, 0, sizeof(nrec
));
626 * If we made it to the root level, allocate a new root block
629 if (level
>= cur
->bc_nlevels
) {
630 XFS_STATS_INC(xs_abt_insrec
);
631 if ((error
= xfs_alloc_newroot(cur
, &i
)))
638 * Make a key out of the record data to be inserted, and save it.
640 key
.ar_startblock
= recp
->ar_startblock
;
641 key
.ar_blockcount
= recp
->ar_blockcount
;
642 optr
= ptr
= cur
->bc_ptrs
[level
];
644 * If we're off the left edge, return failure.
650 XFS_STATS_INC(xs_abt_insrec
);
652 * Get pointers to the btree buffer and block.
654 bp
= cur
->bc_bufs
[level
];
655 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
657 if ((error
= xfs_btree_check_sblock(cur
, block
, level
, bp
)))
660 * Check that the new entry is being inserted in the right place.
662 if (ptr
<= be16_to_cpu(block
->bb_numrecs
)) {
664 rp
= XFS_ALLOC_REC_ADDR(block
, ptr
, cur
);
665 xfs_btree_check_rec(cur
->bc_btnum
, recp
, rp
);
667 kp
= XFS_ALLOC_KEY_ADDR(block
, ptr
, cur
);
668 xfs_btree_check_key(cur
->bc_btnum
, &key
, kp
);
673 ncur
= (xfs_btree_cur_t
*)0;
675 * If the block is full, we can't insert the new entry until we
676 * make the block un-full.
678 if (be16_to_cpu(block
->bb_numrecs
) == XFS_ALLOC_BLOCK_MAXRECS(level
, cur
)) {
680 * First, try shifting an entry to the right neighbor.
682 if ((error
= xfs_alloc_rshift(cur
, level
, &i
)))
688 * Next, try shifting an entry to the left neighbor.
691 if ((error
= xfs_alloc_lshift(cur
, level
, &i
)))
694 optr
= ptr
= cur
->bc_ptrs
[level
];
697 * Next, try splitting the current block in
698 * half. If this works we have to re-set our
699 * variables because we could be in a
700 * different block now.
702 if ((error
= xfs_alloc_split(cur
, level
, &nbno
,
706 bp
= cur
->bc_bufs
[level
];
707 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
710 xfs_btree_check_sblock(cur
,
714 ptr
= cur
->bc_ptrs
[level
];
715 nrec
.ar_startblock
= nkey
.ar_startblock
;
716 nrec
.ar_blockcount
= nkey
.ar_blockcount
;
719 * Otherwise the insert fails.
729 * At this point we know there's room for our new entry in the block
734 * It's a non-leaf entry. Make a hole for the new data
735 * in the key and ptr regions of the block.
737 kp
= XFS_ALLOC_KEY_ADDR(block
, 1, cur
);
738 pp
= XFS_ALLOC_PTR_ADDR(block
, 1, cur
);
740 for (i
= be16_to_cpu(block
->bb_numrecs
); i
>= ptr
; i
--) {
741 if ((error
= xfs_btree_check_sptr(cur
, be32_to_cpu(pp
[i
- 1]), level
)))
745 memmove(&kp
[ptr
], &kp
[ptr
- 1],
746 (be16_to_cpu(block
->bb_numrecs
) - ptr
+ 1) * sizeof(*kp
));
747 memmove(&pp
[ptr
], &pp
[ptr
- 1],
748 (be16_to_cpu(block
->bb_numrecs
) - ptr
+ 1) * sizeof(*pp
));
750 if ((error
= xfs_btree_check_sptr(cur
, *bnop
, level
)))
754 * Now stuff the new data in, bump numrecs and log the new data.
757 pp
[ptr
- 1] = cpu_to_be32(*bnop
);
758 be16_add(&block
->bb_numrecs
, 1);
759 xfs_alloc_log_keys(cur
, bp
, ptr
, be16_to_cpu(block
->bb_numrecs
));
760 xfs_alloc_log_ptrs(cur
, bp
, ptr
, be16_to_cpu(block
->bb_numrecs
));
762 if (ptr
< be16_to_cpu(block
->bb_numrecs
))
763 xfs_btree_check_key(cur
->bc_btnum
, kp
+ ptr
- 1,
768 * It's a leaf entry. Make a hole for the new record.
770 rp
= XFS_ALLOC_REC_ADDR(block
, 1, cur
);
771 memmove(&rp
[ptr
], &rp
[ptr
- 1],
772 (be16_to_cpu(block
->bb_numrecs
) - ptr
+ 1) * sizeof(*rp
));
774 * Now stuff the new record in, bump numrecs
775 * and log the new data.
777 rp
[ptr
- 1] = *recp
; /* INT_: struct copy */
778 be16_add(&block
->bb_numrecs
, 1);
779 xfs_alloc_log_recs(cur
, bp
, ptr
, be16_to_cpu(block
->bb_numrecs
));
781 if (ptr
< be16_to_cpu(block
->bb_numrecs
))
782 xfs_btree_check_rec(cur
->bc_btnum
, rp
+ ptr
- 1,
787 * Log the new number of records in the btree header.
789 xfs_alloc_log_block(cur
->bc_tp
, bp
, XFS_BB_NUMRECS
);
791 * If we inserted at the start of a block, update the parents' keys.
793 if (optr
== 1 && (error
= xfs_alloc_updkey(cur
, &key
, level
+ 1)))
796 * Look to see if the longest extent in the allocation group
797 * needs to be updated.
800 agf
= XFS_BUF_TO_AGF(cur
->bc_private
.a
.agbp
);
802 cur
->bc_btnum
== XFS_BTNUM_CNT
&&
803 be32_to_cpu(block
->bb_rightsib
) == NULLAGBLOCK
&&
804 be32_to_cpu(recp
->ar_blockcount
) > be32_to_cpu(agf
->agf_longest
)) {
806 * If this is a leaf in the by-size btree and there
807 * is no right sibling block and this block is bigger
808 * than the previous longest block, update it.
810 agf
->agf_longest
= recp
->ar_blockcount
;
811 cur
->bc_mp
->m_perag
[be32_to_cpu(agf
->agf_seqno
)].pagf_longest
812 = be32_to_cpu(recp
->ar_blockcount
);
813 xfs_alloc_log_agf(cur
->bc_tp
, cur
->bc_private
.a
.agbp
,
817 * Return the new block number, if any.
818 * If there is one, give back a record value and a cursor too.
821 if (nbno
!= NULLAGBLOCK
) {
822 *recp
= nrec
; /* INT_: struct copy */
823 *curp
= ncur
; /* INT_: struct copy */
830 * Log header fields from a btree block.
834 xfs_trans_t
*tp
, /* transaction pointer */
835 xfs_buf_t
*bp
, /* buffer containing btree block */
836 int fields
) /* mask of fields: XFS_BB_... */
838 int first
; /* first byte offset logged */
839 int last
; /* last byte offset logged */
840 static const short offsets
[] = { /* table of offsets */
841 offsetof(xfs_alloc_block_t
, bb_magic
),
842 offsetof(xfs_alloc_block_t
, bb_level
),
843 offsetof(xfs_alloc_block_t
, bb_numrecs
),
844 offsetof(xfs_alloc_block_t
, bb_leftsib
),
845 offsetof(xfs_alloc_block_t
, bb_rightsib
),
846 sizeof(xfs_alloc_block_t
)
849 xfs_btree_offsets(fields
, offsets
, XFS_BB_NUM_BITS
, &first
, &last
);
850 xfs_trans_log_buf(tp
, bp
, first
, last
);
854 * Log keys from a btree block (nonleaf).
858 xfs_btree_cur_t
*cur
, /* btree cursor */
859 xfs_buf_t
*bp
, /* buffer containing btree block */
860 int kfirst
, /* index of first key to log */
861 int klast
) /* index of last key to log */
863 xfs_alloc_block_t
*block
; /* btree block to log from */
864 int first
; /* first byte offset logged */
865 xfs_alloc_key_t
*kp
; /* key pointer in btree block */
866 int last
; /* last byte offset logged */
868 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
869 kp
= XFS_ALLOC_KEY_ADDR(block
, 1, cur
);
870 first
= (int)((xfs_caddr_t
)&kp
[kfirst
- 1] - (xfs_caddr_t
)block
);
871 last
= (int)(((xfs_caddr_t
)&kp
[klast
] - 1) - (xfs_caddr_t
)block
);
872 xfs_trans_log_buf(cur
->bc_tp
, bp
, first
, last
);
876 * Log block pointer fields from a btree block (nonleaf).
880 xfs_btree_cur_t
*cur
, /* btree cursor */
881 xfs_buf_t
*bp
, /* buffer containing btree block */
882 int pfirst
, /* index of first pointer to log */
883 int plast
) /* index of last pointer to log */
885 xfs_alloc_block_t
*block
; /* btree block to log from */
886 int first
; /* first byte offset logged */
887 int last
; /* last byte offset logged */
888 xfs_alloc_ptr_t
*pp
; /* block-pointer pointer in btree blk */
890 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
891 pp
= XFS_ALLOC_PTR_ADDR(block
, 1, cur
);
892 first
= (int)((xfs_caddr_t
)&pp
[pfirst
- 1] - (xfs_caddr_t
)block
);
893 last
= (int)(((xfs_caddr_t
)&pp
[plast
] - 1) - (xfs_caddr_t
)block
);
894 xfs_trans_log_buf(cur
->bc_tp
, bp
, first
, last
);
898 * Log records from a btree block (leaf).
902 xfs_btree_cur_t
*cur
, /* btree cursor */
903 xfs_buf_t
*bp
, /* buffer containing btree block */
904 int rfirst
, /* index of first record to log */
905 int rlast
) /* index of last record to log */
907 xfs_alloc_block_t
*block
; /* btree block to log from */
908 int first
; /* first byte offset logged */
909 int last
; /* last byte offset logged */
910 xfs_alloc_rec_t
*rp
; /* record pointer for btree block */
913 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
914 rp
= XFS_ALLOC_REC_ADDR(block
, 1, cur
);
920 agf
= XFS_BUF_TO_AGF(cur
->bc_private
.a
.agbp
);
921 for (p
= &rp
[rfirst
- 1]; p
<= &rp
[rlast
- 1]; p
++)
922 ASSERT(be32_to_cpu(p
->ar_startblock
) +
923 be32_to_cpu(p
->ar_blockcount
) <=
924 be32_to_cpu(agf
->agf_length
));
927 first
= (int)((xfs_caddr_t
)&rp
[rfirst
- 1] - (xfs_caddr_t
)block
);
928 last
= (int)(((xfs_caddr_t
)&rp
[rlast
] - 1) - (xfs_caddr_t
)block
);
929 xfs_trans_log_buf(cur
->bc_tp
, bp
, first
, last
);
933 * Lookup the record. The cursor is made to point to it, based on dir.
934 * Return 0 if can't find any such record, 1 for success.
936 STATIC
int /* error */
938 xfs_btree_cur_t
*cur
, /* btree cursor */
939 xfs_lookup_t dir
, /* <=, ==, or >= */
940 int *stat
) /* success/failure */
942 xfs_agblock_t agbno
; /* a.g. relative btree block number */
943 xfs_agnumber_t agno
; /* allocation group number */
944 xfs_alloc_block_t
*block
=NULL
; /* current btree block */
945 int diff
; /* difference for the current key */
946 int error
; /* error return value */
947 int keyno
=0; /* current key number */
948 int level
; /* level in the btree */
949 xfs_mount_t
*mp
; /* file system mount point */
951 XFS_STATS_INC(xs_abt_lookup
);
953 * Get the allocation group header, and the root block number.
958 xfs_agf_t
*agf
; /* a.g. freespace header */
960 agf
= XFS_BUF_TO_AGF(cur
->bc_private
.a
.agbp
);
961 agno
= be32_to_cpu(agf
->agf_seqno
);
962 agbno
= be32_to_cpu(agf
->agf_roots
[cur
->bc_btnum
]);
965 * Iterate over each level in the btree, starting at the root.
966 * For each level above the leaves, find the key we need, based
967 * on the lookup record, then follow the corresponding block
968 * pointer down to the next level.
970 for (level
= cur
->bc_nlevels
- 1, diff
= 1; level
>= 0; level
--) {
971 xfs_buf_t
*bp
; /* buffer pointer for btree block */
972 xfs_daddr_t d
; /* disk address of btree block */
975 * Get the disk address we're looking for.
977 d
= XFS_AGB_TO_DADDR(mp
, agno
, agbno
);
979 * If the old buffer at this level is for a different block,
980 * throw it away, otherwise just use it.
982 bp
= cur
->bc_bufs
[level
];
983 if (bp
&& XFS_BUF_ADDR(bp
) != d
)
987 * Need to get a new buffer. Read it, then
988 * set it in the cursor, releasing the old one.
990 if ((error
= xfs_btree_read_bufs(mp
, cur
->bc_tp
, agno
,
991 agbno
, 0, &bp
, XFS_ALLOC_BTREE_REF
)))
993 xfs_btree_setbuf(cur
, level
, bp
);
995 * Point to the btree block, now that we have the buffer
997 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
998 if ((error
= xfs_btree_check_sblock(cur
, block
, level
,
1002 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
1004 * If we already had a key match at a higher level, we know
1005 * we need to use the first entry in this block.
1010 * Otherwise we need to search this block. Do a binary search.
1013 int high
; /* high entry number */
1014 xfs_alloc_key_t
*kkbase
=NULL
;/* base of keys in block */
1015 xfs_alloc_rec_t
*krbase
=NULL
;/* base of records in block */
1016 int low
; /* low entry number */
1019 * Get a pointer to keys or records.
1022 kkbase
= XFS_ALLOC_KEY_ADDR(block
, 1, cur
);
1024 krbase
= XFS_ALLOC_REC_ADDR(block
, 1, cur
);
1026 * Set low and high entry numbers, 1-based.
1029 if (!(high
= be16_to_cpu(block
->bb_numrecs
))) {
1031 * If the block is empty, the tree must
1034 ASSERT(level
== 0 && cur
->bc_nlevels
== 1);
1035 cur
->bc_ptrs
[0] = dir
!= XFS_LOOKUP_LE
;
1040 * Binary search the block.
1042 while (low
<= high
) {
1043 xfs_extlen_t blockcount
; /* key value */
1044 xfs_agblock_t startblock
; /* key value */
1046 XFS_STATS_INC(xs_abt_compare
);
1048 * keyno is average of low and high.
1050 keyno
= (low
+ high
) >> 1;
1052 * Get startblock & blockcount.
1055 xfs_alloc_key_t
*kkp
;
1057 kkp
= kkbase
+ keyno
- 1;
1058 startblock
= be32_to_cpu(kkp
->ar_startblock
);
1059 blockcount
= be32_to_cpu(kkp
->ar_blockcount
);
1061 xfs_alloc_rec_t
*krp
;
1063 krp
= krbase
+ keyno
- 1;
1064 startblock
= be32_to_cpu(krp
->ar_startblock
);
1065 blockcount
= be32_to_cpu(krp
->ar_blockcount
);
1068 * Compute difference to get next direction.
1070 if (cur
->bc_btnum
== XFS_BTNUM_BNO
)
1071 diff
= (int)startblock
-
1072 (int)cur
->bc_rec
.a
.ar_startblock
;
1073 else if (!(diff
= (int)blockcount
-
1074 (int)cur
->bc_rec
.a
.ar_blockcount
))
1075 diff
= (int)startblock
-
1076 (int)cur
->bc_rec
.a
.ar_startblock
;
1078 * Less than, move right.
1083 * Greater than, move left.
1088 * Equal, we're done.
1095 * If there are more levels, set up for the next level
1096 * by getting the block number and filling in the cursor.
1100 * If we moved left, need the previous key number,
1101 * unless there isn't one.
1103 if (diff
> 0 && --keyno
< 1)
1105 agbno
= be32_to_cpu(*XFS_ALLOC_PTR_ADDR(block
, keyno
, cur
));
1107 if ((error
= xfs_btree_check_sptr(cur
, agbno
, level
)))
1110 cur
->bc_ptrs
[level
] = keyno
;
1114 * Done with the search.
1115 * See if we need to adjust the results.
1117 if (dir
!= XFS_LOOKUP_LE
&& diff
< 0) {
1120 * If ge search and we went off the end of the block, but it's
1121 * not the last block, we're in the wrong block.
1123 if (dir
== XFS_LOOKUP_GE
&&
1124 keyno
> be16_to_cpu(block
->bb_numrecs
) &&
1125 be32_to_cpu(block
->bb_rightsib
) != NULLAGBLOCK
) {
1128 cur
->bc_ptrs
[0] = keyno
;
1129 if ((error
= xfs_alloc_increment(cur
, 0, &i
)))
1131 XFS_WANT_CORRUPTED_RETURN(i
== 1);
1136 else if (dir
== XFS_LOOKUP_LE
&& diff
> 0)
1138 cur
->bc_ptrs
[0] = keyno
;
1140 * Return if we succeeded or not.
1142 if (keyno
== 0 || keyno
> be16_to_cpu(block
->bb_numrecs
))
1145 *stat
= ((dir
!= XFS_LOOKUP_EQ
) || (diff
== 0));
1150 * Move 1 record left from cur/level if possible.
1151 * Update cur to reflect the new path.
1153 STATIC
int /* error */
1155 xfs_btree_cur_t
*cur
, /* btree cursor */
1156 int level
, /* level to shift record on */
1157 int *stat
) /* success/failure */
1159 int error
; /* error return value */
1161 int i
; /* loop index */
1163 xfs_alloc_key_t key
; /* key value for leaf level upward */
1164 xfs_buf_t
*lbp
; /* buffer for left neighbor block */
1165 xfs_alloc_block_t
*left
; /* left neighbor btree block */
1166 int nrec
; /* new number of left block entries */
1167 xfs_buf_t
*rbp
; /* buffer for right (current) block */
1168 xfs_alloc_block_t
*right
; /* right (current) btree block */
1169 xfs_alloc_key_t
*rkp
=NULL
; /* key pointer for right block */
1170 xfs_alloc_ptr_t
*rpp
=NULL
; /* address pointer for right block */
1171 xfs_alloc_rec_t
*rrp
=NULL
; /* record pointer for right block */
1174 * Set up variables for this block as "right".
1176 rbp
= cur
->bc_bufs
[level
];
1177 right
= XFS_BUF_TO_ALLOC_BLOCK(rbp
);
1179 if ((error
= xfs_btree_check_sblock(cur
, right
, level
, rbp
)))
1183 * If we've got no left sibling then we can't shift an entry left.
1185 if (be32_to_cpu(right
->bb_leftsib
) == NULLAGBLOCK
) {
1190 * If the cursor entry is the one that would be moved, don't
1191 * do it... it's too complicated.
1193 if (cur
->bc_ptrs
[level
] <= 1) {
1198 * Set up the left neighbor as "left".
1200 if ((error
= xfs_btree_read_bufs(cur
->bc_mp
, cur
->bc_tp
,
1201 cur
->bc_private
.a
.agno
, be32_to_cpu(right
->bb_leftsib
),
1202 0, &lbp
, XFS_ALLOC_BTREE_REF
)))
1204 left
= XFS_BUF_TO_ALLOC_BLOCK(lbp
);
1205 if ((error
= xfs_btree_check_sblock(cur
, left
, level
, lbp
)))
1208 * If it's full, it can't take another entry.
1210 if (be16_to_cpu(left
->bb_numrecs
) == XFS_ALLOC_BLOCK_MAXRECS(level
, cur
)) {
1214 nrec
= be16_to_cpu(left
->bb_numrecs
) + 1;
1216 * If non-leaf, copy a key and a ptr to the left block.
1219 xfs_alloc_key_t
*lkp
; /* key pointer for left block */
1220 xfs_alloc_ptr_t
*lpp
; /* address pointer for left block */
1222 lkp
= XFS_ALLOC_KEY_ADDR(left
, nrec
, cur
);
1223 rkp
= XFS_ALLOC_KEY_ADDR(right
, 1, cur
);
1225 xfs_alloc_log_keys(cur
, lbp
, nrec
, nrec
);
1226 lpp
= XFS_ALLOC_PTR_ADDR(left
, nrec
, cur
);
1227 rpp
= XFS_ALLOC_PTR_ADDR(right
, 1, cur
);
1229 if ((error
= xfs_btree_check_sptr(cur
, be32_to_cpu(*rpp
), level
)))
1232 *lpp
= *rpp
; /* INT_: copy */
1233 xfs_alloc_log_ptrs(cur
, lbp
, nrec
, nrec
);
1234 xfs_btree_check_key(cur
->bc_btnum
, lkp
- 1, lkp
);
1237 * If leaf, copy a record to the left block.
1240 xfs_alloc_rec_t
*lrp
; /* record pointer for left block */
1242 lrp
= XFS_ALLOC_REC_ADDR(left
, nrec
, cur
);
1243 rrp
= XFS_ALLOC_REC_ADDR(right
, 1, cur
);
1245 xfs_alloc_log_recs(cur
, lbp
, nrec
, nrec
);
1246 xfs_btree_check_rec(cur
->bc_btnum
, lrp
- 1, lrp
);
1249 * Bump and log left's numrecs, decrement and log right's numrecs.
1251 be16_add(&left
->bb_numrecs
, 1);
1252 xfs_alloc_log_block(cur
->bc_tp
, lbp
, XFS_BB_NUMRECS
);
1253 be16_add(&right
->bb_numrecs
, -1);
1254 xfs_alloc_log_block(cur
->bc_tp
, rbp
, XFS_BB_NUMRECS
);
1256 * Slide the contents of right down one entry.
1260 for (i
= 0; i
< be16_to_cpu(right
->bb_numrecs
); i
++) {
1261 if ((error
= xfs_btree_check_sptr(cur
, be32_to_cpu(rpp
[i
+ 1]),
1266 memmove(rkp
, rkp
+ 1, be16_to_cpu(right
->bb_numrecs
) * sizeof(*rkp
));
1267 memmove(rpp
, rpp
+ 1, be16_to_cpu(right
->bb_numrecs
) * sizeof(*rpp
));
1268 xfs_alloc_log_keys(cur
, rbp
, 1, be16_to_cpu(right
->bb_numrecs
));
1269 xfs_alloc_log_ptrs(cur
, rbp
, 1, be16_to_cpu(right
->bb_numrecs
));
1271 memmove(rrp
, rrp
+ 1, be16_to_cpu(right
->bb_numrecs
) * sizeof(*rrp
));
1272 xfs_alloc_log_recs(cur
, rbp
, 1, be16_to_cpu(right
->bb_numrecs
));
1273 key
.ar_startblock
= rrp
->ar_startblock
;
1274 key
.ar_blockcount
= rrp
->ar_blockcount
;
1278 * Update the parent key values of right.
1280 if ((error
= xfs_alloc_updkey(cur
, rkp
, level
+ 1)))
1283 * Slide the cursor value left one.
1285 cur
->bc_ptrs
[level
]--;
1291 * Allocate a new root block, fill it in.
1293 STATIC
int /* error */
1295 xfs_btree_cur_t
*cur
, /* btree cursor */
1296 int *stat
) /* success/failure */
1298 int error
; /* error return value */
1299 xfs_agblock_t lbno
; /* left block number */
1300 xfs_buf_t
*lbp
; /* left btree buffer */
1301 xfs_alloc_block_t
*left
; /* left btree block */
1302 xfs_mount_t
*mp
; /* mount structure */
1303 xfs_agblock_t nbno
; /* new block number */
1304 xfs_buf_t
*nbp
; /* new (root) buffer */
1305 xfs_alloc_block_t
*new; /* new (root) btree block */
1306 int nptr
; /* new value for key index, 1 or 2 */
1307 xfs_agblock_t rbno
; /* right block number */
1308 xfs_buf_t
*rbp
; /* right btree buffer */
1309 xfs_alloc_block_t
*right
; /* right btree block */
1313 ASSERT(cur
->bc_nlevels
< XFS_AG_MAXLEVELS(mp
));
1315 * Get a buffer from the freelist blocks, for the new root.
1317 if ((error
= xfs_alloc_get_freelist(cur
->bc_tp
, cur
->bc_private
.a
.agbp
,
1321 * None available, we fail.
1323 if (nbno
== NULLAGBLOCK
) {
1327 xfs_trans_agbtree_delta(cur
->bc_tp
, 1);
1328 nbp
= xfs_btree_get_bufs(mp
, cur
->bc_tp
, cur
->bc_private
.a
.agno
, nbno
,
1330 new = XFS_BUF_TO_ALLOC_BLOCK(nbp
);
1332 * Set the root data in the a.g. freespace structure.
1335 xfs_agf_t
*agf
; /* a.g. freespace header */
1336 xfs_agnumber_t seqno
;
1338 agf
= XFS_BUF_TO_AGF(cur
->bc_private
.a
.agbp
);
1339 agf
->agf_roots
[cur
->bc_btnum
] = cpu_to_be32(nbno
);
1340 be32_add(&agf
->agf_levels
[cur
->bc_btnum
], 1);
1341 seqno
= be32_to_cpu(agf
->agf_seqno
);
1342 mp
->m_perag
[seqno
].pagf_levels
[cur
->bc_btnum
]++;
1343 xfs_alloc_log_agf(cur
->bc_tp
, cur
->bc_private
.a
.agbp
,
1344 XFS_AGF_ROOTS
| XFS_AGF_LEVELS
);
1347 * At the previous root level there are now two blocks: the old
1348 * root, and the new block generated when it was split.
1349 * We don't know which one the cursor is pointing at, so we
1350 * set up variables "left" and "right" for each case.
1352 lbp
= cur
->bc_bufs
[cur
->bc_nlevels
- 1];
1353 left
= XFS_BUF_TO_ALLOC_BLOCK(lbp
);
1355 if ((error
= xfs_btree_check_sblock(cur
, left
, cur
->bc_nlevels
- 1, lbp
)))
1358 if (be32_to_cpu(left
->bb_rightsib
) != NULLAGBLOCK
) {
1360 * Our block is left, pick up the right block.
1362 lbno
= XFS_DADDR_TO_AGBNO(mp
, XFS_BUF_ADDR(lbp
));
1363 rbno
= be32_to_cpu(left
->bb_rightsib
);
1364 if ((error
= xfs_btree_read_bufs(mp
, cur
->bc_tp
,
1365 cur
->bc_private
.a
.agno
, rbno
, 0, &rbp
,
1366 XFS_ALLOC_BTREE_REF
)))
1368 right
= XFS_BUF_TO_ALLOC_BLOCK(rbp
);
1369 if ((error
= xfs_btree_check_sblock(cur
, right
,
1370 cur
->bc_nlevels
- 1, rbp
)))
1375 * Our block is right, pick up the left block.
1379 rbno
= XFS_DADDR_TO_AGBNO(mp
, XFS_BUF_ADDR(rbp
));
1380 lbno
= be32_to_cpu(right
->bb_leftsib
);
1381 if ((error
= xfs_btree_read_bufs(mp
, cur
->bc_tp
,
1382 cur
->bc_private
.a
.agno
, lbno
, 0, &lbp
,
1383 XFS_ALLOC_BTREE_REF
)))
1385 left
= XFS_BUF_TO_ALLOC_BLOCK(lbp
);
1386 if ((error
= xfs_btree_check_sblock(cur
, left
,
1387 cur
->bc_nlevels
- 1, lbp
)))
1392 * Fill in the new block's btree header and log it.
1394 new->bb_magic
= cpu_to_be32(xfs_magics
[cur
->bc_btnum
]);
1395 new->bb_level
= cpu_to_be16(cur
->bc_nlevels
);
1396 new->bb_numrecs
= cpu_to_be16(2);
1397 new->bb_leftsib
= cpu_to_be32(NULLAGBLOCK
);
1398 new->bb_rightsib
= cpu_to_be32(NULLAGBLOCK
);
1399 xfs_alloc_log_block(cur
->bc_tp
, nbp
, XFS_BB_ALL_BITS
);
1400 ASSERT(lbno
!= NULLAGBLOCK
&& rbno
!= NULLAGBLOCK
);
1402 * Fill in the key data in the new root.
1405 xfs_alloc_key_t
*kp
; /* btree key pointer */
1407 kp
= XFS_ALLOC_KEY_ADDR(new, 1, cur
);
1408 if (be16_to_cpu(left
->bb_level
) > 0) {
1409 kp
[0] = *XFS_ALLOC_KEY_ADDR(left
, 1, cur
); /* INT_: structure copy */
1410 kp
[1] = *XFS_ALLOC_KEY_ADDR(right
, 1, cur
);/* INT_: structure copy */
1412 xfs_alloc_rec_t
*rp
; /* btree record pointer */
1414 rp
= XFS_ALLOC_REC_ADDR(left
, 1, cur
);
1415 kp
[0].ar_startblock
= rp
->ar_startblock
;
1416 kp
[0].ar_blockcount
= rp
->ar_blockcount
;
1417 rp
= XFS_ALLOC_REC_ADDR(right
, 1, cur
);
1418 kp
[1].ar_startblock
= rp
->ar_startblock
;
1419 kp
[1].ar_blockcount
= rp
->ar_blockcount
;
1422 xfs_alloc_log_keys(cur
, nbp
, 1, 2);
1424 * Fill in the pointer data in the new root.
1427 xfs_alloc_ptr_t
*pp
; /* btree address pointer */
1429 pp
= XFS_ALLOC_PTR_ADDR(new, 1, cur
);
1430 pp
[0] = cpu_to_be32(lbno
);
1431 pp
[1] = cpu_to_be32(rbno
);
1433 xfs_alloc_log_ptrs(cur
, nbp
, 1, 2);
1435 * Fix up the cursor.
1437 xfs_btree_setbuf(cur
, cur
->bc_nlevels
, nbp
);
1438 cur
->bc_ptrs
[cur
->bc_nlevels
] = nptr
;
1445 * Move 1 record right from cur/level if possible.
1446 * Update cur to reflect the new path.
1448 STATIC
int /* error */
1450 xfs_btree_cur_t
*cur
, /* btree cursor */
1451 int level
, /* level to shift record on */
1452 int *stat
) /* success/failure */
1454 int error
; /* error return value */
1455 int i
; /* loop index */
1456 xfs_alloc_key_t key
; /* key value for leaf level upward */
1457 xfs_buf_t
*lbp
; /* buffer for left (current) block */
1458 xfs_alloc_block_t
*left
; /* left (current) btree block */
1459 xfs_buf_t
*rbp
; /* buffer for right neighbor block */
1460 xfs_alloc_block_t
*right
; /* right neighbor btree block */
1461 xfs_alloc_key_t
*rkp
; /* key pointer for right block */
1462 xfs_btree_cur_t
*tcur
; /* temporary cursor */
1465 * Set up variables for this block as "left".
1467 lbp
= cur
->bc_bufs
[level
];
1468 left
= XFS_BUF_TO_ALLOC_BLOCK(lbp
);
1470 if ((error
= xfs_btree_check_sblock(cur
, left
, level
, lbp
)))
1474 * If we've got no right sibling then we can't shift an entry right.
1476 if (be32_to_cpu(left
->bb_rightsib
) == NULLAGBLOCK
) {
1481 * If the cursor entry is the one that would be moved, don't
1482 * do it... it's too complicated.
1484 if (cur
->bc_ptrs
[level
] >= be16_to_cpu(left
->bb_numrecs
)) {
1489 * Set up the right neighbor as "right".
1491 if ((error
= xfs_btree_read_bufs(cur
->bc_mp
, cur
->bc_tp
,
1492 cur
->bc_private
.a
.agno
, be32_to_cpu(left
->bb_rightsib
),
1493 0, &rbp
, XFS_ALLOC_BTREE_REF
)))
1495 right
= XFS_BUF_TO_ALLOC_BLOCK(rbp
);
1496 if ((error
= xfs_btree_check_sblock(cur
, right
, level
, rbp
)))
1499 * If it's full, it can't take another entry.
1501 if (be16_to_cpu(right
->bb_numrecs
) == XFS_ALLOC_BLOCK_MAXRECS(level
, cur
)) {
1506 * Make a hole at the start of the right neighbor block, then
1507 * copy the last left block entry to the hole.
1510 xfs_alloc_key_t
*lkp
; /* key pointer for left block */
1511 xfs_alloc_ptr_t
*lpp
; /* address pointer for left block */
1512 xfs_alloc_ptr_t
*rpp
; /* address pointer for right block */
1514 lkp
= XFS_ALLOC_KEY_ADDR(left
, be16_to_cpu(left
->bb_numrecs
), cur
);
1515 lpp
= XFS_ALLOC_PTR_ADDR(left
, be16_to_cpu(left
->bb_numrecs
), cur
);
1516 rkp
= XFS_ALLOC_KEY_ADDR(right
, 1, cur
);
1517 rpp
= XFS_ALLOC_PTR_ADDR(right
, 1, cur
);
1519 for (i
= be16_to_cpu(right
->bb_numrecs
) - 1; i
>= 0; i
--) {
1520 if ((error
= xfs_btree_check_sptr(cur
, be32_to_cpu(rpp
[i
]), level
)))
1524 memmove(rkp
+ 1, rkp
, be16_to_cpu(right
->bb_numrecs
) * sizeof(*rkp
));
1525 memmove(rpp
+ 1, rpp
, be16_to_cpu(right
->bb_numrecs
) * sizeof(*rpp
));
1527 if ((error
= xfs_btree_check_sptr(cur
, be32_to_cpu(*lpp
), level
)))
1530 *rkp
= *lkp
; /* INT_: copy */
1531 *rpp
= *lpp
; /* INT_: copy */
1532 xfs_alloc_log_keys(cur
, rbp
, 1, be16_to_cpu(right
->bb_numrecs
) + 1);
1533 xfs_alloc_log_ptrs(cur
, rbp
, 1, be16_to_cpu(right
->bb_numrecs
) + 1);
1534 xfs_btree_check_key(cur
->bc_btnum
, rkp
, rkp
+ 1);
1536 xfs_alloc_rec_t
*lrp
; /* record pointer for left block */
1537 xfs_alloc_rec_t
*rrp
; /* record pointer for right block */
1539 lrp
= XFS_ALLOC_REC_ADDR(left
, be16_to_cpu(left
->bb_numrecs
), cur
);
1540 rrp
= XFS_ALLOC_REC_ADDR(right
, 1, cur
);
1541 memmove(rrp
+ 1, rrp
, be16_to_cpu(right
->bb_numrecs
) * sizeof(*rrp
));
1543 xfs_alloc_log_recs(cur
, rbp
, 1, be16_to_cpu(right
->bb_numrecs
) + 1);
1544 key
.ar_startblock
= rrp
->ar_startblock
;
1545 key
.ar_blockcount
= rrp
->ar_blockcount
;
1547 xfs_btree_check_rec(cur
->bc_btnum
, rrp
, rrp
+ 1);
1550 * Decrement and log left's numrecs, bump and log right's numrecs.
1552 be16_add(&left
->bb_numrecs
, -1);
1553 xfs_alloc_log_block(cur
->bc_tp
, lbp
, XFS_BB_NUMRECS
);
1554 be16_add(&right
->bb_numrecs
, 1);
1555 xfs_alloc_log_block(cur
->bc_tp
, rbp
, XFS_BB_NUMRECS
);
1557 * Using a temporary cursor, update the parent key values of the
1558 * block on the right.
1560 if ((error
= xfs_btree_dup_cursor(cur
, &tcur
)))
1562 i
= xfs_btree_lastrec(tcur
, level
);
1563 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1564 if ((error
= xfs_alloc_increment(tcur
, level
, &i
)) ||
1565 (error
= xfs_alloc_updkey(tcur
, rkp
, level
+ 1)))
1567 xfs_btree_del_cursor(tcur
, XFS_BTREE_NOERROR
);
1571 xfs_btree_del_cursor(tcur
, XFS_BTREE_ERROR
);
1576 * Split cur/level block in half.
1577 * Return new block number and its first record (to be inserted into parent).
1579 STATIC
int /* error */
1581 xfs_btree_cur_t
*cur
, /* btree cursor */
1582 int level
, /* level to split */
1583 xfs_agblock_t
*bnop
, /* output: block number allocated */
1584 xfs_alloc_key_t
*keyp
, /* output: first key of new block */
1585 xfs_btree_cur_t
**curp
, /* output: new cursor */
1586 int *stat
) /* success/failure */
1588 int error
; /* error return value */
1589 int i
; /* loop index/record number */
1590 xfs_agblock_t lbno
; /* left (current) block number */
1591 xfs_buf_t
*lbp
; /* buffer for left block */
1592 xfs_alloc_block_t
*left
; /* left (current) btree block */
1593 xfs_agblock_t rbno
; /* right (new) block number */
1594 xfs_buf_t
*rbp
; /* buffer for right block */
1595 xfs_alloc_block_t
*right
; /* right (new) btree block */
1598 * Allocate the new block from the freelist.
1599 * If we can't do it, we're toast. Give up.
1601 if ((error
= xfs_alloc_get_freelist(cur
->bc_tp
, cur
->bc_private
.a
.agbp
,
1604 if (rbno
== NULLAGBLOCK
) {
1608 xfs_trans_agbtree_delta(cur
->bc_tp
, 1);
1609 rbp
= xfs_btree_get_bufs(cur
->bc_mp
, cur
->bc_tp
, cur
->bc_private
.a
.agno
,
1612 * Set up the new block as "right".
1614 right
= XFS_BUF_TO_ALLOC_BLOCK(rbp
);
1616 * "Left" is the current (according to the cursor) block.
1618 lbp
= cur
->bc_bufs
[level
];
1619 left
= XFS_BUF_TO_ALLOC_BLOCK(lbp
);
1621 if ((error
= xfs_btree_check_sblock(cur
, left
, level
, lbp
)))
1625 * Fill in the btree header for the new block.
1627 right
->bb_magic
= cpu_to_be32(xfs_magics
[cur
->bc_btnum
]);
1628 right
->bb_level
= left
->bb_level
;
1629 right
->bb_numrecs
= cpu_to_be16(be16_to_cpu(left
->bb_numrecs
) / 2);
1631 * Make sure that if there's an odd number of entries now, that
1632 * each new block will have the same number of entries.
1634 if ((be16_to_cpu(left
->bb_numrecs
) & 1) &&
1635 cur
->bc_ptrs
[level
] <= be16_to_cpu(right
->bb_numrecs
) + 1)
1636 be16_add(&right
->bb_numrecs
, 1);
1637 i
= be16_to_cpu(left
->bb_numrecs
) - be16_to_cpu(right
->bb_numrecs
) + 1;
1639 * For non-leaf blocks, copy keys and addresses over to the new block.
1642 xfs_alloc_key_t
*lkp
; /* left btree key pointer */
1643 xfs_alloc_ptr_t
*lpp
; /* left btree address pointer */
1644 xfs_alloc_key_t
*rkp
; /* right btree key pointer */
1645 xfs_alloc_ptr_t
*rpp
; /* right btree address pointer */
1647 lkp
= XFS_ALLOC_KEY_ADDR(left
, i
, cur
);
1648 lpp
= XFS_ALLOC_PTR_ADDR(left
, i
, cur
);
1649 rkp
= XFS_ALLOC_KEY_ADDR(right
, 1, cur
);
1650 rpp
= XFS_ALLOC_PTR_ADDR(right
, 1, cur
);
1652 for (i
= 0; i
< be16_to_cpu(right
->bb_numrecs
); i
++) {
1653 if ((error
= xfs_btree_check_sptr(cur
, be32_to_cpu(lpp
[i
]), level
)))
1657 memcpy(rkp
, lkp
, be16_to_cpu(right
->bb_numrecs
) * sizeof(*rkp
));
1658 memcpy(rpp
, lpp
, be16_to_cpu(right
->bb_numrecs
) * sizeof(*rpp
));
1659 xfs_alloc_log_keys(cur
, rbp
, 1, be16_to_cpu(right
->bb_numrecs
));
1660 xfs_alloc_log_ptrs(cur
, rbp
, 1, be16_to_cpu(right
->bb_numrecs
));
1664 * For leaf blocks, copy records over to the new block.
1667 xfs_alloc_rec_t
*lrp
; /* left btree record pointer */
1668 xfs_alloc_rec_t
*rrp
; /* right btree record pointer */
1670 lrp
= XFS_ALLOC_REC_ADDR(left
, i
, cur
);
1671 rrp
= XFS_ALLOC_REC_ADDR(right
, 1, cur
);
1672 memcpy(rrp
, lrp
, be16_to_cpu(right
->bb_numrecs
) * sizeof(*rrp
));
1673 xfs_alloc_log_recs(cur
, rbp
, 1, be16_to_cpu(right
->bb_numrecs
));
1674 keyp
->ar_startblock
= rrp
->ar_startblock
;
1675 keyp
->ar_blockcount
= rrp
->ar_blockcount
;
1678 * Find the left block number by looking in the buffer.
1679 * Adjust numrecs, sibling pointers.
1681 lbno
= XFS_DADDR_TO_AGBNO(cur
->bc_mp
, XFS_BUF_ADDR(lbp
));
1682 be16_add(&left
->bb_numrecs
, -(be16_to_cpu(right
->bb_numrecs
)));
1683 right
->bb_rightsib
= left
->bb_rightsib
;
1684 left
->bb_rightsib
= cpu_to_be32(rbno
);
1685 right
->bb_leftsib
= cpu_to_be32(lbno
);
1686 xfs_alloc_log_block(cur
->bc_tp
, rbp
, XFS_BB_ALL_BITS
);
1687 xfs_alloc_log_block(cur
->bc_tp
, lbp
, XFS_BB_NUMRECS
| XFS_BB_RIGHTSIB
);
1689 * If there's a block to the new block's right, make that block
1690 * point back to right instead of to left.
1692 if (be32_to_cpu(right
->bb_rightsib
) != NULLAGBLOCK
) {
1693 xfs_alloc_block_t
*rrblock
; /* rr btree block */
1694 xfs_buf_t
*rrbp
; /* buffer for rrblock */
1696 if ((error
= xfs_btree_read_bufs(cur
->bc_mp
, cur
->bc_tp
,
1697 cur
->bc_private
.a
.agno
, be32_to_cpu(right
->bb_rightsib
), 0,
1698 &rrbp
, XFS_ALLOC_BTREE_REF
)))
1700 rrblock
= XFS_BUF_TO_ALLOC_BLOCK(rrbp
);
1701 if ((error
= xfs_btree_check_sblock(cur
, rrblock
, level
, rrbp
)))
1703 rrblock
->bb_leftsib
= cpu_to_be32(rbno
);
1704 xfs_alloc_log_block(cur
->bc_tp
, rrbp
, XFS_BB_LEFTSIB
);
1707 * If the cursor is really in the right block, move it there.
1708 * If it's just pointing past the last entry in left, then we'll
1709 * insert there, so don't change anything in that case.
1711 if (cur
->bc_ptrs
[level
] > be16_to_cpu(left
->bb_numrecs
) + 1) {
1712 xfs_btree_setbuf(cur
, level
, rbp
);
1713 cur
->bc_ptrs
[level
] -= be16_to_cpu(left
->bb_numrecs
);
1716 * If there are more levels, we'll need another cursor which refers to
1717 * the right block, no matter where this cursor was.
1719 if (level
+ 1 < cur
->bc_nlevels
) {
1720 if ((error
= xfs_btree_dup_cursor(cur
, curp
)))
1722 (*curp
)->bc_ptrs
[level
+ 1]++;
1730 * Update keys at all levels from here to the root along the cursor's path.
1732 STATIC
int /* error */
1734 xfs_btree_cur_t
*cur
, /* btree cursor */
1735 xfs_alloc_key_t
*keyp
, /* new key value to update to */
1736 int level
) /* starting level for update */
1738 int ptr
; /* index of key in block */
1741 * Go up the tree from this level toward the root.
1742 * At each level, update the key value to the value input.
1743 * Stop when we reach a level where the cursor isn't pointing
1744 * at the first entry in the block.
1746 for (ptr
= 1; ptr
== 1 && level
< cur
->bc_nlevels
; level
++) {
1747 xfs_alloc_block_t
*block
; /* btree block */
1748 xfs_buf_t
*bp
; /* buffer for block */
1750 int error
; /* error return value */
1752 xfs_alloc_key_t
*kp
; /* ptr to btree block keys */
1754 bp
= cur
->bc_bufs
[level
];
1755 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
1757 if ((error
= xfs_btree_check_sblock(cur
, block
, level
, bp
)))
1760 ptr
= cur
->bc_ptrs
[level
];
1761 kp
= XFS_ALLOC_KEY_ADDR(block
, ptr
, cur
);
1763 xfs_alloc_log_keys(cur
, bp
, ptr
, ptr
);
1769 * Externally visible routines.
1773 * Decrement cursor by one record at the level.
1774 * For nonzero levels the leaf-ward information is untouched.
1777 xfs_alloc_decrement(
1778 xfs_btree_cur_t
*cur
, /* btree cursor */
1779 int level
, /* level in btree, 0 is leaf */
1780 int *stat
) /* success/failure */
1782 xfs_alloc_block_t
*block
; /* btree block */
1783 int error
; /* error return value */
1784 int lev
; /* btree level */
1786 ASSERT(level
< cur
->bc_nlevels
);
1788 * Read-ahead to the left at this level.
1790 xfs_btree_readahead(cur
, level
, XFS_BTCUR_LEFTRA
);
1792 * Decrement the ptr at this level. If we're still in the block
1795 if (--cur
->bc_ptrs
[level
] > 0) {
1800 * Get a pointer to the btree block.
1802 block
= XFS_BUF_TO_ALLOC_BLOCK(cur
->bc_bufs
[level
]);
1804 if ((error
= xfs_btree_check_sblock(cur
, block
, level
,
1805 cur
->bc_bufs
[level
])))
1809 * If we just went off the left edge of the tree, return failure.
1811 if (be32_to_cpu(block
->bb_leftsib
) == NULLAGBLOCK
) {
1816 * March up the tree decrementing pointers.
1817 * Stop when we don't go off the left edge of a block.
1819 for (lev
= level
+ 1; lev
< cur
->bc_nlevels
; lev
++) {
1820 if (--cur
->bc_ptrs
[lev
] > 0)
1823 * Read-ahead the left block, we're going to read it
1826 xfs_btree_readahead(cur
, lev
, XFS_BTCUR_LEFTRA
);
1829 * If we went off the root then we are seriously confused.
1831 ASSERT(lev
< cur
->bc_nlevels
);
1833 * Now walk back down the tree, fixing up the cursor's buffer
1834 * pointers and key numbers.
1836 for (block
= XFS_BUF_TO_ALLOC_BLOCK(cur
->bc_bufs
[lev
]); lev
> level
; ) {
1837 xfs_agblock_t agbno
; /* block number of btree block */
1838 xfs_buf_t
*bp
; /* buffer pointer for block */
1840 agbno
= be32_to_cpu(*XFS_ALLOC_PTR_ADDR(block
, cur
->bc_ptrs
[lev
], cur
));
1841 if ((error
= xfs_btree_read_bufs(cur
->bc_mp
, cur
->bc_tp
,
1842 cur
->bc_private
.a
.agno
, agbno
, 0, &bp
,
1843 XFS_ALLOC_BTREE_REF
)))
1846 xfs_btree_setbuf(cur
, lev
, bp
);
1847 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
1848 if ((error
= xfs_btree_check_sblock(cur
, block
, lev
, bp
)))
1850 cur
->bc_ptrs
[lev
] = be16_to_cpu(block
->bb_numrecs
);
1857 * Delete the record pointed to by cur.
1858 * The cursor refers to the place where the record was (could be inserted)
1859 * when the operation returns.
1863 xfs_btree_cur_t
*cur
, /* btree cursor */
1864 int *stat
) /* success/failure */
1866 int error
; /* error return value */
1867 int i
; /* result code */
1868 int level
; /* btree level */
1871 * Go up the tree, starting at leaf level.
1872 * If 2 is returned then a join was done; go to the next level.
1873 * Otherwise we are done.
1875 for (level
= 0, i
= 2; i
== 2; level
++) {
1876 if ((error
= xfs_alloc_delrec(cur
, level
, &i
)))
1880 for (level
= 1; level
< cur
->bc_nlevels
; level
++) {
1881 if (cur
->bc_ptrs
[level
] == 0) {
1882 if ((error
= xfs_alloc_decrement(cur
, level
, &i
)))
1893 * Get the data from the pointed-to record.
1897 xfs_btree_cur_t
*cur
, /* btree cursor */
1898 xfs_agblock_t
*bno
, /* output: starting block of extent */
1899 xfs_extlen_t
*len
, /* output: length of extent */
1900 int *stat
) /* output: success/failure */
1902 xfs_alloc_block_t
*block
; /* btree block */
1904 int error
; /* error return value */
1906 int ptr
; /* record number */
1908 ptr
= cur
->bc_ptrs
[0];
1909 block
= XFS_BUF_TO_ALLOC_BLOCK(cur
->bc_bufs
[0]);
1911 if ((error
= xfs_btree_check_sblock(cur
, block
, 0, cur
->bc_bufs
[0])))
1915 * Off the right end or left end, return failure.
1917 if (ptr
> be16_to_cpu(block
->bb_numrecs
) || ptr
<= 0) {
1922 * Point to the record and extract its data.
1925 xfs_alloc_rec_t
*rec
; /* record data */
1927 rec
= XFS_ALLOC_REC_ADDR(block
, ptr
, cur
);
1928 *bno
= be32_to_cpu(rec
->ar_startblock
);
1929 *len
= be32_to_cpu(rec
->ar_blockcount
);
1936 * Increment cursor by one record at the level.
1937 * For nonzero levels the leaf-ward information is untouched.
1940 xfs_alloc_increment(
1941 xfs_btree_cur_t
*cur
, /* btree cursor */
1942 int level
, /* level in btree, 0 is leaf */
1943 int *stat
) /* success/failure */
1945 xfs_alloc_block_t
*block
; /* btree block */
1946 xfs_buf_t
*bp
; /* tree block buffer */
1947 int error
; /* error return value */
1948 int lev
; /* btree level */
1950 ASSERT(level
< cur
->bc_nlevels
);
1952 * Read-ahead to the right at this level.
1954 xfs_btree_readahead(cur
, level
, XFS_BTCUR_RIGHTRA
);
1956 * Get a pointer to the btree block.
1958 bp
= cur
->bc_bufs
[level
];
1959 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
1961 if ((error
= xfs_btree_check_sblock(cur
, block
, level
, bp
)))
1965 * Increment the ptr at this level. If we're still in the block
1968 if (++cur
->bc_ptrs
[level
] <= be16_to_cpu(block
->bb_numrecs
)) {
1973 * If we just went off the right edge of the tree, return failure.
1975 if (be32_to_cpu(block
->bb_rightsib
) == NULLAGBLOCK
) {
1980 * March up the tree incrementing pointers.
1981 * Stop when we don't go off the right edge of a block.
1983 for (lev
= level
+ 1; lev
< cur
->bc_nlevels
; lev
++) {
1984 bp
= cur
->bc_bufs
[lev
];
1985 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
1987 if ((error
= xfs_btree_check_sblock(cur
, block
, lev
, bp
)))
1990 if (++cur
->bc_ptrs
[lev
] <= be16_to_cpu(block
->bb_numrecs
))
1993 * Read-ahead the right block, we're going to read it
1996 xfs_btree_readahead(cur
, lev
, XFS_BTCUR_RIGHTRA
);
1999 * If we went off the root then we are seriously confused.
2001 ASSERT(lev
< cur
->bc_nlevels
);
2003 * Now walk back down the tree, fixing up the cursor's buffer
2004 * pointers and key numbers.
2006 for (bp
= cur
->bc_bufs
[lev
], block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
2008 xfs_agblock_t agbno
; /* block number of btree block */
2010 agbno
= be32_to_cpu(*XFS_ALLOC_PTR_ADDR(block
, cur
->bc_ptrs
[lev
], cur
));
2011 if ((error
= xfs_btree_read_bufs(cur
->bc_mp
, cur
->bc_tp
,
2012 cur
->bc_private
.a
.agno
, agbno
, 0, &bp
,
2013 XFS_ALLOC_BTREE_REF
)))
2016 xfs_btree_setbuf(cur
, lev
, bp
);
2017 block
= XFS_BUF_TO_ALLOC_BLOCK(bp
);
2018 if ((error
= xfs_btree_check_sblock(cur
, block
, lev
, bp
)))
2020 cur
->bc_ptrs
[lev
] = 1;
2027 * Insert the current record at the point referenced by cur.
2028 * The cursor may be inconsistent on return if splits have been done.
2032 xfs_btree_cur_t
*cur
, /* btree cursor */
2033 int *stat
) /* success/failure */
2035 int error
; /* error return value */
2036 int i
; /* result value, 0 for failure */
2037 int level
; /* current level number in btree */
2038 xfs_agblock_t nbno
; /* new block number (split result) */
2039 xfs_btree_cur_t
*ncur
; /* new cursor (split result) */
2040 xfs_alloc_rec_t nrec
; /* record being inserted this level */
2041 xfs_btree_cur_t
*pcur
; /* previous level's cursor */
2045 nrec
.ar_startblock
= cpu_to_be32(cur
->bc_rec
.a
.ar_startblock
);
2046 nrec
.ar_blockcount
= cpu_to_be32(cur
->bc_rec
.a
.ar_blockcount
);
2047 ncur
= (xfs_btree_cur_t
*)0;
2050 * Loop going up the tree, starting at the leaf level.
2051 * Stop when we don't get a split block, that must mean that
2052 * the insert is finished with this level.
2056 * Insert nrec/nbno into this level of the tree.
2057 * Note if we fail, nbno will be null.
2059 if ((error
= xfs_alloc_insrec(pcur
, level
++, &nbno
, &nrec
, &ncur
,
2062 xfs_btree_del_cursor(pcur
, XFS_BTREE_ERROR
);
2066 * See if the cursor we just used is trash.
2067 * Can't trash the caller's cursor, but otherwise we should
2068 * if ncur is a new cursor or we're about to be done.
2070 if (pcur
!= cur
&& (ncur
|| nbno
== NULLAGBLOCK
)) {
2071 cur
->bc_nlevels
= pcur
->bc_nlevels
;
2072 xfs_btree_del_cursor(pcur
, XFS_BTREE_NOERROR
);
2075 * If we got a new cursor, switch to it.
2079 ncur
= (xfs_btree_cur_t
*)0;
2081 } while (nbno
!= NULLAGBLOCK
);
2087 * Lookup the record equal to [bno, len] in the btree given by cur.
2090 xfs_alloc_lookup_eq(
2091 xfs_btree_cur_t
*cur
, /* btree cursor */
2092 xfs_agblock_t bno
, /* starting block of extent */
2093 xfs_extlen_t len
, /* length of extent */
2094 int *stat
) /* success/failure */
2096 cur
->bc_rec
.a
.ar_startblock
= bno
;
2097 cur
->bc_rec
.a
.ar_blockcount
= len
;
2098 return xfs_alloc_lookup(cur
, XFS_LOOKUP_EQ
, stat
);
2102 * Lookup the first record greater than or equal to [bno, len]
2103 * in the btree given by cur.
2106 xfs_alloc_lookup_ge(
2107 xfs_btree_cur_t
*cur
, /* btree cursor */
2108 xfs_agblock_t bno
, /* starting block of extent */
2109 xfs_extlen_t len
, /* length of extent */
2110 int *stat
) /* success/failure */
2112 cur
->bc_rec
.a
.ar_startblock
= bno
;
2113 cur
->bc_rec
.a
.ar_blockcount
= len
;
2114 return xfs_alloc_lookup(cur
, XFS_LOOKUP_GE
, stat
);
2118 * Lookup the first record less than or equal to [bno, len]
2119 * in the btree given by cur.
2122 xfs_alloc_lookup_le(
2123 xfs_btree_cur_t
*cur
, /* btree cursor */
2124 xfs_agblock_t bno
, /* starting block of extent */
2125 xfs_extlen_t len
, /* length of extent */
2126 int *stat
) /* success/failure */
2128 cur
->bc_rec
.a
.ar_startblock
= bno
;
2129 cur
->bc_rec
.a
.ar_blockcount
= len
;
2130 return xfs_alloc_lookup(cur
, XFS_LOOKUP_LE
, stat
);
2134 * Update the record referred to by cur, to the value given by [bno, len].
2135 * This either works (return 0) or gets an EFSCORRUPTED error.
2139 xfs_btree_cur_t
*cur
, /* btree cursor */
2140 xfs_agblock_t bno
, /* starting block of extent */
2141 xfs_extlen_t len
) /* length of extent */
2143 xfs_alloc_block_t
*block
; /* btree block to update */
2144 int error
; /* error return value */
2145 int ptr
; /* current record number (updating) */
2149 * Pick up the a.g. freelist struct and the current block.
2151 block
= XFS_BUF_TO_ALLOC_BLOCK(cur
->bc_bufs
[0]);
2153 if ((error
= xfs_btree_check_sblock(cur
, block
, 0, cur
->bc_bufs
[0])))
2157 * Get the address of the rec to be updated.
2159 ptr
= cur
->bc_ptrs
[0];
2161 xfs_alloc_rec_t
*rp
; /* pointer to updated record */
2163 rp
= XFS_ALLOC_REC_ADDR(block
, ptr
, cur
);
2165 * Fill in the new contents and log them.
2167 rp
->ar_startblock
= cpu_to_be32(bno
);
2168 rp
->ar_blockcount
= cpu_to_be32(len
);
2169 xfs_alloc_log_recs(cur
, cur
->bc_bufs
[0], ptr
, ptr
);
2172 * If it's the by-size btree and it's the last leaf block and
2173 * it's the last record... then update the size of the longest
2174 * extent in the a.g., which we cache in the a.g. freelist header.
2176 if (cur
->bc_btnum
== XFS_BTNUM_CNT
&&
2177 be32_to_cpu(block
->bb_rightsib
) == NULLAGBLOCK
&&
2178 ptr
== be16_to_cpu(block
->bb_numrecs
)) {
2179 xfs_agf_t
*agf
; /* a.g. freespace header */
2180 xfs_agnumber_t seqno
;
2182 agf
= XFS_BUF_TO_AGF(cur
->bc_private
.a
.agbp
);
2183 seqno
= be32_to_cpu(agf
->agf_seqno
);
2184 cur
->bc_mp
->m_perag
[seqno
].pagf_longest
= len
;
2185 agf
->agf_longest
= cpu_to_be32(len
);
2186 xfs_alloc_log_agf(cur
->bc_tp
, cur
->bc_private
.a
.agbp
,
2190 * Updating first record in leaf. Pass new key value up to our parent.
2193 xfs_alloc_key_t key
; /* key containing [bno, len] */
2195 key
.ar_startblock
= cpu_to_be32(bno
);
2196 key
.ar_blockcount
= cpu_to_be32(len
);
2197 if ((error
= xfs_alloc_updkey(cur
, &key
, 1)))