The arguments where shifted and printed a 64 bit integer as a 32 bit integer. Signed-off-by: Christoffer Dall <c.dall@xxxxxxxxxxxxxxxxxxxxxx> --- arch/arm/kvm/trace.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/kvm/trace.h b/arch/arm/kvm/trace.h index c3d05f4..cd52640 100644 --- a/arch/arm/kvm/trace.h +++ b/arch/arm/kvm/trace.h @@ -42,14 +42,14 @@ TRACE_EVENT(kvm_exit, TRACE_EVENT(kvm_guest_fault, TP_PROTO(unsigned long vcpu_pc, unsigned long hsr, unsigned long hxfar, - unsigned long ipa), + unsigned long long ipa), TP_ARGS(vcpu_pc, hsr, hxfar, ipa), TP_STRUCT__entry( __field( unsigned long, vcpu_pc ) __field( unsigned long, hsr ) __field( unsigned long, hxfar ) - __field( unsigned long, ipa ) + __field( unsigned long long, ipa ) ), TP_fast_assign( @@ -60,9 +60,9 @@ TRACE_EVENT(kvm_guest_fault, ), TP_printk("guest fault at PC %#08lx (hxfar %#08lx, " - "ipa %#08lx, hsr %#08lx", + "ipa %#16llx, hsr %#08lx", __entry->vcpu_pc, __entry->hxfar, - __entry->hsr, __entry->ipa) + __entry->ipa, __entry->hsr) ); TRACE_EVENT(kvm_irq_line, -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html