| 391 | vnet_enc_init, NULL); |
| 392 | |
| 393 | static void |
| 394 | vnet_enc_init_proto(void *unused __unused) |
| 395 | { |
| 396 | KASSERT(V_enc_sc != NULL, ("%s: V_enc_sc is %p\n", __func__, V_enc_sc)); |
| 397 | |
| 398 | if (enc_add_hhooks(V_enc_sc) != 0) |
| 399 | enc_clone_destroy(V_enc_sc->sc_ifp); |
| 400 | } |
| 401 | VNET_SYSINIT(vnet_enc_init_proto, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY, |
| 402 | vnet_enc_init_proto, NULL); |
| 403 |
nothing calls this directly
no test coverage detected