| 380 | } |
| 381 | |
| 382 | static void |
| 383 | vnet_enc_init(const void *unused __unused) |
| 384 | { |
| 385 | |
| 386 | V_enc_sc = NULL; |
| 387 | V_enc_cloner = if_clone_simple(encname, enc_clone_create, |
| 388 | enc_clone_destroy, 1); |
| 389 | } |
| 390 | VNET_SYSINIT(vnet_enc_init, SI_SUB_PSEUDO, SI_ORDER_ANY, |
| 391 | vnet_enc_init, NULL); |
| 392 |
nothing calls this directly
no test coverage detected