md: remove unneeded sysfs files more promptly
authorNeilBrown <neilb@suse.de>
Thu, 15 Apr 2010 00:13:47 +0000 (10:13 +1000)
committerNeilBrown <neilb@suse.de>
Mon, 17 May 2010 04:40:07 +0000 (14:40 +1000)
commitb6eb127d274385d81ce8dd45c98190f097bce1b4
treea78eb14056ade77c0026b1106e9a2cd486a762e6
parentef2f80ff7325b2c1888ff02ead28957b5840bf51
md: remove unneeded sysfs files more promptly

When an array is stopped we need to remove some
sysfs files which are dependent on the type of array.

We need to delay that deletion as deleting them while holding
reconfig_mutex can lead to deadlocks.

We currently delay them until the array is completely destroyed.
However it is possible to deactivate and then reactivate the array.
It is also possible to need to remove sysfs files when changing level,
which can potentially happen several times before an array is
destroyed.

So we need to delete these files more promptly: as soon as
reconfig_mutex is dropped.

We need to ensure this happens before do_md_run can restart the array,
so we use open_mutex for some extra locking.  This is not deadlock
prone.

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