Lines Matching defs:lr
380 RF_LockReqDesc_t *lr, *lr_t, *callbacklist, *t;
416 for (lr_t = NULL, lr = lockDesc->granted; lr; lr_t = lr, lr = lr->next)
417 if (lr == lockReqDesc)
420 RF_ASSERT(lr && (lr == lockReqDesc)); /* major error to release a
424 lr_t->next = lr->next;
426 RF_ASSERT(lr == lockDesc->granted);
427 lockDesc->granted = lr->next;
429 lr->next = NULL;
461 lr = lockDesc->waitersH;
462 lockDesc->waitersH = lr->next;
464 RF_ASSERT(lr->type == RF_IO_TYPE_READ);
467 lr->next = lockDesc->granted;
468 lockDesc->granted = lr;
470 RF_ASSERT(!lr->templink);
473 lr->templink = callbacklist;
474 callbacklist = lr;
478 tid, stripeID, lr->type, lr->start, lr->stop, lr->start2, lr->stop2, (unsigned long) lockTable);