Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 12f67556 authored by Jerone Young's avatar Jerone Young Committed by Avi Kivity
Browse files

KVM: ppc: enable KVM_TRACE building for powerpc



This patch enables KVM_TRACE to build for PowerPC arch. This means just
adding sections to Kconfig and Makefile.

Signed-off-by: default avatarJerone Young <jyoung5@us.ibm.com>
Signed-off-by: default avatarChristian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent 3f7f95c6
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -37,6 +37,17 @@ config KVM_BOOKE_HOST
	  Provides host support for KVM on Book E PowerPC processors. Currently
	  this works on 440 processors only.

config KVM_TRACE
	bool "KVM trace support"
	depends on KVM && MARKERS && SYSFS
	select RELAY
	select DEBUG_FS
	default n
	---help---
	  This option allows reading a trace of kvm-related events through
	  relayfs.  Note the ABI is not considered stable and will be
	  modified in future updates.

source drivers/virtio/Kconfig

endif # VIRTUALIZATION
+4 −2
Original line number Diff line number Diff line
@@ -4,9 +4,11 @@

EXTRA_CFLAGS += -Ivirt/kvm -Iarch/powerpc/kvm

common-objs = $(addprefix ../../../virt/kvm/, kvm_main.o coalesced_mmio.o)
common-objs-y = $(addprefix ../../../virt/kvm/, kvm_main.o coalesced_mmio.o)

kvm-objs := $(common-objs) powerpc.o emulate.o booke_guest.o
common-objs-$(CONFIG_KVM_TRACE)  += $(addprefix ../../../virt/kvm/, kvm_trace.o)

kvm-objs := $(common-objs-y) powerpc.o emulate.o booke_guest.o
obj-$(CONFIG_KVM) += kvm.o

AFLAGS_booke_interrupts.o := -I$(obj)