summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJarno Rajahalme <jarno@ovn.org>2017-03-08 17:18:23 -0800
committerJarno Rajahalme <jarno@ovn.org>2017-03-08 17:22:56 -0800
commit2a28ccc8f56cf10e924f1b2c065237cab18b4126 (patch)
tree0c1114b5079313cc2bf4909f58f60a1a677f72f7 /include
parentc30b4ceafa235d11a1a9ded5fed11fec86182ee0 (diff)
downloadopenvswitch-2a28ccc8f56cf10e924f1b2c065237cab18b4126.tar.gz
flow: Make room after ct_state.
'ct_state' currently only needs 8 bits, so we can make room for a new CT field introduced in the next patch. Signed-off-by: Jarno Rajahalme <jarno@ovn.org> Acked-by: Joe Stringer <joe@ovn.org>
Diffstat (limited to 'include')
-rw-r--r--include/openvswitch/flow.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/openvswitch/flow.h b/include/openvswitch/flow.h
index df80dfe46..91692723f 100644
--- a/include/openvswitch/flow.h
+++ b/include/openvswitch/flow.h
@@ -91,7 +91,8 @@ struct flow {
* computation is opaque to the user space. */
union flow_in_port in_port; /* Input port.*/
uint32_t recirc_id; /* Must be exact match. */
- uint16_t ct_state; /* Connection tracking state. */
+ uint8_t ct_state; /* Connection tracking state. */
+ uint8_t pad0;
uint16_t ct_zone; /* Connection tracking zone. */
uint32_t ct_mark; /* Connection mark.*/
uint8_t pad1[4]; /* Pad to 64 bits. */