Home
last modified time | relevance | path

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

/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/
H A Dmvpp2_main.c299 static void mvpp2_txq_inc_get(struct mvpp2_txq_pcpu *txq_pcpu) in mvpp2_txq_inc_get() argument
301 txq_pcpu->txq_get_index++; in mvpp2_txq_inc_get()
302 if (txq_pcpu->txq_get_index == txq_pcpu->size) in mvpp2_txq_inc_get()
303 txq_pcpu->txq_get_index = 0; in mvpp2_txq_inc_get()
307 struct mvpp2_txq_pcpu *txq_pcpu, in mvpp2_txq_inc_put() argument
313 txq_pcpu->buffs + txq_pcpu->txq_put_index; in mvpp2_txq_inc_put()
322 txq_pcpu->txq_put_index++; in mvpp2_txq_inc_put()
323 if (txq_pcpu->txq_put_index == txq_pcpu->size) in mvpp2_txq_inc_put()
324 txq_pcpu->txq_put_index = 0; in mvpp2_txq_inc_put()
2533 struct mvpp2_txq_pcpu *txq_pcpu, in mvpp2_txq_reserved_desc_num_proc() argument
[all …]
H A Dmvpp2.h1519 #define IS_TSO_HEADER(txq_pcpu, addr) \ argument
1520 ((addr) >= (txq_pcpu)->tso_headers_dma && \
1521 (addr) < (txq_pcpu)->tso_headers_dma + \
1522 (txq_pcpu)->size * TSO_HEADER_SIZE)
/openbmc/u-boot/drivers/net/
H A Dmvpp2.c1383 static void mvpp2_txq_inc_get(struct mvpp2_txq_pcpu *txq_pcpu) in mvpp2_txq_inc_get() argument
1385 txq_pcpu->txq_get_index++; in mvpp2_txq_inc_get()
1386 if (txq_pcpu->txq_get_index == txq_pcpu->size) in mvpp2_txq_inc_get()
1387 txq_pcpu->txq_get_index = 0; in mvpp2_txq_inc_get()
4018 struct mvpp2_txq_pcpu *txq_pcpu, int num) in mvpp2_txq_bufs_free() argument
4023 mvpp2_txq_inc_get(txq_pcpu); in mvpp2_txq_bufs_free()
4172 struct mvpp2_txq_pcpu *txq_pcpu; in mvpp2_txq_init() local
4228 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu); in mvpp2_txq_init()
4229 txq_pcpu->size = txq->size; in mvpp2_txq_init()
4256 struct mvpp2_txq_pcpu *txq_pcpu; in mvpp2_txq_clean() local
[all …]