• Home
  • Raw
  • Download

Lines Matching refs:state

29 static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
629 xfs_da_state_t *state) /* state to fill in */ in xfs_dir2_leafn_lookup_for_addname() argument
664 if (state->extravalid) { in xfs_dir2_leafn_lookup_for_addname()
666 curbp = state->extrablk.bp; in xfs_dir2_leafn_lookup_for_addname()
667 curfdb = state->extrablk.blkno; in xfs_dir2_leafn_lookup_for_addname()
752 state->extravalid = 1; in xfs_dir2_leafn_lookup_for_addname()
753 state->extrablk.bp = curbp; in xfs_dir2_leafn_lookup_for_addname()
754 state->extrablk.index = fi; in xfs_dir2_leafn_lookup_for_addname()
755 state->extrablk.blkno = curfdb; in xfs_dir2_leafn_lookup_for_addname()
762 state->extrablk.magic = XFS_DIR2_FREE_MAGIC; in xfs_dir2_leafn_lookup_for_addname()
764 state->extravalid = 0; in xfs_dir2_leafn_lookup_for_addname()
782 xfs_da_state_t *state) /* state to fill in */ in xfs_dir2_leafn_lookup_for_entry() argument
817 if (state->extravalid) { in xfs_dir2_leafn_lookup_for_entry()
818 curbp = state->extrablk.bp; in xfs_dir2_leafn_lookup_for_entry()
819 curdb = state->extrablk.blkno; in xfs_dir2_leafn_lookup_for_entry()
849 curdb != state->extrablk.blkno)) in xfs_dir2_leafn_lookup_for_entry()
856 newdb == state->extrablk.blkno) { in xfs_dir2_leafn_lookup_for_entry()
857 ASSERT(state->extravalid); in xfs_dir2_leafn_lookup_for_entry()
858 curbp = state->extrablk.bp; in xfs_dir2_leafn_lookup_for_entry()
885 curdb != state->extrablk.blkno) in xfs_dir2_leafn_lookup_for_entry()
886 xfs_trans_brelse(tp, state->extrablk.bp); in xfs_dir2_leafn_lookup_for_entry()
891 state->extravalid = 1; in xfs_dir2_leafn_lookup_for_entry()
892 state->extrablk.bp = curbp; in xfs_dir2_leafn_lookup_for_entry()
893 state->extrablk.blkno = curdb; in xfs_dir2_leafn_lookup_for_entry()
894 state->extrablk.index = (int)((char *)dep - in xfs_dir2_leafn_lookup_for_entry()
896 state->extrablk.magic = XFS_DIR2_DATA_MAGIC; in xfs_dir2_leafn_lookup_for_entry()
907 state->extravalid = 1; in xfs_dir2_leafn_lookup_for_entry()
908 state->extrablk.bp = curbp; in xfs_dir2_leafn_lookup_for_entry()
909 state->extrablk.index = -1; in xfs_dir2_leafn_lookup_for_entry()
910 state->extrablk.blkno = curdb; in xfs_dir2_leafn_lookup_for_entry()
911 state->extrablk.magic = XFS_DIR2_DATA_MAGIC; in xfs_dir2_leafn_lookup_for_entry()
916 if (state->extrablk.bp != curbp) in xfs_dir2_leafn_lookup_for_entry()
920 state->extravalid = 0; in xfs_dir2_leafn_lookup_for_entry()
936 xfs_da_state_t *state) /* state to fill in */ in xfs_dir2_leafn_lookup_int() argument
940 state); in xfs_dir2_leafn_lookup_int()
941 return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state); in xfs_dir2_leafn_lookup_int()
1062 xfs_da_state_t *state, /* btree cursor */ in xfs_dir2_leafn_rebalance() argument
1081 struct xfs_inode *dp = state->args->dp; in xfs_dir2_leafn_rebalance()
1083 args = state->args; in xfs_dir2_leafn_rebalance()
1154 state->inleaf = swap_blocks; in xfs_dir2_leafn_rebalance()
1156 state->inleaf = !swap_blocks; in xfs_dir2_leafn_rebalance()
1158 state->inleaf = swap_blocks ^ (blk1->index <= hdr1.count); in xfs_dir2_leafn_rebalance()
1162 if (!state->inleaf) in xfs_dir2_leafn_rebalance()
1170 state->inleaf = 1; in xfs_dir2_leafn_rebalance()
1419 xfs_da_state_t *state, /* btree cursor */ in xfs_dir2_leafn_split() argument
1431 args = state->args; in xfs_dir2_leafn_split()
1452 xfs_dir2_leafn_rebalance(state, oldblk, newblk); in xfs_dir2_leafn_split()
1453 error = xfs_da3_blk_link(state, oldblk, newblk); in xfs_dir2_leafn_split()
1460 if (state->inleaf) in xfs_dir2_leafn_split()
1485 xfs_da_state_t *state, /* btree cursor */ in xfs_dir2_leafn_toosmall() argument
1500 struct xfs_inode *dp = state->args->dp; in xfs_dir2_leafn_toosmall()
1507 blk = &state->path.blk[state->path.active - 1]; in xfs_dir2_leafn_toosmall()
1514 bytes = state->args->geo->leaf_hdr_size + count * sizeof(ents[0]); in xfs_dir2_leafn_toosmall()
1515 if (bytes > (state->args->geo->blksize >> 1)) { in xfs_dir2_leafn_toosmall()
1534 memcpy(&state->altpath, &state->path, sizeof(state->path)); in xfs_dir2_leafn_toosmall()
1535 error = xfs_da3_path_shift(state, &state->altpath, forward, 0, in xfs_dir2_leafn_toosmall()
1559 error = xfs_dir3_leafn_read(state->args->trans, dp, blkno, &bp); in xfs_dir2_leafn_toosmall()
1567 bytes = state->args->geo->blksize - in xfs_dir2_leafn_toosmall()
1568 (state->args->geo->blksize >> 2); in xfs_dir2_leafn_toosmall()
1581 xfs_trans_brelse(state->args->trans, bp); in xfs_dir2_leafn_toosmall()
1595 memcpy(&state->altpath, &state->path, sizeof(state->path)); in xfs_dir2_leafn_toosmall()
1597 error = xfs_da3_path_shift(state, &state->altpath, forward, 0, in xfs_dir2_leafn_toosmall()
1600 error = xfs_da3_path_shift(state, &state->path, forward, 0, in xfs_dir2_leafn_toosmall()
1615 xfs_da_state_t *state, /* cursor */ in xfs_dir2_leafn_unbalance() argument
1626 struct xfs_inode *dp = state->args->dp; in xfs_dir2_leafn_unbalance()
1628 args = state->args; in xfs_dir2_leafn_unbalance()
2011 xfs_da_state_t *state; /* btree cursor */ in xfs_dir2_node_addname() local
2018 state = xfs_da_state_alloc(args); in xfs_dir2_node_addname()
2023 error = xfs_da3_node_lookup_int(state, &rval); in xfs_dir2_node_addname()
2034 state->extravalid ? &state->extrablk : NULL); in xfs_dir2_node_addname()
2038 blk = &state->path.blk[state->path.active - 1]; in xfs_dir2_node_addname()
2049 xfs_da3_fixhashpath(state, &state->path); in xfs_dir2_node_addname()
2061 rval = xfs_da3_split(state); in xfs_dir2_node_addname()
2064 xfs_da_state_free(state); in xfs_dir2_node_addname()
2080 xfs_da_state_t *state; /* btree cursor */ in xfs_dir2_node_lookup() local
2087 state = xfs_da_state_alloc(args); in xfs_dir2_node_lookup()
2092 error = xfs_da3_node_lookup_int(state, &rval); in xfs_dir2_node_lookup()
2100 ((char *)state->extrablk.bp->b_addr + in xfs_dir2_node_lookup()
2101 state->extrablk.index); in xfs_dir2_node_lookup()
2107 for (i = 0; i < state->path.active; i++) { in xfs_dir2_node_lookup()
2108 xfs_trans_brelse(args->trans, state->path.blk[i].bp); in xfs_dir2_node_lookup()
2109 state->path.blk[i].bp = NULL; in xfs_dir2_node_lookup()
2114 if (state->extravalid && state->extrablk.bp) { in xfs_dir2_node_lookup()
2115 xfs_trans_brelse(args->trans, state->extrablk.bp); in xfs_dir2_node_lookup()
2116 state->extrablk.bp = NULL; in xfs_dir2_node_lookup()
2118 xfs_da_state_free(state); in xfs_dir2_node_lookup()
2132 struct xfs_da_state *state; /* btree cursor */ in xfs_dir2_node_removename() local
2139 state = xfs_da_state_alloc(args); in xfs_dir2_node_removename()
2142 error = xfs_da3_node_lookup_int(state, &rval); in xfs_dir2_node_removename()
2152 blk = &state->path.blk[state->path.active - 1]; in xfs_dir2_node_removename()
2154 ASSERT(state->extravalid); in xfs_dir2_node_removename()
2160 &state->extrablk, &rval); in xfs_dir2_node_removename()
2166 xfs_da3_fixhashpath(state, &state->path); in xfs_dir2_node_removename()
2170 if (rval && state->path.active > 1) in xfs_dir2_node_removename()
2171 error = xfs_da3_join(state); in xfs_dir2_node_removename()
2176 error = xfs_dir2_node_to_leaf(state); in xfs_dir2_node_removename()
2178 xfs_da_state_free(state); in xfs_dir2_node_removename()
2197 xfs_da_state_t *state; /* btree cursor */ in xfs_dir2_node_replace() local
2204 state = xfs_da_state_alloc(args); in xfs_dir2_node_replace()
2216 error = xfs_da3_node_lookup_int(state, &rval); in xfs_dir2_node_replace()
2230 blk = &state->path.blk[state->path.active - 1]; in xfs_dir2_node_replace()
2232 ASSERT(state->extravalid); in xfs_dir2_node_replace()
2234 xfs_dir2_leaf_hdr_from_disk(state->mp, &leafhdr, in xfs_dir2_node_replace()
2239 hdr = state->extrablk.bp->b_addr; in xfs_dir2_node_replace()
2251 xfs_dir2_data_put_ftype(state->mp, dep, ftype); in xfs_dir2_node_replace()
2252 xfs_dir2_data_log_entry(args, state->extrablk.bp, dep); in xfs_dir2_node_replace()
2258 else if (state->extravalid) { in xfs_dir2_node_replace()
2259 xfs_trans_brelse(args->trans, state->extrablk.bp); in xfs_dir2_node_replace()
2260 state->extrablk.bp = NULL; in xfs_dir2_node_replace()
2265 for (i = 0; i < state->path.active; i++) { in xfs_dir2_node_replace()
2266 xfs_trans_brelse(args->trans, state->path.blk[i].bp); in xfs_dir2_node_replace()
2267 state->path.blk[i].bp = NULL; in xfs_dir2_node_replace()
2269 xfs_da_state_free(state); in xfs_dir2_node_replace()