Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sys/netinet Pull up revision 1.83 (requested by thorpej...



details:   https://anonhg.NetBSD.org/src/rev/cbf6e0b31b7c
branches:  netbsd-1-6
changeset: 527908:cbf6e0b31b7c
user:      lukem <lukem%NetBSD.org@localhost>
date:      Fri Jun 14 17:32:59 2002 +0000

description:
Pull up revision 1.83 (requested by thorpej in ticket #267):
Disable TCP Congestion Window Monitoring by default; there are
performance problems in the face of tinygrams.

diffstat:

 sys/netinet/tcp_output.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 4f0aebbd8caf -r cbf6e0b31b7c sys/netinet/tcp_output.c
--- a/sys/netinet/tcp_output.c  Fri Jun 14 17:30:13 2002 +0000
+++ b/sys/netinet/tcp_output.c  Fri Jun 14 17:32:59 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tcp_output.c,v 1.79 2002/04/27 01:47:58 thorpej Exp $  */
+/*     $NetBSD: tcp_output.c,v 1.79.4.1 2002/06/14 17:32:59 lukem Exp $        */
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -142,7 +142,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcp_output.c,v 1.79 2002/04/27 01:47:58 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcp_output.c,v 1.79.4.1 2002/06/14 17:32:59 lukem Exp $");
 
 #include "opt_inet.h"
 #include "opt_ipsec.h"
@@ -197,7 +197,7 @@
  * the burst size it allows.  Default burst is 4 packets, per
  * the Internet draft.
  */
-int    tcp_cwm = 1;
+int    tcp_cwm = 0;
 int    tcp_cwm_burstsize = 4;
 
 #ifdef TCP_OUTPUT_COUNTERS



Home | Main Index | Thread Index | Old Index