diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2014-09-24 07:02:46 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-09-24 08:06:36 -0400 |
commit | 3c3c29fd0d7cddc32862c350d0700ce69953e3bd (patch) | |
tree | 69a96edbbe94bb5ab6ad6c3f239b72eda13f7593 /virt/kvm/kvm_main.c | |
parent | 29f1b65b5984c1e35e2d60d1416d03cee0b91ee2 (diff) |
kvm-vfio: do not use module_init
/me got confused between the kernel and QEMU. In the kernel, you can
only have one module_init function, and it will prevent unloading the
module unless you also have the corresponding module_exit function.
So, commit 80ce1639727e (KVM: VFIO: register kvm_device_ops dynamically,
2014-09-02) broke unloading of the kvm module, by adding a module_init
function and no module_exit.
Repair it by making kvm_vfio_ops_init weak, and checking it in
kvm_init.
Cc: Will Deacon <will.deacon@arm.com>
Cc: Gleb Natapov <gleb@kernel.org>
Cc: Alex Williamson <Alex.Williamson@redhat.com>
Fixes: 80ce1639727e9d38729c34f162378508c307ca25
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'virt/kvm/kvm_main.c')
-rw-r--r-- | virt/kvm/kvm_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index db57363cc287..499db0977f3c 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c | |||
@@ -57,6 +57,7 @@ | |||
57 | 57 | ||
58 | #include "coalesced_mmio.h" | 58 | #include "coalesced_mmio.h" |
59 | #include "async_pf.h" | 59 | #include "async_pf.h" |
60 | #include "vfio.h" | ||
60 | 61 | ||
61 | #define CREATE_TRACE_POINTS | 62 | #define CREATE_TRACE_POINTS |
62 | #include <trace/events/kvm.h> | 63 | #include <trace/events/kvm.h> |
@@ -3226,6 +3227,9 @@ int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align, | |||
3226 | goto out_undebugfs; | 3227 | goto out_undebugfs; |
3227 | } | 3228 | } |
3228 | 3229 | ||
3230 | r = kvm_vfio_ops_init(); | ||
3231 | WARN_ON(r); | ||
3232 | |||
3229 | return 0; | 3233 | return 0; |
3230 | 3234 | ||
3231 | out_undebugfs: | 3235 | out_undebugfs: |