svn commit: r368468 - head/sys/net

Gleb Smirnoff glebius at FreeBSD.org
Tue Dec 8 23:54:10 UTC 2020


Author: glebius
Date: Tue Dec  8 23:54:09 2020
New Revision: 368468
URL: https://svnweb.freebsd.org/changeset/base/368468

Log:
  Fixup r368446 with KERN_TLS.

Modified:
  head/sys/net/if_lagg.c

Modified: head/sys/net/if_lagg.c
==============================================================================
--- head/sys/net/if_lagg.c	Tue Dec  8 23:38:26 2020	(r368467)
+++ head/sys/net/if_lagg.c	Tue Dec  8 23:54:09 2020	(r368468)
@@ -1806,11 +1806,11 @@ lagg_snd_tag_alloc(struct ifnet *ifp,
 	lp = lookup_snd_tag_port(ifp, params->hdr.flowid,
 	    params->hdr.flowtype, params->hdr.numa_domain);
 	if (lp == NULL) {
-		LAGG_RUNLOCK();
+		NET_EPOCH_EXIT(et);
 		return (EOPNOTSUPP);
 	}
 	if (lp->lp_ifp == NULL) {
-		LAGG_RUNLOCK();
+		NET_EPOCH_EXIT(et);
 		return (EOPNOTSUPP);
 	}
 	lp_ifp = lp->lp_ifp;


More information about the svn-src-head mailing list