vmm: Remove 'mergeable' from memory zones

The flag 'mergeable' should only apply to the entire guest RAM, which is
why it is removed from the MemoryZoneConfig as it is defined as a global
parameter at the MemoryConfig level.

Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
Sebastien Boeuf
2020-08-26 17:55:21 +02:00
committed by Samuel Ortiz
parent be8f40f2b6
commit ad5d0e4713
3 changed files with 1 additions and 11 deletions

View File

@@ -362,7 +362,6 @@ impl MemoryManager {
let zones = vec![MemoryZoneConfig {
size: config.size,
file: None,
mergeable: config.mergeable,
shared: config.shared,
hugepages: config.hugepages,
}];