commit | 14595f708eeb528fabcee339ed0b9e0a2ecec73f | [log] [tgz] |
---|---|---|
author | Linus Torvalds <torvalds@linux-foundation.org> | Wed Aug 03 15:09:10 2011 -1000 |
committer | Linus Torvalds <torvalds@linux-foundation.org> | Wed Aug 03 15:09:10 2011 -1000 |
tree | e4c8ee1004f6ff445bd058a82791341f7f3301be | |
parent | 298507d4d2cff2248e84afcf646b697301294442 [diff] | |
parent | db9481c0476c6475d058ac7ecebb5a822b43cc99 [diff] |
Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4 * 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4: ext4: use kzalloc in ext4_kzalloc()
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index e2d88ba..4687fea 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c
@@ -124,7 +124,7 @@ { void *ret; - ret = kmalloc(size, flags); + ret = kzalloc(size, flags); if (!ret) ret = __vmalloc(size, flags | __GFP_ZERO, PAGE_KERNEL); return ret;