From: Simon Horman Date: Fri, 28 Sep 2012 06:07:08 +0000 (+0900) Subject: ofproto: Rationalise comments in handle_flow_mod(). X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c6f631fae9e4127e107a0c2f40688803ade6da6;p=openvswitch ofproto: Rationalise comments in handle_flow_mod(). Signed-off-by: Simon Horman Signed-off-by: Ben Pfaff --- diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c index b87b6e77..7c92d713 100644 --- a/ofproto/ofproto.c +++ b/ofproto/ofproto.c @@ -3298,11 +3298,10 @@ handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh) } if (fm.flags & OFPFF10_EMERG) { - /* We do not support the OpenFlow 1.0 emergency flow cache, which is not - * required in OpenFlow 1.0.1 and removed from OpenFlow 1.1. */ - /* We do not support the emergency flow cache. It will hopefully get - * dropped from OpenFlow in the near future. There is no good error - * code, so just state that the flow table is full. */ + /* We do not support the OpenFlow 1.0 emergency flow cache, which + * is not required in OpenFlow 1.0.1 and removed from OpenFlow 1.1. + * There is no good error code, so just state that the flow table + * is full. */ error = OFPERR_OFPFMFC_ALL_TABLES_FULL; } if (!error) {