From d13094c8215e7e0285e7bf4bcb23ac97a126c198 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Mon, 5 Feb 2024 18:41:24 +0530 Subject: [PATCH] fix(os): total and free memory in bytes (#22247) --- runtime/ops/os/sys_info.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/runtime/ops/os/sys_info.rs b/runtime/ops/os/sys_info.rs index 40cdc52fae..e865bc8f90 100644 --- a/runtime/ops/os/sys_info.rs +++ b/runtime/ops/os/sys_info.rs @@ -260,7 +260,6 @@ pub fn mem_info() -> Option { std::ptr::null_mut(), 0, ); - mem_info.total /= 1024; let mut xs: libc::xsw_usage = std::mem::zeroed::(); mib[0] = libc::CTL_VM; @@ -320,9 +319,9 @@ pub fn mem_info() -> Option { let result = sysinfoapi::GlobalMemoryStatusEx(mem_status.as_mut_ptr()); if result != 0 { let stat = mem_status.assume_init(); - mem_info.total = stat.ullTotalPhys / 1024; + mem_info.total = stat.ullTotalPhys; mem_info.available = 0; - mem_info.free = stat.ullAvailPhys / 1024; + mem_info.free = stat.ullAvailPhys; mem_info.cached = 0; mem_info.buffers = 0;