aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2005-07-22 23:37:03 +0000
committerSam Leffler <sam@FreeBSD.org>2005-07-22 23:37:03 +0000
commit1686ab4639fc63d8f5a3ce87e4f430065ba2f215 (patch)
tree6ce9cc52afcdf42a318eadb3bb5f36dd60d7a132
parent0b42c00c0e22dcc6f1537a67e1c338a7afaa060e (diff)
Notes
-rw-r--r--tools/tools/ath/80211stats.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/tools/ath/80211stats.c b/tools/tools/ath/80211stats.c
index 86ab8e13d0c04..4917b16a18d0d 100644
--- a/tools/tools/ath/80211stats.c
+++ b/tools/tools/ath/80211stats.c
@@ -122,6 +122,8 @@ printstats(FILE *fd, const struct ieee80211_stats *stats)
STAT(tx_badcipher, "tx failed 'cuz bad ciper/key type");
STAT(tx_nodefkey, "tx failed 'cuz no defkey");
STAT(tx_noheadroom, "tx failed 'cuz no space for crypto hdrs");
+ STAT(tx_fragframes, "tx frames fragmented");
+ STAT(tx_frags, "tx frags generated");
STAT(scan_active, "active scans started");
STAT(scan_passive, "passive scans started");
STAT(node_timeout, "nodes timed out inactivity");
@@ -146,6 +148,11 @@ printstats(FILE *fd, const struct ieee80211_stats *stats)
STAT(ps_unassoc, "ps-poll received for unassociated station");
STAT(ps_badaid, "ps-poll received with invalid association id");
STAT(ps_qempty, "ps-poll received with nothing to send");
+ STAT(ff_badhdr, "fast frame rx'd w/ bad hdr");
+ STAT(ff_tooshort, "fast frame rx decap error");
+ STAT(ff_split, "fast frame rx split error");
+ STAT(ff_decap, "fast frames decap'd");
+ STAT(ff_encap, "fast frames encap'd for tx");
#undef STAT
#undef N
}