diff options
author | Alexander Graf <agraf@suse.de> | 2013-04-16 17:42:19 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2013-04-26 20:27:25 +0200 |
commit | de9ba2f36368d21314860ee24893a6ffef01e548 (patch) | |
tree | 32b5a67e3c6e1b4d74f7411910acf92549cb1e4f /arch/powerpc/kvm/Makefile | |
parent | eb1e4f43e0f47f2655372c7d32c43db9711c278e (diff) | |
download | blackbird-op-linux-de9ba2f36368d21314860ee24893a6ffef01e548.tar.gz blackbird-op-linux-de9ba2f36368d21314860ee24893a6ffef01e548.zip |
KVM: PPC: Support irq routing and irqfd for in-kernel MPIC
Now that all the irq routing and irqfd pieces are generic, we can expose
real irqchip support to all of KVM's internal helpers.
This allows us to use irqfd with the in-kernel MPIC.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/kvm/Makefile')
-rw-r--r-- | arch/powerpc/kvm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kvm/Makefile b/arch/powerpc/kvm/Makefile index 4a2277a221bb..4eada0c01082 100644 --- a/arch/powerpc/kvm/Makefile +++ b/arch/powerpc/kvm/Makefile @@ -104,6 +104,7 @@ kvm-book3s_32-objs := \ kvm-objs-$(CONFIG_KVM_BOOK3S_32) := $(kvm-book3s_32-objs) kvm-objs-$(CONFIG_KVM_MPIC) += mpic.o +kvm-objs-$(CONFIG_HAVE_KVM_IRQ_ROUTING) += $(addprefix ../../../virt/kvm/, irqchip.o) kvm-objs := $(kvm-objs-m) $(kvm-objs-y) |