[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080508.011021.14498289.davem@davemloft.net>
Date: Thu, 08 May 2008 01:10:21 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: ilpo.jarvinen@...sinki.fi
Cc: damon@...tek.com, 213081@...s.launchpad.net,
478062@...s.debian.org, netdev@...r.kernel.org
Subject: Re: Fix FRTO+NewReno problem
From: "Ilpo_Järvinen" <ilpo.jarvinen@...sinki.fi>
Date: Thu, 8 May 2008 01:26:59 +0300 (EEST)
> [PATCH] [TCP] FRTO: SACK variant is errorneously used with NewReno
I applied this with a minor coding style fixup.
From: "Ilpo_Järvinen" <ilpo.jarvinen@...sinki.fi>
Date: Thu, 8 May 2008 01:26:59 +0300 (EEST)
> +static int tcp_is_sackfrto(const struct tcp_sock *tp) {
> + return (sysctl_tcp_frto == 0x2) && !tcp_is_reno(tp);
> +}
> +
Should be:
static int tcp_is_sackfrto(const struct tcp_sock *tp)
{
return (sysctl_tcp_frto == 0x2) && !tcp_is_reno(tp);
}
I will also queue this up to -stable, thanks so much for
this bug fix!
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists