diff options
author | Alexander Graf <agraf@suse.de> | 2014-07-30 09:25:48 -0400 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-07-30 09:25:49 -0400 |
commit | 29577fc00ba40a89fc824f030bcc80c583259346 (patch) | |
tree | 04a4dc718f000e3b06388344250554110350bd3c /arch/powerpc/kvm/Makefile | |
parent | 5a484c7c1efd2c45f8cc726e4d21283a5324e361 (diff) |
KVM: PPC: HV: Remove generic instruction emulation
Now that we have properly split load/store instruction emulation and generic
instruction emulation, we can move the generic one from kvm.ko to kvm-pr.ko
on book3s_64.
This reduces the attack surface and amount of code loaded on HV KVM kernels.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/kvm/Makefile')
-rw-r--r-- | arch/powerpc/kvm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/Makefile b/arch/powerpc/kvm/Makefile index 1ccd7a1a441c..2d590dea5482 100644 --- a/arch/powerpc/kvm/Makefile +++ b/arch/powerpc/kvm/Makefile | |||
@@ -48,6 +48,7 @@ kvm-book3s_64-builtin-objs-$(CONFIG_KVM_BOOK3S_64_HANDLER) := \ | |||
48 | 48 | ||
49 | kvm-pr-y := \ | 49 | kvm-pr-y := \ |
50 | fpu.o \ | 50 | fpu.o \ |
51 | emulate.o \ | ||
51 | book3s_paired_singles.o \ | 52 | book3s_paired_singles.o \ |
52 | book3s_pr.o \ | 53 | book3s_pr.o \ |
53 | book3s_pr_papr.o \ | 54 | book3s_pr_papr.o \ |
@@ -91,7 +92,6 @@ kvm-book3s_64-module-objs += \ | |||
91 | $(KVM)/kvm_main.o \ | 92 | $(KVM)/kvm_main.o \ |
92 | $(KVM)/eventfd.o \ | 93 | $(KVM)/eventfd.o \ |
93 | powerpc.o \ | 94 | powerpc.o \ |
94 | emulate.o \ | ||
95 | emulate_loadstore.o \ | 95 | emulate_loadstore.o \ |
96 | book3s.o \ | 96 | book3s.o \ |
97 | book3s_64_vio.o \ | 97 | book3s_64_vio.o \ |