| 191 | } |
| 192 | |
| 193 | void |
| 194 | xform_detach(void *data) |
| 195 | { |
| 196 | struct xformsw *xsp = (struct xformsw *)data; |
| 197 | |
| 198 | XFORMS_LOCK(); |
| 199 | LIST_REMOVE(xsp, chain); |
| 200 | XFORMS_UNLOCK(); |
| 201 | |
| 202 | /* Delete all SAs related to this xform. */ |
| 203 | key_delete_xform(xsp); |
| 204 | if (xsp->xf_cntr & IPSEC_MODULE_ENABLED) |
| 205 | ipsec_kmod_drain(&xsp->xf_cntr); |
| 206 | } |
| 207 | |
| 208 | /* |
| 209 | * Initialize transform support in an sav. |
no test coverage detected