]> git.proxmox.com Git - ovs.git/commitdiff
Fix typos in a couple of OpenFlow related comments.
authorBen Pfaff <blp@nicira.com>
Mon, 26 Aug 2013 22:28:46 +0000 (15:28 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 27 Aug 2013 20:23:01 +0000 (13:23 -0700)
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Ethan Jackson <ethan@nicira.com>
include/openflow/openflow-1.0.h
lib/ofp-util.c

index f2b90db330424cb6c494655792ee4f63d487e4cb..ef0a3ce7352ea17fdd486eb2c1ad0849a3fa18dc 100644 (file)
@@ -295,7 +295,7 @@ struct ofp10_match {
 OFP_ASSERT(sizeof(struct ofp10_match) == 40);
 
 enum ofp10_flow_mod_flags {
-    OFPFF10_EMERG       = 1 << 2   /* Ramark this is for emergency. */
+    OFPFF10_EMERG       = 1 << 2 /* Part of "emergency flow cache". */
 };
 
 /* Flow setup and teardown (controller -> datapath). */
index 62cfd2ed47e421854d98c980ca3cb6159b69f0eb..edda3389c1025d8af984d2c59932ebf5ba185cd8 100644 (file)
@@ -1577,7 +1577,7 @@ ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
     ofpbuf_use_const(&b, oh, ntohs(oh->length));
     raw = ofpraw_pull_assert(&b);
     if (raw == OFPRAW_OFPT11_FLOW_MOD) {
-        /* Standard OpenFlow 1.1 flow_mod. */
+        /* Standard OpenFlow 1.1+ flow_mod. */
         const struct ofp11_flow_mod *ofm;
         enum ofperr error;