Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
E-EXK4 - Operating System Group
projects
Linux
Commits
ec33679d
Commit
ec33679d
authored
14 years ago
by
Nicholas Piggin
Browse files
Options
Downloads
Patches
Plain Diff
fs: use RCU in shrink_dentry_list to reduce lock nesting
Signed-off-by:
Nick Piggin
<
npiggin@kernel.dk
>
parent
be182bff
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fs/dcache.c
+25
-21
25 additions, 21 deletions
fs/dcache.c
with
25 additions
and
21 deletions
fs/dcache.c
+
25
−
21
View file @
ec33679d
...
...
@@ -615,16 +615,16 @@ static void shrink_dentry_list(struct list_head *list)
{
struct
dentry
*
dentry
;
while
(
!
list_empty
(
list
))
{
rcu_read_lock
();
for
(;;)
{
struct
dentry
*
parent
;
dentry
=
list_entry
(
list
->
prev
,
struct
dentry
,
d_lru
);
if
(
!
spin_trylock
(
&
dentry
->
d_lock
))
{
relock1:
spin_unlock
(
&
dcache_lru_lock
);
cpu_relax
();
spin_lock
(
&
dcache_lru_lock
);
dentry
=
list_entry_rcu
(
list
->
prev
,
struct
dentry
,
d_lru
);
if
(
&
dentry
->
d_lru
==
list
)
break
;
/* empty */
spin_lock
(
&
dentry
->
d_lock
);
if
(
dentry
!=
list_entry
(
list
->
prev
,
struct
dentry
,
d_lru
))
{
spin_unlock
(
&
dentry
->
d_lock
);
continue
;
}
...
...
@@ -634,14 +634,16 @@ static void shrink_dentry_list(struct list_head *list)
* it - just keep it off the LRU list.
*/
if
(
dentry
->
d_count
)
{
__
dentry_lru_del
(
dentry
);
dentry_lru_del
(
dentry
);
spin_unlock
(
&
dentry
->
d_lock
);
continue
;
}
if
(
!
spin_trylock
(
&
dcache_inode_lock
))
{
relock
2
:
relock:
spin_unlock
(
&
dentry
->
d_lock
);
goto
relock1
;
cpu_relax
();
continue
;
}
if
(
IS_ROOT
(
dentry
))
parent
=
NULL
;
...
...
@@ -649,15 +651,15 @@ static void shrink_dentry_list(struct list_head *list)
parent
=
dentry
->
d_parent
;
if
(
parent
&&
!
spin_trylock
(
&
parent
->
d_lock
))
{
spin_unlock
(
&
dcache_inode_lock
);
goto
relock
2
;
goto
relock
;
}
__dentry_lru_del
(
dentry
);
spin_unlock
(
&
dcache_lru_lock
);
dentry_lru_del
(
dentry
);
rcu_read_unlock
();
prune_one_dentry
(
dentry
,
parent
);
/* dcache_inode_lock and dentry->d_lock dropped */
spin_lock
(
&
dcache_lru_lock
);
rcu_read_lock
();
}
rcu_read_unlock
();
}
/**
...
...
@@ -705,15 +707,15 @@ static void __shrink_dcache_sb(struct super_block *sb, int *count, int flags)
if
(
!--
cnt
)
break
;
}
/* XXX: re-add
cond_resched_lock
when
dcache_lock
goes away */
cond_resched_lock
(
&
dcache_
lru_
lock
);
}
*
count
=
cnt
;
shrink_dentry_list
(
&
tmp
);
if
(
!
list_empty
(
&
referenced
))
list_splice
(
&
referenced
,
&
sb
->
s_dentry_lru
);
spin_unlock
(
&
dcache_lru_lock
);
shrink_dentry_list
(
&
tmp
);
*
count
=
cnt
;
}
/**
...
...
@@ -805,7 +807,9 @@ void shrink_dcache_sb(struct super_block *sb)
spin_lock
(
&
dcache_lru_lock
);
while
(
!
list_empty
(
&
sb
->
s_dentry_lru
))
{
list_splice_init
(
&
sb
->
s_dentry_lru
,
&
tmp
);
spin_unlock
(
&
dcache_lru_lock
);
shrink_dentry_list
(
&
tmp
);
spin_lock
(
&
dcache_lru_lock
);
}
spin_unlock
(
&
dcache_lru_lock
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment