md: remove unneeded sysfs files more promptly
commit8e94bc5e7fda8d155462242d83ead72aa15fee8c
authorNeilBrown <neilb@suse.de>
Thu, 15 Apr 2010 00:13:47 +0000 (15 10:13 +1000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 5 Jul 2010 18:15:49 +0000 (5 11:15 -0700)
tree4805d178c597c4f4da2d4b5a1fa901ec3d88ad8e
parent082aa2fd54a4482d2d59e375ce28dbef9b485bee
md: remove unneeded sysfs files more promptly

commit b6eb127d274385d81ce8dd45c98190f097bce1b4 upstream.

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.

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