Lines Matching refs:next_free
1602 int next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_shift_records_right() local
1606 BUG_ON(!next_free); in ocfs2_shift_records_right()
1608 BUG_ON(next_free >= count); in ocfs2_shift_records_right()
1610 num_bytes = sizeof(struct ocfs2_extent_rec) * next_free; in ocfs2_shift_records_right()
1618 int i, insert_index, next_free, has_empty, num_bytes; in ocfs2_rotate_leaf() local
1622 next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_rotate_leaf()
1625 BUG_ON(!next_free); in ocfs2_rotate_leaf()
1640 for(i = 0; i < (next_free - 1); i++) in ocfs2_rotate_leaf()
1643 next_free--; in ocfs2_rotate_leaf()
1649 for(i = 0; i < next_free; i++) { in ocfs2_rotate_leaf()
1658 has_empty, next_free, in ocfs2_rotate_leaf()
1663 BUG_ON(insert_index > next_free); in ocfs2_rotate_leaf()
1668 if (insert_index != next_free) { in ocfs2_rotate_leaf()
1669 BUG_ON(next_free >= le16_to_cpu(el->l_count)); in ocfs2_rotate_leaf()
1671 num_bytes = next_free - insert_index; in ocfs2_rotate_leaf()
1683 next_free++; in ocfs2_rotate_leaf()
1684 el->l_next_free_rec = cpu_to_le16(next_free); in ocfs2_rotate_leaf()
1719 int next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_create_empty_extent() local
1723 if (next_free == 0) in ocfs2_create_empty_extent()
2317 int next_free; in ocfs2_rotate_requires_path_adjustment() local
2320 next_free = le16_to_cpu(left_el->l_next_free_rec); in ocfs2_rotate_requires_path_adjustment()
2321 rec = &left_el->l_recs[next_free - 1]; in ocfs2_rotate_requires_path_adjustment()
2330 int next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_leftmost_rec_contains() local
2334 if (next_free == 0) in ocfs2_leftmost_rec_contains()
2340 if (next_free == 1) in ocfs2_leftmost_rec_contains()
2827 int next_free; in ocfs2_find_cpos_for_right_leaf() local
2835 next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_find_cpos_for_right_leaf()
2838 if (j == (next_free - 1)) { in ocfs2_find_cpos_for_right_leaf()
3353 int ret, next_free, i; in ocfs2_merge_rec_right() local
3377 next_free = le16_to_cpu(right_el->l_next_free_rec); in ocfs2_merge_rec_right()
3378 BUG_ON(next_free <= 0); in ocfs2_merge_rec_right()
3381 BUG_ON(next_free <= 1); in ocfs2_merge_rec_right()
3959 int i, next_free; in ocfs2_adjust_rightmost_records() local
3971 next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_adjust_rightmost_records()
3972 if (next_free == 0) { in ocfs2_adjust_rightmost_records()
3979 rec = &el->l_recs[next_free - 1]; in ocfs2_adjust_rightmost_records()
3997 int ret, next_free; in ocfs2_append_rec_to_path() local
4015 next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_append_rec_to_path()
4016 if (next_free == 0 || in ocfs2_append_rec_to_path()
4017 (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0]))) { in ocfs2_append_rec_to_path()
5457 int next_free; in ocfs2_truncate_rec() local
5462 next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_truncate_rec()
5463 if (is_rightmost_tree_rec && next_free > 1) { in ocfs2_truncate_rec()
5468 rec = &el->l_recs[next_free - 1]; in ocfs2_truncate_rec()