From: Ben Pfaff Date: Thu, 1 Apr 2010 20:58:30 +0000 (-0700) Subject: nicira-ext: Fix comments. X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=8ca6414b20f427c5ea03edee45308837fd34e669;p=sliver-openvswitch.git nicira-ext: Fix comments. --- diff --git a/include/openflow/nicira-ext.h b/include/openflow/nicira-ext.h index 7232d5707..7bac7b2e8 100644 --- a/include/openflow/nicira-ext.h +++ b/include/openflow/nicira-ext.h @@ -63,7 +63,7 @@ enum nx_action_subtype { /* Action structure for NXAST_RESUBMIT. */ struct nx_action_resubmit { uint16_t type; /* OFPAT_VENDOR. */ - uint16_t len; /* Length is 8. */ + uint16_t len; /* Length is 16. */ uint32_t vendor; /* NX_VENDOR_ID. */ uint16_t subtype; /* NXAST_RESUBMIT. */ uint16_t in_port; /* New in_port for checking flow table. */ @@ -74,7 +74,7 @@ OFP_ASSERT(sizeof(struct nx_action_resubmit) == 16); /* Header for Nicira-defined actions. */ struct nx_action_header { uint16_t type; /* OFPAT_VENDOR. */ - uint16_t len; /* Length is 8. */ + uint16_t len; /* Length is (at least) 16. */ uint32_t vendor; /* NX_VENDOR_ID. */ uint16_t subtype; /* NXAST_*. */ uint8_t pad[6];