Home
last modified time | relevance | path

Searched refs:push_items (Results 1 – 1 of 1) sorted by relevance

/Linux-v5.10/fs/btrfs/
Dctree.c3248 int push_items = 0; in push_node_left() local
3255 push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems; in push_node_left()
3262 if (push_items <= 0) in push_node_left()
3266 push_items = min(src_nritems, push_items); in push_node_left()
3267 if (push_items < src_nritems) { in push_node_left()
3271 if (src_nritems - push_items < 8) { in push_node_left()
3272 if (push_items <= 8) in push_node_left()
3274 push_items -= 8; in push_node_left()
3278 push_items = min(src_nritems - 8, push_items); in push_node_left()
3286 ret = tree_mod_log_eb_copy(dst, src, dst_nritems, 0, push_items); in push_node_left()
[all …]