From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35423) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YM7Qm-0001b9-71 for qemu-devel@nongnu.org; Thu, 12 Feb 2015 23:00:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YM7Qe-0007v6-VS for qemu-devel@nongnu.org; Thu, 12 Feb 2015 23:00:40 -0500 Received: from mail-wi0-f171.google.com ([209.85.212.171]:34990) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YM7Qe-0007uu-If for qemu-devel@nongnu.org; Thu, 12 Feb 2015 23:00:32 -0500 Received: by mail-wi0-f171.google.com with SMTP id hi2so9087620wib.4 for ; Thu, 12 Feb 2015 20:00:32 -0800 (PST) From: Eric Auger Date: Fri, 13 Feb 2015 04:00:19 +0000 Message-Id: <1423800020-10940-3-git-send-email-eric.auger@linaro.org> In-Reply-To: <1423800020-10940-1-git-send-email-eric.auger@linaro.org> References: <1423800020-10940-1-git-send-email-eric.auger@linaro.org> Subject: [Qemu-devel] [RFC 2/3] 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, christoffer.dall@linaro.org, qemu-devel@nongnu.org, alex.williamson@redhat.com, peter.maydell@linaro.org, agraf@suse.de, b.reynal@virtualopensystems.com, feng.wu@intel.com Cc: kim.phillips@freescale.com, patches@linaro.org, a.rigo@virtualopensystems.com, afaerber@suse.de, Bharat.Bhushan@freescale.com, a.motakis@virtualopensystems.com, pbonzini@redhat.com, kvmarm@lists.cs.columbia.edu the device is now used in platform for forwarded IRQ setup Signed-off-by: Eric Auger --- hw/vfio/common.c | 3 ++- include/hw/vfio/vfio-common.h | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/hw/vfio/common.c b/hw/vfio/common.c index c5d1551..be72ad6 100644 --- a/hw/vfio/common.c +++ b/hw/vfio/common.c @@ -44,9 +44,10 @@ 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 + /* * Common VFIO interrupt disable */ diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h index 2d1d8b3..8816731 100644 --- a/include/hw/vfio/vfio-common.h +++ b/include/hw/vfio/vfio-common.h @@ -41,6 +41,11 @@ #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