Re: [ovs-dev] [PATCH v7] datapath: Add support for VXLAN tunnels to Open vSwitch

2012-12-05 Thread Ben Pfaff
On Wed, Dec 05, 2012 at 07:52:39PM +, Kyle Mestery (kmestery) wrote: > On Dec 5, 2012, at 1:47 PM, Ben Pfaff wrote: > > On Wed, Dec 05, 2012 at 10:23:43AM -0800, Jesse Gross wrote: > >> This will run on both userspace and kernel for the files that need to > >> be recompiled. The userspace ver

Re: [ovs-dev] [PATCH v7] datapath: Add support for VXLAN tunnels to Open vSwitch

2012-12-05 Thread Kyle Mestery (kmestery)
On Dec 5, 2012, at 1:47 PM, Ben Pfaff wrote: > On Wed, Dec 05, 2012 at 10:23:43AM -0800, Jesse Gross wrote: >> This will run on both userspace and kernel for the files that need to >> be recompiled. The userspace version is a little bit more >> temperamental because sparse requires header annotat

Re: [ovs-dev] [PATCH v7] datapath: Add support for VXLAN tunnels to Open vSwitch

2012-12-05 Thread Ben Pfaff
On Wed, Dec 05, 2012 at 10:23:43AM -0800, Jesse Gross wrote: > This will run on both userspace and kernel for the files that need to > be recompiled. The userspace version is a little bit more > temperamental because sparse requires header annotations to work > properly and userspace headers don't

Re: [ovs-dev] [PATCH v7] datapath: Add support for VXLAN tunnels to Open vSwitch

2012-12-05 Thread Jesse Gross
On Wed, Dec 5, 2012 at 10:14 AM, Kyle Mestery (kmestery) wrote: > On Dec 5, 2012, at 12:10 PM, Jesse Gross wrote: >> On Wed, Dec 5, 2012 at 8:53 AM, Kyle Mestery wrote: >>> Add support for VXLAN tunnels to Open vSwitch. Add support >>> for setting the destination UDP port on a per-port basis. >>

Re: [ovs-dev] [PATCH v7] datapath: Add support for VXLAN tunnels to Open vSwitch

2012-12-05 Thread Kyle Mestery (kmestery)
On Dec 5, 2012, at 12:10 PM, Jesse Gross wrote: > On Wed, Dec 5, 2012 at 8:53 AM, Kyle Mestery wrote: >> Add support for VXLAN tunnels to Open vSwitch. Add support >> for setting the destination UDP port on a per-port basis. >> This is done by adding a "dst_port" parameter to the port >> configur

Re: [ovs-dev] [PATCH v7] datapath: Add support for VXLAN tunnels to Open vSwitch

2012-12-05 Thread Jesse Gross
On Wed, Dec 5, 2012 at 8:53 AM, Kyle Mestery wrote: > Add support for VXLAN tunnels to Open vSwitch. Add support > for setting the destination UDP port on a per-port basis. > This is done by adding a "dst_port" parameter to the port > configuration. This is only applicable currently to VXLAN > tun

[ovs-dev] [PATCH v7] datapath: Add support for VXLAN tunnels to Open vSwitch

2012-12-05 Thread Kyle Mestery
Add support for VXLAN tunnels to Open vSwitch. Add support for setting the destination UDP port on a per-port basis. This is done by adding a "dst_port" parameter to the port configuration. This is only applicable currently to VXLAN tunnels. Please note this currently does not implement any sort o

[ovs-dev] [PATCH v7] datapath: Add support for VXLAN tunnels to Open vSwitch

2012-12-03 Thread Kyle Mestery
Note: v7 fixes one white space issue with the patch. Note: v6 of this patch addresses additional comments from Jesse. Specifically, I've removed the hash table of port/socket mappings and moved to a linked list. I've also cleaned up the code around this quite a bit. Note: v5 of this patch address