From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S26K1-00038z-2O for qemu-devel@nongnu.org; Mon, 27 Feb 2012 14:33:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S26Jz-0002Dx-LU for qemu-devel@nongnu.org; Mon, 27 Feb 2012 14:33:20 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56968) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S26Jz-0002Dc-DP for qemu-devel@nongnu.org; Mon, 27 Feb 2012 14:33:19 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q1RJXHse021162 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 27 Feb 2012 14:33:17 -0500 Received: from blackpad.lan.raisama.net (ovpn-116-22.ams2.redhat.com [10.36.116.22]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q1RJXGbU014772 for ; Mon, 27 Feb 2012 14:33:17 -0500 From: Eduardo Habkost Date: Mon, 27 Feb 2012 16:33:12 -0300 Message-Id: <1330371194-22315-2-git-send-email-ehabkost@redhat.com> In-Reply-To: <1330371194-22315-1-git-send-email-ehabkost@redhat.com> References: <1330371194-22315-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 1/3] add "tsc-deadline" flag name to feature_ecx table List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Eduardo Habkost --- target-i386/cpuid.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-i386/cpuid.c b/target-i386/cpuid.c index c2edb64..465ea15 100644 --- a/target-i386/cpuid.c +++ b/target-i386/cpuid.c @@ -50,7 +50,7 @@ static const char *ext_feature_name[] = { "fma", "cx16", "xtpr", "pdcm", NULL, NULL, "dca", "sse4.1|sse4_1", "sse4.2|sse4_2", "x2apic", "movbe", "popcnt", - NULL, "aes", "xsave", "osxsave", + "tsc-deadline", "aes", "xsave", "osxsave", "avx", NULL, NULL, "hypervisor", }; static const char *ext2_feature_name[] = { -- 1.7.3.2