]> git.baikalelectronics.ru Git - kernel.git/commit
Btrfs: make sure to copy everything if we rename
authorJosef Bacik <jbacik@fusionio.com>
Tue, 12 Nov 2013 21:25:58 +0000 (16:25 -0500)
committerChris Mason <chris.mason@fusionio.com>
Thu, 21 Nov 2013 01:41:24 +0000 (20:41 -0500)
commit50929cd6db3d26c589dbe0185c1f3904588401d0
treee3566395bc5ae3d0812c491ec80ca1d484c0d7a0
parente909740d53bba939a66668954057738a9d61b089
Btrfs: make sure to copy everything if we rename

If we rename a file that is already in the log and we fsync again we will lose
the new name.  This is because we just log the inode update and not the new ref.
To fix this we just need to check if we are logging the new name of the inode
and copy all the metadata instead of just updating the inode itself.  With this
patch my testcase now passes.  Thanks,

Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
fs/btrfs/tree-log.c