svn commit: r327242 - head/sys/net

Stephen Hurd shurd at FreeBSD.org
Wed Dec 27 19:12:34 UTC 2017


Author: shurd
Date: Wed Dec 27 19:12:32 2017
New Revision: 327242
URL: https://svnweb.freebsd.org/changeset/base/327242

Log:
  Fix indentation.
  
  Sponsored by:	Limelight Networks

Modified:
  head/sys/net/iflib.c

Modified: head/sys/net/iflib.c
==============================================================================
--- head/sys/net/iflib.c	Wed Dec 27 18:30:24 2017	(r327241)
+++ head/sys/net/iflib.c	Wed Dec 27 19:12:32 2017	(r327242)
@@ -2635,7 +2635,7 @@ iflib_rxeof(iflib_rxq_t rxq, qidx_t budget)
 			if ((m->m_pkthdr.csum_flags & (CSUM_L4_CALC|CSUM_L4_VALID)) ==
 			    (CSUM_L4_CALC|CSUM_L4_VALID)) {
 				if (lro_possible && tcp_lro_rx(&rxq->ifr_lc, m, 0) == 0)
-				continue;
+					continue;
 			}
 		}
 #endif


More information about the svn-src-head mailing list