]> git.karo-electronics.de Git - mv-sheeva.git/commit
md: don't set_capacity before array is active.
authorNeilBrown <neilb@suse.de>
Wed, 16 Feb 2011 02:58:38 +0000 (13:58 +1100)
committerNeilBrown <neilb@suse.de>
Wed, 16 Feb 2011 02:58:38 +0000 (13:58 +1100)
commitcbe6ef1d2622e08e272600b3cb6040bed60f0450
tree03d1ae0fe73404a3bd7850d89c415f3412977693
parentf7bee80945155ad0326916486dabc38428c6cdef
md: don't set_capacity before array is active.

If the desired size of an array is set (via sysfs) before the array is
active (which is the normal sequence), we currrently call set_capacity
immediately.
This means that a subsequent 'open' (as can be caused by some
udev-triggers program) will notice the new size and try to probe for
partitions.  However as the array isn't quite ready yet the read will
fail.  Then when the array is read, as the size doesn't change again
we don't try to re-probe.

So when setting array size via sysfs, only call set_capacity if the
array is already active.

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