diff options
author | Curtis Dunham <Curtis.Dunham@arm.com> | 2017-02-14 15:09:18 -0600 |
---|---|---|
committer | Curtis Dunham <Curtis.Dunham@arm.com> | 2017-02-14 15:09:18 -0600 |
commit | 41beacce088e8f682a0e8ac48f22a3fa4805a43b (patch) | |
tree | 3cd96b36acb9b38a2010eeae07f193a9d2292c73 /src/cpu/kvm/base.cc | |
parent | d3bfc03688e164c02e9c25730ada11b669c01eda (diff) | |
download | gem5-41beacce088e8f682a0e8ac48f22a3fa4805a43b.tar.xz |
sim, kvm: make KvmVM a System parameter
A KVM VM is typically a child of the System object already, but for
solving future issues with configuration graph resolution, the most
logical way to keep track of this object is for it to be an actual
parameter of the System object.
Change-Id: I965ded22203ff8667db9ca02de0042ff1c772220
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/cpu/kvm/base.cc')
-rw-r--r-- | src/cpu/kvm/base.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/kvm/base.cc b/src/cpu/kvm/base.cc index 723feda44..6ae3c7dff 100644 --- a/src/cpu/kvm/base.cc +++ b/src/cpu/kvm/base.cc @@ -64,7 +64,7 @@ BaseKvmCPU::BaseKvmCPU(BaseKvmCPUParams *params) : BaseCPU(params), - vm(*params->kvmVM), + vm(*params->system->getKvmVM()), _status(Idle), dataPort(name() + ".dcache_port", this), instPort(name() + ".icache_port", this), |