* [PATCH] net/ipv6/ip6mr.c: Use kmem_cache_zalloc, remove memset
@ 2008-12-03 22:39 Joe Perches
2008-12-04 6:27 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Joe Perches @ 2008-12-03 22:39 UTC (permalink / raw)
To: David S. Miller; +Cc: netdev
Signed-off-by: Joe Perches <joe@perches.com>
---
net/ipv6/ip6mr.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c
index dfba9fd..f641eac 100644
--- a/net/ipv6/ip6mr.c
+++ b/net/ipv6/ip6mr.c
@@ -686,20 +686,18 @@ static struct mfc6_cache *ip6mr_cache_find(struct in6_addr *origin, struct in6_a
*/
static struct mfc6_cache *ip6mr_cache_alloc(void)
{
- struct mfc6_cache *c = kmem_cache_alloc(mrt_cachep, GFP_KERNEL);
+ struct mfc6_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_KERNEL);
if (c == NULL)
return NULL;
- memset(c, 0, sizeof(*c));
c->mfc_un.res.minvif = MAXMIFS;
return c;
}
static struct mfc6_cache *ip6mr_cache_alloc_unres(void)
{
- struct mfc6_cache *c = kmem_cache_alloc(mrt_cachep, GFP_ATOMIC);
+ struct mfc6_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_ATOMIC);
if (c == NULL)
return NULL;
- memset(c, 0, sizeof(*c));
skb_queue_head_init(&c->mfc_un.unres.unresolved);
c->mfc_un.unres.expires = jiffies + 10 * HZ;
return c;
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] net/ipv6/ip6mr.c: Use kmem_cache_zalloc, remove memset
2008-12-03 22:39 [PATCH] net/ipv6/ip6mr.c: Use kmem_cache_zalloc, remove memset Joe Perches
@ 2008-12-04 6:27 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2008-12-04 6:27 UTC (permalink / raw)
To: joe; +Cc: netdev
From: Joe Perches <joe@perches.com>
Date: Wed, 03 Dec 2008 14:39:55 -0800
> Signed-off-by: Joe Perches <joe@perches.com>
Applied, thanks Joe.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-12-04 6:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-03 22:39 [PATCH] net/ipv6/ip6mr.c: Use kmem_cache_zalloc, remove memset Joe Perches
2008-12-04 6:27 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).