Searched refs:keep_count (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | btree.c | 718 uint32_t keep_count = BTREE_CORE_ELEMS - move_count - 1; in zfs_btree_insert_into_parent() local 729 par_hdr->bth_count = keep_count; in zfs_btree_insert_into_parent() 731 bt_transfer_core(tree, parent, keep_count + 1, move_count, new_parent, in zfs_btree_insert_into_parent() 736 bcpy(parent->btc_elems + keep_count * size, tmp_buf, in zfs_btree_insert_into_parent() 740 if (offset < keep_count) { in zfs_btree_insert_into_parent() 749 } else if (offset > keep_count) { in zfs_btree_insert_into_parent() 753 offset - keep_count - 1, new_node, buf); in zfs_btree_insert_into_parent() 842 uint32_t keep_count = capacity - move_count - 1; in zfs_btree_insert_into_leaf() local 843 ASSERT3U(keep_count, >=, 1); in zfs_btree_insert_into_leaf() 845 if (idx < keep_count) { in zfs_btree_insert_into_leaf() [all …]
|