Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
066d92dc
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
066d92dc
编写于
6月 08, 2010
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
convert ocfs2 to ->evict_inode()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
94ee8494
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
16 addition
and
11 deletion
+16
-11
fs/ocfs2/inode.c
fs/ocfs2/inode.c
+14
-7
fs/ocfs2/inode.h
fs/ocfs2/inode.h
+1
-2
fs/ocfs2/super.c
fs/ocfs2/super.c
+1
-2
未找到文件。
fs/ocfs2/inode.c
浏览文件 @
066d92dc
...
...
@@ -969,7 +969,7 @@ static void ocfs2_cleanup_delete_inode(struct inode *inode,
truncate_inode_pages
(
&
inode
->
i_data
,
0
);
}
void
ocfs2_delete_inode
(
struct
inode
*
inode
)
static
void
ocfs2_delete_inode
(
struct
inode
*
inode
)
{
int
wipe
,
status
;
sigset_t
oldset
;
...
...
@@ -1075,20 +1075,17 @@ void ocfs2_delete_inode(struct inode *inode)
bail_unblock:
ocfs2_unblock_signals
(
&
oldset
);
bail:
clear_inode
(
inode
);
mlog_exit_void
();
}
void
ocfs2_clear_inode
(
struct
inode
*
inode
)
static
void
ocfs2_clear_inode
(
struct
inode
*
inode
)
{
int
status
;
struct
ocfs2_inode_info
*
oi
=
OCFS2_I
(
inode
);
mlog_entry_void
();
if
(
!
inode
)
goto
bail
;
end_writeback
(
inode
);
mlog
(
0
,
"Clearing inode: %llu, nlink = %u
\n
"
,
(
unsigned
long
long
)
OCFS2_I
(
inode
)
->
ip_blkno
,
inode
->
i_nlink
);
...
...
@@ -1180,10 +1177,20 @@ void ocfs2_clear_inode(struct inode *inode)
jbd2_journal_release_jbd_inode
(
OCFS2_SB
(
inode
->
i_sb
)
->
journal
->
j_journal
,
&
oi
->
ip_jinode
);
bail:
mlog_exit_void
();
}
void
ocfs2_evict_inode
(
struct
inode
*
inode
)
{
if
(
!
inode
->
i_nlink
||
(
OCFS2_I
(
inode
)
->
ip_flags
&
OCFS2_INODE_MAYBE_ORPHANED
))
{
ocfs2_delete_inode
(
inode
);
}
else
{
truncate_inode_pages
(
&
inode
->
i_data
,
0
);
}
ocfs2_clear_inode
(
inode
);
}
/* Called under inode_lock, with no more references on the
* struct inode, so it's safe here to check the flags field
* and to manipulate i_nlink without any other locks. */
...
...
fs/ocfs2/inode.h
浏览文件 @
066d92dc
...
...
@@ -123,8 +123,7 @@ static inline struct ocfs2_caching_info *INODE_CACHE(struct inode *inode)
return
&
OCFS2_I
(
inode
)
->
ip_metadata_cache
;
}
void
ocfs2_clear_inode
(
struct
inode
*
inode
);
void
ocfs2_delete_inode
(
struct
inode
*
inode
);
void
ocfs2_evict_inode
(
struct
inode
*
inode
);
void
ocfs2_drop_inode
(
struct
inode
*
inode
);
/* Flags for ocfs2_iget() */
...
...
fs/ocfs2/super.c
浏览文件 @
066d92dc
...
...
@@ -145,8 +145,7 @@ static const struct super_operations ocfs2_sops = {
.
alloc_inode
=
ocfs2_alloc_inode
,
.
destroy_inode
=
ocfs2_destroy_inode
,
.
drop_inode
=
ocfs2_drop_inode
,
.
clear_inode
=
ocfs2_clear_inode
,
.
delete_inode
=
ocfs2_delete_inode
,
.
evict_inode
=
ocfs2_evict_inode
,
.
sync_fs
=
ocfs2_sync_fs
,
.
put_super
=
ocfs2_put_super
,
.
remount_fs
=
ocfs2_remount
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录