From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34117) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XF7rM-00027G-TY for qemu-devel@nongnu.org; Wed, 06 Aug 2014 16:31:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XF7rG-0000Zi-Ni for qemu-devel@nongnu.org; Wed, 06 Aug 2014 16:30:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35603) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XF7rG-0000ZX-GM for qemu-devel@nongnu.org; Wed, 06 Aug 2014 16:30:50 -0400 From: Eduardo Habkost Date: Wed, 6 Aug 2014 17:30:01 -0300 Message-Id: <1407357001-5390-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH] target-i386: Add tsc_adjust CPU feature name List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, kvm@vger.kernel.org Cc: Paolo Bonzini , Will Auld , =?UTF-8?q?Andreas=20F=C3=A4rber?= tsc_adjust migration support was implemented almost 2 years ago, by commit f28558d3d37ad3bc4e35e8ac93f7bf81a0d5622c, so QEMU can safely recognize the feature name. Signed-off-by: Eduardo Habkost --- This needs to be applied after: [PATCH] target-i386: Add MPX CPU feature name which I just sent. Sorry for not making it a series, I have noticed tsc_adjust was in the same section after I had already sent the MPX patch. --- 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 749f9cb..535a0d7 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -257,7 +257,7 @@ static const char *svm_feature_name[] = { }; static const char *cpuid_7_0_ebx_feature_name[] = { - "fsgsbase", NULL, NULL, "bmi1", "hle", "avx2", NULL, "smep", + "fsgsbase", "tsc_adjust", NULL, "bmi1", "hle", "avx2", NULL, "smep", "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