1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Add ic_rxstream and ic_txstream. These variables hold the number of RX

streams and the number of TX streams respectively.

Obtained from:	//depot/user/rpaulo/80211n/...
Sponsored by:	iXsystems, inc.
This commit is contained in:
Rui Paulo 2010-04-28 13:42:13 +00:00
parent 54862540ba
commit dfe4a64b12
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=207326

View File

@ -213,6 +213,8 @@ struct ieee80211com {
enum ieee80211_protmode ic_htprotmode; /* HT protection mode */ enum ieee80211_protmode ic_htprotmode; /* HT protection mode */
int ic_lastnonerp; /* last time non-ERP sta noted*/ int ic_lastnonerp; /* last time non-ERP sta noted*/
int ic_lastnonht; /* last time non-HT sta noted */ int ic_lastnonht; /* last time non-HT sta noted */
uint8_t ic_rxstream; /* # RX streams */
uint8_t ic_txstream; /* # TX streams */
/* optional state for Atheros SuperG protocol extensions */ /* optional state for Atheros SuperG protocol extensions */
struct ieee80211_superg *ic_superg; struct ieee80211_superg *ic_superg;
@ -315,7 +317,6 @@ struct ieee80211com {
void (*ic_ampdu_rx_stop)(struct ieee80211_node *, void (*ic_ampdu_rx_stop)(struct ieee80211_node *,
struct ieee80211_rx_ampdu *); struct ieee80211_rx_ampdu *);
uint64_t ic_spare[7]; uint64_t ic_spare[7];
uint32_t ic_spare2;
}; };
struct ieee80211_aclator; struct ieee80211_aclator;