svn commit: r302051 - stable/10/sys/netinet

Sepherosa Ziehau sephe at FreeBSD.org
Tue Jun 21 06:52:22 UTC 2016


Author: sephe
Date: Tue Jun 21 06:52:21 2016
New Revision: 302051
URL: https://svnweb.freebsd.org/changeset/base/302051

Log:
  MFC 298696,298730
  
  298696
      tcp/lro: Fix typo.
  
      MFC after:  1 week
      Sponsored by:       Microsoft OSTC
  
  298730
      tcp/lro: Fix more typo
  
      Noticed by: hiren
      MFC after:  1 week
      Sponsored by:       Microsoft OSTC

Modified:
  stable/10/sys/netinet/tcp_lro.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/netinet/tcp_lro.c
==============================================================================
--- stable/10/sys/netinet/tcp_lro.c	Tue Jun 21 06:45:29 2016	(r302050)
+++ stable/10/sys/netinet/tcp_lro.c	Tue Jun 21 06:52:21 2016	(r302051)
@@ -451,7 +451,7 @@ tcp_lro_rx(struct lro_ctrl *lc, struct m
 	if ((th->th_flags & ~(TH_ACK | TH_PUSH)) != 0)
 		return (TCP_LRO_CANNOT);
 
-	/* XXX-BZ We lose a AKC|PUSH flag concatinating multiple segments. */
+	/* XXX-BZ We lose a ACK|PUSH flag concatenating multiple segments. */
 	/* XXX-BZ Ideally we'd flush on PUSH? */
 
 	/*


More information about the svn-src-all mailing list