From: Benjamin Herrenschmidt Date: Sat, 24 Jun 2017 19:57:27 +0000 (-0500) Subject: powerpc/xive: Silence message about VP block allocation X-Git-Tag: v4.13-rc1~111^2~58 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=89d8bb163868178d5b35d1bc1237e67306940cce;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Michael Ellerman --- diff --git a/arch/powerpc/sysdev/xive/native.c b/arch/powerpc/sysdev/xive/native.c index ab9ecce61ee5c..0f95476b01f6f 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);