Actions
Submit #2765
closed[PATCH] sys/vfs/hammer: make btree_search() climb up btree slightly faster
Description
This cleanup patch lets cursor climb up deep/fat btree slightly faster (lightweight), if not slower.
The local variable enospc won't be anything other than 0 at this point thus (&& enospc == 0) isn't necessary here. Also node type checking is redundant as they both use btree_node_is_full(). There used to be btree_node_is_almost_full() and internal/leaf needed to be separated by if/else but not anymore.
Files
Updated by tuxillo almost 10 years ago
- Assignee set to tuxillo
- Target version set to 4.2
Updated by tkusumi almost 10 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset a9fd59b8032d8b40869dd1ff92c0b44dff59ed87.
Actions