Searched refs:txqstats (Results 1 – 4 of 4) sorted by relevance
/net/mac80211/ |
D | cfg.c | 4445 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats, in ieee80211_fill_txq_stats() argument 4448 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_BYTES))) { in ieee80211_fill_txq_stats() 4449 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_BYTES); in ieee80211_fill_txq_stats() 4450 txqstats->backlog_bytes = txqi->tin.backlog_bytes; in ieee80211_fill_txq_stats() 4453 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS))) { in ieee80211_fill_txq_stats() 4454 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS); in ieee80211_fill_txq_stats() 4455 txqstats->backlog_packets = txqi->tin.backlog_packets; in ieee80211_fill_txq_stats() 4458 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_FLOWS))) { in ieee80211_fill_txq_stats() 4459 txqstats->filled |= BIT(NL80211_TXQ_STATS_FLOWS); in ieee80211_fill_txq_stats() 4460 txqstats->flows = txqi->tin.flows; in ieee80211_fill_txq_stats() [all …]
|
D | ieee80211_i.h | 2436 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats,
|
/net/wireless/ |
D | rdev-ops.h | 628 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()
|
D | nl80211.c | 1240 struct cfg80211_txq_stats *txqstats, in nl80211_put_txq_stats() argument 1246 if (txqstats->filled & BIT(NL80211_TXQ_STATS_ ## attr) && \ in nl80211_put_txq_stats() 1247 nla_put_u32(msg, NL80211_TXQ_STATS_ ## attr, txqstats->memb)) \ in nl80211_put_txq_stats() 2953 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_wiphy() local 2956 res = rdev_get_txq_stats(rdev, NULL, &txqstats); in nl80211_send_wiphy() 2958 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_wiphy() 3949 struct cfg80211_txq_stats txqstats = {}; in nl80211_send_iface() local 3950 int ret = rdev_get_txq_stats(rdev, wdev, &txqstats); in nl80211_send_iface() 3953 !nl80211_put_txq_stats(msg, &txqstats, in nl80211_send_iface()
|