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

Sponsored by:	Chelsio Communications
This commit is contained in:
Navdeep Parhar 2016-09-09 07:34:14 +00:00
parent 23e591f485
commit 9e7cb06c17
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305652

View File

@ -1830,8 +1830,7 @@ t4_eth_rx(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m0)
}
#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