2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-19 14:37:21 +00:00

nicira-ext: Fix comment.

Multipath actions only support registers as destinations, but this was
defined by reference in nicira-ext.h and the referenced text changed.
This commit is contained in:
Ben Pfaff
2011-02-22 16:19:54 -08:00
parent 40a09c8aa9
commit 338bd6a0fe

View File

@@ -509,8 +509,9 @@ OFP_ASSERT(sizeof(struct nx_action_note) == 16);
* Some algorithms use 'arg' as an additional argument.
*
* 3. Stores 'link' in dst[ofs:ofs+n_bits]. The format and semantics of
* 'dst' and 'ofs_nbits' are identical to those for the NXAST_REG_LOAD
* action; refer to the description of that action for details.
* 'dst' and 'ofs_nbits' are similar to those for the NXAST_REG_LOAD
* action, except that 'dst' must be NXM_NX_REG(idx) for 'idx' in the
* switch's supported range.
*
* The switch will reject actions that have an unknown 'fields', or an unknown
* 'algorithm', or in which ofs+n_bits is greater than the width of 'dst', or