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

/illumos-gate/usr/src/lib/udapl/udapl_tavor/tavor/
H A Ddapl_arbel_hw.c1391 uint32_t new_indx, check_indx, indx; local
1439 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1441 check_indx = new_indx = (tail_cons_indx - 1) & wrap_around_mask;
1465 if (check_indx != new_indx) {
1466 next_cqe = &cq->cq_addr[new_indx];
1474 new_indx = (new_indx - 1) & wrap_around_mask;
1484 if (check_indx != new_indx) {
1489 * index specified by 'new_indx'. This 'new_indx' wil
[all...]
H A Ddapl_tavor_hw.c1724 uint32_t new_indx, check_indx, indx; local
1773 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1775 check_indx = new_indx = (tail_cons_indx - 1) & wrap_around_mask;
1799 if (check_indx != new_indx) {
1800 next_cqe = &cq->cq_addr[new_indx];
1808 new_indx = (new_indx - 1) & wrap_around_mask;
1818 if (check_indx != new_indx) {
1823 * index specified by 'new_indx'. This 'new_indx' wil
[all...]
H A Ddapl_hermon_hw.c1446 uint32_t new_indx, check_indx, indx; local
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;
1514 if (check_indx != new_indx) {
1515 next_cqe = &cq->cq_addr[new_indx];
1523 new_indx = (new_indx - 1) & cq_wrap_around_mask;
1533 if (check_indx != new_indx) {
1538 * index specified by 'new_indx'. This 'new_indx' wil
[all...]
/illumos-gate/usr/src/uts/common/io/ib/adapters/tavor/
H A Dtavor_cq.c1739 uint32_t new_indx, check_indx, indx; local
1804 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1806 check_indx = new_indx = (tail_cons_indx - 1) & wrap_around_mask;
1831 if (check_indx != new_indx) {
1832 next_cqe = &cq->cq_buf[new_indx];
1840 new_indx = (new_indx - 1) & wrap_around_mask;
1850 if (check_indx != new_indx) {
1855 * index specified by 'new_indx'. This 'new_indx' wil
[all...]
/illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_cq.c1654 uint32_t new_indx, check_indx, qpnum; local
1704 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1706 check_indx = new_indx = (tail_cons_indx - 1);
1730 if (check_indx != new_indx) {
1732 &cq->cq_buf[new_indx & wrap_around_mask];
1736 new_indx--; /* move index to next CQE to fill */
1742 * Update consumer index to be the 'new_indx'. This moves it past all
1743 * removed entries. Because 'new_indx' is pointing to the last
1747 cons_indx = (new_indx + 1);

Completed in 60 milliseconds