svn commit: r334172 - head/sys/net

Matt Macy mmacy at FreeBSD.org
Thu May 24 17:54:09 UTC 2018


Author: mmacy
Date: Thu May 24 17:54:08 2018
New Revision: 334172
URL: https://svnweb.freebsd.org/changeset/base/334172

Log:
  if_delgroups: add missed unlock introduced by r334118

Modified:
  head/sys/net/if.c

Modified: head/sys/net/if.c
==============================================================================
--- head/sys/net/if.c	Thu May 24 17:08:55 2018	(r334171)
+++ head/sys/net/if.c	Thu May 24 17:54:08 2018	(r334172)
@@ -1557,6 +1557,7 @@ if_delgroups(struct ifnet *ifp)
 			ifglfree = 1;
 		}
 
+		IFNET_WUNLOCK();
 		epoch_wait_preempt(net_epoch_preempt);
 		free(ifgm, M_TEMP);
 		if (ifglfree) {


More information about the svn-src-head mailing list