aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorShaibal Dutta <shaibal.dutta@broadcom.com>2014-01-30 18:08:30 -0500
committerJohannes Berg <johannes.berg@intel.com>2014-02-04 15:58:15 -0500
commit845f3351b15a4cd8c6e47255c0dbfac03c6aceda (patch)
treefdf364d2eb5f564aec97154a9c1cb7e9ffbef915 /net
parentb4ba544c8c1349afd44e10aebec03c90e9b71d98 (diff)
net: wireless: move regulatory timeout work to power efficient workqueue
For better use of CPU idle time, allow the scheduler to select the CPU on which the timeout work of regulatory settings would be executed. This extends CPU idle residency time and saves power. This functionality is enabled when CONFIG_WQ_POWER_EFFICIENT is selected. Cc: "John W. Linville" <linville@tuxdriver.com> Cc: "David S. Miller" <davem@davemloft.net> Signed-off-by: Shaibal Dutta <shaibal.dutta@broadcom.com> [zoran.markovic@linaro.org: Rebased to latest kernel. Added commit message.] Signed-off-by: Zoran Markovic <zoran.markovic@linaro.org> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net')
-rw-r--r--net/wireless/reg.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/net/wireless/reg.c b/net/wireless/reg.c
index 8b47a9d02447..27807bf0cdfc 100644
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -1701,7 +1701,8 @@ static void reg_process_hint(struct regulatory_request *reg_request)
1701 if (treatment == REG_REQ_OK || 1701 if (treatment == REG_REQ_OK ||
1702 treatment == REG_REQ_ALREADY_SET) 1702 treatment == REG_REQ_ALREADY_SET)
1703 return; 1703 return;
1704 schedule_delayed_work(&reg_timeout, msecs_to_jiffies(3142)); 1704 queue_delayed_work(system_power_efficient_wq,
1705 &reg_timeout, msecs_to_jiffies(3142));
1705 return; 1706 return;
1706 case NL80211_REGDOM_SET_BY_DRIVER: 1707 case NL80211_REGDOM_SET_BY_DRIVER:
1707 if (!wiphy) 1708 if (!wiphy)
@@ -2301,7 +2302,8 @@ static int reg_set_rd_driver(const struct ieee80211_regdomain *rd,
2301 2302
2302 request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx); 2303 request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx);
2303 if (!request_wiphy) { 2304 if (!request_wiphy) {
2304 schedule_delayed_work(&reg_timeout, 0); 2305 queue_delayed_work(system_power_efficient_wq,
2306 &reg_timeout, 0);
2305 return -ENODEV; 2307 return -ENODEV;
2306 } 2308 }
2307 2309
@@ -2361,7 +2363,8 @@ static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd,
2361 2363
2362 request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx); 2364 request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx);
2363 if (!request_wiphy) { 2365 if (!request_wiphy) {
2364 schedule_delayed_work(&reg_timeout, 0); 2366 queue_delayed_work(system_power_efficient_wq,
2367 &reg_timeout, 0);
2365 return -ENODEV; 2368 return -ENODEV;
2366 } 2369 }
2367 2370