All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] [TCP]: Add two new spurious RTO responses to FRTO
@ 2007-02-27 15:50 Ilpo Järvinen
  2007-02-27 18:10 ` David Miller
  2007-02-28 12:13 ` Jarek Poplawski
  0 siblings, 2 replies; 6+ messages in thread
From: Ilpo Järvinen @ 2007-02-27 15:50 UTC (permalink / raw)
  To: David Miller; +Cc: netdev

[-- Attachment #1: Type: TEXT/PLAIN, Size: 5264 bytes --]

New sysctl tcp_frto_response is added to select amongst these
responses:
	- Rate halving based; reuses CA_CWR state (default)
	- Very conservative; used to be the only one available (=1)
	- Undo cwr; undoes ssthresh and cwnd reductions (=2)

The response with rate halving requires a new parameter to
tcp_enter_cwr because FRTO has already reduced ssthresh and
doing a second reduction there has to be prevented. In addition,
to keep things nice on 80 cols screen, a local variable was
added.

Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
---
 include/linux/sysctl.h     |    1 +
 include/net/tcp.h          |    3 ++-
 net/ipv4/sysctl_net_ipv4.c |    8 ++++++++
 net/ipv4/tcp_input.c       |   30 ++++++++++++++++++++++++++----
 net/ipv4/tcp_output.c      |    2 +-
 5 files changed, 38 insertions(+), 6 deletions(-)

diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h
index a2dce72..80f11e0 100644
--- a/include/linux/sysctl.h
+++ b/include/linux/sysctl.h
@@ -439,6 +439,7 @@ enum
 	NET_TCP_AVAIL_CONG_CONTROL=122,
 	NET_TCP_ALLOWED_CONG_CONTROL=123,
 	NET_TCP_MAX_SSTHRESH=124,
+	NET_TCP_FRTO_RESPONSE=125,
 };
 
 enum {
diff --git a/include/net/tcp.h b/include/net/tcp.h
index 6d09f50..f0c9e34 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -220,6 +220,7 @@ extern int sysctl_tcp_app_win;
 extern int sysctl_tcp_adv_win_scale;
 extern int sysctl_tcp_tw_reuse;
 extern int sysctl_tcp_frto;
+extern int sysctl_tcp_frto_response;
 extern int sysctl_tcp_low_latency;
 extern int sysctl_tcp_dma_copybreak;
 extern int sysctl_tcp_nometrics_save;
@@ -738,7 +739,7 @@ static inline void tcp_sync_left_out(str
 	tp->left_out = tp->sacked_out + tp->lost_out;
 }
 
-extern void tcp_enter_cwr(struct sock *sk);
+extern void tcp_enter_cwr(struct sock *sk, const int set_ssthresh);
 extern __u32 tcp_init_cwnd(struct tcp_sock *tp, struct dst_entry *dst);
 
 /* Slow start with delack produces 3 packets of burst, so that
diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c
index d68effe..6817d64 100644
--- a/net/ipv4/sysctl_net_ipv4.c
+++ b/net/ipv4/sysctl_net_ipv4.c
@@ -647,6 +647,14 @@ #endif
 		.proc_handler	= &proc_dointvec
 	},
 	{
+		.ctl_name	= NET_TCP_FRTO_RESPONSE,
+		.procname	= "tcp_frto_response",
+		.data		= &sysctl_tcp_frto_response,
+		.maxlen		= sizeof(int),
+		.mode		= 0644,
+		.proc_handler	= &proc_dointvec
+	},
+	{
 		.ctl_name	= NET_TCP_LOW_LATENCY,
 		.procname	= "tcp_low_latency",
 		.data		= &sysctl_tcp_low_latency,
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index f6ba07f..d6e1776 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -86,6 +86,7 @@ int sysctl_tcp_stdurg __read_mostly;
 int sysctl_tcp_rfc1337 __read_mostly;
 int sysctl_tcp_max_orphans __read_mostly = NR_FILE;
 int sysctl_tcp_frto __read_mostly;
+int sysctl_tcp_frto_response __read_mostly;
 int sysctl_tcp_nometrics_save __read_mostly;
 
 int sysctl_tcp_moderate_rcvbuf __read_mostly = 1;
@@ -762,15 +763,17 @@ __u32 tcp_init_cwnd(struct tcp_sock *tp,
 }
 
 /* Set slow start threshold and cwnd not falling to slow start */
-void tcp_enter_cwr(struct sock *sk)
+void tcp_enter_cwr(struct sock *sk, const int set_ssthresh)
 {
 	struct tcp_sock *tp = tcp_sk(sk);
+	const struct inet_connection_sock *icsk = inet_csk(sk);
 
 	tp->prior_ssthresh = 0;
 	tp->bytes_acked = 0;
 	if (inet_csk(sk)->icsk_ca_state < TCP_CA_CWR) {
 		tp->undo_marker = 0;
-		tp->snd_ssthresh = inet_csk(sk)->icsk_ca_ops->ssthresh(sk);
+		if (set_ssthresh)
+			tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk);
 		tp->snd_cwnd = min(tp->snd_cwnd,
 				   tcp_packets_in_flight(tp) + 1U);
 		tp->snd_cwnd_cnt = 0;
@@ -2003,7 +2006,7 @@ static void tcp_try_to_open(struct sock 
 		tp->retrans_stamp = 0;
 
 	if (flag&FLAG_ECE)
-		tcp_enter_cwr(sk);
+		tcp_enter_cwr(sk, 1);
 
 	if (inet_csk(sk)->icsk_ca_state != TCP_CA_CWR) {
 		int state = TCP_CA_Open;
@@ -2579,6 +2582,21 @@ static void tcp_conservative_spur_to_res
 	tcp_moderate_cwnd(tp);
 }
 
+/* A conservative spurious RTO response algorithm: reduce cwnd using
+ * rate halving and continue in congestion avoidance.
+ */
+static void tcp_ratehalving_spur_to_response(struct sock *sk)
+{
+	struct tcp_sock *tp = tcp_sk(sk);
+	tcp_enter_cwr(sk, 0);
+	tp->high_seq = tp->frto_highmark; 	/* Smoother w/o this? - ij */
+}
+
+static void tcp_undo_spur_to_response(struct sock *sk)
+{
+	tcp_undo_cwr(sk, 1);
+}
+
 /* F-RTO spurious RTO detection algorithm (RFC4138)
  *
  * F-RTO affects during two new ACKs following RTO (well, almost, see inline
@@ -2661,7 +2679,11 @@ static int tcp_process_frto(struct sock 
 		tp->frto_counter = 2;
 		return 1;
 	} else /* frto_counter == 2 */ {
-		tcp_conservative_spur_to_response(tp);
+		switch (sysctl_tcp_frto_response) {
+		case 2: tcp_undo_spur_to_response(sk); break;
+		case 1: tcp_conservative_spur_to_response(tp); break;
+		default: tcp_ratehalving_spur_to_response(sk); break;
+		}
 		tp->frto_counter = 0;
 	}
 	return 0;
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
index dc15113..c9c912a 100644
--- a/net/ipv4/tcp_output.c
+++ b/net/ipv4/tcp_output.c
@@ -545,7 +545,7 @@ #endif
 	if (likely(err <= 0))
 		return err;
 
-	tcp_enter_cwr(sk);
+	tcp_enter_cwr(sk, 1);
 
 	return net_xmit_eval(err);
 
-- 
1.4.2

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

* Re: [PATCH 1/2] [TCP]: Add two new spurious RTO responses to FRTO
  2007-02-27 15:50 [PATCH 1/2] [TCP]: Add two new spurious RTO responses to FRTO Ilpo Järvinen
@ 2007-02-27 18:10 ` David Miller
  2007-02-28 12:13 ` Jarek Poplawski
  1 sibling, 0 replies; 6+ messages in thread
From: David Miller @ 2007-02-27 18:10 UTC (permalink / raw)
  To: ilpo.jarvinen; +Cc: netdev

From: "Ilpo_Järvinen" <ilpo.jarvinen@helsinki.fi>
Date: Tue, 27 Feb 2007 17:50:06 +0200 (EET)

> New sysctl tcp_frto_response is added to select amongst these
> responses:
> 	- Rate halving based; reuses CA_CWR state (default)
> 	- Very conservative; used to be the only one available (=1)
> 	- Undo cwr; undoes ssthresh and cwnd reductions (=2)
> 
> The response with rate halving requires a new parameter to
> tcp_enter_cwr because FRTO has already reduced ssthresh and
> doing a second reduction there has to be prevented. In addition,
> to keep things nice on 80 cols screen, a local variable was
> added.
> 
> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>

Applied to tcp-2.6, thanks!

I tidied up the coding style of the switch statement slightly.
So that it reads like this:

		switch (sysctl_tcp_frto_response) {
		case 2:
			tcp_undo_spur_to_response(sk);
			break;
		case 1:
			tcp_conservative_spur_to_response(tp);
			break;
		default:
			tcp_ratehalving_spur_to_response(sk);
			break;
		};

Thanks again.

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

* Re: [PATCH 1/2] [TCP]: Add two new spurious RTO responses to FRTO
  2007-02-27 15:50 [PATCH 1/2] [TCP]: Add two new spurious RTO responses to FRTO Ilpo Järvinen
  2007-02-27 18:10 ` David Miller
@ 2007-02-28 12:13 ` Jarek Poplawski
  2007-03-01 11:30   ` Ilpo Järvinen
  1 sibling, 1 reply; 6+ messages in thread
From: Jarek Poplawski @ 2007-02-28 12:13 UTC (permalink / raw)
  To: =?ISO-8859-2?Q?Ilpo_J=E4rvinen?=; +Cc: David Miller, netdev

On 27-02-2007 16:50, Ilpo Järvinen wrote:
> New sysctl tcp_frto_response is added to select amongst these
...
> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
> @@ -762,15 +763,17 @@ __u32 tcp_init_cwnd(struct tcp_sock *tp,
>  }
>  
>  /* Set slow start threshold and cwnd not falling to slow start */
> -void tcp_enter_cwr(struct sock *sk)
> +void tcp_enter_cwr(struct sock *sk, const int set_ssthresh)
>  {
>  	struct tcp_sock *tp = tcp_sk(sk);
> +	const struct inet_connection_sock *icsk = inet_csk(sk);
>  
>  	tp->prior_ssthresh = 0;
>  	tp->bytes_acked = 0;
>  	if (inet_csk(sk)->icsk_ca_state < TCP_CA_CWR) {

-	if (inet_csk(sk)->icsk_ca_state < TCP_CA_CWR) {
+	if (icsk->icsk_ca_state < TCP_CA_CWR) {

Probably something for the next "BTW".

Regards,
Jarek P.

>  		tp->undo_marker = 0;
> -		tp->snd_ssthresh = inet_csk(sk)->icsk_ca_ops->ssthresh(sk);
> +		if (set_ssthresh)
> +			tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk);
...

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

* Re: [PATCH 1/2] [TCP]: Add two new spurious RTO responses to FRTO
  2007-02-28 12:13 ` Jarek Poplawski
@ 2007-03-01 11:30   ` Ilpo Järvinen
  2007-03-01 12:20     ` Jarek Poplawski
  2007-03-02 21:27     ` David Miller
  0 siblings, 2 replies; 6+ messages in thread
From: Ilpo Järvinen @ 2007-03-01 11:30 UTC (permalink / raw)
  To: Jarek Poplawski; +Cc: David Miller, netdev

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1797 bytes --]

On Wed, 28 Feb 2007, Jarek Poplawski wrote:

> On 27-02-2007 16:50, Ilpo Järvinen wrote:
> > New sysctl tcp_frto_response is added to select amongst these
> ...
> > Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
> > @@ -762,15 +763,17 @@ __u32 tcp_init_cwnd(struct tcp_sock *tp,
> >  }
> >  
> >  /* Set slow start threshold and cwnd not falling to slow start */
> > -void tcp_enter_cwr(struct sock *sk)
> > +void tcp_enter_cwr(struct sock *sk, const int set_ssthresh)
> >  {
> >  	struct tcp_sock *tp = tcp_sk(sk);
> > +	const struct inet_connection_sock *icsk = inet_csk(sk);
> >  
> >  	tp->prior_ssthresh = 0;
> >  	tp->bytes_acked = 0;
> >  	if (inet_csk(sk)->icsk_ca_state < TCP_CA_CWR) {
> 
> -	if (inet_csk(sk)->icsk_ca_state < TCP_CA_CWR) {
> +	if (icsk->icsk_ca_state < TCP_CA_CWR) {
> 
> Probably something for the next "BTW".

These are going to 2.6.22, not to 2.6.21, see:
  http://marc.theaimsgroup.com/?l=linux-netdev&m=117213215924406&w=2
...or do you mean something else?

Since DaveM has already applied this, here is a patch with your correction 
alone on the top of tcp-2.6.

--
[PATCH] [TCP]: Complete icsk-to-local-variable change (in tcp_enter_cwr)

A local variable for icsk was created but this change was
missing. Spotted by Jarek Poplawski.

Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
---

diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index d6e1776..dc221a3 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -770,7 +770,7 @@ void tcp_enter_cwr(struct sock *sk, cons
 
 	tp->prior_ssthresh = 0;
 	tp->bytes_acked = 0;
-	if (inet_csk(sk)->icsk_ca_state < TCP_CA_CWR) {
+	if (icsk->icsk_ca_state < TCP_CA_CWR) {
 		tp->undo_marker = 0;
 		if (set_ssthresh)
 			tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk);
-- 
1.4.2

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

* Re: [PATCH 1/2] [TCP]: Add two new spurious RTO responses to FRTO
  2007-03-01 11:30   ` Ilpo Järvinen
@ 2007-03-01 12:20     ` Jarek Poplawski
  2007-03-02 21:27     ` David Miller
  1 sibling, 0 replies; 6+ messages in thread
From: Jarek Poplawski @ 2007-03-01 12:20 UTC (permalink / raw)
  To: Ilpo Järvinen; +Cc: David Miller, netdev

On Thu, Mar 01, 2007 at 01:30:20PM +0200, Ilpo Järvinen wrote:
> On Wed, 28 Feb 2007, Jarek Poplawski wrote:
...
> > Probably something for the next "BTW".
...
> missing. Spotted by Jarek Poplawski.

Thanks! But I really think such a cosmetic suggestion
isn't worth to mention.

Jarek P.

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

* Re: [PATCH 1/2] [TCP]: Add two new spurious RTO responses to FRTO
  2007-03-01 11:30   ` Ilpo Järvinen
  2007-03-01 12:20     ` Jarek Poplawski
@ 2007-03-02 21:27     ` David Miller
  1 sibling, 0 replies; 6+ messages in thread
From: David Miller @ 2007-03-02 21:27 UTC (permalink / raw)
  To: ilpo.jarvinen; +Cc: jarkao2, netdev

From: "Ilpo_Järvinen" <ilpo.jarvinen@helsinki.fi>
Date: Thu, 1 Mar 2007 13:30:20 +0200 (EET)

> [PATCH] [TCP]: Complete icsk-to-local-variable change (in tcp_enter_cwr)
> 
> A local variable for icsk was created but this change was
> missing. Spotted by Jarek Poplawski.
> 
> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>

Applied to tcp-2.6, thank you.

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

end of thread, other threads:[~2007-03-02 21:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-27 15:50 [PATCH 1/2] [TCP]: Add two new spurious RTO responses to FRTO Ilpo Järvinen
2007-02-27 18:10 ` David Miller
2007-02-28 12:13 ` Jarek Poplawski
2007-03-01 11:30   ` Ilpo Järvinen
2007-03-01 12:20     ` Jarek Poplawski
2007-03-02 21:27     ` 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.