| 140 | } |
| 141 | |
| 142 | struct rt_varea *_aspace_bst_search_overlap(struct rt_aspace *aspace, |
| 143 | struct _mm_range range) |
| 144 | { |
| 145 | struct util_avl_root *root = &aspace->tree.tree; |
| 146 | return search(root, range, compare_overlap); |
| 147 | } |
| 148 | |
| 149 | void _aspace_bst_insert(struct rt_aspace *aspace, struct rt_varea *varea) |
| 150 | { |
no test coverage detected