[PATCH] fs: Conversions from kmalloc+memset to k(z|c)alloc
[deliverable/linux.git] / fs / fat / inode.c
index 31b7174176ba76798284286e8f6767419cef7e12..bc4da3a48c8c33d5057d89f5c7ac837b876fdb68 100644 (file)
@@ -1168,11 +1168,10 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
        long error;
        char buf[50];
 
-       sbi = kmalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
+       sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
        if (!sbi)
                return -ENOMEM;
        sb->s_fs_info = sbi;
-       memset(sbi, 0, sizeof(struct msdos_sb_info));
 
        sb->s_flags |= MS_NODIRATIME;
        sb->s_magic = MSDOS_SUPER_MAGIC;
This page took 0.024582 seconds and 5 git commands to generate.