]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
md/raid10: ensure device failure recorded before write request returns.
authorNeilBrown <neilb@suse.com>
Fri, 14 Aug 2015 01:26:17 +0000 (11:26 +1000)
committerNeilBrown <neilb@suse.com>
Mon, 31 Aug 2015 17:43:45 +0000 (19:43 +0200)
commit95af587e95aacb9cfda4a9641069a5244a540dc8
tree7f891cb4a1cd2b31e3543f05c95fab9baba0aef9
parent55ce74d4bfe1b9444436264c637f39a152d1e5ac
md/raid10: ensure device failure recorded before write request returns.

When a write to one of the legs of a RAID10 fails, the failure is
recorded in the metadata of the other legs so that after a restart
the data on the failed drive wont be trusted even if that drive seems
to be working again (maybe a cable was unplugged).

Currently there is no interlock between the write request completing
and the metadata update.  So it is possible that the write will
complete, the app will confirm success in some way, and then the
machine will crash before the metadata update completes.

This is an extremely small hole for a racy to fit in, but it is
theoretically possible and so should be closed.

So:
 - set MD_CHANGE_PENDING when requesting a metadata update for a
   failed device, so we can know with certainty when it completes
 - queue requests that experienced an error on a new queue which
   is only processed after the metadata update completes
 - call raid_end_bio_io() on bios in that queue when the time comes.

Signed-off-by: NeilBrown <neilb@suse.com>
drivers/md/raid10.c
drivers/md/raid10.h