md: never update metadata when array is read-only.
authorNeilBrown <neilb@suse.de>
Wed, 24 Apr 2013 01:42:40 +0000 (11:42 +1000)
committerNeilBrown <neilb@suse.de>
Wed, 24 Apr 2013 01:42:40 +0000 (11:42 +1000)
commitd87f064f5874ba60814c6ccac67104761be5b26c
treebbc599fc78742a23dc62e3414e00db649a1d697e
parent824282ca7d250bd7c301f221c3cd902ce906d731
md: never update metadata when array is read-only.

Normally we don't even try to update the metadata if
the array is read-only.  However future patches
will increase the number of things that can happen on a read-only
array, so it is safest to explicitly disable this.

Every time that mddev->ro is set to 0, either
 - md_update_sb will be called again (at least if MD_CHANGE_DEVS
   is set) or
 - the mddev->thread is scheduled, which will also run
   md_update_sb if needed.

So this is safe: if the array ever become read-write the
metadata will be updated.

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