mirror of https://gitee.com/openkylin/linux.git
xfs: introduce new private btree cursor names
Just the defines of the new names - the conversion will be in scripted commits after this. Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> [darrick: change "bc_bt" to "bc_ino"] Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Brian Foster <bfoster@redhat.com>
This commit is contained in:
parent
3d28e7e278
commit
7cace18ab5
|
@ -224,6 +224,8 @@ typedef struct xfs_btree_cur
|
||||||
#define XFS_BTCUR_BPRV_INVALID_OWNER (1<<1) /* for ext swap */
|
#define XFS_BTCUR_BPRV_INVALID_OWNER (1<<1) /* for ext swap */
|
||||||
} b;
|
} b;
|
||||||
} bc_private; /* per-btree type data */
|
} bc_private; /* per-btree type data */
|
||||||
|
#define bc_ag bc_private.a
|
||||||
|
#define bc_ino bc_private.b
|
||||||
} xfs_btree_cur_t;
|
} xfs_btree_cur_t;
|
||||||
|
|
||||||
/* cursor flags */
|
/* cursor flags */
|
||||||
|
|
Loading…
Reference in New Issue