mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 09:31:14 +00:00
[PATCH] md: fix bug when raid1 attempts a partial reconstruct.
The logic here is wrong. if fullsync is 0, it WILL BUG. Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
191ea9b2c7
commit
ab7a30c705
1 changed files with 10 additions and 7 deletions
|
@ -1237,13 +1237,16 @@ static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, i
|
||||||
len = (max_sector - sector_nr) << 9;
|
len = (max_sector - sector_nr) << 9;
|
||||||
if (len == 0)
|
if (len == 0)
|
||||||
break;
|
break;
|
||||||
if (!conf->fullsync && sync_blocks == 0)
|
if (!conf->fullsync) {
|
||||||
if (!bitmap_start_sync(mddev->bitmap,
|
if (sync_blocks == 0) {
|
||||||
sector_nr, &sync_blocks))
|
if (!bitmap_start_sync(mddev->bitmap,
|
||||||
break;
|
sector_nr, &sync_blocks))
|
||||||
if (sync_blocks < (PAGE_SIZE>>9))
|
break;
|
||||||
BUG();
|
if (sync_blocks < (PAGE_SIZE>>9))
|
||||||
if (len > (sync_blocks<<9)) len = sync_blocks<<9;
|
BUG();
|
||||||
|
if (len > (sync_blocks<<9)) len = sync_blocks<<9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for (i=0 ; i < conf->raid_disks; i++) {
|
for (i=0 ; i < conf->raid_disks; i++) {
|
||||||
bio = r1_bio->bios[i];
|
bio = r1_bio->bios[i];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue