summary refs log tree commit diff
path: root/x86_64
diff options
context:
space:
mode:
authorJakub Staron <jstaron@google.com>2019-04-26 11:22:51 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-04-29 20:57:13 -0700
commitf55f75d6894fe997a619df3fc4ca6e5c9d7b79a6 (patch)
treefbf47be142bf4d51ff80043e54acb2083a1c854e /x86_64
parentaff94ca6da90b92503558b6ba7aa68e1180afd87 (diff)
downloadcrosvm-f55f75d6894fe997a619df3fc4ca6e5c9d7b79a6.tar
crosvm-f55f75d6894fe997a619df3fc4ca6e5c9d7b79a6.tar.gz
crosvm-f55f75d6894fe997a619df3fc4ca6e5c9d7b79a6.tar.bz2
crosvm-f55f75d6894fe997a619df3fc4ca6e5c9d7b79a6.tar.lz
crosvm-f55f75d6894fe997a619df3fc4ca6e5c9d7b79a6.tar.xz
crosvm-f55f75d6894fe997a619df3fc4ca6e5c9d7b79a6.tar.zst
crosvm-f55f75d6894fe997a619df3fc4ca6e5c9d7b79a6.zip
crosvm: Fix misleading field name in VmComponents struct.
Renames field memory_mb to memory_size. All usages of this
field treat it as a memory size in bytes, not megabytes.

BUG=None
TEST=cargo check
TEST=cargo check --package aarch64 --target aarch64-unknown-linux-gnu

Change-Id: I7b1aefe4f0b612d5eeb2987dc2a0fce6db0dd228
Reviewed-on: https://chromium-review.googlesource.com/1585617
Commit-Ready: Jakub StaroĊ„ <jstaron@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Zach Reizner <zachr@chromium.org>
Diffstat (limited to 'x86_64')
-rw-r--r--x86_64/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/x86_64/src/lib.rs b/x86_64/src/lib.rs
index 84483a5..684a60f 100644
--- a/x86_64/src/lib.rs
+++ b/x86_64/src/lib.rs
@@ -304,8 +304,8 @@ impl arch::LinuxArch for X8664arch {
         E: StdError + 'static,
     {
         let mut resources =
-            Self::get_resource_allocator(components.memory_mb, components.wayland_dmabuf);
-        let mem = Self::setup_memory(components.memory_mb)?;
+            Self::get_resource_allocator(components.memory_size, components.wayland_dmabuf);
+        let mem = Self::setup_memory(components.memory_size)?;
         let kvm = Kvm::new().map_err(Error::CreateKvm)?;
         let mut vm = Self::create_vm(&kvm, split_irqchip, mem.clone())?;
 
@@ -357,7 +357,7 @@ impl arch::LinuxArch for X8664arch {
 
         Self::setup_system_memory(
             &mem,
-            components.memory_mb,
+            components.memory_size,
             vcpu_count,
             &CString::new(cmdline).unwrap(),
             components.initrd_image,