The patch titled md: Fix bug that stops raid5 resync from happening has been removed from the -mm tree. Its filename is md-fix-bug-that-stops-raid5-resync-from-happening.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: md: Fix bug that stops raid5 resync from happening From: NeilBrown <neilb@xxxxxxx> As data_disks is *less* than raid_disks, the current test here is obviously wrong. And as the difference is already available in conf->max_degraded, it makes much more sense to use that. Signed-off-by: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/md/raid5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/md/raid5.c~md-fix-bug-that-stops-raid5-resync-from-happening drivers/md/raid5.c --- a/drivers/md/raid5.c~md-fix-bug-that-stops-raid5-resync-from-happening +++ a/drivers/md/raid5.c @@ -2858,7 +2858,7 @@ static inline sector_t sync_request(mdde * to resync, then assert that we are finished, because there is * nothing we can do. */ - if (mddev->degraded >= (data_disks - raid_disks) && + if (mddev->degraded >= conf->max_degraded && test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) { sector_t rv = (mddev->size << 1) - sector_nr; *skipped = 1; _ Patches currently in -mm which might be from neilb@xxxxxxx are origin.patch generic_file_buffered_write-deadlock-on-vectored-write.patch md-dm-reduce-stack-usage-with-stacked-block-devices.patch lockdep-annotate-sunrpc-code.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html