From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:43139) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h2JZt-0006oU-VV for qemu-devel@nongnu.org; Fri, 08 Mar 2019 12:46:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h2JZs-0007JN-K5 for qemu-devel@nongnu.org; Fri, 08 Mar 2019 12:46:37 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44330) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h2JZp-0007FW-8i for qemu-devel@nongnu.org; Fri, 08 Mar 2019 12:46:34 -0500 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C29553092656 for ; Fri, 8 Mar 2019 17:46:29 +0000 (UTC) Date: Fri, 8 Mar 2019 10:46:28 -0700 From: Alex Williamson Message-ID: <20190308104628.2ab2b1e2@x1.home> In-Reply-To: <20190308173622.21386-1-pbonzini@redhat.com> References: <20190308173622.21386-1-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] vfio-pci: enable by default List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org On Fri, 8 Mar 2019 18:36:22 +0100 Paolo Bonzini wrote: > CONFIG_VFIO_PCI was not "default y" - and once you do that, it is also important > to disable it if PCI is not there. > > Reported-by: Alex Williamson > Signed-off-by: Paolo Bonzini > --- > hw/vfio/Kconfig | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) Thanks Paolo! FWIW... Tested-by: Alex Williamson > diff --git a/hw/vfio/Kconfig b/hw/vfio/Kconfig > index ebda9fdf22..34da2a3cfd 100644 > --- a/hw/vfio/Kconfig > +++ b/hw/vfio/Kconfig > @@ -4,8 +4,9 @@ config VFIO > > config VFIO_PCI > bool > + default y > select VFIO > - depends on LINUX > + depends on LINUX && PCI > > config VFIO_CCW > bool