diff options
author | Satheesh Rajendran <sathnaga@linux.vnet.ibm.com> | 2018-11-08 10:47:56 +0530 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-11-14 14:32:47 +1100 |
commit | 437ccdc8ce629470babdda1a7086e2f477048cbd (patch) | |
tree | 4c76bb3e3084f079b6f2af77db0c7cdebf3f477a /arch/powerpc/mm/numa.c | |
parent | 2c7645b0f7d1014f2636393de7906c6bfd25939f (diff) | |
download | linux-stable-437ccdc8ce629470babdda1a7086e2f477048cbd.tar.gz linux-stable-437ccdc8ce629470babdda1a7086e2f477048cbd.tar.bz2 linux-stable-437ccdc8ce629470babdda1a7086e2f477048cbd.zip |
powerpc/numa: Suppress "VPHN is not supported" messages
When VPHN function is not supported and during cpu hotplug event,
kernel prints message 'VPHN function not supported. Disabling
polling...'. Currently it prints on every hotplug event, it floods
dmesg when a KVM guest tries to hotplug huge number of vcpus, let's
just print once and suppress further kernel prints.
Signed-off-by: Satheesh Rajendran <sathnaga@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/mm/numa.c')
-rw-r--r-- | arch/powerpc/mm/numa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c index 3a048e98a132..ce28ae5ca080 100644 --- a/arch/powerpc/mm/numa.c +++ b/arch/powerpc/mm/numa.c @@ -1178,7 +1178,7 @@ static long vphn_get_associativity(unsigned long cpu, switch (rc) { case H_FUNCTION: - printk(KERN_INFO + printk_once(KERN_INFO "VPHN is not supported. Disabling polling...\n"); stop_topology_update(); break; |