* [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue @ 2014-01-30 23:08 Zoran Markovic 2014-01-31 9:21 ` Johannes Berg 2014-01-31 13:38 ` Johannes Berg 0 siblings, 2 replies; 7+ messages in thread From: Zoran Markovic @ 2014-01-30 23:08 UTC (permalink / raw) To: linux-kernel-u79uwXL29TY76Z2rM5mHXA Cc: linux-wireless-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA, Shaibal Dutta, Johannes Berg, John W. Linville, David S. Miller, Zoran Markovic From: Shaibal Dutta <shaibal.dutta-dY08KVG/lbpWk0Htik3J/w@public.gmane.org> 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: Johannes Berg <johannes-cdvu00un1VgdHxzADdlk8Q@public.gmane.org> Cc: "John W. Linville" <linville-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org> Cc: "David S. Miller" <davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org> Signed-off-by: Shaibal Dutta <shaibal.dutta-dY08KVG/lbpWk0Htik3J/w@public.gmane.org> [zoran.markovic-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org: Rebased to latest kernel. Added commit message.] Signed-off-by: Zoran Markovic <zoran.markovic-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> --- net/wireless/reg.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/net/wireless/reg.c b/net/wireless/reg.c index 9b897fc..6e21011 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c @@ -1703,7 +1703,8 @@ static void reg_process_hint(struct regulatory_request *reg_request) if (treatment == REG_REQ_OK || treatment == REG_REQ_ALREADY_SET) return; - schedule_delayed_work(®_timeout, msecs_to_jiffies(3142)); + queue_delayed_work(system_power_efficient_wq, + ®_timeout, msecs_to_jiffies(3142)); return; case NL80211_REGDOM_SET_BY_DRIVER: treatment = reg_process_hint_driver(wiphy, reg_request); @@ -2294,7 +2295,8 @@ static int reg_set_rd_driver(const struct ieee80211_regdomain *rd, request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx); if (!request_wiphy) { - schedule_delayed_work(®_timeout, 0); + queue_delayed_work(system_power_efficient_wq, + ®_timeout, 0); return -ENODEV; } @@ -2354,7 +2356,8 @@ static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd, request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx); if (!request_wiphy) { - schedule_delayed_work(®_timeout, 0); + queue_delayed_work(system_power_efficient_wq, + ®_timeout, 0); return -ENODEV; } -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue 2014-01-30 23:08 [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue Zoran Markovic @ 2014-01-31 9:21 ` Johannes Berg [not found] ` <1391160084.4141.1.camel-8Nb76shvtaUJvtFkdXX2HixXY32XiHfO@public.gmane.org> 2014-01-31 13:38 ` Johannes Berg 1 sibling, 1 reply; 7+ messages in thread From: Johannes Berg @ 2014-01-31 9:21 UTC (permalink / raw) To: Zoran Markovic, tj Cc: linux-kernel, linux-wireless, netdev, Shaibal Dutta, John W. Linville, David S. Miller On Thu, 2014-01-30 at 15:08 -0800, Zoran Markovic wrote: > From: Shaibal Dutta <shaibal.dutta@broadcom.com> > > 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. > - schedule_delayed_work(®_timeout, msecs_to_jiffies(3142)); > + queue_delayed_work(system_power_efficient_wq, > + ®_timeout, msecs_to_jiffies(3142)); I'm not sure if this is part of a larger patchset actually adding that "system_power_efficient_wq", but maybe it'd be better to expose a function as an API rather than the wq struct? Something like scheduled_delayed_work_pwr_efficient(...)? ? johannes ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <1391160084.4141.1.camel-8Nb76shvtaUJvtFkdXX2HixXY32XiHfO@public.gmane.org>]
* Re: [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue [not found] ` <1391160084.4141.1.camel-8Nb76shvtaUJvtFkdXX2HixXY32XiHfO@public.gmane.org> @ 2014-01-31 9:35 ` Tejun Heo 2014-01-31 9:42 ` Johannes Berg 2014-02-05 9:17 ` Stanislaw Gruszka 0 siblings, 2 replies; 7+ messages in thread From: Tejun Heo @ 2014-01-31 9:35 UTC (permalink / raw) To: Johannes Berg Cc: Zoran Markovic, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-wireless-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA, Shaibal Dutta, John W. Linville, David S. Miller Hello, On Fri, Jan 31, 2014 at 10:21:24AM +0100, Johannes Berg wrote: > I'm not sure if this is part of a larger patchset actually adding that > "system_power_efficient_wq", but maybe it'd be better to expose a > function as an API rather than the wq struct? > > Something like > > scheduled_delayed_work_pwr_efficient(...)? While there are some benefits to using dedicated functions for specific workqueues, I don't think it brings enough benefits to justify adding dedicated API and am unlikely to add new ones. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue 2014-01-31 9:35 ` Tejun Heo @ 2014-01-31 9:42 ` Johannes Berg 2014-02-05 9:17 ` Stanislaw Gruszka 1 sibling, 0 replies; 7+ messages in thread From: Johannes Berg @ 2014-01-31 9:42 UTC (permalink / raw) To: Tejun Heo Cc: Zoran Markovic, linux-kernel, linux-wireless, netdev, Shaibal Dutta, John W. Linville, David S. Miller On Fri, 2014-01-31 at 04:35 -0500, Tejun Heo wrote: > Hello, > > On Fri, Jan 31, 2014 at 10:21:24AM +0100, Johannes Berg wrote: > > I'm not sure if this is part of a larger patchset actually adding that > > "system_power_efficient_wq", but maybe it'd be better to expose a > > function as an API rather than the wq struct? > > > > Something like > > > > scheduled_delayed_work_pwr_efficient(...)? > > While there are some benefits to using dedicated functions for > specific workqueues, I don't think it brings enough benefits to > justify adding dedicated API and am unlikely to add new ones. Fair enough, I guess I'll take those patches in. johannes ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue 2014-01-31 9:35 ` Tejun Heo 2014-01-31 9:42 ` Johannes Berg @ 2014-02-05 9:17 ` Stanislaw Gruszka [not found] ` <20140205091742.GA1978-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> 1 sibling, 1 reply; 7+ messages in thread From: Stanislaw Gruszka @ 2014-02-05 9:17 UTC (permalink / raw) To: Tejun Heo Cc: Johannes Berg, Zoran Markovic, linux-kernel, linux-wireless, netdev, Shaibal Dutta, John W. Linville, David S. Miller Hi On Fri, Jan 31, 2014 at 04:35:31AM -0500, Tejun Heo wrote: > On Fri, Jan 31, 2014 at 10:21:24AM +0100, Johannes Berg wrote: > > I'm not sure if this is part of a larger patchset actually adding that > > "system_power_efficient_wq", but maybe it'd be better to expose a > > function as an API rather than the wq struct? > > > > Something like > > > > scheduled_delayed_work_pwr_efficient(...)? > > While there are some benefits to using dedicated functions for > specific workqueues, I don't think it brings enough benefits to > justify adding dedicated API and am unlikely to add new ones. What are selection criteria when choosing between system_wq or system_power_efficient_wq on drivers ? IOW if I would be writing a new driver which workqueue should I use and when ? I think that should be driver independent, at least for most of drivers. If system have to run in low power mode, system_power_efficient_wq should be chosen automatically by schedule_work(), otherwise when high performance is more important schedule_work() should use system_wq. Stanislaw ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <20140205091742.GA1978-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>]
* Re: [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue [not found] ` <20140205091742.GA1978-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> @ 2014-02-05 9:25 ` Tejun Heo 0 siblings, 0 replies; 7+ messages in thread From: Tejun Heo @ 2014-02-05 9:25 UTC (permalink / raw) To: Stanislaw Gruszka Cc: Johannes Berg, Zoran Markovic, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-wireless-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA, Shaibal Dutta, John W. Linville, David S. Miller Hello, On Wed, Feb 05, 2014 at 10:17:42AM +0100, Stanislaw Gruszka wrote: > What are selection criteria when choosing between system_wq or > system_power_efficient_wq on drivers ? IOW if I would be writing > a new driver which workqueue should I use and when ? Yeah, it's a bit ad-hoc at the moment. The original intention was just marking the ones which can be shown to have noticeable power impacts which weren't expected to be too many but we may now have an self-feeding feedback loop growing new usages, likely somewhat overzealously and be better off making things more generic. > I think that should be driver independent, at least for most of drivers. > If system have to run in low power mode, system_power_efficient_wq > should be chosen automatically by schedule_work(), otherwise when high > performance is more important schedule_work() should use system_wq. The problem there is that system_wq has traditionally guaranteed per-cpu execution. It can't automatically be switched to unbound behavior. The best long term solution would be isolating the users which depend on per-cpu behavior and mark them specially rather than the other way around that we're doing now, making per-cpu guarantee the special case rather than the norm. That's gonna take a lot of auditing tho. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue 2014-01-30 23:08 [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue Zoran Markovic 2014-01-31 9:21 ` Johannes Berg @ 2014-01-31 13:38 ` Johannes Berg 1 sibling, 0 replies; 7+ messages in thread From: Johannes Berg @ 2014-01-31 13:38 UTC (permalink / raw) To: Zoran Markovic Cc: linux-kernel, linux-wireless, netdev, Shaibal Dutta, John W. Linville, David S. Miller On Thu, 2014-01-30 at 15:08 -0800, Zoran Markovic wrote: > From: Shaibal Dutta <shaibal.dutta@broadcom.com> > > 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. Applied. johannes ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-02-05 9:25 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-01-30 23:08 [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue Zoran Markovic 2014-01-31 9:21 ` Johannes Berg [not found] ` <1391160084.4141.1.camel-8Nb76shvtaUJvtFkdXX2HixXY32XiHfO@public.gmane.org> 2014-01-31 9:35 ` Tejun Heo 2014-01-31 9:42 ` Johannes Berg 2014-02-05 9:17 ` Stanislaw Gruszka [not found] ` <20140205091742.GA1978-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> 2014-02-05 9:25 ` Tejun Heo 2014-01-31 13:38 ` Johannes Berg
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).