mirror of
https://github.com/torvalds/linux.git
synced 2024-12-15 23:51:46 +00:00
6d4f0139d6
Building the vmw_vmci driver with CONFIG_NET undefined results in: drivers/built-in.o: In function `__qp_memcpy_from_queue.isra.13': vmci_queue_pair.c:(.text+0x1671a8): undefined reference to `memcpy_toiovec' drivers/built-in.o: In function `__qp_memcpy_to_queue.isra.14': vmci_queue_pair.c:(.text+0x167341): undefined reference to `memcpy_fromiovec' make[1]: [vmlinux] Error 1 (ignored) since memcpy_toiovec and memcpy_fromiovec are defined in the networking code. Add the missing dependency. Signed-off-by: Guenter Roeck <linux@roeck-us.net> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17 lines
409 B
Plaintext
17 lines
409 B
Plaintext
#
|
|
# VMware VMCI device
|
|
#
|
|
|
|
config VMWARE_VMCI
|
|
tristate "VMware VMCI Driver"
|
|
depends on X86 && PCI && NET
|
|
help
|
|
This is VMware's Virtual Machine Communication Interface. It enables
|
|
high-speed communication between host and guest in a virtual
|
|
environment via the VMCI virtual device.
|
|
|
|
If unsure, say N.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called vmw_vmci.
|