Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
5cc3821b
Commit
5cc3821b
authored
Sep 26, 2014
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pull rehashing and unlocking the target dentry into __d_materialise_dentry()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
e4502c63
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
fs/dcache.c
fs/dcache.c
+4
-7
No files found.
fs/dcache.c
View file @
5cc3821b
...
@@ -2636,7 +2636,6 @@ static struct dentry *__d_unalias(struct inode *inode,
...
@@ -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
* Prepare an anonymous dentry for life in the superblock's dentry tree as a
* named dentry in place of the dentry to be replaced.
* 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
)
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)
...
@@ -2655,21 +2654,21 @@ static void __d_materialise_dentry(struct dentry *dentry, struct dentry *anon)
dentry
->
d_parent
=
dentry
;
dentry
->
d_parent
=
dentry
;
list_del_init
(
&
dentry
->
d_u
.
d_child
);
list_del_init
(
&
dentry
->
d_u
.
d_child
);
anon
->
d_parent
=
dparent
;
anon
->
d_parent
=
dparent
;
list_move
(
&
anon
->
d_u
.
d_child
,
&
dparent
->
d_subdirs
);
if
(
likely
(
!
d_unhashed
(
anon
)))
{
if
(
likely
(
!
d_unhashed
(
anon
)))
{
hlist_bl_lock
(
&
anon
->
d_sb
->
s_anon
);
hlist_bl_lock
(
&
anon
->
d_sb
->
s_anon
);
__hlist_bl_del
(
&
anon
->
d_hash
);
__hlist_bl_del
(
&
anon
->
d_hash
);
anon
->
d_hash
.
pprev
=
NULL
;
anon
->
d_hash
.
pprev
=
NULL
;
hlist_bl_unlock
(
&
anon
->
d_sb
->
s_anon
);
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
(
&
dentry
->
d_seq
);
write_seqcount_end
(
&
anon
->
d_seq
);
write_seqcount_end
(
&
anon
->
d_seq
);
dentry_unlock_parents_for_move
(
anon
,
dentry
);
dentry_unlock_parents_for_move
(
anon
,
dentry
);
spin_unlock
(
&
dentry
->
d_lock
);
spin_unlock
(
&
dentry
->
d_lock
);
spin_unlock
(
&
anon
->
d_lock
);
/* anon->d_lock still locked, returns locked */
}
}
/**
/**
...
@@ -2719,8 +2718,6 @@ struct dentry *d_splice_alias(struct inode *inode, struct dentry *dentry)
...
@@ -2719,8 +2718,6 @@ struct dentry *d_splice_alias(struct inode *inode, struct dentry *dentry)
write_seqlock
(
&
rename_lock
);
write_seqlock
(
&
rename_lock
);
__d_materialise_dentry
(
dentry
,
new
);
__d_materialise_dentry
(
dentry
,
new
);
write_sequnlock
(
&
rename_lock
);
write_sequnlock
(
&
rename_lock
);
_d_rehash
(
new
);
spin_unlock
(
&
new
->
d_lock
);
spin_unlock
(
&
inode
->
i_lock
);
spin_unlock
(
&
inode
->
i_lock
);
security_d_instantiate
(
new
,
inode
);
security_d_instantiate
(
new
,
inode
);
iput
(
inode
);
iput
(
inode
);
...
@@ -2811,9 +2808,9 @@ struct dentry *d_materialise_unique(struct dentry *dentry, struct inode *inode)
...
@@ -2811,9 +2808,9 @@ struct dentry *d_materialise_unique(struct dentry *dentry, struct inode *inode)
BUG_ON
(
!
d_unhashed
(
actual
));
BUG_ON
(
!
d_unhashed
(
actual
));
spin_lock
(
&
actual
->
d_lock
);
spin_lock
(
&
actual
->
d_lock
);
found:
_d_rehash
(
actual
);
_d_rehash
(
actual
);
spin_unlock
(
&
actual
->
d_lock
);
spin_unlock
(
&
actual
->
d_lock
);
found:
spin_unlock
(
&
inode
->
i_lock
);
spin_unlock
(
&
inode
->
i_lock
);
out_nolock:
out_nolock:
if
(
actual
==
dentry
)
{
if
(
actual
==
dentry
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment