Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ff2fde9

Browse files
author
Al Viro
committed
expand dentry_kill(dentry, 0) in shrink_dentry_list()
Result will be massaged to saner shape in the next commits. It is ugly, no questions - the point of that one is to be a provably equivalent transformation (and it might be worth splitting a bit more). Signed-off-by: Al Viro <[email protected]>
1 parent e55fd01 commit ff2fde9

File tree

1 file changed

+17
-13
lines changed

1 file changed

+17
-13
lines changed

fs/dcache.c

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -801,6 +801,7 @@ static void shrink_dentry_list(struct list_head *list)
801801
struct dentry *dentry, *parent;
802802

803803
while (!list_empty(list)) {
804+
struct inode *inode;
804805
dentry = list_entry(list->prev, struct dentry, d_lru);
805806
spin_lock(&dentry->d_lock);
806807
/*
@@ -828,23 +829,26 @@ static void shrink_dentry_list(struct list_head *list)
828829
continue;
829830
}
830831

831-
parent = dentry_kill(dentry, 0);
832-
/*
833-
* If dentry_kill returns NULL, we have nothing more to do.
834-
*/
835-
if (!parent)
836-
continue;
837-
838-
if (unlikely(parent == dentry)) {
839-
/*
840-
* trylocks have failed and d_lock has been held the
841-
* whole time, so it could not have been added to any
842-
* other lists. Just add it back to the shrink list.
843-
*/
832+
inode = dentry->d_inode;
833+
if (inode && unlikely(!spin_trylock(&inode->i_lock))) {
844834
d_shrink_add(dentry, list);
845835
spin_unlock(&dentry->d_lock);
846836
continue;
847837
}
838+
839+
parent = NULL;
840+
if (!IS_ROOT(dentry)) {
841+
parent = dentry->d_parent;
842+
if (unlikely(!spin_trylock(&parent->d_lock))) {
843+
if (inode)
844+
spin_unlock(&inode->i_lock);
845+
d_shrink_add(dentry, list);
846+
spin_unlock(&dentry->d_lock);
847+
continue;
848+
}
849+
}
850+
851+
__dentry_kill(dentry);
848852
/*
849853
* We need to prune ancestors too. This is necessary to prevent
850854
* quadratic behavior of shrink_dcache_parent(), but is also

0 commit comments

Comments
 (0)