[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] vfio-pci: enable by default
From: |
Alex Williamson |
Subject: |
Re: [Qemu-devel] [PATCH] vfio-pci: enable by default |
Date: |
Fri, 8 Mar 2019 10:46:28 -0700 |
On Fri, 8 Mar 2019 18:36:22 +0100
Paolo Bonzini <address@hidden> 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 <address@hidden>
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
> hw/vfio/Kconfig | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
Thanks Paolo! FWIW...
Tested-by: Alex Williamson <address@hidden>
> 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