Commit 1bcabbdb authored by Mariusz Kozlowski's avatar Mariusz Kozlowski Committed by David S. Miller

[IPV4] route.c: mostly kmalloc + memset conversion to k[cz]alloc

Signed-off-by: default avatarMariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4487b2f6
...@@ -374,8 +374,9 @@ static int rt_cache_seq_open(struct inode *inode, struct file *file) ...@@ -374,8 +374,9 @@ static int rt_cache_seq_open(struct inode *inode, struct file *file)
{ {
struct seq_file *seq; struct seq_file *seq;
int rc = -ENOMEM; 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) if (!s)
goto out; goto out;
rc = seq_open(file, &rt_cache_seq_ops); rc = seq_open(file, &rt_cache_seq_ops);
...@@ -383,7 +384,6 @@ static int rt_cache_seq_open(struct inode *inode, struct file *file) ...@@ -383,7 +384,6 @@ static int rt_cache_seq_open(struct inode *inode, struct file *file)
goto out_kfree; goto out_kfree;
seq = file->private_data; seq = file->private_data;
seq->private = s; seq->private = s;
memset(s, 0, sizeof(*s));
out: out:
return rc; return rc;
out_kfree: out_kfree:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment