From: Dave Chinner Date: Fri, 1 May 2020 21:37:09 +0000 (-0400) Subject: xfs: introduce new private btree cursor names X-Git-Tag: v5.7.0-rc0~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c515fb0b249fd3863c3fb3bc6c12a1402c415602;p=thirdparty%2Fxfsprogs-dev.git xfs: introduce new private btree cursor names Source kernel commit: 7cace18ab576ef65d16498d3a9e2170fff5f5c93 Just the defines of the new names - the conversion will be in scripted commits after this. Signed-off-by: Dave Chinner Reviewed-by: Darrick J. Wong [darrick: change "bc_bt" to "bc_ino"] Signed-off-by: Darrick J. Wong Reviewed-by: Brian Foster Signed-off-by: Eric Sandeen --- diff --git a/libxfs/xfs_btree.h b/libxfs/xfs_btree.h index 8bead7476..887505868 100644 --- a/libxfs/xfs_btree.h +++ b/libxfs/xfs_btree.h @@ -224,6 +224,8 @@ typedef struct xfs_btree_cur #define XFS_BTCUR_BPRV_INVALID_OWNER (1<<1) /* for ext swap */ } b; } bc_private; /* per-btree type data */ +#define bc_ag bc_private.a +#define bc_ino bc_private.b } xfs_btree_cur_t; /* cursor flags */