| 261 | |
| 262 | #ifdef VIMAGE |
| 263 | static void |
| 264 | udp_destroy(void *unused __unused) |
| 265 | { |
| 266 | |
| 267 | in_pcbinfo_destroy(&V_udbinfo); |
| 268 | uma_zdestroy(V_udpcb_zone); |
| 269 | } |
| 270 | VNET_SYSUNINIT(udp, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, udp_destroy, NULL); |
| 271 | |
| 272 | static void |
nothing calls this directly
no test coverage detected