svn commit: r309558 - in stable: 10/sys/dev/cxgbe 11/sys/dev/cxgbe

John Baldwin jhb at FreeBSD.org
Mon Dec 5 19:34:54 UTC 2016


Author: jhb
Date: Mon Dec  5 19:34:52 2016
New Revision: 309558
URL: https://svnweb.freebsd.org/changeset/base/309558

Log:
  MFC 305652: cxgbe(4): Do not prescreen frames before attempting LRO.

Modified:
  stable/11/sys/dev/cxgbe/t4_sge.c
Directory Properties:
  stable/11/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/10/sys/dev/cxgbe/t4_sge.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/11/sys/dev/cxgbe/t4_sge.c
==============================================================================
--- stable/11/sys/dev/cxgbe/t4_sge.c	Mon Dec  5 19:32:06 2016	(r309557)
+++ stable/11/sys/dev/cxgbe/t4_sge.c	Mon Dec  5 19:34:52 2016	(r309558)
@@ -1821,8 +1821,7 @@ t4_eth_rx(struct sge_iq *iq, const struc
 	}
 
 #if defined(INET) || defined(INET6)
-	if (cpl->l2info & htobe32(F_RXF_LRO) &&
-	    iq->flags & IQ_LRO_ENABLED &&
+	if (iq->flags & IQ_LRO_ENABLED &&
 	    tcp_lro_rx(lro, m0, 0) == 0) {
 		/* queued for LRO */
 	} else


More information about the svn-src-all mailing list