kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] kvm/mips: Standardize kvm exit reason field
@ 2019-12-12  2:45 Gavin Shan
  0 siblings, 0 replies; only message in thread
From: Gavin Shan @ 2019-12-12  2:45 UTC (permalink / raw)
  To: kvm; +Cc: pbonzini, rkrcmar, paulus, maz, jhogan, drjones, vkuznets, gshan

This standardizes kvm exit reason field name by replacing "reason"
with "exit_reason".

Signed-off-by: Gavin Shan <gshan@redhat.com>
---
 arch/mips/kvm/trace.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/mips/kvm/trace.h b/arch/mips/kvm/trace.h
index a8c7fd7bf6d2..acbbe3fff9de 100644
--- a/arch/mips/kvm/trace.h
+++ b/arch/mips/kvm/trace.h
@@ -113,20 +113,20 @@ DEFINE_EVENT(kvm_transition, kvm_out,
 	{ KVM_TRACE_EXIT_GPA,		"GPA" }
 
 TRACE_EVENT(kvm_exit,
-	    TP_PROTO(struct kvm_vcpu *vcpu, unsigned int reason),
-	    TP_ARGS(vcpu, reason),
+	    TP_PROTO(struct kvm_vcpu *vcpu, unsigned int exit_reason),
+	    TP_ARGS(vcpu, exit_reason),
 	    TP_STRUCT__entry(
 			__field(unsigned long, pc)
-			__field(unsigned int, reason)
+			__field(unsigned int, exit_reason)
 	    ),
 
 	    TP_fast_assign(
 			__entry->pc = vcpu->arch.pc;
-			__entry->reason = reason;
+			__entry->exit_reason = exit_reason;
 	    ),
 
 	    TP_printk("[%s]PC: 0x%08lx",
-		      __print_symbolic(__entry->reason,
+		      __print_symbolic(__entry->exit_reason,
 				       kvm_trace_symbol_exit_types),
 		      __entry->pc)
 );
-- 
2.23.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-12-12  2:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-12  2:45 [PATCH 1/3] kvm/mips: Standardize kvm exit reason field Gavin Shan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).