diff options
author | Tonghao Zhang <xiangxia.m.yue@gmail.com> | 2017-08-22 02:33:49 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-22 17:16:12 -0400 |
commit | 111993692741a7044e6c01b428cecf1071de3d0b (patch) | |
tree | 9c688c1737a7919579bad72cd2a620f793d3558e /net/ipv4/tcp_input.c | |
parent | 49c71586a6a94de168a26ec454eb8ea282ddd827 (diff) |
tcp: Remove the unused parameter for tcp_try_fastopen.
Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r-- | net/ipv4/tcp_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index ab908949ee95..d3421ee9a10a 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
@@ -6150,7 +6150,7 @@ int tcp_conn_request(struct request_sock_ops *rsk_ops, | |||
6150 | tcp_openreq_init_rwin(req, sk, dst); | 6150 | tcp_openreq_init_rwin(req, sk, dst); |
6151 | if (!want_cookie) { | 6151 | if (!want_cookie) { |
6152 | tcp_reqsk_record_syn(sk, req, skb); | 6152 | tcp_reqsk_record_syn(sk, req, skb); |
6153 | fastopen_sk = tcp_try_fastopen(sk, skb, req, &foc, dst); | 6153 | fastopen_sk = tcp_try_fastopen(sk, skb, req, &foc); |
6154 | } | 6154 | } |
6155 | if (fastopen_sk) { | 6155 | if (fastopen_sk) { |
6156 | af_ops->send_synack(fastopen_sk, dst, &fl, req, | 6156 | af_ops->send_synack(fastopen_sk, dst, &fl, req, |