All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH 1/1] TCP: update initial windows according to RFC 5681
@ 2010-08-30  5:27 Gerrit Renker
  2010-08-30 20:51 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Gerrit Renker @ 2010-08-30  5:27 UTC (permalink / raw)
  To: netdev

This is an update to the earlier DCCP 5-patch set, sent separately in case this
question is a contentious issue. 

However, it does look as if the newer RFC 5681 is indeed the normative case for 
the RFC 3390 initial window value. 

If there are no objections, I would like to submit this as an update for net-2.6.

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Patch <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
TCP: use initial window from RFC 5681

This updates the use of larger initial windows, as originally specified in 
RFC 3390, to use the newer IW values specified in RFC 5681, section 3.1.

The changes made in RFC 5681 are:
 a) the setting now is more clearly specified in units of segments (as the
    comments  by John Heffner emphasized, this was not very clear in RFC 3390);
 b) for connections with 1095 < SMSS <= 2190 there is now a change:
    - RFC 3390 says that IW <= 4380,
    - RFC 5681 says that IW = 3 * SMSS <= 6570.

Since RFC 3390 is older and "only" proposed standard, whereas the newer RFC 5681
is already draft standard, it seems preferable to use the newer IW variant.

Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
---
 include/net/tcp.h |   10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -791,17 +791,11 @@ static inline __u32 tcp_current_ssthresh
 
 /*
  * Convert RFC 3390 larger initial window into an equivalent number of packets.
- *
- * 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 a multiplier in the relevant range.
+ * This is based on the numbers specified in RFC 5681, 3.1.
  */
 static inline u32 rfc3390_bytes_to_packets(const u32 smss)
 {
-	return smss <= 1095 ? 4 : (smss > 1460 ? 2 : 3);
+	return smss <= 1095 ? 4 : (smss > 2190 ? 2 : 3);
 }
 
 extern void tcp_enter_cwr(struct sock *sk, const int set_ssthresh);


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [RFC][PATCH 1/1] TCP: update initial windows according to RFC 5681
  2010-08-30  5:27 [RFC][PATCH 1/1] TCP: update initial windows according to RFC 5681 Gerrit Renker
@ 2010-08-30 20:51 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2010-08-30 20:51 UTC (permalink / raw)
  To: gerrit; +Cc: netdev

From: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Date: Mon, 30 Aug 2010 07:27:34 +0200

> This is an update to the earlier DCCP 5-patch set, sent separately in case this
> question is a contentious issue. 
> 
> However, it does look as if the newer RFC 5681 is indeed the normative case for 
> the RFC 3390 initial window value. 
> 
> If there are no objections, I would like to submit this as an update for net-2.6.

I don't have any objectioned but I'm going to put it into net-next-2.6
as I don't see any real reason to rush something like this.

Thanks!

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-08-30 20:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-30  5:27 [RFC][PATCH 1/1] TCP: update initial windows according to RFC 5681 Gerrit Renker
2010-08-30 20:51 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.