projects
/
~shefty
/
rdma-dev.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
ext4: use kzalloc in ext4_kzalloc()
[~shefty/rdma-dev.git]
/
fs
/
ext4
/
super.c
diff --git
a/fs/ext4/super.c
b/fs/ext4/super.c
index e2d88baf91d33a39fc0136565e7640ac368a4721..4687fea0c00f24498ff58c80e7d39d9c086bd62a 100644
(file)
--- a/
fs/ext4/super.c
+++ b/
fs/ext4/super.c
@@
-124,7
+124,7
@@
void *ext4_kvzalloc(size_t size, gfp_t flags)
{
void *ret;
- ret = k
m
alloc(size, flags);
+ ret = k
z
alloc(size, flags);
if (!ret)
ret = __vmalloc(size, flags | __GFP_ZERO, PAGE_KERNEL);
return ret;