kvm: Add a call to thread->startup() in startup()
It is now required to initialize the thread context by calling startup() on it. Failing to do so currently causes decoder in x86-based CPUs to get very confused when restoring from checkpoints.
This commit is contained in:
parent
5e60f87aa3
commit
2b65fce5d9
1 changed files with 2 additions and 0 deletions
|
@ -171,6 +171,8 @@ BaseKvmCPU::startup()
|
||||||
} else {
|
} else {
|
||||||
inform("KVM: Coalesced not supported by host OS\n");
|
inform("KVM: Coalesced not supported by host OS\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
thread->startup();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue