aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2011-11-09 12:17:38 -0800
committerJustin Pettit <jpettit@nicira.com>2011-11-09 13:24:52 -0800
commit60258dcba68383473313cc214431fd212bdb1016 (patch)
tree197ba820a125eeda8594d6b4258ad5d70c532431 /include
parent7229a773ead96f891b621cd5f3e1219af5f24dd7 (diff)
datapath: Rename ipv6_tos to ipv6_tclass.
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 <jesse@nicira.com> Signed-off-by: Justin Pettit <jpettit@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/openvswitch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/openvswitch.h b/include/linux/openvswitch.h
index c94c5347..30f97730 100644
--- a/include/linux/openvswitch.h
+++ b/include/linux/openvswitch.h
@@ -325,7 +325,7 @@ struct ovs_key_ipv6 {
__be32 ipv6_dst[4];
__be32 ipv6_label; /* 20-bits in least-significant bits. */
__u8 ipv6_proto;
- __u8 ipv6_tos;
+ __u8 ipv6_tclass;
__u8 ipv6_hlimit;
__u8 ipv6_frag; /* One of OVS_FRAG_TYPE_*. */
};