* Get the root node for a radix tree. */
| 233 | * Get the root node for a radix tree. |
| 234 | */ |
| 235 | static __inline struct vm_radix_node * |
| 236 | vm_radix_root_load(struct vm_radix *rtree, enum vm_radix_access access) |
| 237 | { |
| 238 | |
| 239 | return (vm_radix_node_load((smrnode_t *)&rtree->rt_root, access)); |
| 240 | } |
| 241 | |
| 242 | /* |
| 243 | * Set the root node for a radix tree. |
no test coverage detected