Lines Matching refs:ntxq
289 SYSCTL_INT(_hw_cxgbe, OID_AUTO, ntxq, CTLFLAG_RDTUN, &t4_ntxq, 0,
736 uint16_t ntxq; /* # of NIC txq's for each port */ member
1471 s->ntxq = nports * iaq.ntxq; in t4_attach()
1474 s->ntxq += nports * (num_vis - 1) * iaq.ntxq_vi; in t4_attach()
1476 s->neq = s->ntxq + s->nrxq; /* the free list in an rxq is an eq */ in t4_attach()
1528 s->txq = malloc(s->ntxq * sizeof(struct sge_txq), M_CXGBE, in t4_attach()
1586 vi->ntxq = j == 0 ? iaq.ntxq : iaq.ntxq_vi; in t4_attach()
1589 tqidx += vi->ntxq; in t4_attach()
1591 if (j == 0 && vi->ntxq > 1) in t4_attach()
2814 sbuf_printf(sb, "%d txq, %d rxq (NIC)", vi->ntxq, vi->nrxq); in cxgbe_vi_attach()
3238 txq += ((m->m_pkthdr.flowid % (vi->ntxq - vi->rsrv_noflowq)) + in cxgbe_transmit()
4450 iaq->ntxq = t4_ntxq; in calculate_iaq()
4554 iaq->ntxq = 1; in calculate_iaq()
4569 MPASS(iaq->ntxq > 0); in calculate_iaq()
8031 &vi->ntxq, 0, "# of tx queues"); in vi_sysctls()
8407 if ((val >= 1) && (vi->ntxq > 1)) in sysctl_noflowq()