Re: [ovs-dev] [PATCH net-next] openvswitch: fix compilation when vxlan is a module

2015-07-27 Thread Thomas Graf
On 07/26/15 at 08:57pm, David Miller wrote: > From: Nicolas Dichtel > Date: Thu, 23 Jul 2015 11:29:07 +0200 > > > With CONFIG_VXLAN=m and CONFIG_OPENVSWITCH=y, there was the following > > compilation error: > > LD init/built-in.o > > net/built-in.o: In function `vxlan_tnl_create': > >

Re: [ovs-dev] [PATCH net-next] openvswitch: fix compilation when vxlan is a module

2015-07-26 Thread David Miller
From: Nicolas Dichtel Date: Thu, 23 Jul 2015 11:29:07 +0200 > With CONFIG_VXLAN=m and CONFIG_OPENVSWITCH=y, there was the following > compilation error: > LD init/built-in.o > net/built-in.o: In function `vxlan_tnl_create': > .../net/openvswitch/vport-netdev.c:322: undefined reference

Re: [ovs-dev] [PATCH net-next] openvswitch: fix compilation when vxlan is a module

2015-07-23 Thread Thomas Graf
On 07/23/15 at 11:29am, Nicolas Dichtel wrote: > With CONFIG_VXLAN=m and CONFIG_OPENVSWITCH=y, there was the following > compilation error: > LD init/built-in.o > net/built-in.o: In function `vxlan_tnl_create': > .../net/openvswitch/vport-netdev.c:322: undefined reference to > `vxlan_de

[ovs-dev] [PATCH net-next] openvswitch: fix compilation when vxlan is a module

2015-07-23 Thread Nicolas Dichtel
With CONFIG_VXLAN=m and CONFIG_OPENVSWITCH=y, there was the following compilation error: LD init/built-in.o net/built-in.o: In function `vxlan_tnl_create': .../net/openvswitch/vport-netdev.c:322: undefined reference to `vxlan_dev_create' make: *** [vmlinux] Error 1 CC: Thomas Graf F