diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index 1e2c04e48f98f3fdc6a57ae55f72f93cbcacbaec..2fd1367a59820e28e9fd89db0d46a60577cc999f 100644 --- a/fs/ntfs3/super.c +++ b/fs/ntfs3/super.c @@ -1167,7 +1167,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc) goto put_inode_out; } bytes = inode->i_size; - sbi->def_table = t = kmalloc(bytes, GFP_NOFS); + sbi->def_table = t = kmalloc(bytes, GFP_NOFS | __GFP_NOWARN); if (!t) { err = -ENOMEM; goto put_inode_out;