Home
last modified time | relevance | path

Searched refs:raw_cons (Results 1 – 3 of 3) sorted by relevance

/linux-6.12.1/drivers/net/ethernet/broadcom/bnxt/
Dbnxt.h826 #define TX_CMP_VALID(txcmp, raw_cons) \ argument
828 !((raw_cons) & bp->cp_bit))
830 #define RX_CMP_VALID(rxcmp1, raw_cons) \ argument
832 !((raw_cons) & bp->cp_bit))
834 #define RX_AGG_CMP_VALID(agg, raw_cons) \ argument
836 !((raw_cons) & bp->cp_bit))
838 #define NQ_CMP_VALID(nqcmp, raw_cons) \ argument
839 (!!((nqcmp)->v & cpu_to_le32(NQ_CN_V)) == !((raw_cons) & bp->cp_bit))
Dbnxt.c1309 u8 agg_bufs, u32 *raw_cons) in bnxt_agg_bufs_valid() argument
1314 *raw_cons = ADV_RAW_CMP(*raw_cons, agg_bufs); in bnxt_agg_bufs_valid()
1315 last = RING_CMP(*raw_cons); in bnxt_agg_bufs_valid()
1318 return RX_AGG_CMP_VALID(agg, *raw_cons); in bnxt_agg_bufs_valid()
1380 u32 *raw_cons, void *cmp) in bnxt_discard_rx() argument
1383 u32 tmp_raw_cons = *raw_cons; in bnxt_discard_rx()
1405 *raw_cons = tmp_raw_cons; in bnxt_discard_rx()
1764 u32 *raw_cons, in bnxt_tpa_end() argument
1782 int rc = bnxt_discard_rx(bp, cpr, raw_cons, tpa_end); in bnxt_tpa_end()
1808 idx = RING_CMP(*raw_cons); in bnxt_tpa_end()
[all …]
Dbnxt_ethtool.c4690 u32 raw_cons, int pkt_size) in bnxt_rx_loopback() argument
4702 cp_cons = RING_CMP(raw_cons); in bnxt_rx_loopback()
4727 u32 raw_cons; in bnxt_poll_loopback() local
4731 raw_cons = cpr->cp_raw_cons; in bnxt_poll_loopback()
4733 cons = RING_CMP(raw_cons); in bnxt_poll_loopback()
4736 if (!TX_CMP_VALID(txcmp, raw_cons)) { in bnxt_poll_loopback()
4747 rc = bnxt_rx_loopback(bp, cpr, raw_cons, pkt_size); in bnxt_poll_loopback()
4748 raw_cons = NEXT_RAW_CMP(raw_cons); in bnxt_poll_loopback()
4749 raw_cons = NEXT_RAW_CMP(raw_cons); in bnxt_poll_loopback()
4752 raw_cons = NEXT_RAW_CMP(raw_cons); in bnxt_poll_loopback()
[all …]