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/fat/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/fat/inode.c')
-rw-r--r-- | fs/fat/inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 31b7174176ba..bc4da3a48c8c 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c | |||
@@ -1168,11 +1168,10 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, | |||
1168 | long error; | 1168 | long error; |
1169 | char buf[50]; | 1169 | char buf[50]; |
1170 | 1170 | ||
1171 | sbi = kmalloc(sizeof(struct msdos_sb_info), GFP_KERNEL); | 1171 | sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL); |
1172 | if (!sbi) | 1172 | if (!sbi) |
1173 | return -ENOMEM; | 1173 | return -ENOMEM; |
1174 | sb->s_fs_info = sbi; | 1174 | sb->s_fs_info = sbi; |
1175 | memset(sbi, 0, sizeof(struct msdos_sb_info)); | ||
1176 | 1175 | ||
1177 | sb->s_flags |= MS_NODIRATIME; | 1176 | sb->s_flags |= MS_NODIRATIME; |
1178 | sb->s_magic = MSDOS_SUPER_MAGIC; | 1177 | sb->s_magic = MSDOS_SUPER_MAGIC; |