Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 36bd6213 authored by Raghavendra K T's avatar Raghavendra K T Committed by Ingo Molnar
Browse files

x86/kvm/guest: Fix sparse warning: "symbol 'klock_waiting' was not declared as static"



It was not declared as static since it was thought to be used by
pv-flushtlb earlier.

Signed-off-by: default avatarRaghavendra K T <raghavendra.kt@linux.vnet.ibm.com>
Cc: <gleb@redhat.com>
Cc: <pbonzini@redhat.com>
Cc: Jiri Kosina <trivial@kernel.org>
Link: http://lkml.kernel.org/r/1376645921-8056-1-git-send-email-raghavendra.kt@linux.vnet.ibm.com


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 92b75202
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -529,7 +529,7 @@ arch_initcall(activate_jump_labels);
#ifdef CONFIG_PARAVIRT_SPINLOCKS

/* Kick a cpu by its apicid. Used to wake up a halted vcpu */
void kvm_kick_cpu(int cpu)
static void kvm_kick_cpu(int cpu)
{
	int apicid;
	unsigned long flags = 0;