[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20170120105428.GA1804@mai>
Date: Fri, 20 Jan 2017 11:54:28 +0100
From: Daniel Lezcano <daniel.lezcano@...aro.org>
To: "Rafael J. Wysocki" <rafael@...nel.org>
Cc: Alex Shi <alex.shi@...aro.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
"Rafael J . Wysocki" <rafael.j.wysocki@...el.com>,
Vincent Guittot <vincent.guittot@...aro.org>,
Linux PM <linux-pm@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Ulf Hansson <ulf.hansson@...aro.org>,
Rasmus Villemoes <linux@...musvillemoes.dk>,
Arjan van de Ven <arjan@...ux.intel.com>,
Rik van Riel <riel@...hat.com>
Subject: Re: [PATCH 3/3] cpuidle/menu: add per cpu pm_qos_resume_latency
consideration
On Thu, Jan 19, 2017 at 10:43:23PM +0100, Rafael J. Wysocki wrote:
[ ... ]
> > This function is called from the notifier callback:
> >
> > static int cpuidle_latency_notify(struct notifier_block *b,
> > unsigned long l, void *v)
> > {
> > - wake_up_all_idle_cpus();
> > + struct cpuidle_device *dev;
> > + struct cpuidle_driver *drv;
> > +
> > + cpuidle_pause_and_lock();
> > + for_each_possible_cpu(cpu) {
> > + dev = &per_cpu(cpuidle_dev, cpu);
> > + drv = = cpuidle_get_cpu_driver(dev);
> > + cpuidle_set_latency(drv, dev, l)
> > + }
> > + cpuidle_resume_and_unlock();
> > +
> > return NOTIFY_OK;
> > }
>
> The above may be problematic if the constraints change relatively
> often. It is global and it will affect all of the CPUs in the system
> every time and now think about systems with hundreds of them.
Yeah, that could be problematic. The code snippet gives the general idea but it
could be changed by for example by a flag telling the cpus when they enter idle
to update their state_count. Or something like that.
But if you think the patchset is fine, it is ok, we can improve things afterwards.
-- Daniel
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
Powered by blists - more mailing lists