Commit 6e72cc57 authored by Christoffer Dall's avatar Christoffer Dall

ARM: KVM: Simplify tracepoint text

The tracepoint for kvm_guest_fault was extremely long, make it a
slightly bit shorter.

Cc: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Acked-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
Signed-off-by: default avatarChristoffer Dall <christoffer.dall@linaro.org>
parent 0963e5d0
...@@ -59,10 +59,9 @@ TRACE_EVENT(kvm_guest_fault, ...@@ -59,10 +59,9 @@ TRACE_EVENT(kvm_guest_fault,
__entry->ipa = ipa; __entry->ipa = ipa;
), ),
TP_printk("guest fault at PC %#08lx (hxfar %#08lx, " TP_printk("ipa %#llx, hsr %#08lx, hxfar %#08lx, pc %#08lx",
"ipa %#16llx, hsr %#08lx", __entry->ipa, __entry->hsr,
__entry->vcpu_pc, __entry->hxfar, __entry->hxfar, __entry->vcpu_pc)
__entry->ipa, __entry->hsr)
); );
TRACE_EVENT(kvm_irq_line, TRACE_EVENT(kvm_irq_line,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment