svn commit: r283124 - head/sys/netinet

Hiren Panchasara hiren at FreeBSD.org
Tue May 19 19:17:21 UTC 2015


Author: hiren
Date: Tue May 19 19:17:20 2015
New Revision: 283124
URL: https://svnweb.freebsd.org/changeset/base/283124

Log:
  Correct the wording as we are increasing the window size.
  
  Reviewed by:	jhb
  Sponsored by:	Limelight Networks

Modified:
  head/sys/netinet/tcp_input.c

Modified: head/sys/netinet/tcp_input.c
==============================================================================
--- head/sys/netinet/tcp_input.c	Tue May 19 19:15:19 2015	(r283123)
+++ head/sys/netinet/tcp_input.c	Tue May 19 19:17:20 2015	(r283124)
@@ -1542,7 +1542,7 @@ tcp_do_segment(struct mbuf *m, struct tc
 		tcp_timer_activate(tp, TT_KEEP, TP_KEEPIDLE(tp));
 
 	/*
-	 * Unscale the window into a 32-bit value.
+	 * Scale up the window into a 32-bit value.
 	 * For the SYN_SENT state the scale is zero.
 	 */
 	tiwin = th->th_win << tp->snd_scale;


More information about the svn-src-head mailing list