Lines Matching defs:tx_qgrp
1712 struct idpf_txq_group *tx_qgrp = &vport->txq_grps[i];
1716 tx_qgrp->vport = vport;
1717 tx_qgrp->num_txq = num_txq;
1719 for (j = 0; j < tx_qgrp->num_txq; j++) {
1720 tx_qgrp->txqs[j] = kzalloc(sizeof(*tx_qgrp->txqs[j]),
1722 if (!tx_qgrp->txqs[j])
1726 for (j = 0; j < tx_qgrp->num_txq; j++) {
1727 struct idpf_tx_queue *q = tx_qgrp->txqs[j];
1734 q->txq_grp = tx_qgrp;
1759 tx_qgrp->complq = kcalloc(IDPF_COMPLQ_PER_GROUP,
1760 sizeof(*tx_qgrp->complq),
1762 if (!tx_qgrp->complq)
1765 tx_qgrp->complq->desc_count = vport->complq_desc_count;
1766 tx_qgrp->complq->txq_grp = tx_qgrp;
1767 tx_qgrp->complq->netdev = vport->netdev;
1768 tx_qgrp->complq->clean_budget = vport->compln_clean_budget;
1771 idpf_queue_set(FLOW_SCH_EN, tx_qgrp->complq);
4339 struct idpf_txq_group *tx_qgrp;
4393 tx_qgrp = &vport->txq_grps[i];
4394 num_txq = tx_qgrp->num_txq;
4399 q = tx_qgrp->txqs[j];
4405 struct idpf_compl_queue *q = tx_qgrp->complq;