diff options
author | David Hashe <david.j.hashe@gmail.com> | 2016-08-22 11:41:05 -0400 |
---|---|---|
committer | David Hashe <david.j.hashe@gmail.com> | 2016-08-22 11:41:05 -0400 |
commit | f3ccaab1e982f4482177aefa95575f7d7dae21f7 (patch) | |
tree | 8797cdd232c0ccafa53d0601bc9da14a16f6db00 /src/mem/abstract_mem.cc | |
parent | d80a613990935dd144a5665a875f91725ee81f78 (diff) | |
download | gem5-f3ccaab1e982f4482177aefa95575f7d7dae21f7.tar.xz |
cpu, mem, sim: Change how KVM maps memory
Only map memories into the KVM guest address space that are
marked as usable by KVM. Create BackingStoreEntry class
containing flags for is_conf_reported, in_addr_map, and
kvm_map.
Diffstat (limited to 'src/mem/abstract_mem.cc')
-rw-r--r-- | src/mem/abstract_mem.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/abstract_mem.cc b/src/mem/abstract_mem.cc index 04e4b0057..1797deae8 100644 --- a/src/mem/abstract_mem.cc +++ b/src/mem/abstract_mem.cc @@ -57,7 +57,7 @@ using namespace std; AbstractMemory::AbstractMemory(const Params *p) : MemObject(p), range(params()->range), pmemAddr(NULL), confTableReported(p->conf_table_reported), inAddrMap(p->in_addr_map), - _system(NULL) + kvmMap(p->kvm_map), _system(NULL) { } |