Re: [PATCH 3/3 v2] proc: use kzalloc instead of kmalloc and memset

2012-09-05 Thread Andrew Morton
On Wed, 5 Sep 2012 20:17:17 +0800 yan wrote: > Part of the memory will be written twice after this change, but that > should be negligible. > > ... > > --- a/fs/proc/generic.c > +++ b/fs/proc/generic.c > @@ -616,10 +616,9 @@ static struct proc_dir_entry *__proc_create(struct > proc_dir_entry

[PATCH 3/3 v2] proc: use kzalloc instead of kmalloc and memset

2012-09-05 Thread yan
Part of the memory will be written twice after this change, but that should be negligible. Signed-off-by: yan --- fs/proc/generic.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fs/proc/generic.c b/fs/proc/generic.c index 9e8f631..38de015 100644 --- a/fs/proc/generic.