diff options
author | Thomas Huth <thuth@redhat.com> | 2017-02-17 00:07:12 +0300 |
---|---|---|
committer | Paul Mackerras <paulus@ozlabs.org> | 2017-02-17 14:05:56 +0300 |
commit | 3a4f17608162bbbdcdd9680789b1bc61017cefa3 (patch) | |
tree | 2e82a67db65ba5af46434c17c1e52be088b6cc8f /arch/powerpc | |
parent | 4da934dc6515afaa1db4e02548803de0cd279734 (diff) | |
download | linux-3a4f17608162bbbdcdd9680789b1bc61017cefa3.tar.xz |
KVM: PPC: Book3S HV: Turn "KVM guest htab" message into a debug message
The average user likely does not know what a "htab" or "LPID" is,
and it's annoying that these messages are quickly filling the dmesg
log when you're doing boot cycle tests, so let's turn it into a debug
message instead.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kvm/book3s_64_mmu_hv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kvm/book3s_64_mmu_hv.c b/arch/powerpc/kvm/book3s_64_mmu_hv.c index 72ccac26e464..b68b342dd01f 100644 --- a/arch/powerpc/kvm/book3s_64_mmu_hv.c +++ b/arch/powerpc/kvm/book3s_64_mmu_hv.c @@ -127,8 +127,8 @@ void kvmppc_set_hpt(struct kvm *kvm, struct kvm_hpt_info *info) kvm->arch.hpt = *info; kvm->arch.sdr1 = __pa(info->virt) | (info->order - 18); - pr_info("KVM guest htab at %lx (order %ld), LPID %x\n", - info->virt, (long)info->order, kvm->arch.lpid); + pr_debug("KVM guest htab at %lx (order %ld), LPID %x\n", + info->virt, (long)info->order, kvm->arch.lpid); } long kvmppc_alloc_reset_hpt(struct kvm *kvm, int order) |