Lines Matching defs:lp
162 RF_DiskQueueData_t *lp = q->lq_head, *pt = NULL; /* lp = lo-pri queue
166 while (lp) {
169 if (lp->parityStripeID == parityStripeID && lp->which_ru == which_ru) {
173 pt->next = lp->next; /* delete an entry other
176 q->lq_head = lp->next; /* delete the head entry */
182 if (lp == q->lq_tail)
186 lp->next = NULL;
190 q->hq_tail->next = lp;
191 q->hq_tail = lp;
195 q->hq_head = q->hq_tail = lp;
199 /* UpdateShortestSeekFinishTimeForced(lp->requestPtr,
200 * lp->diskState); *//* deal with this later, if ever */
202 lp = (pt) ? pt->next : q->lq_head; /* reset low-pri pointer
207 pt = lp;
208 lp = lp->next;