diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2008-10-29 00:49:28 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-10 15:17:32 -0500 |
commit | 8469cdef1f123e2e3e56645f1ac26c7cfb333d9c (patch) | |
tree | 40f9cffd53ee14f16334dcb96447484eeb93e0d6 /include/net | |
parent | dca3edb88ef567671886a85c5e40d491ccecf934 (diff) |
mac80211: Add a new event in ieee80211_ampdu_mlme_action
Send a notification to the driver on succesful
reception of an ADDBA response, add IEEE80211_AMPDU_TX_RESUME
for this purpose.
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/mac80211.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index af2ec6f9beb9..53856003aa18 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -1127,12 +1127,14 @@ enum ieee80211_filter_flags { | |||
1127 | * @IEEE80211_AMPDU_RX_STOP: stop Rx aggregation | 1127 | * @IEEE80211_AMPDU_RX_STOP: stop Rx aggregation |
1128 | * @IEEE80211_AMPDU_TX_START: start Tx aggregation | 1128 | * @IEEE80211_AMPDU_TX_START: start Tx aggregation |
1129 | * @IEEE80211_AMPDU_TX_STOP: stop Tx aggregation | 1129 | * @IEEE80211_AMPDU_TX_STOP: stop Tx aggregation |
1130 | * @IEEE80211_AMPDU_TX_RESUME: resume TX aggregation | ||
1130 | */ | 1131 | */ |
1131 | enum ieee80211_ampdu_mlme_action { | 1132 | enum ieee80211_ampdu_mlme_action { |
1132 | IEEE80211_AMPDU_RX_START, | 1133 | IEEE80211_AMPDU_RX_START, |
1133 | IEEE80211_AMPDU_RX_STOP, | 1134 | IEEE80211_AMPDU_RX_STOP, |
1134 | IEEE80211_AMPDU_TX_START, | 1135 | IEEE80211_AMPDU_TX_START, |
1135 | IEEE80211_AMPDU_TX_STOP, | 1136 | IEEE80211_AMPDU_TX_STOP, |
1137 | IEEE80211_AMPDU_TX_RESUME, | ||
1136 | }; | 1138 | }; |
1137 | 1139 | ||
1138 | /** | 1140 | /** |