Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
d5c1515c
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d5c1515c
编写于
6月 07, 2010
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
switch gfs2 to ->evict_inode()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
066d92dc
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
15 addition
and
24 deletion
+15
-24
fs/gfs2/super.c
fs/gfs2/super.c
+15
-24
未找到文件。
fs/gfs2/super.c
浏览文件 @
d5c1515c
...
...
@@ -1203,25 +1203,6 @@ static void gfs2_drop_inode(struct inode *inode)
generic_drop_inode
(
inode
);
}
/**
* gfs2_clear_inode - Deallocate an inode when VFS is done with it
* @inode: The VFS inode
*
*/
static
void
gfs2_clear_inode
(
struct
inode
*
inode
)
{
struct
gfs2_inode
*
ip
=
GFS2_I
(
inode
);
ip
->
i_gl
->
gl_object
=
NULL
;
gfs2_glock_put
(
ip
->
i_gl
);
ip
->
i_gl
=
NULL
;
if
(
ip
->
i_iopen_gh
.
gh_gl
)
{
ip
->
i_iopen_gh
.
gh_gl
->
gl_object
=
NULL
;
gfs2_glock_dq_uninit
(
&
ip
->
i_iopen_gh
);
}
}
static
int
is_ancestor
(
const
struct
dentry
*
d1
,
const
struct
dentry
*
d2
)
{
do
{
...
...
@@ -1347,13 +1328,16 @@ static int gfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
* is safe, just less efficient.
*/
static
void
gfs2_
delete
_inode
(
struct
inode
*
inode
)
static
void
gfs2_
evict
_inode
(
struct
inode
*
inode
)
{
struct
gfs2_sbd
*
sdp
=
inode
->
i_sb
->
s_fs_info
;
struct
gfs2_inode
*
ip
=
GFS2_I
(
inode
);
struct
gfs2_holder
gh
;
int
error
;
if
(
inode
->
i_nlink
)
goto
out
;
error
=
gfs2_glock_nq_init
(
ip
->
i_gl
,
LM_ST_EXCLUSIVE
,
0
,
&
gh
);
if
(
unlikely
(
error
))
{
gfs2_glock_dq_uninit
(
&
ip
->
i_iopen_gh
);
...
...
@@ -1407,10 +1391,18 @@ static void gfs2_delete_inode(struct inode *inode)
gfs2_holder_uninit
(
&
ip
->
i_iopen_gh
);
gfs2_glock_dq_uninit
(
&
gh
);
if
(
error
&&
error
!=
GLR_TRYFAILED
&&
error
!=
-
EROFS
)
fs_warn
(
sdp
,
"gfs2_
delete
_inode: %d
\n
"
,
error
);
fs_warn
(
sdp
,
"gfs2_
evict
_inode: %d
\n
"
,
error
);
out:
truncate_inode_pages
(
&
inode
->
i_data
,
0
);
clear_inode
(
inode
);
end_writeback
(
inode
);
ip
->
i_gl
->
gl_object
=
NULL
;
gfs2_glock_put
(
ip
->
i_gl
);
ip
->
i_gl
=
NULL
;
if
(
ip
->
i_iopen_gh
.
gh_gl
)
{
ip
->
i_iopen_gh
.
gh_gl
->
gl_object
=
NULL
;
gfs2_glock_dq_uninit
(
&
ip
->
i_iopen_gh
);
}
}
static
struct
inode
*
gfs2_alloc_inode
(
struct
super_block
*
sb
)
...
...
@@ -1434,14 +1426,13 @@ const struct super_operations gfs2_super_ops = {
.
alloc_inode
=
gfs2_alloc_inode
,
.
destroy_inode
=
gfs2_destroy_inode
,
.
write_inode
=
gfs2_write_inode
,
.
delete_inode
=
gfs2_delete
_inode
,
.
evict_inode
=
gfs2_evict
_inode
,
.
put_super
=
gfs2_put_super
,
.
sync_fs
=
gfs2_sync_fs
,
.
freeze_fs
=
gfs2_freeze
,
.
unfreeze_fs
=
gfs2_unfreeze
,
.
statfs
=
gfs2_statfs
,
.
remount_fs
=
gfs2_remount_fs
,
.
clear_inode
=
gfs2_clear_inode
,
.
drop_inode
=
gfs2_drop_inode
,
.
show_options
=
gfs2_show_options
,
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录