diff options
author | Juuso Oikarinen <juuso.oikarinen@nokia.com> | 2010-04-27 05:47:40 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-04-27 16:09:22 -0400 |
commit | 195e294d21e88af879da4f88db2ceeb4ec28a755 (patch) | |
tree | 22a75db60cc8743888054460db85eb9a76b0cecb /net/mac80211/cfg.c | |
parent | 3a37495268ab45507b4cab9d4cb18c5496ab7a10 (diff) |
mac80211: Determine dynamic PS timeout based on ps-qos network latency
Determine the dynamic PS timeout based on the configured ps-qos network
latency. For backwards wext compatibility, allow the dynamic PS timeout
configured by the cfg80211 to overrule the automatically determined value.
Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r-- | net/mac80211/cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index e13fb3a62239..b575a5066219 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c | |||
@@ -1404,11 +1404,11 @@ static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev, | |||
1404 | return -EOPNOTSUPP; | 1404 | return -EOPNOTSUPP; |
1405 | 1405 | ||
1406 | if (enabled == sdata->u.mgd.powersave && | 1406 | if (enabled == sdata->u.mgd.powersave && |
1407 | timeout == conf->dynamic_ps_timeout) | 1407 | timeout == conf->dynamic_ps_forced_timeout) |
1408 | return 0; | 1408 | return 0; |
1409 | 1409 | ||
1410 | sdata->u.mgd.powersave = enabled; | 1410 | sdata->u.mgd.powersave = enabled; |
1411 | conf->dynamic_ps_timeout = timeout; | 1411 | conf->dynamic_ps_forced_timeout = timeout; |
1412 | 1412 | ||
1413 | /* no change, but if automatic follow powersave */ | 1413 | /* no change, but if automatic follow powersave */ |
1414 | mutex_lock(&sdata->u.mgd.mtx); | 1414 | mutex_lock(&sdata->u.mgd.mtx); |