All of lore.kernel.org
 help / color / mirror / Atom feed
From: Will Deacon <will.deacon@arm.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
	Gleb Natapov <gleb@kernel.org>,
	Alex Williamson <Alex.Williamson@redhat.com>
Subject: Re: [PATCH v2] kvm-vfio: do not use module_init
Date: Wed, 24 Sep 2014 13:05:05 +0100	[thread overview]
Message-ID: <20140924120505.GF28823@arm.com> (raw)
In-Reply-To: <1411559780-12676-1-git-send-email-pbonzini@redhat.com>

On Wed, Sep 24, 2014 at 12:56:20PM +0100, Paolo Bonzini wrote:
> /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>
> ---
>  virt/kvm/kvm_main.c | 9 +++++++++
>  virt/kvm/vfio.c     | 4 ++--
>  virt/kvm/vfio.h     | 6 ++++++
>  3 files changed, 17 insertions(+), 2 deletions(-)
>  create mode 100644 virt/kvm/vfio.h
> 
> diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
> index db57363cc287..ad3439835adb 100644
> --- a/virt/kvm/kvm_main.c
> +++ b/virt/kvm/kvm_main.c
> @@ -58,6 +58,10 @@
>  #include "coalesced_mmio.h"
>  #include "async_pf.h"
>  
> +#ifdef CONFIG_KVM_VFIO
> +#include "vfio.h"
> +#endif

Can't you include this unconditionally, then have the #ifdef in the header
and a static inline kvm_vfio_ops_init that returns 0?

Will

  reply	other threads:[~2014-09-24 12:05 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-24 11:56 [PATCH v2] kvm-vfio: do not use module_init Paolo Bonzini
2014-09-24 12:05 ` Will Deacon [this message]
2014-09-24 12:07   ` Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140924120505.GF28823@arm.com \
    --to=will.deacon@arm.com \
    --cc=Alex.Williamson@redhat.com \
    --cc=gleb@kernel.org \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.