Assert the inpcb lock in tcp_xmit_timer() as it performs read-modify-
write of various time/rtt-related fields in the tcpcb.
This commit is contained in:
parent
0f4fbb31bd
commit
aa563fbc34
@ -2640,6 +2640,8 @@ tcp_xmit_timer(tp, rtt)
|
||||
{
|
||||
register int delta;
|
||||
|
||||
INP_LOCK_ASSERT(tp->t_inpcb);
|
||||
|
||||
tcpstat.tcps_rttupdated++;
|
||||
tp->t_rttupdated++;
|
||||
if (tp->t_srtt != 0) {
|
||||
|
@ -2640,6 +2640,8 @@ tcp_xmit_timer(tp, rtt)
|
||||
{
|
||||
register int delta;
|
||||
|
||||
INP_LOCK_ASSERT(tp->t_inpcb);
|
||||
|
||||
tcpstat.tcps_rttupdated++;
|
||||
tp->t_rttupdated++;
|
||||
if (tp->t_srtt != 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user