aboutsummaryrefslogtreecommitdiff
path: root/datapath/flow.h
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2011-11-02 23:34:15 -0700
committerJustin Pettit <jpettit@nicira.com>2011-11-09 10:47:59 -0800
commit530180fd5a99e2c55107831f99fee84d6780f38c (patch)
treee2189533fe8c1e80a818439118ba55a344694fa0 /datapath/flow.h
parent9e44d715638af28689b15ef0c5be920e61c7997b (diff)
Support matching and modifying IP ECN bits.
Signed-off-by: Justin Pettit <jpettit@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'datapath/flow.h')
-rw-r--r--datapath/flow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/datapath/flow.h b/datapath/flow.h
index 1604cd5d..b08111fb 100644
--- a/datapath/flow.h
+++ b/datapath/flow.h
@@ -44,7 +44,7 @@ struct sw_flow_key {
} eth;
struct {
u8 proto; /* IP protocol or lower 8 bits of ARP opcode. */
- u8 tos; /* IP ToS DSCP in high 6 bits. */
+ u8 tos; /* IP ToS. */
u8 frag; /* One of OVS_FRAG_TYPE_*. */
} ip;
union {