[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 06/21] target/i386/cpu: Pass Error** to x86_cpu_filter_features()
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 06/21] target/i386/cpu: Pass Error** to x86_cpu_filter_features() |
Date: |
Thu, 16 Jan 2025 00:22:32 +0100 |
Simplify x86_cpu_realizefn() by passing an Error**
argument to x86_cpu_filter_features().
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
target/i386/cpu.c | 26 +++++++++-----------------
1 file changed, 9 insertions(+), 17 deletions(-)
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 42227643126..c48241fb902 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -5896,7 +5896,7 @@ static void x86_cpu_parse_featurestr(const char
*typename, char *features,
}
}
-static bool x86_cpu_filter_features(X86CPU *cpu, bool verbose);
+static bool x86_cpu_filter_features(X86CPU *cpu, Error **errp);
/* Build a list with the name of all features on a feature word array */
static void x86_cpu_list_feature_names(FeatureWordArray features,
@@ -6084,7 +6084,7 @@ static void
x86_cpu_class_check_missing_features(X86CPUClass *xcc,
error_free(err);
}
- x86_cpu_filter_features(xc, false);
+ x86_cpu_filter_features(xc, NULL);
x86_cpu_list_feature_names(xc->filtered_features, tail);
@@ -7650,7 +7650,7 @@ void x86_cpu_expand_features(X86CPU *cpu, Error **errp)
*
* Returns: true if any flag is not supported by the host, false otherwise.
*/
-static bool x86_cpu_filter_features(X86CPU *cpu, bool verbose)
+static bool x86_cpu_filter_features(X86CPU *cpu, Error **errp)
{
CPUX86State *env = &cpu->env;
FeatureWord w;
@@ -7660,7 +7660,7 @@ static bool x86_cpu_filter_features(X86CPU *cpu, bool
verbose)
uint32_t eax_0, ebx_0, ecx_0, edx_0;
uint32_t eax_1, ebx_1, ecx_1, edx_1;
- if (verbose) {
+ if (errp) {
prefix = accel_uses_host_cpuid()
? "host doesn't support requested feature"
: "TCG doesn't support requested feature";
@@ -7712,15 +7712,13 @@ static bool x86_cpu_filter_features(X86CPU *cpu, bool
verbose)
uint8_t version = ebx_0 & 0xff;
if (version < env->avx10_version) {
- if (prefix) {
- warn_report("%s: avx10.%d. Adjust to avx10.%d",
- prefix, env->avx10_version, version);
- }
+ error_setg(errp, "%s: avx10.%d. Adjust to avx10.%d",
+ prefix, env->avx10_version, version);
env->avx10_version = version;
have_filtered_features = true;
}
} else if (env->avx10_version && prefix) {
- warn_report("%s: avx10.%d.", prefix, env->avx10_version);
+ error_setg(errp, "%s: avx10.%d.", prefix, env->avx10_version);
have_filtered_features = true;
}
@@ -7822,14 +7820,8 @@ static void x86_cpu_realizefn(DeviceState *dev, Error
**errp)
}
}
- if (x86_cpu_filter_features(cpu, cpu->enforce_cpuid)) {
- if (cpu->enforce_cpuid) {
- error_setg(&local_err,
- accel_uses_host_cpuid() ?
- "Host doesn't support requested features" :
- "TCG doesn't support requested features");
- goto out;
- }
+ if (x86_cpu_filter_features(cpu, cpu->enforce_cpuid ? &local_err : NULL)) {
+ goto out;
}
/* On AMD CPUs, some CPUID[8000_0001].EDX bits must match the bits on
--
2.47.1
- [PATCH 01/21] hw/i386/pc: Remove unused pc_compat_2_3 declarations, (continued)
- [PATCH 01/21] hw/i386/pc: Remove unused pc_compat_2_3 declarations, Philippe Mathieu-Daudé, 2025/01/15
- [PATCH 02/21] hw/i386/pc: Remove deprecated pc-q35-2.4 and pc-i440fx-2.4 machines, Philippe Mathieu-Daudé, 2025/01/15
- [PATCH 03/21] hw/i386/pc: Remove PCMachineClass::broken_reserved_end field, Philippe Mathieu-Daudé, 2025/01/15
- [PATCH 04/21] hw/i386/pc: Remove pc_compat_2_4[] array, Philippe Mathieu-Daudé, 2025/01/15
- [PATCH 05/21] target/i386/cpu: Remove X86CPU::check_cpuid field, Philippe Mathieu-Daudé, 2025/01/15
- [PATCH 06/21] target/i386/cpu: Pass Error** to x86_cpu_filter_features(),
Philippe Mathieu-Daudé <=
- [PATCH 07/21] hw/core/machine: Remove hw_compat_2_4[] array, Philippe Mathieu-Daudé, 2025/01/15
- [PATCH 08/21] hw/net/e1000: Remove unused E1000_FLAG_MAC flag, Philippe Mathieu-Daudé, 2025/01/15
- [PATCH 09/21] hw/virtio/virtio-pci: Remove VIRTIO_PCI_FLAG_MIGRATE_EXTRA definition, Philippe Mathieu-Daudé, 2025/01/15
- [PATCH 10/21] hw/virtio/virtio-pci: Remove VIRTIO_PCI_FLAG_DISABLE_PCIE definition, Philippe Mathieu-Daudé, 2025/01/15
- [PATCH 11/21] hw/i386/pc: Remove deprecated pc-q35-2.5 and pc-i440fx-2.5 machines, Philippe Mathieu-Daudé, 2025/01/15