From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60546) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMIxA-0007Hv-Hh for qemu-devel@nongnu.org; Wed, 18 Sep 2013 10:42:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VMIx4-0004lI-AW for qemu-devel@nongnu.org; Wed, 18 Sep 2013 10:42:04 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10192) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMIx4-0004ks-2o for qemu-devel@nongnu.org; Wed, 18 Sep 2013 10:41:58 -0400 From: Andrew Jones Date: Wed, 18 Sep 2013 16:41:45 +0200 Message-Id: <1379515305-8450-3-git-send-email-drjones@redhat.com> In-Reply-To: <1379515305-8450-1-git-send-email-drjones@redhat.com> References: <1379515305-8450-1-git-send-email-drjones@redhat.com> Subject: [Qemu-devel] [PATCH 2/2] qemu-kvm: paravirt: add feature kvm_pv_unhalt List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: afaerber@suse.de, ehabkost@redhat.com I don't know yet if want this feature on by default, so for now I'm just adding support for "-cpu ...,+kvm_pv_unhalt". Signed-off-by: Andrew Jones --- 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 42c5de034ecc8..89491e7b1fba1 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -123,7 +123,7 @@ static const char *ext4_feature_name[] = { static const char *kvm_feature_name[] = { "kvmclock", "kvm_nopiodelay", "kvm_mmu", "kvmclock", - "kvm_asyncpf", "kvm_steal_time", "kvm_pv_eoi", NULL, + "kvm_asyncpf", "kvm_steal_time", "kvm_pv_eoi", "kvm_pv_unhalt", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, -- 1.8.1.4