Lines Matching refs:txq_ctrl
163 txq = &sa->txq_ctrl[sw_index]; in sfc_tx_qinit()
253 txq = &sa->txq_ctrl[sw_index]; in sfc_tx_qfini()
367 sa->txq_ctrl = calloc(nb_tx_queues, sizeof(sa->txq_ctrl[0])); in sfc_tx_configure()
368 if (sa->txq_ctrl == NULL) in sfc_tx_configure()
383 new_txq_ctrl = realloc(sa->txq_ctrl, in sfc_tx_configure()
384 nb_tx_queues * sizeof(sa->txq_ctrl[0])); in sfc_tx_configure()
389 sa->txq_ctrl = new_txq_ctrl; in sfc_tx_configure()
394 memset(&sa->txq_ctrl[sas->txq_count], 0, in sfc_tx_configure()
396 sizeof(sa->txq_ctrl[0])); in sfc_tx_configure()
429 free(sa->txq_ctrl); in sfc_tx_close()
430 sa->txq_ctrl = NULL; in sfc_tx_close()
457 txq = &sa->txq_ctrl[sw_index]; in sfc_tx_qstart()
542 txq = &sa->txq_ctrl[sw_index]; in sfc_tx_qstop()
968 return &sa->txq_ctrl[dpq->queue_id]; in sfc_txq_by_dp_txq()