diff options
author | Eric Dumazet <edumazet@google.com> | 2015-09-25 17:39:23 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-25 23:00:39 +0300 |
commit | ea3bea3a1d38aab1542176b2ff11a99ce3db9656 (patch) | |
tree | b7677994bf337d8295284c496def5f99066f13a2 /include/net/tcp.h | |
parent | 802885fc0400d0166a6b65d1844b61696aecbb10 (diff) | |
download | linux-ea3bea3a1d38aab1542176b2ff11a99ce3db9656.tar.xz |
tcp/dccp: constify rtx_synack() and friends
This is done to make sure we do not change listener socket
while sending SYNACK packets while socket lock is not held.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r-- | include/net/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 868c53532169..6630ab180f5c 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -1676,7 +1676,7 @@ int tcp4_proc_init(void); void tcp4_proc_exit(void); #endif -int tcp_rtx_synack(struct sock *sk, struct request_sock *req); +int tcp_rtx_synack(const struct sock *sk, struct request_sock *req); int tcp_conn_request(struct request_sock_ops *rsk_ops, const struct tcp_request_sock_ops *af_ops, struct sock *sk, struct sk_buff *skb); |