diff --git a/fs/ncpfs/dir.c b/fs/ncpfs/dir.c index e3e646b06404dbce84b78d6c1d9df302d0e33dc1..81c287d105d5107cd28f3b69428f2c366478a02e 100644 --- a/fs/ncpfs/dir.c +++ b/fs/ncpfs/dir.c @@ -1033,8 +1033,11 @@ static int ncp_rmdir(struct inode *dir, struct dentry *dentry) DPRINTK("ncp_rmdir: removing %s/%s\n", dentry->d_parent->d_name.name, dentry->d_name.name); + /* + * fail with EBUSY if there are still references to this + * directory. + */ dentry_unhash(dentry); - error = -EBUSY; if (!d_unhashed(dentry)) goto out;