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/10/sys/dev/cxgbe/t4_sge.c
Directory Properties:
  stable/10/   (props changed)

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

Modified: stable/10/sys/dev/cxgbe/t4_sge.c
==============================================================================
--- stable/10/sys/dev/cxgbe/t4_sge.c    Mon Dec  5 19:32:06 2016        
(r309557)
+++ stable/10/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
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to