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:
Andreas Sandberg 2013-06-03 12:36:56 +02:00
parent 5e60f87aa3
commit 2b65fce5d9

View file

@ -171,6 +171,8 @@ BaseKvmCPU::startup()
} else {
inform("KVM: Coalesced not supported by host OS\n");
}
thread->startup();
}
void