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_shared.h"
21 #include "xfs_format.h"
22 #include "xfs_log_format.h"
23 #include "xfs_trans_resv.h"
25 #include "xfs_mount.h"
26 #include "xfs_inode.h"
27 #include "xfs_trans.h"
28 #include "xfs_inode_item.h"
29 #include "xfs_buf_item.h"
30 #include "xfs_btree.h"
31 #include "xfs_error.h"
32 #include "xfs_trace.h"
33 #include "xfs_cksum.h"
34 #include "xfs_alloc.h"
38 * Cursor allocation zone.
40 kmem_zone_t
*xfs_btree_cur_zone
;
43 * Btree magic numbers.
45 static const __uint32_t xfs_magics
[2][XFS_BTNUM_MAX
] = {
46 { XFS_ABTB_MAGIC
, XFS_ABTC_MAGIC
, XFS_BMAP_MAGIC
, XFS_IBT_MAGIC
,
48 { XFS_ABTB_CRC_MAGIC
, XFS_ABTC_CRC_MAGIC
,
49 XFS_BMAP_CRC_MAGIC
, XFS_IBT_CRC_MAGIC
, XFS_FIBT_CRC_MAGIC
}
51 #define xfs_btree_magic(cur) \
52 xfs_magics[!!((cur)->bc_flags & XFS_BTREE_CRC_BLOCKS)][cur->bc_btnum]
55 STATIC
int /* error (0 or EFSCORRUPTED) */
56 xfs_btree_check_lblock(
57 struct xfs_btree_cur
*cur
, /* btree cursor */
58 struct xfs_btree_block
*block
, /* btree long form block pointer */
59 int level
, /* level of the btree block */
60 struct xfs_buf
*bp
) /* buffer for block, if any */
62 int lblock_ok
= 1; /* block passes checks */
63 struct xfs_mount
*mp
; /* file system mount point */
67 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
68 lblock_ok
= lblock_ok
&&
69 uuid_equal(&block
->bb_u
.l
.bb_uuid
,
70 &mp
->m_sb
.sb_meta_uuid
) &&
71 block
->bb_u
.l
.bb_blkno
== cpu_to_be64(
72 bp
? bp
->b_bn
: XFS_BUF_DADDR_NULL
);
75 lblock_ok
= lblock_ok
&&
76 be32_to_cpu(block
->bb_magic
) == xfs_btree_magic(cur
) &&
77 be16_to_cpu(block
->bb_level
) == level
&&
78 be16_to_cpu(block
->bb_numrecs
) <=
79 cur
->bc_ops
->get_maxrecs(cur
, level
) &&
80 block
->bb_u
.l
.bb_leftsib
&&
81 (block
->bb_u
.l
.bb_leftsib
== cpu_to_be64(NULLFSBLOCK
) ||
82 XFS_FSB_SANITY_CHECK(mp
,
83 be64_to_cpu(block
->bb_u
.l
.bb_leftsib
))) &&
84 block
->bb_u
.l
.bb_rightsib
&&
85 (block
->bb_u
.l
.bb_rightsib
== cpu_to_be64(NULLFSBLOCK
) ||
86 XFS_FSB_SANITY_CHECK(mp
,
87 be64_to_cpu(block
->bb_u
.l
.bb_rightsib
)));
89 if (unlikely(XFS_TEST_ERROR(!lblock_ok
, mp
,
90 XFS_ERRTAG_BTREE_CHECK_LBLOCK
,
91 XFS_RANDOM_BTREE_CHECK_LBLOCK
))) {
93 trace_xfs_btree_corrupt(bp
, _RET_IP_
);
94 XFS_ERROR_REPORT(__func__
, XFS_ERRLEVEL_LOW
, mp
);
100 STATIC
int /* error (0 or EFSCORRUPTED) */
101 xfs_btree_check_sblock(
102 struct xfs_btree_cur
*cur
, /* btree cursor */
103 struct xfs_btree_block
*block
, /* btree short form block pointer */
104 int level
, /* level of the btree block */
105 struct xfs_buf
*bp
) /* buffer containing block */
107 struct xfs_mount
*mp
; /* file system mount point */
108 struct xfs_buf
*agbp
; /* buffer for ag. freespace struct */
109 struct xfs_agf
*agf
; /* ag. freespace structure */
110 xfs_agblock_t agflen
; /* native ag. freespace length */
111 int sblock_ok
= 1; /* block passes checks */
114 agbp
= cur
->bc_private
.a
.agbp
;
115 agf
= XFS_BUF_TO_AGF(agbp
);
116 agflen
= be32_to_cpu(agf
->agf_length
);
118 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
119 sblock_ok
= sblock_ok
&&
120 uuid_equal(&block
->bb_u
.s
.bb_uuid
,
121 &mp
->m_sb
.sb_meta_uuid
) &&
122 block
->bb_u
.s
.bb_blkno
== cpu_to_be64(
123 bp
? bp
->b_bn
: XFS_BUF_DADDR_NULL
);
126 sblock_ok
= sblock_ok
&&
127 be32_to_cpu(block
->bb_magic
) == xfs_btree_magic(cur
) &&
128 be16_to_cpu(block
->bb_level
) == level
&&
129 be16_to_cpu(block
->bb_numrecs
) <=
130 cur
->bc_ops
->get_maxrecs(cur
, level
) &&
131 (block
->bb_u
.s
.bb_leftsib
== cpu_to_be32(NULLAGBLOCK
) ||
132 be32_to_cpu(block
->bb_u
.s
.bb_leftsib
) < agflen
) &&
133 block
->bb_u
.s
.bb_leftsib
&&
134 (block
->bb_u
.s
.bb_rightsib
== cpu_to_be32(NULLAGBLOCK
) ||
135 be32_to_cpu(block
->bb_u
.s
.bb_rightsib
) < agflen
) &&
136 block
->bb_u
.s
.bb_rightsib
;
138 if (unlikely(XFS_TEST_ERROR(!sblock_ok
, mp
,
139 XFS_ERRTAG_BTREE_CHECK_SBLOCK
,
140 XFS_RANDOM_BTREE_CHECK_SBLOCK
))) {
142 trace_xfs_btree_corrupt(bp
, _RET_IP_
);
143 XFS_ERROR_REPORT(__func__
, XFS_ERRLEVEL_LOW
, mp
);
144 return -EFSCORRUPTED
;
150 * Debug routine: check that block header is ok.
153 xfs_btree_check_block(
154 struct xfs_btree_cur
*cur
, /* btree cursor */
155 struct xfs_btree_block
*block
, /* generic btree block pointer */
156 int level
, /* level of the btree block */
157 struct xfs_buf
*bp
) /* buffer containing block, if any */
159 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
)
160 return xfs_btree_check_lblock(cur
, block
, level
, bp
);
162 return xfs_btree_check_sblock(cur
, block
, level
, bp
);
166 * Check that (long) pointer is ok.
168 int /* error (0 or EFSCORRUPTED) */
169 xfs_btree_check_lptr(
170 struct xfs_btree_cur
*cur
, /* btree cursor */
171 xfs_fsblock_t bno
, /* btree block disk address */
172 int level
) /* btree block level */
174 XFS_WANT_CORRUPTED_RETURN(cur
->bc_mp
,
176 bno
!= NULLFSBLOCK
&&
177 XFS_FSB_SANITY_CHECK(cur
->bc_mp
, bno
));
183 * Check that (short) pointer is ok.
185 STATIC
int /* error (0 or EFSCORRUPTED) */
186 xfs_btree_check_sptr(
187 struct xfs_btree_cur
*cur
, /* btree cursor */
188 xfs_agblock_t bno
, /* btree block disk address */
189 int level
) /* btree block level */
191 xfs_agblock_t agblocks
= cur
->bc_mp
->m_sb
.sb_agblocks
;
193 XFS_WANT_CORRUPTED_RETURN(cur
->bc_mp
,
195 bno
!= NULLAGBLOCK
&&
202 * Check that block ptr is ok.
204 STATIC
int /* error (0 or EFSCORRUPTED) */
206 struct xfs_btree_cur
*cur
, /* btree cursor */
207 union xfs_btree_ptr
*ptr
, /* btree block disk address */
208 int index
, /* offset from ptr to check */
209 int level
) /* btree block level */
211 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
) {
212 return xfs_btree_check_lptr(cur
,
213 be64_to_cpu((&ptr
->l
)[index
]), level
);
215 return xfs_btree_check_sptr(cur
,
216 be32_to_cpu((&ptr
->s
)[index
]), level
);
222 * Calculate CRC on the whole btree block and stuff it into the
223 * long-form btree header.
225 * Prior to calculting the CRC, pull the LSN out of the buffer log item and put
226 * it into the buffer so recovery knows what the last modification was that made
230 xfs_btree_lblock_calc_crc(
233 struct xfs_btree_block
*block
= XFS_BUF_TO_BLOCK(bp
);
234 struct xfs_buf_log_item
*bip
= bp
->b_fspriv
;
236 if (!xfs_sb_version_hascrc(&bp
->b_target
->bt_mount
->m_sb
))
239 block
->bb_u
.l
.bb_lsn
= cpu_to_be64(bip
->bli_item
.li_lsn
);
240 xfs_buf_update_cksum(bp
, XFS_BTREE_LBLOCK_CRC_OFF
);
244 xfs_btree_lblock_verify_crc(
247 struct xfs_btree_block
*block
= XFS_BUF_TO_BLOCK(bp
);
248 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
250 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
251 if (!xfs_log_check_lsn(mp
, be64_to_cpu(block
->bb_u
.l
.bb_lsn
)))
253 return xfs_buf_verify_cksum(bp
, XFS_BTREE_LBLOCK_CRC_OFF
);
260 * Calculate CRC on the whole btree block and stuff it into the
261 * short-form btree header.
263 * Prior to calculting the CRC, pull the LSN out of the buffer log item and put
264 * it into the buffer so recovery knows what the last modification was that made
268 xfs_btree_sblock_calc_crc(
271 struct xfs_btree_block
*block
= XFS_BUF_TO_BLOCK(bp
);
272 struct xfs_buf_log_item
*bip
= bp
->b_fspriv
;
274 if (!xfs_sb_version_hascrc(&bp
->b_target
->bt_mount
->m_sb
))
277 block
->bb_u
.s
.bb_lsn
= cpu_to_be64(bip
->bli_item
.li_lsn
);
278 xfs_buf_update_cksum(bp
, XFS_BTREE_SBLOCK_CRC_OFF
);
282 xfs_btree_sblock_verify_crc(
285 struct xfs_btree_block
*block
= XFS_BUF_TO_BLOCK(bp
);
286 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
288 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
289 if (!xfs_log_check_lsn(mp
, be64_to_cpu(block
->bb_u
.s
.bb_lsn
)))
291 return xfs_buf_verify_cksum(bp
, XFS_BTREE_SBLOCK_CRC_OFF
);
298 * Delete the btree cursor.
301 xfs_btree_del_cursor(
302 xfs_btree_cur_t
*cur
, /* btree cursor */
303 int error
) /* del because of error */
305 int i
; /* btree level */
308 * Clear the buffer pointers, and release the buffers.
309 * If we're doing this in the face of an error, we
310 * need to make sure to inspect all of the entries
311 * in the bc_bufs array for buffers to be unlocked.
312 * This is because some of the btree code works from
313 * level n down to 0, and if we get an error along
314 * the way we won't have initialized all the entries
317 for (i
= 0; i
< cur
->bc_nlevels
; i
++) {
319 xfs_trans_brelse(cur
->bc_tp
, cur
->bc_bufs
[i
]);
324 * Can't free a bmap cursor without having dealt with the
325 * allocated indirect blocks' accounting.
327 ASSERT(cur
->bc_btnum
!= XFS_BTNUM_BMAP
||
328 cur
->bc_private
.b
.allocated
== 0);
332 kmem_zone_free(xfs_btree_cur_zone
, cur
);
336 * Duplicate the btree cursor.
337 * Allocate a new one, copy the record, re-get the buffers.
340 xfs_btree_dup_cursor(
341 xfs_btree_cur_t
*cur
, /* input cursor */
342 xfs_btree_cur_t
**ncur
) /* output cursor */
344 xfs_buf_t
*bp
; /* btree block's buffer pointer */
345 int error
; /* error return value */
346 int i
; /* level number of btree block */
347 xfs_mount_t
*mp
; /* mount structure for filesystem */
348 xfs_btree_cur_t
*new; /* new cursor value */
349 xfs_trans_t
*tp
; /* transaction pointer, can be NULL */
355 * Allocate a new cursor like the old one.
357 new = cur
->bc_ops
->dup_cursor(cur
);
360 * Copy the record currently in the cursor.
362 new->bc_rec
= cur
->bc_rec
;
365 * For each level current, re-get the buffer and copy the ptr value.
367 for (i
= 0; i
< new->bc_nlevels
; i
++) {
368 new->bc_ptrs
[i
] = cur
->bc_ptrs
[i
];
369 new->bc_ra
[i
] = cur
->bc_ra
[i
];
370 bp
= cur
->bc_bufs
[i
];
372 error
= xfs_trans_read_buf(mp
, tp
, mp
->m_ddev_targp
,
373 XFS_BUF_ADDR(bp
), mp
->m_bsize
,
375 cur
->bc_ops
->buf_ops
);
377 xfs_btree_del_cursor(new, error
);
382 new->bc_bufs
[i
] = bp
;
389 * XFS btree block layout and addressing:
391 * There are two types of blocks in the btree: leaf and non-leaf blocks.
393 * The leaf record start with a header then followed by records containing
394 * the values. A non-leaf block also starts with the same header, and
395 * then first contains lookup keys followed by an equal number of pointers
396 * to the btree blocks at the previous level.
398 * +--------+-------+-------+-------+-------+-------+-------+
399 * Leaf: | header | rec 1 | rec 2 | rec 3 | rec 4 | rec 5 | rec N |
400 * +--------+-------+-------+-------+-------+-------+-------+
402 * +--------+-------+-------+-------+-------+-------+-------+
403 * Non-Leaf: | header | key 1 | key 2 | key N | ptr 1 | ptr 2 | ptr N |
404 * +--------+-------+-------+-------+-------+-------+-------+
406 * The header is called struct xfs_btree_block for reasons better left unknown
407 * and comes in different versions for short (32bit) and long (64bit) block
408 * pointers. The record and key structures are defined by the btree instances
409 * and opaque to the btree core. The block pointers are simple disk endian
410 * integers, available in a short (32bit) and long (64bit) variant.
412 * The helpers below calculate the offset of a given record, key or pointer
413 * into a btree block (xfs_btree_*_offset) or return a pointer to the given
414 * record, key or pointer (xfs_btree_*_addr). Note that all addressing
415 * inside the btree block is done using indices starting at one, not zero!
419 * Return size of the btree block header for this btree instance.
421 static inline size_t xfs_btree_block_len(struct xfs_btree_cur
*cur
)
423 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
) {
424 if (cur
->bc_flags
& XFS_BTREE_CRC_BLOCKS
)
425 return XFS_BTREE_LBLOCK_CRC_LEN
;
426 return XFS_BTREE_LBLOCK_LEN
;
428 if (cur
->bc_flags
& XFS_BTREE_CRC_BLOCKS
)
429 return XFS_BTREE_SBLOCK_CRC_LEN
;
430 return XFS_BTREE_SBLOCK_LEN
;
434 * Return size of btree block pointers for this btree instance.
436 static inline size_t xfs_btree_ptr_len(struct xfs_btree_cur
*cur
)
438 return (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
) ?
439 sizeof(__be64
) : sizeof(__be32
);
443 * Calculate offset of the n-th record in a btree block.
446 xfs_btree_rec_offset(
447 struct xfs_btree_cur
*cur
,
450 return xfs_btree_block_len(cur
) +
451 (n
- 1) * cur
->bc_ops
->rec_len
;
455 * Calculate offset of the n-th key in a btree block.
458 xfs_btree_key_offset(
459 struct xfs_btree_cur
*cur
,
462 return xfs_btree_block_len(cur
) +
463 (n
- 1) * cur
->bc_ops
->key_len
;
467 * Calculate offset of the n-th block pointer in a btree block.
470 xfs_btree_ptr_offset(
471 struct xfs_btree_cur
*cur
,
475 return xfs_btree_block_len(cur
) +
476 cur
->bc_ops
->get_maxrecs(cur
, level
) * cur
->bc_ops
->key_len
+
477 (n
- 1) * xfs_btree_ptr_len(cur
);
481 * Return a pointer to the n-th record in the btree block.
483 STATIC
union xfs_btree_rec
*
485 struct xfs_btree_cur
*cur
,
487 struct xfs_btree_block
*block
)
489 return (union xfs_btree_rec
*)
490 ((char *)block
+ xfs_btree_rec_offset(cur
, n
));
494 * Return a pointer to the n-th key in the btree block.
496 STATIC
union xfs_btree_key
*
498 struct xfs_btree_cur
*cur
,
500 struct xfs_btree_block
*block
)
502 return (union xfs_btree_key
*)
503 ((char *)block
+ xfs_btree_key_offset(cur
, n
));
507 * Return a pointer to the n-th block pointer in the btree block.
509 STATIC
union xfs_btree_ptr
*
511 struct xfs_btree_cur
*cur
,
513 struct xfs_btree_block
*block
)
515 int level
= xfs_btree_get_level(block
);
517 ASSERT(block
->bb_level
!= 0);
519 return (union xfs_btree_ptr
*)
520 ((char *)block
+ xfs_btree_ptr_offset(cur
, n
, level
));
524 * Get the root block which is stored in the inode.
526 * For now this btree implementation assumes the btree root is always
527 * stored in the if_broot field of an inode fork.
529 STATIC
struct xfs_btree_block
*
531 struct xfs_btree_cur
*cur
)
533 struct xfs_ifork
*ifp
;
535 ifp
= XFS_IFORK_PTR(cur
->bc_private
.b
.ip
, cur
->bc_private
.b
.whichfork
);
536 return (struct xfs_btree_block
*)ifp
->if_broot
;
540 * Retrieve the block pointer from the cursor at the given level.
541 * This may be an inode btree root or from a buffer.
543 STATIC
struct xfs_btree_block
* /* generic btree block pointer */
545 struct xfs_btree_cur
*cur
, /* btree cursor */
546 int level
, /* level in btree */
547 struct xfs_buf
**bpp
) /* buffer containing the block */
549 if ((cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) &&
550 (level
== cur
->bc_nlevels
- 1)) {
552 return xfs_btree_get_iroot(cur
);
555 *bpp
= cur
->bc_bufs
[level
];
556 return XFS_BUF_TO_BLOCK(*bpp
);
560 * Get a buffer for the block, return it with no data read.
561 * Long-form addressing.
563 xfs_buf_t
* /* buffer for fsbno */
565 xfs_mount_t
*mp
, /* file system mount point */
566 xfs_trans_t
*tp
, /* transaction pointer */
567 xfs_fsblock_t fsbno
, /* file system block number */
568 uint lock
) /* lock flags for get_buf */
570 xfs_daddr_t d
; /* real disk block address */
572 ASSERT(fsbno
!= NULLFSBLOCK
);
573 d
= XFS_FSB_TO_DADDR(mp
, fsbno
);
574 return xfs_trans_get_buf(tp
, mp
->m_ddev_targp
, d
, mp
->m_bsize
, lock
);
578 * Get a buffer for the block, return it with no data read.
579 * Short-form addressing.
581 xfs_buf_t
* /* buffer for agno/agbno */
583 xfs_mount_t
*mp
, /* file system mount point */
584 xfs_trans_t
*tp
, /* transaction pointer */
585 xfs_agnumber_t agno
, /* allocation group number */
586 xfs_agblock_t agbno
, /* allocation group block number */
587 uint lock
) /* lock flags for get_buf */
589 xfs_daddr_t d
; /* real disk block address */
591 ASSERT(agno
!= NULLAGNUMBER
);
592 ASSERT(agbno
!= NULLAGBLOCK
);
593 d
= XFS_AGB_TO_DADDR(mp
, agno
, agbno
);
594 return xfs_trans_get_buf(tp
, mp
->m_ddev_targp
, d
, mp
->m_bsize
, lock
);
598 * Check for the cursor referring to the last block at the given level.
600 int /* 1=is last block, 0=not last block */
601 xfs_btree_islastblock(
602 xfs_btree_cur_t
*cur
, /* btree cursor */
603 int level
) /* level to check */
605 struct xfs_btree_block
*block
; /* generic btree block pointer */
606 xfs_buf_t
*bp
; /* buffer containing block */
608 block
= xfs_btree_get_block(cur
, level
, &bp
);
609 xfs_btree_check_block(cur
, block
, level
, bp
);
610 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
)
611 return block
->bb_u
.l
.bb_rightsib
== cpu_to_be64(NULLFSBLOCK
);
613 return block
->bb_u
.s
.bb_rightsib
== cpu_to_be32(NULLAGBLOCK
);
617 * Change the cursor to point to the first record at the given level.
618 * Other levels are unaffected.
620 STATIC
int /* success=1, failure=0 */
622 xfs_btree_cur_t
*cur
, /* btree cursor */
623 int level
) /* level to change */
625 struct xfs_btree_block
*block
; /* generic btree block pointer */
626 xfs_buf_t
*bp
; /* buffer containing block */
629 * Get the block pointer for this level.
631 block
= xfs_btree_get_block(cur
, level
, &bp
);
632 xfs_btree_check_block(cur
, block
, level
, bp
);
634 * It's empty, there is no such record.
636 if (!block
->bb_numrecs
)
639 * Set the ptr value to 1, that's the first record/key.
641 cur
->bc_ptrs
[level
] = 1;
646 * Change the cursor to point to the last record in the current block
647 * at the given level. Other levels are unaffected.
649 STATIC
int /* success=1, failure=0 */
651 xfs_btree_cur_t
*cur
, /* btree cursor */
652 int level
) /* level to change */
654 struct xfs_btree_block
*block
; /* generic btree block pointer */
655 xfs_buf_t
*bp
; /* buffer containing block */
658 * Get the block pointer for this level.
660 block
= xfs_btree_get_block(cur
, level
, &bp
);
661 xfs_btree_check_block(cur
, block
, level
, bp
);
663 * It's empty, there is no such record.
665 if (!block
->bb_numrecs
)
668 * Set the ptr value to numrecs, that's the last record/key.
670 cur
->bc_ptrs
[level
] = be16_to_cpu(block
->bb_numrecs
);
675 * Compute first and last byte offsets for the fields given.
676 * Interprets the offsets table, which contains struct field offsets.
680 __int64_t fields
, /* bitmask of fields */
681 const short *offsets
, /* table of field offsets */
682 int nbits
, /* number of bits to inspect */
683 int *first
, /* output: first byte offset */
684 int *last
) /* output: last byte offset */
686 int i
; /* current bit number */
687 __int64_t imask
; /* mask for current bit number */
691 * Find the lowest bit, so the first byte offset.
693 for (i
= 0, imask
= 1LL; ; i
++, imask
<<= 1) {
694 if (imask
& fields
) {
700 * Find the highest bit, so the last byte offset.
702 for (i
= nbits
- 1, imask
= 1LL << i
; ; i
--, imask
>>= 1) {
703 if (imask
& fields
) {
704 *last
= offsets
[i
+ 1] - 1;
711 * Get a buffer for the block, return it read in.
712 * Long-form addressing.
716 struct xfs_mount
*mp
, /* file system mount point */
717 struct xfs_trans
*tp
, /* transaction pointer */
718 xfs_fsblock_t fsbno
, /* file system block number */
719 uint lock
, /* lock flags for read_buf */
720 struct xfs_buf
**bpp
, /* buffer for fsbno */
721 int refval
, /* ref count value for buffer */
722 const struct xfs_buf_ops
*ops
)
724 struct xfs_buf
*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 error
= xfs_trans_read_buf(mp
, tp
, mp
->m_ddev_targp
, d
,
731 mp
->m_bsize
, lock
, &bp
, ops
);
735 xfs_buf_set_ref(bp
, refval
);
741 * Read-ahead the block, don't wait for it, don't return a buffer.
742 * Long-form addressing.
746 xfs_btree_reada_bufl(
747 struct xfs_mount
*mp
, /* file system mount point */
748 xfs_fsblock_t fsbno
, /* file system block number */
749 xfs_extlen_t count
, /* count of filesystem blocks */
750 const struct xfs_buf_ops
*ops
)
754 ASSERT(fsbno
!= NULLFSBLOCK
);
755 d
= XFS_FSB_TO_DADDR(mp
, fsbno
);
756 xfs_buf_readahead(mp
->m_ddev_targp
, d
, mp
->m_bsize
* count
, ops
);
760 * Read-ahead the block, don't wait for it, don't return a buffer.
761 * Short-form addressing.
765 xfs_btree_reada_bufs(
766 struct xfs_mount
*mp
, /* file system mount point */
767 xfs_agnumber_t agno
, /* allocation group number */
768 xfs_agblock_t agbno
, /* allocation group block number */
769 xfs_extlen_t count
, /* count of filesystem blocks */
770 const struct xfs_buf_ops
*ops
)
774 ASSERT(agno
!= NULLAGNUMBER
);
775 ASSERT(agbno
!= NULLAGBLOCK
);
776 d
= XFS_AGB_TO_DADDR(mp
, agno
, agbno
);
777 xfs_buf_readahead(mp
->m_ddev_targp
, d
, mp
->m_bsize
* count
, ops
);
781 xfs_btree_readahead_lblock(
782 struct xfs_btree_cur
*cur
,
784 struct xfs_btree_block
*block
)
787 xfs_fsblock_t left
= be64_to_cpu(block
->bb_u
.l
.bb_leftsib
);
788 xfs_fsblock_t right
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
790 if ((lr
& XFS_BTCUR_LEFTRA
) && left
!= NULLFSBLOCK
) {
791 xfs_btree_reada_bufl(cur
->bc_mp
, left
, 1,
792 cur
->bc_ops
->buf_ops
);
796 if ((lr
& XFS_BTCUR_RIGHTRA
) && right
!= NULLFSBLOCK
) {
797 xfs_btree_reada_bufl(cur
->bc_mp
, right
, 1,
798 cur
->bc_ops
->buf_ops
);
806 xfs_btree_readahead_sblock(
807 struct xfs_btree_cur
*cur
,
809 struct xfs_btree_block
*block
)
812 xfs_agblock_t left
= be32_to_cpu(block
->bb_u
.s
.bb_leftsib
);
813 xfs_agblock_t right
= be32_to_cpu(block
->bb_u
.s
.bb_rightsib
);
816 if ((lr
& XFS_BTCUR_LEFTRA
) && left
!= NULLAGBLOCK
) {
817 xfs_btree_reada_bufs(cur
->bc_mp
, cur
->bc_private
.a
.agno
,
818 left
, 1, cur
->bc_ops
->buf_ops
);
822 if ((lr
& XFS_BTCUR_RIGHTRA
) && right
!= NULLAGBLOCK
) {
823 xfs_btree_reada_bufs(cur
->bc_mp
, cur
->bc_private
.a
.agno
,
824 right
, 1, cur
->bc_ops
->buf_ops
);
832 * Read-ahead btree blocks, at the given level.
833 * Bits in lr are set from XFS_BTCUR_{LEFT,RIGHT}RA.
837 struct xfs_btree_cur
*cur
, /* btree cursor */
838 int lev
, /* level in btree */
839 int lr
) /* left/right bits */
841 struct xfs_btree_block
*block
;
844 * No readahead needed if we are at the root level and the
845 * btree root is stored in the inode.
847 if ((cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) &&
848 (lev
== cur
->bc_nlevels
- 1))
851 if ((cur
->bc_ra
[lev
] | lr
) == cur
->bc_ra
[lev
])
854 cur
->bc_ra
[lev
] |= lr
;
855 block
= XFS_BUF_TO_BLOCK(cur
->bc_bufs
[lev
]);
857 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
)
858 return xfs_btree_readahead_lblock(cur
, lr
, block
);
859 return xfs_btree_readahead_sblock(cur
, lr
, block
);
863 xfs_btree_ptr_to_daddr(
864 struct xfs_btree_cur
*cur
,
865 union xfs_btree_ptr
*ptr
)
867 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
) {
868 ASSERT(ptr
->l
!= cpu_to_be64(NULLFSBLOCK
));
870 return XFS_FSB_TO_DADDR(cur
->bc_mp
, be64_to_cpu(ptr
->l
));
872 ASSERT(cur
->bc_private
.a
.agno
!= NULLAGNUMBER
);
873 ASSERT(ptr
->s
!= cpu_to_be32(NULLAGBLOCK
));
875 return XFS_AGB_TO_DADDR(cur
->bc_mp
, cur
->bc_private
.a
.agno
,
876 be32_to_cpu(ptr
->s
));
881 * Readahead @count btree blocks at the given @ptr location.
883 * We don't need to care about long or short form btrees here as we have a
884 * method of converting the ptr directly to a daddr available to us.
887 xfs_btree_readahead_ptr(
888 struct xfs_btree_cur
*cur
,
889 union xfs_btree_ptr
*ptr
,
892 xfs_buf_readahead(cur
->bc_mp
->m_ddev_targp
,
893 xfs_btree_ptr_to_daddr(cur
, ptr
),
894 cur
->bc_mp
->m_bsize
* count
, cur
->bc_ops
->buf_ops
);
898 * Set the buffer for level "lev" in the cursor to bp, releasing
899 * any previous buffer.
903 xfs_btree_cur_t
*cur
, /* btree cursor */
904 int lev
, /* level in btree */
905 xfs_buf_t
*bp
) /* new buffer to set */
907 struct xfs_btree_block
*b
; /* btree block */
909 if (cur
->bc_bufs
[lev
])
910 xfs_trans_brelse(cur
->bc_tp
, cur
->bc_bufs
[lev
]);
911 cur
->bc_bufs
[lev
] = bp
;
914 b
= XFS_BUF_TO_BLOCK(bp
);
915 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
) {
916 if (b
->bb_u
.l
.bb_leftsib
== cpu_to_be64(NULLFSBLOCK
))
917 cur
->bc_ra
[lev
] |= XFS_BTCUR_LEFTRA
;
918 if (b
->bb_u
.l
.bb_rightsib
== cpu_to_be64(NULLFSBLOCK
))
919 cur
->bc_ra
[lev
] |= XFS_BTCUR_RIGHTRA
;
921 if (b
->bb_u
.s
.bb_leftsib
== cpu_to_be32(NULLAGBLOCK
))
922 cur
->bc_ra
[lev
] |= XFS_BTCUR_LEFTRA
;
923 if (b
->bb_u
.s
.bb_rightsib
== cpu_to_be32(NULLAGBLOCK
))
924 cur
->bc_ra
[lev
] |= XFS_BTCUR_RIGHTRA
;
929 xfs_btree_ptr_is_null(
930 struct xfs_btree_cur
*cur
,
931 union xfs_btree_ptr
*ptr
)
933 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
)
934 return ptr
->l
== cpu_to_be64(NULLFSBLOCK
);
936 return ptr
->s
== cpu_to_be32(NULLAGBLOCK
);
940 xfs_btree_set_ptr_null(
941 struct xfs_btree_cur
*cur
,
942 union xfs_btree_ptr
*ptr
)
944 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
)
945 ptr
->l
= cpu_to_be64(NULLFSBLOCK
);
947 ptr
->s
= cpu_to_be32(NULLAGBLOCK
);
951 * Get/set/init sibling pointers
954 xfs_btree_get_sibling(
955 struct xfs_btree_cur
*cur
,
956 struct xfs_btree_block
*block
,
957 union xfs_btree_ptr
*ptr
,
960 ASSERT(lr
== XFS_BB_LEFTSIB
|| lr
== XFS_BB_RIGHTSIB
);
962 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
) {
963 if (lr
== XFS_BB_RIGHTSIB
)
964 ptr
->l
= block
->bb_u
.l
.bb_rightsib
;
966 ptr
->l
= block
->bb_u
.l
.bb_leftsib
;
968 if (lr
== XFS_BB_RIGHTSIB
)
969 ptr
->s
= block
->bb_u
.s
.bb_rightsib
;
971 ptr
->s
= block
->bb_u
.s
.bb_leftsib
;
976 xfs_btree_set_sibling(
977 struct xfs_btree_cur
*cur
,
978 struct xfs_btree_block
*block
,
979 union xfs_btree_ptr
*ptr
,
982 ASSERT(lr
== XFS_BB_LEFTSIB
|| lr
== XFS_BB_RIGHTSIB
);
984 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
) {
985 if (lr
== XFS_BB_RIGHTSIB
)
986 block
->bb_u
.l
.bb_rightsib
= ptr
->l
;
988 block
->bb_u
.l
.bb_leftsib
= ptr
->l
;
990 if (lr
== XFS_BB_RIGHTSIB
)
991 block
->bb_u
.s
.bb_rightsib
= ptr
->s
;
993 block
->bb_u
.s
.bb_leftsib
= ptr
->s
;
998 xfs_btree_init_block_int(
999 struct xfs_mount
*mp
,
1000 struct xfs_btree_block
*buf
,
1008 buf
->bb_magic
= cpu_to_be32(magic
);
1009 buf
->bb_level
= cpu_to_be16(level
);
1010 buf
->bb_numrecs
= cpu_to_be16(numrecs
);
1012 if (flags
& XFS_BTREE_LONG_PTRS
) {
1013 buf
->bb_u
.l
.bb_leftsib
= cpu_to_be64(NULLFSBLOCK
);
1014 buf
->bb_u
.l
.bb_rightsib
= cpu_to_be64(NULLFSBLOCK
);
1015 if (flags
& XFS_BTREE_CRC_BLOCKS
) {
1016 buf
->bb_u
.l
.bb_blkno
= cpu_to_be64(blkno
);
1017 buf
->bb_u
.l
.bb_owner
= cpu_to_be64(owner
);
1018 uuid_copy(&buf
->bb_u
.l
.bb_uuid
, &mp
->m_sb
.sb_meta_uuid
);
1019 buf
->bb_u
.l
.bb_pad
= 0;
1020 buf
->bb_u
.l
.bb_lsn
= 0;
1023 /* owner is a 32 bit value on short blocks */
1024 __u32 __owner
= (__u32
)owner
;
1026 buf
->bb_u
.s
.bb_leftsib
= cpu_to_be32(NULLAGBLOCK
);
1027 buf
->bb_u
.s
.bb_rightsib
= cpu_to_be32(NULLAGBLOCK
);
1028 if (flags
& XFS_BTREE_CRC_BLOCKS
) {
1029 buf
->bb_u
.s
.bb_blkno
= cpu_to_be64(blkno
);
1030 buf
->bb_u
.s
.bb_owner
= cpu_to_be32(__owner
);
1031 uuid_copy(&buf
->bb_u
.s
.bb_uuid
, &mp
->m_sb
.sb_meta_uuid
);
1032 buf
->bb_u
.s
.bb_lsn
= 0;
1038 xfs_btree_init_block(
1039 struct xfs_mount
*mp
,
1047 xfs_btree_init_block_int(mp
, XFS_BUF_TO_BLOCK(bp
), bp
->b_bn
,
1048 magic
, level
, numrecs
, owner
, flags
);
1052 xfs_btree_init_block_cur(
1053 struct xfs_btree_cur
*cur
,
1061 * we can pull the owner from the cursor right now as the different
1062 * owners align directly with the pointer size of the btree. This may
1063 * change in future, but is safe for current users of the generic btree
1066 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
)
1067 owner
= cur
->bc_private
.b
.ip
->i_ino
;
1069 owner
= cur
->bc_private
.a
.agno
;
1071 xfs_btree_init_block_int(cur
->bc_mp
, XFS_BUF_TO_BLOCK(bp
), bp
->b_bn
,
1072 xfs_btree_magic(cur
), level
, numrecs
,
1073 owner
, cur
->bc_flags
);
1077 * Return true if ptr is the last record in the btree and
1078 * we need to track updates to this record. The decision
1079 * will be further refined in the update_lastrec method.
1082 xfs_btree_is_lastrec(
1083 struct xfs_btree_cur
*cur
,
1084 struct xfs_btree_block
*block
,
1087 union xfs_btree_ptr ptr
;
1091 if (!(cur
->bc_flags
& XFS_BTREE_LASTREC_UPDATE
))
1094 xfs_btree_get_sibling(cur
, block
, &ptr
, XFS_BB_RIGHTSIB
);
1095 if (!xfs_btree_ptr_is_null(cur
, &ptr
))
1101 xfs_btree_buf_to_ptr(
1102 struct xfs_btree_cur
*cur
,
1104 union xfs_btree_ptr
*ptr
)
1106 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
)
1107 ptr
->l
= cpu_to_be64(XFS_DADDR_TO_FSB(cur
->bc_mp
,
1110 ptr
->s
= cpu_to_be32(xfs_daddr_to_agbno(cur
->bc_mp
,
1117 struct xfs_btree_cur
*cur
,
1120 switch (cur
->bc_btnum
) {
1123 xfs_buf_set_ref(bp
, XFS_ALLOC_BTREE_REF
);
1126 case XFS_BTNUM_FINO
:
1127 xfs_buf_set_ref(bp
, XFS_INO_BTREE_REF
);
1129 case XFS_BTNUM_BMAP
:
1130 xfs_buf_set_ref(bp
, XFS_BMAP_BTREE_REF
);
1138 xfs_btree_get_buf_block(
1139 struct xfs_btree_cur
*cur
,
1140 union xfs_btree_ptr
*ptr
,
1142 struct xfs_btree_block
**block
,
1143 struct xfs_buf
**bpp
)
1145 struct xfs_mount
*mp
= cur
->bc_mp
;
1148 /* need to sort out how callers deal with failures first */
1149 ASSERT(!(flags
& XBF_TRYLOCK
));
1151 d
= xfs_btree_ptr_to_daddr(cur
, ptr
);
1152 *bpp
= xfs_trans_get_buf(cur
->bc_tp
, mp
->m_ddev_targp
, d
,
1153 mp
->m_bsize
, flags
);
1158 (*bpp
)->b_ops
= cur
->bc_ops
->buf_ops
;
1159 *block
= XFS_BUF_TO_BLOCK(*bpp
);
1164 * Read in the buffer at the given ptr and return the buffer and
1165 * the block pointer within the buffer.
1168 xfs_btree_read_buf_block(
1169 struct xfs_btree_cur
*cur
,
1170 union xfs_btree_ptr
*ptr
,
1172 struct xfs_btree_block
**block
,
1173 struct xfs_buf
**bpp
)
1175 struct xfs_mount
*mp
= cur
->bc_mp
;
1179 /* need to sort out how callers deal with failures first */
1180 ASSERT(!(flags
& XBF_TRYLOCK
));
1182 d
= xfs_btree_ptr_to_daddr(cur
, ptr
);
1183 error
= xfs_trans_read_buf(mp
, cur
->bc_tp
, mp
->m_ddev_targp
, d
,
1184 mp
->m_bsize
, flags
, bpp
,
1185 cur
->bc_ops
->buf_ops
);
1189 xfs_btree_set_refs(cur
, *bpp
);
1190 *block
= XFS_BUF_TO_BLOCK(*bpp
);
1195 * Copy keys from one btree block to another.
1198 xfs_btree_copy_keys(
1199 struct xfs_btree_cur
*cur
,
1200 union xfs_btree_key
*dst_key
,
1201 union xfs_btree_key
*src_key
,
1204 ASSERT(numkeys
>= 0);
1205 memcpy(dst_key
, src_key
, numkeys
* cur
->bc_ops
->key_len
);
1209 * Copy records from one btree block to another.
1212 xfs_btree_copy_recs(
1213 struct xfs_btree_cur
*cur
,
1214 union xfs_btree_rec
*dst_rec
,
1215 union xfs_btree_rec
*src_rec
,
1218 ASSERT(numrecs
>= 0);
1219 memcpy(dst_rec
, src_rec
, numrecs
* cur
->bc_ops
->rec_len
);
1223 * Copy block pointers from one btree block to another.
1226 xfs_btree_copy_ptrs(
1227 struct xfs_btree_cur
*cur
,
1228 union xfs_btree_ptr
*dst_ptr
,
1229 union xfs_btree_ptr
*src_ptr
,
1232 ASSERT(numptrs
>= 0);
1233 memcpy(dst_ptr
, src_ptr
, numptrs
* xfs_btree_ptr_len(cur
));
1237 * Shift keys one index left/right inside a single btree block.
1240 xfs_btree_shift_keys(
1241 struct xfs_btree_cur
*cur
,
1242 union xfs_btree_key
*key
,
1248 ASSERT(numkeys
>= 0);
1249 ASSERT(dir
== 1 || dir
== -1);
1251 dst_key
= (char *)key
+ (dir
* cur
->bc_ops
->key_len
);
1252 memmove(dst_key
, key
, numkeys
* cur
->bc_ops
->key_len
);
1256 * Shift records one index left/right inside a single btree block.
1259 xfs_btree_shift_recs(
1260 struct xfs_btree_cur
*cur
,
1261 union xfs_btree_rec
*rec
,
1267 ASSERT(numrecs
>= 0);
1268 ASSERT(dir
== 1 || dir
== -1);
1270 dst_rec
= (char *)rec
+ (dir
* cur
->bc_ops
->rec_len
);
1271 memmove(dst_rec
, rec
, numrecs
* cur
->bc_ops
->rec_len
);
1275 * Shift block pointers one index left/right inside a single btree block.
1278 xfs_btree_shift_ptrs(
1279 struct xfs_btree_cur
*cur
,
1280 union xfs_btree_ptr
*ptr
,
1286 ASSERT(numptrs
>= 0);
1287 ASSERT(dir
== 1 || dir
== -1);
1289 dst_ptr
= (char *)ptr
+ (dir
* xfs_btree_ptr_len(cur
));
1290 memmove(dst_ptr
, ptr
, numptrs
* xfs_btree_ptr_len(cur
));
1294 * Log key values from the btree block.
1298 struct xfs_btree_cur
*cur
,
1303 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
1304 XFS_BTREE_TRACE_ARGBII(cur
, bp
, first
, last
);
1307 xfs_trans_buf_set_type(cur
->bc_tp
, bp
, XFS_BLFT_BTREE_BUF
);
1308 xfs_trans_log_buf(cur
->bc_tp
, bp
,
1309 xfs_btree_key_offset(cur
, first
),
1310 xfs_btree_key_offset(cur
, last
+ 1) - 1);
1312 xfs_trans_log_inode(cur
->bc_tp
, cur
->bc_private
.b
.ip
,
1313 xfs_ilog_fbroot(cur
->bc_private
.b
.whichfork
));
1316 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1320 * Log record values from the btree block.
1324 struct xfs_btree_cur
*cur
,
1329 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
1330 XFS_BTREE_TRACE_ARGBII(cur
, bp
, first
, last
);
1332 xfs_trans_buf_set_type(cur
->bc_tp
, bp
, XFS_BLFT_BTREE_BUF
);
1333 xfs_trans_log_buf(cur
->bc_tp
, bp
,
1334 xfs_btree_rec_offset(cur
, first
),
1335 xfs_btree_rec_offset(cur
, last
+ 1) - 1);
1337 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1341 * Log block pointer fields from a btree block (nonleaf).
1345 struct xfs_btree_cur
*cur
, /* btree cursor */
1346 struct xfs_buf
*bp
, /* buffer containing btree block */
1347 int first
, /* index of first pointer to log */
1348 int last
) /* index of last pointer to log */
1350 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
1351 XFS_BTREE_TRACE_ARGBII(cur
, bp
, first
, last
);
1354 struct xfs_btree_block
*block
= XFS_BUF_TO_BLOCK(bp
);
1355 int level
= xfs_btree_get_level(block
);
1357 xfs_trans_buf_set_type(cur
->bc_tp
, bp
, XFS_BLFT_BTREE_BUF
);
1358 xfs_trans_log_buf(cur
->bc_tp
, bp
,
1359 xfs_btree_ptr_offset(cur
, first
, level
),
1360 xfs_btree_ptr_offset(cur
, last
+ 1, level
) - 1);
1362 xfs_trans_log_inode(cur
->bc_tp
, cur
->bc_private
.b
.ip
,
1363 xfs_ilog_fbroot(cur
->bc_private
.b
.whichfork
));
1366 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1370 * Log fields from a btree block header.
1373 xfs_btree_log_block(
1374 struct xfs_btree_cur
*cur
, /* btree cursor */
1375 struct xfs_buf
*bp
, /* buffer containing btree block */
1376 int fields
) /* mask of fields: XFS_BB_... */
1378 int first
; /* first byte offset logged */
1379 int last
; /* last byte offset logged */
1380 static const short soffsets
[] = { /* table of offsets (short) */
1381 offsetof(struct xfs_btree_block
, bb_magic
),
1382 offsetof(struct xfs_btree_block
, bb_level
),
1383 offsetof(struct xfs_btree_block
, bb_numrecs
),
1384 offsetof(struct xfs_btree_block
, bb_u
.s
.bb_leftsib
),
1385 offsetof(struct xfs_btree_block
, bb_u
.s
.bb_rightsib
),
1386 offsetof(struct xfs_btree_block
, bb_u
.s
.bb_blkno
),
1387 offsetof(struct xfs_btree_block
, bb_u
.s
.bb_lsn
),
1388 offsetof(struct xfs_btree_block
, bb_u
.s
.bb_uuid
),
1389 offsetof(struct xfs_btree_block
, bb_u
.s
.bb_owner
),
1390 offsetof(struct xfs_btree_block
, bb_u
.s
.bb_crc
),
1391 XFS_BTREE_SBLOCK_CRC_LEN
1393 static const short loffsets
[] = { /* table of offsets (long) */
1394 offsetof(struct xfs_btree_block
, bb_magic
),
1395 offsetof(struct xfs_btree_block
, bb_level
),
1396 offsetof(struct xfs_btree_block
, bb_numrecs
),
1397 offsetof(struct xfs_btree_block
, bb_u
.l
.bb_leftsib
),
1398 offsetof(struct xfs_btree_block
, bb_u
.l
.bb_rightsib
),
1399 offsetof(struct xfs_btree_block
, bb_u
.l
.bb_blkno
),
1400 offsetof(struct xfs_btree_block
, bb_u
.l
.bb_lsn
),
1401 offsetof(struct xfs_btree_block
, bb_u
.l
.bb_uuid
),
1402 offsetof(struct xfs_btree_block
, bb_u
.l
.bb_owner
),
1403 offsetof(struct xfs_btree_block
, bb_u
.l
.bb_crc
),
1404 offsetof(struct xfs_btree_block
, bb_u
.l
.bb_pad
),
1405 XFS_BTREE_LBLOCK_CRC_LEN
1408 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
1409 XFS_BTREE_TRACE_ARGBI(cur
, bp
, fields
);
1414 if (cur
->bc_flags
& XFS_BTREE_CRC_BLOCKS
) {
1416 * We don't log the CRC when updating a btree
1417 * block but instead recreate it during log
1418 * recovery. As the log buffers have checksums
1419 * of their own this is safe and avoids logging a crc
1420 * update in a lot of places.
1422 if (fields
== XFS_BB_ALL_BITS
)
1423 fields
= XFS_BB_ALL_BITS_CRC
;
1424 nbits
= XFS_BB_NUM_BITS_CRC
;
1426 nbits
= XFS_BB_NUM_BITS
;
1428 xfs_btree_offsets(fields
,
1429 (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
) ?
1430 loffsets
: soffsets
,
1431 nbits
, &first
, &last
);
1432 xfs_trans_buf_set_type(cur
->bc_tp
, bp
, XFS_BLFT_BTREE_BUF
);
1433 xfs_trans_log_buf(cur
->bc_tp
, bp
, first
, last
);
1435 xfs_trans_log_inode(cur
->bc_tp
, cur
->bc_private
.b
.ip
,
1436 xfs_ilog_fbroot(cur
->bc_private
.b
.whichfork
));
1439 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1443 * Increment cursor by one record at the level.
1444 * For nonzero levels the leaf-ward information is untouched.
1447 xfs_btree_increment(
1448 struct xfs_btree_cur
*cur
,
1450 int *stat
) /* success/failure */
1452 struct xfs_btree_block
*block
;
1453 union xfs_btree_ptr ptr
;
1455 int error
; /* error return value */
1458 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
1459 XFS_BTREE_TRACE_ARGI(cur
, level
);
1461 ASSERT(level
< cur
->bc_nlevels
);
1463 /* Read-ahead to the right at this level. */
1464 xfs_btree_readahead(cur
, level
, XFS_BTCUR_RIGHTRA
);
1466 /* Get a pointer to the btree block. */
1467 block
= xfs_btree_get_block(cur
, level
, &bp
);
1470 error
= xfs_btree_check_block(cur
, block
, level
, bp
);
1475 /* We're done if we remain in the block after the increment. */
1476 if (++cur
->bc_ptrs
[level
] <= xfs_btree_get_numrecs(block
))
1479 /* Fail if we just went off the right edge of the tree. */
1480 xfs_btree_get_sibling(cur
, block
, &ptr
, XFS_BB_RIGHTSIB
);
1481 if (xfs_btree_ptr_is_null(cur
, &ptr
))
1484 XFS_BTREE_STATS_INC(cur
, increment
);
1487 * March up the tree incrementing pointers.
1488 * Stop when we don't go off the right edge of a block.
1490 for (lev
= level
+ 1; lev
< cur
->bc_nlevels
; lev
++) {
1491 block
= xfs_btree_get_block(cur
, lev
, &bp
);
1494 error
= xfs_btree_check_block(cur
, block
, lev
, bp
);
1499 if (++cur
->bc_ptrs
[lev
] <= xfs_btree_get_numrecs(block
))
1502 /* Read-ahead the right block for the next loop. */
1503 xfs_btree_readahead(cur
, lev
, XFS_BTCUR_RIGHTRA
);
1507 * If we went off the root then we are either seriously
1508 * confused or have the tree root in an inode.
1510 if (lev
== cur
->bc_nlevels
) {
1511 if (cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
)
1514 error
= -EFSCORRUPTED
;
1517 ASSERT(lev
< cur
->bc_nlevels
);
1520 * Now walk back down the tree, fixing up the cursor's buffer
1521 * pointers and key numbers.
1523 for (block
= xfs_btree_get_block(cur
, lev
, &bp
); lev
> level
; ) {
1524 union xfs_btree_ptr
*ptrp
;
1526 ptrp
= xfs_btree_ptr_addr(cur
, cur
->bc_ptrs
[lev
], block
);
1528 error
= xfs_btree_read_buf_block(cur
, ptrp
, 0, &block
, &bp
);
1532 xfs_btree_setbuf(cur
, lev
, bp
);
1533 cur
->bc_ptrs
[lev
] = 1;
1536 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1541 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1546 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
1551 * Decrement cursor by one record at the level.
1552 * For nonzero levels the leaf-ward information is untouched.
1555 xfs_btree_decrement(
1556 struct xfs_btree_cur
*cur
,
1558 int *stat
) /* success/failure */
1560 struct xfs_btree_block
*block
;
1562 int error
; /* error return value */
1564 union xfs_btree_ptr ptr
;
1566 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
1567 XFS_BTREE_TRACE_ARGI(cur
, level
);
1569 ASSERT(level
< cur
->bc_nlevels
);
1571 /* Read-ahead to the left at this level. */
1572 xfs_btree_readahead(cur
, level
, XFS_BTCUR_LEFTRA
);
1574 /* We're done if we remain in the block after the decrement. */
1575 if (--cur
->bc_ptrs
[level
] > 0)
1578 /* Get a pointer to the btree block. */
1579 block
= xfs_btree_get_block(cur
, level
, &bp
);
1582 error
= xfs_btree_check_block(cur
, block
, level
, bp
);
1587 /* Fail if we just went off the left edge of the tree. */
1588 xfs_btree_get_sibling(cur
, block
, &ptr
, XFS_BB_LEFTSIB
);
1589 if (xfs_btree_ptr_is_null(cur
, &ptr
))
1592 XFS_BTREE_STATS_INC(cur
, decrement
);
1595 * March up the tree decrementing pointers.
1596 * Stop when we don't go off the left edge of a block.
1598 for (lev
= level
+ 1; lev
< cur
->bc_nlevels
; lev
++) {
1599 if (--cur
->bc_ptrs
[lev
] > 0)
1601 /* Read-ahead the left block for the next loop. */
1602 xfs_btree_readahead(cur
, lev
, XFS_BTCUR_LEFTRA
);
1606 * If we went off the root then we are seriously confused.
1607 * or the root of the tree is in an inode.
1609 if (lev
== cur
->bc_nlevels
) {
1610 if (cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
)
1613 error
= -EFSCORRUPTED
;
1616 ASSERT(lev
< cur
->bc_nlevels
);
1619 * Now walk back down the tree, fixing up the cursor's buffer
1620 * pointers and key numbers.
1622 for (block
= xfs_btree_get_block(cur
, lev
, &bp
); lev
> level
; ) {
1623 union xfs_btree_ptr
*ptrp
;
1625 ptrp
= xfs_btree_ptr_addr(cur
, cur
->bc_ptrs
[lev
], block
);
1627 error
= xfs_btree_read_buf_block(cur
, ptrp
, 0, &block
, &bp
);
1630 xfs_btree_setbuf(cur
, lev
, bp
);
1631 cur
->bc_ptrs
[lev
] = xfs_btree_get_numrecs(block
);
1634 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1639 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1644 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
1649 xfs_btree_lookup_get_block(
1650 struct xfs_btree_cur
*cur
, /* btree cursor */
1651 int level
, /* level in the btree */
1652 union xfs_btree_ptr
*pp
, /* ptr to btree block */
1653 struct xfs_btree_block
**blkp
) /* return btree block */
1655 struct xfs_buf
*bp
; /* buffer pointer for btree block */
1658 /* special case the root block if in an inode */
1659 if ((cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) &&
1660 (level
== cur
->bc_nlevels
- 1)) {
1661 *blkp
= xfs_btree_get_iroot(cur
);
1666 * If the old buffer at this level for the disk address we are
1667 * looking for re-use it.
1669 * Otherwise throw it away and get a new one.
1671 bp
= cur
->bc_bufs
[level
];
1672 if (bp
&& XFS_BUF_ADDR(bp
) == xfs_btree_ptr_to_daddr(cur
, pp
)) {
1673 *blkp
= XFS_BUF_TO_BLOCK(bp
);
1677 error
= xfs_btree_read_buf_block(cur
, pp
, 0, blkp
, &bp
);
1681 xfs_btree_setbuf(cur
, level
, bp
);
1686 * Get current search key. For level 0 we don't actually have a key
1687 * structure so we make one up from the record. For all other levels
1688 * we just return the right key.
1690 STATIC
union xfs_btree_key
*
1691 xfs_lookup_get_search_key(
1692 struct xfs_btree_cur
*cur
,
1695 struct xfs_btree_block
*block
,
1696 union xfs_btree_key
*kp
)
1699 cur
->bc_ops
->init_key_from_rec(kp
,
1700 xfs_btree_rec_addr(cur
, keyno
, block
));
1704 return xfs_btree_key_addr(cur
, keyno
, block
);
1708 * Lookup the record. The cursor is made to point to it, based on dir.
1709 * stat is set to 0 if can't find any such record, 1 for success.
1713 struct xfs_btree_cur
*cur
, /* btree cursor */
1714 xfs_lookup_t dir
, /* <=, ==, or >= */
1715 int *stat
) /* success/failure */
1717 struct xfs_btree_block
*block
; /* current btree block */
1718 __int64_t diff
; /* difference for the current key */
1719 int error
; /* error return value */
1720 int keyno
; /* current key number */
1721 int level
; /* level in the btree */
1722 union xfs_btree_ptr
*pp
; /* ptr to btree block */
1723 union xfs_btree_ptr ptr
; /* ptr to btree block */
1725 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
1726 XFS_BTREE_TRACE_ARGI(cur
, dir
);
1728 XFS_BTREE_STATS_INC(cur
, lookup
);
1733 /* initialise start pointer from cursor */
1734 cur
->bc_ops
->init_ptr_from_cur(cur
, &ptr
);
1738 * Iterate over each level in the btree, starting at the root.
1739 * For each level above the leaves, find the key we need, based
1740 * on the lookup record, then follow the corresponding block
1741 * pointer down to the next level.
1743 for (level
= cur
->bc_nlevels
- 1, diff
= 1; level
>= 0; level
--) {
1744 /* Get the block we need to do the lookup on. */
1745 error
= xfs_btree_lookup_get_block(cur
, level
, pp
, &block
);
1751 * If we already had a key match at a higher level, we
1752 * know we need to use the first entry in this block.
1756 /* Otherwise search this block. Do a binary search. */
1758 int high
; /* high entry number */
1759 int low
; /* low entry number */
1761 /* Set low and high entry numbers, 1-based. */
1763 high
= xfs_btree_get_numrecs(block
);
1765 /* Block is empty, must be an empty leaf. */
1766 ASSERT(level
== 0 && cur
->bc_nlevels
== 1);
1768 cur
->bc_ptrs
[0] = dir
!= XFS_LOOKUP_LE
;
1769 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1774 /* Binary search the block. */
1775 while (low
<= high
) {
1776 union xfs_btree_key key
;
1777 union xfs_btree_key
*kp
;
1779 XFS_BTREE_STATS_INC(cur
, compare
);
1781 /* keyno is average of low and high. */
1782 keyno
= (low
+ high
) >> 1;
1784 /* Get current search key */
1785 kp
= xfs_lookup_get_search_key(cur
, level
,
1786 keyno
, block
, &key
);
1789 * Compute difference to get next direction:
1790 * - less than, move right
1791 * - greater than, move left
1792 * - equal, we're done
1794 diff
= cur
->bc_ops
->key_diff(cur
, kp
);
1805 * If there are more levels, set up for the next level
1806 * by getting the block number and filling in the cursor.
1810 * If we moved left, need the previous key number,
1811 * unless there isn't one.
1813 if (diff
> 0 && --keyno
< 1)
1815 pp
= xfs_btree_ptr_addr(cur
, keyno
, block
);
1818 error
= xfs_btree_check_ptr(cur
, pp
, 0, level
);
1822 cur
->bc_ptrs
[level
] = keyno
;
1826 /* Done with the search. See if we need to adjust the results. */
1827 if (dir
!= XFS_LOOKUP_LE
&& diff
< 0) {
1830 * If ge search and we went off the end of the block, but it's
1831 * not the last block, we're in the wrong block.
1833 xfs_btree_get_sibling(cur
, block
, &ptr
, XFS_BB_RIGHTSIB
);
1834 if (dir
== XFS_LOOKUP_GE
&&
1835 keyno
> xfs_btree_get_numrecs(block
) &&
1836 !xfs_btree_ptr_is_null(cur
, &ptr
)) {
1839 cur
->bc_ptrs
[0] = keyno
;
1840 error
= xfs_btree_increment(cur
, 0, &i
);
1843 XFS_WANT_CORRUPTED_RETURN(cur
->bc_mp
, i
== 1);
1844 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1848 } else if (dir
== XFS_LOOKUP_LE
&& diff
> 0)
1850 cur
->bc_ptrs
[0] = keyno
;
1852 /* Return if we succeeded or not. */
1853 if (keyno
== 0 || keyno
> xfs_btree_get_numrecs(block
))
1855 else if (dir
!= XFS_LOOKUP_EQ
|| diff
== 0)
1859 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1863 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
1868 * Update keys at all levels from here to the root along the cursor's path.
1872 struct xfs_btree_cur
*cur
,
1873 union xfs_btree_key
*keyp
,
1876 struct xfs_btree_block
*block
;
1878 union xfs_btree_key
*kp
;
1881 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
1882 XFS_BTREE_TRACE_ARGIK(cur
, level
, keyp
);
1884 ASSERT(!(cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) || level
>= 1);
1887 * Go up the tree from this level toward the root.
1888 * At each level, update the key value to the value input.
1889 * Stop when we reach a level where the cursor isn't pointing
1890 * at the first entry in the block.
1892 for (ptr
= 1; ptr
== 1 && level
< cur
->bc_nlevels
; level
++) {
1896 block
= xfs_btree_get_block(cur
, level
, &bp
);
1898 error
= xfs_btree_check_block(cur
, block
, level
, bp
);
1900 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
1904 ptr
= cur
->bc_ptrs
[level
];
1905 kp
= xfs_btree_key_addr(cur
, ptr
, block
);
1906 xfs_btree_copy_keys(cur
, kp
, keyp
, 1);
1907 xfs_btree_log_keys(cur
, bp
, ptr
, ptr
);
1910 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1915 * Update the record referred to by cur to the value in the
1916 * given record. This either works (return 0) or gets an
1917 * EFSCORRUPTED error.
1921 struct xfs_btree_cur
*cur
,
1922 union xfs_btree_rec
*rec
)
1924 struct xfs_btree_block
*block
;
1928 union xfs_btree_rec
*rp
;
1930 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
1931 XFS_BTREE_TRACE_ARGR(cur
, rec
);
1933 /* Pick up the current block. */
1934 block
= xfs_btree_get_block(cur
, 0, &bp
);
1937 error
= xfs_btree_check_block(cur
, block
, 0, bp
);
1941 /* Get the address of the rec to be updated. */
1942 ptr
= cur
->bc_ptrs
[0];
1943 rp
= xfs_btree_rec_addr(cur
, ptr
, block
);
1945 /* Fill in the new contents and log them. */
1946 xfs_btree_copy_recs(cur
, rp
, rec
, 1);
1947 xfs_btree_log_recs(cur
, bp
, ptr
, ptr
);
1950 * If we are tracking the last record in the tree and
1951 * we are at the far right edge of the tree, update it.
1953 if (xfs_btree_is_lastrec(cur
, block
, 0)) {
1954 cur
->bc_ops
->update_lastrec(cur
, block
, rec
,
1955 ptr
, LASTREC_UPDATE
);
1958 /* Updating first rec in leaf. Pass new key value up to our parent. */
1960 union xfs_btree_key key
;
1962 cur
->bc_ops
->init_key_from_rec(&key
, rec
);
1963 error
= xfs_btree_updkey(cur
, &key
, 1);
1968 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
1972 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
1977 * Move 1 record left from cur/level if possible.
1978 * Update cur to reflect the new path.
1980 STATIC
int /* error */
1982 struct xfs_btree_cur
*cur
,
1984 int *stat
) /* success/failure */
1986 union xfs_btree_key key
; /* btree key */
1987 struct xfs_buf
*lbp
; /* left buffer pointer */
1988 struct xfs_btree_block
*left
; /* left btree block */
1989 int lrecs
; /* left record count */
1990 struct xfs_buf
*rbp
; /* right buffer pointer */
1991 struct xfs_btree_block
*right
; /* right btree block */
1992 int rrecs
; /* right record count */
1993 union xfs_btree_ptr lptr
; /* left btree pointer */
1994 union xfs_btree_key
*rkp
= NULL
; /* right btree key */
1995 union xfs_btree_ptr
*rpp
= NULL
; /* right address pointer */
1996 union xfs_btree_rec
*rrp
= NULL
; /* right record pointer */
1997 int error
; /* error return value */
1999 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
2000 XFS_BTREE_TRACE_ARGI(cur
, level
);
2002 if ((cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) &&
2003 level
== cur
->bc_nlevels
- 1)
2006 /* Set up variables for this block as "right". */
2007 right
= xfs_btree_get_block(cur
, level
, &rbp
);
2010 error
= xfs_btree_check_block(cur
, right
, level
, rbp
);
2015 /* If we've got no left sibling then we can't shift an entry left. */
2016 xfs_btree_get_sibling(cur
, right
, &lptr
, XFS_BB_LEFTSIB
);
2017 if (xfs_btree_ptr_is_null(cur
, &lptr
))
2021 * If the cursor entry is the one that would be moved, don't
2022 * do it... it's too complicated.
2024 if (cur
->bc_ptrs
[level
] <= 1)
2027 /* Set up the left neighbor as "left". */
2028 error
= xfs_btree_read_buf_block(cur
, &lptr
, 0, &left
, &lbp
);
2032 /* If it's full, it can't take another entry. */
2033 lrecs
= xfs_btree_get_numrecs(left
);
2034 if (lrecs
== cur
->bc_ops
->get_maxrecs(cur
, level
))
2037 rrecs
= xfs_btree_get_numrecs(right
);
2040 * We add one entry to the left side and remove one for the right side.
2041 * Account for it here, the changes will be updated on disk and logged
2047 XFS_BTREE_STATS_INC(cur
, lshift
);
2048 XFS_BTREE_STATS_ADD(cur
, moves
, 1);
2051 * If non-leaf, copy a key and a ptr to the left block.
2052 * Log the changes to the left block.
2055 /* It's a non-leaf. Move keys and pointers. */
2056 union xfs_btree_key
*lkp
; /* left btree key */
2057 union xfs_btree_ptr
*lpp
; /* left address pointer */
2059 lkp
= xfs_btree_key_addr(cur
, lrecs
, left
);
2060 rkp
= xfs_btree_key_addr(cur
, 1, right
);
2062 lpp
= xfs_btree_ptr_addr(cur
, lrecs
, left
);
2063 rpp
= xfs_btree_ptr_addr(cur
, 1, right
);
2065 error
= xfs_btree_check_ptr(cur
, rpp
, 0, level
);
2069 xfs_btree_copy_keys(cur
, lkp
, rkp
, 1);
2070 xfs_btree_copy_ptrs(cur
, lpp
, rpp
, 1);
2072 xfs_btree_log_keys(cur
, lbp
, lrecs
, lrecs
);
2073 xfs_btree_log_ptrs(cur
, lbp
, lrecs
, lrecs
);
2075 ASSERT(cur
->bc_ops
->keys_inorder(cur
,
2076 xfs_btree_key_addr(cur
, lrecs
- 1, left
), lkp
));
2078 /* It's a leaf. Move records. */
2079 union xfs_btree_rec
*lrp
; /* left record pointer */
2081 lrp
= xfs_btree_rec_addr(cur
, lrecs
, left
);
2082 rrp
= xfs_btree_rec_addr(cur
, 1, right
);
2084 xfs_btree_copy_recs(cur
, lrp
, rrp
, 1);
2085 xfs_btree_log_recs(cur
, lbp
, lrecs
, lrecs
);
2087 ASSERT(cur
->bc_ops
->recs_inorder(cur
,
2088 xfs_btree_rec_addr(cur
, lrecs
- 1, left
), lrp
));
2091 xfs_btree_set_numrecs(left
, lrecs
);
2092 xfs_btree_log_block(cur
, lbp
, XFS_BB_NUMRECS
);
2094 xfs_btree_set_numrecs(right
, rrecs
);
2095 xfs_btree_log_block(cur
, rbp
, XFS_BB_NUMRECS
);
2098 * Slide the contents of right down one entry.
2100 XFS_BTREE_STATS_ADD(cur
, moves
, rrecs
- 1);
2102 /* It's a nonleaf. operate on keys and ptrs */
2104 int i
; /* loop index */
2106 for (i
= 0; i
< rrecs
; i
++) {
2107 error
= xfs_btree_check_ptr(cur
, rpp
, i
+ 1, level
);
2112 xfs_btree_shift_keys(cur
,
2113 xfs_btree_key_addr(cur
, 2, right
),
2115 xfs_btree_shift_ptrs(cur
,
2116 xfs_btree_ptr_addr(cur
, 2, right
),
2119 xfs_btree_log_keys(cur
, rbp
, 1, rrecs
);
2120 xfs_btree_log_ptrs(cur
, rbp
, 1, rrecs
);
2122 /* It's a leaf. operate on records */
2123 xfs_btree_shift_recs(cur
,
2124 xfs_btree_rec_addr(cur
, 2, right
),
2126 xfs_btree_log_recs(cur
, rbp
, 1, rrecs
);
2129 * If it's the first record in the block, we'll need a key
2130 * structure to pass up to the next level (updkey).
2132 cur
->bc_ops
->init_key_from_rec(&key
,
2133 xfs_btree_rec_addr(cur
, 1, right
));
2137 /* Update the parent key values of right. */
2138 error
= xfs_btree_updkey(cur
, rkp
, level
+ 1);
2142 /* Slide the cursor value left one. */
2143 cur
->bc_ptrs
[level
]--;
2145 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2150 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2155 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
2160 * Move 1 record right from cur/level if possible.
2161 * Update cur to reflect the new path.
2163 STATIC
int /* error */
2165 struct xfs_btree_cur
*cur
,
2167 int *stat
) /* success/failure */
2169 union xfs_btree_key key
; /* btree key */
2170 struct xfs_buf
*lbp
; /* left buffer pointer */
2171 struct xfs_btree_block
*left
; /* left btree block */
2172 struct xfs_buf
*rbp
; /* right buffer pointer */
2173 struct xfs_btree_block
*right
; /* right btree block */
2174 struct xfs_btree_cur
*tcur
; /* temporary btree cursor */
2175 union xfs_btree_ptr rptr
; /* right block pointer */
2176 union xfs_btree_key
*rkp
; /* right btree key */
2177 int rrecs
; /* right record count */
2178 int lrecs
; /* left record count */
2179 int error
; /* error return value */
2180 int i
; /* loop counter */
2182 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
2183 XFS_BTREE_TRACE_ARGI(cur
, level
);
2185 if ((cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) &&
2186 (level
== cur
->bc_nlevels
- 1))
2189 /* Set up variables for this block as "left". */
2190 left
= xfs_btree_get_block(cur
, level
, &lbp
);
2193 error
= xfs_btree_check_block(cur
, left
, level
, lbp
);
2198 /* If we've got no right sibling then we can't shift an entry right. */
2199 xfs_btree_get_sibling(cur
, left
, &rptr
, XFS_BB_RIGHTSIB
);
2200 if (xfs_btree_ptr_is_null(cur
, &rptr
))
2204 * If the cursor entry is the one that would be moved, don't
2205 * do it... it's too complicated.
2207 lrecs
= xfs_btree_get_numrecs(left
);
2208 if (cur
->bc_ptrs
[level
] >= lrecs
)
2211 /* Set up the right neighbor as "right". */
2212 error
= xfs_btree_read_buf_block(cur
, &rptr
, 0, &right
, &rbp
);
2216 /* If it's full, it can't take another entry. */
2217 rrecs
= xfs_btree_get_numrecs(right
);
2218 if (rrecs
== cur
->bc_ops
->get_maxrecs(cur
, level
))
2221 XFS_BTREE_STATS_INC(cur
, rshift
);
2222 XFS_BTREE_STATS_ADD(cur
, moves
, rrecs
);
2225 * Make a hole at the start of the right neighbor block, then
2226 * copy the last left block entry to the hole.
2229 /* It's a nonleaf. make a hole in the keys and ptrs */
2230 union xfs_btree_key
*lkp
;
2231 union xfs_btree_ptr
*lpp
;
2232 union xfs_btree_ptr
*rpp
;
2234 lkp
= xfs_btree_key_addr(cur
, lrecs
, left
);
2235 lpp
= xfs_btree_ptr_addr(cur
, lrecs
, left
);
2236 rkp
= xfs_btree_key_addr(cur
, 1, right
);
2237 rpp
= xfs_btree_ptr_addr(cur
, 1, right
);
2240 for (i
= rrecs
- 1; i
>= 0; i
--) {
2241 error
= xfs_btree_check_ptr(cur
, rpp
, i
, level
);
2247 xfs_btree_shift_keys(cur
, rkp
, 1, rrecs
);
2248 xfs_btree_shift_ptrs(cur
, rpp
, 1, rrecs
);
2251 error
= xfs_btree_check_ptr(cur
, lpp
, 0, level
);
2256 /* Now put the new data in, and log it. */
2257 xfs_btree_copy_keys(cur
, rkp
, lkp
, 1);
2258 xfs_btree_copy_ptrs(cur
, rpp
, lpp
, 1);
2260 xfs_btree_log_keys(cur
, rbp
, 1, rrecs
+ 1);
2261 xfs_btree_log_ptrs(cur
, rbp
, 1, rrecs
+ 1);
2263 ASSERT(cur
->bc_ops
->keys_inorder(cur
, rkp
,
2264 xfs_btree_key_addr(cur
, 2, right
)));
2266 /* It's a leaf. make a hole in the records */
2267 union xfs_btree_rec
*lrp
;
2268 union xfs_btree_rec
*rrp
;
2270 lrp
= xfs_btree_rec_addr(cur
, lrecs
, left
);
2271 rrp
= xfs_btree_rec_addr(cur
, 1, right
);
2273 xfs_btree_shift_recs(cur
, rrp
, 1, rrecs
);
2275 /* Now put the new data in, and log it. */
2276 xfs_btree_copy_recs(cur
, rrp
, lrp
, 1);
2277 xfs_btree_log_recs(cur
, rbp
, 1, rrecs
+ 1);
2279 cur
->bc_ops
->init_key_from_rec(&key
, rrp
);
2282 ASSERT(cur
->bc_ops
->recs_inorder(cur
, rrp
,
2283 xfs_btree_rec_addr(cur
, 2, right
)));
2287 * Decrement and log left's numrecs, bump and log right's numrecs.
2289 xfs_btree_set_numrecs(left
, --lrecs
);
2290 xfs_btree_log_block(cur
, lbp
, XFS_BB_NUMRECS
);
2292 xfs_btree_set_numrecs(right
, ++rrecs
);
2293 xfs_btree_log_block(cur
, rbp
, XFS_BB_NUMRECS
);
2296 * Using a temporary cursor, update the parent key values of the
2297 * block on the right.
2299 error
= xfs_btree_dup_cursor(cur
, &tcur
);
2302 i
= xfs_btree_lastrec(tcur
, level
);
2303 XFS_WANT_CORRUPTED_GOTO(cur
->bc_mp
, i
== 1, error0
);
2305 error
= xfs_btree_increment(tcur
, level
, &i
);
2309 error
= xfs_btree_updkey(tcur
, rkp
, level
+ 1);
2313 xfs_btree_del_cursor(tcur
, XFS_BTREE_NOERROR
);
2315 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2320 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2325 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
2329 XFS_BTREE_TRACE_CURSOR(tcur
, XBT_ERROR
);
2330 xfs_btree_del_cursor(tcur
, XFS_BTREE_ERROR
);
2335 * Split cur/level block in half.
2336 * Return new block number and the key to its first
2337 * record (to be inserted into parent).
2339 STATIC
int /* error */
2341 struct xfs_btree_cur
*cur
,
2343 union xfs_btree_ptr
*ptrp
,
2344 union xfs_btree_key
*key
,
2345 struct xfs_btree_cur
**curp
,
2346 int *stat
) /* success/failure */
2348 union xfs_btree_ptr lptr
; /* left sibling block ptr */
2349 struct xfs_buf
*lbp
; /* left buffer pointer */
2350 struct xfs_btree_block
*left
; /* left btree block */
2351 union xfs_btree_ptr rptr
; /* right sibling block ptr */
2352 struct xfs_buf
*rbp
; /* right buffer pointer */
2353 struct xfs_btree_block
*right
; /* right btree block */
2354 union xfs_btree_ptr rrptr
; /* right-right sibling ptr */
2355 struct xfs_buf
*rrbp
; /* right-right buffer pointer */
2356 struct xfs_btree_block
*rrblock
; /* right-right btree block */
2360 int error
; /* error return value */
2365 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
2366 XFS_BTREE_TRACE_ARGIPK(cur
, level
, *ptrp
, key
);
2368 XFS_BTREE_STATS_INC(cur
, split
);
2370 /* Set up left block (current one). */
2371 left
= xfs_btree_get_block(cur
, level
, &lbp
);
2374 error
= xfs_btree_check_block(cur
, left
, level
, lbp
);
2379 xfs_btree_buf_to_ptr(cur
, lbp
, &lptr
);
2381 /* Allocate the new block. If we can't do it, we're toast. Give up. */
2382 error
= cur
->bc_ops
->alloc_block(cur
, &lptr
, &rptr
, stat
);
2387 XFS_BTREE_STATS_INC(cur
, alloc
);
2389 /* Set up the new block as "right". */
2390 error
= xfs_btree_get_buf_block(cur
, &rptr
, 0, &right
, &rbp
);
2394 /* Fill in the btree header for the new right block. */
2395 xfs_btree_init_block_cur(cur
, rbp
, xfs_btree_get_level(left
), 0);
2398 * Split the entries between the old and the new block evenly.
2399 * Make sure that if there's an odd number of entries now, that
2400 * each new block will have the same number of entries.
2402 lrecs
= xfs_btree_get_numrecs(left
);
2404 if ((lrecs
& 1) && cur
->bc_ptrs
[level
] <= rrecs
+ 1)
2406 src_index
= (lrecs
- rrecs
+ 1);
2408 XFS_BTREE_STATS_ADD(cur
, moves
, rrecs
);
2411 * Copy btree block entries from the left block over to the
2412 * new block, the right. Update the right block and log the
2416 /* It's a non-leaf. Move keys and pointers. */
2417 union xfs_btree_key
*lkp
; /* left btree key */
2418 union xfs_btree_ptr
*lpp
; /* left address pointer */
2419 union xfs_btree_key
*rkp
; /* right btree key */
2420 union xfs_btree_ptr
*rpp
; /* right address pointer */
2422 lkp
= xfs_btree_key_addr(cur
, src_index
, left
);
2423 lpp
= xfs_btree_ptr_addr(cur
, src_index
, left
);
2424 rkp
= xfs_btree_key_addr(cur
, 1, right
);
2425 rpp
= xfs_btree_ptr_addr(cur
, 1, right
);
2428 for (i
= src_index
; i
< rrecs
; i
++) {
2429 error
= xfs_btree_check_ptr(cur
, lpp
, i
, level
);
2435 xfs_btree_copy_keys(cur
, rkp
, lkp
, rrecs
);
2436 xfs_btree_copy_ptrs(cur
, rpp
, lpp
, rrecs
);
2438 xfs_btree_log_keys(cur
, rbp
, 1, rrecs
);
2439 xfs_btree_log_ptrs(cur
, rbp
, 1, rrecs
);
2441 /* Grab the keys to the entries moved to the right block */
2442 xfs_btree_copy_keys(cur
, key
, rkp
, 1);
2444 /* It's a leaf. Move records. */
2445 union xfs_btree_rec
*lrp
; /* left record pointer */
2446 union xfs_btree_rec
*rrp
; /* right record pointer */
2448 lrp
= xfs_btree_rec_addr(cur
, src_index
, left
);
2449 rrp
= xfs_btree_rec_addr(cur
, 1, right
);
2451 xfs_btree_copy_recs(cur
, rrp
, lrp
, rrecs
);
2452 xfs_btree_log_recs(cur
, rbp
, 1, rrecs
);
2454 cur
->bc_ops
->init_key_from_rec(key
,
2455 xfs_btree_rec_addr(cur
, 1, right
));
2460 * Find the left block number by looking in the buffer.
2461 * Adjust numrecs, sibling pointers.
2463 xfs_btree_get_sibling(cur
, left
, &rrptr
, XFS_BB_RIGHTSIB
);
2464 xfs_btree_set_sibling(cur
, right
, &rrptr
, XFS_BB_RIGHTSIB
);
2465 xfs_btree_set_sibling(cur
, right
, &lptr
, XFS_BB_LEFTSIB
);
2466 xfs_btree_set_sibling(cur
, left
, &rptr
, XFS_BB_RIGHTSIB
);
2469 xfs_btree_set_numrecs(left
, lrecs
);
2470 xfs_btree_set_numrecs(right
, xfs_btree_get_numrecs(right
) + rrecs
);
2472 xfs_btree_log_block(cur
, rbp
, XFS_BB_ALL_BITS
);
2473 xfs_btree_log_block(cur
, lbp
, XFS_BB_NUMRECS
| XFS_BB_RIGHTSIB
);
2476 * If there's a block to the new block's right, make that block
2477 * point back to right instead of to left.
2479 if (!xfs_btree_ptr_is_null(cur
, &rrptr
)) {
2480 error
= xfs_btree_read_buf_block(cur
, &rrptr
,
2481 0, &rrblock
, &rrbp
);
2484 xfs_btree_set_sibling(cur
, rrblock
, &rptr
, XFS_BB_LEFTSIB
);
2485 xfs_btree_log_block(cur
, rrbp
, XFS_BB_LEFTSIB
);
2488 * If the cursor is really in the right block, move it there.
2489 * If it's just pointing past the last entry in left, then we'll
2490 * insert there, so don't change anything in that case.
2492 if (cur
->bc_ptrs
[level
] > lrecs
+ 1) {
2493 xfs_btree_setbuf(cur
, level
, rbp
);
2494 cur
->bc_ptrs
[level
] -= lrecs
;
2497 * If there are more levels, we'll need another cursor which refers
2498 * the right block, no matter where this cursor was.
2500 if (level
+ 1 < cur
->bc_nlevels
) {
2501 error
= xfs_btree_dup_cursor(cur
, curp
);
2504 (*curp
)->bc_ptrs
[level
+ 1]++;
2507 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2511 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2516 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
2520 struct xfs_btree_split_args
{
2521 struct xfs_btree_cur
*cur
;
2523 union xfs_btree_ptr
*ptrp
;
2524 union xfs_btree_key
*key
;
2525 struct xfs_btree_cur
**curp
;
2526 int *stat
; /* success/failure */
2528 bool kswapd
; /* allocation in kswapd context */
2529 struct completion
*done
;
2530 struct work_struct work
;
2534 * Stack switching interfaces for allocation
2537 xfs_btree_split_worker(
2538 struct work_struct
*work
)
2540 struct xfs_btree_split_args
*args
= container_of(work
,
2541 struct xfs_btree_split_args
, work
);
2542 unsigned long pflags
;
2543 unsigned long new_pflags
= PF_FSTRANS
;
2546 * we are in a transaction context here, but may also be doing work
2547 * in kswapd context, and hence we may need to inherit that state
2548 * temporarily to ensure that we don't block waiting for memory reclaim
2552 new_pflags
|= PF_MEMALLOC
| PF_SWAPWRITE
| PF_KSWAPD
;
2554 current_set_flags_nested(&pflags
, new_pflags
);
2556 args
->result
= __xfs_btree_split(args
->cur
, args
->level
, args
->ptrp
,
2557 args
->key
, args
->curp
, args
->stat
);
2558 complete(args
->done
);
2560 current_restore_flags_nested(&pflags
, new_pflags
);
2564 * BMBT split requests often come in with little stack to work on. Push
2565 * them off to a worker thread so there is lots of stack to use. For the other
2566 * btree types, just call directly to avoid the context switch overhead here.
2568 STATIC
int /* error */
2570 struct xfs_btree_cur
*cur
,
2572 union xfs_btree_ptr
*ptrp
,
2573 union xfs_btree_key
*key
,
2574 struct xfs_btree_cur
**curp
,
2575 int *stat
) /* success/failure */
2577 struct xfs_btree_split_args args
;
2578 DECLARE_COMPLETION_ONSTACK(done
);
2580 if (cur
->bc_btnum
!= XFS_BTNUM_BMAP
)
2581 return __xfs_btree_split(cur
, level
, ptrp
, key
, curp
, stat
);
2590 args
.kswapd
= current_is_kswapd();
2591 INIT_WORK_ONSTACK(&args
.work
, xfs_btree_split_worker
);
2592 queue_work(xfs_alloc_wq
, &args
.work
);
2593 wait_for_completion(&done
);
2594 destroy_work_on_stack(&args
.work
);
2600 * Copy the old inode root contents into a real block and make the
2601 * broot point to it.
2604 xfs_btree_new_iroot(
2605 struct xfs_btree_cur
*cur
, /* btree cursor */
2606 int *logflags
, /* logging flags for inode */
2607 int *stat
) /* return status - 0 fail */
2609 struct xfs_buf
*cbp
; /* buffer for cblock */
2610 struct xfs_btree_block
*block
; /* btree block */
2611 struct xfs_btree_block
*cblock
; /* child btree block */
2612 union xfs_btree_key
*ckp
; /* child key pointer */
2613 union xfs_btree_ptr
*cpp
; /* child ptr pointer */
2614 union xfs_btree_key
*kp
; /* pointer to btree key */
2615 union xfs_btree_ptr
*pp
; /* pointer to block addr */
2616 union xfs_btree_ptr nptr
; /* new block addr */
2617 int level
; /* btree level */
2618 int error
; /* error return code */
2620 int i
; /* loop counter */
2623 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
2624 XFS_BTREE_STATS_INC(cur
, newroot
);
2626 ASSERT(cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
);
2628 level
= cur
->bc_nlevels
- 1;
2630 block
= xfs_btree_get_iroot(cur
);
2631 pp
= xfs_btree_ptr_addr(cur
, 1, block
);
2633 /* Allocate the new block. If we can't do it, we're toast. Give up. */
2634 error
= cur
->bc_ops
->alloc_block(cur
, pp
, &nptr
, stat
);
2638 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2641 XFS_BTREE_STATS_INC(cur
, alloc
);
2643 /* Copy the root into a real block. */
2644 error
= xfs_btree_get_buf_block(cur
, &nptr
, 0, &cblock
, &cbp
);
2649 * we can't just memcpy() the root in for CRC enabled btree blocks.
2650 * In that case have to also ensure the blkno remains correct
2652 memcpy(cblock
, block
, xfs_btree_block_len(cur
));
2653 if (cur
->bc_flags
& XFS_BTREE_CRC_BLOCKS
) {
2654 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
)
2655 cblock
->bb_u
.l
.bb_blkno
= cpu_to_be64(cbp
->b_bn
);
2657 cblock
->bb_u
.s
.bb_blkno
= cpu_to_be64(cbp
->b_bn
);
2660 be16_add_cpu(&block
->bb_level
, 1);
2661 xfs_btree_set_numrecs(block
, 1);
2663 cur
->bc_ptrs
[level
+ 1] = 1;
2665 kp
= xfs_btree_key_addr(cur
, 1, block
);
2666 ckp
= xfs_btree_key_addr(cur
, 1, cblock
);
2667 xfs_btree_copy_keys(cur
, ckp
, kp
, xfs_btree_get_numrecs(cblock
));
2669 cpp
= xfs_btree_ptr_addr(cur
, 1, cblock
);
2671 for (i
= 0; i
< be16_to_cpu(cblock
->bb_numrecs
); i
++) {
2672 error
= xfs_btree_check_ptr(cur
, pp
, i
, level
);
2677 xfs_btree_copy_ptrs(cur
, cpp
, pp
, xfs_btree_get_numrecs(cblock
));
2680 error
= xfs_btree_check_ptr(cur
, &nptr
, 0, level
);
2684 xfs_btree_copy_ptrs(cur
, pp
, &nptr
, 1);
2686 xfs_iroot_realloc(cur
->bc_private
.b
.ip
,
2687 1 - xfs_btree_get_numrecs(cblock
),
2688 cur
->bc_private
.b
.whichfork
);
2690 xfs_btree_setbuf(cur
, level
, cbp
);
2693 * Do all this logging at the end so that
2694 * the root is at the right level.
2696 xfs_btree_log_block(cur
, cbp
, XFS_BB_ALL_BITS
);
2697 xfs_btree_log_keys(cur
, cbp
, 1, be16_to_cpu(cblock
->bb_numrecs
));
2698 xfs_btree_log_ptrs(cur
, cbp
, 1, be16_to_cpu(cblock
->bb_numrecs
));
2701 XFS_ILOG_CORE
| xfs_ilog_fbroot(cur
->bc_private
.b
.whichfork
);
2703 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2706 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
2711 * Allocate a new root block, fill it in.
2713 STATIC
int /* error */
2715 struct xfs_btree_cur
*cur
, /* btree cursor */
2716 int *stat
) /* success/failure */
2718 struct xfs_btree_block
*block
; /* one half of the old root block */
2719 struct xfs_buf
*bp
; /* buffer containing block */
2720 int error
; /* error return value */
2721 struct xfs_buf
*lbp
; /* left buffer pointer */
2722 struct xfs_btree_block
*left
; /* left btree block */
2723 struct xfs_buf
*nbp
; /* new (root) buffer */
2724 struct xfs_btree_block
*new; /* new (root) btree block */
2725 int nptr
; /* new value for key index, 1 or 2 */
2726 struct xfs_buf
*rbp
; /* right buffer pointer */
2727 struct xfs_btree_block
*right
; /* right btree block */
2728 union xfs_btree_ptr rptr
;
2729 union xfs_btree_ptr lptr
;
2731 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
2732 XFS_BTREE_STATS_INC(cur
, newroot
);
2734 /* initialise our start point from the cursor */
2735 cur
->bc_ops
->init_ptr_from_cur(cur
, &rptr
);
2737 /* Allocate the new block. If we can't do it, we're toast. Give up. */
2738 error
= cur
->bc_ops
->alloc_block(cur
, &rptr
, &lptr
, stat
);
2743 XFS_BTREE_STATS_INC(cur
, alloc
);
2745 /* Set up the new block. */
2746 error
= xfs_btree_get_buf_block(cur
, &lptr
, 0, &new, &nbp
);
2750 /* Set the root in the holding structure increasing the level by 1. */
2751 cur
->bc_ops
->set_root(cur
, &lptr
, 1);
2754 * At the previous root level there are now two blocks: the old root,
2755 * and the new block generated when it was split. We don't know which
2756 * one the cursor is pointing at, so we set up variables "left" and
2757 * "right" for each case.
2759 block
= xfs_btree_get_block(cur
, cur
->bc_nlevels
- 1, &bp
);
2762 error
= xfs_btree_check_block(cur
, block
, cur
->bc_nlevels
- 1, bp
);
2767 xfs_btree_get_sibling(cur
, block
, &rptr
, XFS_BB_RIGHTSIB
);
2768 if (!xfs_btree_ptr_is_null(cur
, &rptr
)) {
2769 /* Our block is left, pick up the right block. */
2771 xfs_btree_buf_to_ptr(cur
, lbp
, &lptr
);
2773 error
= xfs_btree_read_buf_block(cur
, &rptr
, 0, &right
, &rbp
);
2779 /* Our block is right, pick up the left block. */
2781 xfs_btree_buf_to_ptr(cur
, rbp
, &rptr
);
2783 xfs_btree_get_sibling(cur
, right
, &lptr
, XFS_BB_LEFTSIB
);
2784 error
= xfs_btree_read_buf_block(cur
, &lptr
, 0, &left
, &lbp
);
2790 /* Fill in the new block's btree header and log it. */
2791 xfs_btree_init_block_cur(cur
, nbp
, cur
->bc_nlevels
, 2);
2792 xfs_btree_log_block(cur
, nbp
, XFS_BB_ALL_BITS
);
2793 ASSERT(!xfs_btree_ptr_is_null(cur
, &lptr
) &&
2794 !xfs_btree_ptr_is_null(cur
, &rptr
));
2796 /* Fill in the key data in the new root. */
2797 if (xfs_btree_get_level(left
) > 0) {
2798 xfs_btree_copy_keys(cur
,
2799 xfs_btree_key_addr(cur
, 1, new),
2800 xfs_btree_key_addr(cur
, 1, left
), 1);
2801 xfs_btree_copy_keys(cur
,
2802 xfs_btree_key_addr(cur
, 2, new),
2803 xfs_btree_key_addr(cur
, 1, right
), 1);
2805 cur
->bc_ops
->init_key_from_rec(
2806 xfs_btree_key_addr(cur
, 1, new),
2807 xfs_btree_rec_addr(cur
, 1, left
));
2808 cur
->bc_ops
->init_key_from_rec(
2809 xfs_btree_key_addr(cur
, 2, new),
2810 xfs_btree_rec_addr(cur
, 1, right
));
2812 xfs_btree_log_keys(cur
, nbp
, 1, 2);
2814 /* Fill in the pointer data in the new root. */
2815 xfs_btree_copy_ptrs(cur
,
2816 xfs_btree_ptr_addr(cur
, 1, new), &lptr
, 1);
2817 xfs_btree_copy_ptrs(cur
,
2818 xfs_btree_ptr_addr(cur
, 2, new), &rptr
, 1);
2819 xfs_btree_log_ptrs(cur
, nbp
, 1, 2);
2821 /* Fix up the cursor. */
2822 xfs_btree_setbuf(cur
, cur
->bc_nlevels
, nbp
);
2823 cur
->bc_ptrs
[cur
->bc_nlevels
] = nptr
;
2825 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2829 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
2832 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2838 xfs_btree_make_block_unfull(
2839 struct xfs_btree_cur
*cur
, /* btree cursor */
2840 int level
, /* btree level */
2841 int numrecs
,/* # of recs in block */
2842 int *oindex
,/* old tree index */
2843 int *index
, /* new tree index */
2844 union xfs_btree_ptr
*nptr
, /* new btree ptr */
2845 struct xfs_btree_cur
**ncur
, /* new btree cursor */
2846 union xfs_btree_rec
*nrec
, /* new record */
2849 union xfs_btree_key key
; /* new btree key value */
2852 if ((cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) &&
2853 level
== cur
->bc_nlevels
- 1) {
2854 struct xfs_inode
*ip
= cur
->bc_private
.b
.ip
;
2856 if (numrecs
< cur
->bc_ops
->get_dmaxrecs(cur
, level
)) {
2857 /* A root block that can be made bigger. */
2858 xfs_iroot_realloc(ip
, 1, cur
->bc_private
.b
.whichfork
);
2860 /* A root block that needs replacing */
2863 error
= xfs_btree_new_iroot(cur
, &logflags
, stat
);
2864 if (error
|| *stat
== 0)
2867 xfs_trans_log_inode(cur
->bc_tp
, ip
, logflags
);
2873 /* First, try shifting an entry to the right neighbor. */
2874 error
= xfs_btree_rshift(cur
, level
, stat
);
2878 /* Next, try shifting an entry to the left neighbor. */
2879 error
= xfs_btree_lshift(cur
, level
, stat
);
2884 *oindex
= *index
= cur
->bc_ptrs
[level
];
2889 * Next, try splitting the current block in half.
2891 * If this works we have to re-set our variables because we
2892 * could be in a different block now.
2894 error
= xfs_btree_split(cur
, level
, nptr
, &key
, ncur
, stat
);
2895 if (error
|| *stat
== 0)
2899 *index
= cur
->bc_ptrs
[level
];
2900 cur
->bc_ops
->init_rec_from_key(&key
, nrec
);
2905 * Insert one record/level. Return information to the caller
2906 * allowing the next level up to proceed if necessary.
2910 struct xfs_btree_cur
*cur
, /* btree cursor */
2911 int level
, /* level to insert record at */
2912 union xfs_btree_ptr
*ptrp
, /* i/o: block number inserted */
2913 union xfs_btree_rec
*recp
, /* i/o: record data inserted */
2914 struct xfs_btree_cur
**curp
, /* output: new cursor replacing cur */
2915 int *stat
) /* success/failure */
2917 struct xfs_btree_block
*block
; /* btree block */
2918 struct xfs_buf
*bp
; /* buffer for block */
2919 union xfs_btree_key key
; /* btree key */
2920 union xfs_btree_ptr nptr
; /* new block ptr */
2921 struct xfs_btree_cur
*ncur
; /* new btree cursor */
2922 union xfs_btree_rec nrec
; /* new record count */
2923 int optr
; /* old key/record index */
2924 int ptr
; /* key/record index */
2925 int numrecs
;/* number of records */
2926 int error
; /* error return value */
2931 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
2932 XFS_BTREE_TRACE_ARGIPR(cur
, level
, *ptrp
, recp
);
2937 * If we have an external root pointer, and we've made it to the
2938 * root level, allocate a new root block and we're done.
2940 if (!(cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) &&
2941 (level
>= cur
->bc_nlevels
)) {
2942 error
= xfs_btree_new_root(cur
, stat
);
2943 xfs_btree_set_ptr_null(cur
, ptrp
);
2945 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2949 /* If we're off the left edge, return failure. */
2950 ptr
= cur
->bc_ptrs
[level
];
2952 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
2957 /* Make a key out of the record data to be inserted, and save it. */
2958 cur
->bc_ops
->init_key_from_rec(&key
, recp
);
2962 XFS_BTREE_STATS_INC(cur
, insrec
);
2964 /* Get pointers to the btree buffer and block. */
2965 block
= xfs_btree_get_block(cur
, level
, &bp
);
2966 numrecs
= xfs_btree_get_numrecs(block
);
2969 error
= xfs_btree_check_block(cur
, block
, level
, bp
);
2973 /* Check that the new entry is being inserted in the right place. */
2974 if (ptr
<= numrecs
) {
2976 ASSERT(cur
->bc_ops
->recs_inorder(cur
, recp
,
2977 xfs_btree_rec_addr(cur
, ptr
, block
)));
2979 ASSERT(cur
->bc_ops
->keys_inorder(cur
, &key
,
2980 xfs_btree_key_addr(cur
, ptr
, block
)));
2986 * If the block is full, we can't insert the new entry until we
2987 * make the block un-full.
2989 xfs_btree_set_ptr_null(cur
, &nptr
);
2990 if (numrecs
== cur
->bc_ops
->get_maxrecs(cur
, level
)) {
2991 error
= xfs_btree_make_block_unfull(cur
, level
, numrecs
,
2992 &optr
, &ptr
, &nptr
, &ncur
, &nrec
, stat
);
2993 if (error
|| *stat
== 0)
2998 * The current block may have changed if the block was
2999 * previously full and we have just made space in it.
3001 block
= xfs_btree_get_block(cur
, level
, &bp
);
3002 numrecs
= xfs_btree_get_numrecs(block
);
3005 error
= xfs_btree_check_block(cur
, block
, level
, bp
);
3011 * At this point we know there's room for our new entry in the block
3012 * we're pointing at.
3014 XFS_BTREE_STATS_ADD(cur
, moves
, numrecs
- ptr
+ 1);
3017 /* It's a nonleaf. make a hole in the keys and ptrs */
3018 union xfs_btree_key
*kp
;
3019 union xfs_btree_ptr
*pp
;
3021 kp
= xfs_btree_key_addr(cur
, ptr
, block
);
3022 pp
= xfs_btree_ptr_addr(cur
, ptr
, block
);
3025 for (i
= numrecs
- ptr
; i
>= 0; i
--) {
3026 error
= xfs_btree_check_ptr(cur
, pp
, i
, level
);
3032 xfs_btree_shift_keys(cur
, kp
, 1, numrecs
- ptr
+ 1);
3033 xfs_btree_shift_ptrs(cur
, pp
, 1, numrecs
- ptr
+ 1);
3036 error
= xfs_btree_check_ptr(cur
, ptrp
, 0, level
);
3041 /* Now put the new data in, bump numrecs and log it. */
3042 xfs_btree_copy_keys(cur
, kp
, &key
, 1);
3043 xfs_btree_copy_ptrs(cur
, pp
, ptrp
, 1);
3045 xfs_btree_set_numrecs(block
, numrecs
);
3046 xfs_btree_log_ptrs(cur
, bp
, ptr
, numrecs
);
3047 xfs_btree_log_keys(cur
, bp
, ptr
, numrecs
);
3049 if (ptr
< numrecs
) {
3050 ASSERT(cur
->bc_ops
->keys_inorder(cur
, kp
,
3051 xfs_btree_key_addr(cur
, ptr
+ 1, block
)));
3055 /* It's a leaf. make a hole in the records */
3056 union xfs_btree_rec
*rp
;
3058 rp
= xfs_btree_rec_addr(cur
, ptr
, block
);
3060 xfs_btree_shift_recs(cur
, rp
, 1, numrecs
- ptr
+ 1);
3062 /* Now put the new data in, bump numrecs and log it. */
3063 xfs_btree_copy_recs(cur
, rp
, recp
, 1);
3064 xfs_btree_set_numrecs(block
, ++numrecs
);
3065 xfs_btree_log_recs(cur
, bp
, ptr
, numrecs
);
3067 if (ptr
< numrecs
) {
3068 ASSERT(cur
->bc_ops
->recs_inorder(cur
, rp
,
3069 xfs_btree_rec_addr(cur
, ptr
+ 1, block
)));
3074 /* Log the new number of records in the btree header. */
3075 xfs_btree_log_block(cur
, bp
, XFS_BB_NUMRECS
);
3077 /* If we inserted at the start of a block, update the parents' keys. */
3079 error
= xfs_btree_updkey(cur
, &key
, level
+ 1);
3085 * If we are tracking the last record in the tree and
3086 * we are at the far right edge of the tree, update it.
3088 if (xfs_btree_is_lastrec(cur
, block
, level
)) {
3089 cur
->bc_ops
->update_lastrec(cur
, block
, recp
,
3090 ptr
, LASTREC_INSREC
);
3094 * Return the new block number, if any.
3095 * If there is one, give back a record value and a cursor too.
3098 if (!xfs_btree_ptr_is_null(cur
, &nptr
)) {
3103 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3108 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
3113 * Insert the record at the point referenced by cur.
3115 * A multi-level split of the tree on insert will invalidate the original
3116 * cursor. All callers of this function should assume that the cursor is
3117 * no longer valid and revalidate it.
3121 struct xfs_btree_cur
*cur
,
3124 int error
; /* error return value */
3125 int i
; /* result value, 0 for failure */
3126 int level
; /* current level number in btree */
3127 union xfs_btree_ptr nptr
; /* new block number (split result) */
3128 struct xfs_btree_cur
*ncur
; /* new cursor (split result) */
3129 struct xfs_btree_cur
*pcur
; /* previous level's cursor */
3130 union xfs_btree_rec rec
; /* record to insert */
3136 xfs_btree_set_ptr_null(cur
, &nptr
);
3137 cur
->bc_ops
->init_rec_from_cur(cur
, &rec
);
3140 * Loop going up the tree, starting at the leaf level.
3141 * Stop when we don't get a split block, that must mean that
3142 * the insert is finished with this level.
3146 * Insert nrec/nptr into this level of the tree.
3147 * Note if we fail, nptr will be null.
3149 error
= xfs_btree_insrec(pcur
, level
, &nptr
, &rec
, &ncur
, &i
);
3152 xfs_btree_del_cursor(pcur
, XFS_BTREE_ERROR
);
3156 XFS_WANT_CORRUPTED_GOTO(cur
->bc_mp
, i
== 1, error0
);
3160 * See if the cursor we just used is trash.
3161 * Can't trash the caller's cursor, but otherwise we should
3162 * if ncur is a new cursor or we're about to be done.
3165 (ncur
|| xfs_btree_ptr_is_null(cur
, &nptr
))) {
3166 /* Save the state from the cursor before we trash it */
3167 if (cur
->bc_ops
->update_cursor
)
3168 cur
->bc_ops
->update_cursor(pcur
, cur
);
3169 cur
->bc_nlevels
= pcur
->bc_nlevels
;
3170 xfs_btree_del_cursor(pcur
, XFS_BTREE_NOERROR
);
3172 /* If we got a new cursor, switch to it. */
3177 } while (!xfs_btree_ptr_is_null(cur
, &nptr
));
3179 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3183 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
3188 * Try to merge a non-leaf block back into the inode root.
3190 * Note: the killroot names comes from the fact that we're effectively
3191 * killing the old root block. But because we can't just delete the
3192 * inode we have to copy the single block it was pointing to into the
3196 xfs_btree_kill_iroot(
3197 struct xfs_btree_cur
*cur
)
3199 int whichfork
= cur
->bc_private
.b
.whichfork
;
3200 struct xfs_inode
*ip
= cur
->bc_private
.b
.ip
;
3201 struct xfs_ifork
*ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3202 struct xfs_btree_block
*block
;
3203 struct xfs_btree_block
*cblock
;
3204 union xfs_btree_key
*kp
;
3205 union xfs_btree_key
*ckp
;
3206 union xfs_btree_ptr
*pp
;
3207 union xfs_btree_ptr
*cpp
;
3208 struct xfs_buf
*cbp
;
3213 union xfs_btree_ptr ptr
;
3217 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
3219 ASSERT(cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
);
3220 ASSERT(cur
->bc_nlevels
> 1);
3223 * Don't deal with the root block needs to be a leaf case.
3224 * We're just going to turn the thing back into extents anyway.
3226 level
= cur
->bc_nlevels
- 1;
3231 * Give up if the root has multiple children.
3233 block
= xfs_btree_get_iroot(cur
);
3234 if (xfs_btree_get_numrecs(block
) != 1)
3237 cblock
= xfs_btree_get_block(cur
, level
- 1, &cbp
);
3238 numrecs
= xfs_btree_get_numrecs(cblock
);
3241 * Only do this if the next level will fit.
3242 * Then the data must be copied up to the inode,
3243 * instead of freeing the root you free the next level.
3245 if (numrecs
> cur
->bc_ops
->get_dmaxrecs(cur
, level
))
3248 XFS_BTREE_STATS_INC(cur
, killroot
);
3251 xfs_btree_get_sibling(cur
, block
, &ptr
, XFS_BB_LEFTSIB
);
3252 ASSERT(xfs_btree_ptr_is_null(cur
, &ptr
));
3253 xfs_btree_get_sibling(cur
, block
, &ptr
, XFS_BB_RIGHTSIB
);
3254 ASSERT(xfs_btree_ptr_is_null(cur
, &ptr
));
3257 index
= numrecs
- cur
->bc_ops
->get_maxrecs(cur
, level
);
3259 xfs_iroot_realloc(cur
->bc_private
.b
.ip
, index
,
3260 cur
->bc_private
.b
.whichfork
);
3261 block
= ifp
->if_broot
;
3264 be16_add_cpu(&block
->bb_numrecs
, index
);
3265 ASSERT(block
->bb_numrecs
== cblock
->bb_numrecs
);
3267 kp
= xfs_btree_key_addr(cur
, 1, block
);
3268 ckp
= xfs_btree_key_addr(cur
, 1, cblock
);
3269 xfs_btree_copy_keys(cur
, kp
, ckp
, numrecs
);
3271 pp
= xfs_btree_ptr_addr(cur
, 1, block
);
3272 cpp
= xfs_btree_ptr_addr(cur
, 1, cblock
);
3274 for (i
= 0; i
< numrecs
; i
++) {
3277 error
= xfs_btree_check_ptr(cur
, cpp
, i
, level
- 1);
3279 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
3284 xfs_btree_copy_ptrs(cur
, pp
, cpp
, numrecs
);
3286 cur
->bc_ops
->free_block(cur
, cbp
);
3287 XFS_BTREE_STATS_INC(cur
, free
);
3289 cur
->bc_bufs
[level
- 1] = NULL
;
3290 be16_add_cpu(&block
->bb_level
, -1);
3291 xfs_trans_log_inode(cur
->bc_tp
, ip
,
3292 XFS_ILOG_CORE
| xfs_ilog_fbroot(cur
->bc_private
.b
.whichfork
));
3295 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3300 * Kill the current root node, and replace it with it's only child node.
3303 xfs_btree_kill_root(
3304 struct xfs_btree_cur
*cur
,
3307 union xfs_btree_ptr
*newroot
)
3311 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
3312 XFS_BTREE_STATS_INC(cur
, killroot
);
3315 * Update the root pointer, decreasing the level by 1 and then
3316 * free the old root.
3318 cur
->bc_ops
->set_root(cur
, newroot
, -1);
3320 error
= cur
->bc_ops
->free_block(cur
, bp
);
3322 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
3326 XFS_BTREE_STATS_INC(cur
, free
);
3328 cur
->bc_bufs
[level
] = NULL
;
3329 cur
->bc_ra
[level
] = 0;
3332 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3337 xfs_btree_dec_cursor(
3338 struct xfs_btree_cur
*cur
,
3346 error
= xfs_btree_decrement(cur
, level
, &i
);
3351 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3357 * Single level of the btree record deletion routine.
3358 * Delete record pointed to by cur/level.
3359 * Remove the record from its block then rebalance the tree.
3360 * Return 0 for error, 1 for done, 2 to go on to the next level.
3362 STATIC
int /* error */
3364 struct xfs_btree_cur
*cur
, /* btree cursor */
3365 int level
, /* level removing record from */
3366 int *stat
) /* fail/done/go-on */
3368 struct xfs_btree_block
*block
; /* btree block */
3369 union xfs_btree_ptr cptr
; /* current block ptr */
3370 struct xfs_buf
*bp
; /* buffer for block */
3371 int error
; /* error return value */
3372 int i
; /* loop counter */
3373 union xfs_btree_key key
; /* storage for keyp */
3374 union xfs_btree_key
*keyp
= &key
; /* passed to the next level */
3375 union xfs_btree_ptr lptr
; /* left sibling block ptr */
3376 struct xfs_buf
*lbp
; /* left buffer pointer */
3377 struct xfs_btree_block
*left
; /* left btree block */
3378 int lrecs
= 0; /* left record count */
3379 int ptr
; /* key/record index */
3380 union xfs_btree_ptr rptr
; /* right sibling block ptr */
3381 struct xfs_buf
*rbp
; /* right buffer pointer */
3382 struct xfs_btree_block
*right
; /* right btree block */
3383 struct xfs_btree_block
*rrblock
; /* right-right btree block */
3384 struct xfs_buf
*rrbp
; /* right-right buffer pointer */
3385 int rrecs
= 0; /* right record count */
3386 struct xfs_btree_cur
*tcur
; /* temporary btree cursor */
3387 int numrecs
; /* temporary numrec count */
3389 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
3390 XFS_BTREE_TRACE_ARGI(cur
, level
);
3394 /* Get the index of the entry being deleted, check for nothing there. */
3395 ptr
= cur
->bc_ptrs
[level
];
3397 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3402 /* Get the buffer & block containing the record or key/ptr. */
3403 block
= xfs_btree_get_block(cur
, level
, &bp
);
3404 numrecs
= xfs_btree_get_numrecs(block
);
3407 error
= xfs_btree_check_block(cur
, block
, level
, bp
);
3412 /* Fail if we're off the end of the block. */
3413 if (ptr
> numrecs
) {
3414 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3419 XFS_BTREE_STATS_INC(cur
, delrec
);
3420 XFS_BTREE_STATS_ADD(cur
, moves
, numrecs
- ptr
);
3422 /* Excise the entries being deleted. */
3424 /* It's a nonleaf. operate on keys and ptrs */
3425 union xfs_btree_key
*lkp
;
3426 union xfs_btree_ptr
*lpp
;
3428 lkp
= xfs_btree_key_addr(cur
, ptr
+ 1, block
);
3429 lpp
= xfs_btree_ptr_addr(cur
, ptr
+ 1, block
);
3432 for (i
= 0; i
< numrecs
- ptr
; i
++) {
3433 error
= xfs_btree_check_ptr(cur
, lpp
, i
, level
);
3439 if (ptr
< numrecs
) {
3440 xfs_btree_shift_keys(cur
, lkp
, -1, numrecs
- ptr
);
3441 xfs_btree_shift_ptrs(cur
, lpp
, -1, numrecs
- ptr
);
3442 xfs_btree_log_keys(cur
, bp
, ptr
, numrecs
- 1);
3443 xfs_btree_log_ptrs(cur
, bp
, ptr
, numrecs
- 1);
3447 * If it's the first record in the block, we'll need to pass a
3448 * key up to the next level (updkey).
3451 keyp
= xfs_btree_key_addr(cur
, 1, block
);
3453 /* It's a leaf. operate on records */
3454 if (ptr
< numrecs
) {
3455 xfs_btree_shift_recs(cur
,
3456 xfs_btree_rec_addr(cur
, ptr
+ 1, block
),
3458 xfs_btree_log_recs(cur
, bp
, ptr
, numrecs
- 1);
3462 * If it's the first record in the block, we'll need a key
3463 * structure to pass up to the next level (updkey).
3466 cur
->bc_ops
->init_key_from_rec(&key
,
3467 xfs_btree_rec_addr(cur
, 1, block
));
3473 * Decrement and log the number of entries in the block.
3475 xfs_btree_set_numrecs(block
, --numrecs
);
3476 xfs_btree_log_block(cur
, bp
, XFS_BB_NUMRECS
);
3479 * If we are tracking the last record in the tree and
3480 * we are at the far right edge of the tree, update it.
3482 if (xfs_btree_is_lastrec(cur
, block
, level
)) {
3483 cur
->bc_ops
->update_lastrec(cur
, block
, NULL
,
3484 ptr
, LASTREC_DELREC
);
3488 * We're at the root level. First, shrink the root block in-memory.
3489 * Try to get rid of the next level down. If we can't then there's
3490 * nothing left to do.
3492 if (level
== cur
->bc_nlevels
- 1) {
3493 if (cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) {
3494 xfs_iroot_realloc(cur
->bc_private
.b
.ip
, -1,
3495 cur
->bc_private
.b
.whichfork
);
3497 error
= xfs_btree_kill_iroot(cur
);
3501 error
= xfs_btree_dec_cursor(cur
, level
, stat
);
3509 * If this is the root level, and there's only one entry left,
3510 * and it's NOT the leaf level, then we can get rid of this
3513 if (numrecs
== 1 && level
> 0) {
3514 union xfs_btree_ptr
*pp
;
3516 * pp is still set to the first pointer in the block.
3517 * Make it the new root of the btree.
3519 pp
= xfs_btree_ptr_addr(cur
, 1, block
);
3520 error
= xfs_btree_kill_root(cur
, bp
, level
, pp
);
3523 } else if (level
> 0) {
3524 error
= xfs_btree_dec_cursor(cur
, level
, stat
);
3533 * If we deleted the leftmost entry in the block, update the
3534 * key values above us in the tree.
3537 error
= xfs_btree_updkey(cur
, keyp
, level
+ 1);
3543 * If the number of records remaining in the block is at least
3544 * the minimum, we're done.
3546 if (numrecs
>= cur
->bc_ops
->get_minrecs(cur
, level
)) {
3547 error
= xfs_btree_dec_cursor(cur
, level
, stat
);
3554 * Otherwise, we have to move some records around to keep the
3555 * tree balanced. Look at the left and right sibling blocks to
3556 * see if we can re-balance by moving only one record.
3558 xfs_btree_get_sibling(cur
, block
, &rptr
, XFS_BB_RIGHTSIB
);
3559 xfs_btree_get_sibling(cur
, block
, &lptr
, XFS_BB_LEFTSIB
);
3561 if (cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) {
3563 * One child of root, need to get a chance to copy its contents
3564 * into the root and delete it. Can't go up to next level,
3565 * there's nothing to delete there.
3567 if (xfs_btree_ptr_is_null(cur
, &rptr
) &&
3568 xfs_btree_ptr_is_null(cur
, &lptr
) &&
3569 level
== cur
->bc_nlevels
- 2) {
3570 error
= xfs_btree_kill_iroot(cur
);
3572 error
= xfs_btree_dec_cursor(cur
, level
, stat
);
3579 ASSERT(!xfs_btree_ptr_is_null(cur
, &rptr
) ||
3580 !xfs_btree_ptr_is_null(cur
, &lptr
));
3583 * Duplicate the cursor so our btree manipulations here won't
3584 * disrupt the next level up.
3586 error
= xfs_btree_dup_cursor(cur
, &tcur
);
3591 * If there's a right sibling, see if it's ok to shift an entry
3594 if (!xfs_btree_ptr_is_null(cur
, &rptr
)) {
3596 * Move the temp cursor to the last entry in the next block.
3597 * Actually any entry but the first would suffice.
3599 i
= xfs_btree_lastrec(tcur
, level
);
3600 XFS_WANT_CORRUPTED_GOTO(cur
->bc_mp
, i
== 1, error0
);
3602 error
= xfs_btree_increment(tcur
, level
, &i
);
3605 XFS_WANT_CORRUPTED_GOTO(cur
->bc_mp
, i
== 1, error0
);
3607 i
= xfs_btree_lastrec(tcur
, level
);
3608 XFS_WANT_CORRUPTED_GOTO(cur
->bc_mp
, i
== 1, error0
);
3610 /* Grab a pointer to the block. */
3611 right
= xfs_btree_get_block(tcur
, level
, &rbp
);
3613 error
= xfs_btree_check_block(tcur
, right
, level
, rbp
);
3617 /* Grab the current block number, for future use. */
3618 xfs_btree_get_sibling(tcur
, right
, &cptr
, XFS_BB_LEFTSIB
);
3621 * If right block is full enough so that removing one entry
3622 * won't make it too empty, and left-shifting an entry out
3623 * of right to us works, we're done.
3625 if (xfs_btree_get_numrecs(right
) - 1 >=
3626 cur
->bc_ops
->get_minrecs(tcur
, level
)) {
3627 error
= xfs_btree_lshift(tcur
, level
, &i
);
3631 ASSERT(xfs_btree_get_numrecs(block
) >=
3632 cur
->bc_ops
->get_minrecs(tcur
, level
));
3634 xfs_btree_del_cursor(tcur
, XFS_BTREE_NOERROR
);
3637 error
= xfs_btree_dec_cursor(cur
, level
, stat
);
3645 * Otherwise, grab the number of records in right for
3646 * future reference, and fix up the temp cursor to point
3647 * to our block again (last record).
3649 rrecs
= xfs_btree_get_numrecs(right
);
3650 if (!xfs_btree_ptr_is_null(cur
, &lptr
)) {
3651 i
= xfs_btree_firstrec(tcur
, level
);
3652 XFS_WANT_CORRUPTED_GOTO(cur
->bc_mp
, i
== 1, error0
);
3654 error
= xfs_btree_decrement(tcur
, level
, &i
);
3657 XFS_WANT_CORRUPTED_GOTO(cur
->bc_mp
, i
== 1, error0
);
3662 * If there's a left sibling, see if it's ok to shift an entry
3665 if (!xfs_btree_ptr_is_null(cur
, &lptr
)) {
3667 * Move the temp cursor to the first entry in the
3670 i
= xfs_btree_firstrec(tcur
, level
);
3671 XFS_WANT_CORRUPTED_GOTO(cur
->bc_mp
, i
== 1, error0
);
3673 error
= xfs_btree_decrement(tcur
, level
, &i
);
3676 i
= xfs_btree_firstrec(tcur
, level
);
3677 XFS_WANT_CORRUPTED_GOTO(cur
->bc_mp
, i
== 1, error0
);
3679 /* Grab a pointer to the block. */
3680 left
= xfs_btree_get_block(tcur
, level
, &lbp
);
3682 error
= xfs_btree_check_block(cur
, left
, level
, lbp
);
3686 /* Grab the current block number, for future use. */
3687 xfs_btree_get_sibling(tcur
, left
, &cptr
, XFS_BB_RIGHTSIB
);
3690 * If left block is full enough so that removing one entry
3691 * won't make it too empty, and right-shifting an entry out
3692 * of left to us works, we're done.
3694 if (xfs_btree_get_numrecs(left
) - 1 >=
3695 cur
->bc_ops
->get_minrecs(tcur
, level
)) {
3696 error
= xfs_btree_rshift(tcur
, level
, &i
);
3700 ASSERT(xfs_btree_get_numrecs(block
) >=
3701 cur
->bc_ops
->get_minrecs(tcur
, level
));
3702 xfs_btree_del_cursor(tcur
, XFS_BTREE_NOERROR
);
3706 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3713 * Otherwise, grab the number of records in right for
3716 lrecs
= xfs_btree_get_numrecs(left
);
3719 /* Delete the temp cursor, we're done with it. */
3720 xfs_btree_del_cursor(tcur
, XFS_BTREE_NOERROR
);
3723 /* If here, we need to do a join to keep the tree balanced. */
3724 ASSERT(!xfs_btree_ptr_is_null(cur
, &cptr
));
3726 if (!xfs_btree_ptr_is_null(cur
, &lptr
) &&
3727 lrecs
+ xfs_btree_get_numrecs(block
) <=
3728 cur
->bc_ops
->get_maxrecs(cur
, level
)) {
3730 * Set "right" to be the starting block,
3731 * "left" to be the left neighbor.
3736 error
= xfs_btree_read_buf_block(cur
, &lptr
, 0, &left
, &lbp
);
3741 * If that won't work, see if we can join with the right neighbor block.
3743 } else if (!xfs_btree_ptr_is_null(cur
, &rptr
) &&
3744 rrecs
+ xfs_btree_get_numrecs(block
) <=
3745 cur
->bc_ops
->get_maxrecs(cur
, level
)) {
3747 * Set "left" to be the starting block,
3748 * "right" to be the right neighbor.
3753 error
= xfs_btree_read_buf_block(cur
, &rptr
, 0, &right
, &rbp
);
3758 * Otherwise, we can't fix the imbalance.
3759 * Just return. This is probably a logic error, but it's not fatal.
3762 error
= xfs_btree_dec_cursor(cur
, level
, stat
);
3768 rrecs
= xfs_btree_get_numrecs(right
);
3769 lrecs
= xfs_btree_get_numrecs(left
);
3772 * We're now going to join "left" and "right" by moving all the stuff
3773 * in "right" to "left" and deleting "right".
3775 XFS_BTREE_STATS_ADD(cur
, moves
, rrecs
);
3777 /* It's a non-leaf. Move keys and pointers. */
3778 union xfs_btree_key
*lkp
; /* left btree key */
3779 union xfs_btree_ptr
*lpp
; /* left address pointer */
3780 union xfs_btree_key
*rkp
; /* right btree key */
3781 union xfs_btree_ptr
*rpp
; /* right address pointer */
3783 lkp
= xfs_btree_key_addr(cur
, lrecs
+ 1, left
);
3784 lpp
= xfs_btree_ptr_addr(cur
, lrecs
+ 1, left
);
3785 rkp
= xfs_btree_key_addr(cur
, 1, right
);
3786 rpp
= xfs_btree_ptr_addr(cur
, 1, right
);
3788 for (i
= 1; i
< rrecs
; i
++) {
3789 error
= xfs_btree_check_ptr(cur
, rpp
, i
, level
);
3794 xfs_btree_copy_keys(cur
, lkp
, rkp
, rrecs
);
3795 xfs_btree_copy_ptrs(cur
, lpp
, rpp
, rrecs
);
3797 xfs_btree_log_keys(cur
, lbp
, lrecs
+ 1, lrecs
+ rrecs
);
3798 xfs_btree_log_ptrs(cur
, lbp
, lrecs
+ 1, lrecs
+ rrecs
);
3800 /* It's a leaf. Move records. */
3801 union xfs_btree_rec
*lrp
; /* left record pointer */
3802 union xfs_btree_rec
*rrp
; /* right record pointer */
3804 lrp
= xfs_btree_rec_addr(cur
, lrecs
+ 1, left
);
3805 rrp
= xfs_btree_rec_addr(cur
, 1, right
);
3807 xfs_btree_copy_recs(cur
, lrp
, rrp
, rrecs
);
3808 xfs_btree_log_recs(cur
, lbp
, lrecs
+ 1, lrecs
+ rrecs
);
3811 XFS_BTREE_STATS_INC(cur
, join
);
3814 * Fix up the number of records and right block pointer in the
3815 * surviving block, and log it.
3817 xfs_btree_set_numrecs(left
, lrecs
+ rrecs
);
3818 xfs_btree_get_sibling(cur
, right
, &cptr
, XFS_BB_RIGHTSIB
),
3819 xfs_btree_set_sibling(cur
, left
, &cptr
, XFS_BB_RIGHTSIB
);
3820 xfs_btree_log_block(cur
, lbp
, XFS_BB_NUMRECS
| XFS_BB_RIGHTSIB
);
3822 /* If there is a right sibling, point it to the remaining block. */
3823 xfs_btree_get_sibling(cur
, left
, &cptr
, XFS_BB_RIGHTSIB
);
3824 if (!xfs_btree_ptr_is_null(cur
, &cptr
)) {
3825 error
= xfs_btree_read_buf_block(cur
, &cptr
, 0, &rrblock
, &rrbp
);
3828 xfs_btree_set_sibling(cur
, rrblock
, &lptr
, XFS_BB_LEFTSIB
);
3829 xfs_btree_log_block(cur
, rrbp
, XFS_BB_LEFTSIB
);
3832 /* Free the deleted block. */
3833 error
= cur
->bc_ops
->free_block(cur
, rbp
);
3836 XFS_BTREE_STATS_INC(cur
, free
);
3839 * If we joined with the left neighbor, set the buffer in the
3840 * cursor to the left block, and fix up the index.
3843 cur
->bc_bufs
[level
] = lbp
;
3844 cur
->bc_ptrs
[level
] += lrecs
;
3845 cur
->bc_ra
[level
] = 0;
3848 * If we joined with the right neighbor and there's a level above
3849 * us, increment the cursor at that level.
3851 else if ((cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
) ||
3852 (level
+ 1 < cur
->bc_nlevels
)) {
3853 error
= xfs_btree_increment(cur
, level
+ 1, &i
);
3859 * Readjust the ptr at this level if it's not a leaf, since it's
3860 * still pointing at the deletion point, which makes the cursor
3861 * inconsistent. If this makes the ptr 0, the caller fixes it up.
3862 * We can't use decrement because it would change the next level up.
3865 cur
->bc_ptrs
[level
]--;
3867 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3868 /* Return value means the next level up has something to do. */
3873 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
3875 xfs_btree_del_cursor(tcur
, XFS_BTREE_ERROR
);
3880 * Delete the record pointed to by cur.
3881 * The cursor refers to the place where the record was (could be inserted)
3882 * when the operation returns.
3886 struct xfs_btree_cur
*cur
,
3887 int *stat
) /* success/failure */
3889 int error
; /* error return value */
3893 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
3896 * Go up the tree, starting at leaf level.
3898 * If 2 is returned then a join was done; go to the next level.
3899 * Otherwise we are done.
3901 for (level
= 0, i
= 2; i
== 2; level
++) {
3902 error
= xfs_btree_delrec(cur
, level
, &i
);
3908 for (level
= 1; level
< cur
->bc_nlevels
; level
++) {
3909 if (cur
->bc_ptrs
[level
] == 0) {
3910 error
= xfs_btree_decrement(cur
, level
, &i
);
3918 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
3922 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
3927 * Get the data from the pointed-to record.
3931 struct xfs_btree_cur
*cur
, /* btree cursor */
3932 union xfs_btree_rec
**recp
, /* output: btree record */
3933 int *stat
) /* output: success/failure */
3935 struct xfs_btree_block
*block
; /* btree block */
3936 struct xfs_buf
*bp
; /* buffer pointer */
3937 int ptr
; /* record number */
3939 int error
; /* error return value */
3942 ptr
= cur
->bc_ptrs
[0];
3943 block
= xfs_btree_get_block(cur
, 0, &bp
);
3946 error
= xfs_btree_check_block(cur
, block
, 0, bp
);
3952 * Off the right end or left end, return failure.
3954 if (ptr
> xfs_btree_get_numrecs(block
) || ptr
<= 0) {
3960 * Point to the record and extract its data.
3962 *recp
= xfs_btree_rec_addr(cur
, ptr
, block
);
3968 * Change the owner of a btree.
3970 * The mechanism we use here is ordered buffer logging. Because we don't know
3971 * how many buffers were are going to need to modify, we don't really want to
3972 * have to make transaction reservations for the worst case of every buffer in a
3973 * full size btree as that may be more space that we can fit in the log....
3975 * We do the btree walk in the most optimal manner possible - we have sibling
3976 * pointers so we can just walk all the blocks on each level from left to right
3977 * in a single pass, and then move to the next level and do the same. We can
3978 * also do readahead on the sibling pointers to get IO moving more quickly,
3979 * though for slow disks this is unlikely to make much difference to performance
3980 * as the amount of CPU work we have to do before moving to the next block is
3983 * For each btree block that we load, modify the owner appropriately, set the
3984 * buffer as an ordered buffer and log it appropriately. We need to ensure that
3985 * we mark the region we change dirty so that if the buffer is relogged in
3986 * a subsequent transaction the changes we make here as an ordered buffer are
3987 * correctly relogged in that transaction. If we are in recovery context, then
3988 * just queue the modified buffer as delayed write buffer so the transaction
3989 * recovery completion writes the changes to disk.
3992 xfs_btree_block_change_owner(
3993 struct xfs_btree_cur
*cur
,
3995 __uint64_t new_owner
,
3996 struct list_head
*buffer_list
)
3998 struct xfs_btree_block
*block
;
4000 union xfs_btree_ptr rptr
;
4002 /* do right sibling readahead */
4003 xfs_btree_readahead(cur
, level
, XFS_BTCUR_RIGHTRA
);
4005 /* modify the owner */
4006 block
= xfs_btree_get_block(cur
, level
, &bp
);
4007 if (cur
->bc_flags
& XFS_BTREE_LONG_PTRS
)
4008 block
->bb_u
.l
.bb_owner
= cpu_to_be64(new_owner
);
4010 block
->bb_u
.s
.bb_owner
= cpu_to_be32(new_owner
);
4013 * If the block is a root block hosted in an inode, we might not have a
4014 * buffer pointer here and we shouldn't attempt to log the change as the
4015 * information is already held in the inode and discarded when the root
4016 * block is formatted into the on-disk inode fork. We still change it,
4017 * though, so everything is consistent in memory.
4021 xfs_trans_ordered_buf(cur
->bc_tp
, bp
);
4022 xfs_btree_log_block(cur
, bp
, XFS_BB_OWNER
);
4024 xfs_buf_delwri_queue(bp
, buffer_list
);
4027 ASSERT(cur
->bc_flags
& XFS_BTREE_ROOT_IN_INODE
);
4028 ASSERT(level
== cur
->bc_nlevels
- 1);
4031 /* now read rh sibling block for next iteration */
4032 xfs_btree_get_sibling(cur
, block
, &rptr
, XFS_BB_RIGHTSIB
);
4033 if (xfs_btree_ptr_is_null(cur
, &rptr
))
4036 return xfs_btree_lookup_get_block(cur
, level
, &rptr
, &block
);
4040 xfs_btree_change_owner(
4041 struct xfs_btree_cur
*cur
,
4042 __uint64_t new_owner
,
4043 struct list_head
*buffer_list
)
4045 union xfs_btree_ptr lptr
;
4047 struct xfs_btree_block
*block
= NULL
;
4050 cur
->bc_ops
->init_ptr_from_cur(cur
, &lptr
);
4052 /* for each level */
4053 for (level
= cur
->bc_nlevels
- 1; level
>= 0; level
--) {
4054 /* grab the left hand block */
4055 error
= xfs_btree_lookup_get_block(cur
, level
, &lptr
, &block
);
4059 /* readahead the left most block for the next level down */
4061 union xfs_btree_ptr
*ptr
;
4063 ptr
= xfs_btree_ptr_addr(cur
, 1, block
);
4064 xfs_btree_readahead_ptr(cur
, ptr
, 1);
4066 /* save for the next iteration of the loop */
4067 xfs_btree_copy_ptrs(cur
, &lptr
, ptr
, 1);
4070 /* for each buffer in the level */
4072 error
= xfs_btree_block_change_owner(cur
, level
,
4077 if (error
!= -ENOENT
)