Lines Matching refs:tx_queue_id
530 sfc_tx_queue_setup(struct rte_eth_dev *dev, uint16_t tx_queue_id, in sfc_tx_queue_setup() argument
539 tx_queue_id, nb_tx_desc, socket_id); in sfc_tx_queue_setup()
543 rc = sfc_tx_qinit(sa, tx_queue_id, nb_tx_desc, socket_id, tx_conf); in sfc_tx_queue_setup()
547 dev->data->tx_queues[tx_queue_id] = sas->txq_info[tx_queue_id].dp; in sfc_tx_queue_setup()
1211 sfc_tx_queue_info_get(struct rte_eth_dev *dev, uint16_t tx_queue_id, in sfc_tx_queue_info_get() argument
1217 SFC_ASSERT(tx_queue_id < sas->txq_count); in sfc_tx_queue_info_get()
1219 txq_info = &sas->txq_info[tx_queue_id]; in sfc_tx_queue_info_get()
1349 sfc_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id) in sfc_tx_queue_start() argument
1355 sfc_log_init(sa, "TxQ = %u", tx_queue_id); in sfc_tx_queue_start()
1363 if (sas->txq_info[tx_queue_id].state != SFC_TXQ_INITIALIZED) in sfc_tx_queue_start()
1366 rc = sfc_tx_qstart(sa, tx_queue_id); in sfc_tx_queue_start()
1370 sas->txq_info[tx_queue_id].deferred_started = B_TRUE; in sfc_tx_queue_start()
1385 sfc_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id) in sfc_tx_queue_stop() argument
1390 sfc_log_init(sa, "TxQ = %u", tx_queue_id); in sfc_tx_queue_stop()
1394 sfc_tx_qstop(sa, tx_queue_id); in sfc_tx_queue_stop()
1396 sas->txq_info[tx_queue_id].deferred_started = B_FALSE; in sfc_tx_queue_stop()