mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 09:30:52 +07:00
autofs_dir_rmdir(): check ino->count for deciding whether it's empty...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
41ca19740a
commit
c3aed16680
@ -691,11 +691,10 @@ static int autofs_dir_rmdir(struct inode *dir, struct dentry *dentry)
|
||||
if (sbi->flags & AUTOFS_SBI_CATATONIC)
|
||||
return -EACCES;
|
||||
|
||||
spin_lock(&sbi->lookup_lock);
|
||||
if (!simple_empty(dentry)) {
|
||||
spin_unlock(&sbi->lookup_lock);
|
||||
if (atomic_read(&ino->count) != 1)
|
||||
return -ENOTEMPTY;
|
||||
}
|
||||
|
||||
spin_lock(&sbi->lookup_lock);
|
||||
__autofs_add_expiring(dentry);
|
||||
d_drop(dentry);
|
||||
spin_unlock(&sbi->lookup_lock);
|
||||
|
Loading…
Reference in New Issue
Block a user