diff options
| author | Yuchung Cheng <ycheng@google.com> | 2012-10-19 15:14:44 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-10-22 15:16:06 -0400 | 
| commit | 6f73601efb35c7003f5c58c2bc6fd08f3652169c (patch) | |
| tree | f77807af2f6bbe08104b4563eb150e9e425dfce6 /net | |
| parent | e6e71054cd9f98c8ebb3a5f66f2776a9736afc87 (diff) | |
| download | olio-linux-3.10-6f73601efb35c7003f5c58c2bc6fd08f3652169c.tar.xz olio-linux-3.10-6f73601efb35c7003f5c58c2bc6fd08f3652169c.zip  | |
tcp: add SYN/data info to TCP_INFO
Add a bit TCPI_OPT_SYN_DATA (32) to the socket option TCP_INFO:tcpi_options.
It's set if the data in SYN (sent or received) is acked by SYN-ACK. Server or
client application can use this information to check Fast Open success rate.
Signed-off-by: Yuchung Cheng <ycheng@google.com>
Acked-by: Neal Cardwell <ncardwell@google.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
| -rw-r--r-- | net/ipv4/tcp.c | 2 | ||||
| -rw-r--r-- | net/ipv4/tcp_input.c | 1 | ||||
| -rw-r--r-- | net/ipv4/tcp_ipv4.c | 1 | ||||
| -rw-r--r-- | net/ipv4/tcp_minisocks.c | 1 | 
4 files changed, 5 insertions, 0 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index b7c2f439b54..197c0008503 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -2764,6 +2764,8 @@ void tcp_get_info(const struct sock *sk, struct tcp_info *info)  		info->tcpi_options |= TCPI_OPT_ECN;  	if (tp->ecn_flags & TCP_ECN_SEEN)  		info->tcpi_options |= TCPI_OPT_ECN_SEEN; +	if (tp->syn_data_acked) +		info->tcpi_options |= TCPI_OPT_SYN_DATA;  	info->tcpi_rto = jiffies_to_usecs(icsk->icsk_rto);  	info->tcpi_ato = jiffies_to_usecs(icsk->icsk_ack.ato); diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 432c36649db..036f8573814 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -5646,6 +5646,7 @@ static bool tcp_rcv_fastopen_synack(struct sock *sk, struct sk_buff *synack,  		tcp_rearm_rto(sk);  		return true;  	} +	tp->syn_data_acked = tp->syn_data;  	return false;  } diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index ef998b008a5..0c4a6435560 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -1461,6 +1461,7 @@ static int tcp_v4_conn_req_fastopen(struct sock *sk,  		skb_set_owner_r(skb, child);  		__skb_queue_tail(&child->sk_receive_queue, skb);  		tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq; +		tp->syn_data_acked = 1;  	}  	sk->sk_data_ready(sk, 0);  	bh_unlock_sock(child); diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index 27536ba16c9..a7302d974f3 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c @@ -510,6 +510,7 @@ struct sock *tcp_create_openreq_child(struct sock *sk, struct request_sock *req,  		newtp->rx_opt.mss_clamp = req->mss;  		TCP_ECN_openreq_child(newtp, req);  		newtp->fastopen_rsk = NULL; +		newtp->syn_data_acked = 0;  		TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_PASSIVEOPENS);  	}  |