diff options
author | Matt Macy <mmacy@FreeBSD.org> | 2018-05-24 17:54:08 +0000 |
---|---|---|
committer | Matt Macy <mmacy@FreeBSD.org> | 2018-05-24 17:54:08 +0000 |
commit | 5328b11c951251bdd2a8e7d0c9a37dbaf4b71969 (patch) | |
tree | 69d5bad3f1f41c26a18f5ccdcb56d8e26558df48 /sys/net | |
parent | 0b979e7e8ec45730445c6162adbdf060317b5d1b (diff) | |
download | src-5328b11c951251bdd2a8e7d0c9a37dbaf4b71969.tar.gz src-5328b11c951251bdd2a8e7d0c9a37dbaf4b71969.zip |
if_delgroups: add missed unlock introduced by r334118
Notes
Notes:
svn path=/head/; revision=334172
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index 596074b2b124..7cecaf73fe34 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -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) { |