Home
last modified time | relevance | path

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

/net/mac80211/
Dcfg.c3930 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats, in ieee80211_fill_txq_stats() argument
3933 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_BYTES))) { in ieee80211_fill_txq_stats()
3934 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_BYTES); in ieee80211_fill_txq_stats()
3935 txqstats->backlog_bytes = txqi->tin.backlog_bytes; in ieee80211_fill_txq_stats()
3938 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS))) { in ieee80211_fill_txq_stats()
3939 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS); in ieee80211_fill_txq_stats()
3940 txqstats->backlog_packets = txqi->tin.backlog_packets; in ieee80211_fill_txq_stats()
3943 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_FLOWS))) { in ieee80211_fill_txq_stats()
3944 txqstats->filled |= BIT(NL80211_TXQ_STATS_FLOWS); in ieee80211_fill_txq_stats()
3945 txqstats->flows = txqi->tin.flows; in ieee80211_fill_txq_stats()
[all …]
Dieee80211_i.h2162 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats,
/net/wireless/
Drdev-ops.h610 struct cfg80211_txq_stats *txqstats) in rdev_get_txq_stats() argument
614 ret = rdev->ops->get_txq_stats(&rdev->wiphy, wdev, txqstats); in rdev_get_txq_stats()
Dnl80211.c1101 struct cfg80211_txq_stats *txqstats, in nl80211_put_txq_stats() argument
1107 if (txqstats->filled & BIT(NL80211_TXQ_STATS_ ## attr) && \ in nl80211_put_txq_stats()
1108 nla_put_u32(msg, NL80211_TXQ_STATS_ ## attr, txqstats->memb)) \ in nl80211_put_txq_stats()
2637 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_wiphy() local
2640 res = rdev_get_txq_stats(rdev, NULL, &txqstats); in nl80211_send_wiphy()
2642 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_wiphy()
3518 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_iface() local
3519 int ret = rdev_get_txq_stats(rdev, wdev, &txqstats); in nl80211_send_iface()
3522 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_iface()