Lines Matching defs:firstLog
467 RF_ParityLog_t * firstLog)
473 /* Insert a linked list of parity logs (firstLog) to the free list
478 RF_ASSERT(firstLog);
486 log = firstLog;
487 if (firstLog)
488 firstLog = firstLog->next;
498 log = firstLog;
499 if (firstLog) {
500 firstLog = firstLog->next;
512 log->next = firstLog;
513 firstLog = log;
515 if (firstLog) {
516 lastLog = firstLog;
525 raidPtr->parityLogPool.parityLogs = firstLog;