Commit 21692d1 (Beautify debug output) broke the powerpc build because
it changed the signature for kvm__dump_mem() but didn't update all callers.

Signed-off-by: Michael Ellerman <mich...@ellerman.id.au>
---
 tools/kvm/powerpc/kvm-cpu.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/kvm/powerpc/kvm-cpu.c b/tools/kvm/powerpc/kvm-cpu.c
index 8fce121..8f825bd 100644
--- a/tools/kvm/powerpc/kvm-cpu.c
+++ b/tools/kvm/powerpc/kvm-cpu.c
@@ -281,7 +281,7 @@ void kvm_cpu__show_code(struct kvm_cpu *vcpu)
        dprintf(debug_fd, "\n Stack:\n");
        dprintf(debug_fd,   " ------\n");
        /* Only works in real mode: */
-       kvm__dump_mem(vcpu->kvm, vcpu->regs.gpr[1], 32);
+       kvm__dump_mem(vcpu->kvm, vcpu->regs.gpr[1], 32, debug_fd);
 }
 
 void kvm_cpu__show_page_tables(struct kvm_cpu *vcpu)
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to