Re: [ovs-dev] [PATCH 10/15] datapath: Add basic MPLS support to kernel

2013-02-28 Thread Simon Horman
On Thu, Feb 28, 2013 at 08:33:41PM -0800, Jesse Gross wrote: > On Thu, Feb 28, 2013 at 12:57 AM, Simon Horman wrote: > > On Wed, Feb 27, 2013 at 07:39:02AM -0800, Jesse Gross wrote: > >> On Tue, Feb 26, 2013 at 11:10 PM, Simon Horman wrote: > >> > On Tue, Feb 26, 2013 at 02:49:47PM -0800, Jesse G

Re: [ovs-dev] [PATCH 10/15] datapath: Add basic MPLS support to kernel

2013-02-28 Thread Jesse Gross
On Thu, Feb 28, 2013 at 12:57 AM, Simon Horman wrote: > On Wed, Feb 27, 2013 at 07:39:02AM -0800, Jesse Gross wrote: >> On Tue, Feb 26, 2013 at 11:10 PM, Simon Horman wrote: >> > On Tue, Feb 26, 2013 at 02:49:47PM -0800, Jesse Gross wrote: >> >> > diff --git a/datapath/flow.c b/datapath/flow.c >>

Re: [ovs-dev] [PATCH 10/15] datapath: Add basic MPLS support to kernel

2013-02-28 Thread Simon Horman
On Wed, Feb 27, 2013 at 07:39:02AM -0800, Jesse Gross wrote: > On Tue, Feb 26, 2013 at 11:10 PM, Simon Horman wrote: > > On Tue, Feb 26, 2013 at 02:49:47PM -0800, Jesse Gross wrote: > >> A couple high level comments: > >> * I'd like to nail down the format of the userspace/kernel interface > >> f

Re: [ovs-dev] [PATCH 10/15] datapath: Add basic MPLS support to kernel

2013-02-27 Thread Jesse Gross
On Tue, Feb 26, 2013 at 11:10 PM, Simon Horman wrote: > On Tue, Feb 26, 2013 at 02:49:47PM -0800, Jesse Gross wrote: >> A couple high level comments: >> * I'd like to nail down the format of the userspace/kernel interface >> for multiple levels of tags. We don't need to implement multiple >> lev

Re: [ovs-dev] [PATCH 10/15] datapath: Add basic MPLS support to kernel

2013-02-26 Thread Simon Horman
On Tue, Feb 26, 2013 at 02:49:47PM -0800, Jesse Gross wrote: > On Fri, Feb 15, 2013 at 1:56 AM, Simon Horman wrote: > > Allow datapath to recognize and extract MPLS labels into flow keys > > and execute actions which push, pop, and set labels on packets. > > > > Based heavily on work by Leo Alterm

Re: [ovs-dev] [PATCH 10/15] datapath: Add basic MPLS support to kernel

2013-02-26 Thread Jesse Gross
On Fri, Feb 15, 2013 at 1:56 AM, Simon Horman wrote: > Allow datapath to recognize and extract MPLS labels into flow keys > and execute actions which push, pop, and set labels on packets. > > Based heavily on work by Leo Alterman and Ravi K. > > Cc: Ravi K > Cc: Leo Alterman > Reviewed-by: Isaku

[ovs-dev] [PATCH 10/15] datapath: Add basic MPLS support to kernel

2013-02-15 Thread Simon Horman
Allow datapath to recognize and extract MPLS labels into flow keys and execute actions which push, pop, and set labels on packets. Based heavily on work by Leo Alterman and Ravi K. Cc: Ravi K Cc: Leo Alterman Reviewed-by: Isaku Yamahata Signed-off-by: Simon Horman --- v2.18 - v2.19 * No cha