| 1106 | } |
| 1107 | |
| 1108 | static void |
| 1109 | rn_detachhead_internal(struct radix_head *head) |
| 1110 | { |
| 1111 | |
| 1112 | KASSERT((head != NULL), |
| 1113 | ("%s: head already freed", __func__)); |
| 1114 | |
| 1115 | /* Free <left,root,right> nodes. */ |
| 1116 | R_Free(head); |
| 1117 | } |
| 1118 | |
| 1119 | /* Functions used by 'struct radix_node_head' users */ |
| 1120 |