From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58837) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XM0Tj-0002Lp-QV for qemu-devel@nongnu.org; Mon, 25 Aug 2014 16:03:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XM0Td-0006Fb-Iu for qemu-devel@nongnu.org; Mon, 25 Aug 2014 16:02:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:4126) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XM0Td-0006FS-Bc for qemu-devel@nongnu.org; Mon, 25 Aug 2014 16:02:53 -0400 From: Eduardo Habkost Date: Mon, 25 Aug 2014 17:02:12 -0300 Message-Id: <1408996933-31934-2-git-send-email-ehabkost@redhat.com> In-Reply-To: <1408996933-31934-1-git-send-email-ehabkost@redhat.com> References: <1408996933-31934-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH v2 1/2] target-i386: Add "mpx" CPU feature name List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, =?UTF-8?q?Andreas=20F=C3=A4rber?= Cc: Paolo Bonzini , Will Auld , kvm@vger.kernel.org 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 --- 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 217500c..c86cf5c 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.9.3