Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
5cc3821b
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5cc3821b
编写于
9月 26, 2014
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
pull rehashing and unlocking the target dentry into __d_materialise_dentry()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
e4502c63
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
4 addition
and
7 deletion
+4
-7
fs/dcache.c
fs/dcache.c
+4
-7
未找到文件。
fs/dcache.c
浏览文件 @
5cc3821b
...
...
@@ -2636,7 +2636,6 @@ static struct dentry *__d_unalias(struct inode *inode,
/*
* Prepare an anonymous dentry for life in the superblock's dentry tree as a
* named dentry in place of the dentry to be replaced.
* returns with anon->d_lock held!
*/
static
void
__d_materialise_dentry
(
struct
dentry
*
dentry
,
struct
dentry
*
anon
)
{
...
...
@@ -2655,21 +2654,21 @@ static void __d_materialise_dentry(struct dentry *dentry, struct dentry *anon)
dentry
->
d_parent
=
dentry
;
list_del_init
(
&
dentry
->
d_u
.
d_child
);
anon
->
d_parent
=
dparent
;
list_move
(
&
anon
->
d_u
.
d_child
,
&
dparent
->
d_subdirs
);
if
(
likely
(
!
d_unhashed
(
anon
)))
{
hlist_bl_lock
(
&
anon
->
d_sb
->
s_anon
);
__hlist_bl_del
(
&
anon
->
d_hash
);
anon
->
d_hash
.
pprev
=
NULL
;
hlist_bl_unlock
(
&
anon
->
d_sb
->
s_anon
);
}
list_move
(
&
anon
->
d_u
.
d_child
,
&
dparent
->
d_subdirs
);
__d_rehash
(
anon
,
d_hash
(
anon
->
d_parent
,
anon
->
d_name
.
hash
)
);
write_seqcount_end
(
&
dentry
->
d_seq
);
write_seqcount_end
(
&
anon
->
d_seq
);
dentry_unlock_parents_for_move
(
anon
,
dentry
);
spin_unlock
(
&
dentry
->
d_lock
);
/* anon->d_lock still locked, returns locked */
spin_unlock
(
&
anon
->
d_lock
);
}
/**
...
...
@@ -2719,8 +2718,6 @@ struct dentry *d_splice_alias(struct inode *inode, struct dentry *dentry)
write_seqlock
(
&
rename_lock
);
__d_materialise_dentry
(
dentry
,
new
);
write_sequnlock
(
&
rename_lock
);
_d_rehash
(
new
);
spin_unlock
(
&
new
->
d_lock
);
spin_unlock
(
&
inode
->
i_lock
);
security_d_instantiate
(
new
,
inode
);
iput
(
inode
);
...
...
@@ -2811,9 +2808,9 @@ struct dentry *d_materialise_unique(struct dentry *dentry, struct inode *inode)
BUG_ON
(
!
d_unhashed
(
actual
));
spin_lock
(
&
actual
->
d_lock
);
found:
_d_rehash
(
actual
);
spin_unlock
(
&
actual
->
d_lock
);
found:
spin_unlock
(
&
inode
->
i_lock
);
out_nolock:
if
(
actual
==
dentry
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录