From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49484) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YpFp7-0004ha-98 for qemu-devel@nongnu.org; Mon, 04 May 2015 08:50:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YpFp2-0007Am-OE for qemu-devel@nongnu.org; Mon, 04 May 2015 08:50:13 -0400 Received: from mail-wi0-f172.google.com ([209.85.212.172]:33131) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YpFp2-0007AX-Hi for qemu-devel@nongnu.org; Mon, 04 May 2015 08:50:08 -0400 Received: by wief7 with SMTP id f7so76797424wie.0 for ; Mon, 04 May 2015 05:50:08 -0700 (PDT) From: Eric Auger Date: Mon, 4 May 2015 13:49:56 +0100 Message-Id: <1430743798-8839-3-git-send-email-eric.auger@linaro.org> In-Reply-To: <1430743798-8839-1-git-send-email-eric.auger@linaro.org> References: <1430743798-8839-1-git-send-email-eric.auger@linaro.org> Subject: [Qemu-devel] [RFC v2 2/4] hw/vfio/common: vfio_kvm_device_fd moved in the common header List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: eric.auger@st.com, eric.auger@linaro.org, qemu-devel@nongnu.org, alex.williamson@redhat.com Cc: b.reynal@virtualopensystems.com, kvmarm@lists.cs.columbia.edu, christoffer.dall@linaro.org, patches@linaro.org the device is now used in platform for forwarded IRQ setup Signed-off-by: Eric Auger --- hw/vfio/common.c | 2 +- include/hw/vfio/vfio-common.h | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/hw/vfio/common.c b/hw/vfio/common.c index b012620..18ad67c 100644 --- a/hw/vfio/common.c +++ b/hw/vfio/common.c @@ -44,7 +44,7 @@ struct vfio_as_head vfio_address_spaces = * initialized, this file descriptor is only released on QEMU exit and * we'll re-use it should another vfio device be attached before then. */ -static int vfio_kvm_device_fd = -1; +int vfio_kvm_device_fd = -1; #endif /* diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h index 59a321d..53d0e68 100644 --- a/include/hw/vfio/vfio-common.h +++ b/include/hw/vfio/vfio-common.h @@ -40,6 +40,10 @@ #define VFIO_ALLOW_KVM_MSI 1 #define VFIO_ALLOW_KVM_MSIX 1 +#ifdef CONFIG_KVM +extern int vfio_kvm_device_fd; +#endif + enum { VFIO_DEVICE_TYPE_PCI = 0, VFIO_DEVICE_TYPE_PLATFORM = 1, -- 1.8.3.2