Re: [ovs-dev] [PATCH] tunnel: Don't wildcard TTL and TOS in some circumstances.

2013-06-13 Thread Justin Pettit
On Jun 13, 2013, at 5:03 PM, Ben Pfaff wrote: > On Thu, Jun 13, 2013 at 04:53:25PM -0700, Justin Pettit wrote: >> For tunnels, we need to handle the facet's wildcards specially in a >> couple of cases: >> >>- Don't wildcard TTL for facets if "ttl" option is "inherit". >>- Never wildcard

Re: [ovs-dev] [PATCH] tunnel: Don't wildcard TTL and TOS in some circumstances.

2013-06-13 Thread Ben Pfaff
On Thu, Jun 13, 2013 at 04:53:25PM -0700, Justin Pettit wrote: > For tunnels, we need to handle the facet's wildcards specially in a > couple of cases: > > - Don't wildcard TTL for facets if "ttl" option is "inherit". > - Never wildcard the ECN bits, since they are always inherited. >

[ovs-dev] [PATCH] tunnel: Don't wildcard TTL and TOS in some circumstances.

2013-06-13 Thread Justin Pettit
For tunnels, we need to handle the facet's wildcards specially in a couple of cases: - Don't wildcard TTL for facets if "ttl" option is "inherit". - Never wildcard the ECN bits, since they are always inherited. - Wildcard the rest of the TOS field if the "tos" option is "inherit". Iss