From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
To: Viresh Kumar <viresh.kumar@linaro.org>
Cc: linux-kernel@vger.kernel.org, rt@linutronix.de,
tglx@linutronix.de, "Rafael J. Wysocki" <rjw@rjwysocki.net>,
linux-pm@vger.kernel.org
Subject: Re: [PATCH 01/22] cpufreq/acpi-cpufreq: Convert to hotplug state machine
Date: Mon, 28 Nov 2016 10:49:08 +0100 [thread overview]
Message-ID: <20161128094908.o6f4itwnj4gssv46@linutronix.de> (raw)
In-Reply-To: <20161128051520.GA9104@vireshk-i7>
On 2016-11-28 10:45:20 [+0530], Viresh Kumar wrote:
> > diff --git a/drivers/cpufreq/acpi-cpufreq.c b/drivers/cpufreq/acpi-cpufreq.c
> > index 297e9128fe9f..2c29cbaca7b5 100644
> > --- a/drivers/cpufreq/acpi-cpufreq.c
> > +++ b/drivers/cpufreq/acpi-cpufreq.c
> > @@ -922,37 +909,47 @@ static struct cpufreq_driver acpi_cpufreq_driver = {
> > .attr = acpi_cpufreq_attr,
> > };
> >
> > +static enum cpuhp_state acpi_cpufreq_online;
> > +
> > static void __init acpi_cpufreq_boost_init(void)
> > {
> > - if (boot_cpu_has(X86_FEATURE_CPB) || boot_cpu_has(X86_FEATURE_IDA)) {
> > - msrs = msrs_alloc();
> > + int ret;
> >
> > - if (!msrs)
> > - return;
> > + if (!(boot_cpu_has(X86_FEATURE_CPB) || boot_cpu_has(X86_FEATURE_IDA)))
> > + return;
> >
> > - acpi_cpufreq_driver.set_boost = set_boost;
> > - acpi_cpufreq_driver.boost_enabled = boost_state(0);
> > + msrs = msrs_alloc();
> >
> > - cpu_notifier_register_begin();
> > + if (!msrs)
> > + return;
> >
> > - /* Force all MSRs to the same value */
> > - boost_set_msrs(acpi_cpufreq_driver.boost_enabled,
> > - cpu_online_mask);
>
> Why isn't this required anymore ?
Later there is cpuhp_setup_state() which invokes the online callback
(cpufreq_boost_online) which is doing this.
> > + acpi_cpufreq_driver.set_boost = set_boost;
> > + acpi_cpufreq_driver.boost_enabled = boost_state(0);
> >
> > - __register_cpu_notifier(&boost_nb);
> > -
> > - cpu_notifier_register_done();
> > + /*
> > + * This calls the online callback on all online cpu and forces all
> > + * MSRs to the same value.
> > + */
> > + ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "cpufreq/acpi:online",
> > + cpufreq_boost_online, cpufreq_boost_down_prep);
> > + if (ret < 0) {
> > + pr_err("acpi_cpufreq: failed to register hotplug callbacks\n");
> > + msrs_free(msrs);
>
> If 'msrs = NULL' is required to be done in the _exit() routine, then it should
> be done here as well. Right?
It is not required in the exit path, it is just needed here. It is gone
in the following patch anyway but I will post a fixed version.
> > + return;
> > }
> > + acpi_cpufreq_online = ret;
> > }
> >
> > static void acpi_cpufreq_boost_exit(void)
> > {
> > - if (msrs) {
> > - unregister_cpu_notifier(&boost_nb);
> > + if (!msrs)
> > + return;
> >
> > - msrs_free(msrs);
> > - msrs = NULL;
> > - }
> > + if (acpi_cpufreq_online >= 0)
> > + cpuhp_remove_state_nocalls(acpi_cpufreq_online);
> > +
> > + msrs_free(msrs);
> > + msrs = NULL;
> > }
> >
> > static int __init acpi_cpufreq_init(void)
> > --
> > 2.10.2
Sebastian
next prev parent reply other threads:[~2016-11-28 9:49 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20161126231350.10321-1-bigeasy@linutronix.de>
2016-11-26 23:13 ` [PATCH 01/22] cpufreq/acpi-cpufreq: Convert to hotplug state machine Sebastian Andrzej Siewior
2016-11-28 5:15 ` Viresh Kumar
2016-11-28 9:49 ` Sebastian Andrzej Siewior [this message]
2016-11-28 9:51 ` [PATCH 01/22 v2] " Sebastian Andrzej Siewior
2016-11-28 9:54 ` Viresh Kumar
2016-11-28 12:46 ` Rafael J. Wysocki
2016-11-26 23:13 ` [PATCH 02/22] cpufreq/acpi-cpufreq: drop rdmsr_on_cpus() usage Sebastian Andrzej Siewior
2016-11-28 9:52 ` [PATCH 02/22 v2] " Sebastian Andrzej Siewior
2016-11-28 9:54 ` Viresh Kumar
2016-11-26 23:13 ` [PATCH 03/22] idle/intel: Remove superfluous SMP fuction call Sebastian Andrzej Siewior
2016-11-26 23:13 ` [PATCH 04/22] idle/intel: Convert to hotplug state machine Sebastian Andrzej Siewior
2016-11-28 17:29 ` Thomas Gleixner
2016-11-29 9:40 ` Sebastian Andrzej Siewior
2016-11-29 9:51 ` [PATCH 04/22 v2] " Sebastian Andrzej Siewior
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=20161128094908.o6f4itwnj4gssv46@linutronix.de \
--to=bigeasy@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=rjw@rjwysocki.net \
--cc=rt@linutronix.de \
--cc=tglx@linutronix.de \
--cc=viresh.kumar@linaro.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).