aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/inet_fragment.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2007-10-17 22:46:47 -0400
committerDavid S. Miller <davem@davemloft.net>2007-10-17 22:46:47 -0400
commitc6fda282294da882f8d8cc4c513940277dd380f5 (patch)
tree29ef5fbc59320851c8db28e7f2c0a8c3fd85c231 /net/ipv4/inet_fragment.c
parente521db9d790aaa60ae8920e21cb7faedc280fc36 (diff)
[INET]: Consolidate xxx_frag_create()
This one uses the xxx_frag_intern() and xxx_frag_alloc() routines, which are already consolidated, so remove them from protocol code (as promised). The ->constructor callback is used to init the rest of the frag queue and it is the same for netfilter and ipv6. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_fragment.c')
-rw-r--r--net/ipv4/inet_fragment.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/net/ipv4/inet_fragment.c b/net/ipv4/inet_fragment.c
index 57e15fa307dc..b531f803cda4 100644
--- a/net/ipv4/inet_fragment.c
+++ b/net/ipv4/inet_fragment.c
@@ -173,7 +173,7 @@ int inet_frag_evictor(struct inet_frags *f)
173} 173}
174EXPORT_SYMBOL(inet_frag_evictor); 174EXPORT_SYMBOL(inet_frag_evictor);
175 175
176struct inet_frag_queue *inet_frag_intern(struct inet_frag_queue *qp_in, 176static struct inet_frag_queue *inet_frag_intern(struct inet_frag_queue *qp_in,
177 struct inet_frags *f, unsigned int hash) 177 struct inet_frags *f, unsigned int hash)
178{ 178{
179 struct inet_frag_queue *qp; 179 struct inet_frag_queue *qp;
@@ -208,9 +208,8 @@ struct inet_frag_queue *inet_frag_intern(struct inet_frag_queue *qp_in,
208 write_unlock(&f->lock); 208 write_unlock(&f->lock);
209 return qp; 209 return qp;
210} 210}
211EXPORT_SYMBOL(inet_frag_intern);
212 211
213struct inet_frag_queue *inet_frag_alloc(struct inet_frags *f) 212static struct inet_frag_queue *inet_frag_alloc(struct inet_frags *f, void *arg)
214{ 213{
215 struct inet_frag_queue *q; 214 struct inet_frag_queue *q;
216 215
@@ -218,6 +217,7 @@ struct inet_frag_queue *inet_frag_alloc(struct inet_frags *f)
218 if (q == NULL) 217 if (q == NULL)
219 return NULL; 218 return NULL;
220 219
220 f->constructor(q, arg);
221 atomic_add(f->qsize, &f->mem); 221 atomic_add(f->qsize, &f->mem);
222 setup_timer(&q->timer, f->frag_expire, (unsigned long)q); 222 setup_timer(&q->timer, f->frag_expire, (unsigned long)q);
223 spin_lock_init(&q->lock); 223 spin_lock_init(&q->lock);
@@ -225,4 +225,16 @@ struct inet_frag_queue *inet_frag_alloc(struct inet_frags *f)
225 225
226 return q; 226 return q;
227} 227}
228EXPORT_SYMBOL(inet_frag_alloc); 228
229struct inet_frag_queue *inet_frag_create(struct inet_frags *f, void *arg,
230 unsigned int hash)
231{
232 struct inet_frag_queue *q;
233
234 q = inet_frag_alloc(f, arg);
235 if (q == NULL)
236 return NULL;
237
238 return inet_frag_intern(q, f, hash);
239}
240EXPORT_SYMBOL(inet_frag_create);