Home | History | Annotate | Download | only in raidframe

Lines Matching defs:dagList

76  * return the lists in the desc->dagList (which is a list of lists).
81 * as a linked list (dagList) which is executed sequentially (to preserve
114 RF_DagList_t *dagList, *dagListend;
347 dagList = rf_AllocDAGList(raidPtr);
349 /* always tack the new dagList onto the end of the list... */
351 desc->dagList = dagList;
353 dagListend->next = dagList;
355 dagListend = dagList;
357 dagList->desc = desc;
379 dagList->numDags++;
399 dagList->numDags++;
421 dagList->numDags++;
427 dagList->dags = dag_h;
443 dagList = desc->dagList;
447 dag_h = dagList->dags;
495 dagList = dagList->next; /* need to move in stride with stripeFuncs */