Re: [ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-10-08 Thread Kyle Mestery (kmestery)
On Oct 8, 2012, at 4:49 PM, Jesse Gross wrote: > On Fri, Oct 5, 2012 at 1:07 PM, Kyle Mestery (kmestery) > wrote: >> On Oct 5, 2012, at 12:47 PM, Jesse Gross wrote: >>> On Mon, Oct 1, 2012 at 8:52 AM, Kyle Mestery wrote: This is a first pass at providing a tun_key which can be used as

Re: [ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-10-08 Thread Jesse Gross
On Fri, Oct 5, 2012 at 1:07 PM, Kyle Mestery (kmestery) wrote: > On Oct 5, 2012, at 12:47 PM, Jesse Gross wrote: >> On Mon, Oct 1, 2012 at 8:52 AM, Kyle Mestery wrote: >>> This is a first pass at providing a tun_key which can be >>> used as the basis for flow-based tunnelling. The >>> tun_key inc

Re: [ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-10-05 Thread Kyle Mestery (kmestery)
On Oct 5, 2012, at 12:47 PM, Jesse Gross wrote: > On Mon, Oct 1, 2012 at 8:52 AM, Kyle Mestery wrote: >> This is a first pass at providing a tun_key which can be >> used as the basis for flow-based tunnelling. The >> tun_key includes and replaces the tun_id in both struct >> ovs_skb_cb and struct

Re: [ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-10-05 Thread Jesse Gross
On Mon, Oct 1, 2012 at 8:52 AM, Kyle Mestery wrote: > This is a first pass at providing a tun_key which can be > used as the basis for flow-based tunnelling. The > tun_key includes and replaces the tun_id in both struct > ovs_skb_cb and struct sw_tun_key. > > This patch allows all existing tun_id

Re: [ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-10-04 Thread Jesse Gross
On Thu, Oct 4, 2012 at 1:12 PM, Kyle Mestery (kmestery) wrote: > On Oct 3, 2012, at 11:38 AM, Jesse Gross wrote: >> Also, when I was working on the userspace portions I defined three >> flags to be used instead of the current tunnel port configuration: >> >> Flow lib/flow.h: >> #define FLOW_TNL_F_

Re: [ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-10-04 Thread Kyle Mestery (kmestery)
On Oct 3, 2012, at 11:38 AM, Jesse Gross wrote: > On Mon, Oct 1, 2012 at 8:52 AM, Kyle Mestery wrote: >> This is a first pass at providing a tun_key which can be >> used as the basis for flow-based tunnelling. The >> tun_key includes and replaces the tun_id in both struct >> ovs_skb_cb and struct

Re: [ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-10-03 Thread Kyle Mestery (kmestery)
On Oct 3, 2012, at 11:38 AM, Jesse Gross wrote: > On Mon, Oct 1, 2012 at 8:52 AM, Kyle Mestery wrote: >> This is a first pass at providing a tun_key which can be >> used as the basis for flow-based tunnelling. The >> tun_key includes and replaces the tun_id in both struct >> ovs_skb_cb and struct

Re: [ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-10-03 Thread Jesse Gross
On Mon, Oct 1, 2012 at 8:52 AM, Kyle Mestery wrote: > This is a first pass at providing a tun_key which can be > used as the basis for flow-based tunnelling. The > tun_key includes and replaces the tun_id in both struct > ovs_skb_cb and struct sw_tun_key. > > This patch allows all existing tun_id

[ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-10-01 Thread Kyle Mestery
This is a first pass at providing a tun_key which can be used as the basis for flow-based tunnelling. The tun_key includes and replaces the tun_id in both struct ovs_skb_cb and struct sw_tun_key. This patch allows all existing tun_id behaviour to still work. Existing users of tun_id are redirected

[ovs-dev] [PATCH 1/2] Add support for tun_key to OVS datapath

2012-09-28 Thread Kyle Mestery
This is a first pass at providing a tun_key which can be used as the basis for flow-based tunnelling. The tun_key includes and replaces the tun_id in both struct ovs_skb_cb and struct sw_tun_key. This patch allows all existing tun_id behaviour to still work. Existing users of tun_id are redirected