]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
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)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 9 Jul 2019 21:04:16 +0000 (22:04 +0100)
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.

Signed-off-by: Xiao Ni <xni@redhat.com>
Signed-off-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/md/raid10.c

index 18b0c80fc4471a5ee8006d38e54fe494651c3c88..715dd5eed08c9c19ba61ae84cd3bc65e23146d88 100644 (file)
@@ -4506,7 +4506,6 @@ bio_full:
        atomic_inc(&r10_bio->remaining);
        read_bio->bi_next = NULL;
        generic_make_request(read_bio);
-       sector_nr += nr_sectors;
        sectors_done += nr_sectors;
        if (sector_nr <= last)
                goto read_more;