Lines Matching refs:qsize

74     int8_t pktc_idx, int qsize, uint8_t esize);
75 static inline void init_fl(struct sge_fl *fl, uint16_t qsize);
77 uint16_t eqtype, uint16_t qsize,uint8_t tx_chan, uint16_t iqid);
685 mp = t4_ring_rx(rxq, iq->qsize/8); in t4_intr_rx_work()
868 limit = budget ? budget : iq->qsize / 8; in service_iq()
930 if (service_iq(q, q->qsize / 8) == 0) { in service_iq()
977 if (service_iq(q, q->qsize / 8) == 0) in service_iq()
1214 if (eq->pending >= (1 << (fls(eq->qsize - eq->avail) / 2))) { in t4_eth_tx()
1241 (void) reclaim_tx_descs(txq, eq->qsize); in t4_eth_tx()
1249 int qsize, uint8_t esize) in init_iq() argument
1262 iq->qsize = roundup(qsize, 16); /* See FW_IQ_CMD/iqsize */ in init_iq()
1267 init_fl(struct sge_fl *fl, uint16_t qsize) in init_fl() argument
1270 fl->qsize = qsize; in init_fl()
1275 init_eq(struct adapter *sc, struct sge_eq *eq, uint16_t eqtype, uint16_t qsize, in init_eq() argument
1294 eq->qsize = qsize; in init_eq()
1319 len = iq->qsize * iq->esize; in alloc_iq_fl()
1351 c.iqsize = cpu_to_be16(iq->qsize); in alloc_iq_fl()
1365 len = fl->qsize * RX_FL_ESIZE; in alloc_iq_fl()
1372 fl->cap = (fl->qsize - sc->sge.stat_len / RX_FL_ESIZE) * 8; in alloc_iq_fl()
1404 c.fl0size = cpu_to_be16(fl->qsize); in alloc_iq_fl()
1675 V_FW_EQ_CTRL_CMD_EQSIZE(eq->qsize)); in ctrl_eq_alloc()
1718 V_FW_EQ_ETH_CMD_EQSIZE(eq->qsize)); in eth_eq_alloc()
1761 V_FW_EQ_OFLD_CMD_EQSIZE(eq->qsize)); in ofld_eq_alloc()
1792 len = eq->qsize * EQ_ESIZE; in alloc_eq()
1798 eq->cap = eq->qsize - sc->sge.stat_len / EQ_ESIZE; in alloc_eq()
1951 txq->txb_size = eq->qsize * tx_copy_threshold; in alloc_txq()
1965 txq->tx_dhdl_total = eq->qsize * 2; in alloc_txq()
2196 if (++iq->cidx == iq->qsize - 1) { in iq_next()
3402 reclaim_tx_descs(txq, txq->eq.qsize); in tx_reclaim_task()