Searched defs:cq_old_idx (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/
H A Dlm_l4tx.c460 u16_t cq_old_idx; local
469 cq_old_idx = lm_bd_chain_cons_idx(&scq->bd_chain);
470 DbgBreakIf(S16_SUB(cq_new_idx, cq_old_idx) <= 0);
473 scq->num_cqes_last_dpc = S16_SUB(cq_new_idx, cq_old_idx);
493 while(cq_old_idx != cq_new_idx) {
494 DbgBreakIf(S16_SUB(cq_new_idx, cq_old_idx) <= 0);
530 cq_old_idx = lm_bd_chain_cons_idx(&scq->bd_chain);
H A Dlm_l4rx.c1432 u16_t cq_old_idx; local
1443 cq_old_idx = lm_bd_chain_cons_idx(&rcq->bd_chain);
1444 DbgBreakIf(S16_SUB(cq_new_idx, cq_old_idx) < 0);
1447 rcq->num_cqes_last_dpc = S16_SUB(cq_new_idx, cq_old_idx);
1475 cq_new_idx = cq_old_idx;
1480 while(cq_old_idx != cq_new_idx) {
1484 DbgBreakIf(S16_SUB(cq_new_idx, cq_old_idx) <= 0);
1499 cq_old_idx = lm_bd_chain_cons_idx(&rcq->bd_chain);
1523 cq_old_idx = lm_bd_chain_cons_idx(&rcq->bd_chain);
1524 DbgBreakIf(cq_old_idx !
[all...]
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/
H A Dlm_recv.c938 u16_t cq_old_idx = 0; local
965 cq_old_idx = lm_bd_chain_cons_idx(&rcq_chain->bd_chain);
968 if (cq_old_idx == cq_new_idx)
974 while(cq_old_idx != cq_new_idx)
976 DbgBreakIfFastPath(S16_SUB(cq_new_idx, cq_old_idx) <= 0);
983 cq_old_idx = lm_bd_chain_cons_idx(&rcq_chain->bd_chain);
1066 //cq_old_idx = pkt->u1.rx.next_bd_idx;
H A Dlm_sp.c3340 u16_t cq_old_idx = 0; local
3348 cq_old_idx = lm_bd_chain_cons_idx(&eq_chain->bd_chain);
3351 if (cq_old_idx == cq_new_idx)
3356 DbgMessage(pdev, INFORMeq , "EQ consumer index: cq_old_idx=0x%x, cq_new_idx=0x%x!\n",cq_old_idx,cq_new_idx);
3359 while(cq_old_idx != cq_new_idx)
3361 DbgBreakIfFastPath(S16_SUB(cq_new_idx, cq_old_idx) <= 0);
3371 cq_old_idx = lm_bd_chain_cons_idx(&eq_chain->bd_chain);

Completed in 81 milliseconds