diff options
author | Eric Dumazet <edumazet@google.com> | 2015-09-25 07:39:23 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-25 13:00:39 -0700 |
commit | ea3bea3a1d38aab1542176b2ff11a99ce3db9656 (patch) | |
tree | b7677994bf337d8295284c496def5f99066f13a2 /net/dccp/ipv6.c | |
parent | 802885fc0400d0166a6b65d1844b61696aecbb10 (diff) | |
download | linux-ea3bea3a1d38aab1542176b2ff11a99ce3db9656.tar.gz linux-ea3bea3a1d38aab1542176b2ff11a99ce3db9656.tar.bz2 linux-ea3bea3a1d38aab1542176b2ff11a99ce3db9656.zip |
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 'net/dccp/ipv6.c')
-rw-r--r-- | net/dccp/ipv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index 5165571f397a..4fa199dc69a3 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c @@ -181,7 +181,7 @@ out: } -static int dccp_v6_send_response(struct sock *sk, struct request_sock *req) +static int dccp_v6_send_response(const struct sock *sk, struct request_sock *req) { struct inet_request_sock *ireq = inet_rsk(req); struct ipv6_pinfo *np = inet6_sk(sk); |