]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
md/raid10: always set reshape_safe when initializing reshape_position.
authorNeilBrown <neilb@suse.com>
Mon, 6 Jul 2015 07:37:49 +0000 (17:37 +1000)
committerNeilBrown <neilb@suse.com>
Wed, 22 Jul 2015 04:08:24 +0000 (14:08 +1000)
commit299b0685e31c9f3dcc2d58ee3beca761a40b44b3
treeabd3411d0c452e9f8b6e95f106f871042c3d98de
parent2d5b569b665ea6d0b15c52529ff06300de81a7ce
md/raid10: always set reshape_safe when initializing reshape_position.

'reshape_position' tracks where in the reshape we have reached.
'reshape_safe' tracks where in the reshape we have safely recorded
in the metadata.

These are compared to determine when to update the metadata.
So it is important that reshape_safe is initialised properly.
Currently it isn't.  When starting a reshape from the beginning
it usually has the correct value by luck.  But when reducing the
number of devices in a RAID10, it has the wrong value and this leads
to the metadata not being updated correctly.
This can lead to corruption if the reshape is not allowed to complete.

This patch is suitable for any -stable kernel which supports RAID10
reshape, which is 3.5 and later.

Fixes: 3ea7daa5d7fd ("md/raid10: add reshape support")
Cc: stable@vger.kernel.org (v3.5+ please wait for -final to be out for 2 weeks)
Signed-off-by: NeilBrown <neilb@suse.com>
drivers/md/raid10.c