- sync some bugfix patches from upstream - support vhostuser disk - libvirt: support dirtyrate (calc-dirty-rate, dirtyrate-param.mode) Signed-off-by: yezengruan <yezengruan@huawei.com>
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From ee9069defba076d94b432662af93a784ea002f5a Mon Sep 17 00:00:00 2001
|
|
From: tangbinzy <tangbin_yewu@cmss.chinamobile.com>
|
|
Date: Tue, 29 Nov 2022 08:57:42 +0000
|
|
Subject: [PATCH 04/24] hyperv: fix the number of threads per core The operands
|
|
were reversed, producing an incorrect result.
|
|
|
|
Co-authored-by: Sri Ramanujam <sramanujam@datto.com>
|
|
Signed-off-by: Matt Coleman <matt@datto.com>
|
|
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
|
|
|
|
Signed-off-by: tangbin <tangbin_yewu@cmss.chinamobile.com>
|
|
(cherry-pick from 1e18d3b833b9daa7bb18b9550a2cf4d140303d86)
|
|
---
|
|
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 4677a25ff8..213dd8837b 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
|
|
|