lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Tue, 19 May 2009 12:22:15 -0700 (PDT)
From:	David Miller <davem@...emloft.net>
To:	doug.leith@...m.ie
Cc:	shemminger@...tta.com, netdev@...r.kernel.org
Subject: Re: [PATCH: 2.6.29] tcp_vegas.c ssthresh bug fix

From: Douglas Leith <doug.leith@...m.ie>
Date: Tue, 19 May 2009 11:16:43 +0100

> --- 2.6.29-rc5/net/ipv4/tcp_vegas.c.orig	2009-04-27 12:55:18.000000000 +0100
> +++ 2.6.29-rc5/net/ipv4/tcp_vegas.c	2009-05-19 11:03:41.000000000 +0100
> @@ -224 +224 @@ static void tcp_vegas_cong_avoid(struct 
> -			if (diff > gamma && tp->snd_ssthresh > 2 ) {
> +			if (diff > gamma && tp->snd_cwnd <= tp->snd_ssthresh) {
> @@ -228 +227,0 @@ static void tcp_vegas_cong_avoid(struct 
> -				tp->snd_ssthresh = 2;
> @@ -252,0 +252 @@ static void tcp_vegas_cong_avoid(struct 
> +					tp->snd_ssthresh = min(tp->snd_ssthresh, tp->snd_cwnd-1);

This patch is severely corrupted by your email client, or by something
else, and it's therefore not going to apply to anything.

Please read carefully Documentation/email-clients.txt and
Documentation/SubmittingPatches before trying to submit this
again.

Thank you.
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ