svn commit: r347373 - stable/11/sys/net

Eric Joyner erj at FreeBSD.org
Wed May 8 23:13:29 UTC 2019


Author: erj
Date: Wed May  8 23:13:27 2019
New Revision: 347373
URL: https://svnweb.freebsd.org/changeset/base/347373

Log:
  iflib: Add missing return statement that was left out from r347197

Modified:
  stable/11/sys/net/iflib.c

Modified: stable/11/sys/net/iflib.c
==============================================================================
--- stable/11/sys/net/iflib.c	Wed May  8 22:28:13 2019	(r347372)
+++ stable/11/sys/net/iflib.c	Wed May  8 23:13:27 2019	(r347373)
@@ -3758,6 +3758,7 @@ _task_fn_admin(void *context)
 
 	if ((!running & !oactive) &&
 	    !(ctx->ifc_sctx->isc_flags & IFLIB_ADMIN_ALWAYS_RUN))
+		return;
 	if (in_detach)
 		return;
 


More information about the svn-src-all mailing list