From: Chenyi Qiang Date: Fri, 27 Aug 2021 06:48:18 +0000 (+0800) Subject: target/i386: Remove core-capability in Snowridge CPU model X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=07db29f20a9a845c8408df11936889e5411ff44f;p=qemu.git target/i386: Remove core-capability in Snowridge CPU model Because core-capability releated features are model-specific and KVM won't support it, remove the core-capability in CPU model to avoid the warning message. Signed-off-by: Chenyi Qiang Message-Id: <20210827064818.4698-3-chenyi.qiang@intel.com> Signed-off-by: Eduardo Habkost --- diff --git a/target/i386/cpu.c b/target/i386/cpu.c index fc3ed80ef1..598d451dcf 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -3749,9 +3749,10 @@ static const X86CPUDefinition builtin_x86_defs[] = { }, { .version = 4, - .note = "no split lock detect", + .note = "no split lock detect, no core-capability", .props = (PropValue[]) { { "split-lock-detect", "off" }, + { "core-capability", "off" }, { /* end of list */ }, }, },