aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Ostrovsky <[email protected]>2016-06-21 10:17:33 -0400
committerDavid Vrabel <[email protected]>2016-07-06 10:34:48 +0100
commit6ab9507ed96a6c0b24174d3430064a90b3dddd0a (patch)
tree394caba270b405ad9dac82521ad89d3f17643fce
parentecb23dc6f2eff0ce64dd60351a81f376f13b12cc (diff)
xen/PMU: Log VPMU initialization error at lower level
This will match how PMU errors are reported at check_hw_exists()'s msr_fail label, which is reached when VPMU initialzation fails. Signed-off-by: Boris Ostrovsky <[email protected]> Reviewed-by: Konrad Rzeszutek Wilk <[email protected]> Acked-by: Juergen Gross <[email protected]> Signed-off-by: David Vrabel <[email protected]>
-rw-r--r--arch/x86/xen/pmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/pmu.c b/arch/x86/xen/pmu.c
index 9466354d3e49..32bdc2c90297 100644
--- a/arch/x86/xen/pmu.c
+++ b/arch/x86/xen/pmu.c
@@ -547,7 +547,7 @@ void xen_pmu_init(int cpu)
return;
fail:
- pr_warn_once("Could not initialize VPMU for cpu %d, error %d\n",
+ pr_info_once("Could not initialize VPMU for cpu %d, error %d\n",
cpu, err);
free_pages((unsigned long)xenpmu_data, 0);
}