Searched defs:next_desc_to_proc (Results 1 - 2 of 2) sorted by relevance

/drivers/net/ethernet/marvell/
H A Dmvneta.c425 int next_desc_to_proc; member in struct:mvneta_tx_queue
457 int next_desc_to_proc; member in struct:mvneta_rx_queue
635 int rx_desc = rxq->next_desc_to_proc;
637 rxq->next_desc_to_proc = MVNETA_QUEUE_NEXT_DESC(rxq, rx_desc);
638 prefetch(rxq->descs + rxq->next_desc_to_proc);
691 int tx_desc = txq->next_desc_to_proc;
693 txq->next_desc_to_proc = MVNETA_QUEUE_NEXT_DESC(txq, tx_desc);
702 if (txq->next_desc_to_proc == 0)
703 txq->next_desc_to_proc = txq->last_desc - 1;
705 txq->next_desc_to_proc
[all...]
H A Dmvpp2.c817 int next_desc_to_proc; member in struct:mvpp2_tx_queue
840 int next_desc_to_proc; member in struct:mvpp2_rx_queue
4092 int rx_desc = rxq->next_desc_to_proc;
4094 rxq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(rxq, rx_desc);
4095 prefetch(rxq->descs + rxq->next_desc_to_proc);
4147 int tx_desc = txq->next_desc_to_proc;
4149 txq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(txq, tx_desc);
4242 if (txq->next_desc_to_proc == 0)
4243 txq->next_desc_to_proc = txq->last_desc - 1;
4245 txq->next_desc_to_proc
[all...]

Completed in 49 milliseconds