diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-03-13 20:55:15 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-03-13 20:55:15 +0000 |
commit | 1471f525455788c20b130690e0f104df451aeb43 (patch) | |
tree | 3778beba56558beb9a9548ea5b467e9c44ea966f /fs/sysv/namei.c | |
parent | e80d2c5456d30ebba5b0eb8a9d33e17d815d4d83 (diff) |
Merge with Linux 2.3.51.
Diffstat (limited to 'fs/sysv/namei.c')
-rw-r--r-- | fs/sysv/namei.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/sysv/namei.c b/fs/sysv/namei.c index a7b871073..6a7fbf34b 100644 --- a/fs/sysv/namei.c +++ b/fs/sysv/namei.c @@ -389,7 +389,7 @@ static int sysv_rmdir(struct inode * dir, struct dentry * dentry) retval = -ENOTEMPTY; goto end_rmdir; } - if (!list_empty(&dentry->d_hash)) { + if (!d_unhashed(dentry)) { retval = -EBUSY; goto end_rmdir; } @@ -552,6 +552,9 @@ static int sysv_rename(struct inode * old_dir, struct dentry * old_dentry, } if (S_ISDIR(old_inode->i_mode)) { if (new_inode) { + retval = -EBUSY; + if (!d_unhashed(new_dentry)) + goto end_rename; retval = -ENOTEMPTY; if (!empty_dir(new_inode)) goto end_rename; |