summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/mvm/utils.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2013-11-13 17:16:19 +0100
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>2014-02-03 22:23:34 +0200
commite03f9bef2f9de4295df91a235c6b521dd64ef655 (patch)
treea82e6dc44dbdff304389a546355489de71f82c34 /drivers/net/wireless/iwlwifi/mvm/utils.c
parenta21d7bcbf4c65bb7f79e16287d41040e4c7f5596 (diff)
downloadop-kernel-dev-e03f9bef2f9de4295df91a235c6b521dd64ef655.zip
op-kernel-dev-e03f9bef2f9de4295df91a235c6b521dd64ef655.tar.gz
iwlwifi: mvm: disable powersave in low-latency
While an interface is in low-latency mode, for now powersave should be disabled for it, so take low-latency into account in the powersave code and force powersave recalculation when low-latency mode changes. Signed-off-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.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/utils.c b/drivers/net/wireless/iwlwifi/mvm/utils.c
index e2cc876..790da1b 100644
--- a/drivers/net/wireless/iwlwifi/mvm/utils.c
+++ b/drivers/net/wireless/iwlwifi/mvm/utils.c
@@ -541,10 +541,14 @@ int iwl_mvm_update_low_latency(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
bool value)
{
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
+ int res;
lockdep_assert_held(&mvm->mutex);
mvmvif->low_latency = value;
- return iwl_mvm_update_quotas(mvm, NULL);
+ res = iwl_mvm_update_quotas(mvm, NULL);
+ if (res)
+ return res;
+ return iwl_mvm_power_update_mode(mvm, vif);
}
OpenPOWER on IntegriCloud