| 307 | } |
| 308 | |
| 309 | int |
| 310 | nhgrp_ctl_init(struct nh_control *ctl) |
| 311 | { |
| 312 | |
| 313 | /* |
| 314 | * By default, do not allocate datastructures as multipath |
| 315 | * routes will not be necessarily used. |
| 316 | */ |
| 317 | CHT_SLIST_INIT(&ctl->gr_head, NULL, 0); |
| 318 | bitmask_init(&ctl->gr_idx_head, NULL, 0); |
| 319 | return (0); |
| 320 | } |
| 321 | |
| 322 | void |
| 323 | nhgrp_ctl_free(struct nh_control *ctl) |
nothing calls this directly
no test coverage detected