PERFORCE change 149005 for review

Brooks Davis brooks at FreeBSD.org
Mon Sep 1 19:31:23 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=149005

Change 149005 by brooks at brooks_coredump on 2008/09/01 19:30:59

	Restore the origional locations of variable declerations.

Affected files ...

.. //depot/projects/vimage-commit2/src/sys/netinet/tcp_input.c#12 edit

Differences ...

==== //depot/projects/vimage-commit2/src/sys/netinet/tcp_input.c#12 (text+ko) ====

@@ -130,13 +130,11 @@
     tcp_do_rfc3390, 0,
     "Enable RFC 3390 (Increasing TCP's Initial Congestion Window)");
 
+int	tcp_do_ecn = 0;
+int	tcp_ecn_maxretries = 1;
 SYSCTL_NODE(_net_inet_tcp, OID_AUTO, ecn, CTLFLAG_RW, 0, "TCP ECN");
-
-int tcp_do_ecn = 0;
 SYSCTL_V_INT(V_NET, vnet_inet, _net_inet_tcp_ecn, OID_AUTO, enable,
     CTLFLAG_RW, tcp_do_ecn, 0, "TCP ECN support");
-
-int tcp_ecn_maxretries = 1;
 SYSCTL_V_INT(V_NET, vnet_inet, _net_inet_tcp_ecn, OID_AUTO, maxretries,
     CTLFLAG_RW, tcp_ecn_maxretries, 0, "Max retries before giving up on ECN");
 


More information about the p4-projects mailing list