diff options
author | Darrick J. Wong <djwong@kernel.org> | 2021-09-23 18:36:27 +0200 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-10-19 20:45:13 +0200 |
commit | cc411740472d958b718b9c6a7791ba00d88f7cef (patch) | |
tree | 4069a13475804ac89161752845babafe6d43e0c0 /fs/xfs/libxfs/xfs_btree.h | |
parent | xfs: fix incorrect decoding in xchk_btree_cur_fsbno (diff) | |
download | linux-cc411740472d958b718b9c6a7791ba00d88f7cef.tar.xz linux-cc411740472d958b718b9c6a7791ba00d88f7cef.zip |
xfs: remove xfs_btree_cur.bc_blocklog
This field isn't used by anyone, so get rid of it.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_btree.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_btree.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_btree.h b/fs/xfs/libxfs/xfs_btree.h index 513ade4a89f8..49ecc496238f 100644 --- a/fs/xfs/libxfs/xfs_btree.h +++ b/fs/xfs/libxfs/xfs_btree.h @@ -229,7 +229,6 @@ struct xfs_btree_cur #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_blocklog; /* log2(blocksize) of btree blocks */ xfs_btnum_t bc_btnum; /* identifies which btree type */ int bc_statoff; /* offset of btre stats array */ |