]> git.karo-electronics.de Git - mv-sheeva.git/commit - drivers/md/raid10.c
FIX: md: process hangs at wait_barrier after 0->10 takeover
authorKrzysztof Wojcik <krzysztof.wojcik@intel.com>
Fri, 4 Feb 2011 13:18:26 +0000 (14:18 +0100)
committerNeilBrown <neilb@suse.de>
Tue, 8 Feb 2011 00:49:02 +0000 (11:49 +1100)
commit02214dc5461c36da26a34014cab4e1bb484edba2
tree32137bdf12144af5ff6c946838e1bfbf3b2bc0f2
parente91ece5590b3c728624ab57043fc7a05069c604a
FIX: md: process hangs at wait_barrier after 0->10 takeover

Following symptoms were observed:
1. After raid0->raid10 takeover operation we have array with 2
missing disks.
When we add disk for rebuild, recovery process starts as expected
but it does not finish- it stops at about 90%, md126_resync process
hangs in "D" state.
2. Similar behavior is when we have mounted raid0 array and we
execute takeover to raid10. After this when we try to unmount array-
it causes process umount hangs in "D"

In scenarios above processes hang at the same function- wait_barrier
in raid10.c.
Process waits in macro "wait_event_lock_irq" until the
"!conf->barrier" condition will be true.
In scenarios above it never happens.

Reason was that at the end of level_store, after calling pers->run,
we call mddev_resume. This calls pers->quiesce(mddev, 0) with
RAID10, that calls lower_barrier.
However raise_barrier hadn't been called on that 'conf' yet,
so conf->barrier becomes negative, which is bad.

This patch introduces setting conf->barrier=1 after takeover
operation. It prevents to become barrier negative after call
lower_barrier().

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid10.c