md: remove rd%d links immediately after stopping an array.
authorNeilBrown <neilb@suse.de>
Thu, 7 May 2009 02:51:06 +0000 (12:51 +1000)
committerNeilBrown <neilb@suse.de>
Thu, 7 May 2009 02:51:06 +0000 (12:51 +1000)
commitc4647292fda0833bebe45be27f04453b736981fa
tree85c89a4161b06b1c591a76c2a68ff51fc02ff6f4
parent5bf295975416f8e97117bbbcfb0191c00bc3e2b4
md: remove rd%d links immediately after stopping an array.

md maintains link in sys/mdXX/md/ to identify which device has
which role in the array. e.g.
   rd2 -> dev-sda

indicates that the device with role '2' in the array is sda.

These links are only present when the array is active.  They are
created immediately after ->run is called, and so should be removed
immediately after ->stop is called.
However they are currently removed a little bit later, and it is
possible for ->run to be called again, thus adding these links, before
they are removed.

So move the removal earlier so they are consistently only present when
the array is active.

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