On Thu, 02 Dec 2010 09:18:56 +0100 Adam Kwolek <adam.kwolek@xxxxxxxxx> wrote: > When array parameters are changed old array 'A' is going to be removed > and new array 'B' is going to be serviced. If array B is raid0 array (takeovered), > array 'A' will never be deleted and mdmon is not going to exit. > Scenario: > 1. managemon creates array 'B' and inserts it to begin of active arrays list > 2. managemon sets field B->replaces = A > > 3. monitor: finds that array 'B' is raid 0 array and removes it from list > information about removing array 'A' from list is lost > and array 'A' stays in list forever > > To resolve this situation first try to remove replaced arrays and then proceed > regular array servicing. > > Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@xxxxxxxxx> > Signed-off-by: Adam Kwolek <adam.kwolek@xxxxxxxxx> This doesn't look right. You are duplicating a chunk of code, and having two copies of it is dangerous and confusing. Based on your description of the issue, maybe it would make sense to avoid step 3. i.e. if monitor find array 'B' which is RAID0, it doesn't remove it from the list while it still has a 'replaces' pointer. Obviously monitor would need to be careful not to do anything else with the array. I think the 'remove it if it is RAID0' is in code that I having accepted yet, so I cannot easily check if that does make sense.. What do you think? I won't apply this patch at this stage though. Thanks, NeilBrown > --- > > monitor.c | 16 ++++++++++++++++ > 1 files changed, 16 insertions(+), 0 deletions(-) > > diff --git a/monitor.c b/monitor.c > index 59b4181..0fbe198 100644 > --- a/monitor.c > +++ b/monitor.c > @@ -480,6 +480,22 @@ static int wait_and_act(struct supertype *container, int nowait) > > for (ap = aap ; *ap ;) { > a = *ap; > + > + /* Remove array that current array points to remove > + */ > + if (a->replaces && !discard_this) { > + struct active_array **ap; > + for (ap = &a->next; *ap && *ap != a->replaces; > + ap = & (*ap)->next) > + ; > + if (*ap) > + *ap = (*ap)->next; > + discard_this = a->replaces; > + a->replaces = NULL; > + /* FIXME check if device->state_fd need to be cleared?*/ > + signal_manager(); > + } > + > /* once an array has been deactivated we want to > * ask the manager to discard it. > */ -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html