Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/net/ethernet/marvell/
Dmvpp2.c958 static void mvpp2_txq_inc_get(struct mvpp2_txq_pcpu *txq_pcpu) in mvpp2_txq_inc_get() argument
960 txq_pcpu->txq_get_index++; in mvpp2_txq_inc_get()
961 if (txq_pcpu->txq_get_index == txq_pcpu->size) in mvpp2_txq_inc_get()
962 txq_pcpu->txq_get_index = 0; in mvpp2_txq_inc_get()
965 static void mvpp2_txq_inc_put(struct mvpp2_txq_pcpu *txq_pcpu, in mvpp2_txq_inc_put() argument
968 txq_pcpu->tx_skb[txq_pcpu->txq_put_index] = skb; in mvpp2_txq_inc_put()
969 txq_pcpu->txq_put_index++; in mvpp2_txq_inc_put()
970 if (txq_pcpu->txq_put_index == txq_pcpu->size) in mvpp2_txq_inc_put()
971 txq_pcpu->txq_put_index = 0; in mvpp2_txq_inc_put()
4200 struct mvpp2_txq_pcpu *txq_pcpu, in mvpp2_txq_reserved_desc_num_proc() argument
[all …]