[PATCH] KVM: powerpc: fix init/exit annotation

2010-05-18 Thread Jean Delvare
kvmppc_e500_exit() is a module_exit function, so it should be tagged with __exit, not __init. The incorrect annotation was added by commit 2986b8c72c272ea58edd37903b042c6da985627d. Signed-off-by: Jean Delvare Cc: Stephen Rothwell Cc: Avi Kivity Cc: sta...@kernel.org --- arch/powerpc/kvm/e500

Re: [PATCH] KVM: powerpc: fix init/exit annotation

2010-05-18 Thread Jean Delvare
results? Please don't hi-jack discussion threads. Your question is unrelated with my patch, please start a new discussion thread. -- Jean Delvare -- To unsubscribe from this list: send the line "unsubscribe kvm-ppc" in the body of a message to majord...@vger.kernel.org More

Re: [PATCH] KVM: powerpc: fix init/exit annotation

2010-06-06 Thread Jean Delvare
Hi Avi, On Wed, 19 May 2010 20:16:35 +0300, Avi Kivity wrote: > On 05/18/2010 10:34 AM, Jean Delvare wrote: > > kvmppc_e500_exit() is a module_exit function, so it should be tagged > > with __exit, not __init. The incorrect annotation was