Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1325941 > unrolled thread

[PATCH] vfio: fix link failures when CONFIG_PCI_MSI is disabled

Started byLuis Henriques <luis.henriques@canonical.com>
First post2016-02-03 22:00 +0100
Last post2016-02-03 22:00 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] vfio: fix link failures when CONFIG_PCI_MSI is disabled Luis Henriques <luis.henriques@canonical.com> - 2016-02-03 22:00 +0100

#1325941 — [PATCH] vfio: fix link failures when CONFIG_PCI_MSI is disabled

FromLuis Henriques <luis.henriques@canonical.com>
Date2016-02-03 22:00 +0100
Subject[PATCH] vfio: fix link failures when CONFIG_PCI_MSI is disabled
Message-ID<qYcGS-6T4-9@gated-at.bofh.it>
The following link failure occurs when CONFIG_PCI_MSI is not set:

drivers/built-in.o: In function `vfio_msi_set_vector_signal':
:(.text+0x626640): undefined reference to `pci_write_msi_msg'

Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
---
 drivers/vfio/pci/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/vfio/pci/Kconfig b/drivers/vfio/pci/Kconfig
index 02912f180c6d..b9dbfc9aeee1 100644
--- a/drivers/vfio/pci/Kconfig
+++ b/drivers/vfio/pci/Kconfig
@@ -1,6 +1,6 @@
 config VFIO_PCI
 	tristate "VFIO support for PCI devices"
-	depends on VFIO && PCI && EVENTFD
+	depends on VFIO && PCI_MSI && EVENTFD
 	select VFIO_VIRQFD
 	select IRQ_BYPASS_MANAGER
 	help

Cheers,
--
Luís

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web