mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [patch] drivers, vmci: vmware vmci driver depends on CONFIG_NET
@ 2013-02-21 21:47 David Rientjes
  2013-02-22 20:37 ` David Rientjes
  0 siblings, 1 reply; 3+ messages in thread
From: David Rientjes @ 2013-02-21 21:47 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: George Zhang, Andy King, Dmitry Torokhov, linux-kernel

CONFIG_VMWARE_VMCI requires CONFIG_NET, otherwise there is a link error:

drivers/built-in.o: In function `__qp_memcpy_from_queue.isra.11':
vmci_queue_pair.c:(.text+0x2d4509): undefined reference to `memcpy_toiovec'
drivers/built-in.o: In function `__qp_memcpy_to_queue.isra.12':
vmci_queue_pair.c:(.text+0x2d4709): undefined reference to `memcpy_fromiovec'

Signed-off-by: David Rientjes <rientjes@google.com>
---
 drivers/misc/vmw_vmci/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/misc/vmw_vmci/Kconfig b/drivers/misc/vmw_vmci/Kconfig
--- a/drivers/misc/vmw_vmci/Kconfig
+++ b/drivers/misc/vmw_vmci/Kconfig
@@ -4,7 +4,7 @@
 
 config VMWARE_VMCI
 	tristate "VMware VMCI Driver"
-	depends on X86 && PCI
+	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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [patch] drivers, vmci: vmware vmci driver depends on CONFIG_NET
  2013-02-21 21:47 [patch] drivers, vmci: vmware vmci driver depends on CONFIG_NET David Rientjes
@ 2013-02-22 20:37 ` David Rientjes
  2013-02-22 21:47   ` Greg Kroah-Hartman
  0 siblings, 1 reply; 3+ messages in thread
From: David Rientjes @ 2013-02-22 20:37 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: George Zhang, Andy King, Dmitry Torokhov, linux-kernel

On Thu, 21 Feb 2013, David Rientjes wrote:

> CONFIG_VMWARE_VMCI requires CONFIG_NET, otherwise there is a link error:
> 
> drivers/built-in.o: In function `__qp_memcpy_from_queue.isra.11':
> vmci_queue_pair.c:(.text+0x2d4509): undefined reference to `memcpy_toiovec'
> drivers/built-in.o: In function `__qp_memcpy_to_queue.isra.12':
> vmci_queue_pair.c:(.text+0x2d4709): undefined reference to `memcpy_fromiovec'
> 

This link error has made it to Linus' tree, so hopefully this can be 
merged and pushed before rc1.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [patch] drivers, vmci: vmware vmci driver depends on CONFIG_NET
  2013-02-22 20:37 ` David Rientjes
@ 2013-02-22 21:47   ` Greg Kroah-Hartman
  0 siblings, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2013-02-22 21:47 UTC (permalink / raw)
  To: David Rientjes; +Cc: George Zhang, Andy King, Dmitry Torokhov, linux-kernel

On Fri, Feb 22, 2013 at 12:37:29PM -0800, David Rientjes wrote:
> On Thu, 21 Feb 2013, David Rientjes wrote:
> 
> > CONFIG_VMWARE_VMCI requires CONFIG_NET, otherwise there is a link error:
> > 
> > drivers/built-in.o: In function `__qp_memcpy_from_queue.isra.11':
> > vmci_queue_pair.c:(.text+0x2d4509): undefined reference to `memcpy_toiovec'
> > drivers/built-in.o: In function `__qp_memcpy_to_queue.isra.12':
> > vmci_queue_pair.c:(.text+0x2d4709): undefined reference to `memcpy_fromiovec'
> > 
> 
> This link error has made it to Linus' tree, so hopefully this can be 
> merged and pushed before rc1.

Yes, give me a chance, it's still early in the merge window.  Actually,
for something so trivial as this, it will probably wait until after
3.9-rc1 is out, the number of people who build a running system without
CONFIG_NET is probably pretty small :)

Don't worry, the patch is not lost, it's in my "to-apply" queue.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-02-22 21:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-21 21:47 [patch] drivers, vmci: vmware vmci driver depends on CONFIG_NET David Rientjes
2013-02-22 20:37 ` David Rientjes
2013-02-22 21:47   ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome