From: Viresh Kumar <viresh.kumar@linaro.org>
To: Tejun Heo <tj@kernel.org>
Cc: Amit Kucheria <amit.kucheria@linaro.org>,
davem@davemloft.net, linux-rt-users@vger.kernel.org,
linux-kernel@vger.kernel.org,
Robin Randhawa <robin.randhawa@arm.com>,
Charles Garcia-Tobin <charles.garcia-tobin@arm.com>,
Steve Bannister <Steve.Bannister@arm.com>,
Peter Zijlstra <peterz@infradead.org>,
Steven Rostedt <rostedt@goodmis.org>,
Arvind Chauhan <arvind.chauhan@arm.com>,
Patch Tracking <patches@linaro.org>,
airlied@redhat.com, mingo@redhat.com,
Jens Axboe <axboe@kernel.dk>, Liviu Dudau <Liviu.Dudau@arm.com>,
Lists linaro-kernel <linaro-kernel@lists.linaro.org>
Subject: Re: [PATCH V5 1/5] workqueues: Introduce new flag WQ_POWER_EFFICIENT for power oriented workqueues
Date: Mon, 29 Apr 2013 22:12:46 +0530 [thread overview]
Message-ID: <CAKohponFvoi9HqdzJO61i3vb6iJonAA-kDLgKp2iPDphz8qP5Q@mail.gmail.com> (raw)
In-Reply-To: <20130429161917.GB19814@mtj.dyndns.org>
On 29 April 2013 21:49, Tejun Heo <tj@kernel.org> wrote:
> On Mon, Apr 29, 2013 at 12:06:28PM +0530, Viresh Kumar wrote:
> Yeap, !WQ_UNBOUND workqueues == per-cpu workqueues.
Sigh!! You were talking about thread per cpu here... Sorry for missing
it earlier :(
>> At this time local cpu may be busy or idle (Atleast according to scheduler).
>> We don't want a idle cpu (From schedulers perspective) to be used for
>> running this work's handler due to two reasons.
>> - idle cpu may be in WFI or deeper idle states and so we can avoid waking
>> it up.
>
> I have no idea what WFI is but the physical CPU is already awake at
> that time. It can't be idle - it's running queue_work(). It could be
> running in lower freq tho, which each code piece doesn't really have
> much control over.
Stupid point. WFI: Wait for interrupt (low power mode of cpu).
>> - We will make idle cpu look busy and so other kernel stuff may be scheduled
>> on it now. But we could have kept it idle for a long time.
>
> Hmmm... yeah, about the same thing I wrote, it's not really about not
> waking up the CPU right now physically but avoiding forcing the
> scheduler scheduling a pinned task on an otherwise quiescent CPU.
> This effectively allows the scheduler to migrate such work items
> towards a CPU which the scheduler considers to be better (in power or
> whatever) leading to noticeable powersave.
Correct.
>> And what timer are you talking about? I am not talking about deffered work only,
>> but normal work too.
>
> Deferred work item == timer + work item.
Ya, i knew that :)
>> I might have wrongly phrased some part of my patch (maybe used workqueue
>> instead of work), will fix that up.
>
> I think it'd be necessary to distinguish the physical CPU being idle
> and the scheduler considers it to be idle (no task to schedule on it)
> and explain how increasing the latter can lead to powersave. As it's
> currently written, it seemingly, to me anyway, suggests that the
> proposed change somehow avoids waking up actually idle CPU, which
> isn't the case as queue_work() *always* schedules on the local CPU.
> The local CPU can't be idle by definition.
Yes you are correct. I will fix it.
next prev parent reply other threads:[~2013-04-29 16:42 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-24 11:42 [PATCH V5 0/5] Queue work on power efficient wq Viresh Kumar
2013-04-24 11:42 ` [PATCH V5 1/5] workqueues: Introduce new flag WQ_POWER_EFFICIENT for power oriented workqueues Viresh Kumar
2013-04-24 12:20 ` Amit Kucheria
2013-04-24 12:27 ` Viresh Kumar
2013-04-24 16:12 ` Tejun Heo
[not found] ` <CAP245DUGuaSQbP4026N8kgn6-NqXFJWR3zKoYud=HQ_b+v5+Xw@mail.gmail.com>
2013-04-25 3:43 ` Viresh Kumar
2013-04-25 11:13 ` Amit Kucheria
2013-04-25 11:15 ` Viresh Kumar
2013-04-26 19:11 ` Tejun Heo
2013-04-29 6:36 ` Viresh Kumar
2013-04-29 16:19 ` Tejun Heo
2013-04-29 16:42 ` Viresh Kumar [this message]
2013-05-13 8:29 ` Viresh Kumar
2013-05-14 17:55 ` Tejun Heo
2013-04-24 11:42 ` [PATCH V5 2/5] workqueue: Add system wide power_efficient workqueues Viresh Kumar
2013-05-14 17:56 ` Tejun Heo
2013-04-24 11:42 ` [PATCH V5 3/5] PHYLIB: queue work on system_power_efficient_wq Viresh Kumar
2013-04-24 11:42 ` [PATCH V5 4/5] block: queue work on power efficient wq Viresh Kumar
2013-05-14 17:57 ` Tejun Heo
2013-04-24 11:42 ` [PATCH V5 5/5] fbcon: " Viresh Kumar
2013-05-14 17:57 ` Tejun Heo
2013-05-14 17:54 ` [PATCH V5 0/5] Queue " Tejun Heo
2013-05-15 5:48 ` Viresh Kumar
2013-07-08 15:37 ` Uwe Kleine-König
2013-07-08 15:47 ` Viresh Kumar
2013-07-08 15:57 ` Uwe Kleine-König
2013-07-08 16:48 ` Viresh Kumar
2013-07-08 18:55 ` Uwe Kleine-König
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAKohponFvoi9HqdzJO61i3vb6iJonAA-kDLgKp2iPDphz8qP5Q@mail.gmail.com \
--to=viresh.kumar@linaro.org \
--cc=Liviu.Dudau@arm.com \
--cc=Steve.Bannister@arm.com \
--cc=airlied@redhat.com \
--cc=amit.kucheria@linaro.org \
--cc=arvind.chauhan@arm.com \
--cc=axboe@kernel.dk \
--cc=charles.garcia-tobin@arm.com \
--cc=davem@davemloft.net \
--cc=linaro-kernel@lists.linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rt-users@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=patches@linaro.org \
--cc=peterz@infradead.org \
--cc=robin.randhawa@arm.com \
--cc=rostedt@goodmis.org \
--cc=tj@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).