diff options
Diffstat (limited to 'net/ipv4/inet_fragment.c')
-rw-r--r-- | net/ipv4/inet_fragment.c | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/net/ipv4/inet_fragment.c b/net/ipv4/inet_fragment.c index b531f803cda4..6ba98ebbed93 100644 --- a/net/ipv4/inet_fragment.c +++ b/net/ipv4/inet_fragment.c | |||
@@ -226,8 +226,8 @@ static struct inet_frag_queue *inet_frag_alloc(struct inet_frags *f, void *arg) | |||
226 | return q; | 226 | return q; |
227 | } | 227 | } |
228 | 228 | ||
229 | struct inet_frag_queue *inet_frag_create(struct inet_frags *f, void *arg, | 229 | static struct inet_frag_queue *inet_frag_create(struct inet_frags *f, |
230 | unsigned int hash) | 230 | void *arg, unsigned int hash) |
231 | { | 231 | { |
232 | struct inet_frag_queue *q; | 232 | struct inet_frag_queue *q; |
233 | 233 | ||
@@ -237,4 +237,23 @@ struct inet_frag_queue *inet_frag_create(struct inet_frags *f, void *arg, | |||
237 | 237 | ||
238 | return inet_frag_intern(q, f, hash); | 238 | return inet_frag_intern(q, f, hash); |
239 | } | 239 | } |
240 | EXPORT_SYMBOL(inet_frag_create); | 240 | |
241 | struct inet_frag_queue *inet_frag_find(struct inet_frags *f, void *key, | ||
242 | unsigned int hash) | ||
243 | { | ||
244 | struct inet_frag_queue *q; | ||
245 | struct hlist_node *n; | ||
246 | |||
247 | read_lock(&f->lock); | ||
248 | hlist_for_each_entry(q, n, &f->hash[hash], list) { | ||
249 | if (f->match(q, key)) { | ||
250 | atomic_inc(&q->refcnt); | ||
251 | read_unlock(&f->lock); | ||
252 | return q; | ||
253 | } | ||
254 | } | ||
255 | read_unlock(&f->lock); | ||
256 | |||
257 | return inet_frag_create(f, key, hash); | ||
258 | } | ||
259 | EXPORT_SYMBOL(inet_frag_find); | ||