| 198 | |
| 199 | #ifdef VIMAGE |
| 200 | static void |
| 201 | gre_reassign(struct ifnet *ifp, struct vnet *new_vnet __unused, |
| 202 | char *unused __unused) |
| 203 | { |
| 204 | struct gre_softc *sc; |
| 205 | |
| 206 | sx_xlock(&gre_ioctl_sx); |
| 207 | sc = ifp->if_softc; |
| 208 | if (sc != NULL) |
| 209 | gre_delete_tunnel(sc); |
| 210 | sx_xunlock(&gre_ioctl_sx); |
| 211 | } |
| 212 | #endif /* VIMAGE */ |
| 213 | |
| 214 | static void |
nothing calls this directly
no test coverage detected