diff options
Diffstat (limited to 'include/net/inet_hashtables.h')
-rw-r--r-- | include/net/inet_hashtables.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/inet_hashtables.h b/include/net/inet_hashtables.h index 61dd3317089c..26336cdcdc11 100644 --- a/include/net/inet_hashtables.h +++ b/include/net/inet_hashtables.h | |||
@@ -211,14 +211,14 @@ extern void inet_bind_hash(struct sock *sk, struct inet_bind_bucket *tb, | |||
211 | const unsigned short snum); | 211 | const unsigned short snum); |
212 | 212 | ||
213 | /* These can have wildcards, don't try too hard. */ | 213 | /* These can have wildcards, don't try too hard. */ |
214 | static inline int inet_lhashfn(const unsigned short num) | 214 | static inline int inet_lhashfn(struct net *net, const unsigned short num) |
215 | { | 215 | { |
216 | return num & (INET_LHTABLE_SIZE - 1); | 216 | return num & (INET_LHTABLE_SIZE - 1); |
217 | } | 217 | } |
218 | 218 | ||
219 | static inline int inet_sk_listen_hashfn(const struct sock *sk) | 219 | static inline int inet_sk_listen_hashfn(const struct sock *sk) |
220 | { | 220 | { |
221 | return inet_lhashfn(inet_sk(sk)->num); | 221 | return inet_lhashfn(sock_net(sk), inet_sk(sk)->num); |
222 | } | 222 | } |
223 | 223 | ||
224 | /* Caller must disable local BH processing. */ | 224 | /* Caller must disable local BH processing. */ |