diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2013-05-26 21:47:53 +0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-06-04 15:16:02 +0400 |
commit | 86a91ec757338edbce51de5dabd7afb0366f485c (patch) | |
tree | ab1024bca1e878eab54a199ec968f08fdb04b649 /drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h | |
parent | 497b49d2f690cdfaae5292e30ea5cd9bb469090c (diff) | |
download | linux-86a91ec757338edbce51de5dabd7afb0366f485c.tar.xz |
iwlwifi: mvm: correctly configure MCAST in AP mode
The AP mode needs to use the MCAST fifo for the MCAST
frames sent after the DTIM. This fifo needs to be
configured with the same parameters as the VOICE FIFO.
A separate SCD queue is mapped to this fifo - the cab_queue
(cab stands for Content After Beacon). This queue isn't
connected to any station, but rather to the MAC context.
This queue should (and is already) be set as the MCAST
queue - this is part of the of MAC context command.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Reviewed-by: Ilan Peer <ilan.peer@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h b/drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h index d68640ea41d4..98b1feb43d38 100644 --- a/drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h +++ b/drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h @@ -71,7 +71,13 @@ #define MAC_INDEX_MIN_DRIVER 0 #define NUM_MAC_INDEX_DRIVER MAC_INDEX_AUX -#define AC_NUM 4 /* Number of access categories */ +enum iwl_ac { + AC_BK, + AC_BE, + AC_VI, + AC_VO, + AC_NUM, +}; /** * enum iwl_mac_protection_flags - MAC context flags |