| 8244 | |
| 8245 | #ifdef VIMAGE |
| 8246 | void |
| 8247 | spdcache_destroy(void) |
| 8248 | { |
| 8249 | int i; |
| 8250 | |
| 8251 | if (SPDCACHE_ENABLED()) { |
| 8252 | spdcache_clear(); |
| 8253 | hashdestroy(V_spdcachehashtbl, M_IPSEC_SPDCACHE, V_spdcachehash_mask); |
| 8254 | |
| 8255 | for (i = 0; i < V_spdcachehash_mask + 1; ++i) |
| 8256 | SPDCACHE_LOCK_DESTROY(i); |
| 8257 | |
| 8258 | free(V_spdcache_lock, M_IPSEC_SPDCACHE); |
| 8259 | } |
| 8260 | } |
| 8261 | #endif |
| 8262 | void |
| 8263 | key_init(void) |
no test coverage detected