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_btree.h"
38 #include "xfs_ialloc.h"
39 #include "xfs_error.h"
42 * Cursor allocation zone.
44 kmem_zone_t
*xfs_btree_cur_zone
;
47 * Btree magic numbers.
49 const __uint32_t xfs_magics
[XFS_BTNUM_MAX
] = {
50 XFS_ABTB_MAGIC
, XFS_ABTC_MAGIC
, XFS_BMAP_MAGIC
, XFS_IBT_MAGIC
54 * Checking routine: return maxrecs for the block.
56 STATIC
int /* number of records fitting in block */
58 xfs_btree_cur_t
*cur
, /* btree cursor */
59 xfs_btree_block_t
*block
) /* generic btree block pointer */
61 switch (cur
->bc_btnum
) {
64 return (int)XFS_ALLOC_BLOCK_MAXRECS(
65 be16_to_cpu(block
->bb_h
.bb_level
), cur
);
67 return (int)XFS_BMAP_BLOCK_IMAXRECS(
68 be16_to_cpu(block
->bb_h
.bb_level
), cur
);
70 return (int)XFS_INOBT_BLOCK_MAXRECS(
71 be16_to_cpu(block
->bb_h
.bb_level
), cur
);
84 * Debug routine: check that block header is ok.
87 xfs_btree_check_block(
88 xfs_btree_cur_t
*cur
, /* btree cursor */
89 xfs_btree_block_t
*block
, /* generic btree block pointer */
90 int level
, /* level of the btree block */
91 xfs_buf_t
*bp
) /* buffer containing block, if any */
93 if (XFS_BTREE_LONG_PTRS(cur
->bc_btnum
))
94 xfs_btree_check_lblock(cur
, (xfs_btree_lblock_t
*)block
, level
,
97 xfs_btree_check_sblock(cur
, (xfs_btree_sblock_t
*)block
, level
,
102 * Debug routine: check that keys are in the right order.
106 xfs_btnum_t btnum
, /* btree identifier */
107 void *ak1
, /* pointer to left (lower) key */
108 void *ak2
) /* pointer to right (higher) key */
111 case XFS_BTNUM_BNO
: {
117 ASSERT(be32_to_cpu(k1
->ar_startblock
) < be32_to_cpu(k2
->ar_startblock
));
120 case XFS_BTNUM_CNT
: {
126 ASSERT(be32_to_cpu(k1
->ar_blockcount
) < be32_to_cpu(k2
->ar_blockcount
) ||
127 (k1
->ar_blockcount
== k2
->ar_blockcount
&&
128 be32_to_cpu(k1
->ar_startblock
) < be32_to_cpu(k2
->ar_startblock
)));
131 case XFS_BTNUM_BMAP
: {
137 ASSERT(be64_to_cpu(k1
->br_startoff
) < be64_to_cpu(k2
->br_startoff
));
140 case XFS_BTNUM_INO
: {
146 ASSERT(be32_to_cpu(k1
->ir_startino
) < be32_to_cpu(k2
->ir_startino
));
156 * Checking routine: check that long form block header is ok.
159 int /* error (0 or EFSCORRUPTED) */
160 xfs_btree_check_lblock(
161 xfs_btree_cur_t
*cur
, /* btree cursor */
162 xfs_btree_lblock_t
*block
, /* btree long form block pointer */
163 int level
, /* level of the btree block */
164 xfs_buf_t
*bp
) /* buffer for block, if any */
166 int lblock_ok
; /* block passes checks */
167 xfs_mount_t
*mp
; /* file system mount point */
171 be32_to_cpu(block
->bb_magic
) == xfs_magics
[cur
->bc_btnum
] &&
172 be16_to_cpu(block
->bb_level
) == level
&&
173 be16_to_cpu(block
->bb_numrecs
) <=
174 xfs_btree_maxrecs(cur
, (xfs_btree_block_t
*)block
) &&
176 (be64_to_cpu(block
->bb_leftsib
) == NULLDFSBNO
||
177 XFS_FSB_SANITY_CHECK(mp
, be64_to_cpu(block
->bb_leftsib
))) &&
178 block
->bb_rightsib
&&
179 (be64_to_cpu(block
->bb_rightsib
) == NULLDFSBNO
||
180 XFS_FSB_SANITY_CHECK(mp
, be64_to_cpu(block
->bb_rightsib
)));
181 if (unlikely(XFS_TEST_ERROR(!lblock_ok
, mp
, XFS_ERRTAG_BTREE_CHECK_LBLOCK
,
182 XFS_RANDOM_BTREE_CHECK_LBLOCK
))) {
184 xfs_buftrace("LBTREE ERROR", bp
);
185 XFS_ERROR_REPORT("xfs_btree_check_lblock", XFS_ERRLEVEL_LOW
,
187 return XFS_ERROR(EFSCORRUPTED
);
193 * Checking routine: check that (long) pointer is ok.
195 int /* error (0 or EFSCORRUPTED) */
196 xfs_btree_check_lptr(
197 xfs_btree_cur_t
*cur
, /* btree cursor */
198 xfs_dfsbno_t ptr
, /* btree block disk address */
199 int level
) /* btree block level */
201 xfs_mount_t
*mp
; /* file system mount point */
204 XFS_WANT_CORRUPTED_RETURN(
207 XFS_FSB_SANITY_CHECK(mp
, ptr
));
213 * Debug routine: check that records are in the right order.
217 xfs_btnum_t btnum
, /* btree identifier */
218 void *ar1
, /* pointer to left (lower) record */
219 void *ar2
) /* pointer to right (higher) record */
222 case XFS_BTNUM_BNO
: {
228 ASSERT(be32_to_cpu(r1
->ar_startblock
) +
229 be32_to_cpu(r1
->ar_blockcount
) <=
230 be32_to_cpu(r2
->ar_startblock
));
233 case XFS_BTNUM_CNT
: {
239 ASSERT(be32_to_cpu(r1
->ar_blockcount
) < be32_to_cpu(r2
->ar_blockcount
) ||
240 (r1
->ar_blockcount
== r2
->ar_blockcount
&&
241 be32_to_cpu(r1
->ar_startblock
) < be32_to_cpu(r2
->ar_startblock
)));
244 case XFS_BTNUM_BMAP
: {
250 ASSERT(xfs_bmbt_disk_get_startoff(r1
) +
251 xfs_bmbt_disk_get_blockcount(r1
) <=
252 xfs_bmbt_disk_get_startoff(r2
));
255 case XFS_BTNUM_INO
: {
261 ASSERT(be32_to_cpu(r1
->ir_startino
) + XFS_INODES_PER_CHUNK
<=
262 be32_to_cpu(r2
->ir_startino
));
272 * Checking routine: check that block header is ok.
275 int /* error (0 or EFSCORRUPTED) */
276 xfs_btree_check_sblock(
277 xfs_btree_cur_t
*cur
, /* btree cursor */
278 xfs_btree_sblock_t
*block
, /* btree short form block pointer */
279 int level
, /* level of the btree block */
280 xfs_buf_t
*bp
) /* buffer containing block */
282 xfs_buf_t
*agbp
; /* buffer for ag. freespace struct */
283 xfs_agf_t
*agf
; /* ag. freespace structure */
284 xfs_agblock_t agflen
; /* native ag. freespace length */
285 int sblock_ok
; /* block passes checks */
287 agbp
= cur
->bc_private
.a
.agbp
;
288 agf
= XFS_BUF_TO_AGF(agbp
);
289 agflen
= be32_to_cpu(agf
->agf_length
);
291 be32_to_cpu(block
->bb_magic
) == xfs_magics
[cur
->bc_btnum
] &&
292 be16_to_cpu(block
->bb_level
) == level
&&
293 be16_to_cpu(block
->bb_numrecs
) <=
294 xfs_btree_maxrecs(cur
, (xfs_btree_block_t
*)block
) &&
295 (be32_to_cpu(block
->bb_leftsib
) == NULLAGBLOCK
||
296 be32_to_cpu(block
->bb_leftsib
) < agflen
) &&
298 (be32_to_cpu(block
->bb_rightsib
) == NULLAGBLOCK
||
299 be32_to_cpu(block
->bb_rightsib
) < agflen
) &&
301 if (unlikely(XFS_TEST_ERROR(!sblock_ok
, cur
->bc_mp
,
302 XFS_ERRTAG_BTREE_CHECK_SBLOCK
,
303 XFS_RANDOM_BTREE_CHECK_SBLOCK
))) {
305 xfs_buftrace("SBTREE ERROR", bp
);
306 XFS_ERROR_REPORT("xfs_btree_check_sblock", XFS_ERRLEVEL_LOW
,
308 return XFS_ERROR(EFSCORRUPTED
);
314 * Checking routine: check that (short) pointer is ok.
316 int /* error (0 or EFSCORRUPTED) */
317 xfs_btree_check_sptr(
318 xfs_btree_cur_t
*cur
, /* btree cursor */
319 xfs_agblock_t ptr
, /* btree block disk address */
320 int level
) /* btree block level */
322 xfs_buf_t
*agbp
; /* buffer for ag. freespace struct */
323 xfs_agf_t
*agf
; /* ag. freespace structure */
325 agbp
= cur
->bc_private
.a
.agbp
;
326 agf
= XFS_BUF_TO_AGF(agbp
);
327 XFS_WANT_CORRUPTED_RETURN(
329 ptr
!= NULLAGBLOCK
&& ptr
!= 0 &&
330 ptr
< be32_to_cpu(agf
->agf_length
));
335 * Delete the btree cursor.
338 xfs_btree_del_cursor(
339 xfs_btree_cur_t
*cur
, /* btree cursor */
340 int error
) /* del because of error */
342 int i
; /* btree level */
345 * Clear the buffer pointers, and release the buffers.
346 * If we're doing this in the face of an error, we
347 * need to make sure to inspect all of the entries
348 * in the bc_bufs array for buffers to be unlocked.
349 * This is because some of the btree code works from
350 * level n down to 0, and if we get an error along
351 * the way we won't have initialized all the entries
354 for (i
= 0; i
< cur
->bc_nlevels
; i
++) {
356 xfs_btree_setbuf(cur
, i
, NULL
);
361 * Can't free a bmap cursor without having dealt with the
362 * allocated indirect blocks' accounting.
364 ASSERT(cur
->bc_btnum
!= XFS_BTNUM_BMAP
||
365 cur
->bc_private
.b
.allocated
== 0);
369 kmem_zone_free(xfs_btree_cur_zone
, cur
);
373 * Duplicate the btree cursor.
374 * Allocate a new one, copy the record, re-get the buffers.
377 xfs_btree_dup_cursor(
378 xfs_btree_cur_t
*cur
, /* input cursor */
379 xfs_btree_cur_t
**ncur
) /* output cursor */
381 xfs_buf_t
*bp
; /* btree block's buffer pointer */
382 int error
; /* error return value */
383 int i
; /* level number of btree block */
384 xfs_mount_t
*mp
; /* mount structure for filesystem */
385 xfs_btree_cur_t
*new; /* new cursor value */
386 xfs_trans_t
*tp
; /* transaction pointer, can be NULL */
391 * Allocate a new cursor like the old one.
393 new = xfs_btree_init_cursor(mp
, tp
, cur
->bc_private
.a
.agbp
,
394 cur
->bc_private
.a
.agno
, cur
->bc_btnum
, cur
->bc_private
.b
.ip
,
395 cur
->bc_private
.b
.whichfork
);
397 * Copy the record currently in the cursor.
399 new->bc_rec
= cur
->bc_rec
;
401 * For each level current, re-get the buffer and copy the ptr value.
403 for (i
= 0; i
< new->bc_nlevels
; i
++) {
404 new->bc_ptrs
[i
] = cur
->bc_ptrs
[i
];
405 new->bc_ra
[i
] = cur
->bc_ra
[i
];
406 if ((bp
= cur
->bc_bufs
[i
])) {
407 if ((error
= xfs_trans_read_buf(mp
, tp
, mp
->m_ddev_targp
,
408 XFS_BUF_ADDR(bp
), mp
->m_bsize
, 0, &bp
))) {
409 xfs_btree_del_cursor(new, error
);
413 new->bc_bufs
[i
] = bp
;
415 ASSERT(!XFS_BUF_GETERROR(bp
));
417 new->bc_bufs
[i
] = NULL
;
420 * For bmap btrees, copy the firstblock, flist, and flags values,
421 * since init cursor doesn't get them.
423 if (new->bc_btnum
== XFS_BTNUM_BMAP
) {
424 new->bc_private
.b
.firstblock
= cur
->bc_private
.b
.firstblock
;
425 new->bc_private
.b
.flist
= cur
->bc_private
.b
.flist
;
426 new->bc_private
.b
.flags
= cur
->bc_private
.b
.flags
;
433 * Retrieve the block pointer from the cursor at the given level.
434 * This may be a bmap btree root or from a buffer.
436 STATIC xfs_btree_block_t
* /* generic btree block pointer */
438 xfs_btree_cur_t
*cur
, /* btree cursor */
439 int level
, /* level in btree */
440 xfs_buf_t
**bpp
) /* buffer containing the block */
442 xfs_btree_block_t
*block
; /* return value */
443 xfs_buf_t
*bp
; /* return buffer */
444 xfs_ifork_t
*ifp
; /* inode fork pointer */
445 int whichfork
; /* data or attr fork */
447 if (cur
->bc_btnum
== XFS_BTNUM_BMAP
&& level
== cur
->bc_nlevels
- 1) {
448 whichfork
= cur
->bc_private
.b
.whichfork
;
449 ifp
= XFS_IFORK_PTR(cur
->bc_private
.b
.ip
, whichfork
);
450 block
= (xfs_btree_block_t
*)ifp
->if_broot
;
453 bp
= cur
->bc_bufs
[level
];
454 block
= XFS_BUF_TO_BLOCK(bp
);
456 ASSERT(block
!= NULL
);
462 * Get a buffer for the block, return it with no data read.
463 * Long-form addressing.
465 xfs_buf_t
* /* buffer for fsbno */
467 xfs_mount_t
*mp
, /* file system mount point */
468 xfs_trans_t
*tp
, /* transaction pointer */
469 xfs_fsblock_t fsbno
, /* file system block number */
470 uint lock
) /* lock flags for get_buf */
472 xfs_buf_t
*bp
; /* buffer pointer (return value) */
473 xfs_daddr_t d
; /* real disk block address */
475 ASSERT(fsbno
!= NULLFSBLOCK
);
476 d
= XFS_FSB_TO_DADDR(mp
, fsbno
);
477 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
, d
, mp
->m_bsize
, lock
);
479 ASSERT(!XFS_BUF_GETERROR(bp
));
484 * Get a buffer for the block, return it with no data read.
485 * Short-form addressing.
487 xfs_buf_t
* /* buffer for agno/agbno */
489 xfs_mount_t
*mp
, /* file system mount point */
490 xfs_trans_t
*tp
, /* transaction pointer */
491 xfs_agnumber_t agno
, /* allocation group number */
492 xfs_agblock_t agbno
, /* allocation group block number */
493 uint lock
) /* lock flags for get_buf */
495 xfs_buf_t
*bp
; /* buffer pointer (return value) */
496 xfs_daddr_t d
; /* real disk block address */
498 ASSERT(agno
!= NULLAGNUMBER
);
499 ASSERT(agbno
!= NULLAGBLOCK
);
500 d
= XFS_AGB_TO_DADDR(mp
, agno
, agbno
);
501 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
, d
, mp
->m_bsize
, lock
);
503 ASSERT(!XFS_BUF_GETERROR(bp
));
508 * Allocate a new btree cursor.
509 * The cursor is either for allocation (A) or bmap (B) or inodes (I).
511 xfs_btree_cur_t
* /* new btree cursor */
512 xfs_btree_init_cursor(
513 xfs_mount_t
*mp
, /* file system mount point */
514 xfs_trans_t
*tp
, /* transaction pointer */
515 xfs_buf_t
*agbp
, /* (A only) buffer for agf structure */
516 /* (I only) buffer for agi structure */
517 xfs_agnumber_t agno
, /* (AI only) allocation group number */
518 xfs_btnum_t btnum
, /* btree identifier */
519 xfs_inode_t
*ip
, /* (B only) inode owning the btree */
520 int whichfork
) /* (B only) data or attr fork */
522 xfs_agf_t
*agf
; /* (A) allocation group freespace */
523 xfs_agi_t
*agi
; /* (I) allocation group inodespace */
524 xfs_btree_cur_t
*cur
; /* return value */
525 xfs_ifork_t
*ifp
; /* (I) inode fork pointer */
526 int nlevels
=0; /* number of levels in the btree */
528 ASSERT(xfs_btree_cur_zone
!= NULL
);
530 * Allocate a new cursor.
532 cur
= kmem_zone_zalloc(xfs_btree_cur_zone
, KM_SLEEP
);
534 * Deduce the number of btree levels from the arguments.
539 agf
= XFS_BUF_TO_AGF(agbp
);
540 nlevels
= be32_to_cpu(agf
->agf_levels
[btnum
]);
543 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
544 nlevels
= be16_to_cpu(ifp
->if_broot
->bb_level
) + 1;
547 agi
= XFS_BUF_TO_AGI(agbp
);
548 nlevels
= be32_to_cpu(agi
->agi_level
);
554 * Fill in the common fields.
558 cur
->bc_nlevels
= nlevels
;
559 cur
->bc_btnum
= btnum
;
560 cur
->bc_blocklog
= mp
->m_sb
.sb_blocklog
;
562 * Fill in private fields.
568 * Allocation btree fields.
570 cur
->bc_private
.a
.agbp
= agbp
;
571 cur
->bc_private
.a
.agno
= agno
;
575 * Inode allocation btree fields.
577 cur
->bc_private
.a
.agbp
= agbp
;
578 cur
->bc_private
.a
.agno
= agno
;
584 cur
->bc_private
.b
.forksize
= XFS_IFORK_SIZE(ip
, whichfork
);
585 cur
->bc_private
.b
.ip
= ip
;
586 cur
->bc_private
.b
.firstblock
= NULLFSBLOCK
;
587 cur
->bc_private
.b
.flist
= NULL
;
588 cur
->bc_private
.b
.allocated
= 0;
589 cur
->bc_private
.b
.flags
= 0;
590 cur
->bc_private
.b
.whichfork
= whichfork
;
599 * Check for the cursor referring to the last block at the given level.
601 int /* 1=is last block, 0=not last block */
602 xfs_btree_islastblock(
603 xfs_btree_cur_t
*cur
, /* btree cursor */
604 int level
) /* level to check */
606 xfs_btree_block_t
*block
; /* generic btree block pointer */
607 xfs_buf_t
*bp
; /* buffer containing block */
609 block
= xfs_btree_get_block(cur
, level
, &bp
);
610 xfs_btree_check_block(cur
, block
, level
, bp
);
611 if (XFS_BTREE_LONG_PTRS(cur
->bc_btnum
))
612 return be64_to_cpu(block
->bb_u
.l
.bb_rightsib
) == NULLDFSBNO
;
614 return be32_to_cpu(block
->bb_u
.s
.bb_rightsib
) == NULLAGBLOCK
;
618 * Change the cursor to point to the first record at the given level.
619 * Other levels are unaffected.
621 int /* success=1, failure=0 */
623 xfs_btree_cur_t
*cur
, /* btree cursor */
624 int level
) /* level to change */
626 xfs_btree_block_t
*block
; /* generic btree block pointer */
627 xfs_buf_t
*bp
; /* buffer containing block */
630 * Get the block pointer for this level.
632 block
= xfs_btree_get_block(cur
, level
, &bp
);
633 xfs_btree_check_block(cur
, block
, level
, bp
);
635 * It's empty, there is no such record.
637 if (!block
->bb_h
.bb_numrecs
)
640 * Set the ptr value to 1, that's the first record/key.
642 cur
->bc_ptrs
[level
] = 1;
647 * Change the cursor to point to the last record in the current block
648 * at the given level. Other levels are unaffected.
650 int /* success=1, failure=0 */
652 xfs_btree_cur_t
*cur
, /* btree cursor */
653 int level
) /* level to change */
655 xfs_btree_block_t
*block
; /* generic btree block pointer */
656 xfs_buf_t
*bp
; /* buffer containing block */
659 * Get the block pointer for this level.
661 block
= xfs_btree_get_block(cur
, level
, &bp
);
662 xfs_btree_check_block(cur
, block
, level
, bp
);
664 * It's empty, there is no such record.
666 if (!block
->bb_h
.bb_numrecs
)
669 * Set the ptr value to numrecs, that's the last record/key.
671 cur
->bc_ptrs
[level
] = be16_to_cpu(block
->bb_h
.bb_numrecs
);
676 * Compute first and last byte offsets for the fields given.
677 * Interprets the offsets table, which contains struct field offsets.
681 __int64_t fields
, /* bitmask of fields */
682 const short *offsets
, /* table of field offsets */
683 int nbits
, /* number of bits to inspect */
684 int *first
, /* output: first byte offset */
685 int *last
) /* output: last byte offset */
687 int i
; /* current bit number */
688 __int64_t imask
; /* mask for current bit number */
692 * Find the lowest bit, so the first byte offset.
694 for (i
= 0, imask
= 1LL; ; i
++, imask
<<= 1) {
695 if (imask
& fields
) {
701 * Find the highest bit, so the last byte offset.
703 for (i
= nbits
- 1, imask
= 1LL << i
; ; i
--, imask
>>= 1) {
704 if (imask
& fields
) {
705 *last
= offsets
[i
+ 1] - 1;
712 * Get a buffer for the block, return it read in.
713 * Long-form addressing.
717 xfs_mount_t
*mp
, /* file system mount point */
718 xfs_trans_t
*tp
, /* transaction pointer */
719 xfs_fsblock_t fsbno
, /* file system block number */
720 uint lock
, /* lock flags for read_buf */
721 xfs_buf_t
**bpp
, /* buffer for fsbno */
722 int refval
) /* ref count value for buffer */
724 xfs_buf_t
*bp
; /* return value */
725 xfs_daddr_t d
; /* real disk block address */
728 ASSERT(fsbno
!= NULLFSBLOCK
);
729 d
= XFS_FSB_TO_DADDR(mp
, fsbno
);
730 if ((error
= xfs_trans_read_buf(mp
, tp
, mp
->m_ddev_targp
, d
,
731 mp
->m_bsize
, lock
, &bp
))) {
734 ASSERT(!bp
|| !XFS_BUF_GETERROR(bp
));
736 XFS_BUF_SET_VTYPE_REF(bp
, B_FS_MAP
, refval
);
743 * Get a buffer for the block, return it read in.
744 * Short-form addressing.
748 xfs_mount_t
*mp
, /* file system mount point */
749 xfs_trans_t
*tp
, /* transaction pointer */
750 xfs_agnumber_t agno
, /* allocation group number */
751 xfs_agblock_t agbno
, /* allocation group block number */
752 uint lock
, /* lock flags for read_buf */
753 xfs_buf_t
**bpp
, /* buffer for agno/agbno */
754 int refval
) /* ref count value for buffer */
756 xfs_buf_t
*bp
; /* return value */
757 xfs_daddr_t d
; /* real disk block address */
760 ASSERT(agno
!= NULLAGNUMBER
);
761 ASSERT(agbno
!= NULLAGBLOCK
);
762 d
= XFS_AGB_TO_DADDR(mp
, agno
, agbno
);
763 if ((error
= xfs_trans_read_buf(mp
, tp
, mp
->m_ddev_targp
, d
,
764 mp
->m_bsize
, lock
, &bp
))) {
767 ASSERT(!bp
|| !XFS_BUF_GETERROR(bp
));
770 case XFS_ALLOC_BTREE_REF
:
771 XFS_BUF_SET_VTYPE_REF(bp
, B_FS_MAP
, refval
);
773 case XFS_INO_BTREE_REF
:
774 XFS_BUF_SET_VTYPE_REF(bp
, B_FS_INOMAP
, refval
);
783 * Read-ahead the block, don't wait for it, don't return a buffer.
784 * Long-form addressing.
788 xfs_btree_reada_bufl(
789 xfs_mount_t
*mp
, /* file system mount point */
790 xfs_fsblock_t fsbno
, /* file system block number */
791 xfs_extlen_t count
) /* count of filesystem blocks */
795 ASSERT(fsbno
!= NULLFSBLOCK
);
796 d
= XFS_FSB_TO_DADDR(mp
, fsbno
);
797 xfs_baread(mp
->m_ddev_targp
, d
, mp
->m_bsize
* count
);
801 * Read-ahead the block, don't wait for it, don't return a buffer.
802 * Short-form addressing.
806 xfs_btree_reada_bufs(
807 xfs_mount_t
*mp
, /* file system mount point */
808 xfs_agnumber_t agno
, /* allocation group number */
809 xfs_agblock_t agbno
, /* allocation group block number */
810 xfs_extlen_t count
) /* count of filesystem blocks */
814 ASSERT(agno
!= NULLAGNUMBER
);
815 ASSERT(agbno
!= NULLAGBLOCK
);
816 d
= XFS_AGB_TO_DADDR(mp
, agno
, agbno
);
817 xfs_baread(mp
->m_ddev_targp
, d
, mp
->m_bsize
* count
);
821 * Read-ahead btree blocks, at the given level.
822 * Bits in lr are set from XFS_BTCUR_{LEFT,RIGHT}RA.
825 xfs_btree_readahead_core(
826 xfs_btree_cur_t
*cur
, /* btree cursor */
827 int lev
, /* level in btree */
828 int lr
) /* left/right bits */
830 xfs_alloc_block_t
*a
;
832 xfs_inobt_block_t
*i
;
835 ASSERT(cur
->bc_bufs
[lev
] != NULL
);
836 cur
->bc_ra
[lev
] |= lr
;
837 switch (cur
->bc_btnum
) {
840 a
= XFS_BUF_TO_ALLOC_BLOCK(cur
->bc_bufs
[lev
]);
841 if ((lr
& XFS_BTCUR_LEFTRA
) && be32_to_cpu(a
->bb_leftsib
) != NULLAGBLOCK
) {
842 xfs_btree_reada_bufs(cur
->bc_mp
, cur
->bc_private
.a
.agno
,
843 be32_to_cpu(a
->bb_leftsib
), 1);
846 if ((lr
& XFS_BTCUR_RIGHTRA
) && be32_to_cpu(a
->bb_rightsib
) != NULLAGBLOCK
) {
847 xfs_btree_reada_bufs(cur
->bc_mp
, cur
->bc_private
.a
.agno
,
848 be32_to_cpu(a
->bb_rightsib
), 1);
853 b
= XFS_BUF_TO_BMBT_BLOCK(cur
->bc_bufs
[lev
]);
854 if ((lr
& XFS_BTCUR_LEFTRA
) && be64_to_cpu(b
->bb_leftsib
) != NULLDFSBNO
) {
855 xfs_btree_reada_bufl(cur
->bc_mp
, be64_to_cpu(b
->bb_leftsib
), 1);
858 if ((lr
& XFS_BTCUR_RIGHTRA
) && be64_to_cpu(b
->bb_rightsib
) != NULLDFSBNO
) {
859 xfs_btree_reada_bufl(cur
->bc_mp
, be64_to_cpu(b
->bb_rightsib
), 1);
864 i
= XFS_BUF_TO_INOBT_BLOCK(cur
->bc_bufs
[lev
]);
865 if ((lr
& XFS_BTCUR_LEFTRA
) && be32_to_cpu(i
->bb_leftsib
) != NULLAGBLOCK
) {
866 xfs_btree_reada_bufs(cur
->bc_mp
, cur
->bc_private
.a
.agno
,
867 be32_to_cpu(i
->bb_leftsib
), 1);
870 if ((lr
& XFS_BTCUR_RIGHTRA
) && be32_to_cpu(i
->bb_rightsib
) != NULLAGBLOCK
) {
871 xfs_btree_reada_bufs(cur
->bc_mp
, cur
->bc_private
.a
.agno
,
872 be32_to_cpu(i
->bb_rightsib
), 1);
883 * Set the buffer for level "lev" in the cursor to bp, releasing
884 * any previous buffer.
888 xfs_btree_cur_t
*cur
, /* btree cursor */
889 int lev
, /* level in btree */
890 xfs_buf_t
*bp
) /* new buffer to set */
892 xfs_btree_block_t
*b
; /* btree block */
893 xfs_buf_t
*obp
; /* old buffer pointer */
895 obp
= cur
->bc_bufs
[lev
];
897 xfs_trans_brelse(cur
->bc_tp
, obp
);
898 cur
->bc_bufs
[lev
] = bp
;
902 b
= XFS_BUF_TO_BLOCK(bp
);
903 if (XFS_BTREE_LONG_PTRS(cur
->bc_btnum
)) {
904 if (be64_to_cpu(b
->bb_u
.l
.bb_leftsib
) == NULLDFSBNO
)
905 cur
->bc_ra
[lev
] |= XFS_BTCUR_LEFTRA
;
906 if (be64_to_cpu(b
->bb_u
.l
.bb_rightsib
) == NULLDFSBNO
)
907 cur
->bc_ra
[lev
] |= XFS_BTCUR_RIGHTRA
;
909 if (be32_to_cpu(b
->bb_u
.s
.bb_leftsib
) == NULLAGBLOCK
)
910 cur
->bc_ra
[lev
] |= XFS_BTCUR_LEFTRA
;
911 if (be32_to_cpu(b
->bb_u
.s
.bb_rightsib
) == NULLAGBLOCK
)
912 cur
->bc_ra
[lev
] |= XFS_BTCUR_RIGHTRA
;