Home
last modified time | relevance | path

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

/Linux-v6.1/fs/btrfs/
Dctree.c2544 int push_items = 0; in push_node_left() local
2551 push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems; in push_node_left()
2558 if (push_items <= 0) in push_node_left()
2562 push_items = min(src_nritems, push_items); in push_node_left()
2563 if (push_items < src_nritems) { in push_node_left()
2567 if (src_nritems - push_items < 8) { in push_node_left()
2568 if (push_items <= 8) in push_node_left()
2570 push_items -= 8; in push_node_left()
2574 push_items = min(src_nritems - 8, push_items); in push_node_left()
2582 ret = btrfs_tree_mod_log_eb_copy(dst, src, dst_nritems, 0, push_items); in push_node_left()
[all …]