diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2015-02-26 15:14:35 +0200 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2015-03-12 09:57:34 +0200 |
commit | 7754ae79e218bfd7782655fdebc8966c8a858358 (patch) | |
tree | 79321c057b7f5de92161f39b1d6915cf96aacca4 /drivers/net/wireless/iwlwifi/mvm/utils.c | |
parent | 70e90992e7c5dc4092869827665485a09ca777ea (diff) | |
download | lwn-7754ae79e218bfd7782655fdebc8966c8a858358.tar.gz lwn-7754ae79e218bfd7782655fdebc8966c8a858358.zip |
iwlwifi: mvm: always update the quota after association
When we associate we always need to update the quotas. This
fixes a bug for cases in which quotas weren't udapted after
association.
Reviewed-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/utils.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/utils.c b/drivers/net/wireless/iwlwifi/mvm/utils.c index 2b9de63951e6..435faee0a28e 100644 --- a/drivers/net/wireless/iwlwifi/mvm/utils.c +++ b/drivers/net/wireless/iwlwifi/mvm/utils.c @@ -857,7 +857,7 @@ int iwl_mvm_update_low_latency(struct iwl_mvm *mvm, struct ieee80211_vif *vif, mvmvif->low_latency = value; - res = iwl_mvm_update_quotas(mvm, NULL); + res = iwl_mvm_update_quotas(mvm, false, NULL); if (res) return res; |