diff options
| author | James Hogan <james.hogan@imgtec.com> | 2015-12-16 18:49:39 -0500 |
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2016-01-23 21:38:48 -0500 |
| commit | f7fdcb601051883f0b4df2797d92035849424c4e (patch) | |
| tree | 524c5066979003afae0bfa85f85bde432c7e5332 | |
| parent | b2c5963577efdaef7bf2445c06e8048926c472a5 (diff) | |
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: James 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: Ralf Baechle <ralf@linux-mips.org>
| -rw-r--r-- | arch/mips/kvm/mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kvm/mips.c b/arch/mips/kvm/mips.c index 1b688faf2cf3..8bc3977576e6 100644 --- a/arch/mips/kvm/mips.c +++ b/arch/mips/kvm/mips.c | |||
| @@ -229,7 +229,7 @@ void kvm_arch_commit_memory_region(struct kvm *kvm, | |||
| 229 | kzalloc(npages * sizeof(unsigned long), GFP_KERNEL); | 229 | kzalloc(npages * sizeof(unsigned long), GFP_KERNEL); |
| 230 | 230 | ||
| 231 | if (!kvm->arch.guest_pmap) { | 231 | if (!kvm->arch.guest_pmap) { |
| 232 | kvm_err("Failed to allocate guest PMAP"); | 232 | kvm_err("Failed to allocate guest PMAP\n"); |
| 233 | return; | 233 | return; |
| 234 | } | 234 | } |
| 235 | 235 | ||
