diff options
author | Eric Dumazet <edumazet@google.com> | 2015-09-29 10:42:44 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-29 19:53:08 -0400 |
commit | 1ce31c9e08997ea0fa62be0a7437f868be173f13 (patch) | |
tree | ba3b66942c662ea6fe6c12db810550cef7984d65 /net | |
parent | a2432c4fa5e3c4c06df6efe0c406b6f575829a7b (diff) |
inet: constify __inet_inherit_port() sock argument
socket is not touched, make it const.
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_hashtables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c index 89120196a949..56742e995dd3 100644 --- a/net/ipv4/inet_hashtables.c +++ b/net/ipv4/inet_hashtables.c | |||
@@ -126,7 +126,7 @@ void inet_put_port(struct sock *sk) | |||
126 | } | 126 | } |
127 | EXPORT_SYMBOL(inet_put_port); | 127 | EXPORT_SYMBOL(inet_put_port); |
128 | 128 | ||
129 | int __inet_inherit_port(struct sock *sk, struct sock *child) | 129 | int __inet_inherit_port(const struct sock *sk, struct sock *child) |
130 | { | 130 | { |
131 | struct inet_hashinfo *table = sk->sk_prot->h.hashinfo; | 131 | struct inet_hashinfo *table = sk->sk_prot->h.hashinfo; |
132 | unsigned short port = inet_sk(child)->inet_num; | 132 | unsigned short port = inet_sk(child)->inet_num; |