Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
f4702d61
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f4702d61
编写于
9月 09, 2016
作者:
J
Jaegeuk Kim
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
f2fs: add common iget in add_fsync_inode
There is no functional change. Signed-off-by:
N
Jaegeuk Kim
<
jaegeuk@kernel.org
>
上级
7f3037a5
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
17 addition
and
26 deletion
+17
-26
fs/f2fs/recovery.c
fs/f2fs/recovery.c
+17
-26
未找到文件。
fs/f2fs/recovery.c
浏览文件 @
f4702d61
...
...
@@ -68,14 +68,20 @@ static struct fsync_inode_entry *get_fsync_inode(struct list_head *head,
return
NULL
;
}
static
struct
fsync_inode_entry
*
add_fsync_inode
(
struct
list_head
*
head
,
struct
inode
*
inode
)
static
struct
fsync_inode_entry
*
add_fsync_inode
(
struct
f2fs_sb_info
*
sbi
,
struct
list_head
*
head
,
nid_t
ino
)
{
struct
inode
*
inode
=
f2fs_iget
(
sbi
->
sb
,
ino
);
struct
fsync_inode_entry
*
entry
;
if
(
IS_ERR
(
inode
))
return
ERR_CAST
(
inode
);
entry
=
kmem_cache_alloc
(
fsync_entry_slab
,
GFP_F2FS_ZERO
);
if
(
!
entry
)
return
NULL
;
if
(
!
entry
)
{
iput
(
inode
);
return
ERR_PTR
(
-
ENOMEM
);
}
entry
->
inode
=
inode
;
list_add_tail
(
&
entry
->
list
,
head
);
...
...
@@ -105,16 +111,10 @@ static int recover_dentry(struct inode *inode, struct page *ipage,
entry
=
get_fsync_inode
(
dir_list
,
pino
);
if
(
!
entry
)
{
dir
=
f2fs_iget
(
inode
->
i_sb
,
pino
);
if
(
IS_ERR
(
dir
))
{
err
=
PTR_ERR
(
dir
);
goto
out
;
}
entry
=
add_fsync_inode
(
dir_list
,
dir
);
if
(
!
entry
)
{
err
=
-
ENOMEM
;
iput
(
dir
);
entry
=
add_fsync_inode
(
F2FS_I_SB
(
inode
),
dir_list
,
pino
);
if
(
IS_ERR
(
entry
))
{
dir
=
ERR_CAST
(
entry
);
err
=
PTR_ERR
(
entry
);
goto
out
;
}
}
...
...
@@ -228,7 +228,6 @@ static int find_fsync_dnodes(struct f2fs_sb_info *sbi, struct list_head *head)
{
unsigned
long
long
cp_ver
=
cur_cp_version
(
F2FS_CKPT
(
sbi
));
struct
curseg_info
*
curseg
;
struct
inode
*
inode
;
struct
page
*
page
=
NULL
;
block_t
blkaddr
;
int
err
=
0
;
...
...
@@ -266,23 +265,15 @@ static int find_fsync_dnodes(struct f2fs_sb_info *sbi, struct list_head *head)
* CP | dnode(F) | inode(DF)
* For this case, we should not give up now.
*/
inode
=
f2fs_iget
(
sbi
->
sb
,
ino_of_node
(
page
));
if
(
IS_ERR
(
inode
))
{
err
=
PTR_ERR
(
inode
);
entry
=
add_fsync_inode
(
sbi
,
head
,
ino_of_node
(
page
));
if
(
IS_ERR
(
entry
))
{
err
=
PTR_ERR
(
entry
);
if
(
err
==
-
ENOENT
)
{
err
=
0
;
goto
next
;
}
break
;
}
/* add this fsync inode to the list */
entry
=
add_fsync_inode
(
head
,
inode
);
if
(
!
entry
)
{
err
=
-
ENOMEM
;
iput
(
inode
);
break
;
}
}
entry
->
blkaddr
=
blkaddr
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录