We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7667ea commit 05eb2b3Copy full SHA for 05eb2b3
src/crimson/os/seastore/btree/fixed_kv_btree.h
@@ -312,17 +312,6 @@ class FixedKVBtree {
312
}
313
return get_depth();
314
315
-
316
- depth_t check_merge() const {
317
- if (!leaf.node->below_min_capacity()) {
318
- return 0;
319
- }
320
- for (depth_t merge_from = 1; merge_from < get_depth(); ++merge_from) {
321
- if (!get_internal(merge_from + 1).node->below_min_capacity())
322
- return merge_from;
323
324
- return get_depth();
325
326
};
327
328
FixedKVBtree(RootBlockRef &root_block) : root_block(root_block) {}
0 commit comments