diff options
author | Johannes Berg <johannes.berg@intel.com> | 2010-08-23 04:46:51 -0400 |
---|---|---|
committer | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2010-08-27 12:29:32 -0400 |
commit | e72f368be61d9835c98cd00ee1f330d28e2488ef (patch) | |
tree | 5f84437d3933928b367528e2d902d6cffb929243 /drivers/net/wireless/iwlwifi/iwl-dev.h | |
parent | 60744f62971cfa80cab36ab8c12afeae371fbe8b (diff) |
iwlagn: queue frames according to context
Frames for different contexts need to be put
on different queues, and multicast after DTIM
frames have a special queue yet which also
depends on the context, so put all this into
the context.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-dev.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-dev.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index 99b6b81be7e2..422c71e122f7 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
@@ -1111,6 +1111,11 @@ enum iwl_rxon_context_id { | |||
1111 | 1111 | ||
1112 | struct iwl_rxon_context { | 1112 | struct iwl_rxon_context { |
1113 | struct ieee80211_vif *vif; | 1113 | struct ieee80211_vif *vif; |
1114 | |||
1115 | const u8 *ac_to_fifo; | ||
1116 | const u8 *ac_to_queue; | ||
1117 | u8 mcast_queue; | ||
1118 | |||
1114 | enum iwl_rxon_context_id ctxid; | 1119 | enum iwl_rxon_context_id ctxid; |
1115 | /* | 1120 | /* |
1116 | * We declare this const so it can only be | 1121 | * We declare this const so it can only be |