Define the delayed ACK timeout value directly as hz/10 instead of

obfuscating it by going through PR_FASTHZ.  No functional change.

MFC after:	2 weeks
This commit is contained in:
Andre Oppermann 2012-10-29 12:17:02 +00:00
parent fdd1b7f52a
commit 8d045dbdf3

View File

@ -118,7 +118,7 @@
#define TCP_MAXRXTSHIFT 12 /* maximum retransmits */
#define TCPTV_DELACK (hz / PR_FASTHZ / 2) /* 100ms timeout */
#define TCPTV_DELACK ( hz/10 ) /* 100ms timeout */
#ifdef TCPTIMERS
static const char *tcptimers[] =