2 * Copyright (c) 2000-2002,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_inode_item.h"
38 #include "xfs_btree.h"
39 #include "xfs_btree_trace.h"
40 #include "xfs_ialloc.h"
41 #include "xfs_error.h"
44 * Cursor allocation zone.
46 kmem_zone_t *xfs_btree_cur_zone;
49 * Btree magic numbers.
51 const __uint32_t xfs_magics[XFS_BTNUM_MAX] = {
52 XFS_ABTB_MAGIC, XFS_ABTC_MAGIC, XFS_BMAP_MAGIC, XFS_IBT_MAGIC
61 * Debug routine: check that keys are in the right order.
65 xfs_btnum_t btnum, /* btree identifier */
66 void *ak1, /* pointer to left (lower) key */
67 void *ak2) /* pointer to right (higher) key */
76 ASSERT(be32_to_cpu(k1->ar_startblock) < be32_to_cpu(k2->ar_startblock));
85 ASSERT(be32_to_cpu(k1->ar_blockcount) < be32_to_cpu(k2->ar_blockcount) ||
86 (k1->ar_blockcount == k2->ar_blockcount &&
87 be32_to_cpu(k1->ar_startblock) < be32_to_cpu(k2->ar_startblock)));
90 case XFS_BTNUM_BMAP: {
96 ASSERT(be64_to_cpu(k1->br_startoff) < be64_to_cpu(k2->br_startoff));
105 ASSERT(be32_to_cpu(k1->ir_startino) < be32_to_cpu(k2->ir_startino));
114 * Debug routine: check that records are in the right order.
118 xfs_btnum_t btnum, /* btree identifier */
119 void *ar1, /* pointer to left (lower) record */
120 void *ar2) /* pointer to right (higher) record */
123 case XFS_BTNUM_BNO: {
129 ASSERT(be32_to_cpu(r1->ar_startblock) +
130 be32_to_cpu(r1->ar_blockcount) <=
131 be32_to_cpu(r2->ar_startblock));
134 case XFS_BTNUM_CNT: {
140 ASSERT(be32_to_cpu(r1->ar_blockcount) < be32_to_cpu(r2->ar_blockcount) ||
141 (r1->ar_blockcount == r2->ar_blockcount &&
142 be32_to_cpu(r1->ar_startblock) < be32_to_cpu(r2->ar_startblock)));
145 case XFS_BTNUM_BMAP: {
151 ASSERT(xfs_bmbt_disk_get_startoff(r1) +
152 xfs_bmbt_disk_get_blockcount(r1) <=
153 xfs_bmbt_disk_get_startoff(r2));
156 case XFS_BTNUM_INO: {
162 ASSERT(be32_to_cpu(r1->ir_startino) + XFS_INODES_PER_CHUNK <=
163 be32_to_cpu(r2->ir_startino));
172 int /* error (0 or EFSCORRUPTED) */
173 xfs_btree_check_lblock(
174 struct xfs_btree_cur *cur, /* btree cursor */
175 struct xfs_btree_lblock *block, /* btree long form block pointer */
176 int level, /* level of the btree block */
177 struct xfs_buf *bp) /* buffer for block, if any */
179 int lblock_ok; /* block passes checks */
180 struct xfs_mount *mp; /* file system mount point */
184 be32_to_cpu(block->bb_magic) == xfs_magics[cur->bc_btnum] &&
185 be16_to_cpu(block->bb_level) == level &&
186 be16_to_cpu(block->bb_numrecs) <=
187 cur->bc_ops->get_maxrecs(cur, level) &&
189 (be64_to_cpu(block->bb_leftsib) == NULLDFSBNO ||
190 XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_leftsib))) &&
191 block->bb_rightsib &&
192 (be64_to_cpu(block->bb_rightsib) == NULLDFSBNO ||
193 XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_rightsib)));
194 if (unlikely(XFS_TEST_ERROR(!lblock_ok, mp,
195 XFS_ERRTAG_BTREE_CHECK_LBLOCK,
196 XFS_RANDOM_BTREE_CHECK_LBLOCK))) {
198 xfs_buftrace("LBTREE ERROR", bp);
199 XFS_ERROR_REPORT("xfs_btree_check_lblock", XFS_ERRLEVEL_LOW,
201 return XFS_ERROR(EFSCORRUPTED);
206 int /* error (0 or EFSCORRUPTED) */
207 xfs_btree_check_sblock(
208 struct xfs_btree_cur *cur, /* btree cursor */
209 struct xfs_btree_sblock *block, /* btree short form block pointer */
210 int level, /* level of the btree block */
211 struct xfs_buf *bp) /* buffer containing block */
213 struct xfs_buf *agbp; /* buffer for ag. freespace struct */
214 struct xfs_agf *agf; /* ag. freespace structure */
215 xfs_agblock_t agflen; /* native ag. freespace length */
216 int sblock_ok; /* block passes checks */
218 agbp = cur->bc_private.a.agbp;
219 agf = XFS_BUF_TO_AGF(agbp);
220 agflen = be32_to_cpu(agf->agf_length);
222 be32_to_cpu(block->bb_magic) == xfs_magics[cur->bc_btnum] &&
223 be16_to_cpu(block->bb_level) == level &&
224 be16_to_cpu(block->bb_numrecs) <=
225 cur->bc_ops->get_maxrecs(cur, level) &&
226 (be32_to_cpu(block->bb_leftsib) == NULLAGBLOCK ||
227 be32_to_cpu(block->bb_leftsib) < agflen) &&
229 (be32_to_cpu(block->bb_rightsib) == NULLAGBLOCK ||
230 be32_to_cpu(block->bb_rightsib) < agflen) &&
232 if (unlikely(XFS_TEST_ERROR(!sblock_ok, cur->bc_mp,
233 XFS_ERRTAG_BTREE_CHECK_SBLOCK,
234 XFS_RANDOM_BTREE_CHECK_SBLOCK))) {
236 xfs_buftrace("SBTREE ERROR", bp);
237 XFS_ERROR_REPORT("xfs_btree_check_sblock", XFS_ERRLEVEL_LOW,
239 return XFS_ERROR(EFSCORRUPTED);
245 * Debug routine: check that block header is ok.
248 xfs_btree_check_block(
249 struct xfs_btree_cur *cur, /* btree cursor */
250 struct xfs_btree_block *block, /* generic btree block pointer */
251 int level, /* level of the btree block */
252 struct xfs_buf *bp) /* buffer containing block, if any */
254 if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
255 return xfs_btree_check_lblock(cur,
256 (struct xfs_btree_lblock *)block, level, bp);
258 return xfs_btree_check_sblock(cur,
259 (struct xfs_btree_sblock *)block, level, bp);
264 * Check that (long) pointer is ok.
266 int /* error (0 or EFSCORRUPTED) */
267 xfs_btree_check_lptr(
268 struct xfs_btree_cur *cur, /* btree cursor */
269 xfs_dfsbno_t bno, /* btree block disk address */
270 int level) /* btree block level */
272 XFS_WANT_CORRUPTED_RETURN(
275 XFS_FSB_SANITY_CHECK(cur->bc_mp, bno));
280 * Check that (short) pointer is ok.
282 int /* error (0 or EFSCORRUPTED) */
283 xfs_btree_check_sptr(
284 struct xfs_btree_cur *cur, /* btree cursor */
285 xfs_agblock_t bno, /* btree block disk address */
286 int level) /* btree block level */
288 xfs_agblock_t agblocks = cur->bc_mp->m_sb.sb_agblocks;
290 XFS_WANT_CORRUPTED_RETURN(
292 bno != NULLAGBLOCK &&
299 * Check that block ptr is ok.
301 int /* error (0 or EFSCORRUPTED) */
303 struct xfs_btree_cur *cur, /* btree cursor */
304 union xfs_btree_ptr *ptr, /* btree block disk address */
305 int index, /* offset from ptr to check */
306 int level) /* btree block level */
308 if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
309 return xfs_btree_check_lptr(cur,
310 be64_to_cpu((&ptr->l)[index]), level);
312 return xfs_btree_check_sptr(cur,
313 be32_to_cpu((&ptr->s)[index]), level);
318 * Delete the btree cursor.
321 xfs_btree_del_cursor(
322 xfs_btree_cur_t *cur, /* btree cursor */
323 int error) /* del because of error */
325 int i; /* btree level */
328 * Clear the buffer pointers, and release the buffers.
329 * If we're doing this in the face of an error, we
330 * need to make sure to inspect all of the entries
331 * in the bc_bufs array for buffers to be unlocked.
332 * This is because some of the btree code works from
333 * level n down to 0, and if we get an error along
334 * the way we won't have initialized all the entries
337 for (i = 0; i < cur->bc_nlevels; i++) {
339 xfs_btree_setbuf(cur, i, NULL);
344 * Can't free a bmap cursor without having dealt with the
345 * allocated indirect blocks' accounting.
347 ASSERT(cur->bc_btnum != XFS_BTNUM_BMAP ||
348 cur->bc_private.b.allocated == 0);
352 kmem_zone_free(xfs_btree_cur_zone, cur);
356 * Duplicate the btree cursor.
357 * Allocate a new one, copy the record, re-get the buffers.
360 xfs_btree_dup_cursor(
361 xfs_btree_cur_t *cur, /* input cursor */
362 xfs_btree_cur_t **ncur) /* output cursor */
364 xfs_buf_t *bp; /* btree block's buffer pointer */
365 int error; /* error return value */
366 int i; /* level number of btree block */
367 xfs_mount_t *mp; /* mount structure for filesystem */
368 xfs_btree_cur_t *new; /* new cursor value */
369 xfs_trans_t *tp; /* transaction pointer, can be NULL */
375 * Allocate a new cursor like the old one.
377 new = cur->bc_ops->dup_cursor(cur);
380 * Copy the record currently in the cursor.
382 new->bc_rec = cur->bc_rec;
385 * For each level current, re-get the buffer and copy the ptr value.
387 for (i = 0; i < new->bc_nlevels; i++) {
388 new->bc_ptrs[i] = cur->bc_ptrs[i];
389 new->bc_ra[i] = cur->bc_ra[i];
390 if ((bp = cur->bc_bufs[i])) {
391 if ((error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp,
392 XFS_BUF_ADDR(bp), mp->m_bsize, 0, &bp))) {
393 xfs_btree_del_cursor(new, error);
397 new->bc_bufs[i] = bp;
399 ASSERT(!XFS_BUF_GETERROR(bp));
401 new->bc_bufs[i] = NULL;
408 * XFS btree block layout and addressing:
410 * There are two types of blocks in the btree: leaf and non-leaf blocks.
412 * The leaf record start with a header then followed by records containing
413 * the values. A non-leaf block also starts with the same header, and
414 * then first contains lookup keys followed by an equal number of pointers
415 * to the btree blocks at the previous level.
417 * +--------+-------+-------+-------+-------+-------+-------+
418 * Leaf: | header | rec 1 | rec 2 | rec 3 | rec 4 | rec 5 | rec N |
419 * +--------+-------+-------+-------+-------+-------+-------+
421 * +--------+-------+-------+-------+-------+-------+-------+
422 * Non-Leaf: | header | key 1 | key 2 | key N | ptr 1 | ptr 2 | ptr N |
423 * +--------+-------+-------+-------+-------+-------+-------+
425 * The header is called struct xfs_btree_block for reasons better left unknown
426 * and comes in different versions for short (32bit) and long (64bit) block
427 * pointers. The record and key structures are defined by the btree instances
428 * and opaque to the btree core. The block pointers are simple disk endian
429 * integers, available in a short (32bit) and long (64bit) variant.
431 * The helpers below calculate the offset of a given record, key or pointer
432 * into a btree block (xfs_btree_*_offset) or return a pointer to the given
433 * record, key or pointer (xfs_btree_*_addr). Note that all addressing
434 * inside the btree block is done using indices starting at one, not zero!
438 * Return size of the btree block header for this btree instance.
440 static inline size_t xfs_btree_block_len(struct xfs_btree_cur *cur)
442 return (cur->bc_flags & XFS_BTREE_LONG_PTRS) ?
443 sizeof(struct xfs_btree_lblock) :
444 sizeof(struct xfs_btree_sblock);
448 * Return size of btree block pointers for this btree instance.
450 static inline size_t xfs_btree_ptr_len(struct xfs_btree_cur *cur)
452 return (cur->bc_flags & XFS_BTREE_LONG_PTRS) ?
453 sizeof(__be64) : sizeof(__be32);
457 * Calculate offset of the n-th record in a btree block.
460 xfs_btree_rec_offset(
461 struct xfs_btree_cur *cur,
464 return xfs_btree_block_len(cur) +
465 (n - 1) * cur->bc_ops->rec_len;
469 * Calculate offset of the n-th key in a btree block.
472 xfs_btree_key_offset(
473 struct xfs_btree_cur *cur,
476 return xfs_btree_block_len(cur) +
477 (n - 1) * cur->bc_ops->key_len;
481 * Calculate offset of the n-th block pointer in a btree block.
484 xfs_btree_ptr_offset(
485 struct xfs_btree_cur *cur,
489 return xfs_btree_block_len(cur) +
490 cur->bc_ops->get_maxrecs(cur, level) * cur->bc_ops->key_len +
491 (n - 1) * xfs_btree_ptr_len(cur);
495 * Return a pointer to the n-th record in the btree block.
497 STATIC union xfs_btree_rec *
499 struct xfs_btree_cur *cur,
501 struct xfs_btree_block *block)
503 return (union xfs_btree_rec *)
504 ((char *)block + xfs_btree_rec_offset(cur, n));
508 * Return a pointer to the n-th key in the btree block.
510 STATIC union xfs_btree_key *
512 struct xfs_btree_cur *cur,
514 struct xfs_btree_block *block)
516 return (union xfs_btree_key *)
517 ((char *)block + xfs_btree_key_offset(cur, n));
521 * Return a pointer to the n-th block pointer in the btree block.
523 STATIC union xfs_btree_ptr *
525 struct xfs_btree_cur *cur,
527 struct xfs_btree_block *block)
529 int level = xfs_btree_get_level(block);
531 ASSERT(block->bb_level != 0);
533 return (union xfs_btree_ptr *)
534 ((char *)block + xfs_btree_ptr_offset(cur, n, level));
538 * Get a the root block which is stored in the inode.
540 * For now this btree implementation assumes the btree root is always
541 * stored in the if_broot field of an inode fork.
543 STATIC struct xfs_btree_block *
545 struct xfs_btree_cur *cur)
547 struct xfs_ifork *ifp;
549 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip, cur->bc_private.b.whichfork);
550 return (struct xfs_btree_block *)ifp->if_broot;
554 * Retrieve the block pointer from the cursor at the given level.
555 * This may be an inode btree root or from a buffer.
557 STATIC struct xfs_btree_block * /* generic btree block pointer */
559 struct xfs_btree_cur *cur, /* btree cursor */
560 int level, /* level in btree */
561 struct xfs_buf **bpp) /* buffer containing the block */
563 if ((cur->bc_flags & XFS_BTREE_ROOT_IN_INODE) &&
564 (level == cur->bc_nlevels - 1)) {
566 return xfs_btree_get_iroot(cur);
569 *bpp = cur->bc_bufs[level];
570 return XFS_BUF_TO_BLOCK(*bpp);
574 * Get a buffer for the block, return it with no data read.
575 * Long-form addressing.
577 xfs_buf_t * /* buffer for fsbno */
579 xfs_mount_t *mp, /* file system mount point */
580 xfs_trans_t *tp, /* transaction pointer */
581 xfs_fsblock_t fsbno, /* file system block number */
582 uint lock) /* lock flags for get_buf */
584 xfs_buf_t *bp; /* buffer pointer (return value) */
585 xfs_daddr_t d; /* real disk block address */
587 ASSERT(fsbno != NULLFSBLOCK);
588 d = XFS_FSB_TO_DADDR(mp, fsbno);
589 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, mp->m_bsize, lock);
591 ASSERT(!XFS_BUF_GETERROR(bp));
596 * Get a buffer for the block, return it with no data read.
597 * Short-form addressing.
599 xfs_buf_t * /* buffer for agno/agbno */
601 xfs_mount_t *mp, /* file system mount point */
602 xfs_trans_t *tp, /* transaction pointer */
603 xfs_agnumber_t agno, /* allocation group number */
604 xfs_agblock_t agbno, /* allocation group block number */
605 uint lock) /* lock flags for get_buf */
607 xfs_buf_t *bp; /* buffer pointer (return value) */
608 xfs_daddr_t d; /* real disk block address */
610 ASSERT(agno != NULLAGNUMBER);
611 ASSERT(agbno != NULLAGBLOCK);
612 d = XFS_AGB_TO_DADDR(mp, agno, agbno);
613 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, mp->m_bsize, lock);
615 ASSERT(!XFS_BUF_GETERROR(bp));
620 * Check for the cursor referring to the last block at the given level.
622 int /* 1=is last block, 0=not last block */
623 xfs_btree_islastblock(
624 xfs_btree_cur_t *cur, /* btree cursor */
625 int level) /* level to check */
627 xfs_btree_block_t *block; /* generic btree block pointer */
628 xfs_buf_t *bp; /* buffer containing block */
630 block = xfs_btree_get_block(cur, level, &bp);
631 xfs_btree_check_block(cur, block, level, bp);
632 if (cur->bc_flags & XFS_BTREE_LONG_PTRS)
633 return be64_to_cpu(block->bb_u.l.bb_rightsib) == NULLDFSBNO;
635 return be32_to_cpu(block->bb_u.s.bb_rightsib) == NULLAGBLOCK;
639 * Change the cursor to point to the first record at the given level.
640 * Other levels are unaffected.
642 int /* success=1, failure=0 */
644 xfs_btree_cur_t *cur, /* btree cursor */
645 int level) /* level to change */
647 xfs_btree_block_t *block; /* generic btree block pointer */
648 xfs_buf_t *bp; /* buffer containing block */
651 * Get the block pointer for this level.
653 block = xfs_btree_get_block(cur, level, &bp);
654 xfs_btree_check_block(cur, block, level, bp);
656 * It's empty, there is no such record.
658 if (!block->bb_numrecs)
661 * Set the ptr value to 1, that's the first record/key.
663 cur->bc_ptrs[level] = 1;
668 * Change the cursor to point to the last record in the current block
669 * at the given level. Other levels are unaffected.
671 int /* success=1, failure=0 */
673 xfs_btree_cur_t *cur, /* btree cursor */
674 int level) /* level to change */
676 xfs_btree_block_t *block; /* generic btree block pointer */
677 xfs_buf_t *bp; /* buffer containing block */
680 * Get the block pointer for this level.
682 block = xfs_btree_get_block(cur, level, &bp);
683 xfs_btree_check_block(cur, block, level, bp);
685 * It's empty, there is no such record.
687 if (!block->bb_numrecs)
690 * Set the ptr value to numrecs, that's the last record/key.
692 cur->bc_ptrs[level] = be16_to_cpu(block->bb_numrecs);
697 * Compute first and last byte offsets for the fields given.
698 * Interprets the offsets table, which contains struct field offsets.
702 __int64_t fields, /* bitmask of fields */
703 const short *offsets, /* table of field offsets */
704 int nbits, /* number of bits to inspect */
705 int *first, /* output: first byte offset */
706 int *last) /* output: last byte offset */
708 int i; /* current bit number */
709 __int64_t imask; /* mask for current bit number */
713 * Find the lowest bit, so the first byte offset.
715 for (i = 0, imask = 1LL; ; i++, imask <<= 1) {
716 if (imask & fields) {
722 * Find the highest bit, so the last byte offset.
724 for (i = nbits - 1, imask = 1LL << i; ; i--, imask >>= 1) {
725 if (imask & fields) {
726 *last = offsets[i + 1] - 1;
733 * Get a buffer for the block, return it read in.
734 * Long-form addressing.
738 xfs_mount_t *mp, /* file system mount point */
739 xfs_trans_t *tp, /* transaction pointer */
740 xfs_fsblock_t fsbno, /* file system block number */
741 uint lock, /* lock flags for read_buf */
742 xfs_buf_t **bpp, /* buffer for fsbno */
743 int refval) /* ref count value for buffer */
745 xfs_buf_t *bp; /* return value */
746 xfs_daddr_t d; /* real disk block address */
749 ASSERT(fsbno != NULLFSBLOCK);
750 d = XFS_FSB_TO_DADDR(mp, fsbno);
751 if ((error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, d,
752 mp->m_bsize, lock, &bp))) {
755 ASSERT(!bp || !XFS_BUF_GETERROR(bp));
757 XFS_BUF_SET_VTYPE_REF(bp, B_FS_MAP, refval);
764 * Get a buffer for the block, return it read in.
765 * Short-form addressing.
769 xfs_mount_t *mp, /* file system mount point */
770 xfs_trans_t *tp, /* transaction pointer */
771 xfs_agnumber_t agno, /* allocation group number */
772 xfs_agblock_t agbno, /* allocation group block number */
773 uint lock, /* lock flags for read_buf */
774 xfs_buf_t **bpp, /* buffer for agno/agbno */
775 int refval) /* ref count value for buffer */
777 xfs_buf_t *bp; /* return value */
778 xfs_daddr_t d; /* real disk block address */
781 ASSERT(agno != NULLAGNUMBER);
782 ASSERT(agbno != NULLAGBLOCK);
783 d = XFS_AGB_TO_DADDR(mp, agno, agbno);
784 if ((error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, d,
785 mp->m_bsize, lock, &bp))) {
788 ASSERT(!bp || !XFS_BUF_GETERROR(bp));
791 case XFS_ALLOC_BTREE_REF:
792 XFS_BUF_SET_VTYPE_REF(bp, B_FS_MAP, refval);
794 case XFS_INO_BTREE_REF:
795 XFS_BUF_SET_VTYPE_REF(bp, B_FS_INOMAP, refval);
804 * Read-ahead the block, don't wait for it, don't return a buffer.
805 * Long-form addressing.
809 xfs_btree_reada_bufl(
810 xfs_mount_t *mp, /* file system mount point */
811 xfs_fsblock_t fsbno, /* file system block number */
812 xfs_extlen_t count) /* count of filesystem blocks */
816 ASSERT(fsbno != NULLFSBLOCK);
817 d = XFS_FSB_TO_DADDR(mp, fsbno);
818 xfs_baread(mp->m_ddev_targp, d, mp->m_bsize * count);
822 * Read-ahead the block, don't wait for it, don't return a buffer.
823 * Short-form addressing.
827 xfs_btree_reada_bufs(
828 xfs_mount_t *mp, /* file system mount point */
829 xfs_agnumber_t agno, /* allocation group number */
830 xfs_agblock_t agbno, /* allocation group block number */
831 xfs_extlen_t count) /* count of filesystem blocks */
835 ASSERT(agno != NULLAGNUMBER);
836 ASSERT(agbno != NULLAGBLOCK);
837 d = XFS_AGB_TO_DADDR(mp, agno, agbno);
838 xfs_baread(mp->m_ddev_targp, d, mp->m_bsize * count);
842 xfs_btree_readahead_lblock(
843 struct xfs_btree_cur *cur,
845 struct xfs_btree_block *block)
848 xfs_fsblock_t left = be64_to_cpu(block->bb_u.l.bb_leftsib);
849 xfs_fsblock_t right = be64_to_cpu(block->bb_u.l.bb_rightsib);
851 if ((lr & XFS_BTCUR_LEFTRA) && left != NULLDFSBNO) {
852 xfs_btree_reada_bufl(cur->bc_mp, left, 1);
856 if ((lr & XFS_BTCUR_RIGHTRA) && right != NULLDFSBNO) {
857 xfs_btree_reada_bufl(cur->bc_mp, right, 1);
865 xfs_btree_readahead_sblock(
866 struct xfs_btree_cur *cur,
868 struct xfs_btree_block *block)
871 xfs_agblock_t left = be32_to_cpu(block->bb_u.s.bb_leftsib);
872 xfs_agblock_t right = be32_to_cpu(block->bb_u.s.bb_rightsib);
875 if ((lr & XFS_BTCUR_LEFTRA) && left != NULLAGBLOCK) {
876 xfs_btree_reada_bufs(cur->bc_mp, cur->bc_private.a.agno,
881 if ((lr & XFS_BTCUR_RIGHTRA) && right != NULLAGBLOCK) {
882 xfs_btree_reada_bufs(cur->bc_mp, cur->bc_private.a.agno,
891 * Read-ahead btree blocks, at the given level.
892 * Bits in lr are set from XFS_BTCUR_{LEFT,RIGHT}RA.
896 struct xfs_btree_cur *cur, /* btree cursor */
897 int lev, /* level in btree */
898 int lr) /* left/right bits */
900 struct xfs_btree_block *block;
903 * No readahead needed if we are at the root level and the
904 * btree root is stored in the inode.
906 if ((cur->bc_flags & XFS_BTREE_ROOT_IN_INODE) &&
907 (lev == cur->bc_nlevels - 1))
910 if ((cur->bc_ra[lev] | lr) == cur->bc_ra[lev])
913 cur->bc_ra[lev] |= lr;
914 block = XFS_BUF_TO_BLOCK(cur->bc_bufs[lev]);
916 if (cur->bc_flags & XFS_BTREE_LONG_PTRS)
917 return xfs_btree_readahead_lblock(cur, lr, block);
918 return xfs_btree_readahead_sblock(cur, lr, block);
922 * Set the buffer for level "lev" in the cursor to bp, releasing
923 * any previous buffer.
927 xfs_btree_cur_t *cur, /* btree cursor */
928 int lev, /* level in btree */
929 xfs_buf_t *bp) /* new buffer to set */
931 xfs_btree_block_t *b; /* btree block */
932 xfs_buf_t *obp; /* old buffer pointer */
934 obp = cur->bc_bufs[lev];
936 xfs_trans_brelse(cur->bc_tp, obp);
937 cur->bc_bufs[lev] = bp;
941 b = XFS_BUF_TO_BLOCK(bp);
942 if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
943 if (be64_to_cpu(b->bb_u.l.bb_leftsib) == NULLDFSBNO)
944 cur->bc_ra[lev] |= XFS_BTCUR_LEFTRA;
945 if (be64_to_cpu(b->bb_u.l.bb_rightsib) == NULLDFSBNO)
946 cur->bc_ra[lev] |= XFS_BTCUR_RIGHTRA;
948 if (be32_to_cpu(b->bb_u.s.bb_leftsib) == NULLAGBLOCK)
949 cur->bc_ra[lev] |= XFS_BTCUR_LEFTRA;
950 if (be32_to_cpu(b->bb_u.s.bb_rightsib) == NULLAGBLOCK)
951 cur->bc_ra[lev] |= XFS_BTCUR_RIGHTRA;
956 xfs_btree_ptr_is_null(
957 struct xfs_btree_cur *cur,
958 union xfs_btree_ptr *ptr)
960 if (cur->bc_flags & XFS_BTREE_LONG_PTRS)
961 return be64_to_cpu(ptr->l) == NULLFSBLOCK;
963 return be32_to_cpu(ptr->s) == NULLAGBLOCK;
967 * Get/set/init sibling pointers
970 xfs_btree_get_sibling(
971 struct xfs_btree_cur *cur,
972 struct xfs_btree_block *block,
973 union xfs_btree_ptr *ptr,
976 ASSERT(lr == XFS_BB_LEFTSIB || lr == XFS_BB_RIGHTSIB);
978 if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
979 if (lr == XFS_BB_RIGHTSIB)
980 ptr->l = block->bb_u.l.bb_rightsib;
982 ptr->l = block->bb_u.l.bb_leftsib;
984 if (lr == XFS_BB_RIGHTSIB)
985 ptr->s = block->bb_u.s.bb_rightsib;
987 ptr->s = block->bb_u.s.bb_leftsib;
992 xfs_btree_set_sibling(
993 struct xfs_btree_cur *cur,
994 struct xfs_btree_block *block,
995 union xfs_btree_ptr *ptr,
998 ASSERT(lr == XFS_BB_LEFTSIB || lr == XFS_BB_RIGHTSIB);
1000 if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
1001 if (lr == XFS_BB_RIGHTSIB)
1002 block->bb_u.l.bb_rightsib = ptr->l;
1004 block->bb_u.l.bb_leftsib = ptr->l;
1006 if (lr == XFS_BB_RIGHTSIB)
1007 block->bb_u.s.bb_rightsib = ptr->s;
1009 block->bb_u.s.bb_leftsib = ptr->s;
1014 xfs_btree_init_block(
1015 struct xfs_btree_cur *cur,
1018 struct xfs_btree_block *new) /* new block */
1020 new->bb_magic = cpu_to_be32(xfs_magics[cur->bc_btnum]);
1021 new->bb_level = cpu_to_be16(level);
1022 new->bb_numrecs = cpu_to_be16(numrecs);
1024 if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
1025 new->bb_u.l.bb_leftsib = cpu_to_be64(NULLFSBLOCK);
1026 new->bb_u.l.bb_rightsib = cpu_to_be64(NULLFSBLOCK);
1028 new->bb_u.s.bb_leftsib = cpu_to_be32(NULLAGBLOCK);
1029 new->bb_u.s.bb_rightsib = cpu_to_be32(NULLAGBLOCK);
1034 * Return true if ptr is the last record in the btree and
1035 * we need to track updateѕ to this record. The decision
1036 * will be further refined in the update_lastrec method.
1039 xfs_btree_is_lastrec(
1040 struct xfs_btree_cur *cur,
1041 struct xfs_btree_block *block,
1044 union xfs_btree_ptr ptr;
1048 if (!(cur->bc_flags & XFS_BTREE_LASTREC_UPDATE))
1051 xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_RIGHTSIB);
1052 if (!xfs_btree_ptr_is_null(cur, &ptr))
1058 xfs_btree_buf_to_ptr(
1059 struct xfs_btree_cur *cur,
1061 union xfs_btree_ptr *ptr)
1063 if (cur->bc_flags & XFS_BTREE_LONG_PTRS)
1064 ptr->l = cpu_to_be64(XFS_DADDR_TO_FSB(cur->bc_mp,
1067 ptr->s = cpu_to_be32(XFS_DADDR_TO_AGBNO(cur->bc_mp,
1073 xfs_btree_ptr_to_daddr(
1074 struct xfs_btree_cur *cur,
1075 union xfs_btree_ptr *ptr)
1077 if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
1078 ASSERT(be64_to_cpu(ptr->l) != NULLFSBLOCK);
1080 return XFS_FSB_TO_DADDR(cur->bc_mp, be64_to_cpu(ptr->l));
1082 ASSERT(cur->bc_private.a.agno != NULLAGNUMBER);
1083 ASSERT(be32_to_cpu(ptr->s) != NULLAGBLOCK);
1085 return XFS_AGB_TO_DADDR(cur->bc_mp, cur->bc_private.a.agno,
1086 be32_to_cpu(ptr->s));
1092 struct xfs_btree_cur *cur,
1095 switch (cur->bc_btnum) {
1098 XFS_BUF_SET_VTYPE_REF(*bpp, B_FS_MAP, XFS_ALLOC_BTREE_REF);
1101 XFS_BUF_SET_VTYPE_REF(*bpp, B_FS_INOMAP, XFS_INO_BTREE_REF);
1103 case XFS_BTNUM_BMAP:
1104 XFS_BUF_SET_VTYPE_REF(*bpp, B_FS_MAP, XFS_BMAP_BTREE_REF);
1112 xfs_btree_get_buf_block(
1113 struct xfs_btree_cur *cur,
1114 union xfs_btree_ptr *ptr,
1116 struct xfs_btree_block **block,
1117 struct xfs_buf **bpp)
1119 struct xfs_mount *mp = cur->bc_mp;
1122 /* need to sort out how callers deal with failures first */
1123 ASSERT(!(flags & XFS_BUF_TRYLOCK));
1125 d = xfs_btree_ptr_to_daddr(cur, ptr);
1126 *bpp = xfs_trans_get_buf(cur->bc_tp, mp->m_ddev_targp, d,
1127 mp->m_bsize, flags);
1130 ASSERT(!XFS_BUF_GETERROR(*bpp));
1132 *block = XFS_BUF_TO_BLOCK(*bpp);
1137 * Read in the buffer at the given ptr and return the buffer and
1138 * the block pointer within the buffer.
1141 xfs_btree_read_buf_block(
1142 struct xfs_btree_cur *cur,
1143 union xfs_btree_ptr *ptr,
1146 struct xfs_btree_block **block,
1147 struct xfs_buf **bpp)
1149 struct xfs_mount *mp = cur->bc_mp;
1153 /* need to sort out how callers deal with failures first */
1154 ASSERT(!(flags & XFS_BUF_TRYLOCK));
1156 d = xfs_btree_ptr_to_daddr(cur, ptr);
1157 error = xfs_trans_read_buf(mp, cur->bc_tp, mp->m_ddev_targp, d,
1158 mp->m_bsize, flags, bpp);
1162 ASSERT(*bpp != NULL);
1163 ASSERT(!XFS_BUF_GETERROR(*bpp));
1165 xfs_btree_set_refs(cur, *bpp);
1166 *block = XFS_BUF_TO_BLOCK(*bpp);
1168 error = xfs_btree_check_block(cur, *block, level, *bpp);
1170 xfs_trans_brelse(cur->bc_tp, *bpp);
1175 * Copy keys from one btree block to another.
1178 xfs_btree_copy_keys(
1179 struct xfs_btree_cur *cur,
1180 union xfs_btree_key *dst_key,
1181 union xfs_btree_key *src_key,
1184 ASSERT(numkeys >= 0);
1185 memcpy(dst_key, src_key, numkeys * cur->bc_ops->key_len);
1189 * Copy records from one btree block to another.
1192 xfs_btree_copy_recs(
1193 struct xfs_btree_cur *cur,
1194 union xfs_btree_rec *dst_rec,
1195 union xfs_btree_rec *src_rec,
1198 ASSERT(numrecs >= 0);
1199 memcpy(dst_rec, src_rec, numrecs * cur->bc_ops->rec_len);
1203 * Copy block pointers from one btree block to another.
1206 xfs_btree_copy_ptrs(
1207 struct xfs_btree_cur *cur,
1208 union xfs_btree_ptr *dst_ptr,
1209 union xfs_btree_ptr *src_ptr,
1212 ASSERT(numptrs >= 0);
1213 memcpy(dst_ptr, src_ptr, numptrs * xfs_btree_ptr_len(cur));
1217 * Shift keys one index left/right inside a single btree block.
1220 xfs_btree_shift_keys(
1221 struct xfs_btree_cur *cur,
1222 union xfs_btree_key *key,
1228 ASSERT(numkeys >= 0);
1229 ASSERT(dir == 1 || dir == -1);
1231 dst_key = (char *)key + (dir * cur->bc_ops->key_len);
1232 memmove(dst_key, key, numkeys * cur->bc_ops->key_len);
1236 * Shift records one index left/right inside a single btree block.
1239 xfs_btree_shift_recs(
1240 struct xfs_btree_cur *cur,
1241 union xfs_btree_rec *rec,
1247 ASSERT(numrecs >= 0);
1248 ASSERT(dir == 1 || dir == -1);
1250 dst_rec = (char *)rec + (dir * cur->bc_ops->rec_len);
1251 memmove(dst_rec, rec, numrecs * cur->bc_ops->rec_len);
1255 * Shift block pointers one index left/right inside a single btree block.
1258 xfs_btree_shift_ptrs(
1259 struct xfs_btree_cur *cur,
1260 union xfs_btree_ptr *ptr,
1266 ASSERT(numptrs >= 0);
1267 ASSERT(dir == 1 || dir == -1);
1269 dst_ptr = (char *)ptr + (dir * xfs_btree_ptr_len(cur));
1270 memmove(dst_ptr, ptr, numptrs * xfs_btree_ptr_len(cur));
1274 * Log key values from the btree block.
1278 struct xfs_btree_cur *cur,
1283 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1284 XFS_BTREE_TRACE_ARGBII(cur, bp, first, last);
1287 xfs_trans_log_buf(cur->bc_tp, bp,
1288 xfs_btree_key_offset(cur, first),
1289 xfs_btree_key_offset(cur, last + 1) - 1);
1291 xfs_trans_log_inode(cur->bc_tp, cur->bc_private.b.ip,
1292 xfs_ilog_fbroot(cur->bc_private.b.whichfork));
1295 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1299 * Log record values from the btree block.
1303 struct xfs_btree_cur *cur,
1308 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1309 XFS_BTREE_TRACE_ARGBII(cur, bp, first, last);
1311 xfs_trans_log_buf(cur->bc_tp, bp,
1312 xfs_btree_rec_offset(cur, first),
1313 xfs_btree_rec_offset(cur, last + 1) - 1);
1315 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1319 * Log block pointer fields from a btree block (nonleaf).
1323 struct xfs_btree_cur *cur, /* btree cursor */
1324 struct xfs_buf *bp, /* buffer containing btree block */
1325 int first, /* index of first pointer to log */
1326 int last) /* index of last pointer to log */
1328 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1329 XFS_BTREE_TRACE_ARGBII(cur, bp, first, last);
1332 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
1333 int level = xfs_btree_get_level(block);
1335 xfs_trans_log_buf(cur->bc_tp, bp,
1336 xfs_btree_ptr_offset(cur, first, level),
1337 xfs_btree_ptr_offset(cur, last + 1, level) - 1);
1339 xfs_trans_log_inode(cur->bc_tp, cur->bc_private.b.ip,
1340 xfs_ilog_fbroot(cur->bc_private.b.whichfork));
1343 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1347 * Log fields from a btree block header.
1350 xfs_btree_log_block(
1351 struct xfs_btree_cur *cur, /* btree cursor */
1352 struct xfs_buf *bp, /* buffer containing btree block */
1353 int fields) /* mask of fields: XFS_BB_... */
1355 int first; /* first byte offset logged */
1356 int last; /* last byte offset logged */
1357 static const short soffsets[] = { /* table of offsets (short) */
1358 offsetof(struct xfs_btree_sblock, bb_magic),
1359 offsetof(struct xfs_btree_sblock, bb_level),
1360 offsetof(struct xfs_btree_sblock, bb_numrecs),
1361 offsetof(struct xfs_btree_sblock, bb_leftsib),
1362 offsetof(struct xfs_btree_sblock, bb_rightsib),
1363 sizeof(struct xfs_btree_sblock)
1365 static const short loffsets[] = { /* table of offsets (long) */
1366 offsetof(struct xfs_btree_lblock, bb_magic),
1367 offsetof(struct xfs_btree_lblock, bb_level),
1368 offsetof(struct xfs_btree_lblock, bb_numrecs),
1369 offsetof(struct xfs_btree_lblock, bb_leftsib),
1370 offsetof(struct xfs_btree_lblock, bb_rightsib),
1371 sizeof(struct xfs_btree_lblock)
1374 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1375 XFS_BTREE_TRACE_ARGBI(cur, bp, fields);
1378 xfs_btree_offsets(fields,
1379 (cur->bc_flags & XFS_BTREE_LONG_PTRS) ?
1380 loffsets : soffsets,
1381 XFS_BB_NUM_BITS, &first, &last);
1382 xfs_trans_log_buf(cur->bc_tp, bp, first, last);
1384 xfs_trans_log_inode(cur->bc_tp, cur->bc_private.b.ip,
1385 xfs_ilog_fbroot(cur->bc_private.b.whichfork));
1388 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1392 * Increment cursor by one record at the level.
1393 * For nonzero levels the leaf-ward information is untouched.
1396 xfs_btree_increment(
1397 struct xfs_btree_cur *cur,
1399 int *stat) /* success/failure */
1401 struct xfs_btree_block *block;
1402 union xfs_btree_ptr ptr;
1404 int error; /* error return value */
1407 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1408 XFS_BTREE_TRACE_ARGI(cur, level);
1410 ASSERT(level < cur->bc_nlevels);
1412 /* Read-ahead to the right at this level. */
1413 xfs_btree_readahead(cur, level, XFS_BTCUR_RIGHTRA);
1415 /* Get a pointer to the btree block. */
1416 block = xfs_btree_get_block(cur, level, &bp);
1419 error = xfs_btree_check_block(cur, block, level, bp);
1424 /* We're done if we remain in the block after the increment. */
1425 if (++cur->bc_ptrs[level] <= xfs_btree_get_numrecs(block))
1428 /* Fail if we just went off the right edge of the tree. */
1429 xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_RIGHTSIB);
1430 if (xfs_btree_ptr_is_null(cur, &ptr))
1433 XFS_BTREE_STATS_INC(cur, increment);
1436 * March up the tree incrementing pointers.
1437 * Stop when we don't go off the right edge of a block.
1439 for (lev = level + 1; lev < cur->bc_nlevels; lev++) {
1440 block = xfs_btree_get_block(cur, lev, &bp);
1443 error = xfs_btree_check_block(cur, block, lev, bp);
1448 if (++cur->bc_ptrs[lev] <= xfs_btree_get_numrecs(block))
1451 /* Read-ahead the right block for the next loop. */
1452 xfs_btree_readahead(cur, lev, XFS_BTCUR_RIGHTRA);
1456 * If we went off the root then we are either seriously
1457 * confused or have the tree root in an inode.
1459 if (lev == cur->bc_nlevels) {
1460 if (cur->bc_flags & XFS_BTREE_ROOT_IN_INODE)
1463 error = EFSCORRUPTED;
1466 ASSERT(lev < cur->bc_nlevels);
1469 * Now walk back down the tree, fixing up the cursor's buffer
1470 * pointers and key numbers.
1472 for (block = xfs_btree_get_block(cur, lev, &bp); lev > level; ) {
1473 union xfs_btree_ptr *ptrp;
1475 ptrp = xfs_btree_ptr_addr(cur, cur->bc_ptrs[lev], block);
1476 error = xfs_btree_read_buf_block(cur, ptrp, --lev,
1481 xfs_btree_setbuf(cur, lev, bp);
1482 cur->bc_ptrs[lev] = 1;
1485 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1490 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1495 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
1500 * Decrement cursor by one record at the level.
1501 * For nonzero levels the leaf-ward information is untouched.
1504 xfs_btree_decrement(
1505 struct xfs_btree_cur *cur,
1507 int *stat) /* success/failure */
1509 struct xfs_btree_block *block;
1511 int error; /* error return value */
1513 union xfs_btree_ptr ptr;
1515 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1516 XFS_BTREE_TRACE_ARGI(cur, level);
1518 ASSERT(level < cur->bc_nlevels);
1520 /* Read-ahead to the left at this level. */
1521 xfs_btree_readahead(cur, level, XFS_BTCUR_LEFTRA);
1523 /* We're done if we remain in the block after the decrement. */
1524 if (--cur->bc_ptrs[level] > 0)
1527 /* Get a pointer to the btree block. */
1528 block = xfs_btree_get_block(cur, level, &bp);
1531 error = xfs_btree_check_block(cur, block, level, bp);
1536 /* Fail if we just went off the left edge of the tree. */
1537 xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_LEFTSIB);
1538 if (xfs_btree_ptr_is_null(cur, &ptr))
1541 XFS_BTREE_STATS_INC(cur, decrement);
1544 * March up the tree decrementing pointers.
1545 * Stop when we don't go off the left edge of a block.
1547 for (lev = level + 1; lev < cur->bc_nlevels; lev++) {
1548 if (--cur->bc_ptrs[lev] > 0)
1550 /* Read-ahead the left block for the next loop. */
1551 xfs_btree_readahead(cur, lev, XFS_BTCUR_LEFTRA);
1555 * If we went off the root then we are seriously confused.
1556 * or the root of the tree is in an inode.
1558 if (lev == cur->bc_nlevels) {
1559 if (cur->bc_flags & XFS_BTREE_ROOT_IN_INODE)
1562 error = EFSCORRUPTED;
1565 ASSERT(lev < cur->bc_nlevels);
1568 * Now walk back down the tree, fixing up the cursor's buffer
1569 * pointers and key numbers.
1571 for (block = xfs_btree_get_block(cur, lev, &bp); lev > level; ) {
1572 union xfs_btree_ptr *ptrp;
1574 ptrp = xfs_btree_ptr_addr(cur, cur->bc_ptrs[lev], block);
1575 error = xfs_btree_read_buf_block(cur, ptrp, --lev,
1579 xfs_btree_setbuf(cur, lev, bp);
1580 cur->bc_ptrs[lev] = xfs_btree_get_numrecs(block);
1583 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1588 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1593 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
1598 xfs_btree_lookup_get_block(
1599 struct xfs_btree_cur *cur, /* btree cursor */
1600 int level, /* level in the btree */
1601 union xfs_btree_ptr *pp, /* ptr to btree block */
1602 struct xfs_btree_block **blkp) /* return btree block */
1604 struct xfs_buf *bp; /* buffer pointer for btree block */
1607 /* special case the root block if in an inode */
1608 if ((cur->bc_flags & XFS_BTREE_ROOT_IN_INODE) &&
1609 (level == cur->bc_nlevels - 1)) {
1610 *blkp = xfs_btree_get_iroot(cur);
1615 * If the old buffer at this level for the disk address we are
1616 * looking for re-use it.
1618 * Otherwise throw it away and get a new one.
1620 bp = cur->bc_bufs[level];
1621 if (bp && XFS_BUF_ADDR(bp) == xfs_btree_ptr_to_daddr(cur, pp)) {
1622 *blkp = XFS_BUF_TO_BLOCK(bp);
1626 error = xfs_btree_read_buf_block(cur, pp, level, 0, blkp, &bp);
1630 xfs_btree_setbuf(cur, level, bp);
1635 * Get current search key. For level 0 we don't actually have a key
1636 * structure so we make one up from the record. For all other levels
1637 * we just return the right key.
1639 STATIC union xfs_btree_key *
1640 xfs_lookup_get_search_key(
1641 struct xfs_btree_cur *cur,
1644 struct xfs_btree_block *block,
1645 union xfs_btree_key *kp)
1648 cur->bc_ops->init_key_from_rec(kp,
1649 xfs_btree_rec_addr(cur, keyno, block));
1653 return xfs_btree_key_addr(cur, keyno, block);
1657 * Lookup the record. The cursor is made to point to it, based on dir.
1658 * Return 0 if can't find any such record, 1 for success.
1662 struct xfs_btree_cur *cur, /* btree cursor */
1663 xfs_lookup_t dir, /* <=, ==, or >= */
1664 int *stat) /* success/failure */
1666 struct xfs_btree_block *block; /* current btree block */
1667 __int64_t diff; /* difference for the current key */
1668 int error; /* error return value */
1669 int keyno; /* current key number */
1670 int level; /* level in the btree */
1671 union xfs_btree_ptr *pp; /* ptr to btree block */
1672 union xfs_btree_ptr ptr; /* ptr to btree block */
1674 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1675 XFS_BTREE_TRACE_ARGI(cur, dir);
1677 XFS_BTREE_STATS_INC(cur, lookup);
1682 /* initialise start pointer from cursor */
1683 cur->bc_ops->init_ptr_from_cur(cur, &ptr);
1687 * Iterate over each level in the btree, starting at the root.
1688 * For each level above the leaves, find the key we need, based
1689 * on the lookup record, then follow the corresponding block
1690 * pointer down to the next level.
1692 for (level = cur->bc_nlevels - 1, diff = 1; level >= 0; level--) {
1693 /* Get the block we need to do the lookup on. */
1694 error = xfs_btree_lookup_get_block(cur, level, pp, &block);
1700 * If we already had a key match at a higher level, we
1701 * know we need to use the first entry in this block.
1705 /* Otherwise search this block. Do a binary search. */
1707 int high; /* high entry number */
1708 int low; /* low entry number */
1710 /* Set low and high entry numbers, 1-based. */
1712 high = xfs_btree_get_numrecs(block);
1714 /* Block is empty, must be an empty leaf. */
1715 ASSERT(level == 0 && cur->bc_nlevels == 1);
1717 cur->bc_ptrs[0] = dir != XFS_LOOKUP_LE;
1718 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1723 /* Binary search the block. */
1724 while (low <= high) {
1725 union xfs_btree_key key;
1726 union xfs_btree_key *kp;
1728 XFS_BTREE_STATS_INC(cur, compare);
1730 /* keyno is average of low and high. */
1731 keyno = (low + high) >> 1;
1733 /* Get current search key */
1734 kp = xfs_lookup_get_search_key(cur, level,
1735 keyno, block, &key);
1738 * Compute difference to get next direction:
1739 * - less than, move right
1740 * - greater than, move left
1741 * - equal, we're done
1743 diff = cur->bc_ops->key_diff(cur, kp);
1754 * If there are more levels, set up for the next level
1755 * by getting the block number and filling in the cursor.
1759 * If we moved left, need the previous key number,
1760 * unless there isn't one.
1762 if (diff > 0 && --keyno < 1)
1764 pp = xfs_btree_ptr_addr(cur, keyno, block);
1767 error = xfs_btree_check_ptr(cur, pp, 0, level);
1771 cur->bc_ptrs[level] = keyno;
1775 /* Done with the search. See if we need to adjust the results. */
1776 if (dir != XFS_LOOKUP_LE && diff < 0) {
1779 * If ge search and we went off the end of the block, but it's
1780 * not the last block, we're in the wrong block.
1782 xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_RIGHTSIB);
1783 if (dir == XFS_LOOKUP_GE &&
1784 keyno > xfs_btree_get_numrecs(block) &&
1785 !xfs_btree_ptr_is_null(cur, &ptr)) {
1788 cur->bc_ptrs[0] = keyno;
1789 error = xfs_btree_increment(cur, 0, &i);
1792 XFS_WANT_CORRUPTED_RETURN(i == 1);
1793 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1797 } else if (dir == XFS_LOOKUP_LE && diff > 0)
1799 cur->bc_ptrs[0] = keyno;
1801 /* Return if we succeeded or not. */
1802 if (keyno == 0 || keyno > xfs_btree_get_numrecs(block))
1804 else if (dir != XFS_LOOKUP_EQ || diff == 0)
1808 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1812 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
1817 * Update keys at all levels from here to the root along the cursor's path.
1821 struct xfs_btree_cur *cur,
1822 union xfs_btree_key *keyp,
1825 struct xfs_btree_block *block;
1827 union xfs_btree_key *kp;
1830 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1831 XFS_BTREE_TRACE_ARGIK(cur, level, keyp);
1833 ASSERT(!(cur->bc_flags & XFS_BTREE_ROOT_IN_INODE) || level >= 1);
1836 * Go up the tree from this level toward the root.
1837 * At each level, update the key value to the value input.
1838 * Stop when we reach a level where the cursor isn't pointing
1839 * at the first entry in the block.
1841 for (ptr = 1; ptr == 1 && level < cur->bc_nlevels; level++) {
1845 block = xfs_btree_get_block(cur, level, &bp);
1847 error = xfs_btree_check_block(cur, block, level, bp);
1849 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
1853 ptr = cur->bc_ptrs[level];
1854 kp = xfs_btree_key_addr(cur, ptr, block);
1855 xfs_btree_copy_keys(cur, kp, keyp, 1);
1856 xfs_btree_log_keys(cur, bp, ptr, ptr);
1859 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1864 * Update the record referred to by cur to the value in the
1865 * given record. This either works (return 0) or gets an
1866 * EFSCORRUPTED error.
1870 struct xfs_btree_cur *cur,
1871 union xfs_btree_rec *rec)
1873 struct xfs_btree_block *block;
1877 union xfs_btree_rec *rp;
1879 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1880 XFS_BTREE_TRACE_ARGR(cur, rec);
1882 /* Pick up the current block. */
1883 block = xfs_btree_get_block(cur, 0, &bp);
1886 error = xfs_btree_check_block(cur, block, 0, bp);
1890 /* Get the address of the rec to be updated. */
1891 ptr = cur->bc_ptrs[0];
1892 rp = xfs_btree_rec_addr(cur, ptr, block);
1894 /* Fill in the new contents and log them. */
1895 xfs_btree_copy_recs(cur, rp, rec, 1);
1896 xfs_btree_log_recs(cur, bp, ptr, ptr);
1899 * If we are tracking the last record in the tree and
1900 * we are at the far right edge of the tree, update it.
1902 if (xfs_btree_is_lastrec(cur, block, 0)) {
1903 cur->bc_ops->update_lastrec(cur, block, rec,
1904 ptr, LASTREC_UPDATE);
1907 /* Updating first rec in leaf. Pass new key value up to our parent. */
1909 union xfs_btree_key key;
1911 cur->bc_ops->init_key_from_rec(&key, rec);
1912 error = xfs_btree_updkey(cur, &key, 1);
1917 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
1921 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
1926 * Move 1 record left from cur/level if possible.
1927 * Update cur to reflect the new path.
1931 struct xfs_btree_cur *cur,
1933 int *stat) /* success/failure */
1935 union xfs_btree_key key; /* btree key */
1936 struct xfs_buf *lbp; /* left buffer pointer */
1937 struct xfs_btree_block *left; /* left btree block */
1938 int lrecs; /* left record count */
1939 struct xfs_buf *rbp; /* right buffer pointer */
1940 struct xfs_btree_block *right; /* right btree block */
1941 int rrecs; /* right record count */
1942 union xfs_btree_ptr lptr; /* left btree pointer */
1943 union xfs_btree_key *rkp = NULL; /* right btree key */
1944 union xfs_btree_ptr *rpp = NULL; /* right address pointer */
1945 union xfs_btree_rec *rrp = NULL; /* right record pointer */
1946 int error; /* error return value */
1948 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
1949 XFS_BTREE_TRACE_ARGI(cur, level);
1951 if ((cur->bc_flags & XFS_BTREE_ROOT_IN_INODE) &&
1952 level == cur->bc_nlevels - 1)
1955 /* Set up variables for this block as "right". */
1956 right = xfs_btree_get_block(cur, level, &rbp);
1959 error = xfs_btree_check_block(cur, right, level, rbp);
1964 /* If we've got no left sibling then we can't shift an entry left. */
1965 xfs_btree_get_sibling(cur, right, &lptr, XFS_BB_LEFTSIB);
1966 if (xfs_btree_ptr_is_null(cur, &lptr))
1970 * If the cursor entry is the one that would be moved, don't
1971 * do it... it's too complicated.
1973 if (cur->bc_ptrs[level] <= 1)
1976 /* Set up the left neighbor as "left". */
1977 error = xfs_btree_read_buf_block(cur, &lptr, level, 0, &left, &lbp);
1981 /* If it's full, it can't take another entry. */
1982 lrecs = xfs_btree_get_numrecs(left);
1983 if (lrecs == cur->bc_ops->get_maxrecs(cur, level))
1986 rrecs = xfs_btree_get_numrecs(right);
1989 * We add one entry to the left side and remove one for the right side.
1990 * Accout for it here, the changes will be updated on disk and logged
1996 XFS_BTREE_STATS_INC(cur, lshift);
1997 XFS_BTREE_STATS_ADD(cur, moves, 1);
2000 * If non-leaf, copy a key and a ptr to the left block.
2001 * Log the changes to the left block.
2004 /* It's a non-leaf. Move keys and pointers. */
2005 union xfs_btree_key *lkp; /* left btree key */
2006 union xfs_btree_ptr *lpp; /* left address pointer */
2008 lkp = xfs_btree_key_addr(cur, lrecs, left);
2009 rkp = xfs_btree_key_addr(cur, 1, right);
2011 lpp = xfs_btree_ptr_addr(cur, lrecs, left);
2012 rpp = xfs_btree_ptr_addr(cur, 1, right);
2014 error = xfs_btree_check_ptr(cur, rpp, 0, level);
2018 xfs_btree_copy_keys(cur, lkp, rkp, 1);
2019 xfs_btree_copy_ptrs(cur, lpp, rpp, 1);
2021 xfs_btree_log_keys(cur, lbp, lrecs, lrecs);
2022 xfs_btree_log_ptrs(cur, lbp, lrecs, lrecs);
2024 xfs_btree_check_key(cur->bc_btnum,
2025 xfs_btree_key_addr(cur, lrecs - 1, left),
2028 /* It's a leaf. Move records. */
2029 union xfs_btree_rec *lrp; /* left record pointer */
2031 lrp = xfs_btree_rec_addr(cur, lrecs, left);
2032 rrp = xfs_btree_rec_addr(cur, 1, right);
2034 xfs_btree_copy_recs(cur, lrp, rrp, 1);
2035 xfs_btree_log_recs(cur, lbp, lrecs, lrecs);
2037 xfs_btree_check_rec(cur->bc_btnum,
2038 xfs_btree_rec_addr(cur, lrecs - 1, left),
2042 xfs_btree_set_numrecs(left, lrecs);
2043 xfs_btree_log_block(cur, lbp, XFS_BB_NUMRECS);
2045 xfs_btree_set_numrecs(right, rrecs);
2046 xfs_btree_log_block(cur, rbp, XFS_BB_NUMRECS);
2049 * Slide the contents of right down one entry.
2051 XFS_BTREE_STATS_ADD(cur, moves, rrecs - 1);
2053 /* It's a nonleaf. operate on keys and ptrs */
2055 int i; /* loop index */
2057 for (i = 0; i < rrecs; i++) {
2058 error = xfs_btree_check_ptr(cur, rpp, i + 1, level);
2063 xfs_btree_shift_keys(cur,
2064 xfs_btree_key_addr(cur, 2, right),
2066 xfs_btree_shift_ptrs(cur,
2067 xfs_btree_ptr_addr(cur, 2, right),
2070 xfs_btree_log_keys(cur, rbp, 1, rrecs);
2071 xfs_btree_log_ptrs(cur, rbp, 1, rrecs);
2073 /* It's a leaf. operate on records */
2074 xfs_btree_shift_recs(cur,
2075 xfs_btree_rec_addr(cur, 2, right),
2077 xfs_btree_log_recs(cur, rbp, 1, rrecs);
2080 * If it's the first record in the block, we'll need a key
2081 * structure to pass up to the next level (updkey).
2083 cur->bc_ops->init_key_from_rec(&key,
2084 xfs_btree_rec_addr(cur, 1, right));
2088 /* Update the parent key values of right. */
2089 error = xfs_btree_updkey(cur, rkp, level + 1);
2093 /* Slide the cursor value left one. */
2094 cur->bc_ptrs[level]--;
2096 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
2101 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
2106 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
2111 * Move 1 record right from cur/level if possible.
2112 * Update cur to reflect the new path.
2116 struct xfs_btree_cur *cur,
2118 int *stat) /* success/failure */
2120 union xfs_btree_key key; /* btree key */
2121 struct xfs_buf *lbp; /* left buffer pointer */
2122 struct xfs_btree_block *left; /* left btree block */
2123 struct xfs_buf *rbp; /* right buffer pointer */
2124 struct xfs_btree_block *right; /* right btree block */
2125 struct xfs_btree_cur *tcur; /* temporary btree cursor */
2126 union xfs_btree_ptr rptr; /* right block pointer */
2127 union xfs_btree_key *rkp; /* right btree key */
2128 int rrecs; /* right record count */
2129 int lrecs; /* left record count */
2130 int error; /* error return value */
2131 int i; /* loop counter */
2133 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
2134 XFS_BTREE_TRACE_ARGI(cur, level);
2136 if ((cur->bc_flags & XFS_BTREE_ROOT_IN_INODE) &&
2137 (level == cur->bc_nlevels - 1))
2140 /* Set up variables for this block as "left". */
2141 left = xfs_btree_get_block(cur, level, &lbp);
2144 error = xfs_btree_check_block(cur, left, level, lbp);
2149 /* If we've got no right sibling then we can't shift an entry right. */
2150 xfs_btree_get_sibling(cur, left, &rptr, XFS_BB_RIGHTSIB);
2151 if (xfs_btree_ptr_is_null(cur, &rptr))
2155 * If the cursor entry is the one that would be moved, don't
2156 * do it... it's too complicated.
2158 lrecs = xfs_btree_get_numrecs(left);
2159 if (cur->bc_ptrs[level] >= lrecs)
2162 /* Set up the right neighbor as "right". */
2163 error = xfs_btree_read_buf_block(cur, &rptr, level, 0, &right, &rbp);
2167 /* If it's full, it can't take another entry. */
2168 rrecs = xfs_btree_get_numrecs(right);
2169 if (rrecs == cur->bc_ops->get_maxrecs(cur, level))
2172 XFS_BTREE_STATS_INC(cur, rshift);
2173 XFS_BTREE_STATS_ADD(cur, moves, rrecs);
2176 * Make a hole at the start of the right neighbor block, then
2177 * copy the last left block entry to the hole.
2180 /* It's a nonleaf. make a hole in the keys and ptrs */
2181 union xfs_btree_key *lkp;
2182 union xfs_btree_ptr *lpp;
2183 union xfs_btree_ptr *rpp;
2185 lkp = xfs_btree_key_addr(cur, lrecs, left);
2186 lpp = xfs_btree_ptr_addr(cur, lrecs, left);
2187 rkp = xfs_btree_key_addr(cur, 1, right);
2188 rpp = xfs_btree_ptr_addr(cur, 1, right);
2191 for (i = rrecs - 1; i >= 0; i--) {
2192 error = xfs_btree_check_ptr(cur, rpp, i, level);
2198 xfs_btree_shift_keys(cur, rkp, 1, rrecs);
2199 xfs_btree_shift_ptrs(cur, rpp, 1, rrecs);
2202 error = xfs_btree_check_ptr(cur, lpp, 0, level);
2207 /* Now put the new data in, and log it. */
2208 xfs_btree_copy_keys(cur, rkp, lkp, 1);
2209 xfs_btree_copy_ptrs(cur, rpp, lpp, 1);
2211 xfs_btree_log_keys(cur, rbp, 1, rrecs + 1);
2212 xfs_btree_log_ptrs(cur, rbp, 1, rrecs + 1);
2214 xfs_btree_check_key(cur->bc_btnum, rkp,
2215 xfs_btree_key_addr(cur, 2, right));
2217 /* It's a leaf. make a hole in the records */
2218 union xfs_btree_rec *lrp;
2219 union xfs_btree_rec *rrp;
2221 lrp = xfs_btree_rec_addr(cur, lrecs, left);
2222 rrp = xfs_btree_rec_addr(cur, 1, right);
2224 xfs_btree_shift_recs(cur, rrp, 1, rrecs);
2226 /* Now put the new data in, and log it. */
2227 xfs_btree_copy_recs(cur, rrp, lrp, 1);
2228 xfs_btree_log_recs(cur, rbp, 1, rrecs + 1);
2230 cur->bc_ops->init_key_from_rec(&key, rrp);
2233 xfs_btree_check_rec(cur->bc_btnum, rrp,
2234 xfs_btree_rec_addr(cur, 2, right));
2238 * Decrement and log left's numrecs, bump and log right's numrecs.
2240 xfs_btree_set_numrecs(left, --lrecs);
2241 xfs_btree_log_block(cur, lbp, XFS_BB_NUMRECS);
2243 xfs_btree_set_numrecs(right, ++rrecs);
2244 xfs_btree_log_block(cur, rbp, XFS_BB_NUMRECS);
2247 * Using a temporary cursor, update the parent key values of the
2248 * block on the right.
2250 error = xfs_btree_dup_cursor(cur, &tcur);
2253 i = xfs_btree_lastrec(tcur, level);
2254 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
2256 error = xfs_btree_increment(tcur, level, &i);
2260 error = xfs_btree_updkey(tcur, rkp, level + 1);
2264 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
2266 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
2271 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
2276 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
2280 XFS_BTREE_TRACE_CURSOR(tcur, XBT_ERROR);
2281 xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR);
2286 * Split cur/level block in half.
2287 * Return new block number and the key to its first
2288 * record (to be inserted into parent).
2292 struct xfs_btree_cur *cur,
2294 union xfs_btree_ptr *ptrp,
2295 union xfs_btree_key *key,
2296 struct xfs_btree_cur **curp,
2297 int *stat) /* success/failure */
2299 union xfs_btree_ptr lptr; /* left sibling block ptr */
2300 struct xfs_buf *lbp; /* left buffer pointer */
2301 struct xfs_btree_block *left; /* left btree block */
2302 union xfs_btree_ptr rptr; /* right sibling block ptr */
2303 struct xfs_buf *rbp; /* right buffer pointer */
2304 struct xfs_btree_block *right; /* right btree block */
2305 union xfs_btree_ptr rrptr; /* right-right sibling ptr */
2306 struct xfs_buf *rrbp; /* right-right buffer pointer */
2307 struct xfs_btree_block *rrblock; /* right-right btree block */
2311 int error; /* error return value */
2316 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
2317 XFS_BTREE_TRACE_ARGIPK(cur, level, *ptrp, key);
2319 XFS_BTREE_STATS_INC(cur, split);
2321 /* Set up left block (current one). */
2322 left = xfs_btree_get_block(cur, level, &lbp);
2325 error = xfs_btree_check_block(cur, left, level, lbp);
2330 xfs_btree_buf_to_ptr(cur, lbp, &lptr);
2332 /* Allocate the new block. If we can't do it, we're toast. Give up. */
2333 error = cur->bc_ops->alloc_block(cur, &lptr, &rptr, 1, stat);
2338 XFS_BTREE_STATS_INC(cur, alloc);
2340 /* Set up the new block as "right". */
2341 error = xfs_btree_get_buf_block(cur, &rptr, 0, &right, &rbp);
2345 /* Fill in the btree header for the new right block. */
2346 xfs_btree_init_block(cur, xfs_btree_get_level(left), 0, right);
2349 * Split the entries between the old and the new block evenly.
2350 * Make sure that if there's an odd number of entries now, that
2351 * each new block will have the same number of entries.
2353 lrecs = xfs_btree_get_numrecs(left);
2355 if ((lrecs & 1) && cur->bc_ptrs[level] <= rrecs + 1)
2357 src_index = (lrecs - rrecs + 1);
2359 XFS_BTREE_STATS_ADD(cur, moves, rrecs);
2362 * Copy btree block entries from the left block over to the
2363 * new block, the right. Update the right block and log the
2367 /* It's a non-leaf. Move keys and pointers. */
2368 union xfs_btree_key *lkp; /* left btree key */
2369 union xfs_btree_ptr *lpp; /* left address pointer */
2370 union xfs_btree_key *rkp; /* right btree key */
2371 union xfs_btree_ptr *rpp; /* right address pointer */
2373 lkp = xfs_btree_key_addr(cur, src_index, left);
2374 lpp = xfs_btree_ptr_addr(cur, src_index, left);
2375 rkp = xfs_btree_key_addr(cur, 1, right);
2376 rpp = xfs_btree_ptr_addr(cur, 1, right);
2379 for (i = src_index; i < rrecs; i++) {
2380 error = xfs_btree_check_ptr(cur, lpp, i, level);
2386 xfs_btree_copy_keys(cur, rkp, lkp, rrecs);
2387 xfs_btree_copy_ptrs(cur, rpp, lpp, rrecs);
2389 xfs_btree_log_keys(cur, rbp, 1, rrecs);
2390 xfs_btree_log_ptrs(cur, rbp, 1, rrecs);
2392 /* Grab the keys to the entries moved to the right block */
2393 xfs_btree_copy_keys(cur, key, rkp, 1);
2395 /* It's a leaf. Move records. */
2396 union xfs_btree_rec *lrp; /* left record pointer */
2397 union xfs_btree_rec *rrp; /* right record pointer */
2399 lrp = xfs_btree_rec_addr(cur, src_index, left);
2400 rrp = xfs_btree_rec_addr(cur, 1, right);
2402 xfs_btree_copy_recs(cur, rrp, lrp, rrecs);
2403 xfs_btree_log_recs(cur, rbp, 1, rrecs);
2405 cur->bc_ops->init_key_from_rec(key,
2406 xfs_btree_rec_addr(cur, 1, right));
2411 * Find the left block number by looking in the buffer.
2412 * Adjust numrecs, sibling pointers.
2414 xfs_btree_get_sibling(cur, left, &rrptr, XFS_BB_RIGHTSIB);
2415 xfs_btree_set_sibling(cur, right, &rrptr, XFS_BB_RIGHTSIB);
2416 xfs_btree_set_sibling(cur, right, &lptr, XFS_BB_LEFTSIB);
2417 xfs_btree_set_sibling(cur, left, &rptr, XFS_BB_RIGHTSIB);
2420 xfs_btree_set_numrecs(left, lrecs);
2421 xfs_btree_set_numrecs(right, xfs_btree_get_numrecs(right) + rrecs);
2423 xfs_btree_log_block(cur, rbp, XFS_BB_ALL_BITS);
2424 xfs_btree_log_block(cur, lbp, XFS_BB_NUMRECS | XFS_BB_RIGHTSIB);
2427 * If there's a block to the new block's right, make that block
2428 * point back to right instead of to left.
2430 if (!xfs_btree_ptr_is_null(cur, &rrptr)) {
2431 error = xfs_btree_read_buf_block(cur, &rrptr, level,
2432 0, &rrblock, &rrbp);
2435 xfs_btree_set_sibling(cur, rrblock, &rptr, XFS_BB_LEFTSIB);
2436 xfs_btree_log_block(cur, rrbp, XFS_BB_LEFTSIB);
2439 * If the cursor is really in the right block, move it there.
2440 * If it's just pointing past the last entry in left, then we'll
2441 * insert there, so don't change anything in that case.
2443 if (cur->bc_ptrs[level] > lrecs + 1) {
2444 xfs_btree_setbuf(cur, level, rbp);
2445 cur->bc_ptrs[level] -= lrecs;
2448 * If there are more levels, we'll need another cursor which refers
2449 * the right block, no matter where this cursor was.
2451 if (level + 1 < cur->bc_nlevels) {
2452 error = xfs_btree_dup_cursor(cur, curp);
2455 (*curp)->bc_ptrs[level + 1]++;
2458 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
2462 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
2467 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);