aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/inet_hashtables.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2006-08-08 05:18:10 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 17:54:11 -0400
commit99a92ff50424146ba01a222248fd47a1cd55b78f (patch)
tree85f78f657bfb7379206d3b27c5c3fa77bb7a1cd9 /net/ipv4/inet_hashtables.c
parent1a01912ae0a5666c4c24eaae2b4821711e2ad79a (diff)
[IPV4]: Uninline inet_lookup_listener
By modern standards this function is way too big to be inlined. It's even bigger than __inet_lookup_listener :) Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_hashtables.c')
-rw-r--r--net/ipv4/inet_hashtables.c35
1 files changed, 32 insertions, 3 deletions
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c
index 95fac5532994..bfc39066e730 100644
--- a/net/ipv4/inet_hashtables.c
+++ b/net/ipv4/inet_hashtables.c
@@ -124,8 +124,10 @@ EXPORT_SYMBOL(inet_listen_wlock);
124 * remote address for the connection. So always assume those are both 124 * remote address for the connection. So always assume those are both
125 * wildcarded during the search since they can never be otherwise. 125 * wildcarded during the search since they can never be otherwise.
126 */ 126 */
127struct sock *__inet_lookup_listener(const struct hlist_head *head, const u32 daddr, 127static struct sock *__inet_lookup_listener(const struct hlist_head *head,
128 const unsigned short hnum, const int dif) 128 const u32 daddr,
129 const unsigned short hnum,
130 const int dif)
129{ 131{
130 struct sock *result = NULL, *sk; 132 struct sock *result = NULL, *sk;
131 const struct hlist_node *node; 133 const struct hlist_node *node;
@@ -159,7 +161,34 @@ struct sock *__inet_lookup_listener(const struct hlist_head *head, const u32 dad
159 return result; 161 return result;
160} 162}
161 163
162EXPORT_SYMBOL_GPL(__inet_lookup_listener); 164/* Optimize the common listener case. */
165struct sock *inet_lookup_listener(struct inet_hashinfo *hashinfo,
166 const u32 daddr, const unsigned short hnum,
167 const int dif)
168{
169 struct sock *sk = NULL;
170 const struct hlist_head *head;
171
172 read_lock(&hashinfo->lhash_lock);
173 head = &hashinfo->listening_hash[inet_lhashfn(hnum)];
174 if (!hlist_empty(head)) {
175 const struct inet_sock *inet = inet_sk((sk = __sk_head(head)));
176
177 if (inet->num == hnum && !sk->sk_node.next &&
178 (!inet->rcv_saddr || inet->rcv_saddr == daddr) &&
179 (sk->sk_family == PF_INET || !ipv6_only_sock(sk)) &&
180 !sk->sk_bound_dev_if)
181 goto sherry_cache;
182 sk = __inet_lookup_listener(head, daddr, hnum, dif);
183 }
184 if (sk) {
185sherry_cache:
186 sock_hold(sk);
187 }
188 read_unlock(&hashinfo->lhash_lock);
189 return sk;
190}
191EXPORT_SYMBOL_GPL(inet_lookup_listener);
163 192
164/* called with local bh disabled */ 193/* called with local bh disabled */
165static int __inet_check_established(struct inet_timewait_death_row *death_row, 194static int __inet_check_established(struct inet_timewait_death_row *death_row,