svn commit: r296476 - head/sys/netinet/tcp_stacks
Randall Stewart
rrs at FreeBSD.org
Tue Mar 8 00:16:35 UTC 2016
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)
More information about the svn-src-all
mailing list