| 215 | |
| 216 | #ifdef VIMAGE |
| 217 | static void |
| 218 | ipsec_reassign(struct ifnet *ifp, struct vnet *new_vnet __unused, |
| 219 | char *unused __unused) |
| 220 | { |
| 221 | struct ipsec_softc *sc; |
| 222 | |
| 223 | sx_xlock(&ipsec_ioctl_sx); |
| 224 | sc = ifp->if_softc; |
| 225 | if (sc != NULL) |
| 226 | ipsec_delete_tunnel(sc); |
| 227 | sx_xunlock(&ipsec_ioctl_sx); |
| 228 | } |
| 229 | #endif /* VIMAGE */ |
| 230 | |
| 231 | static void |
nothing calls this directly
no test coverage detected