Searched refs:txqstats (Results 1 – 9 of 9) sorted by relevance
/linux-6.1.9/net/mac80211/ |
D | cfg.c | 4291 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats, in ieee80211_fill_txq_stats() argument 4294 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_BYTES))) { in ieee80211_fill_txq_stats() 4295 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_BYTES); in ieee80211_fill_txq_stats() 4296 txqstats->backlog_bytes = txqi->tin.backlog_bytes; in ieee80211_fill_txq_stats() 4299 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS))) { in ieee80211_fill_txq_stats() 4300 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS); in ieee80211_fill_txq_stats() 4301 txqstats->backlog_packets = txqi->tin.backlog_packets; in ieee80211_fill_txq_stats() 4304 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_FLOWS))) { in ieee80211_fill_txq_stats() 4305 txqstats->filled |= BIT(NL80211_TXQ_STATS_FLOWS); in ieee80211_fill_txq_stats() 4306 txqstats->flows = txqi->tin.flows; in ieee80211_fill_txq_stats() [all …]
|
D | ieee80211_i.h | 2350 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats,
|
/linux-6.1.9/drivers/net/ethernet/pensando/ionic/ |
D | ionic_lif.h | 83 #define q_to_tx_stats(q) (&(q)->lif->txqstats[(q)->index]) 175 struct ionic_tx_stats *txqstats; member
|
D | ionic_stats.c | 164 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()
|
D | ionic_txrx.c | 458 pkts = lif->txqstats[qi].pkts; in ionic_dim_update() 459 bytes = lif->txqstats[qi].bytes; in ionic_dim_update() 466 pkts = lif->txqstats[qi].pkts + lif->rxqstats[qi].pkts; in ionic_dim_update() 467 bytes = lif->txqstats[qi].bytes + lif->rxqstats[qi].bytes; in ionic_dim_update()
|
D | ionic_lif.c | 437 devm_kfree(dev, lif->txqstats); in ionic_qcqs_free() 438 lif->txqstats = NULL; in ionic_qcqs_free() 698 lif->txqstats = devm_kcalloc(dev, lif->ionic->ntxqs_per_lif + 1, in ionic_qcqs_alloc() 699 sizeof(*lif->txqstats), GFP_KERNEL); in ionic_qcqs_alloc() 700 if (!lif->txqstats) in ionic_qcqs_alloc()
|
/linux-6.1.9/net/wireless/ |
D | rdev-ops.h | 612 struct cfg80211_txq_stats *txqstats) in rdev_get_txq_stats() argument 616 ret = rdev->ops->get_txq_stats(&rdev->wiphy, wdev, txqstats); in rdev_get_txq_stats()
|
D | nl80211.c | 1207 struct cfg80211_txq_stats *txqstats, in nl80211_put_txq_stats() argument 1213 if (txqstats->filled & BIT(NL80211_TXQ_STATS_ ## attr) && \ in nl80211_put_txq_stats() 1214 nla_put_u32(msg, NL80211_TXQ_STATS_ ## attr, txqstats->memb)) \ in nl80211_put_txq_stats() 2906 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_wiphy() local 2909 res = rdev_get_txq_stats(rdev, NULL, &txqstats); in nl80211_send_wiphy() 2911 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_wiphy() 3849 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_iface() local 3850 int ret = rdev_get_txq_stats(rdev, wdev, &txqstats); in nl80211_send_iface() 3853 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_iface()
|
/linux-6.1.9/include/net/ |
D | cfg80211.h | 4589 struct cfg80211_txq_stats *txqstats);
|