aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/sysdev/xive
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2017-06-24 14:57:27 -0500
committerMichael Ellerman <mpe@ellerman.id.au>2017-06-28 13:08:08 +1000
commit89d8bb163868178d5b35d1bc1237e67306940cce (patch)
treeaead0e95df49cbf1529361603d2fc217fe3c8bc7 /arch/powerpc/sysdev/xive
parentpowerpc/64s: Invalidate ERAT on powersave wakeup for POWER9 (diff)
downloadlinux-dev-89d8bb163868178d5b35d1bc1237e67306940cce.tar.xz
linux-dev-89d8bb163868178d5b35d1bc1237e67306940cce.zip
powerpc/xive: Silence message about VP block allocation
There is no reason for that message to be pr_info(), it will be printed every time we start a KVM guest. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/sysdev/xive')
-rw-r--r--arch/powerpc/sysdev/xive/native.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/sysdev/xive/native.c b/arch/powerpc/sysdev/xive/native.c
index ab9ecce61ee5..0f95476b01f6 100644
--- a/arch/powerpc/sysdev/xive/native.c
+++ b/arch/powerpc/sysdev/xive/native.c
@@ -633,8 +633,8 @@ u32 xive_native_alloc_vp_block(u32 max_vcpus)
if (max_vcpus > (1 << order))
order++;
- pr_info("VP block alloc, for max VCPUs %d use order %d\n",
- max_vcpus, order);
+ pr_debug("VP block alloc, for max VCPUs %d use order %d\n",
+ max_vcpus, order);
for (;;) {
rc = opal_xive_alloc_vp_block(order);