Searched refs:keep_count (Results 1 – 1 of 1) sorted by relevance
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | btree.c | 682 uint32_t keep_count = BTREE_CORE_ELEMS - move_count - 1; in zfs_btree_insert_into_parent() local 693 par_hdr->bth_count = keep_count; in zfs_btree_insert_into_parent() 695 bt_transfer_core(tree, parent, keep_count + 1, move_count, new_parent, in zfs_btree_insert_into_parent() 700 bcpy(parent->btc_elems + keep_count * size, tmp_buf, in zfs_btree_insert_into_parent() 704 if (offset < keep_count) { in zfs_btree_insert_into_parent() 713 } else if (offset > keep_count) { in zfs_btree_insert_into_parent() 717 offset - keep_count - 1, new_node, buf); in zfs_btree_insert_into_parent() 806 uint32_t keep_count = capacity - move_count - 1; in zfs_btree_insert_into_leaf() local 807 ASSERT3U(keep_count, >=, 1); in zfs_btree_insert_into_leaf() 809 if (idx < keep_count) { in zfs_btree_insert_into_leaf() [all …]
|