projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbf20cb
)
f2fs: fix to put root inode in error path of fill_super
author
Chao Yu
<
[email protected]
>
Fri, 25 Jul 2014 04:55:09 +0000
(12:55 +0800)
committer
Jaegeuk Kim
<
[email protected]
>
Fri, 25 Jul 2014 15:19:57 +0000
(08:19 -0700)
We should put root inode correctly in error path of fill_super, otherwise we
may encounter a leak case of inode resource.
Signed-off-by: Chao Yu <
[email protected]
>
Reviewed-by: Gu Zheng <
[email protected]
>
Signed-off-by: Jaegeuk Kim <
[email protected]
>
fs/f2fs/super.c
patch
|
blob
|
history
diff --git
a/fs/f2fs/super.c
b/fs/f2fs/super.c
index 870fe199bafb44b8f482310815e7580a58608267..34649aa66e0428d28cd5ddd0f1864d228edc4537 100644
(file)
--- a/
fs/f2fs/super.c
+++ b/
fs/f2fs/super.c
@@
-1033,8
+1033,9
@@
static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
goto free_node_inode;
}
if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
+ iput(root);
err = -EINVAL;
- goto free_
root
_inode;
+ goto free_
node
_inode;
}
sb->s_root = d_make_root(root); /* allocate root dentry */