* [PATCH] KVM: trace: fix trace_kvm_pml_full build error on i386
@ 2015-01-30 3:04 Kai Huang
0 siblings, 0 replies; only message in thread
From: Kai Huang @ 2015-01-30 3:04 UTC (permalink / raw)
To: pbonzini, fengguang.wu, kvm; +Cc: Kai Huang
Fix trace_kvm_pml_full build error on i386, introduced by below commit:
commit 19cf3eb32410 ("KVM: VMX: Add PML support in VMX")
In above commit trace_kvm_pml_full was only defined in CONFIG_X86_64, which
breaks build on i386. Fix it by moving trace_kvm_pml_full definition out of
CONFIG_X86_64.
Tested with Fengguang's .config, and also did sanity test on x86_64.
Signed-off-by: Kai Huang <kai.huang@linux.intel.com>
---
arch/x86/kvm/trace.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kvm/trace.h b/arch/x86/kvm/trace.h
index a139977..7c7bc8b 100644
--- a/arch/x86/kvm/trace.h
+++ b/arch/x86/kvm/trace.h
@@ -846,6 +846,8 @@ TRACE_EVENT(kvm_track_tsc,
__print_symbolic(__entry->host_clock, host_clocks))
);
+#endif /* CONFIG_X86_64 */
+
/*
* Tracepoint for PML full VMEXIT.
*/
@@ -864,8 +866,6 @@ TRACE_EVENT(kvm_pml_full,
TP_printk("vcpu %d: PML full", __entry->vcpu_id)
);
-#endif /* CONFIG_X86_64 */
-
TRACE_EVENT(kvm_ple_window,
TP_PROTO(bool grow, unsigned int vcpu_id, int new, int old),
TP_ARGS(grow, vcpu_id, new, old),
--
2.1.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-01-30 3:13 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-30 3:04 [PATCH] KVM: trace: fix trace_kvm_pml_full build error on i386 Kai Huang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox