]> www.infradead.org Git - users/jedix/linux-maple.git/commit
It's wrong to add len to sector_nr in raid10 reshape twice
authorXiao Ni <xni@redhat.com>
Fri, 8 Mar 2019 15:52:05 +0000 (23:52 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 19 Mar 2019 12:13:25 +0000 (13:13 +0100)
commitc9794e6820ad92bc0fa47ac6a99f63f6bb477225
tree5d706d0992cb9cedd7a1476daedd886231bd064d
parent94b2a2c534f5a01fb8e93857cf376528c599502c
It's wrong to add len to sector_nr in raid10 reshape twice

commit b761dcf1217760a42f7897c31dcb649f59b2333e upstream.

In reshape_request it already adds len to sector_nr already. It's wrong to add len to
sector_nr again after adding pages to bio. If there is bad block it can't copy one chunk
at a time, it needs to goto read_more. Now the sector_nr is wrong. It can cause data
corruption.

Cc: stable@vger.kernel.org # v3.16+
Signed-off-by: Xiao Ni <xni@redhat.com>
Signed-off-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/md/raid10.c