Commit e0ef57cc authored by David S. Miller's avatar David S. Miller

[TCP]: Make snd_cwnd_clamp a u32.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 54287cc1
......@@ -302,7 +302,7 @@ struct tcp_sock {
u32 snd_ssthresh; /* Slow start size threshold */
u32 snd_cwnd; /* Sending congestion window */
u16 snd_cwnd_cnt; /* Linear increase counter */
u16 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */
u32 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */
u32 snd_cwnd_used;
u32 snd_cwnd_stamp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment