diff options
author | Eric Dumazet <edumazet@google.com> | 2015-09-29 07:42:48 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-29 16:53:09 -0700 |
commit | 0c27171e66d94f9121fc00e87407ca7103bb6649 (patch) | |
tree | d70a70c3c61e14a6f7649deba8f5c47628c7a649 /net/dccp/dccp.h | |
parent | c28c6f045945f53e842467bf0e86c5fac051643d (diff) | |
download | blackbird-op-linux-0c27171e66d94f9121fc00e87407ca7103bb6649.tar.gz blackbird-op-linux-0c27171e66d94f9121fc00e87407ca7103bb6649.zip |
tcp/dccp: constify syn_recv_sock() method sock argument
We'll soon no longer hold listener socket lock, these
functions do not modify the socket in any way.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/dccp.h')
-rw-r--r-- | net/dccp/dccp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/dccp.h b/net/dccp/dccp.h index 2409619b7043..e1f823451565 100644 --- a/net/dccp/dccp.h +++ b/net/dccp/dccp.h @@ -276,7 +276,7 @@ struct sock *dccp_create_openreq_child(const struct sock *sk, int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb); -struct sock *dccp_v4_request_recv_sock(struct sock *sk, struct sk_buff *skb, +struct sock *dccp_v4_request_recv_sock(const struct sock *sk, struct sk_buff *skb, struct request_sock *req, struct dst_entry *dst); struct sock *dccp_check_req(struct sock *sk, struct sk_buff *skb, |