summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2011-05-24 20:06:20 (GMT)
committerAl Viro <viro@zeniv.linux.org.uk>2011-05-26 11:26:57 (GMT)
commit8cbfa53b1cd08ae3b315bbb55f7396f5a6a6a4f7 (patch)
tree29d02280724a1eb446b5920d041466b26f92c80c /fs
parent052e2a1ba2d07e724ae9cc0608389292276cb77a (diff)
downloadlinux-8cbfa53b1cd08ae3b315bbb55f7396f5a6a6a4f7.tar.xz
exofs: remove unnecessary dentry_unhash on rmdir/rename_dir
Exofs has no problems with lingering references to unlinked directory inodes. CC: Benny Halevy <bhalevy@panasas.com> CC: osd-dev@open-osd.org Acked-by: Boaz Harrosh <bharrosh@panasas.com> Signed-off-by: Sage Weil <sage@newdream.net> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r--fs/exofs/namei.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/exofs/namei.c b/fs/exofs/namei.c
index de252e5..4d70db1 100644
--- a/fs/exofs/namei.c
+++ b/fs/exofs/namei.c
@@ -227,8 +227,6 @@ static int exofs_rmdir(struct inode *dir, struct dentry *dentry)
struct inode *inode = dentry->d_inode;
int err = -ENOTEMPTY;
- dentry_unhash(dentry);
-
if (exofs_empty_dir(inode)) {
err = exofs_unlink(dir, dentry);
if (!err) {
@@ -251,9 +249,6 @@ static int exofs_rename(struct inode *old_dir, struct dentry *old_dentry,
struct exofs_dir_entry *old_de;
int err = -ENOENT;
- if (new_inode && S_ISDIR(new_inode->i_mode))
- dentry_unhash(new_dentry);
-
old_de = exofs_find_entry(old_dir, old_dentry, &old_page);
if (!old_de)
goto out;