svn commit: r238048 - stable/8/sys/net

Andrew Thompson thompsa at FreeBSD.org
Tue Jul 3 01:45:38 UTC 2012


Author: thompsa
Date: Tue Jul  3 01:45:38 2012
New Revision: 238048
URL: http://svn.freebsd.org/changeset/base/238048

Log:
  MFC r237852
  
   Add the same check as vlan(4) where we ignore the ifnet departure event if the
   interface is just being renamed.
  
  PR:		kern/169557

Modified:
  stable/8/sys/net/if_lagg.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/boot/   (props changed)
  stable/8/sys/cddl/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/e1000/   (props changed)

Modified: stable/8/sys/net/if_lagg.c
==============================================================================
--- stable/8/sys/net/if_lagg.c	Tue Jul  3 01:45:28 2012	(r238047)
+++ stable/8/sys/net/if_lagg.c	Tue Jul  3 01:45:38 2012	(r238048)
@@ -784,6 +784,9 @@ lagg_port_ifdetach(void *arg __unused, s
 
 	if ((lp = ifp->if_lagg) == NULL)
 		return;
+	/* If the ifnet is just being renamed, don't do anything. */
+	if (ifp->if_flags & IFF_RENAMING)
+		return;
 
 	sc = lp->lp_softc;
 


More information about the svn-src-stable-8 mailing list