Home
last modified time | relevance | path

Searched refs:txqcqs (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.4/drivers/net/ethernet/pensando/ionic/
Dionic_lif.c314 if (lif->txqcqs[i].stats) in ionic_qcqs_free()
315 devm_kfree(dev, lif->txqcqs[i].stats); in ionic_qcqs_free()
317 devm_kfree(dev, lif->txqcqs); in ionic_qcqs_free()
318 lif->txqcqs = NULL; in ionic_qcqs_free()
503 q_list_size = sizeof(*lif->txqcqs) * lif->nxqs; in ionic_qcqs_alloc()
505 lif->txqcqs = devm_kzalloc(dev, q_list_size, GFP_KERNEL); in ionic_qcqs_alloc()
506 if (!lif->txqcqs) in ionic_qcqs_alloc()
509 lif->txqcqs[i].stats = devm_kzalloc(dev, in ionic_qcqs_alloc()
512 if (!lif->txqcqs[i].stats) in ionic_qcqs_alloc()
537 if (lif->txqcqs[i].stats) in ionic_qcqs_alloc()
[all …]
Dionic_lif.h148 struct ionic_qcqst *txqcqs; member
183 #define lif_to_txqcq(lif, i) ((lif)->txqcqs[i].qcq)
185 #define lif_to_txstats(lif, i) ((lif)->txqcqs[i].stats->tx)
Dionic_txrx.c312 txcq = &lif->txqcqs[qi].qcq->cq; in ionic_rx_napi()