Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7fdcb60 authored by James Hogan's avatar James Hogan Committed by Ralf Baechle
Browse files

MIPS: KVM: Add missing newline to kvm_err()



Add missing newline to end of kvm_err string when guest PMAP couldn't be
allocated.

Signed-off-by: default avatarJames Hogan <james.hogan@imgtec.com>
Cc: Gleb Natapov <gleb@kernel.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: kvm@vger.kernel.org
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/11896/


Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent b2c59635
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -229,7 +229,7 @@ void kvm_arch_commit_memory_region(struct kvm *kvm,
			    kzalloc(npages * sizeof(unsigned long), GFP_KERNEL);

			if (!kvm->arch.guest_pmap) {
				kvm_err("Failed to allocate guest PMAP");
				kvm_err("Failed to allocate guest PMAP\n");
				return;
			}