summaryrefslogtreecommitdiff
path: root/include/openvswitch
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2016-07-15 14:13:02 -0700
committerBen Pfaff <blp@ovn.org>2016-08-08 09:11:21 -0700
commit0763bf08caa9ce880215d321a2c05dc50ee74609 (patch)
tree36f066794f3690af4002b0565ed5c54c6d69cebc /include/openvswitch
parent71ed13e73b534622fe1fc7c2cc3f5efc736df8e9 (diff)
downloadopenvswitch-0763bf08caa9ce880215d321a2c05dc50ee74609.tar.gz
ofp-actions: Correct member name for write_actions.
For a variable-length action like write_actions, the member name is supposed to be the name of the variable-length array at the end of the action structure. It only makes a real difference if the beginning of the array is not 64-bit aligned, so it did not matter in this case, but it's better to get it right. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Ryan Moats <rmoats@us.ibm.com>
Diffstat (limited to 'include/openvswitch')
-rw-r--r--include/openvswitch/ofp-actions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openvswitch/ofp-actions.h b/include/openvswitch/ofp-actions.h
index 42764b120..a0cefe322 100644
--- a/include/openvswitch/ofp-actions.h
+++ b/include/openvswitch/ofp-actions.h
@@ -119,7 +119,7 @@
/* Instructions. */ \
OFPACT(METER, ofpact_meter, ofpact, "meter") \
OFPACT(CLEAR_ACTIONS, ofpact_null, ofpact, "clear_actions") \
- OFPACT(WRITE_ACTIONS, ofpact_nest, ofpact, "write_actions") \
+ OFPACT(WRITE_ACTIONS, ofpact_nest, actions, "write_actions") \
OFPACT(WRITE_METADATA, ofpact_metadata, ofpact, "write_metadata") \
OFPACT(GOTO_TABLE, ofpact_goto_table, ofpact, "goto_table")