diff options
author | Sage Weil <sage@newdream.net> | 2011-05-27 13:41:54 -0700 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-05-28 01:02:50 -0400 |
commit | 76f0b8d2d2c8d417623142069cdfde1cf1e108d5 (patch) | |
tree | d15b97dbe809691d1f247cc1e355a730622fd2d7 /fs/bfs | |
parent | 4b4563dc80594c6a2580aa52d9fcf0177a27074e (diff) | |
download | linux-3.10-76f0b8d2d2c8d417623142069cdfde1cf1e108d5.tar.gz linux-3.10-76f0b8d2d2c8d417623142069cdfde1cf1e108d5.tar.bz2 linux-3.10-76f0b8d2d2c8d417623142069cdfde1cf1e108d5.zip |
bfs: remove unnecessary dentry_unhash on dir rename
Bfs does not have problems with references to unlinked directories.
CC: tigran@aivazian.fsnet.co.uk
Signed-off-by: Sage Weil <sage@newdream.net>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/bfs')
-rw-r--r-- | fs/bfs/dir.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/bfs/dir.c b/fs/bfs/dir.c index c7d1d06b048..b14cebfd904 100644 --- a/fs/bfs/dir.c +++ b/fs/bfs/dir.c @@ -224,9 +224,6 @@ static int bfs_rename(struct inode *old_dir, struct dentry *old_dentry, struct bfs_sb_info *info; int error = -ENOENT; - if (new_dentry->d_inode && S_ISDIR(new_dentry->d_inode->i_mode)) - dentry_unhash(new_dentry); - old_bh = new_bh = NULL; old_inode = old_dentry->d_inode; if (S_ISDIR(old_inode->i_mode)) |