diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2014-08-25 17:02:12 -0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-08-26 14:52:38 +0200 |
commit | 5bd8ff07e65d066f1e90f05d49ee634f3ccd2664 (patch) | |
tree | 4945c5ec3d8a7df09c5d597fa8e130af05888092 /target-i386 | |
parent | 7b71758d79106a63a0b8aba02df752d9995ea50c (diff) | |
download | qemu-5bd8ff07e65d066f1e90f05d49ee634f3ccd2664.zip qemu-5bd8ff07e65d066f1e90f05d49ee634f3ccd2664.tar.gz qemu-5bd8ff07e65d066f1e90f05d49ee634f3ccd2664.tar.bz2 |
target-i386: Add "mpx" CPU feature name
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 <ehabkost@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 52e335f..f4ee353 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -258,7 +258,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, }; |