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>
This commit is contained in:

committed by
David S. Miller

parent
c28c6f0459
commit
0c27171e66
@@ -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,
|
||||
|
@@ -390,7 +390,8 @@ static inline u64 dccp_v4_init_sequence(const struct sk_buff *skb)
|
||||
*
|
||||
* This is the equivalent of TCP's tcp_v4_syn_recv_sock
|
||||
*/
|
||||
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)
|
||||
{
|
||||
|
@@ -408,13 +408,14 @@ drop:
|
||||
return -1;
|
||||
}
|
||||
|
||||
static struct sock *dccp_v6_request_recv_sock(struct sock *sk,
|
||||
static struct sock *dccp_v6_request_recv_sock(const struct sock *sk,
|
||||
struct sk_buff *skb,
|
||||
struct request_sock *req,
|
||||
struct dst_entry *dst)
|
||||
{
|
||||
struct inet_request_sock *ireq = inet_rsk(req);
|
||||
struct ipv6_pinfo *newnp, *np = inet6_sk(sk);
|
||||
struct ipv6_pinfo *newnp;
|
||||
const struct ipv6_pinfo *np = inet6_sk(sk);
|
||||
struct inet_sock *newinet;
|
||||
struct dccp6_sock *newdp6;
|
||||
struct sock *newsk;
|
||||
|
Reference in New Issue
Block a user