Undo my previous erroneous commit changing the tcp_output kassert.

Hmm now the question is where did the tcp_log_id change go :o
This commit is contained in:
Randall Stewart 2019-04-03 19:35:07 +00:00
parent 71f06f81af
commit fd29ff5d53
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=345851

View File

@ -138,8 +138,7 @@ SYSCTL_INT(_net_inet_tcp, OID_AUTO, sendbuf_auto_lowat, CTLFLAG_VNET | CTLFLAG_R
* non-ACK.
*/
#define TCP_XMIT_TIMER_ASSERT(tp, len, th_flags) \
KASSERT(((len) == 0 && ((th_flags) & \
(TH_SYN | TH_FIN | TH_RST)) != 0) || \
KASSERT(((len) == 0 && ((th_flags) & (TH_SYN | TH_FIN)) == 0) ||\
tcp_timer_active((tp), TT_REXMT) || \
tcp_timer_active((tp), TT_PERSIST), \
("neither rexmt nor persist timer is set"))