From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58621) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XN0Oi-0001Ts-2j for qemu-devel@nongnu.org; Thu, 28 Aug 2014 10:10:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XN0OY-0001CN-A4 for qemu-devel@nongnu.org; Thu, 28 Aug 2014 10:09:55 -0400 Received: from mail-we0-x235.google.com ([2a00:1450:400c:c03::235]:40083) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XN0OY-0001C9-2n for qemu-devel@nongnu.org; Thu, 28 Aug 2014 10:09:46 -0400 Received: by mail-we0-f181.google.com with SMTP id x48so846556wes.12 for ; Thu, 28 Aug 2014 07:09:45 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 28 Aug 2014 16:09:11 +0200 Message-Id: <1409234953-20742-13-git-send-email-pbonzini@redhat.com> In-Reply-To: <1409234953-20742-1-git-send-email-pbonzini@redhat.com> References: <1409234953-20742-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 12/14] target-i386: Add "mpx" CPU feature name List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Eduardo Habkost From: Eduardo Habkost 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 --- 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 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, }; -- 1.8.3.1