mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-08-24 15:25:04 +00:00
KVM: fix i8259 oops when no vcpus are online
If there are no vcpus, found will be NULL. Check before doing anything with it. Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
16518d5ada
commit
ae0635b358
1 changed files with 3 additions and 0 deletions
|
@ -64,6 +64,9 @@ static void pic_unlock(struct kvm_pic *s)
|
||||||
if (!found)
|
if (!found)
|
||||||
found = s->kvm->bsp_vcpu;
|
found = s->kvm->bsp_vcpu;
|
||||||
|
|
||||||
|
if (!found)
|
||||||
|
return;
|
||||||
|
|
||||||
kvm_vcpu_kick(found);
|
kvm_vcpu_kick(found);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue