The patch titled md: fix bug where spares don't always get rebuilt properly when they become live has been removed from the -mm tree. Its filename was md-fix-bug-where-spares-dont-always-get-rebuilt-properly-when-they-become-live.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: md: fix bug where spares don't always get rebuilt properly when they become live From: NeilBrown <neilb@xxxxxxx> If save_raid_disk is >= 0, then the device could be a device that is already in sync that is being re-added. So we need to default this value to -1. Signed-off-by: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/md/md.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/md/md.c~md-fix-bug-where-spares-dont-always-get-rebuilt-properly-when-they-become-live drivers/md/md.c --- a/drivers/md/md.c~md-fix-bug-where-spares-dont-always-get-rebuilt-properly-when-they-become-live +++ a/drivers/md/md.c @@ -2003,6 +2003,7 @@ static mdk_rdev_t *md_import_device(dev_ kobject_init(&rdev->kobj); rdev->desc_nr = -1; + rdev->saved_raid_disk = -1; rdev->flags = 0; rdev->data_offset = 0; rdev->sb_events = 0; _ Patches currently in -mm which might be from neilb@xxxxxxx are origin.patch lockdep-annotate-nfs-nfsd-in-kernel-sockets.patch lockdep-annotate-nfs-nfsd-in-kernel-sockets-tidy.patch remove-lock_key-approach-to-managing-nested-bd_mutex-locks.patch simplify-some-aspects-of-bd_mutex-nesting.patch use-mutex_lock_nested-for-bd_mutex-to-avoid-lockdep-warning.patch avoid-lockdep-warning-in-md.patch lockdep-annotate-nfsd4-recover-code.patch md-conditionalize-some-code.patch md-dm-reduce-stack-usage-with-stacked-block-devices.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