From: Arnd Bergmann Date: Thu, 27 Mar 2014 17:58:58 +0000 (-0600) Subject: vfio: always select ANON_INODES X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4379d2ae152860e023b42257fd60b5e235047f63;p=linux-beck.git vfio: always select ANON_INODES The vfio code cannot be built when CONFIG_ANON_INODES is disabled, so this enforces the symbol to be enabled through Kconfig. Signed-off-by: Arnd Bergmann Signed-off-by: Alex Williamson --- diff --git a/drivers/vfio/Kconfig b/drivers/vfio/Kconfig index 26b3d9d1409f..af7b204b9215 100644 --- a/drivers/vfio/Kconfig +++ b/drivers/vfio/Kconfig @@ -13,6 +13,7 @@ menuconfig VFIO depends on IOMMU_API select VFIO_IOMMU_TYPE1 if X86 select VFIO_IOMMU_SPAPR_TCE if (PPC_POWERNV || PPC_PSERIES) + select ANON_INODES help VFIO provides a framework for secure userspace device drivers. See Documentation/vfio.txt for more details.