| 1515 | } |
| 1516 | |
| 1517 | static void |
| 1518 | def_policy_uninit(const void *unused __unused) |
| 1519 | { |
| 1520 | |
| 1521 | if (V_def_policy != NULL) { |
| 1522 | key_freesp(&V_def_policy); |
| 1523 | key_bumpspgen(); |
| 1524 | } |
| 1525 | } |
| 1526 | |
| 1527 | VNET_SYSINIT(def_policy_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_FIRST, |
| 1528 | def_policy_init, NULL); |
nothing calls this directly
no test coverage detected