Lines Matching refs:raw_cons
239 u32 sw_cons, raw_cons; in clean_nq() local
245 raw_cons = hwq->cons; in clean_nq()
247 sw_cons = HWQ_CMP(raw_cons, hwq); in clean_nq()
250 if (!NQE_CMP_VALID(nqe, raw_cons, hwq->max_elements)) in clean_nq()
278 raw_cons++; in clean_nq()
306 u32 sw_cons, raw_cons; in bnxt_qplib_service_nq() local
313 raw_cons = hwq->cons; in bnxt_qplib_service_nq()
315 sw_cons = HWQ_CMP(raw_cons, hwq); in bnxt_qplib_service_nq()
317 if (!NQE_CMP_VALID(nqe, raw_cons, hwq->max_elements)) in bnxt_qplib_service_nq()
380 raw_cons++; in bnxt_qplib_service_nq()
382 if (hwq->cons != raw_cons) { in bnxt_qplib_service_nq()
383 hwq->cons = raw_cons; in bnxt_qplib_service_nq()
2600 u32 sw_cons, raw_cons; in bnxt_qplib_is_cq_empty() local
2603 raw_cons = cq->hwq.cons; in bnxt_qplib_is_cq_empty()
2604 sw_cons = HWQ_CMP(raw_cons, &cq->hwq); in bnxt_qplib_is_cq_empty()
2607 rc = !CQE_CMP_VALID(hw_cqe, raw_cons, cq->hwq.max_elements); in bnxt_qplib_is_cq_empty()
2851 u32 sw_cons, raw_cons; in bnxt_qplib_poll_cq() local
2854 raw_cons = cq->hwq.cons; in bnxt_qplib_poll_cq()
2858 sw_cons = HWQ_CMP(raw_cons, &cq->hwq); in bnxt_qplib_poll_cq()
2862 if (!CQE_CMP_VALID(hw_cqe, raw_cons, cq->hwq.max_elements)) in bnxt_qplib_poll_cq()
2921 raw_cons++; in bnxt_qplib_poll_cq()
2923 if (cq->hwq.cons != raw_cons) { in bnxt_qplib_poll_cq()
2924 cq->hwq.cons = raw_cons; in bnxt_qplib_poll_cq()