From: David S. Miller Date: Fri, 23 Feb 2007 06:52:59 +0000 (-0800) Subject: [TCP]: Make snd_cwnd_clamp a u32. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e0ef57cc56c3c96493f9b0d6c77bb9608eeaa173;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [TCP]: Make snd_cwnd_clamp a u32. Signed-off-by: David S. Miller --- diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 415193e171e4..18a468dd5055 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h @@ -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;