diff options
author | Eric Dumazet <edumazet@google.com> | 2015-09-29 07:42:43 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-29 16:53:08 -0700 |
commit | a2432c4fa5e3c4c06df6efe0c406b6f575829a7b (patch) | |
tree | 5fa4bcaeb177c1b342ce178509b0210ef32c4a1c /net | |
parent | f76b33c32b1913dd8909d8509f2726b1661aa6b1 (diff) | |
download | linux-a2432c4fa5e3c4c06df6efe0c406b6f575829a7b.tar.bz2 |
inet: constify inet_csk_route_child_sock() socket argument
The socket points to the (shared) listener.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/inet_connection_sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c index ba2f90d90cb5..694a5e8f4f9f 100644 --- a/net/ipv4/inet_connection_sock.c +++ b/net/ipv4/inet_connection_sock.c @@ -439,7 +439,7 @@ no_route: } EXPORT_SYMBOL_GPL(inet_csk_route_req); -struct dst_entry *inet_csk_route_child_sock(struct sock *sk, +struct dst_entry *inet_csk_route_child_sock(const struct sock *sk, struct sock *newsk, const struct request_sock *req) { |