]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[TCP]: Describe tcp_init_cwnd() thoroughly in a comment.
authorDavid S. Miller <davem@sunset.davemloft.net>
Sat, 25 Aug 2007 05:21:50 +0000 (22:21 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Mon, 27 Aug 2007 01:35:36 +0000 (18:35 -0700)
People often get tripped up by this function and think that
it does not implemented the prescribed algorithms from
RFC2414 and RFC3390, even though it does.

So add a comment to head off such misunderstandings in the
future.

Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_input.c

index f030435e0eb4c972178f78053bd6b4028690e141..9785df37a65feeb285bc2f656eb828216de23585 100644 (file)
@@ -755,7 +755,15 @@ void tcp_update_metrics(struct sock *sk)
        }
 }
 
-/* Numbers are taken from RFC2414.  */
+/* Numbers are taken from RFC3390.
+ *
+ * John Heffner states:
+ *
+ *     The RFC specifies a window of no more than 4380 bytes
+ *     unless 2*MSS > 4380.  Reading the pseudocode in the RFC
+ *     is a bit misleading because they use a clamp at 4380 bytes
+ *     rather than use a multiplier in the relevant range.
+ */
 __u32 tcp_init_cwnd(struct tcp_sock *tp, struct dst_entry *dst)
 {
        __u32 cwnd = (dst ? dst_metric(dst, RTAX_INITCWND) : 0);