]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc/xive: Silence message about VP block allocation
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Sat, 24 Jun 2017 19:57:27 +0000 (14:57 -0500)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 28 Jun 2017 03:08:08 +0000 (13:08 +1000)
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>
arch/powerpc/sysdev/xive/native.c

index ab9ecce61ee5c22c70068408cc81097cf634b910..0f95476b01f6f7beae053a959e0d234ba5643f7f 100644 (file)
@@ -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);