inet: constify inet_rtx_syn_ack() sock argument
authorEric Dumazet <edumazet@google.com>
Fri, 25 Sep 2015 14:39:24 +0000 (07:39 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 25 Sep 2015 20:00:39 +0000 (13:00 -0700)
SYNACK packets are sent on behalf on unlocked listeners
or fastopen sockets. Mark socket as const to catch future changes
that might break the assumption.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/request_sock.h
net/ipv4/inet_connection_sock.c

index ff7ce1e53ed47d69f9b1fae9a893ee9e503ad6c8..181f97f9fe1c0824005fd24bf747848fd74461f8 100644 (file)
@@ -42,7 +42,7 @@ struct request_sock_ops {
        void            (*syn_ack_timeout)(const struct request_sock *req);
 };
 
-int inet_rtx_syn_ack(struct sock *parent, struct request_sock *req);
+int inet_rtx_syn_ack(const struct sock *parent, struct request_sock *req);
 
 /* struct request_sock - mini sock to represent a connection request
  */
index ad087c14f0207d640a4e0041ab36b7f70de4c108..bac205136e1cf2d706b70221f6b35e3b3ee7d9a9 100644 (file)
@@ -563,7 +563,7 @@ static inline void syn_ack_recalc(struct request_sock *req, const int thresh,
                  req->num_timeout >= rskq_defer_accept - 1;
 }
 
-int inet_rtx_syn_ack(struct sock *parent, struct request_sock *req)
+int inet_rtx_syn_ack(const struct sock *parent, struct request_sock *req)
 {
        int err = req->rsk_ops->rtx_syn_ack(parent, req);