diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-07-18 07:31:31 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-01-03 07:01:41 -0500 |
commit | c82c4a80bbb9c8ffa1d783070a8caa37f2db45b6 (patch) | |
tree | efafa9bdbba034bf4012dc4d2c727d7bd903fd28 /net/mac80211/sta_info.h | |
parent | d582cffbcd04eae0bd8a83b05648bfd54bfd21c9 (diff) |
mac80211: split aggregation stop by reason
The initiator/tx doesn't really identify why an
aggregation session is stopped, give a reason
for stopping that more clearly identifies what's
going on. This will help tell the driver clearly
what is expected of it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r-- | net/mac80211/sta_info.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index 031e4a5bbeca..af7d78aa5523 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -92,6 +92,13 @@ enum ieee80211_sta_info_flags { | |||
92 | #define HT_AGG_STATE_WANT_START 4 | 92 | #define HT_AGG_STATE_WANT_START 4 |
93 | #define HT_AGG_STATE_WANT_STOP 5 | 93 | #define HT_AGG_STATE_WANT_STOP 5 |
94 | 94 | ||
95 | enum ieee80211_agg_stop_reason { | ||
96 | AGG_STOP_DECLINED, | ||
97 | AGG_STOP_LOCAL_REQUEST, | ||
98 | AGG_STOP_PEER_REQUEST, | ||
99 | AGG_STOP_DESTROY_STA, | ||
100 | }; | ||
101 | |||
95 | /** | 102 | /** |
96 | * struct tid_ampdu_tx - TID aggregation information (Tx). | 103 | * struct tid_ampdu_tx - TID aggregation information (Tx). |
97 | * | 104 | * |