diff options
Diffstat (limited to 'fs/fat')
-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; |