From: Avi Kivity <[email protected]> If there are no vcpus, found will be NULL. Check before doing anything with it.
Signed-off-by: Avi Kivity <[email protected]> diff --git a/arch/x86/kvm/i8259.c b/arch/x86/kvm/i8259.c index 5de9ee0..5662ff6 100644 --- a/arch/x86/kvm/i8259.c +++ b/arch/x86/kvm/i8259.c @@ -64,6 +64,9 @@ static void pic_unlock(struct kvm_pic *s) if (!found) found = s->kvm->bsp_vcpu; + if (!found) + return; + kvm_vcpu_kick(found); } } -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
