Re: [ovs-dev] [PATCH 01/15] Update parse_l2_5_onward to use encap for MPLS

2013-02-15 Thread Simon Horman
On Fri, Feb 15, 2013 at 08:58:52AM -0800, Ben Pfaff wrote: > On Fri, Feb 15, 2013 at 06:55:55PM +0900, Simon Horman wrote: > > When encoding MPLS information in ODP flow key data use encap() > > for encap for frames. This seems to be in keeping with datapath/README. > > > > before: eth(...), eth_t

Re: [ovs-dev] [PATCH 01/15] Update parse_l2_5_onward to use encap for MPLS

2013-02-15 Thread Ben Pfaff
On Fri, Feb 15, 2013 at 06:55:55PM +0900, Simon Horman wrote: > When encoding MPLS information in ODP flow key data use encap() > for encap for frames. This seems to be in keeping with datapath/README. > > before: eth(...), eth_type(0x8847), mpls(...), encap(ip(...), tcp(...)) > after: eth(...), e

[ovs-dev] [PATCH 01/15] Update parse_l2_5_onward to use encap for MPLS

2013-02-15 Thread Simon Horman
When encoding MPLS information in ODP flow key data use encap() for encap for frames. This seems to be in keeping with datapath/README. before: eth(...), eth_type(0x8847), mpls(...), encap(ip(...), tcp(...)) after: eth(...), eth_type(0x8847), mpls(...), ip(...), tcp(...) Suggested by Ben Pfaff S