[libvirt] [PATCH] esx: Fix CPU clock Hz to MHz conversion

Matthias Bolte matthias.bolte at googlemail.com
Sat Nov 14 22:02:48 UTC 2009


---
 src/esx/esx_driver.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/esx/esx_driver.c b/src/esx/esx_driver.c
index b84250c..5737fe9 100644
--- a/src/esx/esx_driver.c
+++ b/src/esx/esx_driver.c
@@ -878,7 +878,7 @@ esxNodeGetInfo(virConnectPtr conn, virNodeInfoPtr nodeinfo)
 
     nodeinfo->memory = memorySize / 1024; /* Scale from bytes to kilobytes */
     nodeinfo->cpus = cpuInfo_numCpuCores;
-    nodeinfo->mhz = cpuInfo_hz / (1024 * 1024); /* Scale from hz to mhz */
+    nodeinfo->mhz = cpuInfo_hz / (1000 * 1000); /* Scale from hz to mhz */
     nodeinfo->nodes = numaInfo_numNodes;
     nodeinfo->sockets = cpuInfo_numCpuPackages;
     nodeinfo->cores = cpuInfo_numCpuPackages > 0
-- 
1.6.0.4




More information about the libvir-list mailing list