diff options
author | adrian <adrian@FreeBSD.org> | 2012-04-08 04:51:25 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2012-04-08 04:51:25 +0000 |
commit | f16af2226ba072844f58cb8b0d7fcbd4f48ec99d (patch) | |
tree | eca6434a25244159833ec37231b9e39b582ee119 /sys/net80211/ieee80211_ioctl.h | |
parent | ba0f3fb560cc3c6f37441370a2a2eef98e7a0f3d (diff) | |
download | FreeBSD-src-f16af2226ba072844f58cb8b0d7fcbd4f48ec99d.zip FreeBSD-src-f16af2226ba072844f58cb8b0d7fcbd4f48ec99d.tar.gz |
Add some statistics to track BAR TX.
Diffstat (limited to 'sys/net80211/ieee80211_ioctl.h')
-rw-r--r-- | sys/net80211/ieee80211_ioctl.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/net80211/ieee80211_ioctl.h b/sys/net80211/ieee80211_ioctl.h index 0d51fe9..7fa895a 100644 --- a/sys/net80211/ieee80211_ioctl.h +++ b/sys/net80211/ieee80211_ioctl.h @@ -242,8 +242,11 @@ struct ieee80211_stats { uint32_t is_rx_badalign; /* dropped 'cuz misaligned */ uint32_t is_hwmp_proxy; /* PREP for proxy route */ uint32_t is_beacon_bad; /* Number of bad beacons */ - - uint32_t is_spare[10]; + uint32_t is_ampdu_bar_tx; /* A-MPDU BAR frames TXed */ + 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]; }; /* |