From 60fe9056e610b5ee15b4715586d816c099060f41 Mon Sep 17 00:00:00 2001 From: Eduardo Habkost Date: Thu, 25 Jun 2015 19:31:27 +0200 Subject: [PATCH 07/10] target-i386: Add "mpx" CPU feature name Message-id: <1435260689-9556-7-git-send-email-ehabkost@redhat.com> Patchwork-id: 66503 O-Subject: [RHEL-7.2 qemu-kvm PATCH 6/8] target-i386: Add "mpx" CPU feature name Bugzilla: 1233350 RH-Acked-by: Igor Mammedov RH-Acked-by: Bandan Das RH-Acked-by: Paolo Bonzini Migration support for MPX is already implemented (commit 79e9ebebbf2a00c46fcedb6dc7dd5e12bbd30216), so we can add it to the list of known feature names. Signed-off-by: Eduardo Habkost Signed-off-by: Paolo Bonzini (cherry picked from commit 5bd8ff07e65d066f1e90f05d49ee634f3ccd2664) Signed-off-by: Eduardo Habkost Signed-off-by: Miroslav Rezanina --- target-i386/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 96af1bf..fe60c33 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -145,7 +145,7 @@ static const char *svm_feature_name[] = { static const char *cpuid_7_0_ebx_feature_name[] = { "fsgsbase", NULL, NULL, "bmi1", "hle", "avx2", NULL, "smep", - "bmi2", "erms", "invpcid", "rtm", NULL, NULL, NULL, NULL, + "bmi2", "erms", "invpcid", "rtm", NULL, NULL, "mpx", NULL, NULL, NULL, "rdseed", "adx", "smap", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }; -- 1.8.3.1