Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Mar 2016 00:16:34 +0000 (UTC)
From:      Randall Stewart <rrs@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r296476 - head/sys/netinet/tcp_stacks
Message-ID:  <201603080016.u280GYUr032779@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rrs
Date: Tue Mar  8 00:16:34 2016
New Revision: 296476
URL: https://svnweb.freebsd.org/changeset/base/296476

Log:
  Fix a sneaky bug where we were missing an extern
  to get the rxt threshold.. and thus created our own defaulted to 0 :-(
  
  Sponsored by:	Netflix Inc

Modified:
  head/sys/netinet/tcp_stacks/fastpath.c

Modified: head/sys/netinet/tcp_stacks/fastpath.c
==============================================================================
--- head/sys/netinet/tcp_stacks/fastpath.c	Tue Mar  8 00:14:14 2016	(r296475)
+++ head/sys/netinet/tcp_stacks/fastpath.c	Tue Mar  8 00:16:34 2016	(r296476)
@@ -124,7 +124,7 @@ __FBSDID("$FreeBSD$");
 
 #include <security/mac/mac_framework.h>
 
-const int tcprexmtthresh;
+extern const int tcprexmtthresh;
 
 VNET_DECLARE(int, tcp_autorcvbuf_inc);
 #define	V_tcp_autorcvbuf_inc	VNET(tcp_autorcvbuf_inc)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603080016.u280GYUr032779>