summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2007-09-14 13:42:31 (GMT)
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-09-14 13:42:31 (GMT)
commit93a6925ec10c2d5792ffad35af8366179c9db57c (patch)
tree6acc81ee259f5525b18e4ae42bf5bb2f279480e2 /fs
parent3de3f774f98490dbac63b7b50a0d2eedfea86b5a (diff)
downloadlinux-fsl-qoriq-93a6925ec10c2d5792ffad35af8366179c9db57c.tar.xz
Btrfs: Fix extra link count dec in rename
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/inode.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 39c1fe1..cde8ddd 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -2214,13 +2214,6 @@ static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
if (ret)
goto out_fail;
- if (S_ISDIR(new_inode->i_mode))
- clear_nlink(new_inode);
- else
- drop_nlink(new_inode);
- ret = btrfs_update_inode(trans, root, new_inode);
- if (ret)
- goto out_fail;
}
ret = btrfs_add_link(trans, new_dentry, old_inode);
if (ret)