diff options
author | Ron Rindjunsky <ron.rindjunsky@intel.com> | 2007-12-25 10:00:33 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:00:59 -0500 |
commit | 07db218396650933abff3c5c1ad1e2a6e0cfedeb (patch) | |
tree | e81672015dba20e146b2eea30aea9449f5833a44 /net/mac80211/ieee80211_i.h | |
parent | 5aae2880618471cfa679ca22531b88990bee9bf8 (diff) |
mac80211: A-MPDU Rx adding basic functionality
This patch adds the basic needed abilities and functions for A-MPDU Rx session
changed functions:
- ieee80211_sta_process_addba_request - Rx A-MPDU initialization enabled
- ieee80211_stop - stops all A-MPDU Rx in case interface goes down
added functions:
- ieee80211_send_delba - used for sending out Del BA in A-MPDU sessions
- ieee80211_sta_stop_rx_BA_session - stopping Rx A-MPDU session
- sta_rx_agg_session_timer_expired - stops A-MPDU Rx use if load is too
low
Signed-off-by: Ron Rindjunsky <ron.rindjunsky@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index baf53c047127..740d69d5bbd3 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h | |||
@@ -767,6 +767,9 @@ int ieee80211_ht_cap_ie_to_ht_info(struct ieee80211_ht_cap *ht_cap_ie, | |||
767 | int ieee80211_ht_addt_info_ie_to_ht_bss_info( | 767 | int ieee80211_ht_addt_info_ie_to_ht_bss_info( |
768 | struct ieee80211_ht_addt_info *ht_add_info_ie, | 768 | struct ieee80211_ht_addt_info *ht_add_info_ie, |
769 | struct ieee80211_ht_bss_info *bss_info); | 769 | struct ieee80211_ht_bss_info *bss_info); |
770 | void ieee80211_sta_stop_rx_ba_session(struct net_device *dev, u8 *da, | ||
771 | u16 tid, u16 initiator, u16 reason); | ||
772 | void sta_rx_agg_session_timer_expired(unsigned long data); | ||
770 | /* ieee80211_iface.c */ | 773 | /* ieee80211_iface.c */ |
771 | int ieee80211_if_add(struct net_device *dev, const char *name, | 774 | int ieee80211_if_add(struct net_device *dev, const char *name, |
772 | struct net_device **new_dev, int type); | 775 | struct net_device **new_dev, int type); |