diff options
Diffstat (limited to 'fs/autofs')
-rw-r--r-- | fs/autofs/expire.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/fs/autofs/expire.c b/fs/autofs/expire.c index 038b3d2d9f..39d8c84c16 100644 --- a/fs/autofs/expire.c +++ b/fs/autofs/expire.c @@ -73,12 +73,9 @@ done: /* p->d_lock held */ static struct dentry *positive_after(struct dentry *p, struct dentry *child) { - if (child) - child = list_next_entry(child, d_child); - else - child = list_first_entry(&p->d_subdirs, struct dentry, d_child); + child = child ? d_next_sibling(child) : d_first_child(p); - list_for_each_entry_from(child, &p->d_subdirs, d_child) { + hlist_for_each_entry_from(child, d_sib) { spin_lock_nested(&child->d_lock, DENTRY_D_LOCK_NESTED); if (simple_positive(child)) { dget_dlock(child); |