From 2b65fce5d98a23301676acd972fd78f61a988ab1 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Mon, 3 Jun 2013 12:36:56 +0200 Subject: [PATCH] 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. --- src/cpu/kvm/base.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cpu/kvm/base.cc b/src/cpu/kvm/base.cc index bc650aee9..b5f64664f 100644 --- a/src/cpu/kvm/base.cc +++ b/src/cpu/kvm/base.cc @@ -171,6 +171,8 @@ BaseKvmCPU::startup() } else { inform("KVM: Coalesced not supported by host OS\n"); } + + thread->startup(); } void -- 2.30.2