diff options
| author | Eric Dumazet <[email protected]> | 2015-09-29 14:42:44 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2015-09-29 23:53:08 +0000 |
| commit | 1ce31c9e08997ea0fa62be0a7437f868be173f13 (patch) | |
| tree | ba3b66942c662ea6fe6c12db810550cef7984d65 /include/net/inet_hashtables.h | |
| parent | inet: constify inet_csk_route_child_sock() socket argument (diff) | |
| download | kernel-1ce31c9e08997ea0fa62be0a7437f868be173f13.tar.gz kernel-1ce31c9e08997ea0fa62be0a7437f868be173f13.zip | |
inet: constify __inet_inherit_port() sock argument
socket is not touched, make it const.
Signed-off-by: Eric Dumazet <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'include/net/inet_hashtables.h')
| -rw-r--r-- | include/net/inet_hashtables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/inet_hashtables.h b/include/net/inet_hashtables.h index b07d126694a7..3fb778d7c875 100644 --- a/include/net/inet_hashtables.h +++ b/include/net/inet_hashtables.h @@ -199,7 +199,7 @@ static inline int inet_sk_listen_hashfn(const struct sock *sk) } /* Caller must disable local BH processing. */ -int __inet_inherit_port(struct sock *sk, struct sock *child); +int __inet_inherit_port(const struct sock *sk, struct sock *child); void inet_put_port(struct sock *sk); |
