mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
[XFS] implement generic xfs_btree_increment
From: Dave Chinner <dgc@sgi.com> Because this is the first major generic btree routine this patch includes some infrastrucure, first a few routines to deal with a btree block that can be either in short or long form, second xfs_btree_read_buf_block, which is the new central routine to read a btree block given a cursor, and third the new xfs_btree_ptr_addr routine to calculate the address for a given btree pointer record. [hch: split out from bigger patch and minor adaptions] SGI-PV: 985583 SGI-Modid: xfs-linux-melb:xfs-kern:32190a Signed-off-by: Christoph Hellwig <hch@infradead.org> Signed-off-by: Lachlan McIlroy <lachlan@sgi.com> Signed-off-by: Bill O'Donnell <billodo@sgi.com> Signed-off-by: David Chinner <david@fromorbit.com>
This commit is contained in:
parent
65f1eaeac0
commit
637aa50f46
12 changed files with 262 additions and 305 deletions
|
@ -818,7 +818,7 @@ xfs_alloc_ag_vextent_near(
|
|||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
if (ltlen >= args->minlen)
|
||||
break;
|
||||
if ((error = xfs_alloc_increment(cnt_cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cnt_cur, 0, &i)))
|
||||
goto error0;
|
||||
} while (i);
|
||||
ASSERT(ltlen >= args->minlen);
|
||||
|
@ -828,7 +828,7 @@ xfs_alloc_ag_vextent_near(
|
|||
i = cnt_cur->bc_ptrs[0];
|
||||
for (j = 1, blen = 0, bdiff = 0;
|
||||
!error && j && (blen < args->maxlen || bdiff > 0);
|
||||
error = xfs_alloc_increment(cnt_cur, 0, &j)) {
|
||||
error = xfs_btree_increment(cnt_cur, 0, &j)) {
|
||||
/*
|
||||
* For each entry, decide if it's better than
|
||||
* the previous best entry.
|
||||
|
@ -938,7 +938,7 @@ xfs_alloc_ag_vextent_near(
|
|||
* Increment the cursor, so we will point at the entry just right
|
||||
* of the leftward entry if any, or to the leftmost entry.
|
||||
*/
|
||||
if ((error = xfs_alloc_increment(bno_cur_gt, 0, &i)))
|
||||
if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
|
||||
goto error0;
|
||||
if (!i) {
|
||||
/*
|
||||
|
@ -977,7 +977,7 @@ xfs_alloc_ag_vextent_near(
|
|||
args->minlen, >bnoa, >lena);
|
||||
if (gtlena >= args->minlen)
|
||||
break;
|
||||
if ((error = xfs_alloc_increment(bno_cur_gt, 0, &i)))
|
||||
if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
|
||||
goto error0;
|
||||
if (!i) {
|
||||
xfs_btree_del_cursor(bno_cur_gt,
|
||||
|
@ -1066,7 +1066,7 @@ xfs_alloc_ag_vextent_near(
|
|||
/*
|
||||
* Fell off the right end.
|
||||
*/
|
||||
if ((error = xfs_alloc_increment(
|
||||
if ((error = xfs_btree_increment(
|
||||
bno_cur_gt, 0, &i)))
|
||||
goto error0;
|
||||
if (!i) {
|
||||
|
@ -1548,7 +1548,7 @@ xfs_free_ag_extent(
|
|||
* Look for a neighboring block on the right (higher block numbers)
|
||||
* that is contiguous with this space.
|
||||
*/
|
||||
if ((error = xfs_alloc_increment(bno_cur, 0, &haveright)))
|
||||
if ((error = xfs_btree_increment(bno_cur, 0, &haveright)))
|
||||
goto error0;
|
||||
if (haveright) {
|
||||
/*
|
||||
|
|
|
@ -303,7 +303,7 @@ xfs_alloc_delrec(
|
|||
*/
|
||||
i = xfs_btree_lastrec(tcur, level);
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
if ((error = xfs_alloc_increment(tcur, level, &i)))
|
||||
if ((error = xfs_btree_increment(tcur, level, &i)))
|
||||
goto error0;
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
i = xfs_btree_lastrec(tcur, level);
|
||||
|
@ -517,7 +517,7 @@ xfs_alloc_delrec(
|
|||
* us, increment the cursor at that level.
|
||||
*/
|
||||
else if (level + 1 < cur->bc_nlevels &&
|
||||
(error = xfs_alloc_increment(cur, level + 1, &i)))
|
||||
(error = xfs_btree_increment(cur, level + 1, &i)))
|
||||
return error;
|
||||
/*
|
||||
* Fix up the number of records in the surviving block.
|
||||
|
@ -1134,7 +1134,7 @@ xfs_alloc_lookup(
|
|||
int i;
|
||||
|
||||
cur->bc_ptrs[0] = keyno;
|
||||
if ((error = xfs_alloc_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
return error;
|
||||
XFS_WANT_CORRUPTED_RETURN(i == 1);
|
||||
*stat = 1;
|
||||
|
@ -1570,7 +1570,7 @@ xfs_alloc_rshift(
|
|||
return error;
|
||||
i = xfs_btree_lastrec(tcur, level);
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
if ((error = xfs_alloc_increment(tcur, level, &i)) ||
|
||||
if ((error = xfs_btree_increment(tcur, level, &i)) ||
|
||||
(error = xfs_alloc_updkey(tcur, rkp, level + 1)))
|
||||
goto error0;
|
||||
xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
|
||||
|
@ -1942,97 +1942,6 @@ xfs_alloc_get_rec(
|
|||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Increment cursor by one record at the level.
|
||||
* For nonzero levels the leaf-ward information is untouched.
|
||||
*/
|
||||
int /* error */
|
||||
xfs_alloc_increment(
|
||||
xfs_btree_cur_t *cur, /* btree cursor */
|
||||
int level, /* level in btree, 0 is leaf */
|
||||
int *stat) /* success/failure */
|
||||
{
|
||||
xfs_alloc_block_t *block; /* btree block */
|
||||
xfs_buf_t *bp; /* tree block buffer */
|
||||
int error; /* error return value */
|
||||
int lev; /* btree level */
|
||||
|
||||
ASSERT(level < cur->bc_nlevels);
|
||||
/*
|
||||
* Read-ahead to the right at this level.
|
||||
*/
|
||||
xfs_btree_readahead(cur, level, XFS_BTCUR_RIGHTRA);
|
||||
/*
|
||||
* Get a pointer to the btree block.
|
||||
*/
|
||||
bp = cur->bc_bufs[level];
|
||||
block = XFS_BUF_TO_ALLOC_BLOCK(bp);
|
||||
#ifdef DEBUG
|
||||
if ((error = xfs_btree_check_sblock(cur, block, level, bp)))
|
||||
return error;
|
||||
#endif
|
||||
/*
|
||||
* Increment the ptr at this level. If we're still in the block
|
||||
* then we're done.
|
||||
*/
|
||||
if (++cur->bc_ptrs[level] <= be16_to_cpu(block->bb_numrecs)) {
|
||||
*stat = 1;
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* If we just went off the right edge of the tree, return failure.
|
||||
*/
|
||||
if (be32_to_cpu(block->bb_rightsib) == NULLAGBLOCK) {
|
||||
*stat = 0;
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* March up the tree incrementing pointers.
|
||||
* Stop when we don't go off the right edge of a block.
|
||||
*/
|
||||
for (lev = level + 1; lev < cur->bc_nlevels; lev++) {
|
||||
bp = cur->bc_bufs[lev];
|
||||
block = XFS_BUF_TO_ALLOC_BLOCK(bp);
|
||||
#ifdef DEBUG
|
||||
if ((error = xfs_btree_check_sblock(cur, block, lev, bp)))
|
||||
return error;
|
||||
#endif
|
||||
if (++cur->bc_ptrs[lev] <= be16_to_cpu(block->bb_numrecs))
|
||||
break;
|
||||
/*
|
||||
* Read-ahead the right block, we're going to read it
|
||||
* in the next loop.
|
||||
*/
|
||||
xfs_btree_readahead(cur, lev, XFS_BTCUR_RIGHTRA);
|
||||
}
|
||||
/*
|
||||
* If we went off the root then we are seriously confused.
|
||||
*/
|
||||
ASSERT(lev < cur->bc_nlevels);
|
||||
/*
|
||||
* Now walk back down the tree, fixing up the cursor's buffer
|
||||
* pointers and key numbers.
|
||||
*/
|
||||
for (bp = cur->bc_bufs[lev], block = XFS_BUF_TO_ALLOC_BLOCK(bp);
|
||||
lev > level; ) {
|
||||
xfs_agblock_t agbno; /* block number of btree block */
|
||||
|
||||
agbno = be32_to_cpu(*XFS_ALLOC_PTR_ADDR(block, cur->bc_ptrs[lev], cur));
|
||||
if ((error = xfs_btree_read_bufs(cur->bc_mp, cur->bc_tp,
|
||||
cur->bc_private.a.agno, agbno, 0, &bp,
|
||||
XFS_ALLOC_BTREE_REF)))
|
||||
return error;
|
||||
lev--;
|
||||
xfs_btree_setbuf(cur, lev, bp);
|
||||
block = XFS_BUF_TO_ALLOC_BLOCK(bp);
|
||||
if ((error = xfs_btree_check_sblock(cur, block, lev, bp)))
|
||||
return error;
|
||||
cur->bc_ptrs[lev] = 1;
|
||||
}
|
||||
*stat = 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Insert the current record at the point referenced by cur.
|
||||
* The cursor may be inconsistent on return if splits have been done.
|
||||
|
|
|
@ -113,12 +113,6 @@ extern int xfs_alloc_delete(struct xfs_btree_cur *cur, int *stat);
|
|||
extern int xfs_alloc_get_rec(struct xfs_btree_cur *cur, xfs_agblock_t *bno,
|
||||
xfs_extlen_t *len, int *stat);
|
||||
|
||||
/*
|
||||
* Increment cursor by one record at the level.
|
||||
* For nonzero levels the leaf-ward information is untouched.
|
||||
*/
|
||||
extern int xfs_alloc_increment(struct xfs_btree_cur *cur, int level, int *stat);
|
||||
|
||||
/*
|
||||
* Insert the current record at the point referenced by cur.
|
||||
* The cursor may be inconsistent on return if splits have been done.
|
||||
|
|
|
@ -1646,7 +1646,7 @@ xfs_bmap_add_extent_unwritten_real(
|
|||
PREV.br_blockcount - new->br_blockcount,
|
||||
oldext)))
|
||||
goto done;
|
||||
if ((error = xfs_bmbt_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
goto done;
|
||||
if ((error = xfs_bmbt_update(cur, new->br_startoff,
|
||||
new->br_startblock,
|
||||
|
@ -3253,7 +3253,7 @@ xfs_bmap_del_extent(
|
|||
got.br_startblock, temp,
|
||||
got.br_state)))
|
||||
goto done;
|
||||
if ((error = xfs_bmbt_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
goto done;
|
||||
cur->bc_rec.b = new;
|
||||
error = xfs_bmbt_insert(cur, &i);
|
||||
|
|
|
@ -254,7 +254,7 @@ xfs_bmbt_delrec(
|
|||
if (rbno != NULLFSBLOCK) {
|
||||
i = xfs_btree_lastrec(tcur, level);
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
if ((error = xfs_bmbt_increment(tcur, level, &i))) {
|
||||
if ((error = xfs_btree_increment(tcur, level, &i))) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, ERROR);
|
||||
goto error0;
|
||||
}
|
||||
|
@ -445,7 +445,7 @@ xfs_bmbt_delrec(
|
|||
cur->bc_bufs[level] = lbp;
|
||||
cur->bc_ptrs[level] += lrecs;
|
||||
cur->bc_ra[level] = 0;
|
||||
} else if ((error = xfs_bmbt_increment(cur, level + 1, &i))) {
|
||||
} else if ((error = xfs_btree_increment(cur, level + 1, &i))) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, ERROR);
|
||||
goto error0;
|
||||
}
|
||||
|
@ -929,7 +929,7 @@ xfs_bmbt_lookup(
|
|||
if (dir == XFS_LOOKUP_GE && keyno > be16_to_cpu(block->bb_numrecs) &&
|
||||
be64_to_cpu(block->bb_rightsib) != NULLDFSBNO) {
|
||||
cur->bc_ptrs[0] = keyno;
|
||||
if ((error = xfs_bmbt_increment(cur, 0, &i))) {
|
||||
if ((error = xfs_btree_increment(cur, 0, &i))) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, ERROR);
|
||||
return error;
|
||||
}
|
||||
|
@ -1202,7 +1202,7 @@ xfs_bmbt_rshift(
|
|||
}
|
||||
i = xfs_btree_lastrec(tcur, level);
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
if ((error = xfs_bmbt_increment(tcur, level, &i))) {
|
||||
if ((error = xfs_btree_increment(tcur, level, &i))) {
|
||||
XFS_BMBT_TRACE_CURSOR(tcur, ERROR);
|
||||
goto error1;
|
||||
}
|
||||
|
@ -1760,86 +1760,6 @@ xfs_bmbt_disk_get_startoff(
|
|||
XFS_MASK64LO(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
|
||||
}
|
||||
|
||||
/*
|
||||
* Increment cursor by one record at the level.
|
||||
* For nonzero levels the leaf-ward information is untouched.
|
||||
*/
|
||||
int /* error */
|
||||
xfs_bmbt_increment(
|
||||
xfs_btree_cur_t *cur,
|
||||
int level,
|
||||
int *stat) /* success/failure */
|
||||
{
|
||||
xfs_bmbt_block_t *block;
|
||||
xfs_buf_t *bp;
|
||||
int error; /* error return value */
|
||||
xfs_fsblock_t fsbno;
|
||||
int lev;
|
||||
xfs_mount_t *mp;
|
||||
xfs_trans_t *tp;
|
||||
|
||||
XFS_BMBT_TRACE_CURSOR(cur, ENTRY);
|
||||
XFS_BMBT_TRACE_ARGI(cur, level);
|
||||
ASSERT(level < cur->bc_nlevels);
|
||||
|
||||
xfs_btree_readahead(cur, level, XFS_BTCUR_RIGHTRA);
|
||||
block = xfs_bmbt_get_block(cur, level, &bp);
|
||||
#ifdef DEBUG
|
||||
if ((error = xfs_btree_check_lblock(cur, block, level, bp))) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, ERROR);
|
||||
return error;
|
||||
}
|
||||
#endif
|
||||
if (++cur->bc_ptrs[level] <= be16_to_cpu(block->bb_numrecs)) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, EXIT);
|
||||
*stat = 1;
|
||||
return 0;
|
||||
}
|
||||
if (be64_to_cpu(block->bb_rightsib) == NULLDFSBNO) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, EXIT);
|
||||
*stat = 0;
|
||||
return 0;
|
||||
}
|
||||
for (lev = level + 1; lev < cur->bc_nlevels; lev++) {
|
||||
block = xfs_bmbt_get_block(cur, lev, &bp);
|
||||
#ifdef DEBUG
|
||||
if ((error = xfs_btree_check_lblock(cur, block, lev, bp))) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, ERROR);
|
||||
return error;
|
||||
}
|
||||
#endif
|
||||
if (++cur->bc_ptrs[lev] <= be16_to_cpu(block->bb_numrecs))
|
||||
break;
|
||||
xfs_btree_readahead(cur, lev, XFS_BTCUR_RIGHTRA);
|
||||
}
|
||||
if (lev == cur->bc_nlevels) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, EXIT);
|
||||
*stat = 0;
|
||||
return 0;
|
||||
}
|
||||
tp = cur->bc_tp;
|
||||
mp = cur->bc_mp;
|
||||
for (block = xfs_bmbt_get_block(cur, lev, &bp); lev > level; ) {
|
||||
fsbno = be64_to_cpu(*XFS_BMAP_PTR_IADDR(block, cur->bc_ptrs[lev], cur));
|
||||
if ((error = xfs_btree_read_bufl(mp, tp, fsbno, 0, &bp,
|
||||
XFS_BMAP_BTREE_REF))) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, ERROR);
|
||||
return error;
|
||||
}
|
||||
lev--;
|
||||
xfs_btree_setbuf(cur, lev, bp);
|
||||
block = XFS_BUF_TO_BMBT_BLOCK(bp);
|
||||
if ((error = xfs_btree_check_lblock(cur, block, lev, bp))) {
|
||||
XFS_BMBT_TRACE_CURSOR(cur, ERROR);
|
||||
return error;
|
||||
}
|
||||
cur->bc_ptrs[lev] = 1;
|
||||
}
|
||||
XFS_BMBT_TRACE_CURSOR(cur, EXIT);
|
||||
*stat = 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Insert the current record at the point referenced by cur.
|
||||
*
|
||||
|
|
|
@ -251,7 +251,6 @@ extern void xfs_bmbt_disk_get_all(xfs_bmbt_rec_t *r, xfs_bmbt_irec_t *s);
|
|||
extern xfs_filblks_t xfs_bmbt_disk_get_blockcount(xfs_bmbt_rec_t *r);
|
||||
extern xfs_fileoff_t xfs_bmbt_disk_get_startoff(xfs_bmbt_rec_t *r);
|
||||
|
||||
extern int xfs_bmbt_increment(struct xfs_btree_cur *, int, int *);
|
||||
extern int xfs_bmbt_insert(struct xfs_btree_cur *, int *);
|
||||
extern void xfs_bmbt_log_block(struct xfs_btree_cur *, struct xfs_buf *, int);
|
||||
extern void xfs_bmbt_log_recs(struct xfs_btree_cur *, struct xfs_buf *, int,
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
#include "xfs_dinode.h"
|
||||
#include "xfs_inode.h"
|
||||
#include "xfs_btree.h"
|
||||
#include "xfs_btree_trace.h"
|
||||
#include "xfs_ialloc.h"
|
||||
#include "xfs_error.h"
|
||||
|
||||
|
@ -949,3 +950,224 @@ xfs_btree_setbuf(
|
|||
cur->bc_ra[lev] |= XFS_BTCUR_RIGHTRA;
|
||||
}
|
||||
}
|
||||
|
||||
STATIC int
|
||||
xfs_btree_ptr_is_null(
|
||||
struct xfs_btree_cur *cur,
|
||||
union xfs_btree_ptr *ptr)
|
||||
{
|
||||
if (cur->bc_flags & XFS_BTREE_LONG_PTRS)
|
||||
return be64_to_cpu(ptr->l) == NULLFSBLOCK;
|
||||
else
|
||||
return be32_to_cpu(ptr->s) == NULLAGBLOCK;
|
||||
}
|
||||
|
||||
/*
|
||||
* Get/set/init sibling pointers
|
||||
*/
|
||||
STATIC void
|
||||
xfs_btree_get_sibling(
|
||||
struct xfs_btree_cur *cur,
|
||||
struct xfs_btree_block *block,
|
||||
union xfs_btree_ptr *ptr,
|
||||
int lr)
|
||||
{
|
||||
ASSERT(lr == XFS_BB_LEFTSIB || lr == XFS_BB_RIGHTSIB);
|
||||
|
||||
if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
|
||||
if (lr == XFS_BB_RIGHTSIB)
|
||||
ptr->l = block->bb_u.l.bb_rightsib;
|
||||
else
|
||||
ptr->l = block->bb_u.l.bb_leftsib;
|
||||
} else {
|
||||
if (lr == XFS_BB_RIGHTSIB)
|
||||
ptr->s = block->bb_u.s.bb_rightsib;
|
||||
else
|
||||
ptr->s = block->bb_u.s.bb_leftsib;
|
||||
}
|
||||
}
|
||||
|
||||
STATIC xfs_daddr_t
|
||||
xfs_btree_ptr_to_daddr(
|
||||
struct xfs_btree_cur *cur,
|
||||
union xfs_btree_ptr *ptr)
|
||||
{
|
||||
if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
|
||||
ASSERT(be64_to_cpu(ptr->l) != NULLFSBLOCK);
|
||||
|
||||
return XFS_FSB_TO_DADDR(cur->bc_mp, be64_to_cpu(ptr->l));
|
||||
} else {
|
||||
ASSERT(cur->bc_private.a.agno != NULLAGNUMBER);
|
||||
ASSERT(be32_to_cpu(ptr->s) != NULLAGBLOCK);
|
||||
|
||||
return XFS_AGB_TO_DADDR(cur->bc_mp, cur->bc_private.a.agno,
|
||||
be32_to_cpu(ptr->s));
|
||||
}
|
||||
}
|
||||
|
||||
STATIC void
|
||||
xfs_btree_set_refs(
|
||||
struct xfs_btree_cur *cur,
|
||||
struct xfs_buf *bp)
|
||||
{
|
||||
switch (cur->bc_btnum) {
|
||||
case XFS_BTNUM_BNO:
|
||||
case XFS_BTNUM_CNT:
|
||||
XFS_BUF_SET_VTYPE_REF(*bpp, B_FS_MAP, XFS_ALLOC_BTREE_REF);
|
||||
break;
|
||||
case XFS_BTNUM_INO:
|
||||
XFS_BUF_SET_VTYPE_REF(*bpp, B_FS_INOMAP, XFS_INO_BTREE_REF);
|
||||
break;
|
||||
case XFS_BTNUM_BMAP:
|
||||
XFS_BUF_SET_VTYPE_REF(*bpp, B_FS_MAP, XFS_BMAP_BTREE_REF);
|
||||
break;
|
||||
default:
|
||||
ASSERT(0);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Read in the buffer at the given ptr and return the buffer and
|
||||
* the block pointer within the buffer.
|
||||
*/
|
||||
STATIC int
|
||||
xfs_btree_read_buf_block(
|
||||
struct xfs_btree_cur *cur,
|
||||
union xfs_btree_ptr *ptr,
|
||||
int level,
|
||||
int flags,
|
||||
struct xfs_btree_block **block,
|
||||
struct xfs_buf **bpp)
|
||||
{
|
||||
struct xfs_mount *mp = cur->bc_mp;
|
||||
xfs_daddr_t d;
|
||||
int error;
|
||||
|
||||
/* need to sort out how callers deal with failures first */
|
||||
ASSERT(!(flags & XFS_BUF_TRYLOCK));
|
||||
|
||||
d = xfs_btree_ptr_to_daddr(cur, ptr);
|
||||
error = xfs_trans_read_buf(mp, cur->bc_tp, mp->m_ddev_targp, d,
|
||||
mp->m_bsize, flags, bpp);
|
||||
if (error)
|
||||
return error;
|
||||
|
||||
ASSERT(*bpp != NULL);
|
||||
ASSERT(!XFS_BUF_GETERROR(*bpp));
|
||||
|
||||
xfs_btree_set_refs(cur, *bpp);
|
||||
*block = XFS_BUF_TO_BLOCK(*bpp);
|
||||
|
||||
error = xfs_btree_check_block(cur, *block, level, *bpp);
|
||||
if (error)
|
||||
xfs_trans_brelse(cur->bc_tp, *bpp);
|
||||
return error;
|
||||
}
|
||||
|
||||
/*
|
||||
* Increment cursor by one record at the level.
|
||||
* For nonzero levels the leaf-ward information is untouched.
|
||||
*/
|
||||
int /* error */
|
||||
xfs_btree_increment(
|
||||
struct xfs_btree_cur *cur,
|
||||
int level,
|
||||
int *stat) /* success/failure */
|
||||
{
|
||||
struct xfs_btree_block *block;
|
||||
union xfs_btree_ptr ptr;
|
||||
struct xfs_buf *bp;
|
||||
int error; /* error return value */
|
||||
int lev;
|
||||
|
||||
XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
|
||||
XFS_BTREE_TRACE_ARGI(cur, level);
|
||||
|
||||
ASSERT(level < cur->bc_nlevels);
|
||||
|
||||
/* Read-ahead to the right at this level. */
|
||||
xfs_btree_readahead(cur, level, XFS_BTCUR_RIGHTRA);
|
||||
|
||||
/* Get a pointer to the btree block. */
|
||||
block = xfs_btree_get_block(cur, level, &bp);
|
||||
|
||||
#ifdef DEBUG
|
||||
error = xfs_btree_check_block(cur, block, level, bp);
|
||||
if (error)
|
||||
goto error0;
|
||||
#endif
|
||||
|
||||
/* We're done if we remain in the block after the increment. */
|
||||
if (++cur->bc_ptrs[level] <= xfs_btree_get_numrecs(block))
|
||||
goto out1;
|
||||
|
||||
/* Fail if we just went off the right edge of the tree. */
|
||||
xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_RIGHTSIB);
|
||||
if (xfs_btree_ptr_is_null(cur, &ptr))
|
||||
goto out0;
|
||||
|
||||
XFS_BTREE_STATS_INC(cur, increment);
|
||||
|
||||
/*
|
||||
* March up the tree incrementing pointers.
|
||||
* Stop when we don't go off the right edge of a block.
|
||||
*/
|
||||
for (lev = level + 1; lev < cur->bc_nlevels; lev++) {
|
||||
block = xfs_btree_get_block(cur, lev, &bp);
|
||||
|
||||
#ifdef DEBUG
|
||||
error = xfs_btree_check_block(cur, block, lev, bp);
|
||||
if (error)
|
||||
goto error0;
|
||||
#endif
|
||||
|
||||
if (++cur->bc_ptrs[lev] <= xfs_btree_get_numrecs(block))
|
||||
break;
|
||||
|
||||
/* Read-ahead the right block for the next loop. */
|
||||
xfs_btree_readahead(cur, lev, XFS_BTCUR_RIGHTRA);
|
||||
}
|
||||
|
||||
/*
|
||||
* If we went off the root then we are either seriously
|
||||
* confused or have the tree root in an inode.
|
||||
*/
|
||||
if (lev == cur->bc_nlevels) {
|
||||
if (cur->bc_flags & XFS_BTREE_ROOT_IN_INODE)
|
||||
goto out0;
|
||||
ASSERT(0);
|
||||
error = EFSCORRUPTED;
|
||||
goto error0;
|
||||
}
|
||||
ASSERT(lev < cur->bc_nlevels);
|
||||
|
||||
/*
|
||||
* Now walk back down the tree, fixing up the cursor's buffer
|
||||
* pointers and key numbers.
|
||||
*/
|
||||
for (block = xfs_btree_get_block(cur, lev, &bp); lev > level; ) {
|
||||
union xfs_btree_ptr *ptrp;
|
||||
|
||||
ptrp = xfs_btree_ptr_addr(cur, cur->bc_ptrs[lev], block);
|
||||
error = xfs_btree_read_buf_block(cur, ptrp, --lev,
|
||||
0, &block, &bp);
|
||||
if (error)
|
||||
goto error0;
|
||||
|
||||
xfs_btree_setbuf(cur, lev, bp);
|
||||
cur->bc_ptrs[lev] = 1;
|
||||
}
|
||||
out1:
|
||||
XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
|
||||
*stat = 1;
|
||||
return 0;
|
||||
|
||||
out0:
|
||||
XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
|
||||
*stat = 0;
|
||||
return 0;
|
||||
|
||||
error0:
|
||||
XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
|
||||
return error;
|
||||
}
|
||||
|
|
|
@ -502,9 +502,19 @@ xfs_btree_setbuf(
|
|||
struct xfs_buf *bp); /* new buffer to set */
|
||||
|
||||
|
||||
/*
|
||||
* Common btree core entry points.
|
||||
*/
|
||||
int xfs_btree_increment(struct xfs_btree_cur *, int, int *);
|
||||
|
||||
/*
|
||||
* Helpers.
|
||||
*/
|
||||
static inline int xfs_btree_get_numrecs(struct xfs_btree_block *block)
|
||||
{
|
||||
return be16_to_cpu(block->bb_numrecs);
|
||||
}
|
||||
|
||||
static inline int xfs_btree_get_level(struct xfs_btree_block *block)
|
||||
{
|
||||
return be16_to_cpu(block->bb_level);
|
||||
|
|
|
@ -695,7 +695,7 @@ nextag:
|
|||
goto error0;
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
freecount += rec.ir_freecount;
|
||||
if ((error = xfs_inobt_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
goto error0;
|
||||
} while (i == 1);
|
||||
|
||||
|
@ -753,7 +753,7 @@ nextag:
|
|||
/*
|
||||
* Search right with cur, go forward 1 record.
|
||||
*/
|
||||
if ((error = xfs_inobt_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
goto error1;
|
||||
doneright = !i;
|
||||
if (!doneright) {
|
||||
|
@ -835,7 +835,7 @@ nextag:
|
|||
* further right.
|
||||
*/
|
||||
else {
|
||||
if ((error = xfs_inobt_increment(cur, 0,
|
||||
if ((error = xfs_btree_increment(cur, 0,
|
||||
&i)))
|
||||
goto error1;
|
||||
doneright = !i;
|
||||
|
@ -890,7 +890,7 @@ nextag:
|
|||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
if (rec.ir_freecount > 0)
|
||||
break;
|
||||
if ((error = xfs_inobt_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
goto error0;
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
}
|
||||
|
@ -924,7 +924,7 @@ nextag:
|
|||
goto error0;
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
freecount += rec.ir_freecount;
|
||||
if ((error = xfs_inobt_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
goto error0;
|
||||
} while (i == 1);
|
||||
ASSERT(freecount == be32_to_cpu(agi->agi_freecount) ||
|
||||
|
@ -1033,7 +1033,7 @@ xfs_difree(
|
|||
goto error0;
|
||||
if (i) {
|
||||
freecount += rec.ir_freecount;
|
||||
if ((error = xfs_inobt_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
goto error0;
|
||||
}
|
||||
} while (i == 1);
|
||||
|
@ -1138,7 +1138,7 @@ xfs_difree(
|
|||
goto error0;
|
||||
if (i) {
|
||||
freecount += rec.ir_freecount;
|
||||
if ((error = xfs_inobt_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
goto error0;
|
||||
}
|
||||
} while (i == 1);
|
||||
|
|
|
@ -253,7 +253,7 @@ xfs_inobt_delrec(
|
|||
*/
|
||||
i = xfs_btree_lastrec(tcur, level);
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
if ((error = xfs_inobt_increment(tcur, level, &i)))
|
||||
if ((error = xfs_btree_increment(tcur, level, &i)))
|
||||
goto error0;
|
||||
XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
|
||||
i = xfs_btree_lastrec(tcur, level);
|
||||
|
@ -463,7 +463,7 @@ xfs_inobt_delrec(
|
|||
* us, increment the cursor at that level.
|
||||
*/
|
||||
else if (level + 1 < cur->bc_nlevels &&
|
||||
(error = xfs_alloc_increment(cur, level + 1, &i)))
|
||||
(error = xfs_btree_increment(cur, level + 1, &i)))
|
||||
return error;
|
||||
/*
|
||||
* Fix up the number of records in the surviving block.
|
||||
|
@ -1014,7 +1014,7 @@ xfs_inobt_lookup(
|
|||
int i;
|
||||
|
||||
cur->bc_ptrs[0] = keyno;
|
||||
if ((error = xfs_inobt_increment(cur, 0, &i)))
|
||||
if ((error = xfs_btree_increment(cur, 0, &i)))
|
||||
return error;
|
||||
ASSERT(i == 1);
|
||||
*stat = 1;
|
||||
|
@ -1443,7 +1443,7 @@ xfs_inobt_rshift(
|
|||
if ((error = xfs_btree_dup_cursor(cur, &tcur)))
|
||||
return error;
|
||||
xfs_btree_lastrec(tcur, level);
|
||||
if ((error = xfs_inobt_increment(tcur, level, &i)) ||
|
||||
if ((error = xfs_btree_increment(tcur, level, &i)) ||
|
||||
(error = xfs_inobt_updkey(tcur, rkp, level + 1))) {
|
||||
xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR);
|
||||
return error;
|
||||
|
@ -1820,97 +1820,6 @@ xfs_inobt_get_rec(
|
|||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Increment cursor by one record at the level.
|
||||
* For nonzero levels the leaf-ward information is untouched.
|
||||
*/
|
||||
int /* error */
|
||||
xfs_inobt_increment(
|
||||
xfs_btree_cur_t *cur, /* btree cursor */
|
||||
int level, /* level in btree, 0 is leaf */
|
||||
int *stat) /* success/failure */
|
||||
{
|
||||
xfs_inobt_block_t *block; /* btree block */
|
||||
xfs_buf_t *bp; /* buffer containing btree block */
|
||||
int error; /* error return value */
|
||||
int lev; /* btree level */
|
||||
|
||||
ASSERT(level < cur->bc_nlevels);
|
||||
/*
|
||||
* Read-ahead to the right at this level.
|
||||
*/
|
||||
xfs_btree_readahead(cur, level, XFS_BTCUR_RIGHTRA);
|
||||
/*
|
||||
* Get a pointer to the btree block.
|
||||
*/
|
||||
bp = cur->bc_bufs[level];
|
||||
block = XFS_BUF_TO_INOBT_BLOCK(bp);
|
||||
#ifdef DEBUG
|
||||
if ((error = xfs_btree_check_sblock(cur, block, level, bp)))
|
||||
return error;
|
||||
#endif
|
||||
/*
|
||||
* Increment the ptr at this level. If we're still in the block
|
||||
* then we're done.
|
||||
*/
|
||||
if (++cur->bc_ptrs[level] <= be16_to_cpu(block->bb_numrecs)) {
|
||||
*stat = 1;
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* If we just went off the right edge of the tree, return failure.
|
||||
*/
|
||||
if (be32_to_cpu(block->bb_rightsib) == NULLAGBLOCK) {
|
||||
*stat = 0;
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* March up the tree incrementing pointers.
|
||||
* Stop when we don't go off the right edge of a block.
|
||||
*/
|
||||
for (lev = level + 1; lev < cur->bc_nlevels; lev++) {
|
||||
bp = cur->bc_bufs[lev];
|
||||
block = XFS_BUF_TO_INOBT_BLOCK(bp);
|
||||
#ifdef DEBUG
|
||||
if ((error = xfs_btree_check_sblock(cur, block, lev, bp)))
|
||||
return error;
|
||||
#endif
|
||||
if (++cur->bc_ptrs[lev] <= be16_to_cpu(block->bb_numrecs))
|
||||
break;
|
||||
/*
|
||||
* Read-ahead the right block, we're going to read it
|
||||
* in the next loop.
|
||||
*/
|
||||
xfs_btree_readahead(cur, lev, XFS_BTCUR_RIGHTRA);
|
||||
}
|
||||
/*
|
||||
* If we went off the root then we are seriously confused.
|
||||
*/
|
||||
ASSERT(lev < cur->bc_nlevels);
|
||||
/*
|
||||
* Now walk back down the tree, fixing up the cursor's buffer
|
||||
* pointers and key numbers.
|
||||
*/
|
||||
for (bp = cur->bc_bufs[lev], block = XFS_BUF_TO_INOBT_BLOCK(bp);
|
||||
lev > level; ) {
|
||||
xfs_agblock_t agbno; /* block number of btree block */
|
||||
|
||||
agbno = be32_to_cpu(*XFS_INOBT_PTR_ADDR(block, cur->bc_ptrs[lev], cur));
|
||||
if ((error = xfs_btree_read_bufs(cur->bc_mp, cur->bc_tp,
|
||||
cur->bc_private.a.agno, agbno, 0, &bp,
|
||||
XFS_INO_BTREE_REF)))
|
||||
return error;
|
||||
lev--;
|
||||
xfs_btree_setbuf(cur, lev, bp);
|
||||
block = XFS_BUF_TO_INOBT_BLOCK(bp);
|
||||
if ((error = xfs_btree_check_sblock(cur, block, lev, bp)))
|
||||
return error;
|
||||
cur->bc_ptrs[lev] = 1;
|
||||
}
|
||||
*stat = 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Insert the current record at the point referenced by cur.
|
||||
* The cursor may be inconsistent on return if splits have been done.
|
||||
|
|
|
@ -135,12 +135,6 @@ extern int xfs_inobt_delete(struct xfs_btree_cur *cur, int *stat);
|
|||
extern int xfs_inobt_get_rec(struct xfs_btree_cur *cur, xfs_agino_t *ino,
|
||||
__int32_t *fcnt, xfs_inofree_t *free, int *stat);
|
||||
|
||||
/*
|
||||
* Increment cursor by one record at the level.
|
||||
* For nonzero levels the leaf-ward information is untouched.
|
||||
*/
|
||||
extern int xfs_inobt_increment(struct xfs_btree_cur *cur, int level, int *stat);
|
||||
|
||||
/*
|
||||
* Insert the current record at the point referenced by cur.
|
||||
* The cursor may be inconsistent on return if splits have been done.
|
||||
|
|
|
@ -471,7 +471,7 @@ xfs_bulkstat(
|
|||
* In any case, increment to the next record.
|
||||
*/
|
||||
if (!error)
|
||||
error = xfs_inobt_increment(cur, 0, &tmp);
|
||||
error = xfs_btree_increment(cur, 0, &tmp);
|
||||
} else {
|
||||
/*
|
||||
* Start of ag. Lookup the first inode chunk.
|
||||
|
@ -538,7 +538,7 @@ xfs_bulkstat(
|
|||
* Set agino to after this chunk and bump the cursor.
|
||||
*/
|
||||
agino = gino + XFS_INODES_PER_CHUNK;
|
||||
error = xfs_inobt_increment(cur, 0, &tmp);
|
||||
error = xfs_btree_increment(cur, 0, &tmp);
|
||||
cond_resched();
|
||||
}
|
||||
/*
|
||||
|
@ -885,7 +885,7 @@ xfs_inumbers(
|
|||
bufidx = 0;
|
||||
}
|
||||
if (left) {
|
||||
error = xfs_inobt_increment(cur, 0, &tmp);
|
||||
error = xfs_btree_increment(cur, 0, &tmp);
|
||||
if (error) {
|
||||
xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
|
||||
cur = NULL;
|
||||
|
|
Loading…
Reference in a new issue