* Get the root node for a tree. */
| 209 | * Get the root node for a tree. |
| 210 | */ |
| 211 | static __inline struct pctrie_node * |
| 212 | pctrie_root_load(struct pctrie *ptree, smr_t smr, enum pctrie_access access) |
| 213 | { |
| 214 | return (pctrie_node_load((smr_pctnode_t *)&ptree->pt_root, smr, access)); |
| 215 | } |
| 216 | |
| 217 | /* |
| 218 | * Set the root node for a tree. |
no test coverage detected