85: if ( free ) {
86: QueInsert(&opncb->q, &knl_FreeOpnCB);
87: }
97:
98: QueInsert(&reqcb->q, &knl_FreeReqCB);
99: reqcb->opncb = NULL;
140: /* Register as open device */
141: QueInsert(&opncb->q, &devcb->openq);
142: QueInsert(&opncb->resq, &rescb->openq);
143:
447: /* Return open management block to FreeQue */
448: QueInsert(&opncb->q, &knl_FreeOpnCB);
449: UnlockDM();
496: /* Register as requested open device */
497: QueInsert(&reqcb->q, &opncb->requestq);
498:
1031: knl_OpnCBtbl[i].resid = 0;
1032: QueInsert(&knl_OpnCBtbl[i].q, &knl_FreeOpnCB);
1033: }
1037: knl_ReqCBtbl[i].opncb = NULL;
1038: QueInsert(&knl_ReqCBtbl[i].q, &knl_FreeReqCB);
1039: }