aboutsummaryrefslogtreecommitdiff
path: root/sys/net80211
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2016-04-04 20:32:31 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2016-04-04 20:32:31 +0000
commitef860a9193cf2b00078ff2c68b44973e819b7229 (patch)
treeb3f8bc27a0425decc984f3139267421c79c7851c /sys/net80211
parent53b832b0919e1e31c92db5e0f5a47c2b1541e672 (diff)
downloadsrc-ef860a9193cf2b00078ff2c68b44973e819b7229.tar.gz
src-ef860a9193cf2b00078ff2c68b44973e819b7229.zip
[net80211] add amsdu and fast frames encap failure counters in the ioctl
definition. The code to set these will come in a subsequent commit (when I start fleshing out A-MSDU support.)
Notes
Notes: svn path=/head/; revision=297562
Diffstat (limited to 'sys/net80211')
-rw-r--r--sys/net80211/ieee80211_ioctl.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_ioctl.h b/sys/net80211/ieee80211_ioctl.h
index ee980263f6ff..8c606c1b284d 100644
--- a/sys/net80211/ieee80211_ioctl.h
+++ b/sys/net80211/ieee80211_ioctl.h
@@ -246,7 +246,10 @@ struct ieee80211_stats {
uint32_t is_ampdu_bar_tx_retry; /* A-MPDU BAR frames TX rtry */
uint32_t is_ampdu_bar_tx_fail; /* A-MPDU BAR frames TX fail */
- uint32_t is_spare[7];
+ uint32_t is_ff_encapfail; /* failed FF encap */
+ uint32_t is_amsdu_encapfail; /* failed A-MSDU encap */
+
+ uint32_t is_spare[5];
};
/*