From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peng Fan Subject: [PATCH 1/2] arm:kvm correct prototype to make sparse happy Date: Mon, 22 Dec 2014 19:23:18 +0800 Message-ID: <1419247399-26113-1-git-send-email-van.freenix@gmail.com> Cc: gleb@kernel.org, pbonzini@redhat.com, linux@arm.linux.org.uk, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org, linux-kernel@vger.kernel.org, van.freenix@gmail.com To: christoffer.dall@linaro.org, marc.zyngier@arm.com Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org Warning message: arch/arm/kvm/arm.c:85:17: error: symbol 'kvm_get_running_vcpus' redeclared with different type (originally declared at ./arch/arm/include/asm/kvm_host.h :190) - different address spaces Signed-off-by: Peng Fan CC: Gleb Natapov CC: Paolo Bonzini CC: Christoffer Dall CC: Marc Zyngier CC: Russell King --- arch/arm/include/asm/kvm_host.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/include/asm/kvm_host.h b/arch/arm/include/asm/kvm_host.h index 53036e2..219d025 100644 --- a/arch/arm/include/asm/kvm_host.h +++ b/arch/arm/include/asm/kvm_host.h @@ -187,7 +187,7 @@ static inline void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm, } struct kvm_vcpu *kvm_arm_get_running_vcpu(void); -struct kvm_vcpu __percpu **kvm_get_running_vcpus(void); +struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void); int kvm_arm_copy_coproc_indices(struct kvm_vcpu *vcpu, u64 __user *uindices); unsigned long kvm_arm_num_coproc_regs(struct kvm_vcpu *vcpu); -- 1.8.4