From: Stephen Hemminger Date: Sun, 15 Jul 2007 01:57:19 +0000 (-0700) Subject: [TCP]: tcp probe add back ssthresh field X-Git-Tag: v3.12-rc1~28648^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3b0b681b12478a7afa7d1f3d58be96830e16c7d;p=kernel%2Fkernel-generic.git [TCP]: tcp probe add back ssthresh field Sangtae noticed the ssthresh got missed. Signed-off-by: Stephen Hemminger Signed-off-by: David S. Miller --- diff --git a/net/ipv4/tcp_probe.c b/net/ipv4/tcp_probe.c index 86624fa..f37d592 100644 --- a/net/ipv4/tcp_probe.c +++ b/net/ipv4/tcp_probe.c @@ -111,6 +111,7 @@ static int jtcp_rcv_established(struct sock *sk, struct sk_buff *skb, p->snd_una = tp->snd_una; p->snd_cwnd = tp->snd_cwnd; p->snd_wnd = tp->snd_wnd; + p->ssthresh = tcp_current_ssthresh(sk); p->srtt = tp->srtt >> 3; tcp_probe.head = (tcp_probe.head + 1) % bufsize;