]> git.baikalelectronics.ru Git - kernel.git/commit
Btrfs: fix wrong write offset when replacing a device
authorStefan Behrens <sbehrens@giantdisaster.de>
Thu, 4 Jul 2013 14:14:23 +0000 (16:14 +0200)
committerJosef Bacik <jbacik@fusionio.com>
Fri, 19 Jul 2013 19:07:26 +0000 (15:07 -0400)
commitb81f9168e39944c62239937000374be2b5861195
tree7c4d95522982008bfbfa7236039f52e0fefda0d3
parent48097930053fd9adc22652dd14634a2bd494db08
Btrfs: fix wrong write offset when replacing a device

Miao Xie reported the following issue:

The filesystem was corrupted after we did a device replace.

Steps to reproduce:
 # mkfs.btrfs -f -m single -d raid10 <device0>..<device3>
 # mount <device0> <mnt>
 # btrfs replace start -rfB 1 <device4> <mnt>
 # umount <mnt>
 # btrfsck <device4>

The reason for the issue is that we changed the write offset by mistake,
introduced by commit 7c3bfc7bb.

We read the data from the source device at first, and then write the
data into the corresponding place of the new device. In order to
implement the "-r" option, the source location is remapped using
btrfs_map_block(). The read takes place on the mapped location, and
the write needs to take place on the unmapped location. Currently
the write is using the mapped location, and this commit changes it
back by undoing the change to the write address that the aforementioned
commit added by mistake.

Reported-by: Miao Xie <miaox@cn.fujitsu.com>
Cc: <stable@vger.kernel.org> # 3.10+
Signed-off-by: Stefan Behrens <sbehrens@giantdisaster.de>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
fs/btrfs/scrub.c