Re: [PATCH net-next v2 1/2] nsh: encapsulation module

2016-03-01 Thread Brian Russell
On 15/02/16 17:01, Jiri Benc wrote: > On Thu, 11 Feb 2016 19:57:05 +, Brian Russell wrote: >> --- /dev/null >> +++ b/net/ipv4/nsh.c >> @@ -0,0 +1,365 @@ >> +/* >> + * Network Service Header (NSH) inserted onto encapsulated packets >> + * or frames to realize service function paths. >> + * NSH

Re: [PATCH net-next v2 1/2] nsh: encapsulation module

2016-03-01 Thread Brian Russell
On 17/02/16 03:31, Alexei Starovoitov wrote: > On Thu, Feb 11, 2016 at 07:57:05PM +, Brian Russell wrote: >> Support encap/decap of Network Service Header (NSH) as defined in >>

Re: [PATCH net-next v2 1/2] nsh: encapsulation module

2016-02-16 Thread Alexei Starovoitov
On Thu, Feb 11, 2016 at 07:57:05PM +, Brian Russell wrote: > Support encap/decap of Network Service Header (NSH) as defined in > https://tools.ietf.org/html/draft-ietf-sfc-nsh-01 > > Includes support for Type 1 and Type 2 metadata and a simple registration > for listeners to see decapsulated

Re: [PATCH net-next v2 1/2] nsh: encapsulation module

2016-02-15 Thread Jiri Benc
On Thu, 11 Feb 2016 19:57:05 +, Brian Russell wrote: > --- /dev/null > +++ b/net/ipv4/nsh.c > @@ -0,0 +1,365 @@ > +/* > + * Network Service Header (NSH) inserted onto encapsulated packets > + * or frames to realize service function paths. > + * NSH also provides a mechanism for metadata

[PATCH net-next v2 1/2] nsh: encapsulation module

2016-02-11 Thread Brian Russell
Support encap/decap of Network Service Header (NSH) as defined in https://tools.ietf.org/html/draft-ietf-sfc-nsh-01 Includes support for Type 1 and Type 2 metadata and a simple registration for listeners to see decapsulated packets based on the Type/Class. Signed-off-by: Brian Russell