Loading fs/ext4/super.c +1 −1 Original line number Diff line number Diff line Loading @@ -124,7 +124,7 @@ void *ext4_kvzalloc(size_t size, gfp_t flags) { void *ret; ret = kmalloc(size, flags); ret = kzalloc(size, flags); if (!ret) ret = __vmalloc(size, flags | __GFP_ZERO, PAGE_KERNEL); return ret; Loading Loading
fs/ext4/super.c +1 −1 Original line number Diff line number Diff line Loading @@ -124,7 +124,7 @@ void *ext4_kvzalloc(size_t size, gfp_t flags) { void *ret; ret = kmalloc(size, flags); ret = kzalloc(size, flags); if (!ret) ret = __vmalloc(size, flags | __GFP_ZERO, PAGE_KERNEL); return ret; Loading