[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 06/20] target-i386: cleanup 'foo' feature handling'
From: |
Igor Mammedov |
Subject: |
[Qemu-devel] [PATCH 06/20] target-i386: cleanup 'foo' feature handling' |
Date: |
Tue, 16 Jul 2013 00:25:59 +0200 |
features check, enforce, hv_relaxed and hv_vapic are treated as boolean set to
'on'
when passed from command line, so it's not neccessary to handle each of them
separetly. Collapse them to one catch-all branch which will treat
any feature in format 'foo' as boolean set to 'on'.
PS:
Any unknown feature will be rejected by CPU property setter so there is no
need to check for unknown feature in cpu_x86_parse_featurestr(), therefore
it's replaced by above mentioned catch-all handler.
Signed-off-by: Igor Mammedov <address@hidden>
Reviewed-by: Eduardo Habkost <address@hidden>
---
v2:
* use feat2prop() to perform name convertion for hv_vapic and hv_relaxed
---
target-i386/cpu.c | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index 56333db..42c54df 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1648,18 +1648,9 @@ static void cpu_x86_parse_featurestr(X86CPU *cpu, char
*features, Error **errp)
error_setg(errp, "unrecognized feature %s", featurestr);
goto out;
}
- } else if (!strcmp(featurestr, "check")) {
- object_property_parse(OBJECT(cpu), "on", featurestr, errp);
- } else if (!strcmp(featurestr, "enforce")) {
- object_property_parse(OBJECT(cpu), "on", featurestr, errp);
- } else if (!strcmp(featurestr, "hv_relaxed")) {
- object_property_parse(OBJECT(cpu), "on", "hv-relaxed", errp);
- } else if (!strcmp(featurestr, "hv_vapic")) {
- object_property_parse(OBJECT(cpu), "on", "hv-vapic", errp);
} else {
- error_setg(errp, "feature string `%s' not in format (+feature|"
- "-feature|feature=xyz)", featurestr);
- goto out;
+ feat2prop(featurestr);
+ object_property_parse(OBJECT(cpu), "on", featurestr, errp);
}
if (error_is_set(errp)) {
goto out;
--
1.8.3.1
- [Qemu-devel] [PATCH qom-cpu 00/21 v9] target-i386: convert CPU features into properties, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 02/20] target-i386: convert 'hv_spinlocks' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 01/20] target-i386: Move hyperv_* static globals to X86CPU, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 03/20] target-i386: convert 'hv_relaxed' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 04/20] target-i386: convert 'hv_vapic' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 05/20] target-i386: convert 'check' and 'enforce' to static properties, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 06/20] target-i386: cleanup 'foo' feature handling',
Igor Mammedov <=
- [Qemu-devel] [PATCH 07/20] target-i386: cleanup 'foo=val' feature handling, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 08/20] target-i386: cpu: convert 'level' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 09/20] target-i386: cpu: convert 'xlevel' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 10/20] target-i386: cpu: convert 'family' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 11/20] target-i386: cpu: convert 'model' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 12/20] target-i386: cpu: convert 'stepping' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 13/20] target-i386: cpu: convert 'vendor' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 14/20] target-i386: cpu: convert 'model-id' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 15/20] target-i386: cpu: convert 'tsc-frequency' to static property, Igor Mammedov, 2013/07/15
- [Qemu-devel] [PATCH 15/21] target-i386: cpu: substitute '_' with '-' for +-foo feature bits as well, Igor Mammedov, 2013/07/15