Re: [ovs-dev] [PATCH] datapath: Rename ipv6_tos to ipv6_tclass.

2011-11-09 Thread Jesse Gross
On Wed, Nov 9, 2011 at 12:07 PM, Justin Pettit wrote: > On Nov 9, 2011, at 11:56 AM, Jesse Gross wrote: > >> On Wed, Nov 9, 2011 at 11:50 AM, Justin Pettit wrote: >>> diff --git a/lib/odp-util.c b/lib/odp-util.c >>> index 8ced2d4..04c0828 100644 >>> --- a/lib/odp-util.c >>> +++ b/lib/odp-util.c >

Re: [ovs-dev] [PATCH] datapath: Rename ipv6_tos to ipv6_tclass.

2011-11-09 Thread Justin Pettit
On Nov 9, 2011, at 11:56 AM, Jesse Gross wrote: > On Wed, Nov 9, 2011 at 11:50 AM, Justin Pettit wrote: >> diff --git a/lib/odp-util.c b/lib/odp-util.c >> index 8ced2d4..04c0828 100644 >> --- a/lib/odp-util.c >> +++ b/lib/odp-util.c >> @@ -389,7 +389,7 @@ format_odp_key_attr(const struct nlattr *

Re: [ovs-dev] [PATCH] datapath: Rename ipv6_tos to ipv6_tclass.

2011-11-09 Thread Jesse Gross
On Wed, Nov 9, 2011 at 11:50 AM, Justin Pettit wrote: > diff --git a/lib/odp-util.c b/lib/odp-util.c > index 8ced2d4..04c0828 100644 > --- a/lib/odp-util.c > +++ b/lib/odp-util.c > @@ -389,7 +389,7 @@ format_odp_key_attr(const struct nlattr *a, struct ds *ds) >         ds_put_format(ds, "ipv6(src=

[ovs-dev] [PATCH] datapath: Rename ipv6_tos to ipv6_tclass.

2011-11-09 Thread Justin Pettit
IPv6 uses the term "traffic class" for what IPv4 calls "type-of-service". This commit renames the the "ipv6_tos" field to "ipv6_tclass" in the "ovs-key_ipv6" struct to be more consistent with the IPv6 terminology. Suggested-by: Jesse Gross Signed-off-by: Justin Pettit --- datapath/flow.c