Commit 314ff527 authored by David S. Miller's avatar David S. Miller

sparc: Don't do expensive hypervisor PCR write unless necessary.

The hypervisor call is only necessary if hypervisor events are
being requested.

So if we're not tracking hypervisor events, simply do a direct
register write.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 15e3608d
...@@ -80,8 +80,11 @@ static void n2_pcr_write(u64 val) ...@@ -80,8 +80,11 @@ static void n2_pcr_write(u64 val)
{ {
unsigned long ret; unsigned long ret;
ret = sun4v_niagara2_setperf(HV_N2_PERF_SPARC_CTL, val); if (val & PCR_N2_HTRACE) {
if (ret != HV_EOK) ret = sun4v_niagara2_setperf(HV_N2_PERF_SPARC_CTL, val);
if (ret != HV_EOK)
write_pcr(val);
} else
write_pcr(val); write_pcr(val);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment