The operands were reversed, producing an incorrect result.

Co-authored-by: Sri Ramanujam <[email protected]>
Signed-off-by: Matt Coleman <[email protected]>
---
 src/hyperv/hyperv_driver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c
index 20d372b274..9b181ebfff 100644
--- a/src/hyperv/hyperv_driver.c
+++ b/src/hyperv/hyperv_driver.c
@@ -310,7 +310,7 @@ hypervNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info)
     }
 
     info->cores = processorList->data.common->NumberOfCores;
-    info->threads = info->cores / 
processorList->data.common->NumberOfLogicalProcessors;
+    info->threads = processorList->data.common->NumberOfLogicalProcessors / 
info->cores;
     info->cpus = info->sockets * info->cores;
 
     result = 0;
-- 
2.27.0


Reply via email to