xfs: rename btree cursor private btree member flags
BPRV is not longer appropriate because bc_private is going away. Script: $ sed -i 's/BTCUR_BPRV/BTCUR_BMBT/g' fs/xfs/*[ch] fs/xfs/*/*[ch] With manual cleanup to the definitions in fs/xfs/libxfs/xfs_btree.h Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> [darrick: change "BC_BT" to "BTCUR_BMBT", fix subject line typo] Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Brian Foster <bfoster@redhat.com>
This commit is contained in:

committed by
Darrick J. Wong

parent
92219c292a
commit
8ef547976a
@@ -690,7 +690,7 @@ xfs_bmap_extents_to_btree(
|
||||
* Need a cursor. Can't allocate until bb_level is filled in.
|
||||
*/
|
||||
cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
|
||||
cur->bc_ino.flags = wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
|
||||
cur->bc_ino.flags = wasdel ? XFS_BTCUR_BMBT_WASDEL : 0;
|
||||
/*
|
||||
* Convert to a btree with two levels, one record in root.
|
||||
*/
|
||||
@@ -1528,7 +1528,7 @@ xfs_bmap_add_extent_delay_real(
|
||||
|
||||
ASSERT(!isnullstartblock(new->br_startblock));
|
||||
ASSERT(!bma->cur ||
|
||||
(bma->cur->bc_ino.flags & XFS_BTCUR_BPRV_WASDEL));
|
||||
(bma->cur->bc_ino.flags & XFS_BTCUR_BMBT_WASDEL));
|
||||
|
||||
XFS_STATS_INC(mp, xs_add_exlist);
|
||||
|
||||
@@ -2752,7 +2752,7 @@ xfs_bmap_add_extent_hole_real(
|
||||
struct xfs_bmbt_irec old;
|
||||
|
||||
ASSERT(!isnullstartblock(new->br_startblock));
|
||||
ASSERT(!cur || !(cur->bc_ino.flags & XFS_BTCUR_BPRV_WASDEL));
|
||||
ASSERT(!cur || !(cur->bc_ino.flags & XFS_BTCUR_BMBT_WASDEL));
|
||||
|
||||
XFS_STATS_INC(mp, xs_add_exlist);
|
||||
|
||||
@@ -4188,7 +4188,7 @@ xfs_bmapi_allocate(
|
||||
|
||||
if (bma->cur)
|
||||
bma->cur->bc_ino.flags =
|
||||
bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
|
||||
bma->wasdel ? XFS_BTCUR_BMBT_WASDEL : 0;
|
||||
|
||||
bma->got.br_startoff = bma->offset;
|
||||
bma->got.br_startblock = bma->blkno;
|
||||
|
Reference in New Issue
Block a user