Commit 576af732 authored by Dave Chinner's avatar Dave Chinner Committed by Darrick J. Wong

xfs: convert btree cursor ag-private member name

bc_private.a -> bc_ag conversion via script:

`sed -i 's/bc_private\.a/bc_ag/g' fs/xfs/*[ch] fs/xfs/*/*[ch]`

And then revert the change to the bc_ag #define in
fs/xfs/libxfs/xfs_btree.h manually.
Signed-off-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: default avatarBrian Foster <bfoster@redhat.com>
parent 7cace18a
...@@ -151,7 +151,7 @@ xfs_alloc_lookup_eq( ...@@ -151,7 +151,7 @@ xfs_alloc_lookup_eq(
cur->bc_rec.a.ar_startblock = bno; cur->bc_rec.a.ar_startblock = bno;
cur->bc_rec.a.ar_blockcount = len; cur->bc_rec.a.ar_blockcount = len;
error = xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat); error = xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
cur->bc_private.a.priv.abt.active = (*stat == 1); cur->bc_ag.priv.abt.active = (*stat == 1);
return error; return error;
} }
...@@ -171,7 +171,7 @@ xfs_alloc_lookup_ge( ...@@ -171,7 +171,7 @@ xfs_alloc_lookup_ge(
cur->bc_rec.a.ar_startblock = bno; cur->bc_rec.a.ar_startblock = bno;
cur->bc_rec.a.ar_blockcount = len; cur->bc_rec.a.ar_blockcount = len;
error = xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat); error = xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
cur->bc_private.a.priv.abt.active = (*stat == 1); cur->bc_ag.priv.abt.active = (*stat == 1);
return error; return error;
} }
...@@ -190,7 +190,7 @@ xfs_alloc_lookup_le( ...@@ -190,7 +190,7 @@ xfs_alloc_lookup_le(
cur->bc_rec.a.ar_startblock = bno; cur->bc_rec.a.ar_startblock = bno;
cur->bc_rec.a.ar_blockcount = len; cur->bc_rec.a.ar_blockcount = len;
error = xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat); error = xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat);
cur->bc_private.a.priv.abt.active = (*stat == 1); cur->bc_ag.priv.abt.active = (*stat == 1);
return error; return error;
} }
...@@ -198,7 +198,7 @@ static inline bool ...@@ -198,7 +198,7 @@ static inline bool
xfs_alloc_cur_active( xfs_alloc_cur_active(
struct xfs_btree_cur *cur) struct xfs_btree_cur *cur)
{ {
return cur && cur->bc_private.a.priv.abt.active; return cur && cur->bc_ag.priv.abt.active;
} }
/* /*
...@@ -230,7 +230,7 @@ xfs_alloc_get_rec( ...@@ -230,7 +230,7 @@ xfs_alloc_get_rec(
int *stat) /* output: success/failure */ int *stat) /* output: success/failure */
{ {
struct xfs_mount *mp = cur->bc_mp; struct xfs_mount *mp = cur->bc_mp;
xfs_agnumber_t agno = cur->bc_private.a.agno; xfs_agnumber_t agno = cur->bc_ag.agno;
union xfs_btree_rec *rec; union xfs_btree_rec *rec;
int error; int error;
...@@ -908,7 +908,7 @@ xfs_alloc_cur_check( ...@@ -908,7 +908,7 @@ xfs_alloc_cur_check(
deactivate = true; deactivate = true;
out: out:
if (deactivate) if (deactivate)
cur->bc_private.a.priv.abt.active = false; cur->bc_ag.priv.abt.active = false;
trace_xfs_alloc_cur_check(args->mp, cur->bc_btnum, bno, len, diff, trace_xfs_alloc_cur_check(args->mp, cur->bc_btnum, bno, len, diff,
*new); *new);
return 0; return 0;
...@@ -1352,7 +1352,7 @@ xfs_alloc_walk_iter( ...@@ -1352,7 +1352,7 @@ xfs_alloc_walk_iter(
if (error) if (error)
return error; return error;
if (i == 0) if (i == 0)
cur->bc_private.a.priv.abt.active = false; cur->bc_ag.priv.abt.active = false;
if (count > 0) if (count > 0)
count--; count--;
...@@ -1467,7 +1467,7 @@ xfs_alloc_ag_vextent_locality( ...@@ -1467,7 +1467,7 @@ xfs_alloc_ag_vextent_locality(
if (error) if (error)
return error; return error;
if (i) { if (i) {
acur->cnt->bc_private.a.priv.abt.active = true; acur->cnt->bc_ag.priv.abt.active = true;
fbcur = acur->cnt; fbcur = acur->cnt;
fbinc = false; fbinc = false;
} }
......
...@@ -25,7 +25,7 @@ xfs_allocbt_dup_cursor( ...@@ -25,7 +25,7 @@ xfs_allocbt_dup_cursor(
struct xfs_btree_cur *cur) struct xfs_btree_cur *cur)
{ {
return xfs_allocbt_init_cursor(cur->bc_mp, cur->bc_tp, return xfs_allocbt_init_cursor(cur->bc_mp, cur->bc_tp,
cur->bc_private.a.agbp, cur->bc_private.a.agno, cur->bc_ag.agbp, cur->bc_ag.agno,
cur->bc_btnum); cur->bc_btnum);
} }
...@@ -35,7 +35,7 @@ xfs_allocbt_set_root( ...@@ -35,7 +35,7 @@ xfs_allocbt_set_root(
union xfs_btree_ptr *ptr, union xfs_btree_ptr *ptr,
int inc) int inc)
{ {
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agf *agf = agbp->b_addr; struct xfs_agf *agf = agbp->b_addr;
xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno); xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno);
int btnum = cur->bc_btnum; int btnum = cur->bc_btnum;
...@@ -62,7 +62,7 @@ xfs_allocbt_alloc_block( ...@@ -62,7 +62,7 @@ xfs_allocbt_alloc_block(
xfs_agblock_t bno; xfs_agblock_t bno;
/* Allocate the new block from the freelist. If we can't, give up. */ /* Allocate the new block from the freelist. If we can't, give up. */
error = xfs_alloc_get_freelist(cur->bc_tp, cur->bc_private.a.agbp, error = xfs_alloc_get_freelist(cur->bc_tp, cur->bc_ag.agbp,
&bno, 1); &bno, 1);
if (error) if (error)
return error; return error;
...@@ -72,7 +72,7 @@ xfs_allocbt_alloc_block( ...@@ -72,7 +72,7 @@ xfs_allocbt_alloc_block(
return 0; return 0;
} }
xfs_extent_busy_reuse(cur->bc_mp, cur->bc_private.a.agno, bno, 1, false); xfs_extent_busy_reuse(cur->bc_mp, cur->bc_ag.agno, bno, 1, false);
xfs_trans_agbtree_delta(cur->bc_tp, 1); xfs_trans_agbtree_delta(cur->bc_tp, 1);
new->s = cpu_to_be32(bno); new->s = cpu_to_be32(bno);
...@@ -86,7 +86,7 @@ xfs_allocbt_free_block( ...@@ -86,7 +86,7 @@ xfs_allocbt_free_block(
struct xfs_btree_cur *cur, struct xfs_btree_cur *cur,
struct xfs_buf *bp) struct xfs_buf *bp)
{ {
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agf *agf = agbp->b_addr; struct xfs_agf *agf = agbp->b_addr;
xfs_agblock_t bno; xfs_agblock_t bno;
int error; int error;
...@@ -113,7 +113,7 @@ xfs_allocbt_update_lastrec( ...@@ -113,7 +113,7 @@ xfs_allocbt_update_lastrec(
int ptr, int ptr,
int reason) int reason)
{ {
struct xfs_agf *agf = cur->bc_private.a.agbp->b_addr; struct xfs_agf *agf = cur->bc_ag.agbp->b_addr;
xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno); xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno);
struct xfs_perag *pag; struct xfs_perag *pag;
__be32 len; __be32 len;
...@@ -162,7 +162,7 @@ xfs_allocbt_update_lastrec( ...@@ -162,7 +162,7 @@ xfs_allocbt_update_lastrec(
pag = xfs_perag_get(cur->bc_mp, seqno); pag = xfs_perag_get(cur->bc_mp, seqno);
pag->pagf_longest = be32_to_cpu(len); pag->pagf_longest = be32_to_cpu(len);
xfs_perag_put(pag); xfs_perag_put(pag);
xfs_alloc_log_agf(cur->bc_tp, cur->bc_private.a.agbp, XFS_AGF_LONGEST); xfs_alloc_log_agf(cur->bc_tp, cur->bc_ag.agbp, XFS_AGF_LONGEST);
} }
STATIC int STATIC int
...@@ -226,9 +226,9 @@ xfs_allocbt_init_ptr_from_cur( ...@@ -226,9 +226,9 @@ xfs_allocbt_init_ptr_from_cur(
struct xfs_btree_cur *cur, struct xfs_btree_cur *cur,
union xfs_btree_ptr *ptr) union xfs_btree_ptr *ptr)
{ {
struct xfs_agf *agf = cur->bc_private.a.agbp->b_addr; struct xfs_agf *agf = cur->bc_ag.agbp->b_addr;
ASSERT(cur->bc_private.a.agno == be32_to_cpu(agf->agf_seqno)); ASSERT(cur->bc_ag.agno == be32_to_cpu(agf->agf_seqno));
ptr->s = agf->agf_roots[cur->bc_btnum]; ptr->s = agf->agf_roots[cur->bc_btnum];
} }
...@@ -505,9 +505,9 @@ xfs_allocbt_init_cursor( ...@@ -505,9 +505,9 @@ xfs_allocbt_init_cursor(
cur->bc_nlevels = be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]); cur->bc_nlevels = be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]);
} }
cur->bc_private.a.agbp = agbp; cur->bc_ag.agbp = agbp;
cur->bc_private.a.agno = agno; cur->bc_ag.agno = agno;
cur->bc_private.a.priv.abt.active = false; cur->bc_ag.priv.abt.active = false;
if (xfs_sb_version_hascrc(&mp->m_sb)) if (xfs_sb_version_hascrc(&mp->m_sb))
cur->bc_flags |= XFS_BTREE_CRC_BLOCKS; cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
......
...@@ -214,7 +214,7 @@ xfs_btree_check_sptr( ...@@ -214,7 +214,7 @@ xfs_btree_check_sptr(
{ {
if (level <= 0) if (level <= 0)
return false; return false;
return xfs_verify_agbno(cur->bc_mp, cur->bc_private.a.agno, agbno); return xfs_verify_agbno(cur->bc_mp, cur->bc_ag.agno, agbno);
} }
/* /*
...@@ -243,7 +243,7 @@ xfs_btree_check_ptr( ...@@ -243,7 +243,7 @@ xfs_btree_check_ptr(
return 0; return 0;
xfs_err(cur->bc_mp, xfs_err(cur->bc_mp,
"AG %u: Corrupt btree %d pointer at level %d index %d.", "AG %u: Corrupt btree %d pointer at level %d index %d.",
cur->bc_private.a.agno, cur->bc_btnum, cur->bc_ag.agno, cur->bc_btnum,
level, index); level, index);
} }
...@@ -881,13 +881,13 @@ xfs_btree_readahead_sblock( ...@@ -881,13 +881,13 @@ xfs_btree_readahead_sblock(
if ((lr & XFS_BTCUR_LEFTRA) && left != NULLAGBLOCK) { if ((lr & XFS_BTCUR_LEFTRA) && left != NULLAGBLOCK) {
xfs_btree_reada_bufs(cur->bc_mp, cur->bc_private.a.agno, xfs_btree_reada_bufs(cur->bc_mp, cur->bc_ag.agno,
left, 1, cur->bc_ops->buf_ops); left, 1, cur->bc_ops->buf_ops);
rval++; rval++;
} }
if ((lr & XFS_BTCUR_RIGHTRA) && right != NULLAGBLOCK) { if ((lr & XFS_BTCUR_RIGHTRA) && right != NULLAGBLOCK) {
xfs_btree_reada_bufs(cur->bc_mp, cur->bc_private.a.agno, xfs_btree_reada_bufs(cur->bc_mp, cur->bc_ag.agno,
right, 1, cur->bc_ops->buf_ops); right, 1, cur->bc_ops->buf_ops);
rval++; rval++;
} }
...@@ -945,7 +945,7 @@ xfs_btree_ptr_to_daddr( ...@@ -945,7 +945,7 @@ xfs_btree_ptr_to_daddr(
*daddr = XFS_FSB_TO_DADDR(cur->bc_mp, fsbno); *daddr = XFS_FSB_TO_DADDR(cur->bc_mp, fsbno);
} else { } else {
agbno = be32_to_cpu(ptr->s); agbno = be32_to_cpu(ptr->s);
*daddr = XFS_AGB_TO_DADDR(cur->bc_mp, cur->bc_private.a.agno, *daddr = XFS_AGB_TO_DADDR(cur->bc_mp, cur->bc_ag.agno,
agbno); agbno);
} }
...@@ -1146,7 +1146,7 @@ xfs_btree_init_block_cur( ...@@ -1146,7 +1146,7 @@ xfs_btree_init_block_cur(
if (cur->bc_flags & XFS_BTREE_LONG_PTRS) if (cur->bc_flags & XFS_BTREE_LONG_PTRS)
owner = cur->bc_private.b.ip->i_ino; owner = cur->bc_private.b.ip->i_ino;
else else
owner = cur->bc_private.a.agno; owner = cur->bc_ag.agno;
xfs_btree_init_block_int(cur->bc_mp, XFS_BUF_TO_BLOCK(bp), bp->b_bn, xfs_btree_init_block_int(cur->bc_mp, XFS_BUF_TO_BLOCK(bp), bp->b_bn,
cur->bc_btnum, level, numrecs, cur->bc_btnum, level, numrecs,
......
...@@ -105,7 +105,7 @@ xfs_inobt_get_rec( ...@@ -105,7 +105,7 @@ xfs_inobt_get_rec(
int *stat) int *stat)
{ {
struct xfs_mount *mp = cur->bc_mp; struct xfs_mount *mp = cur->bc_mp;
xfs_agnumber_t agno = cur->bc_private.a.agno; xfs_agnumber_t agno = cur->bc_ag.agno;
union xfs_btree_rec *rec; union xfs_btree_rec *rec;
int error; int error;
uint64_t realfree; uint64_t realfree;
......
...@@ -34,7 +34,7 @@ xfs_inobt_dup_cursor( ...@@ -34,7 +34,7 @@ xfs_inobt_dup_cursor(
struct xfs_btree_cur *cur) struct xfs_btree_cur *cur)
{ {
return xfs_inobt_init_cursor(cur->bc_mp, cur->bc_tp, return xfs_inobt_init_cursor(cur->bc_mp, cur->bc_tp,
cur->bc_private.a.agbp, cur->bc_private.a.agno, cur->bc_ag.agbp, cur->bc_ag.agno,
cur->bc_btnum); cur->bc_btnum);
} }
...@@ -44,7 +44,7 @@ xfs_inobt_set_root( ...@@ -44,7 +44,7 @@ xfs_inobt_set_root(
union xfs_btree_ptr *nptr, union xfs_btree_ptr *nptr,
int inc) /* level change */ int inc) /* level change */
{ {
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agi *agi = agbp->b_addr; struct xfs_agi *agi = agbp->b_addr;
agi->agi_root = nptr->s; agi->agi_root = nptr->s;
...@@ -58,7 +58,7 @@ xfs_finobt_set_root( ...@@ -58,7 +58,7 @@ xfs_finobt_set_root(
union xfs_btree_ptr *nptr, union xfs_btree_ptr *nptr,
int inc) /* level change */ int inc) /* level change */
{ {
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agi *agi = agbp->b_addr; struct xfs_agi *agi = agbp->b_addr;
agi->agi_free_root = nptr->s; agi->agi_free_root = nptr->s;
...@@ -83,7 +83,7 @@ __xfs_inobt_alloc_block( ...@@ -83,7 +83,7 @@ __xfs_inobt_alloc_block(
args.tp = cur->bc_tp; args.tp = cur->bc_tp;
args.mp = cur->bc_mp; args.mp = cur->bc_mp;
args.oinfo = XFS_RMAP_OINFO_INOBT; args.oinfo = XFS_RMAP_OINFO_INOBT;
args.fsbno = XFS_AGB_TO_FSB(args.mp, cur->bc_private.a.agno, sbno); args.fsbno = XFS_AGB_TO_FSB(args.mp, cur->bc_ag.agno, sbno);
args.minlen = 1; args.minlen = 1;
args.maxlen = 1; args.maxlen = 1;
args.prod = 1; args.prod = 1;
...@@ -212,9 +212,9 @@ xfs_inobt_init_ptr_from_cur( ...@@ -212,9 +212,9 @@ xfs_inobt_init_ptr_from_cur(
struct xfs_btree_cur *cur, struct xfs_btree_cur *cur,
union xfs_btree_ptr *ptr) union xfs_btree_ptr *ptr)
{ {
struct xfs_agi *agi = cur->bc_private.a.agbp->b_addr; struct xfs_agi *agi = cur->bc_ag.agbp->b_addr;
ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno)); ASSERT(cur->bc_ag.agno == be32_to_cpu(agi->agi_seqno));
ptr->s = agi->agi_root; ptr->s = agi->agi_root;
} }
...@@ -224,9 +224,9 @@ xfs_finobt_init_ptr_from_cur( ...@@ -224,9 +224,9 @@ xfs_finobt_init_ptr_from_cur(
struct xfs_btree_cur *cur, struct xfs_btree_cur *cur,
union xfs_btree_ptr *ptr) union xfs_btree_ptr *ptr)
{ {
struct xfs_agi *agi = cur->bc_private.a.agbp->b_addr; struct xfs_agi *agi = cur->bc_ag.agbp->b_addr;
ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno)); ASSERT(cur->bc_ag.agno == be32_to_cpu(agi->agi_seqno));
ptr->s = agi->agi_free_root; ptr->s = agi->agi_free_root;
} }
...@@ -433,8 +433,8 @@ xfs_inobt_init_cursor( ...@@ -433,8 +433,8 @@ xfs_inobt_init_cursor(
if (xfs_sb_version_hascrc(&mp->m_sb)) if (xfs_sb_version_hascrc(&mp->m_sb))
cur->bc_flags |= XFS_BTREE_CRC_BLOCKS; cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
cur->bc_private.a.agbp = agbp; cur->bc_ag.agbp = agbp;
cur->bc_private.a.agno = agno; cur->bc_ag.agno = agno;
return cur; return cur;
} }
......
...@@ -46,7 +46,7 @@ xfs_refcount_lookup_le( ...@@ -46,7 +46,7 @@ xfs_refcount_lookup_le(
xfs_agblock_t bno, xfs_agblock_t bno,
int *stat) int *stat)
{ {
trace_xfs_refcount_lookup(cur->bc_mp, cur->bc_private.a.agno, bno, trace_xfs_refcount_lookup(cur->bc_mp, cur->bc_ag.agno, bno,
XFS_LOOKUP_LE); XFS_LOOKUP_LE);
cur->bc_rec.rc.rc_startblock = bno; cur->bc_rec.rc.rc_startblock = bno;
cur->bc_rec.rc.rc_blockcount = 0; cur->bc_rec.rc.rc_blockcount = 0;
...@@ -63,7 +63,7 @@ xfs_refcount_lookup_ge( ...@@ -63,7 +63,7 @@ xfs_refcount_lookup_ge(
xfs_agblock_t bno, xfs_agblock_t bno,
int *stat) int *stat)
{ {
trace_xfs_refcount_lookup(cur->bc_mp, cur->bc_private.a.agno, bno, trace_xfs_refcount_lookup(cur->bc_mp, cur->bc_ag.agno, bno,
XFS_LOOKUP_GE); XFS_LOOKUP_GE);
cur->bc_rec.rc.rc_startblock = bno; cur->bc_rec.rc.rc_startblock = bno;
cur->bc_rec.rc.rc_blockcount = 0; cur->bc_rec.rc.rc_blockcount = 0;
...@@ -80,7 +80,7 @@ xfs_refcount_lookup_eq( ...@@ -80,7 +80,7 @@ xfs_refcount_lookup_eq(
xfs_agblock_t bno, xfs_agblock_t bno,
int *stat) int *stat)
{ {
trace_xfs_refcount_lookup(cur->bc_mp, cur->bc_private.a.agno, bno, trace_xfs_refcount_lookup(cur->bc_mp, cur->bc_ag.agno, bno,
XFS_LOOKUP_LE); XFS_LOOKUP_LE);
cur->bc_rec.rc.rc_startblock = bno; cur->bc_rec.rc.rc_startblock = bno;
cur->bc_rec.rc.rc_blockcount = 0; cur->bc_rec.rc.rc_blockcount = 0;
...@@ -108,7 +108,7 @@ xfs_refcount_get_rec( ...@@ -108,7 +108,7 @@ xfs_refcount_get_rec(
int *stat) int *stat)
{ {
struct xfs_mount *mp = cur->bc_mp; struct xfs_mount *mp = cur->bc_mp;
xfs_agnumber_t agno = cur->bc_private.a.agno; xfs_agnumber_t agno = cur->bc_ag.agno;
union xfs_btree_rec *rec; union xfs_btree_rec *rec;
int error; int error;
xfs_agblock_t realstart; xfs_agblock_t realstart;
...@@ -119,7 +119,7 @@ xfs_refcount_get_rec( ...@@ -119,7 +119,7 @@ xfs_refcount_get_rec(
xfs_refcount_btrec_to_irec(rec, irec); xfs_refcount_btrec_to_irec(rec, irec);
agno = cur->bc_private.a.agno; agno = cur->bc_ag.agno;
if (irec->rc_blockcount == 0 || irec->rc_blockcount > MAXREFCEXTLEN) if (irec->rc_blockcount == 0 || irec->rc_blockcount > MAXREFCEXTLEN)
goto out_bad_rec; goto out_bad_rec;
...@@ -144,7 +144,7 @@ xfs_refcount_get_rec( ...@@ -144,7 +144,7 @@ xfs_refcount_get_rec(
if (irec->rc_refcount == 0 || irec->rc_refcount > MAXREFCOUNT) if (irec->rc_refcount == 0 || irec->rc_refcount > MAXREFCOUNT)
goto out_bad_rec; goto out_bad_rec;
trace_xfs_refcount_get(cur->bc_mp, cur->bc_private.a.agno, irec); trace_xfs_refcount_get(cur->bc_mp, cur->bc_ag.agno, irec);
return 0; return 0;
out_bad_rec: out_bad_rec:
...@@ -169,14 +169,14 @@ xfs_refcount_update( ...@@ -169,14 +169,14 @@ xfs_refcount_update(
union xfs_btree_rec rec; union xfs_btree_rec rec;
int error; int error;
trace_xfs_refcount_update(cur->bc_mp, cur->bc_private.a.agno, irec); trace_xfs_refcount_update(cur->bc_mp, cur->bc_ag.agno, irec);
rec.refc.rc_startblock = cpu_to_be32(irec->rc_startblock); rec.refc.rc_startblock = cpu_to_be32(irec->rc_startblock);
rec.refc.rc_blockcount = cpu_to_be32(irec->rc_blockcount); rec.refc.rc_blockcount = cpu_to_be32(irec->rc_blockcount);
rec.refc.rc_refcount = cpu_to_be32(irec->rc_refcount); rec.refc.rc_refcount = cpu_to_be32(irec->rc_refcount);
error = xfs_btree_update(cur, &rec); error = xfs_btree_update(cur, &rec);
if (error) if (error)
trace_xfs_refcount_update_error(cur->bc_mp, trace_xfs_refcount_update_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -193,7 +193,7 @@ xfs_refcount_insert( ...@@ -193,7 +193,7 @@ xfs_refcount_insert(
{ {
int error; int error;
trace_xfs_refcount_insert(cur->bc_mp, cur->bc_private.a.agno, irec); trace_xfs_refcount_insert(cur->bc_mp, cur->bc_ag.agno, irec);
cur->bc_rec.rc.rc_startblock = irec->rc_startblock; cur->bc_rec.rc.rc_startblock = irec->rc_startblock;
cur->bc_rec.rc.rc_blockcount = irec->rc_blockcount; cur->bc_rec.rc.rc_blockcount = irec->rc_blockcount;
cur->bc_rec.rc.rc_refcount = irec->rc_refcount; cur->bc_rec.rc.rc_refcount = irec->rc_refcount;
...@@ -208,7 +208,7 @@ xfs_refcount_insert( ...@@ -208,7 +208,7 @@ xfs_refcount_insert(
out_error: out_error:
if (error) if (error)
trace_xfs_refcount_insert_error(cur->bc_mp, trace_xfs_refcount_insert_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -234,7 +234,7 @@ xfs_refcount_delete( ...@@ -234,7 +234,7 @@ xfs_refcount_delete(
error = -EFSCORRUPTED; error = -EFSCORRUPTED;
goto out_error; goto out_error;
} }
trace_xfs_refcount_delete(cur->bc_mp, cur->bc_private.a.agno, &irec); trace_xfs_refcount_delete(cur->bc_mp, cur->bc_ag.agno, &irec);
error = xfs_btree_delete(cur, i); error = xfs_btree_delete(cur, i);
if (XFS_IS_CORRUPT(cur->bc_mp, *i != 1)) { if (XFS_IS_CORRUPT(cur->bc_mp, *i != 1)) {
error = -EFSCORRUPTED; error = -EFSCORRUPTED;
...@@ -246,7 +246,7 @@ xfs_refcount_delete( ...@@ -246,7 +246,7 @@ xfs_refcount_delete(
out_error: out_error:
if (error) if (error)
trace_xfs_refcount_delete_error(cur->bc_mp, trace_xfs_refcount_delete_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -366,7 +366,7 @@ xfs_refcount_split_extent( ...@@ -366,7 +366,7 @@ xfs_refcount_split_extent(
return 0; return 0;
*shape_changed = true; *shape_changed = true;
trace_xfs_refcount_split_extent(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcount_split_extent(cur->bc_mp, cur->bc_ag.agno,
&rcext, agbno); &rcext, agbno);
/* Establish the right extent. */ /* Establish the right extent. */
...@@ -391,7 +391,7 @@ xfs_refcount_split_extent( ...@@ -391,7 +391,7 @@ xfs_refcount_split_extent(
out_error: out_error:
trace_xfs_refcount_split_extent_error(cur->bc_mp, trace_xfs_refcount_split_extent_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -411,7 +411,7 @@ xfs_refcount_merge_center_extents( ...@@ -411,7 +411,7 @@ xfs_refcount_merge_center_extents(
int found_rec; int found_rec;
trace_xfs_refcount_merge_center_extents(cur->bc_mp, trace_xfs_refcount_merge_center_extents(cur->bc_mp,
cur->bc_private.a.agno, left, center, right); cur->bc_ag.agno, left, center, right);
/* /*
* Make sure the center and right extents are not in the btree. * Make sure the center and right extents are not in the btree.
...@@ -468,7 +468,7 @@ xfs_refcount_merge_center_extents( ...@@ -468,7 +468,7 @@ xfs_refcount_merge_center_extents(
out_error: out_error:
trace_xfs_refcount_merge_center_extents_error(cur->bc_mp, trace_xfs_refcount_merge_center_extents_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -487,7 +487,7 @@ xfs_refcount_merge_left_extent( ...@@ -487,7 +487,7 @@ xfs_refcount_merge_left_extent(
int found_rec; int found_rec;
trace_xfs_refcount_merge_left_extent(cur->bc_mp, trace_xfs_refcount_merge_left_extent(cur->bc_mp,
cur->bc_private.a.agno, left, cleft); cur->bc_ag.agno, left, cleft);
/* If the extent at agbno (cleft) wasn't synthesized, remove it. */ /* If the extent at agbno (cleft) wasn't synthesized, remove it. */
if (cleft->rc_refcount > 1) { if (cleft->rc_refcount > 1) {
...@@ -530,7 +530,7 @@ xfs_refcount_merge_left_extent( ...@@ -530,7 +530,7 @@ xfs_refcount_merge_left_extent(
out_error: out_error:
trace_xfs_refcount_merge_left_extent_error(cur->bc_mp, trace_xfs_refcount_merge_left_extent_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -548,7 +548,7 @@ xfs_refcount_merge_right_extent( ...@@ -548,7 +548,7 @@ xfs_refcount_merge_right_extent(
int found_rec; int found_rec;
trace_xfs_refcount_merge_right_extent(cur->bc_mp, trace_xfs_refcount_merge_right_extent(cur->bc_mp,
cur->bc_private.a.agno, cright, right); cur->bc_ag.agno, cright, right);
/* /*
* If the extent ending at agbno+aglen (cright) wasn't synthesized, * If the extent ending at agbno+aglen (cright) wasn't synthesized,
...@@ -594,7 +594,7 @@ xfs_refcount_merge_right_extent( ...@@ -594,7 +594,7 @@ xfs_refcount_merge_right_extent(
out_error: out_error:
trace_xfs_refcount_merge_right_extent_error(cur->bc_mp, trace_xfs_refcount_merge_right_extent_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -679,13 +679,13 @@ xfs_refcount_find_left_extents( ...@@ -679,13 +679,13 @@ xfs_refcount_find_left_extents(
cleft->rc_blockcount = aglen; cleft->rc_blockcount = aglen;
cleft->rc_refcount = 1; cleft->rc_refcount = 1;
} }
trace_xfs_refcount_find_left_extent(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcount_find_left_extent(cur->bc_mp, cur->bc_ag.agno,
left, cleft, agbno); left, cleft, agbno);
return error; return error;
out_error: out_error:
trace_xfs_refcount_find_left_extent_error(cur->bc_mp, trace_xfs_refcount_find_left_extent_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -768,13 +768,13 @@ xfs_refcount_find_right_extents( ...@@ -768,13 +768,13 @@ xfs_refcount_find_right_extents(
cright->rc_blockcount = aglen; cright->rc_blockcount = aglen;
cright->rc_refcount = 1; cright->rc_refcount = 1;
} }
trace_xfs_refcount_find_right_extent(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcount_find_right_extent(cur->bc_mp, cur->bc_ag.agno,
cright, right, agbno + aglen); cright, right, agbno + aglen);
return error; return error;
out_error: out_error:
trace_xfs_refcount_find_right_extent_error(cur->bc_mp, trace_xfs_refcount_find_right_extent_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -883,7 +883,7 @@ xfs_refcount_still_have_space( ...@@ -883,7 +883,7 @@ xfs_refcount_still_have_space(
{ {
unsigned long overhead; unsigned long overhead;
overhead = cur->bc_private.a.priv.refc.shape_changes * overhead = cur->bc_ag.priv.refc.shape_changes *
xfs_allocfree_log_count(cur->bc_mp, 1); xfs_allocfree_log_count(cur->bc_mp, 1);
overhead *= cur->bc_mp->m_sb.sb_blocksize; overhead *= cur->bc_mp->m_sb.sb_blocksize;
...@@ -891,17 +891,17 @@ xfs_refcount_still_have_space( ...@@ -891,17 +891,17 @@ xfs_refcount_still_have_space(
* Only allow 2 refcount extent updates per transaction if the * Only allow 2 refcount extent updates per transaction if the
* refcount continue update "error" has been injected. * refcount continue update "error" has been injected.
*/ */
if (cur->bc_private.a.priv.refc.nr_ops > 2 && if (cur->bc_ag.priv.refc.nr_ops > 2 &&
XFS_TEST_ERROR(false, cur->bc_mp, XFS_TEST_ERROR(false, cur->bc_mp,
XFS_ERRTAG_REFCOUNT_CONTINUE_UPDATE)) XFS_ERRTAG_REFCOUNT_CONTINUE_UPDATE))
return false; return false;
if (cur->bc_private.a.priv.refc.nr_ops == 0) if (cur->bc_ag.priv.refc.nr_ops == 0)
return true; return true;
else if (overhead > cur->bc_tp->t_log_res) else if (overhead > cur->bc_tp->t_log_res)
return false; return false;
return cur->bc_tp->t_log_res - overhead > return cur->bc_tp->t_log_res - overhead >
cur->bc_private.a.priv.refc.nr_ops * XFS_REFCOUNT_ITEM_OVERHEAD; cur->bc_ag.priv.refc.nr_ops * XFS_REFCOUNT_ITEM_OVERHEAD;
} }
/* /*
...@@ -952,7 +952,7 @@ xfs_refcount_adjust_extents( ...@@ -952,7 +952,7 @@ xfs_refcount_adjust_extents(
ext.rc_startblock - *agbno); ext.rc_startblock - *agbno);
tmp.rc_refcount = 1 + adj; tmp.rc_refcount = 1 + adj;
trace_xfs_refcount_modify_extent(cur->bc_mp, trace_xfs_refcount_modify_extent(cur->bc_mp,
cur->bc_private.a.agno, &tmp); cur->bc_ag.agno, &tmp);
/* /*
* Either cover the hole (increment) or * Either cover the hole (increment) or
...@@ -968,10 +968,10 @@ xfs_refcount_adjust_extents( ...@@ -968,10 +968,10 @@ xfs_refcount_adjust_extents(
error = -EFSCORRUPTED; error = -EFSCORRUPTED;
goto out_error; goto out_error;
} }
cur->bc_private.a.priv.refc.nr_ops++; cur->bc_ag.priv.refc.nr_ops++;
} else { } else {
fsbno = XFS_AGB_TO_FSB(cur->bc_mp, fsbno = XFS_AGB_TO_FSB(cur->bc_mp,
cur->bc_private.a.agno, cur->bc_ag.agno,
tmp.rc_startblock); tmp.rc_startblock);
xfs_bmap_add_free(cur->bc_tp, fsbno, xfs_bmap_add_free(cur->bc_tp, fsbno,
tmp.rc_blockcount, oinfo); tmp.rc_blockcount, oinfo);
...@@ -998,12 +998,12 @@ xfs_refcount_adjust_extents( ...@@ -998,12 +998,12 @@ xfs_refcount_adjust_extents(
goto skip; goto skip;
ext.rc_refcount += adj; ext.rc_refcount += adj;
trace_xfs_refcount_modify_extent(cur->bc_mp, trace_xfs_refcount_modify_extent(cur->bc_mp,
cur->bc_private.a.agno, &ext); cur->bc_ag.agno, &ext);
if (ext.rc_refcount > 1) { if (ext.rc_refcount > 1) {
error = xfs_refcount_update(cur, &ext); error = xfs_refcount_update(cur, &ext);
if (error) if (error)
goto out_error; goto out_error;
cur->bc_private.a.priv.refc.nr_ops++; cur->bc_ag.priv.refc.nr_ops++;
} else if (ext.rc_refcount == 1) { } else if (ext.rc_refcount == 1) {
error = xfs_refcount_delete(cur, &found_rec); error = xfs_refcount_delete(cur, &found_rec);
if (error) if (error)
...@@ -1012,11 +1012,11 @@ xfs_refcount_adjust_extents( ...@@ -1012,11 +1012,11 @@ xfs_refcount_adjust_extents(
error = -EFSCORRUPTED; error = -EFSCORRUPTED;
goto out_error; goto out_error;
} }
cur->bc_private.a.priv.refc.nr_ops++; cur->bc_ag.priv.refc.nr_ops++;
goto advloop; goto advloop;
} else { } else {
fsbno = XFS_AGB_TO_FSB(cur->bc_mp, fsbno = XFS_AGB_TO_FSB(cur->bc_mp,
cur->bc_private.a.agno, cur->bc_ag.agno,
ext.rc_startblock); ext.rc_startblock);
xfs_bmap_add_free(cur->bc_tp, fsbno, ext.rc_blockcount, xfs_bmap_add_free(cur->bc_tp, fsbno, ext.rc_blockcount,
oinfo); oinfo);
...@@ -1035,7 +1035,7 @@ xfs_refcount_adjust_extents( ...@@ -1035,7 +1035,7 @@ xfs_refcount_adjust_extents(
return error; return error;
out_error: out_error:
trace_xfs_refcount_modify_extent_error(cur->bc_mp, trace_xfs_refcount_modify_extent_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -1057,10 +1057,10 @@ xfs_refcount_adjust( ...@@ -1057,10 +1057,10 @@ xfs_refcount_adjust(
*new_agbno = agbno; *new_agbno = agbno;
*new_aglen = aglen; *new_aglen = aglen;
if (adj == XFS_REFCOUNT_ADJUST_INCREASE) if (adj == XFS_REFCOUNT_ADJUST_INCREASE)
trace_xfs_refcount_increase(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcount_increase(cur->bc_mp, cur->bc_ag.agno,
agbno, aglen); agbno, aglen);
else else
trace_xfs_refcount_decrease(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcount_decrease(cur->bc_mp, cur->bc_ag.agno,
agbno, aglen); agbno, aglen);
/* /*
...@@ -1088,7 +1088,7 @@ xfs_refcount_adjust( ...@@ -1088,7 +1088,7 @@ xfs_refcount_adjust(
if (shape_changed) if (shape_changed)
shape_changes++; shape_changes++;
if (shape_changes) if (shape_changes)
cur->bc_private.a.priv.refc.shape_changes++; cur->bc_ag.priv.refc.shape_changes++;
/* Now that we've taken care of the ends, adjust the middle extents */ /* Now that we've taken care of the ends, adjust the middle extents */
error = xfs_refcount_adjust_extents(cur, new_agbno, new_aglen, error = xfs_refcount_adjust_extents(cur, new_agbno, new_aglen,
...@@ -1099,7 +1099,7 @@ xfs_refcount_adjust( ...@@ -1099,7 +1099,7 @@ xfs_refcount_adjust(
return 0; return 0;
out_error: out_error:
trace_xfs_refcount_adjust_error(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcount_adjust_error(cur->bc_mp, cur->bc_ag.agno,
error, _RET_IP_); error, _RET_IP_);
return error; return error;
} }
...@@ -1115,7 +1115,7 @@ xfs_refcount_finish_one_cleanup( ...@@ -1115,7 +1115,7 @@ xfs_refcount_finish_one_cleanup(
if (rcur == NULL) if (rcur == NULL)
return; return;
agbp = rcur->bc_private.a.agbp; agbp = rcur->bc_ag.agbp;
xfs_btree_del_cursor(rcur, error); xfs_btree_del_cursor(rcur, error);
if (error) if (error)
xfs_trans_brelse(tp, agbp); xfs_trans_brelse(tp, agbp);
...@@ -1165,9 +1165,9 @@ xfs_refcount_finish_one( ...@@ -1165,9 +1165,9 @@ xfs_refcount_finish_one(
* the startblock, get one now. * the startblock, get one now.
*/ */
rcur = *pcur; rcur = *pcur;
if (rcur != NULL && rcur->bc_private.a.agno != agno) { if (rcur != NULL && rcur->bc_ag.agno != agno) {
nr_ops = rcur->bc_private.a.priv.refc.nr_ops; nr_ops = rcur->bc_ag.priv.refc.nr_ops;
shape_changes = rcur->bc_private.a.priv.refc.shape_changes; shape_changes = rcur->bc_ag.priv.refc.shape_changes;
xfs_refcount_finish_one_cleanup(tp, rcur, 0); xfs_refcount_finish_one_cleanup(tp, rcur, 0);
rcur = NULL; rcur = NULL;
*pcur = NULL; *pcur = NULL;
...@@ -1183,8 +1183,8 @@ xfs_refcount_finish_one( ...@@ -1183,8 +1183,8 @@ xfs_refcount_finish_one(
error = -ENOMEM; error = -ENOMEM;
goto out_cur; goto out_cur;
} }
rcur->bc_private.a.priv.refc.nr_ops = nr_ops; rcur->bc_ag.priv.refc.nr_ops = nr_ops;
rcur->bc_private.a.priv.refc.shape_changes = shape_changes; rcur->bc_ag.priv.refc.shape_changes = shape_changes;
} }
*pcur = rcur; *pcur = rcur;
...@@ -1303,7 +1303,7 @@ xfs_refcount_find_shared( ...@@ -1303,7 +1303,7 @@ xfs_refcount_find_shared(
int have; int have;
int error; int error;
trace_xfs_refcount_find_shared(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcount_find_shared(cur->bc_mp, cur->bc_ag.agno,
agbno, aglen); agbno, aglen);
/* By default, skip the whole range */ /* By default, skip the whole range */
...@@ -1383,12 +1383,12 @@ xfs_refcount_find_shared( ...@@ -1383,12 +1383,12 @@ xfs_refcount_find_shared(
done: done:
trace_xfs_refcount_find_shared_result(cur->bc_mp, trace_xfs_refcount_find_shared_result(cur->bc_mp,
cur->bc_private.a.agno, *fbno, *flen); cur->bc_ag.agno, *fbno, *flen);
out_error: out_error:
if (error) if (error)
trace_xfs_refcount_find_shared_error(cur->bc_mp, trace_xfs_refcount_find_shared_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -1485,7 +1485,7 @@ xfs_refcount_adjust_cow_extents( ...@@ -1485,7 +1485,7 @@ xfs_refcount_adjust_cow_extents(
tmp.rc_blockcount = aglen; tmp.rc_blockcount = aglen;
tmp.rc_refcount = 1; tmp.rc_refcount = 1;
trace_xfs_refcount_modify_extent(cur->bc_mp, trace_xfs_refcount_modify_extent(cur->bc_mp,
cur->bc_private.a.agno, &tmp); cur->bc_ag.agno, &tmp);
error = xfs_refcount_insert(cur, &tmp, error = xfs_refcount_insert(cur, &tmp,
&found_tmp); &found_tmp);
...@@ -1513,7 +1513,7 @@ xfs_refcount_adjust_cow_extents( ...@@ -1513,7 +1513,7 @@ xfs_refcount_adjust_cow_extents(
ext.rc_refcount = 0; ext.rc_refcount = 0;
trace_xfs_refcount_modify_extent(cur->bc_mp, trace_xfs_refcount_modify_extent(cur->bc_mp,
cur->bc_private.a.agno, &ext); cur->bc_ag.agno, &ext);
error = xfs_refcount_delete(cur, &found_rec); error = xfs_refcount_delete(cur, &found_rec);
if (error) if (error)
goto out_error; goto out_error;
...@@ -1529,7 +1529,7 @@ xfs_refcount_adjust_cow_extents( ...@@ -1529,7 +1529,7 @@ xfs_refcount_adjust_cow_extents(
return error; return error;
out_error: out_error:
trace_xfs_refcount_modify_extent_error(cur->bc_mp, trace_xfs_refcount_modify_extent_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -1575,7 +1575,7 @@ xfs_refcount_adjust_cow( ...@@ -1575,7 +1575,7 @@ xfs_refcount_adjust_cow(
return 0; return 0;
out_error: out_error:
trace_xfs_refcount_adjust_cow_error(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcount_adjust_cow_error(cur->bc_mp, cur->bc_ag.agno,
error, _RET_IP_); error, _RET_IP_);
return error; return error;
} }
...@@ -1589,7 +1589,7 @@ __xfs_refcount_cow_alloc( ...@@ -1589,7 +1589,7 @@ __xfs_refcount_cow_alloc(
xfs_agblock_t agbno, xfs_agblock_t agbno,
xfs_extlen_t aglen) xfs_extlen_t aglen)
{ {
trace_xfs_refcount_cow_increase(rcur->bc_mp, rcur->bc_private.a.agno, trace_xfs_refcount_cow_increase(rcur->bc_mp, rcur->bc_ag.agno,
agbno, aglen); agbno, aglen);
/* Add refcount btree reservation */ /* Add refcount btree reservation */
...@@ -1606,7 +1606,7 @@ __xfs_refcount_cow_free( ...@@ -1606,7 +1606,7 @@ __xfs_refcount_cow_free(
xfs_agblock_t agbno, xfs_agblock_t agbno,
xfs_extlen_t aglen) xfs_extlen_t aglen)
{ {
trace_xfs_refcount_cow_decrease(rcur->bc_mp, rcur->bc_private.a.agno, trace_xfs_refcount_cow_decrease(rcur->bc_mp, rcur->bc_ag.agno,
agbno, aglen); agbno, aglen);
/* Remove refcount btree reservation */ /* Remove refcount btree reservation */
......
...@@ -25,7 +25,7 @@ xfs_refcountbt_dup_cursor( ...@@ -25,7 +25,7 @@ xfs_refcountbt_dup_cursor(
struct xfs_btree_cur *cur) struct xfs_btree_cur *cur)
{ {
return xfs_refcountbt_init_cursor(cur->bc_mp, cur->bc_tp, return xfs_refcountbt_init_cursor(cur->bc_mp, cur->bc_tp,
cur->bc_private.a.agbp, cur->bc_private.a.agno); cur->bc_ag.agbp, cur->bc_ag.agno);
} }
STATIC void STATIC void
...@@ -34,7 +34,7 @@ xfs_refcountbt_set_root( ...@@ -34,7 +34,7 @@ xfs_refcountbt_set_root(
union xfs_btree_ptr *ptr, union xfs_btree_ptr *ptr,
int inc) int inc)
{ {
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agf *agf = agbp->b_addr; struct xfs_agf *agf = agbp->b_addr;
xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno); xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno);
struct xfs_perag *pag = xfs_perag_get(cur->bc_mp, seqno); struct xfs_perag *pag = xfs_perag_get(cur->bc_mp, seqno);
...@@ -57,7 +57,7 @@ xfs_refcountbt_alloc_block( ...@@ -57,7 +57,7 @@ xfs_refcountbt_alloc_block(
union xfs_btree_ptr *new, union xfs_btree_ptr *new,
int *stat) int *stat)
{ {
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agf *agf = agbp->b_addr; struct xfs_agf *agf = agbp->b_addr;
struct xfs_alloc_arg args; /* block allocation args */ struct xfs_alloc_arg args; /* block allocation args */
int error; /* error return value */ int error; /* error return value */
...@@ -66,7 +66,7 @@ xfs_refcountbt_alloc_block( ...@@ -66,7 +66,7 @@ xfs_refcountbt_alloc_block(
args.tp = cur->bc_tp; args.tp = cur->bc_tp;
args.mp = cur->bc_mp; args.mp = cur->bc_mp;
args.type = XFS_ALLOCTYPE_NEAR_BNO; args.type = XFS_ALLOCTYPE_NEAR_BNO;
args.fsbno = XFS_AGB_TO_FSB(cur->bc_mp, cur->bc_private.a.agno, args.fsbno = XFS_AGB_TO_FSB(cur->bc_mp, cur->bc_ag.agno,
xfs_refc_block(args.mp)); xfs_refc_block(args.mp));
args.oinfo = XFS_RMAP_OINFO_REFC; args.oinfo = XFS_RMAP_OINFO_REFC;
args.minlen = args.maxlen = args.prod = 1; args.minlen = args.maxlen = args.prod = 1;
...@@ -75,13 +75,13 @@ xfs_refcountbt_alloc_block( ...@@ -75,13 +75,13 @@ xfs_refcountbt_alloc_block(
error = xfs_alloc_vextent(&args); error = xfs_alloc_vextent(&args);
if (error) if (error)
goto out_error; goto out_error;
trace_xfs_refcountbt_alloc_block(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcountbt_alloc_block(cur->bc_mp, cur->bc_ag.agno,
args.agbno, 1); args.agbno, 1);
if (args.fsbno == NULLFSBLOCK) { if (args.fsbno == NULLFSBLOCK) {
*stat = 0; *stat = 0;
return 0; return 0;
} }
ASSERT(args.agno == cur->bc_private.a.agno); ASSERT(args.agno == cur->bc_ag.agno);
ASSERT(args.len == 1); ASSERT(args.len == 1);
new->s = cpu_to_be32(args.agbno); new->s = cpu_to_be32(args.agbno);
...@@ -101,12 +101,12 @@ xfs_refcountbt_free_block( ...@@ -101,12 +101,12 @@ xfs_refcountbt_free_block(
struct xfs_buf *bp) struct xfs_buf *bp)
{ {
struct xfs_mount *mp = cur->bc_mp; struct xfs_mount *mp = cur->bc_mp;
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agf *agf = agbp->b_addr; struct xfs_agf *agf = agbp->b_addr;
xfs_fsblock_t fsbno = XFS_DADDR_TO_FSB(mp, XFS_BUF_ADDR(bp)); xfs_fsblock_t fsbno = XFS_DADDR_TO_FSB(mp, XFS_BUF_ADDR(bp));
int error; int error;
trace_xfs_refcountbt_free_block(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_refcountbt_free_block(cur->bc_mp, cur->bc_ag.agno,
XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno), 1); XFS_FSB_TO_AGBNO(cur->bc_mp, fsbno), 1);
be32_add_cpu(&agf->agf_refcount_blocks, -1); be32_add_cpu(&agf->agf_refcount_blocks, -1);
xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_REFCOUNT_BLOCKS); xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_REFCOUNT_BLOCKS);
...@@ -169,9 +169,9 @@ xfs_refcountbt_init_ptr_from_cur( ...@@ -169,9 +169,9 @@ xfs_refcountbt_init_ptr_from_cur(
struct xfs_btree_cur *cur, struct xfs_btree_cur *cur,
union xfs_btree_ptr *ptr) union xfs_btree_ptr *ptr)
{ {
struct xfs_agf *agf = cur->bc_private.a.agbp->b_addr; struct xfs_agf *agf = cur->bc_ag.agbp->b_addr;
ASSERT(cur->bc_private.a.agno == be32_to_cpu(agf->agf_seqno)); ASSERT(cur->bc_ag.agno == be32_to_cpu(agf->agf_seqno));
ptr->s = agf->agf_refcount_root; ptr->s = agf->agf_refcount_root;
} }
...@@ -336,12 +336,12 @@ xfs_refcountbt_init_cursor( ...@@ -336,12 +336,12 @@ xfs_refcountbt_init_cursor(
cur->bc_nlevels = be32_to_cpu(agf->agf_refcount_level); cur->bc_nlevels = be32_to_cpu(agf->agf_refcount_level);
cur->bc_private.a.agbp = agbp; cur->bc_ag.agbp = agbp;
cur->bc_private.a.agno = agno; cur->bc_ag.agno = agno;
cur->bc_flags |= XFS_BTREE_CRC_BLOCKS; cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
cur->bc_private.a.priv.refc.nr_ops = 0; cur->bc_ag.priv.refc.nr_ops = 0;
cur->bc_private.a.priv.refc.shape_changes = 0; cur->bc_ag.priv.refc.shape_changes = 0;
return cur; return cur;
} }
......
...@@ -79,7 +79,7 @@ xfs_rmap_update( ...@@ -79,7 +79,7 @@ xfs_rmap_update(
union xfs_btree_rec rec; union xfs_btree_rec rec;
int error; int error;
trace_xfs_rmap_update(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_rmap_update(cur->bc_mp, cur->bc_ag.agno,
irec->rm_startblock, irec->rm_blockcount, irec->rm_startblock, irec->rm_blockcount,
irec->rm_owner, irec->rm_offset, irec->rm_flags); irec->rm_owner, irec->rm_offset, irec->rm_flags);
...@@ -91,7 +91,7 @@ xfs_rmap_update( ...@@ -91,7 +91,7 @@ xfs_rmap_update(
error = xfs_btree_update(cur, &rec); error = xfs_btree_update(cur, &rec);
if (error) if (error)
trace_xfs_rmap_update_error(cur->bc_mp, trace_xfs_rmap_update_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -107,7 +107,7 @@ xfs_rmap_insert( ...@@ -107,7 +107,7 @@ xfs_rmap_insert(
int i; int i;
int error; int error;
trace_xfs_rmap_insert(rcur->bc_mp, rcur->bc_private.a.agno, agbno, trace_xfs_rmap_insert(rcur->bc_mp, rcur->bc_ag.agno, agbno,
len, owner, offset, flags); len, owner, offset, flags);
error = xfs_rmap_lookup_eq(rcur, agbno, len, owner, offset, flags, &i); error = xfs_rmap_lookup_eq(rcur, agbno, len, owner, offset, flags, &i);
...@@ -133,7 +133,7 @@ xfs_rmap_insert( ...@@ -133,7 +133,7 @@ xfs_rmap_insert(
done: done:
if (error) if (error)
trace_xfs_rmap_insert_error(rcur->bc_mp, trace_xfs_rmap_insert_error(rcur->bc_mp,
rcur->bc_private.a.agno, error, _RET_IP_); rcur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -149,7 +149,7 @@ xfs_rmap_delete( ...@@ -149,7 +149,7 @@ xfs_rmap_delete(
int i; int i;
int error; int error;
trace_xfs_rmap_delete(rcur->bc_mp, rcur->bc_private.a.agno, agbno, trace_xfs_rmap_delete(rcur->bc_mp, rcur->bc_ag.agno, agbno,
len, owner, offset, flags); len, owner, offset, flags);
error = xfs_rmap_lookup_eq(rcur, agbno, len, owner, offset, flags, &i); error = xfs_rmap_lookup_eq(rcur, agbno, len, owner, offset, flags, &i);
...@@ -170,7 +170,7 @@ xfs_rmap_delete( ...@@ -170,7 +170,7 @@ xfs_rmap_delete(
done: done:
if (error) if (error)
trace_xfs_rmap_delete_error(rcur->bc_mp, trace_xfs_rmap_delete_error(rcur->bc_mp,
rcur->bc_private.a.agno, error, _RET_IP_); rcur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -197,7 +197,7 @@ xfs_rmap_get_rec( ...@@ -197,7 +197,7 @@ xfs_rmap_get_rec(
int *stat) int *stat)
{ {
struct xfs_mount *mp = cur->bc_mp; struct xfs_mount *mp = cur->bc_mp;
xfs_agnumber_t agno = cur->bc_private.a.agno; xfs_agnumber_t agno = cur->bc_ag.agno;
union xfs_btree_rec *rec; union xfs_btree_rec *rec;
int error; int error;
...@@ -260,7 +260,7 @@ xfs_rmap_find_left_neighbor_helper( ...@@ -260,7 +260,7 @@ xfs_rmap_find_left_neighbor_helper(
struct xfs_find_left_neighbor_info *info = priv; struct xfs_find_left_neighbor_info *info = priv;
trace_xfs_rmap_find_left_neighbor_candidate(cur->bc_mp, trace_xfs_rmap_find_left_neighbor_candidate(cur->bc_mp,
cur->bc_private.a.agno, rec->rm_startblock, cur->bc_ag.agno, rec->rm_startblock,
rec->rm_blockcount, rec->rm_owner, rec->rm_offset, rec->rm_blockcount, rec->rm_owner, rec->rm_offset,
rec->rm_flags); rec->rm_flags);
...@@ -312,7 +312,7 @@ xfs_rmap_find_left_neighbor( ...@@ -312,7 +312,7 @@ xfs_rmap_find_left_neighbor(
info.stat = stat; info.stat = stat;
trace_xfs_rmap_find_left_neighbor_query(cur->bc_mp, trace_xfs_rmap_find_left_neighbor_query(cur->bc_mp,
cur->bc_private.a.agno, bno, 0, owner, offset, flags); cur->bc_ag.agno, bno, 0, owner, offset, flags);
error = xfs_rmap_query_range(cur, &info.high, &info.high, error = xfs_rmap_query_range(cur, &info.high, &info.high,
xfs_rmap_find_left_neighbor_helper, &info); xfs_rmap_find_left_neighbor_helper, &info);
...@@ -320,7 +320,7 @@ xfs_rmap_find_left_neighbor( ...@@ -320,7 +320,7 @@ xfs_rmap_find_left_neighbor(
error = 0; error = 0;
if (*stat) if (*stat)
trace_xfs_rmap_find_left_neighbor_result(cur->bc_mp, trace_xfs_rmap_find_left_neighbor_result(cur->bc_mp,
cur->bc_private.a.agno, irec->rm_startblock, cur->bc_ag.agno, irec->rm_startblock,
irec->rm_blockcount, irec->rm_owner, irec->rm_blockcount, irec->rm_owner,
irec->rm_offset, irec->rm_flags); irec->rm_offset, irec->rm_flags);
return error; return error;
...@@ -336,7 +336,7 @@ xfs_rmap_lookup_le_range_helper( ...@@ -336,7 +336,7 @@ xfs_rmap_lookup_le_range_helper(
struct xfs_find_left_neighbor_info *info = priv; struct xfs_find_left_neighbor_info *info = priv;
trace_xfs_rmap_lookup_le_range_candidate(cur->bc_mp, trace_xfs_rmap_lookup_le_range_candidate(cur->bc_mp,
cur->bc_private.a.agno, rec->rm_startblock, cur->bc_ag.agno, rec->rm_startblock,
rec->rm_blockcount, rec->rm_owner, rec->rm_offset, rec->rm_blockcount, rec->rm_owner, rec->rm_offset,
rec->rm_flags); rec->rm_flags);
...@@ -385,14 +385,14 @@ xfs_rmap_lookup_le_range( ...@@ -385,14 +385,14 @@ xfs_rmap_lookup_le_range(
info.stat = stat; info.stat = stat;
trace_xfs_rmap_lookup_le_range(cur->bc_mp, trace_xfs_rmap_lookup_le_range(cur->bc_mp,
cur->bc_private.a.agno, bno, 0, owner, offset, flags); cur->bc_ag.agno, bno, 0, owner, offset, flags);
error = xfs_rmap_query_range(cur, &info.high, &info.high, error = xfs_rmap_query_range(cur, &info.high, &info.high,
xfs_rmap_lookup_le_range_helper, &info); xfs_rmap_lookup_le_range_helper, &info);
if (error == -ECANCELED) if (error == -ECANCELED)
error = 0; error = 0;
if (*stat) if (*stat)
trace_xfs_rmap_lookup_le_range_result(cur->bc_mp, trace_xfs_rmap_lookup_le_range_result(cur->bc_mp,
cur->bc_private.a.agno, irec->rm_startblock, cur->bc_ag.agno, irec->rm_startblock,
irec->rm_blockcount, irec->rm_owner, irec->rm_blockcount, irec->rm_owner,
irec->rm_offset, irec->rm_flags); irec->rm_offset, irec->rm_flags);
return error; return error;
...@@ -498,7 +498,7 @@ xfs_rmap_unmap( ...@@ -498,7 +498,7 @@ xfs_rmap_unmap(
(flags & XFS_RMAP_BMBT_BLOCK); (flags & XFS_RMAP_BMBT_BLOCK);
if (unwritten) if (unwritten)
flags |= XFS_RMAP_UNWRITTEN; flags |= XFS_RMAP_UNWRITTEN;
trace_xfs_rmap_unmap(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_unmap(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
/* /*
...@@ -522,7 +522,7 @@ xfs_rmap_unmap( ...@@ -522,7 +522,7 @@ xfs_rmap_unmap(
goto out_error; goto out_error;
} }
trace_xfs_rmap_lookup_le_range_result(cur->bc_mp, trace_xfs_rmap_lookup_le_range_result(cur->bc_mp,
cur->bc_private.a.agno, ltrec.rm_startblock, cur->bc_ag.agno, ltrec.rm_startblock,
ltrec.rm_blockcount, ltrec.rm_owner, ltrec.rm_blockcount, ltrec.rm_owner,
ltrec.rm_offset, ltrec.rm_flags); ltrec.rm_offset, ltrec.rm_flags);
ltoff = ltrec.rm_offset; ltoff = ltrec.rm_offset;
...@@ -588,7 +588,7 @@ xfs_rmap_unmap( ...@@ -588,7 +588,7 @@ xfs_rmap_unmap(
if (ltrec.rm_startblock == bno && ltrec.rm_blockcount == len) { if (ltrec.rm_startblock == bno && ltrec.rm_blockcount == len) {
/* exact match, simply remove the record from rmap tree */ /* exact match, simply remove the record from rmap tree */
trace_xfs_rmap_delete(mp, cur->bc_private.a.agno, trace_xfs_rmap_delete(mp, cur->bc_ag.agno,
ltrec.rm_startblock, ltrec.rm_blockcount, ltrec.rm_startblock, ltrec.rm_blockcount,
ltrec.rm_owner, ltrec.rm_offset, ltrec.rm_owner, ltrec.rm_offset,
ltrec.rm_flags); ltrec.rm_flags);
...@@ -666,7 +666,7 @@ xfs_rmap_unmap( ...@@ -666,7 +666,7 @@ xfs_rmap_unmap(
else else
cur->bc_rec.r.rm_offset = offset + len; cur->bc_rec.r.rm_offset = offset + len;
cur->bc_rec.r.rm_flags = flags; cur->bc_rec.r.rm_flags = flags;
trace_xfs_rmap_insert(mp, cur->bc_private.a.agno, trace_xfs_rmap_insert(mp, cur->bc_ag.agno,
cur->bc_rec.r.rm_startblock, cur->bc_rec.r.rm_startblock,
cur->bc_rec.r.rm_blockcount, cur->bc_rec.r.rm_blockcount,
cur->bc_rec.r.rm_owner, cur->bc_rec.r.rm_owner,
...@@ -678,11 +678,11 @@ xfs_rmap_unmap( ...@@ -678,11 +678,11 @@ xfs_rmap_unmap(
} }
out_done: out_done:
trace_xfs_rmap_unmap_done(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_unmap_done(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
out_error: out_error:
if (error) if (error)
trace_xfs_rmap_unmap_error(mp, cur->bc_private.a.agno, trace_xfs_rmap_unmap_error(mp, cur->bc_ag.agno,
error, _RET_IP_); error, _RET_IP_);
return error; return error;
} }
...@@ -773,7 +773,7 @@ xfs_rmap_map( ...@@ -773,7 +773,7 @@ xfs_rmap_map(
(flags & XFS_RMAP_BMBT_BLOCK); (flags & XFS_RMAP_BMBT_BLOCK);
if (unwritten) if (unwritten)
flags |= XFS_RMAP_UNWRITTEN; flags |= XFS_RMAP_UNWRITTEN;
trace_xfs_rmap_map(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_map(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
ASSERT(!xfs_rmap_should_skip_owner_update(oinfo)); ASSERT(!xfs_rmap_should_skip_owner_update(oinfo));
...@@ -795,7 +795,7 @@ xfs_rmap_map( ...@@ -795,7 +795,7 @@ xfs_rmap_map(
goto out_error; goto out_error;
} }
trace_xfs_rmap_lookup_le_range_result(cur->bc_mp, trace_xfs_rmap_lookup_le_range_result(cur->bc_mp,
cur->bc_private.a.agno, ltrec.rm_startblock, cur->bc_ag.agno, ltrec.rm_startblock,
ltrec.rm_blockcount, ltrec.rm_owner, ltrec.rm_blockcount, ltrec.rm_owner,
ltrec.rm_offset, ltrec.rm_flags); ltrec.rm_offset, ltrec.rm_flags);
...@@ -831,7 +831,7 @@ xfs_rmap_map( ...@@ -831,7 +831,7 @@ xfs_rmap_map(
goto out_error; goto out_error;
} }
trace_xfs_rmap_find_right_neighbor_result(cur->bc_mp, trace_xfs_rmap_find_right_neighbor_result(cur->bc_mp,
cur->bc_private.a.agno, gtrec.rm_startblock, cur->bc_ag.agno, gtrec.rm_startblock,
gtrec.rm_blockcount, gtrec.rm_owner, gtrec.rm_blockcount, gtrec.rm_owner,
gtrec.rm_offset, gtrec.rm_flags); gtrec.rm_offset, gtrec.rm_flags);
if (!xfs_rmap_is_mergeable(&gtrec, owner, flags)) if (!xfs_rmap_is_mergeable(&gtrec, owner, flags))
...@@ -870,7 +870,7 @@ xfs_rmap_map( ...@@ -870,7 +870,7 @@ xfs_rmap_map(
* result: |rrrrrrrrrrrrrrrrrrrrrrrrrrrrr| * result: |rrrrrrrrrrrrrrrrrrrrrrrrrrrrr|
*/ */
ltrec.rm_blockcount += gtrec.rm_blockcount; ltrec.rm_blockcount += gtrec.rm_blockcount;
trace_xfs_rmap_delete(mp, cur->bc_private.a.agno, trace_xfs_rmap_delete(mp, cur->bc_ag.agno,
gtrec.rm_startblock, gtrec.rm_startblock,
gtrec.rm_blockcount, gtrec.rm_blockcount,
gtrec.rm_owner, gtrec.rm_owner,
...@@ -921,7 +921,7 @@ xfs_rmap_map( ...@@ -921,7 +921,7 @@ xfs_rmap_map(
cur->bc_rec.r.rm_owner = owner; cur->bc_rec.r.rm_owner = owner;
cur->bc_rec.r.rm_offset = offset; cur->bc_rec.r.rm_offset = offset;
cur->bc_rec.r.rm_flags = flags; cur->bc_rec.r.rm_flags = flags;
trace_xfs_rmap_insert(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_insert(mp, cur->bc_ag.agno, bno, len,
owner, offset, flags); owner, offset, flags);
error = xfs_btree_insert(cur, &i); error = xfs_btree_insert(cur, &i);
if (error) if (error)
...@@ -932,11 +932,11 @@ xfs_rmap_map( ...@@ -932,11 +932,11 @@ xfs_rmap_map(
} }
} }
trace_xfs_rmap_map_done(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_map_done(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
out_error: out_error:
if (error) if (error)
trace_xfs_rmap_map_error(mp, cur->bc_private.a.agno, trace_xfs_rmap_map_error(mp, cur->bc_ag.agno,
error, _RET_IP_); error, _RET_IP_);
return error; return error;
} }
...@@ -1010,7 +1010,7 @@ xfs_rmap_convert( ...@@ -1010,7 +1010,7 @@ xfs_rmap_convert(
(flags & (XFS_RMAP_ATTR_FORK | XFS_RMAP_BMBT_BLOCK)))); (flags & (XFS_RMAP_ATTR_FORK | XFS_RMAP_BMBT_BLOCK))));
oldext = unwritten ? XFS_RMAP_UNWRITTEN : 0; oldext = unwritten ? XFS_RMAP_UNWRITTEN : 0;
new_endoff = offset + len; new_endoff = offset + len;
trace_xfs_rmap_convert(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_convert(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
/* /*
...@@ -1034,7 +1034,7 @@ xfs_rmap_convert( ...@@ -1034,7 +1034,7 @@ xfs_rmap_convert(
goto done; goto done;
} }
trace_xfs_rmap_lookup_le_range_result(cur->bc_mp, trace_xfs_rmap_lookup_le_range_result(cur->bc_mp,
cur->bc_private.a.agno, PREV.rm_startblock, cur->bc_ag.agno, PREV.rm_startblock,
PREV.rm_blockcount, PREV.rm_owner, PREV.rm_blockcount, PREV.rm_owner,
PREV.rm_offset, PREV.rm_flags); PREV.rm_offset, PREV.rm_flags);
...@@ -1076,7 +1076,7 @@ xfs_rmap_convert( ...@@ -1076,7 +1076,7 @@ xfs_rmap_convert(
goto done; goto done;
} }
trace_xfs_rmap_find_left_neighbor_result(cur->bc_mp, trace_xfs_rmap_find_left_neighbor_result(cur->bc_mp,
cur->bc_private.a.agno, LEFT.rm_startblock, cur->bc_ag.agno, LEFT.rm_startblock,
LEFT.rm_blockcount, LEFT.rm_owner, LEFT.rm_blockcount, LEFT.rm_owner,
LEFT.rm_offset, LEFT.rm_flags); LEFT.rm_offset, LEFT.rm_flags);
if (LEFT.rm_startblock + LEFT.rm_blockcount == bno && if (LEFT.rm_startblock + LEFT.rm_blockcount == bno &&
...@@ -1114,7 +1114,7 @@ xfs_rmap_convert( ...@@ -1114,7 +1114,7 @@ xfs_rmap_convert(
goto done; goto done;
} }
trace_xfs_rmap_find_right_neighbor_result(cur->bc_mp, trace_xfs_rmap_find_right_neighbor_result(cur->bc_mp,
cur->bc_private.a.agno, RIGHT.rm_startblock, cur->bc_ag.agno, RIGHT.rm_startblock,
RIGHT.rm_blockcount, RIGHT.rm_owner, RIGHT.rm_blockcount, RIGHT.rm_owner,
RIGHT.rm_offset, RIGHT.rm_flags); RIGHT.rm_offset, RIGHT.rm_flags);
if (bno + len == RIGHT.rm_startblock && if (bno + len == RIGHT.rm_startblock &&
...@@ -1132,7 +1132,7 @@ xfs_rmap_convert( ...@@ -1132,7 +1132,7 @@ xfs_rmap_convert(
RIGHT.rm_blockcount > XFS_RMAP_LEN_MAX) RIGHT.rm_blockcount > XFS_RMAP_LEN_MAX)
state &= ~RMAP_RIGHT_CONTIG; state &= ~RMAP_RIGHT_CONTIG;
trace_xfs_rmap_convert_state(mp, cur->bc_private.a.agno, state, trace_xfs_rmap_convert_state(mp, cur->bc_ag.agno, state,
_RET_IP_); _RET_IP_);
/* reset the cursor back to PREV */ /* reset the cursor back to PREV */
...@@ -1162,7 +1162,7 @@ xfs_rmap_convert( ...@@ -1162,7 +1162,7 @@ xfs_rmap_convert(
error = -EFSCORRUPTED; error = -EFSCORRUPTED;
goto done; goto done;
} }
trace_xfs_rmap_delete(mp, cur->bc_private.a.agno, trace_xfs_rmap_delete(mp, cur->bc_ag.agno,
RIGHT.rm_startblock, RIGHT.rm_blockcount, RIGHT.rm_startblock, RIGHT.rm_blockcount,
RIGHT.rm_owner, RIGHT.rm_offset, RIGHT.rm_owner, RIGHT.rm_offset,
RIGHT.rm_flags); RIGHT.rm_flags);
...@@ -1180,7 +1180,7 @@ xfs_rmap_convert( ...@@ -1180,7 +1180,7 @@ xfs_rmap_convert(
error = -EFSCORRUPTED; error = -EFSCORRUPTED;
goto done; goto done;
} }
trace_xfs_rmap_delete(mp, cur->bc_private.a.agno, trace_xfs_rmap_delete(mp, cur->bc_ag.agno,
PREV.rm_startblock, PREV.rm_blockcount, PREV.rm_startblock, PREV.rm_blockcount,
PREV.rm_owner, PREV.rm_offset, PREV.rm_owner, PREV.rm_offset,
PREV.rm_flags); PREV.rm_flags);
...@@ -1210,7 +1210,7 @@ xfs_rmap_convert( ...@@ -1210,7 +1210,7 @@ xfs_rmap_convert(
* Setting all of a previous oldext extent to newext. * Setting all of a previous oldext extent to newext.
* The left neighbor is contiguous, the right is not. * The left neighbor is contiguous, the right is not.
*/ */
trace_xfs_rmap_delete(mp, cur->bc_private.a.agno, trace_xfs_rmap_delete(mp, cur->bc_ag.agno,
PREV.rm_startblock, PREV.rm_blockcount, PREV.rm_startblock, PREV.rm_blockcount,
PREV.rm_owner, PREV.rm_offset, PREV.rm_owner, PREV.rm_offset,
PREV.rm_flags); PREV.rm_flags);
...@@ -1247,7 +1247,7 @@ xfs_rmap_convert( ...@@ -1247,7 +1247,7 @@ xfs_rmap_convert(
error = -EFSCORRUPTED; error = -EFSCORRUPTED;
goto done; goto done;
} }
trace_xfs_rmap_delete(mp, cur->bc_private.a.agno, trace_xfs_rmap_delete(mp, cur->bc_ag.agno,
RIGHT.rm_startblock, RIGHT.rm_blockcount, RIGHT.rm_startblock, RIGHT.rm_blockcount,
RIGHT.rm_owner, RIGHT.rm_offset, RIGHT.rm_owner, RIGHT.rm_offset,
RIGHT.rm_flags); RIGHT.rm_flags);
...@@ -1326,7 +1326,7 @@ xfs_rmap_convert( ...@@ -1326,7 +1326,7 @@ xfs_rmap_convert(
NEW.rm_blockcount = len; NEW.rm_blockcount = len;
NEW.rm_flags = newext; NEW.rm_flags = newext;
cur->bc_rec.r = NEW; cur->bc_rec.r = NEW;
trace_xfs_rmap_insert(mp, cur->bc_private.a.agno, bno, trace_xfs_rmap_insert(mp, cur->bc_ag.agno, bno,
len, owner, offset, newext); len, owner, offset, newext);
error = xfs_btree_insert(cur, &i); error = xfs_btree_insert(cur, &i);
if (error) if (error)
...@@ -1383,7 +1383,7 @@ xfs_rmap_convert( ...@@ -1383,7 +1383,7 @@ xfs_rmap_convert(
NEW.rm_blockcount = len; NEW.rm_blockcount = len;
NEW.rm_flags = newext; NEW.rm_flags = newext;
cur->bc_rec.r = NEW; cur->bc_rec.r = NEW;
trace_xfs_rmap_insert(mp, cur->bc_private.a.agno, bno, trace_xfs_rmap_insert(mp, cur->bc_ag.agno, bno,
len, owner, offset, newext); len, owner, offset, newext);
error = xfs_btree_insert(cur, &i); error = xfs_btree_insert(cur, &i);
if (error) if (error)
...@@ -1414,7 +1414,7 @@ xfs_rmap_convert( ...@@ -1414,7 +1414,7 @@ xfs_rmap_convert(
NEW = PREV; NEW = PREV;
NEW.rm_blockcount = offset - PREV.rm_offset; NEW.rm_blockcount = offset - PREV.rm_offset;
cur->bc_rec.r = NEW; cur->bc_rec.r = NEW;
trace_xfs_rmap_insert(mp, cur->bc_private.a.agno, trace_xfs_rmap_insert(mp, cur->bc_ag.agno,
NEW.rm_startblock, NEW.rm_blockcount, NEW.rm_startblock, NEW.rm_blockcount,
NEW.rm_owner, NEW.rm_offset, NEW.rm_owner, NEW.rm_offset,
NEW.rm_flags); NEW.rm_flags);
...@@ -1441,7 +1441,7 @@ xfs_rmap_convert( ...@@ -1441,7 +1441,7 @@ xfs_rmap_convert(
/* new middle extent - newext */ /* new middle extent - newext */
cur->bc_rec.r.rm_flags &= ~XFS_RMAP_UNWRITTEN; cur->bc_rec.r.rm_flags &= ~XFS_RMAP_UNWRITTEN;
cur->bc_rec.r.rm_flags |= newext; cur->bc_rec.r.rm_flags |= newext;
trace_xfs_rmap_insert(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_insert(mp, cur->bc_ag.agno, bno, len,
owner, offset, newext); owner, offset, newext);
error = xfs_btree_insert(cur, &i); error = xfs_btree_insert(cur, &i);
if (error) if (error)
...@@ -1465,12 +1465,12 @@ xfs_rmap_convert( ...@@ -1465,12 +1465,12 @@ xfs_rmap_convert(
ASSERT(0); ASSERT(0);
} }
trace_xfs_rmap_convert_done(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_convert_done(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
done: done:
if (error) if (error)
trace_xfs_rmap_convert_error(cur->bc_mp, trace_xfs_rmap_convert_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -1506,7 +1506,7 @@ xfs_rmap_convert_shared( ...@@ -1506,7 +1506,7 @@ xfs_rmap_convert_shared(
(flags & (XFS_RMAP_ATTR_FORK | XFS_RMAP_BMBT_BLOCK)))); (flags & (XFS_RMAP_ATTR_FORK | XFS_RMAP_BMBT_BLOCK))));
oldext = unwritten ? XFS_RMAP_UNWRITTEN : 0; oldext = unwritten ? XFS_RMAP_UNWRITTEN : 0;
new_endoff = offset + len; new_endoff = offset + len;
trace_xfs_rmap_convert(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_convert(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
/* /*
...@@ -1573,7 +1573,7 @@ xfs_rmap_convert_shared( ...@@ -1573,7 +1573,7 @@ xfs_rmap_convert_shared(
goto done; goto done;
} }
trace_xfs_rmap_find_right_neighbor_result(cur->bc_mp, trace_xfs_rmap_find_right_neighbor_result(cur->bc_mp,
cur->bc_private.a.agno, RIGHT.rm_startblock, cur->bc_ag.agno, RIGHT.rm_startblock,
RIGHT.rm_blockcount, RIGHT.rm_owner, RIGHT.rm_blockcount, RIGHT.rm_owner,
RIGHT.rm_offset, RIGHT.rm_flags); RIGHT.rm_offset, RIGHT.rm_flags);
if (xfs_rmap_is_mergeable(&RIGHT, owner, newext)) if (xfs_rmap_is_mergeable(&RIGHT, owner, newext))
...@@ -1589,7 +1589,7 @@ xfs_rmap_convert_shared( ...@@ -1589,7 +1589,7 @@ xfs_rmap_convert_shared(
RIGHT.rm_blockcount > XFS_RMAP_LEN_MAX) RIGHT.rm_blockcount > XFS_RMAP_LEN_MAX)
state &= ~RMAP_RIGHT_CONTIG; state &= ~RMAP_RIGHT_CONTIG;
trace_xfs_rmap_convert_state(mp, cur->bc_private.a.agno, state, trace_xfs_rmap_convert_state(mp, cur->bc_ag.agno, state,
_RET_IP_); _RET_IP_);
/* /*
* Switch out based on the FILLING and CONTIG state bits. * Switch out based on the FILLING and CONTIG state bits.
...@@ -1880,12 +1880,12 @@ xfs_rmap_convert_shared( ...@@ -1880,12 +1880,12 @@ xfs_rmap_convert_shared(
ASSERT(0); ASSERT(0);
} }
trace_xfs_rmap_convert_done(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_convert_done(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
done: done:
if (error) if (error)
trace_xfs_rmap_convert_error(cur->bc_mp, trace_xfs_rmap_convert_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -1923,7 +1923,7 @@ xfs_rmap_unmap_shared( ...@@ -1923,7 +1923,7 @@ xfs_rmap_unmap_shared(
xfs_owner_info_unpack(oinfo, &owner, &offset, &flags); xfs_owner_info_unpack(oinfo, &owner, &offset, &flags);
if (unwritten) if (unwritten)
flags |= XFS_RMAP_UNWRITTEN; flags |= XFS_RMAP_UNWRITTEN;
trace_xfs_rmap_unmap(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_unmap(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
/* /*
...@@ -2072,12 +2072,12 @@ xfs_rmap_unmap_shared( ...@@ -2072,12 +2072,12 @@ xfs_rmap_unmap_shared(
goto out_error; goto out_error;
} }
trace_xfs_rmap_unmap_done(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_unmap_done(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
out_error: out_error:
if (error) if (error)
trace_xfs_rmap_unmap_error(cur->bc_mp, trace_xfs_rmap_unmap_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -2112,7 +2112,7 @@ xfs_rmap_map_shared( ...@@ -2112,7 +2112,7 @@ xfs_rmap_map_shared(
xfs_owner_info_unpack(oinfo, &owner, &offset, &flags); xfs_owner_info_unpack(oinfo, &owner, &offset, &flags);
if (unwritten) if (unwritten)
flags |= XFS_RMAP_UNWRITTEN; flags |= XFS_RMAP_UNWRITTEN;
trace_xfs_rmap_map(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_map(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
/* Is there a left record that abuts our range? */ /* Is there a left record that abuts our range? */
...@@ -2138,7 +2138,7 @@ xfs_rmap_map_shared( ...@@ -2138,7 +2138,7 @@ xfs_rmap_map_shared(
goto out_error; goto out_error;
} }
trace_xfs_rmap_find_right_neighbor_result(cur->bc_mp, trace_xfs_rmap_find_right_neighbor_result(cur->bc_mp,
cur->bc_private.a.agno, gtrec.rm_startblock, cur->bc_ag.agno, gtrec.rm_startblock,
gtrec.rm_blockcount, gtrec.rm_owner, gtrec.rm_blockcount, gtrec.rm_owner,
gtrec.rm_offset, gtrec.rm_flags); gtrec.rm_offset, gtrec.rm_flags);
...@@ -2231,12 +2231,12 @@ xfs_rmap_map_shared( ...@@ -2231,12 +2231,12 @@ xfs_rmap_map_shared(
goto out_error; goto out_error;
} }
trace_xfs_rmap_map_done(mp, cur->bc_private.a.agno, bno, len, trace_xfs_rmap_map_done(mp, cur->bc_ag.agno, bno, len,
unwritten, oinfo); unwritten, oinfo);
out_error: out_error:
if (error) if (error)
trace_xfs_rmap_map_error(cur->bc_mp, trace_xfs_rmap_map_error(cur->bc_mp,
cur->bc_private.a.agno, error, _RET_IP_); cur->bc_ag.agno, error, _RET_IP_);
return error; return error;
} }
...@@ -2336,7 +2336,7 @@ xfs_rmap_finish_one_cleanup( ...@@ -2336,7 +2336,7 @@ xfs_rmap_finish_one_cleanup(
if (rcur == NULL) if (rcur == NULL)
return; return;
agbp = rcur->bc_private.a.agbp; agbp = rcur->bc_ag.agbp;
xfs_btree_del_cursor(rcur, error); xfs_btree_del_cursor(rcur, error);
if (error) if (error)
xfs_trans_brelse(tp, agbp); xfs_trans_brelse(tp, agbp);
...@@ -2386,7 +2386,7 @@ xfs_rmap_finish_one( ...@@ -2386,7 +2386,7 @@ xfs_rmap_finish_one(
* the startblock, get one now. * the startblock, get one now.
*/ */
rcur = *pcur; rcur = *pcur;
if (rcur != NULL && rcur->bc_private.a.agno != agno) { if (rcur != NULL && rcur->bc_ag.agno != agno) {
xfs_rmap_finish_one_cleanup(tp, rcur, 0); xfs_rmap_finish_one_cleanup(tp, rcur, 0);
rcur = NULL; rcur = NULL;
*pcur = NULL; *pcur = NULL;
......
...@@ -51,7 +51,7 @@ xfs_rmapbt_dup_cursor( ...@@ -51,7 +51,7 @@ xfs_rmapbt_dup_cursor(
struct xfs_btree_cur *cur) struct xfs_btree_cur *cur)
{ {
return xfs_rmapbt_init_cursor(cur->bc_mp, cur->bc_tp, return xfs_rmapbt_init_cursor(cur->bc_mp, cur->bc_tp,
cur->bc_private.a.agbp, cur->bc_private.a.agno); cur->bc_ag.agbp, cur->bc_ag.agno);
} }
STATIC void STATIC void
...@@ -60,7 +60,7 @@ xfs_rmapbt_set_root( ...@@ -60,7 +60,7 @@ xfs_rmapbt_set_root(
union xfs_btree_ptr *ptr, union xfs_btree_ptr *ptr,
int inc) int inc)
{ {
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agf *agf = agbp->b_addr; struct xfs_agf *agf = agbp->b_addr;
xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno); xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno);
int btnum = cur->bc_btnum; int btnum = cur->bc_btnum;
...@@ -83,25 +83,25 @@ xfs_rmapbt_alloc_block( ...@@ -83,25 +83,25 @@ xfs_rmapbt_alloc_block(
union xfs_btree_ptr *new, union xfs_btree_ptr *new,
int *stat) int *stat)
{ {
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agf *agf = agbp->b_addr; struct xfs_agf *agf = agbp->b_addr;
int error; int error;
xfs_agblock_t bno; xfs_agblock_t bno;
/* Allocate the new block from the freelist. If we can't, give up. */ /* Allocate the new block from the freelist. If we can't, give up. */
error = xfs_alloc_get_freelist(cur->bc_tp, cur->bc_private.a.agbp, error = xfs_alloc_get_freelist(cur->bc_tp, cur->bc_ag.agbp,
&bno, 1); &bno, 1);
if (error) if (error)
return error; return error;
trace_xfs_rmapbt_alloc_block(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_rmapbt_alloc_block(cur->bc_mp, cur->bc_ag.agno,
bno, 1); bno, 1);
if (bno == NULLAGBLOCK) { if (bno == NULLAGBLOCK) {
*stat = 0; *stat = 0;
return 0; return 0;
} }
xfs_extent_busy_reuse(cur->bc_mp, cur->bc_private.a.agno, bno, 1, xfs_extent_busy_reuse(cur->bc_mp, cur->bc_ag.agno, bno, 1,
false); false);
xfs_trans_agbtree_delta(cur->bc_tp, 1); xfs_trans_agbtree_delta(cur->bc_tp, 1);
...@@ -109,7 +109,7 @@ xfs_rmapbt_alloc_block( ...@@ -109,7 +109,7 @@ xfs_rmapbt_alloc_block(
be32_add_cpu(&agf->agf_rmap_blocks, 1); be32_add_cpu(&agf->agf_rmap_blocks, 1);
xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_RMAP_BLOCKS); xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_RMAP_BLOCKS);
xfs_ag_resv_rmapbt_alloc(cur->bc_mp, cur->bc_private.a.agno); xfs_ag_resv_rmapbt_alloc(cur->bc_mp, cur->bc_ag.agno);
*stat = 1; *stat = 1;
return 0; return 0;
...@@ -120,13 +120,13 @@ xfs_rmapbt_free_block( ...@@ -120,13 +120,13 @@ xfs_rmapbt_free_block(
struct xfs_btree_cur *cur, struct xfs_btree_cur *cur,
struct xfs_buf *bp) struct xfs_buf *bp)
{ {
struct xfs_buf *agbp = cur->bc_private.a.agbp; struct xfs_buf *agbp = cur->bc_ag.agbp;
struct xfs_agf *agf = agbp->b_addr; struct xfs_agf *agf = agbp->b_addr;
xfs_agblock_t bno; xfs_agblock_t bno;
int error; int error;
bno = xfs_daddr_to_agbno(cur->bc_mp, XFS_BUF_ADDR(bp)); bno = xfs_daddr_to_agbno(cur->bc_mp, XFS_BUF_ADDR(bp));
trace_xfs_rmapbt_free_block(cur->bc_mp, cur->bc_private.a.agno, trace_xfs_rmapbt_free_block(cur->bc_mp, cur->bc_ag.agno,
bno, 1); bno, 1);
be32_add_cpu(&agf->agf_rmap_blocks, -1); be32_add_cpu(&agf->agf_rmap_blocks, -1);
xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_RMAP_BLOCKS); xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_RMAP_BLOCKS);
...@@ -138,7 +138,7 @@ xfs_rmapbt_free_block( ...@@ -138,7 +138,7 @@ xfs_rmapbt_free_block(
XFS_EXTENT_BUSY_SKIP_DISCARD); XFS_EXTENT_BUSY_SKIP_DISCARD);
xfs_trans_agbtree_delta(cur->bc_tp, -1); xfs_trans_agbtree_delta(cur->bc_tp, -1);
xfs_ag_resv_rmapbt_free(cur->bc_mp, cur->bc_private.a.agno); xfs_ag_resv_rmapbt_free(cur->bc_mp, cur->bc_ag.agno);
return 0; return 0;
} }
...@@ -215,9 +215,9 @@ xfs_rmapbt_init_ptr_from_cur( ...@@ -215,9 +215,9 @@ xfs_rmapbt_init_ptr_from_cur(
struct xfs_btree_cur *cur, struct xfs_btree_cur *cur,
union xfs_btree_ptr *ptr) union xfs_btree_ptr *ptr)
{ {
struct xfs_agf *agf = cur->bc_private.a.agbp->b_addr; struct xfs_agf *agf = cur->bc_ag.agbp->b_addr;
ASSERT(cur->bc_private.a.agno == be32_to_cpu(agf->agf_seqno)); ASSERT(cur->bc_ag.agno == be32_to_cpu(agf->agf_seqno));
ptr->s = agf->agf_roots[cur->bc_btnum]; ptr->s = agf->agf_roots[cur->bc_btnum];
} }
...@@ -472,8 +472,8 @@ xfs_rmapbt_init_cursor( ...@@ -472,8 +472,8 @@ xfs_rmapbt_init_cursor(
cur->bc_nlevels = be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAP]); cur->bc_nlevels = be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAP]);
cur->bc_statoff = XFS_STATS_CALC_INDEX(xs_rmap_2); cur->bc_statoff = XFS_STATS_CALC_INDEX(xs_rmap_2);
cur->bc_private.a.agbp = agbp; cur->bc_ag.agbp = agbp;
cur->bc_private.a.agno = agno; cur->bc_ag.agno = agno;
return cur; return cur;
} }
......
...@@ -453,7 +453,7 @@ xrep_agfl_walk_rmap( ...@@ -453,7 +453,7 @@ xrep_agfl_walk_rmap(
/* Record all the OWN_AG blocks. */ /* Record all the OWN_AG blocks. */
if (rec->rm_owner == XFS_RMAP_OWN_AG) { if (rec->rm_owner == XFS_RMAP_OWN_AG) {
fsb = XFS_AGB_TO_FSB(cur->bc_mp, cur->bc_private.a.agno, fsb = XFS_AGB_TO_FSB(cur->bc_mp, cur->bc_ag.agno,
rec->rm_startblock); rec->rm_startblock);
error = xfs_bitmap_set(ra->freesp, fsb, rec->rm_blockcount); error = xfs_bitmap_set(ra->freesp, fsb, rec->rm_blockcount);
if (error) if (error)
......
...@@ -94,7 +94,7 @@ xchk_allocbt_rec( ...@@ -94,7 +94,7 @@ xchk_allocbt_rec(
union xfs_btree_rec *rec) union xfs_btree_rec *rec)
{ {
struct xfs_mount *mp = bs->cur->bc_mp; struct xfs_mount *mp = bs->cur->bc_mp;
xfs_agnumber_t agno = bs->cur->bc_private.a.agno; xfs_agnumber_t agno = bs->cur->bc_ag.agno;
xfs_agblock_t bno; xfs_agblock_t bno;
xfs_extlen_t len; xfs_extlen_t len;
......
...@@ -501,7 +501,7 @@ xchk_bmap_check_rmap( ...@@ -501,7 +501,7 @@ xchk_bmap_check_rmap(
xchk_fblock_set_corrupt(sc, sbcri->whichfork, xchk_fblock_set_corrupt(sc, sbcri->whichfork,
rec->rm_offset); rec->rm_offset);
if (irec.br_startblock != XFS_AGB_TO_FSB(sc->mp, if (irec.br_startblock != XFS_AGB_TO_FSB(sc->mp,
cur->bc_private.a.agno, rec->rm_startblock)) cur->bc_ag.agno, rec->rm_startblock))
xchk_fblock_set_corrupt(sc, sbcri->whichfork, xchk_fblock_set_corrupt(sc, sbcri->whichfork,
rec->rm_offset); rec->rm_offset);
if (irec.br_blockcount > rec->rm_blockcount) if (irec.br_blockcount > rec->rm_blockcount)
......
...@@ -104,7 +104,7 @@ xchk_iallocbt_chunk( ...@@ -104,7 +104,7 @@ xchk_iallocbt_chunk(
xfs_extlen_t len) xfs_extlen_t len)
{ {
struct xfs_mount *mp = bs->cur->bc_mp; struct xfs_mount *mp = bs->cur->bc_mp;
xfs_agnumber_t agno = bs->cur->bc_private.a.agno; xfs_agnumber_t agno = bs->cur->bc_ag.agno;
xfs_agblock_t bno; xfs_agblock_t bno;
bno = XFS_AGINO_TO_AGBNO(mp, agino); bno = XFS_AGINO_TO_AGBNO(mp, agino);
...@@ -164,7 +164,7 @@ xchk_iallocbt_check_cluster_ifree( ...@@ -164,7 +164,7 @@ xchk_iallocbt_check_cluster_ifree(
* the record, compute which fs inode we're talking about. * the record, compute which fs inode we're talking about.
*/ */
agino = irec->ir_startino + irec_ino; agino = irec->ir_startino + irec_ino;
fsino = XFS_AGINO_TO_INO(mp, bs->cur->bc_private.a.agno, agino); fsino = XFS_AGINO_TO_INO(mp, bs->cur->bc_ag.agno, agino);
irec_free = (irec->ir_free & XFS_INOBT_MASK(irec_ino)); irec_free = (irec->ir_free & XFS_INOBT_MASK(irec_ino));
if (be16_to_cpu(dip->di_magic) != XFS_DINODE_MAGIC || if (be16_to_cpu(dip->di_magic) != XFS_DINODE_MAGIC ||
...@@ -215,7 +215,7 @@ xchk_iallocbt_check_cluster( ...@@ -215,7 +215,7 @@ xchk_iallocbt_check_cluster(
struct xfs_dinode *dip; struct xfs_dinode *dip;
struct xfs_buf *cluster_bp; struct xfs_buf *cluster_bp;
unsigned int nr_inodes; unsigned int nr_inodes;
xfs_agnumber_t agno = bs->cur->bc_private.a.agno; xfs_agnumber_t agno = bs->cur->bc_ag.agno;
xfs_agblock_t agbno; xfs_agblock_t agbno;
unsigned int cluster_index; unsigned int cluster_index;
uint16_t cluster_mask = 0; uint16_t cluster_mask = 0;
...@@ -426,7 +426,7 @@ xchk_iallocbt_rec( ...@@ -426,7 +426,7 @@ xchk_iallocbt_rec(
struct xchk_iallocbt *iabt = bs->private; struct xchk_iallocbt *iabt = bs->private;
struct xfs_inobt_rec_incore irec; struct xfs_inobt_rec_incore irec;
uint64_t holes; uint64_t holes;
xfs_agnumber_t agno = bs->cur->bc_private.a.agno; xfs_agnumber_t agno = bs->cur->bc_ag.agno;
xfs_agino_t agino; xfs_agino_t agino;
xfs_extlen_t len; xfs_extlen_t len;
int holecount; int holecount;
......
...@@ -336,7 +336,7 @@ xchk_refcountbt_rec( ...@@ -336,7 +336,7 @@ xchk_refcountbt_rec(
{ {
struct xfs_mount *mp = bs->cur->bc_mp; struct xfs_mount *mp = bs->cur->bc_mp;
xfs_agblock_t *cow_blocks = bs->private; xfs_agblock_t *cow_blocks = bs->private;
xfs_agnumber_t agno = bs->cur->bc_private.a.agno; xfs_agnumber_t agno = bs->cur->bc_ag.agno;
xfs_agblock_t bno; xfs_agblock_t bno;
xfs_extlen_t len; xfs_extlen_t len;
xfs_nlink_t refcount; xfs_nlink_t refcount;
......
...@@ -92,7 +92,7 @@ xchk_rmapbt_rec( ...@@ -92,7 +92,7 @@ xchk_rmapbt_rec(
{ {
struct xfs_mount *mp = bs->cur->bc_mp; struct xfs_mount *mp = bs->cur->bc_mp;
struct xfs_rmap_irec irec; struct xfs_rmap_irec irec;
xfs_agnumber_t agno = bs->cur->bc_private.a.agno; xfs_agnumber_t agno = bs->cur->bc_ag.agno;
bool non_inode; bool non_inode;
bool is_unwritten; bool is_unwritten;
bool is_bmbt; bool is_bmbt;
......
...@@ -26,7 +26,7 @@ xchk_btree_cur_fsbno( ...@@ -26,7 +26,7 @@ xchk_btree_cur_fsbno(
cur->bc_flags & XFS_BTREE_LONG_PTRS) cur->bc_flags & XFS_BTREE_LONG_PTRS)
return XFS_INO_TO_FSB(cur->bc_mp, cur->bc_private.b.ip->i_ino); return XFS_INO_TO_FSB(cur->bc_mp, cur->bc_private.b.ip->i_ino);
else if (!(cur->bc_flags & XFS_BTREE_LONG_PTRS)) else if (!(cur->bc_flags & XFS_BTREE_LONG_PTRS))
return XFS_AGB_TO_FSB(cur->bc_mp, cur->bc_private.a.agno, 0); return XFS_AGB_TO_FSB(cur->bc_mp, cur->bc_ag.agno, 0);
return NULLFSBLOCK; return NULLFSBLOCK;
} }
......
...@@ -344,7 +344,7 @@ xfs_getfsmap_datadev_helper( ...@@ -344,7 +344,7 @@ xfs_getfsmap_datadev_helper(
xfs_fsblock_t fsb; xfs_fsblock_t fsb;
xfs_daddr_t rec_daddr; xfs_daddr_t rec_daddr;
fsb = XFS_AGB_TO_FSB(mp, cur->bc_private.a.agno, rec->rm_startblock); fsb = XFS_AGB_TO_FSB(mp, cur->bc_ag.agno, rec->rm_startblock);
rec_daddr = XFS_FSB_TO_DADDR(mp, fsb); rec_daddr = XFS_FSB_TO_DADDR(mp, fsb);
return xfs_getfsmap_helper(cur->bc_tp, info, rec, rec_daddr); return xfs_getfsmap_helper(cur->bc_tp, info, rec, rec_daddr);
...@@ -362,7 +362,7 @@ xfs_getfsmap_datadev_bnobt_helper( ...@@ -362,7 +362,7 @@ xfs_getfsmap_datadev_bnobt_helper(
struct xfs_rmap_irec irec; struct xfs_rmap_irec irec;
xfs_daddr_t rec_daddr; xfs_daddr_t rec_daddr;
rec_daddr = XFS_AGB_TO_DADDR(mp, cur->bc_private.a.agno, rec_daddr = XFS_AGB_TO_DADDR(mp, cur->bc_ag.agno,
rec->ar_startblock); rec->ar_startblock);
irec.rm_startblock = rec->ar_startblock; irec.rm_startblock = rec->ar_startblock;
......
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