diff options
author | Denis V. Lunev <den@openvz.org> | 2007-10-15 15:53:13 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-10-15 15:53:13 -0400 |
commit | f1673ca52c04f1b311abe03fd67cd4d650d19435 (patch) | |
tree | 1e84a0c5021dfb300ee667a123c229bcb2bcaab3 /net/ipv6 | |
parent | c749b01351d249a924d1dd061dd1431bd3ad0579 (diff) |
[INET]: kmalloc+memset -> kzalloc in frag_alloc_queue
kmalloc + memset -> kzalloc in frag_alloc_queue
Signed-off-by: Denis V. Lunev <den@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.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c index bf6f2f09eae3..726fafd41961 100644 --- a/net/ipv6/netfilter/nf_conntrack_reasm.c +++ b/net/ipv6/netfilter/nf_conntrack_reasm.c | |||
@@ -137,9 +137,10 @@ static void nf_frag_free(struct inet_frag_queue *q) | |||
137 | 137 | ||
138 | static inline struct nf_ct_frag6_queue *frag_alloc_queue(void) | 138 | static inline struct nf_ct_frag6_queue *frag_alloc_queue(void) |
139 | { | 139 | { |
140 | struct nf_ct_frag6_queue *fq = kmalloc(sizeof(struct nf_ct_frag6_queue), GFP_ATOMIC); | 140 | struct nf_ct_frag6_queue *fq; |
141 | 141 | ||
142 | if (!fq) | 142 | fq = kzalloc(sizeof(struct nf_ct_frag6_queue), GFP_ATOMIC); |
143 | if (fq == NULL) | ||
143 | return NULL; | 144 | return NULL; |
144 | atomic_add(sizeof(struct nf_ct_frag6_queue), &nf_frags.mem); | 145 | atomic_add(sizeof(struct nf_ct_frag6_queue), &nf_frags.mem); |
145 | return fq; | 146 | return fq; |
@@ -230,8 +231,6 @@ nf_ct_frag6_create(unsigned int hash, __be32 id, struct in6_addr *src, str | |||
230 | goto oom; | 231 | goto oom; |
231 | } | 232 | } |
232 | 233 | ||
233 | memset(fq, 0, sizeof(struct nf_ct_frag6_queue)); | ||
234 | |||
235 | fq->id = id; | 234 | fq->id = id; |
236 | ipv6_addr_copy(&fq->saddr, src); | 235 | ipv6_addr_copy(&fq->saddr, src); |
237 | ipv6_addr_copy(&fq->daddr, dst); | 236 | ipv6_addr_copy(&fq->daddr, dst); |