Home | History | Annotate | Download | only in raidframe

Lines Matching defs:lastPSID

570 	RF_StripeCount_t incPSID,lastPSID,num_writes,pending_writes,prev;
622 lastPSID = raidPtr->Layout.numStripe / raidPtr->Layout.SUsPerPU - 1;
627 raidPtr->reconControl->lastPSID = incPSID - 1;
629 /* bounds check raidPtr->reconControl->lastPSID and
633 if (raidPtr->reconControl->lastPSID > lastPSID)
634 raidPtr->reconControl->lastPSID = lastPSID;
636 if (pending_writes > lastPSID)
637 pending_writes = lastPSID + 1;
679 startPSID = raidPtr->reconControl->lastPSID - pending_writes + 1;
680 endPSID = raidPtr->reconControl->lastPSID;
796 (raidPtr->reconControl->lastPSID == lastPSID)) {
801 prev = raidPtr->reconControl->lastPSID;
802 raidPtr->reconControl->lastPSID += incPSID;
804 if (raidPtr->reconControl->lastPSID > lastPSID) {
805 pending_writes = lastPSID - prev;
806 raidPtr->reconControl->lastPSID = lastPSID;
1200 if (ctrl->curPSID > raidPtr->reconControl->lastPSID) {