md: Fix unfortunate interaction with evms
commit73b52c3b88805ec5528c647fcb71eab3443e47cb
authorNeilBrown <neilb@suse.de>
Wed, 30 Dec 2009 01:08:49 +0000 (30 12:08 +1100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 6 Jan 2010 22:26:28 +0000 (6 14:26 -0800)
treed7f9e66d8a9317b340b69508975dfa194e5da38d
parent2e6f37a113babaf54f2ef776a549a6440d262de9
md: Fix unfortunate interaction with evms

commit cbd1998377504df005302ac90d49db72a48552a6 upstream.

evms configures md arrays by:
  open device
  send ioctl
  close device

for each different ioctl needed.
Since 2.6.29, the device can disappear after the 'close'
unless a significant configuration has happened to the device.
The change made by "SET_ARRAY_INFO" can too minor to stop the device
from disappearing, but important enough that losing the change is bad.

So: make sure SET_ARRAY_INFO sets mddev->ctime, and keep the device
active as long as ctime is non-zero (it gets zeroed with lots of other
things when the array is stopped).

This is suitable for -stable kernels since 2.6.29.

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