diff options
author | Mariusz Kozlowski <m.kozlowski@tuxland.pl> | 2007-08-01 21:54:27 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-08-02 19:42:27 -0700 |
commit | 1bcabbdb0bdfe8b15b05150a7857646430aaa7f8 (patch) | |
tree | 6a6534c8ac22ab69498c85dc02d07ef1206e2e11 /net | |
parent | 4487b2f657a4d204c35a7afaa45fc8569c9069ca (diff) | |
download | linux-stable-1bcabbdb0bdfe8b15b05150a7857646430aaa7f8.tar.gz linux-stable-1bcabbdb0bdfe8b15b05150a7857646430aaa7f8.tar.bz2 linux-stable-1bcabbdb0bdfe8b15b05150a7857646430aaa7f8.zip |
[IPV4] route.c: mostly kmalloc + memset conversion to k[cz]alloc
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index df42b7fb3268..c7ca94bd152c 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -374,8 +374,9 @@ static int rt_cache_seq_open(struct inode *inode, struct file *file) { struct seq_file *seq; int rc = -ENOMEM; - struct rt_cache_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL); + struct rt_cache_iter_state *s; + s = kzalloc(sizeof(*s), GFP_KERNEL); if (!s) goto out; rc = seq_open(file, &rt_cache_seq_ops); @@ -383,7 +384,6 @@ static int rt_cache_seq_open(struct inode *inode, struct file *file) goto out_kfree; seq = file->private_data; seq->private = s; - memset(s, 0, sizeof(*s)); out: return rc; out_kfree: |