Home
last modified time | relevance | path

Searched refs:txqstats (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/net/mac80211/
H A Dcfg.c4460 txqstats->flows = txqi->tin.flows; in ieee80211_fill_txq_stats()
4465 txqstats->drops = txqi->cstats.drop_count; in ieee80211_fill_txq_stats()
4470 txqstats->ecn_marks = txqi->cstats.ecn_mark; in ieee80211_fill_txq_stats()
4475 txqstats->overlimit = txqi->tin.overlimit; in ieee80211_fill_txq_stats()
4480 txqstats->collisions = txqi->tin.collisions; in ieee80211_fill_txq_stats()
4485 txqstats->tx_bytes = txqi->tin.tx_bytes; in ieee80211_fill_txq_stats()
4490 txqstats->tx_packets = txqi->tin.tx_packets; in ieee80211_fill_txq_stats()
4496 struct cfg80211_txq_stats *txqstats) in ieee80211_get_txq_stats() argument
4522 txqstats->overlimit = local->fq.overlimit; in ieee80211_get_txq_stats()
4523 txqstats->overmemory = local->fq.overmemory; in ieee80211_get_txq_stats()
[all …]
H A Dieee80211_i.h2437 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats,
/openbmc/linux/drivers/net/ethernet/pensando/ionic/
H A Dionic_stats.c164 struct ionic_tx_stats *txstats = &lif->txqstats[q_num]; in ionic_add_lif_txq_stats()
285 txstats = &lif->txqstats[q_num]; in ionic_sw_stats_get_txq_values()
H A Dionic_lif.h91 #define q_to_tx_stats(q) (&(q)->lif->txqstats[(q)->index])
185 struct ionic_tx_stats *txqstats; member
H A Dionic_txrx.c548 pkts = lif->txqstats[qi].pkts; in ionic_dim_update()
549 bytes = lif->txqstats[qi].bytes; in ionic_dim_update()
556 pkts = lif->txqstats[qi].pkts + lif->rxqstats[qi].pkts; in ionic_dim_update()
557 bytes = lif->txqstats[qi].bytes + lif->rxqstats[qi].bytes; in ionic_dim_update()
H A Dionic_lif.c466 devm_kfree(dev, lif->txqstats); in ionic_qcqs_free()
467 lif->txqstats = NULL; in ionic_qcqs_free()
757 lif->txqstats = devm_kcalloc(dev, lif->ionic->ntxqs_per_lif + 1, in ionic_qcqs_alloc()
758 sizeof(*lif->txqstats), GFP_KERNEL); in ionic_qcqs_alloc()
759 if (!lif->txqstats) in ionic_qcqs_alloc()
/openbmc/linux/net/wireless/
H A Drdev-ops.h628 struct cfg80211_txq_stats *txqstats) in rdev_get_txq_stats() argument
632 ret = rdev->ops->get_txq_stats(&rdev->wiphy, wdev, txqstats); in rdev_get_txq_stats()
H A Dnl80211.c1224 struct cfg80211_txq_stats *txqstats, in nl80211_put_txq_stats() argument
1230 if (txqstats->filled & BIT(NL80211_TXQ_STATS_ ## attr) && \ in nl80211_put_txq_stats()
1231 nla_put_u32(msg, NL80211_TXQ_STATS_ ## attr, txqstats->memb)) \ in nl80211_put_txq_stats()
2937 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_wiphy() local
2940 res = rdev_get_txq_stats(rdev, NULL, &txqstats); in nl80211_send_wiphy()
2942 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_wiphy()
3933 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_iface() local
3934 int ret = rdev_get_txq_stats(rdev, wdev, &txqstats); in nl80211_send_iface()
3937 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_iface()
/openbmc/linux/include/net/
H A Dcfg80211.h4714 struct cfg80211_txq_stats *txqstats);