From: Borislav Petkov <bp@alien8.de>
To: chenyu <yu.chen.surf@gmail.com>
Cc: lkml <linux-kernel@vger.kernel.org>,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Thomas Renninger <trenn@suse.com>,
Kan Liang <kan.liang@intel.com>,
"Peter Zijlstra (Intel)" <peterz@infradead.org>,
"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
Len Brown <len.brown@intel.com>,
Linux PM list <linux-pm@vger.kernel.org>
Subject: Re: [RFC PATCH] x86: Move away from /dev/cpu/*/msr
Date: Wed, 15 Jun 2016 16:00:28 +0200 [thread overview]
Message-ID: <20160615140028.GD32588@pd.tnic> (raw)
In-Reply-To: <20160615103622.GA19822@pd.tnic>
On Wed, Jun 15, 2016 at 12:36:22PM +0200, Borislav Petkov wrote:
> Ah, yes, good point. Will change.
Ok, got a bit more involved - I also need to disable preemption around
smp_call_function_single(). Here's what I have now. It seems to work
too.
static ssize_t
energy_policy_pref_hint_show(struct device *dev, struct device_attribute *attr,
char *buf)
{
u64 epb;
preempt_disable();
if (rdmsrl_on_cpu(dev->id, MSR_IA32_ENERGY_PERF_BIAS, &epb))
epb = -1;
preempt_enable();
return sprintf(buf, "%d\n", (unsigned int)(epb & 0xFULL));
}
static ssize_t
energy_policy_pref_hint_store(struct device *dev, struct device_attribute *attr,
const char *buf, size_t count)
{
u32 val;
u64 epb;
if (kstrtou32(buf, 10, &val) < 0)
return -EINVAL;
if (val > 15)
return -EINVAL;
preempt_disable();
if (rdmsrl_on_cpu(dev->id, MSR_IA32_ENERGY_PERF_BIAS, &epb)) {
count = -EINVAL;
goto out;
}
if ((epb & 0xf) == val)
goto out;
if (wrmsrl_on_cpu(dev->id, MSR_IA32_ENERGY_PERF_BIAS, (epb & ~0xFULL) | val))
count = -EINVAL;
out:
preempt_enable();
return count;
}
--
Regards/Gruss,
Boris.
ECO tip #101: Trim your mails when you reply.
next prev parent reply other threads:[~2016-06-15 14:00 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-15 10:00 [RFC PATCH] x86: Move away from /dev/cpu/*/msr Borislav Petkov
2016-06-15 10:22 ` chenyu
2016-06-15 10:36 ` Borislav Petkov
2016-06-15 14:00 ` Borislav Petkov [this message]
2016-06-15 16:41 ` Len Brown
2016-06-15 16:56 ` Borislav Petkov
2016-06-15 17:21 ` Len Brown
2016-06-15 17:39 ` Borislav Petkov
2016-06-15 17:42 ` Len Brown
2016-06-15 17:52 ` Borislav Petkov
2016-06-20 21:12 ` Andi Kleen
2016-06-20 21:12 ` Andi Kleen
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=20160615140028.GD32588@pd.tnic \
--to=bp@alien8.de \
--cc=gregkh@linuxfoundation.org \
--cc=hpa@zytor.com \
--cc=kan.liang@intel.com \
--cc=len.brown@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=rafael.j.wysocki@intel.com \
--cc=tglx@linutronix.de \
--cc=trenn@suse.com \
--cc=yu.chen.surf@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.