Searched refs:tail_cons_indx (Results 1 - 5 of 5) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/udapl/udapl_tavor/tavor/
H A Ddapl_arbel_hw.c1390 uint32_t cons_indx, tail_cons_indx, wrap_around_mask; local
1424 tail_cons_indx = cons_indx;
1430 tail_cons_indx = (tail_cons_indx + 1) & wrap_around_mask;
1433 cqe = &cq->cq_addr[tail_cons_indx];
1437 * Using the 'tail_cons_indx' that was just set, we now know how many
1439 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1441 check_indx = new_indx = (tail_cons_indx - 1) & wrap_around_mask;
H A Ddapl_tavor_hw.c1723 uint32_t cons_indx, tail_cons_indx, wrap_around_mask; local
1758 tail_cons_indx = cons_indx;
1764 tail_cons_indx = (tail_cons_indx + 1) & wrap_around_mask;
1767 cqe = &cq->cq_addr[tail_cons_indx];
1771 * Using the 'tail_cons_indx' that was just set, we now know how many
1773 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1775 check_indx = new_indx = (tail_cons_indx - 1) & wrap_around_mask;
H A Ddapl_hermon_hw.c1445 uint32_t cons_indx, tail_cons_indx; local
1473 tail_cons_indx = cons_indx;
1479 tail_cons_indx = (tail_cons_indx + 1) & cq_wrap_around_mask;
1482 cqe = &cq->cq_addr[tail_cons_indx];
1486 * Using the 'tail_cons_indx' that was just set, we now know how many
1488 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1490 check_indx = new_indx = (tail_cons_indx - 1) & cq_wrap_around_mask;
/opensolaris-onvv-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_cq.c1653 uint32_t cons_indx, tail_cons_indx, wrap_around_mask; local
1689 tail_cons_indx = cons_indx;
1690 while (HERMON_CQE_OWNER_IS_SW(cq, cqe, tail_cons_indx, shift, mask)) {
1695 tail_cons_indx++;
1698 cqe = &cq->cq_buf[tail_cons_indx & wrap_around_mask];
1702 * Using the 'tail_cons_indx' that was just set, we now know how many
1704 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1706 check_indx = new_indx = (tail_cons_indx - 1);
/opensolaris-onvv-gate/usr/src/uts/common/io/ib/adapters/tavor/
H A Dtavor_cq.c1738 uint32_t cons_indx, tail_cons_indx, wrap_around_mask; local
1786 tail_cons_indx = cons_indx;
1792 tail_cons_indx = (tail_cons_indx + 1) & wrap_around_mask;
1795 cqe = &cq->cq_buf[tail_cons_indx];
1802 * Using the 'tail_cons_indx' that was just set, we now know how many
1804 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1806 check_indx = new_indx = (tail_cons_indx - 1) & wrap_around_mask;

Completed in 165 milliseconds