From mboxrd@z Thu Jan 1 00:00:00 1970 From: Glauber Costa Subject: [PATCH 1/8] Provide KVMState definition outside CONFIG_KVM Date: Wed, 8 Jul 2009 09:08:55 -0400 Message-ID: <1247058542-31211-2-git-send-email-glommer@redhat.com> References: <1247058542-31211-1-git-send-email-glommer@redhat.com> Cc: avi@redhat.com To: kvm@vger.kernel.org Return-path: Received: from mx2.redhat.com ([66.187.237.31]:38640 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753273AbZGHNJF (ORCPT ); Wed, 8 Jul 2009 09:09:05 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n68D94YV026546 for ; Wed, 8 Jul 2009 09:09:04 -0400 In-Reply-To: <1247058542-31211-1-git-send-email-glommer@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: This will allow qemu-kvm to refer to the structure, since qemu-kvm relies on USE_KVM, not CONFIG_KVM. This should be sent to qemu.git as well Signed-off-by: Glauber Costa --- kvm.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kvm.h b/kvm.h index d9723d7..7648c49 100644 --- a/kvm.h +++ b/kvm.h @@ -18,6 +18,9 @@ #include "sys-queue.h" #include "libkvm-all.h" +struct KVMState; +typedef struct KVMState KVMState; + #ifdef KVM_UPSTREAM #ifdef CONFIG_KVM @@ -65,9 +68,6 @@ int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap); /* internal API */ -struct KVMState; -typedef struct KVMState KVMState; - int kvm_ioctl(KVMState *s, int type, ...); int kvm_vm_ioctl(KVMState *s, int type, ...); -- 1.6.2.2