Commit 6ca444cf authored by Darrick J. Wong's avatar Darrick J. Wong

xfs: prepare xfs_btree_cur for dynamic cursor heights

Split out the btree level information into a separate struct and put it
at the end of the cursor structure as a VLA.  Files with huge data forks
(and in the future, the realtime rmap btree) will require the ability to
support many more levels than a per-AG btree cursor, which means that
we're going to create per-btree type cursor caches to conserve memory
for the more common case.

Note that a subsequent patch actually introduces dynamic cursor heights.
This one merely rearranges the structure to prepare for that.
Signed-off-by: default avatarDarrick J. Wong <djwong@kernel.org>
Reviewed-by: default avatarChandan Babu R <chandan.babu@oracle.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarDave Chinner <dchinner@redhat.com>
parent eae5db47
...@@ -488,8 +488,8 @@ xfs_alloc_fixup_trees( ...@@ -488,8 +488,8 @@ xfs_alloc_fixup_trees(
struct xfs_btree_block *bnoblock; struct xfs_btree_block *bnoblock;
struct xfs_btree_block *cntblock; struct xfs_btree_block *cntblock;
bnoblock = XFS_BUF_TO_BLOCK(bno_cur->bc_bufs[0]); bnoblock = XFS_BUF_TO_BLOCK(bno_cur->bc_levels[0].bp);
cntblock = XFS_BUF_TO_BLOCK(cnt_cur->bc_bufs[0]); cntblock = XFS_BUF_TO_BLOCK(cnt_cur->bc_levels[0].bp);
if (XFS_IS_CORRUPT(mp, if (XFS_IS_CORRUPT(mp,
bnoblock->bb_numrecs != bnoblock->bb_numrecs !=
...@@ -1512,7 +1512,7 @@ xfs_alloc_ag_vextent_lastblock( ...@@ -1512,7 +1512,7 @@ xfs_alloc_ag_vextent_lastblock(
* than minlen. * than minlen.
*/ */
if (*len || args->alignment > 1) { if (*len || args->alignment > 1) {
acur->cnt->bc_ptrs[0] = 1; acur->cnt->bc_levels[0].ptr = 1;
do { do {
error = xfs_alloc_get_rec(acur->cnt, bno, len, &i); error = xfs_alloc_get_rec(acur->cnt, bno, len, &i);
if (error) if (error)
......
...@@ -240,10 +240,10 @@ xfs_bmap_get_bp( ...@@ -240,10 +240,10 @@ xfs_bmap_get_bp(
return NULL; return NULL;
for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) { for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) {
if (!cur->bc_bufs[i]) if (!cur->bc_levels[i].bp)
break; break;
if (xfs_buf_daddr(cur->bc_bufs[i]) == bno) if (xfs_buf_daddr(cur->bc_levels[i].bp) == bno)
return cur->bc_bufs[i]; return cur->bc_levels[i].bp;
} }
/* Chase down all the log items to see if the bp is there */ /* Chase down all the log items to see if the bp is there */
...@@ -629,8 +629,8 @@ xfs_bmap_btree_to_extents( ...@@ -629,8 +629,8 @@ xfs_bmap_btree_to_extents(
ip->i_nblocks--; ip->i_nblocks--;
xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L); xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
xfs_trans_binval(tp, cbp); xfs_trans_binval(tp, cbp);
if (cur->bc_bufs[0] == cbp) if (cur->bc_levels[0].bp == cbp)
cur->bc_bufs[0] = NULL; cur->bc_levels[0].bp = NULL;
xfs_iroot_realloc(ip, -1, whichfork); xfs_iroot_realloc(ip, -1, whichfork);
ASSERT(ifp->if_broot == NULL); ASSERT(ifp->if_broot == NULL);
ifp->if_format = XFS_DINODE_FMT_EXTENTS; ifp->if_format = XFS_DINODE_FMT_EXTENTS;
......
This diff is collapsed.
...@@ -212,6 +212,19 @@ struct xfs_btree_cur_ino { ...@@ -212,6 +212,19 @@ struct xfs_btree_cur_ino {
#define XFS_BTCUR_BMBT_INVALID_OWNER (1 << 1) #define XFS_BTCUR_BMBT_INVALID_OWNER (1 << 1)
}; };
struct xfs_btree_level {
/* buffer pointer */
struct xfs_buf *bp;
/* key/record number */
uint16_t ptr;
/* readahead info */
#define XFS_BTCUR_LEFTRA (1 << 0) /* left sibling has been read-ahead */
#define XFS_BTCUR_RIGHTRA (1 << 1) /* right sibling has been read-ahead */
uint16_t ra;
};
/* /*
* Btree cursor structure. * Btree cursor structure.
* This collects all information needed by the btree code in one place. * This collects all information needed by the btree code in one place.
...@@ -223,11 +236,6 @@ struct xfs_btree_cur ...@@ -223,11 +236,6 @@ struct xfs_btree_cur
const struct xfs_btree_ops *bc_ops; const struct xfs_btree_ops *bc_ops;
uint bc_flags; /* btree features - below */ uint bc_flags; /* btree features - below */
union xfs_btree_irec bc_rec; /* current insert/search record value */ union xfs_btree_irec bc_rec; /* current insert/search record value */
struct xfs_buf *bc_bufs[XFS_BTREE_MAXLEVELS]; /* buf ptr per level */
int bc_ptrs[XFS_BTREE_MAXLEVELS]; /* key/record # */
uint8_t bc_ra[XFS_BTREE_MAXLEVELS]; /* readahead bits */
#define XFS_BTCUR_LEFTRA 1 /* left sibling has been read-ahead */
#define XFS_BTCUR_RIGHTRA 2 /* right sibling has been read-ahead */
uint8_t bc_nlevels; /* number of levels in the tree */ uint8_t bc_nlevels; /* number of levels in the tree */
xfs_btnum_t bc_btnum; /* identifies which btree type */ xfs_btnum_t bc_btnum; /* identifies which btree type */
int bc_statoff; /* offset of btre stats array */ int bc_statoff; /* offset of btre stats array */
...@@ -242,8 +250,22 @@ struct xfs_btree_cur ...@@ -242,8 +250,22 @@ struct xfs_btree_cur
struct xfs_btree_cur_ag bc_ag; struct xfs_btree_cur_ag bc_ag;
struct xfs_btree_cur_ino bc_ino; struct xfs_btree_cur_ino bc_ino;
}; };
/* Must be at the end of the struct! */
struct xfs_btree_level bc_levels[];
}; };
/*
* Compute the size of a btree cursor that can handle a btree of a given
* height. The bc_levels array handles node and leaf blocks, so its size
* is exactly nlevels.
*/
static inline size_t
xfs_btree_cur_sizeof(unsigned int nlevels)
{
return struct_size((struct xfs_btree_cur *)NULL, bc_levels, nlevels);
}
/* cursor flags */ /* cursor flags */
#define XFS_BTREE_LONG_PTRS (1<<0) /* pointers are 64bits long */ #define XFS_BTREE_LONG_PTRS (1<<0) /* pointers are 64bits long */
#define XFS_BTREE_ROOT_IN_INODE (1<<1) /* root may be variable size */ #define XFS_BTREE_ROOT_IN_INODE (1<<1) /* root may be variable size */
...@@ -257,7 +279,6 @@ struct xfs_btree_cur ...@@ -257,7 +279,6 @@ struct xfs_btree_cur
*/ */
#define XFS_BTREE_STAGING (1<<5) #define XFS_BTREE_STAGING (1<<5)
#define XFS_BTREE_NOERROR 0 #define XFS_BTREE_NOERROR 0
#define XFS_BTREE_ERROR 1 #define XFS_BTREE_ERROR 1
......
...@@ -222,21 +222,21 @@ xbitmap_disunion( ...@@ -222,21 +222,21 @@ xbitmap_disunion(
* 1 2 3 * 1 2 3
* *
* Pretend for this example that each leaf block has 100 btree records. For * Pretend for this example that each leaf block has 100 btree records. For
* the first btree record, we'll observe that bc_ptrs[0] == 1, so we record * the first btree record, we'll observe that bc_levels[0].ptr == 1, so we
* that we saw block 1. Then we observe that bc_ptrs[1] == 1, so we record * record that we saw block 1. Then we observe that bc_levels[1].ptr == 1, so
* block 4. The list is [1, 4]. * we record block 4. The list is [1, 4].
* *
* For the second btree record, we see that bc_ptrs[0] == 2, so we exit the * For the second btree record, we see that bc_levels[0].ptr == 2, so we exit
* loop. The list remains [1, 4]. * the loop. The list remains [1, 4].
* *
* For the 101st btree record, we've moved onto leaf block 2. Now * For the 101st btree record, we've moved onto leaf block 2. Now
* bc_ptrs[0] == 1 again, so we record that we saw block 2. We see that * bc_levels[0].ptr == 1 again, so we record that we saw block 2. We see that
* bc_ptrs[1] == 2, so we exit the loop. The list is now [1, 4, 2]. * bc_levels[1].ptr == 2, so we exit the loop. The list is now [1, 4, 2].
* *
* For the 102nd record, bc_ptrs[0] == 2, so we continue. * For the 102nd record, bc_levels[0].ptr == 2, so we continue.
* *
* For the 201st record, we've moved on to leaf block 3. bc_ptrs[0] == 1, so * For the 201st record, we've moved on to leaf block 3.
* we add 3 to the list. Now it is [1, 4, 2, 3]. * bc_levels[0].ptr == 1, so we add 3 to the list. Now it is [1, 4, 2, 3].
* *
* For the 300th record we just exit, with the list being [1, 4, 2, 3]. * For the 300th record we just exit, with the list being [1, 4, 2, 3].
*/ */
...@@ -256,7 +256,7 @@ xbitmap_set_btcur_path( ...@@ -256,7 +256,7 @@ xbitmap_set_btcur_path(
int i; int i;
int error; int error;
for (i = 0; i < cur->bc_nlevels && cur->bc_ptrs[i] == 1; i++) { for (i = 0; i < cur->bc_nlevels && cur->bc_levels[i].ptr == 1; i++) {
xfs_btree_get_block(cur, i, &bp); xfs_btree_get_block(cur, i, &bp);
if (!bp) if (!bp)
continue; continue;
......
...@@ -402,7 +402,7 @@ xchk_bmapbt_rec( ...@@ -402,7 +402,7 @@ xchk_bmapbt_rec(
* the root since the verifiers don't do that. * the root since the verifiers don't do that.
*/ */
if (xfs_has_crc(bs->cur->bc_mp) && if (xfs_has_crc(bs->cur->bc_mp) &&
bs->cur->bc_ptrs[0] == 1) { bs->cur->bc_levels[0].ptr == 1) {
for (i = 0; i < bs->cur->bc_nlevels - 1; i++) { for (i = 0; i < bs->cur->bc_nlevels - 1; i++) {
block = xfs_btree_get_block(bs->cur, i, &bp); block = xfs_btree_get_block(bs->cur, i, &bp);
owner = be64_to_cpu(block->bb_u.l.bb_owner); owner = be64_to_cpu(block->bb_u.l.bb_owner);
......
...@@ -136,12 +136,12 @@ xchk_btree_rec( ...@@ -136,12 +136,12 @@ xchk_btree_rec(
struct xfs_buf *bp; struct xfs_buf *bp;
block = xfs_btree_get_block(cur, 0, &bp); block = xfs_btree_get_block(cur, 0, &bp);
rec = xfs_btree_rec_addr(cur, cur->bc_ptrs[0], block); rec = xfs_btree_rec_addr(cur, cur->bc_levels[0].ptr, block);
trace_xchk_btree_rec(bs->sc, cur, 0); trace_xchk_btree_rec(bs->sc, cur, 0);
/* If this isn't the first record, are they in order? */ /* If this isn't the first record, are they in order? */
if (cur->bc_ptrs[0] > 1 && if (cur->bc_levels[0].ptr > 1 &&
!cur->bc_ops->recs_inorder(cur, &bs->lastrec, rec)) !cur->bc_ops->recs_inorder(cur, &bs->lastrec, rec))
xchk_btree_set_corrupt(bs->sc, cur, 0); xchk_btree_set_corrupt(bs->sc, cur, 0);
memcpy(&bs->lastrec, rec, cur->bc_ops->rec_len); memcpy(&bs->lastrec, rec, cur->bc_ops->rec_len);
...@@ -152,7 +152,7 @@ xchk_btree_rec( ...@@ -152,7 +152,7 @@ xchk_btree_rec(
/* Is this at least as large as the parent low key? */ /* Is this at least as large as the parent low key? */
cur->bc_ops->init_key_from_rec(&key, rec); cur->bc_ops->init_key_from_rec(&key, rec);
keyblock = xfs_btree_get_block(cur, 1, &bp); keyblock = xfs_btree_get_block(cur, 1, &bp);
keyp = xfs_btree_key_addr(cur, cur->bc_ptrs[1], keyblock); keyp = xfs_btree_key_addr(cur, cur->bc_levels[1].ptr, keyblock);
if (cur->bc_ops->diff_two_keys(cur, &key, keyp) < 0) if (cur->bc_ops->diff_two_keys(cur, &key, keyp) < 0)
xchk_btree_set_corrupt(bs->sc, cur, 1); xchk_btree_set_corrupt(bs->sc, cur, 1);
...@@ -161,7 +161,7 @@ xchk_btree_rec( ...@@ -161,7 +161,7 @@ xchk_btree_rec(
/* Is this no larger than the parent high key? */ /* Is this no larger than the parent high key? */
cur->bc_ops->init_high_key_from_rec(&hkey, rec); cur->bc_ops->init_high_key_from_rec(&hkey, rec);
keyp = xfs_btree_high_key_addr(cur, cur->bc_ptrs[1], keyblock); keyp = xfs_btree_high_key_addr(cur, cur->bc_levels[1].ptr, keyblock);
if (cur->bc_ops->diff_two_keys(cur, keyp, &hkey) < 0) if (cur->bc_ops->diff_two_keys(cur, keyp, &hkey) < 0)
xchk_btree_set_corrupt(bs->sc, cur, 1); xchk_btree_set_corrupt(bs->sc, cur, 1);
} }
...@@ -183,12 +183,12 @@ xchk_btree_key( ...@@ -183,12 +183,12 @@ xchk_btree_key(
struct xfs_buf *bp; struct xfs_buf *bp;
block = xfs_btree_get_block(cur, level, &bp); block = xfs_btree_get_block(cur, level, &bp);
key = xfs_btree_key_addr(cur, cur->bc_ptrs[level], block); key = xfs_btree_key_addr(cur, cur->bc_levels[level].ptr, block);
trace_xchk_btree_key(bs->sc, cur, level); trace_xchk_btree_key(bs->sc, cur, level);
/* If this isn't the first key, are they in order? */ /* If this isn't the first key, are they in order? */
if (cur->bc_ptrs[level] > 1 && if (cur->bc_levels[level].ptr > 1 &&
!cur->bc_ops->keys_inorder(cur, &bs->lastkey[level - 1], key)) !cur->bc_ops->keys_inorder(cur, &bs->lastkey[level - 1], key))
xchk_btree_set_corrupt(bs->sc, cur, level); xchk_btree_set_corrupt(bs->sc, cur, level);
memcpy(&bs->lastkey[level - 1], key, cur->bc_ops->key_len); memcpy(&bs->lastkey[level - 1], key, cur->bc_ops->key_len);
...@@ -198,7 +198,7 @@ xchk_btree_key( ...@@ -198,7 +198,7 @@ xchk_btree_key(
/* Is this at least as large as the parent low key? */ /* Is this at least as large as the parent low key? */
keyblock = xfs_btree_get_block(cur, level + 1, &bp); keyblock = xfs_btree_get_block(cur, level + 1, &bp);
keyp = xfs_btree_key_addr(cur, cur->bc_ptrs[level + 1], keyblock); keyp = xfs_btree_key_addr(cur, cur->bc_levels[level + 1].ptr, keyblock);
if (cur->bc_ops->diff_two_keys(cur, key, keyp) < 0) if (cur->bc_ops->diff_two_keys(cur, key, keyp) < 0)
xchk_btree_set_corrupt(bs->sc, cur, level); xchk_btree_set_corrupt(bs->sc, cur, level);
...@@ -206,8 +206,9 @@ xchk_btree_key( ...@@ -206,8 +206,9 @@ xchk_btree_key(
return; return;
/* Is this no larger than the parent high key? */ /* Is this no larger than the parent high key? */
key = xfs_btree_high_key_addr(cur, cur->bc_ptrs[level], block); key = xfs_btree_high_key_addr(cur, cur->bc_levels[level].ptr, block);
keyp = xfs_btree_high_key_addr(cur, cur->bc_ptrs[level + 1], keyblock); keyp = xfs_btree_high_key_addr(cur, cur->bc_levels[level + 1].ptr,
keyblock);
if (cur->bc_ops->diff_two_keys(cur, keyp, key) < 0) if (cur->bc_ops->diff_two_keys(cur, keyp, key) < 0)
xchk_btree_set_corrupt(bs->sc, cur, level); xchk_btree_set_corrupt(bs->sc, cur, level);
} }
...@@ -290,7 +291,7 @@ xchk_btree_block_check_sibling( ...@@ -290,7 +291,7 @@ xchk_btree_block_check_sibling(
/* Compare upper level pointer to sibling pointer. */ /* Compare upper level pointer to sibling pointer. */
pblock = xfs_btree_get_block(ncur, level + 1, &pbp); pblock = xfs_btree_get_block(ncur, level + 1, &pbp);
pp = xfs_btree_ptr_addr(ncur, ncur->bc_ptrs[level + 1], pblock); pp = xfs_btree_ptr_addr(ncur, ncur->bc_levels[level + 1].ptr, pblock);
if (!xchk_btree_ptr_ok(bs, level + 1, pp)) if (!xchk_btree_ptr_ok(bs, level + 1, pp))
goto out; goto out;
if (pbp) if (pbp)
...@@ -595,7 +596,7 @@ xchk_btree_block_keys( ...@@ -595,7 +596,7 @@ xchk_btree_block_keys(
/* Obtain the parent's copy of the keys for this block. */ /* Obtain the parent's copy of the keys for this block. */
parent_block = xfs_btree_get_block(cur, level + 1, &bp); parent_block = xfs_btree_get_block(cur, level + 1, &bp);
parent_keys = xfs_btree_key_addr(cur, cur->bc_ptrs[level + 1], parent_keys = xfs_btree_key_addr(cur, cur->bc_levels[level + 1].ptr,
parent_block); parent_block);
if (cur->bc_ops->diff_two_keys(cur, &block_keys, parent_keys) != 0) if (cur->bc_ops->diff_two_keys(cur, &block_keys, parent_keys) != 0)
...@@ -606,7 +607,7 @@ xchk_btree_block_keys( ...@@ -606,7 +607,7 @@ xchk_btree_block_keys(
/* Get high keys */ /* Get high keys */
high_bk = xfs_btree_high_key_from_key(cur, &block_keys); high_bk = xfs_btree_high_key_from_key(cur, &block_keys);
high_pk = xfs_btree_high_key_addr(cur, cur->bc_ptrs[level + 1], high_pk = xfs_btree_high_key_addr(cur, cur->bc_levels[level + 1].ptr,
parent_block); parent_block);
if (cur->bc_ops->diff_two_keys(cur, high_bk, high_pk) != 0) if (cur->bc_ops->diff_two_keys(cur, high_bk, high_pk) != 0)
...@@ -672,18 +673,18 @@ xchk_btree( ...@@ -672,18 +673,18 @@ xchk_btree(
if (error || !block) if (error || !block)
goto out; goto out;
cur->bc_ptrs[level] = 1; cur->bc_levels[level].ptr = 1;
while (level < cur->bc_nlevels) { while (level < cur->bc_nlevels) {
block = xfs_btree_get_block(cur, level, &bp); block = xfs_btree_get_block(cur, level, &bp);
if (level == 0) { if (level == 0) {
/* End of leaf, pop back towards the root. */ /* End of leaf, pop back towards the root. */
if (cur->bc_ptrs[level] > if (cur->bc_levels[level].ptr >
be16_to_cpu(block->bb_numrecs)) { be16_to_cpu(block->bb_numrecs)) {
xchk_btree_block_keys(bs, level, block); xchk_btree_block_keys(bs, level, block);
if (level < cur->bc_nlevels - 1) if (level < cur->bc_nlevels - 1)
cur->bc_ptrs[level + 1]++; cur->bc_levels[level + 1].ptr++;
level++; level++;
continue; continue;
} }
...@@ -692,7 +693,8 @@ xchk_btree( ...@@ -692,7 +693,8 @@ xchk_btree(
xchk_btree_rec(bs); xchk_btree_rec(bs);
/* Call out to the record checker. */ /* Call out to the record checker. */
recp = xfs_btree_rec_addr(cur, cur->bc_ptrs[0], block); recp = xfs_btree_rec_addr(cur, cur->bc_levels[0].ptr,
block);
error = bs->scrub_rec(bs, recp); error = bs->scrub_rec(bs, recp);
if (error) if (error)
break; break;
...@@ -700,15 +702,16 @@ xchk_btree( ...@@ -700,15 +702,16 @@ xchk_btree(
(sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)) (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT))
break; break;
cur->bc_ptrs[level]++; cur->bc_levels[level].ptr++;
continue; continue;
} }
/* End of node, pop back towards the root. */ /* End of node, pop back towards the root. */
if (cur->bc_ptrs[level] > be16_to_cpu(block->bb_numrecs)) { if (cur->bc_levels[level].ptr >
be16_to_cpu(block->bb_numrecs)) {
xchk_btree_block_keys(bs, level, block); xchk_btree_block_keys(bs, level, block);
if (level < cur->bc_nlevels - 1) if (level < cur->bc_nlevels - 1)
cur->bc_ptrs[level + 1]++; cur->bc_levels[level + 1].ptr++;
level++; level++;
continue; continue;
} }
...@@ -717,9 +720,9 @@ xchk_btree( ...@@ -717,9 +720,9 @@ xchk_btree(
xchk_btree_key(bs, level); xchk_btree_key(bs, level);
/* Drill another level deeper. */ /* Drill another level deeper. */
pp = xfs_btree_ptr_addr(cur, cur->bc_ptrs[level], block); pp = xfs_btree_ptr_addr(cur, cur->bc_levels[level].ptr, block);
if (!xchk_btree_ptr_ok(bs, level, pp)) { if (!xchk_btree_ptr_ok(bs, level, pp)) {
cur->bc_ptrs[level]++; cur->bc_levels[level].ptr++;
continue; continue;
} }
level--; level--;
...@@ -727,7 +730,7 @@ xchk_btree( ...@@ -727,7 +730,7 @@ xchk_btree(
if (error || !block) if (error || !block)
goto out; goto out;
cur->bc_ptrs[level] = 1; cur->bc_levels[level].ptr = 1;
} }
out: out:
......
...@@ -21,9 +21,9 @@ xchk_btree_cur_fsbno( ...@@ -21,9 +21,9 @@ xchk_btree_cur_fsbno(
struct xfs_btree_cur *cur, struct xfs_btree_cur *cur,
int level) int level)
{ {
if (level < cur->bc_nlevels && cur->bc_bufs[level]) if (level < cur->bc_nlevels && cur->bc_levels[level].bp)
return XFS_DADDR_TO_FSB(cur->bc_mp, return XFS_DADDR_TO_FSB(cur->bc_mp,
xfs_buf_daddr(cur->bc_bufs[level])); xfs_buf_daddr(cur->bc_levels[level].bp));
if (level == cur->bc_nlevels - 1 && if (level == cur->bc_nlevels - 1 &&
(cur->bc_flags & XFS_BTREE_ROOT_IN_INODE)) (cur->bc_flags & XFS_BTREE_ROOT_IN_INODE))
......
...@@ -348,7 +348,7 @@ TRACE_EVENT(xchk_btree_op_error, ...@@ -348,7 +348,7 @@ TRACE_EVENT(xchk_btree_op_error,
__entry->level = level; __entry->level = level;
__entry->agno = XFS_FSB_TO_AGNO(cur->bc_mp, fsbno); __entry->agno = XFS_FSB_TO_AGNO(cur->bc_mp, fsbno);
__entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno); __entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno);
__entry->ptr = cur->bc_ptrs[level]; __entry->ptr = cur->bc_levels[level].ptr;
__entry->error = error; __entry->error = error;
__entry->ret_ip = ret_ip; __entry->ret_ip = ret_ip;
), ),
...@@ -389,7 +389,7 @@ TRACE_EVENT(xchk_ifork_btree_op_error, ...@@ -389,7 +389,7 @@ TRACE_EVENT(xchk_ifork_btree_op_error,
__entry->type = sc->sm->sm_type; __entry->type = sc->sm->sm_type;
__entry->btnum = cur->bc_btnum; __entry->btnum = cur->bc_btnum;
__entry->level = level; __entry->level = level;
__entry->ptr = cur->bc_ptrs[level]; __entry->ptr = cur->bc_levels[level].ptr;
__entry->agno = XFS_FSB_TO_AGNO(cur->bc_mp, fsbno); __entry->agno = XFS_FSB_TO_AGNO(cur->bc_mp, fsbno);
__entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno); __entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno);
__entry->error = error; __entry->error = error;
...@@ -431,7 +431,7 @@ TRACE_EVENT(xchk_btree_error, ...@@ -431,7 +431,7 @@ TRACE_EVENT(xchk_btree_error,
__entry->level = level; __entry->level = level;
__entry->agno = XFS_FSB_TO_AGNO(cur->bc_mp, fsbno); __entry->agno = XFS_FSB_TO_AGNO(cur->bc_mp, fsbno);
__entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno); __entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno);
__entry->ptr = cur->bc_ptrs[level]; __entry->ptr = cur->bc_levels[level].ptr;
__entry->ret_ip = ret_ip; __entry->ret_ip = ret_ip;
), ),
TP_printk("dev %d:%d type %s btree %s level %d ptr %d agno 0x%x agbno 0x%x ret_ip %pS", TP_printk("dev %d:%d type %s btree %s level %d ptr %d agno 0x%x agbno 0x%x ret_ip %pS",
...@@ -471,7 +471,7 @@ TRACE_EVENT(xchk_ifork_btree_error, ...@@ -471,7 +471,7 @@ TRACE_EVENT(xchk_ifork_btree_error,
__entry->level = level; __entry->level = level;
__entry->agno = XFS_FSB_TO_AGNO(cur->bc_mp, fsbno); __entry->agno = XFS_FSB_TO_AGNO(cur->bc_mp, fsbno);
__entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno); __entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno);
__entry->ptr = cur->bc_ptrs[level]; __entry->ptr = cur->bc_levels[level].ptr;
__entry->ret_ip = ret_ip; __entry->ret_ip = ret_ip;
), ),
TP_printk("dev %d:%d ino 0x%llx fork %s type %s btree %s level %d ptr %d agno 0x%x agbno 0x%x ret_ip %pS", TP_printk("dev %d:%d ino 0x%llx fork %s type %s btree %s level %d ptr %d agno 0x%x agbno 0x%x ret_ip %pS",
...@@ -511,7 +511,7 @@ DECLARE_EVENT_CLASS(xchk_sbtree_class, ...@@ -511,7 +511,7 @@ DECLARE_EVENT_CLASS(xchk_sbtree_class,
__entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno); __entry->bno = XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno);
__entry->level = level; __entry->level = level;
__entry->nlevels = cur->bc_nlevels; __entry->nlevels = cur->bc_nlevels;
__entry->ptr = cur->bc_ptrs[level]; __entry->ptr = cur->bc_levels[level].ptr;
), ),
TP_printk("dev %d:%d type %s btree %s agno 0x%x agbno 0x%x level %d nlevels %d ptr %d", TP_printk("dev %d:%d type %s btree %s agno 0x%x agbno 0x%x level %d nlevels %d ptr %d",
MAJOR(__entry->dev), MINOR(__entry->dev), MAJOR(__entry->dev), MINOR(__entry->dev),
......
...@@ -1966,7 +1966,7 @@ xfs_init_zones(void) ...@@ -1966,7 +1966,7 @@ xfs_init_zones(void)
goto out_destroy_log_ticket_zone; goto out_destroy_log_ticket_zone;
xfs_btree_cur_zone = kmem_cache_create("xfs_btree_cur", xfs_btree_cur_zone = kmem_cache_create("xfs_btree_cur",
sizeof(struct xfs_btree_cur), xfs_btree_cur_sizeof(XFS_BTREE_MAXLEVELS),
0, 0, NULL); 0, 0, NULL);
if (!xfs_btree_cur_zone) if (!xfs_btree_cur_zone)
goto out_destroy_bmap_free_item_zone; goto out_destroy_bmap_free_item_zone;
......
...@@ -2476,7 +2476,7 @@ DECLARE_EVENT_CLASS(xfs_btree_cur_class, ...@@ -2476,7 +2476,7 @@ DECLARE_EVENT_CLASS(xfs_btree_cur_class,
__entry->btnum = cur->bc_btnum; __entry->btnum = cur->bc_btnum;
__entry->level = level; __entry->level = level;
__entry->nlevels = cur->bc_nlevels; __entry->nlevels = cur->bc_nlevels;
__entry->ptr = cur->bc_ptrs[level]; __entry->ptr = cur->bc_levels[level].ptr;
__entry->daddr = bp ? xfs_buf_daddr(bp) : -1; __entry->daddr = bp ? xfs_buf_daddr(bp) : -1;
), ),
TP_printk("dev %d:%d btree %s level %d/%d ptr %d daddr 0x%llx", TP_printk("dev %d:%d btree %s level %d/%d ptr %d daddr 0x%llx",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment