diff options
-rw-r--r-- | include/net/inet_hashtables.h | 2 | ||||
-rw-r--r-- | net/ipv4/inet_hashtables.c | 2 |
2 files changed, 2 insertions, 2 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) | |||
199 | } | 199 | } |
200 | 200 | ||
201 | /* Caller must disable local BH processing. */ | 201 | /* Caller must disable local BH processing. */ |
202 | int __inet_inherit_port(struct sock *sk, struct sock *child); | 202 | int __inet_inherit_port(const struct sock *sk, struct sock *child); |
203 | 203 | ||
204 | void inet_put_port(struct sock *sk); | 204 | void inet_put_port(struct sock *sk); |
205 | 205 | ||
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; |