View | Details | Raw Unified | Return to bug 238870 | Differences between
and this patch

Collapse All | Expand All

(-)b/sys/net/if.c (+4 lines)
Lines 1309-1314 if_vmove(struct ifnet *ifp, struct vnet *new_vnet) Link Here
1309
	if (ifp->if_reassign != NULL)
1358
	if (ifp->if_reassign != NULL)
1310
		ifp->if_reassign(ifp, new_vnet, NULL);
1359
		ifp->if_reassign(ifp, new_vnet, NULL);
1311
1360
1361
	/* Don't re-attach DYING interfaces. */
1362
	if (ifp->if_flags & IFF_DYING)
1363
		return;
1364
1312
	/*
1365
	/*
1313
	 * Switch to the context of the target vnet.
1366
	 * Switch to the context of the target vnet.
1314
	 */
1367
	 */

Return to bug 238870