aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
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/ipv6
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/ipv6')
-rw-r--r--net/ipv6/netfilter/nf_conntrack_reasm.c39
-rw-r--r--net/ipv6/reassembly.c45
2 files changed, 32 insertions, 52 deletions
diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c
index 3f8c16b3301e..127d1d842786 100644
--- a/net/ipv6/netfilter/nf_conntrack_reasm.c
+++ b/net/ipv6/netfilter/nf_conntrack_reasm.c
@@ -135,14 +135,6 @@ static void nf_frag_free(struct inet_frag_queue *q)
135 kfree(container_of(q, struct nf_ct_frag6_queue, q)); 135 kfree(container_of(q, struct nf_ct_frag6_queue, q));
136} 136}
137 137
138static inline struct nf_ct_frag6_queue *frag_alloc_queue(void)
139{
140 struct inet_frag_queue *q;
141
142 q = inet_frag_alloc(&nf_frags);
143 return q ? container_of(q, struct nf_ct_frag6_queue, q) : NULL;
144}
145
146/* Destruction primitives. */ 138/* Destruction primitives. */
147 139
148static __inline__ void fq_put(struct nf_ct_frag6_queue *fq) 140static __inline__ void fq_put(struct nf_ct_frag6_queue *fq)
@@ -184,33 +176,25 @@ out:
184 176
185/* Creation primitives. */ 177/* Creation primitives. */
186 178
187static struct nf_ct_frag6_queue *nf_ct_frag6_intern(unsigned int hash, 179static struct nf_ct_frag6_queue *
188 struct nf_ct_frag6_queue *fq_in) 180nf_ct_frag6_create(unsigned int hash, __be32 id, struct in6_addr *src,
181 struct in6_addr *dst)
189{ 182{
190 struct inet_frag_queue *q; 183 struct inet_frag_queue *q;
184 struct ip6_create_arg arg;
191 185
192 q = inet_frag_intern(&fq_in->q, &nf_frags, hash); 186 arg.id = id;
193 return container_of(q, struct nf_ct_frag6_queue, q); 187 arg.src = src;
194} 188 arg.dst = dst;
195
196
197static struct nf_ct_frag6_queue *
198nf_ct_frag6_create(unsigned int hash, __be32 id, struct in6_addr *src, struct in6_addr *dst)
199{
200 struct nf_ct_frag6_queue *fq;
201 189
202 if ((fq = frag_alloc_queue()) == NULL) { 190 q = inet_frag_create(&nf_frags, &arg, hash);
203 pr_debug("Can't alloc new queue\n"); 191 if (q == NULL)
204 goto oom; 192 goto oom;
205 }
206 193
207 fq->id = id; 194 return container_of(q, struct nf_ct_frag6_queue, q);
208 ipv6_addr_copy(&fq->saddr, src);
209 ipv6_addr_copy(&fq->daddr, dst);
210
211 return nf_ct_frag6_intern(hash, fq);
212 195
213oom: 196oom:
197 pr_debug("Can't alloc new queue\n");
214 return NULL; 198 return NULL;
215} 199}
216 200
@@ -718,6 +702,7 @@ int nf_ct_frag6_init(void)
718{ 702{
719 nf_frags.ctl = &nf_frags_ctl; 703 nf_frags.ctl = &nf_frags_ctl;
720 nf_frags.hashfn = nf_hashfn; 704 nf_frags.hashfn = nf_hashfn;
705 nf_frags.constructor = ip6_frag_init;
721 nf_frags.destructor = nf_frag_free; 706 nf_frags.destructor = nf_frag_free;
722 nf_frags.skb_free = nf_skb_free; 707 nf_frags.skb_free = nf_skb_free;
723 nf_frags.qsize = sizeof(struct nf_ct_frag6_queue); 708 nf_frags.qsize = sizeof(struct nf_ct_frag6_queue);
diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c
index 21913c78f053..ce8734028d94 100644
--- a/net/ipv6/reassembly.c
+++ b/net/ipv6/reassembly.c
@@ -164,17 +164,20 @@ static inline void frag_kfree_skb(struct sk_buff *skb, int *work)
164 kfree_skb(skb); 164 kfree_skb(skb);
165} 165}
166 166
167static void ip6_frag_free(struct inet_frag_queue *fq) 167void ip6_frag_init(struct inet_frag_queue *q, void *a)
168{ 168{
169 kfree(container_of(fq, struct frag_queue, q)); 169 struct frag_queue *fq = container_of(q, struct frag_queue, q);
170 struct ip6_create_arg *arg = a;
171
172 fq->id = arg->id;
173 ipv6_addr_copy(&fq->saddr, arg->src);
174 ipv6_addr_copy(&fq->daddr, arg->dst);
170} 175}
176EXPORT_SYMBOL(ip6_frag_init);
171 177
172static inline struct frag_queue *frag_alloc_queue(void) 178static void ip6_frag_free(struct inet_frag_queue *fq)
173{ 179{
174 struct inet_frag_queue *q; 180 kfree(container_of(fq, struct frag_queue, q));
175
176 q = inet_frag_alloc(&ip6_frags);
177 return q ? container_of(q, struct frag_queue, q) : NULL;
178} 181}
179 182
180/* Destruction primitives. */ 183/* Destruction primitives. */
@@ -244,31 +247,22 @@ out:
244 247
245/* Creation primitives. */ 248/* Creation primitives. */
246 249
247
248static struct frag_queue *ip6_frag_intern(struct frag_queue *fq_in,
249 unsigned int hash)
250{
251 struct inet_frag_queue *q;
252
253 q = inet_frag_intern(&fq_in->q, &ip6_frags, hash);
254 return container_of(q, struct frag_queue, q);
255}
256
257
258static struct frag_queue * 250static struct frag_queue *
259ip6_frag_create(__be32 id, struct in6_addr *src, struct in6_addr *dst, 251ip6_frag_create(__be32 id, struct in6_addr *src, struct in6_addr *dst,
260 struct inet6_dev *idev, unsigned int hash) 252 struct inet6_dev *idev, unsigned int hash)
261{ 253{
262 struct frag_queue *fq; 254 struct inet_frag_queue *q;
255 struct ip6_create_arg arg;
263 256
264 if ((fq = frag_alloc_queue()) == NULL) 257 arg.id = id;
265 goto oom; 258 arg.src = src;
259 arg.dst = dst;
266 260
267 fq->id = id; 261 q = inet_frag_create(&ip6_frags, &arg, hash);
268 ipv6_addr_copy(&fq->saddr, src); 262 if (q == NULL)
269 ipv6_addr_copy(&fq->daddr, dst); 263 goto oom;
270 264
271 return ip6_frag_intern(fq, hash); 265 return container_of(q, struct frag_queue, q);
272 266
273oom: 267oom:
274 IP6_INC_STATS_BH(idev, IPSTATS_MIB_REASMFAILS); 268 IP6_INC_STATS_BH(idev, IPSTATS_MIB_REASMFAILS);
@@ -675,6 +669,7 @@ void __init ipv6_frag_init(void)
675 669
676 ip6_frags.ctl = &ip6_frags_ctl; 670 ip6_frags.ctl = &ip6_frags_ctl;
677 ip6_frags.hashfn = ip6_hashfn; 671 ip6_frags.hashfn = ip6_hashfn;
672 ip6_frags.constructor = ip6_frag_init;
678 ip6_frags.destructor = ip6_frag_free; 673 ip6_frags.destructor = ip6_frag_free;
679 ip6_frags.skb_free = NULL; 674 ip6_frags.skb_free = NULL;
680 ip6_frags.qsize = sizeof(struct frag_queue); 675 ip6_frags.qsize = sizeof(struct frag_queue);