Skip to content

Commit

Permalink
affs: remove unnecessary dentry_unhash on rmdir, dir rename
Browse files Browse the repository at this point in the history
affs has no problems with references to unlinked directories.

Signed-off-by: Sage Weil <[email protected]>
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
liewegas authored and Al Viro committed May 28, 2011
1 parent 86905d6 commit 94f9901
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions fs/affs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,6 @@ affs_rmdir(struct inode *dir, struct dentry *dentry)
dentry->d_inode->i_ino,
(int)dentry->d_name.len, dentry->d_name.name);

dentry_unhash(dentry);

return affs_remove_header(dentry);
}

Expand Down Expand Up @@ -419,9 +417,6 @@ affs_rename(struct inode *old_dir, struct dentry *old_dentry,
struct buffer_head *bh = NULL;
int retval;

if (new_dentry->d_inode && S_ISDIR(new_dentry->d_inode->i_mode))
dentry_unhash(new_dentry);

pr_debug("AFFS: rename(old=%u,\"%*s\" to new=%u,\"%*s\")\n",
(u32)old_dir->i_ino, (int)old_dentry->d_name.len, old_dentry->d_name.name,
(u32)new_dir->i_ino, (int)new_dentry->d_name.len, new_dentry->d_name.name);
Expand Down

0 comments on commit 94f9901

Please sign in to comment.