summary refs log tree commit diff
path: root/arch/src/lib.rs
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 /arch/src/lib.rs
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 'arch/src/lib.rs')
-rw-r--r--arch/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/src/lib.rs b/arch/src/lib.rs
index 032170f..26967d3 100644
--- a/arch/src/lib.rs
+++ b/arch/src/lib.rs
@@ -26,7 +26,7 @@ use sys_util::{syslog, EventFd, GuestAddress, GuestMemory, GuestMemoryError};
 /// Holds the pieces needed to build a VM. Passed to `build_vm` in the `LinuxArch` trait below to
 /// create a `RunnableLinuxVm`.
 pub struct VmComponents {
-    pub memory_mb: u64,
+    pub memory_size: u64,
     pub vcpu_count: u32,
     pub vcpu_affinity: Vec<usize>,
     pub kernel_image: File,