Re: [ovs-dev] [PATCH v2.58] datapath: Add basic MPLS support to kernel

2014-06-04 Thread Jesse Gross
On Tue, Jun 3, 2014 at 6:01 PM, Simon Horman wrote: > On Tue, Jun 03, 2014 at 03:40:27PM -0700, Jesse Gross wrote: >> On Mon, Jun 2, 2014 at 9:04 PM, Simon Horman wrote: >> > Hi Jesse, >> > >> > thanks for your feedback. >> > >> > On Mon, Jun 02, 2014 at 05:58:10PM -0700, Jesse Gross wrote: >> >>

Re: [ovs-dev] [PATCH v2.58] datapath: Add basic MPLS support to kernel

2014-06-03 Thread Simon Horman
On Tue, Jun 03, 2014 at 03:40:27PM -0700, Jesse Gross wrote: > On Mon, Jun 2, 2014 at 9:04 PM, Simon Horman wrote: > > Hi Jesse, > > > > thanks for your feedback. > > > > On Mon, Jun 02, 2014 at 05:58:10PM -0700, Jesse Gross wrote: > >> On Sun, May 25, 2014 at 5:22 PM, Simon Horman wrote: > >> >

Re: [ovs-dev] [PATCH v2.58] datapath: Add basic MPLS support to kernel

2014-06-03 Thread Jesse Gross
On Mon, Jun 2, 2014 at 9:04 PM, Simon Horman wrote: > Hi Jesse, > > thanks for your feedback. > > On Mon, Jun 02, 2014 at 05:58:10PM -0700, Jesse Gross wrote: >> On Sun, May 25, 2014 at 5:22 PM, Simon Horman wrote: >> > diff --git a/datapath/flow_netlink.c b/datapath/flow_netlink.c >> > index 803

Re: [ovs-dev] [PATCH v2.58] datapath: Add basic MPLS support to kernel

2014-06-02 Thread Simon Horman
Hi Jesse, thanks for your feedback. On Mon, Jun 02, 2014 at 05:58:10PM -0700, Jesse Gross wrote: > On Sun, May 25, 2014 at 5:22 PM, Simon Horman wrote: > > diff --git a/datapath/flow_netlink.c b/datapath/flow_netlink.c > > index 803a94c..8ce596c 100644 > > --- a/datapath/flow_netlink.c > > +++ b

Re: [ovs-dev] [PATCH v2.58] datapath: Add basic MPLS support to kernel

2014-06-02 Thread Jesse Gross
On Sun, May 25, 2014 at 5:22 PM, Simon Horman wrote: > diff --git a/datapath/flow_netlink.c b/datapath/flow_netlink.c > index 803a94c..8ce596c 100644 > --- a/datapath/flow_netlink.c > +++ b/datapath/flow_netlink.c > + case OVS_ACTION_ATTR_POP_MPLS: > + if (!eth_

[ovs-dev] [PATCH v2.58] datapath: Add basic MPLS support to kernel

2014-05-25 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, Ravi K, Isaku Yamahata and Joe Stringer. Cc: Ravi K Cc: Leo Alterman Cc: Isaku Yamahata Cc: Joe Stringer Signed-off-by: Sim