[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v12 16/16] machine: Make smp_parse return a boolean
From: |
Yanan Wang |
Subject: |
[PATCH v12 16/16] machine: Make smp_parse return a boolean |
Date: |
Wed, 29 Sep 2021 10:58:16 +0800 |
Quoting one of the Rules described in include/qapi/error.h:
"
Whenever practical, also return a value that indicates success /
failure. This can make the error checking more concise, and can
avoid useless error object creation and destruction. Note that
we still have many functions returning void. We recommend
• bool-valued functions return true on success / false on failure,
• pointer-valued functions return non-null / null pointer, and
• integer-valued functions return non-negative / negative.
"
So make smp_parse() return true on success and false on failure,
so that we can more laconically check whether the parsing has
succeeded without touching the errp.
Suggested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Yanan Wang <wangyanan55@huawei.com>
---
hw/core/machine.c | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/hw/core/machine.c b/hw/core/machine.c
index 4dc936732e..3e3a2707af 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -788,7 +788,7 @@ static char *cpu_hierarchy_to_string(MachineState *ms)
* introduced topology members which are likely to be target specific should
* be directly set as 1 if they are omitted (e.g. dies for PC since 4.1).
*/
-static void smp_parse(MachineState *ms, SMPConfiguration *config, Error **errp)
+static bool smp_parse(MachineState *ms, SMPConfiguration *config, Error **errp)
{
MachineClass *mc = MACHINE_GET_CLASS(ms);
unsigned cpus = config->has_cpus ? config->cpus : 0;
@@ -818,7 +818,7 @@ static void smp_parse(MachineState *ms, SMPConfiguration
*config, Error **errp)
*/
if (!mc->smp_props.dies_supported && dies > 1) {
error_setg(errp, "dies not supported by this machine's CPU topology");
- return;
+ return false;
}
dies = dies > 0 ? dies : 1;
@@ -876,7 +876,7 @@ static void smp_parse(MachineState *ms, SMPConfiguration
*config, Error **errp)
"product of the hierarchy must match maxcpus: "
"%s != maxcpus (%u)",
topo_msg, maxcpus);
- return;
+ return false;
}
if (maxcpus < cpus) {
@@ -885,7 +885,7 @@ static void smp_parse(MachineState *ms, SMPConfiguration
*config, Error **errp)
"maxcpus must be equal to or greater than smp: "
"%s == maxcpus (%u) < smp_cpus (%u)",
topo_msg, maxcpus, cpus);
- return;
+ return false;
}
if (ms->smp.cpus < mc->min_cpus) {
@@ -893,7 +893,7 @@ static void smp_parse(MachineState *ms, SMPConfiguration
*config, Error **errp)
"supported by machine '%s' is %d",
ms->smp.cpus,
mc->name, mc->min_cpus);
- return;
+ return false;
}
if (ms->smp.max_cpus > mc->max_cpus) {
@@ -901,8 +901,10 @@ static void smp_parse(MachineState *ms, SMPConfiguration
*config, Error **errp)
"supported by machine '%s' is %d",
ms->smp.max_cpus,
mc->name, mc->max_cpus);
- return;
+ return false;
}
+
+ return true;
}
static void machine_get_smp(Object *obj, Visitor *v, const char *name,
@@ -933,8 +935,7 @@ static void machine_set_smp(Object *obj, Visitor *v, const
char *name,
return;
}
- smp_parse(ms, config, errp);
- if (*errp) {
+ if (!smp_parse(ms, config, errp)) {
qapi_free_SMPConfiguration(config);
}
}
--
2.19.1
- [PATCH v12 04/16] machine: Uniformly use maxcpus to calculate the omitted parameters, (continued)
- [PATCH v12 04/16] machine: Uniformly use maxcpus to calculate the omitted parameters, Yanan Wang, 2021/09/28
- [PATCH v12 10/16] machine: Use ms instead of global current_machine in sanity-check, 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 09/16] machine: Prefer cores over sockets in smp parsing since 6.2, Yanan Wang, 2021/09/28
- [PATCH v12 05/16] machine: Set the value of cpus to match maxcpus if it's omitted, 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 13/16] machine: Remove smp_parse callback from MachineClass, Yanan Wang, 2021/09/28
- [PATCH v12 12/16] machine: Make smp_parse generic enough for all arches, Yanan Wang, 2021/09/28
- [PATCH v12 15/16] machine: Put all sanity-check in the generic SMP parser, Yanan Wang, 2021/09/28
- [PATCH v12 16/16] machine: Make smp_parse return a boolean,
Yanan Wang <=
- [PATCH v12 11/16] machine: Tweak the order of topology members in struct CpuTopology, Yanan Wang, 2021/09/28
- [PATCH v12 14/16] machine: Move smp_prefer_sockets to struct SMPCompatProps, Yanan Wang, 2021/09/28
- Re: [PATCH v12 00/16] machine: smp parsing fixes and improvement, Paolo Bonzini, 2021/09/29