diff options
author | Panagiotis Issaris <takis@issaris.org> | 2006-09-27 04:49:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-27 11:26:10 -0400 |
commit | f8314dc60ccba7e41f425048c4160dc7f63377d5 (patch) | |
tree | 4e361a6e93dc7f64da0244e5a0dfef1fface0ddb /fs/configfs/inode.c | |
parent | 32c2d2bc4bed61323f14f2a7d69ccbd567253d8a (diff) |
[PATCH] fs: Conversions from kmalloc+memset to k(z|c)alloc
Conversions from kmalloc+memset to kzalloc.
Signed-off-by: Panagiotis Issaris <takis@issaris.org>
Jffs2-bit-acked-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/configfs/inode.c')
-rw-r--r-- | fs/configfs/inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/configfs/inode.c b/fs/configfs/inode.c index e14488ca6411..5047e6a7581e 100644 --- a/fs/configfs/inode.c +++ b/fs/configfs/inode.c | |||
@@ -76,11 +76,10 @@ int configfs_setattr(struct dentry * dentry, struct iattr * iattr) | |||
76 | 76 | ||
77 | if (!sd_iattr) { | 77 | if (!sd_iattr) { |
78 | /* setting attributes for the first time, allocate now */ | 78 | /* setting attributes for the first time, allocate now */ |
79 | sd_iattr = kmalloc(sizeof(struct iattr), GFP_KERNEL); | 79 | sd_iattr = kzalloc(sizeof(struct iattr), GFP_KERNEL); |
80 | if (!sd_iattr) | 80 | if (!sd_iattr) |
81 | return -ENOMEM; | 81 | return -ENOMEM; |
82 | /* assign default attributes */ | 82 | /* assign default attributes */ |
83 | memset(sd_iattr, 0, sizeof(struct iattr)); | ||
84 | sd_iattr->ia_mode = sd->s_mode; | 83 | sd_iattr->ia_mode = sd->s_mode; |
85 | sd_iattr->ia_uid = 0; | 84 | sd_iattr->ia_uid = 0; |
86 | sd_iattr->ia_gid = 0; | 85 | sd_iattr->ia_gid = 0; |