* Module is being unloaded or machine is shutting down. Take care of cleanup. */
| 1506 | * Module is being unloaded or machine is shutting down. Take care of cleanup. |
| 1507 | */ |
| 1508 | static int |
| 1509 | deinit_siftr(void) |
| 1510 | { |
| 1511 | /* Cleanup. */ |
| 1512 | siftr_manage_ops(SIFTR_DISABLE); |
| 1513 | hashdestroy(counter_hash, M_SIFTR, siftr_hashmask); |
| 1514 | mtx_destroy(&siftr_pkt_queue_mtx); |
| 1515 | mtx_destroy(&siftr_pkt_mgr_mtx); |
| 1516 | |
| 1517 | return (0); |
| 1518 | } |
| 1519 | |
| 1520 | /* |
| 1521 | * Module has just been loaded into the kernel. |
no test coverage detected