[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v12 01/16] qapi/machine: Fix an incorrect comment of SMPConfigura
From: |
Yanan Wang |
Subject: |
[PATCH v12 01/16] qapi/machine: Fix an incorrect comment of SMPConfiguration |
Date: |
Wed, 29 Sep 2021 10:58:01 +0800 |
The explanation of @cores should be "number of cores per die" but
not "number of cores per thread". Let's fix it.
Fixes: 1e63fe685804 ("machine: pass QAPI struct to mc->smp_parse")
Signed-off-by: Yanan Wang <wangyanan55@huawei.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
---
qapi/machine.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qapi/machine.json b/qapi/machine.json
index 32d47f4e35..227e75d8af 100644
--- a/qapi/machine.json
+++ b/qapi/machine.json
@@ -1331,7 +1331,7 @@
#
# @dies: number of dies per socket in the CPU topology
#
-# @cores: number of cores per thread in the CPU topology
+# @cores: number of cores per die in the CPU topology
#
# @threads: number of threads per core in the CPU topology
#
--
2.19.1
- [PATCH v12 00/16] machine: smp parsing fixes and improvement, Yanan Wang, 2021/09/28
- [PATCH v12 01/16] qapi/machine: Fix an incorrect comment of SMPConfiguration,
Yanan Wang <=
- [PATCH v12 10/16] machine: Use ms instead of global current_machine in sanity-check, Yanan Wang, 2021/09/28
- [PATCH v12 07/16] qtest/numa-test: Use detailed -smp CLIs in pc_dynamic_cpu_cfg, Yanan Wang, 2021/09/28
- [PATCH v12 02/16] machine: Deprecate "parameter=0" SMP configurations, Yanan Wang, 2021/09/28
- [PATCH v12 04/16] machine: Uniformly use maxcpus to calculate the omitted parameters, Yanan Wang, 2021/09/28
- [PATCH v12 09/16] machine: Prefer cores over sockets in smp parsing since 6.2, Yanan Wang, 2021/09/28
- [PATCH v12 03/16] machine: Minor refactor/fix for the smp parsers, Yanan Wang, 2021/09/28
- [PATCH v12 06/16] machine: Improve the error reporting of smp parsing, Yanan Wang, 2021/09/28
- [PATCH v12 08/16] qtest/numa-test: Use detailed -smp CLIs in test_def_cpu_split, Yanan Wang, 2021/09/28
- [PATCH v12 16/16] machine: Make smp_parse return a boolean, Yanan Wang, 2021/09/28