Lines Matching refs:raw_cons
240 u32 sw_cons, raw_cons; in clean_nq() local
246 raw_cons = hwq->cons; in clean_nq()
248 sw_cons = HWQ_CMP(raw_cons, hwq); in clean_nq()
251 if (!NQE_CMP_VALID(nqe, raw_cons, hwq->max_elements)) in clean_nq()
279 raw_cons++; in clean_nq()
307 u32 sw_cons, raw_cons; in bnxt_qplib_service_nq() local
314 raw_cons = hwq->cons; in bnxt_qplib_service_nq()
316 sw_cons = HWQ_CMP(raw_cons, hwq); in bnxt_qplib_service_nq()
318 if (!NQE_CMP_VALID(nqe, raw_cons, hwq->max_elements)) in bnxt_qplib_service_nq()
381 raw_cons++; in bnxt_qplib_service_nq()
383 if (hwq->cons != raw_cons) { in bnxt_qplib_service_nq()
384 hwq->cons = raw_cons; in bnxt_qplib_service_nq()
2603 u32 sw_cons, raw_cons; in bnxt_qplib_is_cq_empty() local
2606 raw_cons = cq->hwq.cons; in bnxt_qplib_is_cq_empty()
2607 sw_cons = HWQ_CMP(raw_cons, &cq->hwq); in bnxt_qplib_is_cq_empty()
2610 rc = !CQE_CMP_VALID(hw_cqe, raw_cons, cq->hwq.max_elements); in bnxt_qplib_is_cq_empty()
2855 u32 sw_cons, raw_cons; in bnxt_qplib_poll_cq() local
2859 raw_cons = cq->hwq.cons; in bnxt_qplib_poll_cq()
2863 sw_cons = HWQ_CMP(raw_cons, &cq->hwq); in bnxt_qplib_poll_cq()
2867 if (!CQE_CMP_VALID(hw_cqe, raw_cons, cq->hwq.max_elements)) in bnxt_qplib_poll_cq()
2928 raw_cons++; in bnxt_qplib_poll_cq()
2930 if (cq->hwq.cons != raw_cons) { in bnxt_qplib_poll_cq()
2931 cq->hwq.cons = raw_cons; in bnxt_qplib_poll_cq()