md: raid1/raid10: handle allocation errors during array setup.
authorNeilBrown <neilb@suse.de>
Fri, 16 Oct 2009 04:55:44 +0000 (15:55 +1100)
committerNeilBrown <neilb@suse.de>
Fri, 16 Oct 2009 04:55:44 +0000 (15:55 +1100)
commited9bfdf1a40952fd0f8094ec77f876b84ead69af
tree2b92f23e861fa2695a55a0cd797233d032634c9d
parentf5efd45ae597c96ed017afad5662b67d55b402a0
md: raid1/raid10: handle allocation errors during array setup.

Both raid1 and raid10 create a mempool during startup.
If the 'alloc' function for this mempool fails, unplug_slaves
is called.
If that happens when the pool is being initialised, unplug_slaves
will try to use the 'conf' structure that isn't filled in yet, and
badness will happen.

So ensure that unplug_slaves doesn't get called unless we know
that the conf structure if fully initialised.

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