Home
last modified time | relevance | path

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

/Linux-v4.19/net/mac80211/
Dcfg.c3718 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats, in ieee80211_fill_txq_stats() argument
3721 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_BYTES))) { in ieee80211_fill_txq_stats()
3722 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_BYTES); in ieee80211_fill_txq_stats()
3723 txqstats->backlog_bytes = txqi->tin.backlog_bytes; in ieee80211_fill_txq_stats()
3726 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS))) { in ieee80211_fill_txq_stats()
3727 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS); in ieee80211_fill_txq_stats()
3728 txqstats->backlog_packets = txqi->tin.backlog_packets; in ieee80211_fill_txq_stats()
3731 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_FLOWS))) { in ieee80211_fill_txq_stats()
3732 txqstats->filled |= BIT(NL80211_TXQ_STATS_FLOWS); in ieee80211_fill_txq_stats()
3733 txqstats->flows = txqi->tin.flows; in ieee80211_fill_txq_stats()
[all …]
Dieee80211_i.h2039 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats,
/Linux-v4.19/net/wireless/
Drdev-ops.h592 struct cfg80211_txq_stats *txqstats) in rdev_get_txq_stats() argument
596 ret = rdev->ops->get_txq_stats(&rdev->wiphy, wdev, txqstats); in rdev_get_txq_stats()
Dnl80211.c784 struct cfg80211_txq_stats *txqstats, in nl80211_put_txq_stats() argument
790 if (txqstats->filled & BIT(NL80211_TXQ_STATS_ ## attr) && \ in nl80211_put_txq_stats()
791 nla_put_u32(msg, NL80211_TXQ_STATS_ ## attr, txqstats->memb)) \ in nl80211_put_txq_stats()
2071 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_wiphy() local
2074 res = rdev_get_txq_stats(rdev, NULL, &txqstats); in nl80211_send_wiphy()
2076 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_wiphy()
2870 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_iface() local
2871 int ret = rdev_get_txq_stats(rdev, wdev, &txqstats); in nl80211_send_iface()
2874 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_iface()
/Linux-v4.19/include/net/
Dcfg80211.h3420 struct cfg80211_txq_stats *txqstats);