diff mbox

[ovs-dev,04/41] ofp-msgs: Fix comments.

Message ID 1453188448-2437-5-git-send-email-blp@ovn.org
State Accepted
Headers show

Commit Message

Ben Pfaff Jan. 19, 2016, 7:26 a.m. UTC
ofpbuf used to have members named 'frame' and 'l3' but now they're 'header'
and 'msg'.

Signed-off-by: Ben Pfaff <blp@ovn.org>
---
 lib/ofp-msgs.c | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

Comments

Jarno Rajahalme Jan. 19, 2016, 7:37 p.m. UTC | #1
Thanks for the maintenance, seen some of these before, but been too lazy to fix them!

Acked-by: Jarno Rajahalme <jarno@ovn.org>

> On Jan 18, 2016, at 11:26 PM, Ben Pfaff <blp@ovn.org> wrote:
> 
> ofpbuf used to have members named 'frame' and 'l3' but now they're 'header'
> and 'msg'.
> 
> Signed-off-by: Ben Pfaff <blp@ovn.org>
> ---
> lib/ofp-msgs.c | 30 +++++++++++++++---------------
> 1 file changed, 15 insertions(+), 15 deletions(-)
> 
> diff --git a/lib/ofp-msgs.c b/lib/ofp-msgs.c
> index 3a120e2..cb27f79 100644
> --- a/lib/ofp-msgs.c
> +++ b/lib/ofp-msgs.c
> @@ -381,9 +381,9 @@ ofpraw_decode_assert(const struct ofp_header *oh)
>  *
>  * In addition to setting '*rawp', this function pulls off the OpenFlow header
>  * (including the stats headers, vendor header, and any subtype header) with
> - * ofpbuf_pull().  It also sets 'msg->frame' to the start of the OpenFlow
> - * header and 'msg->msg' just beyond the headers (that is, to the final value of
> - * msg->data). */
> + * ofpbuf_pull().  It also sets 'msg->header' to the start of the OpenFlow
> + * header and 'msg->msg' just beyond the headers (that is, to the final value
> + * of msg->data). */
> enum ofperr
> ofpraw_pull(enum ofpraw *rawp, struct ofpbuf *msg)
> {
> @@ -512,8 +512,8 @@ static void ofpraw_put__(enum ofpraw, uint8_t version, ovs_be32 xid,
>  * Each 'raw' value is valid only for certain OpenFlow versions.  The caller
>  * must specify a valid (raw, version) pair.
>  *
> - * In the returned ofpbuf, 'frame' points to the beginning of the
> - * OpenFlow header and 'l3' points just after it, to where the
> + * In the returned ofpbuf, 'header' points to the beginning of the
> + * OpenFlow header and 'msg' points just after it, to where the
>  * message's body will start.  The caller must actually allocate the
>  * body into the space reserved for it, e.g. with ofpbuf_put_uninit().
>  *
> @@ -559,8 +559,8 @@ ofpraw_alloc_reply(enum ofpraw raw, const struct ofp_header *request,
>  * value.  Every stats request has a corresponding reply, so the (raw, version)
>  * pairing pitfalls of the other ofpraw_alloc_*() functions don't apply here.
>  *
> - * In the returned ofpbuf, 'frame' points to the beginning of the
> - * OpenFlow header and 'l3' points just after it, to where the
> + * In the returned ofpbuf, 'header' points to the beginning of the
> + * OpenFlow header and 'msg' points just after it, to where the
>  * message's body will start.  The caller must actually allocate the
>  * body into the space reserved for it, e.g. with ofpbuf_put_uninit().
>  *
> @@ -592,9 +592,9 @@ ofpraw_alloc_stats_reply(const struct ofp_header *request,
>  * Each 'raw' value is valid only for certain OpenFlow versions.  The caller
>  * must specify a valid (raw, version) pair.
>  *
> - * Upon return, 'buf->frame' points to the beginning of the OpenFlow header and
> - * 'buf->msg' points just after it, to where the message's body will start.  The
> - * caller must actually allocating the body into the space reserved for it,
> + * Upon return, 'buf->header' points to the beginning of the OpenFlow header
> + * and 'buf->msg' points just after it, to where the message's body will start.
> + * The caller must actually allocating the body into the space reserved for it,
>  * e.g. with ofpbuf_put_uninit(). */
> void
> ofpraw_put(enum ofpraw raw, uint8_t version, struct ofpbuf *buf)
> @@ -632,8 +632,8 @@ ofpraw_put_reply(enum ofpraw raw, const struct ofp_header *request,
>  * value.  Every stats request has a corresponding reply, so the (raw, version)
>  * pairing pitfalls of the other ofpraw_alloc_*() functions don't apply here.
>  *
> - * In the returned ofpbuf, 'frame' points to the beginning of the
> - * OpenFlow header and 'l3' points just after it, to where the
> + * In the returned ofpbuf, 'header' points to the beginning of the
> + * OpenFlow header and 'msg' points just after it, to where the
>  * message's body will start.  The caller must actually allocate the
>  * body into the space reserved for it, e.g. with ofpbuf_put_uninit().
>  *
> @@ -801,9 +801,9 @@ ofptype_decode(enum ofptype *typep, const struct ofp_header *oh)
>  *
>  * In addition to setting '*typep', this function pulls off the OpenFlow header
>  * (including the stats headers, vendor header, and any subtype header) with
> - * ofpbuf_pull().  It also sets 'msg->frame' to the start of the OpenFlow
> - * header and 'msg->msg' just beyond the headers (that is, to the final value of
> - * msg->data). */
> + * ofpbuf_pull().  It also sets 'msg->header' to the start of the OpenFlow
> + * header and 'msg->msg' just beyond the headers (that is, to the final value
> + * of msg->data). */
> enum ofperr
> ofptype_pull(enum ofptype *typep, struct ofpbuf *buf)
> {
> -- 
> 2.1.3
> 
> _______________________________________________
> dev mailing list
> dev@openvswitch.org
> http://openvswitch.org/mailman/listinfo/dev
diff mbox

Patch

diff --git a/lib/ofp-msgs.c b/lib/ofp-msgs.c
index 3a120e2..cb27f79 100644
--- a/lib/ofp-msgs.c
+++ b/lib/ofp-msgs.c
@@ -381,9 +381,9 @@  ofpraw_decode_assert(const struct ofp_header *oh)
  *
  * In addition to setting '*rawp', this function pulls off the OpenFlow header
  * (including the stats headers, vendor header, and any subtype header) with
- * ofpbuf_pull().  It also sets 'msg->frame' to the start of the OpenFlow
- * header and 'msg->msg' just beyond the headers (that is, to the final value of
- * msg->data). */
+ * ofpbuf_pull().  It also sets 'msg->header' to the start of the OpenFlow
+ * header and 'msg->msg' just beyond the headers (that is, to the final value
+ * of msg->data). */
 enum ofperr
 ofpraw_pull(enum ofpraw *rawp, struct ofpbuf *msg)
 {
@@ -512,8 +512,8 @@  static void ofpraw_put__(enum ofpraw, uint8_t version, ovs_be32 xid,
  * Each 'raw' value is valid only for certain OpenFlow versions.  The caller
  * must specify a valid (raw, version) pair.
  *
- * In the returned ofpbuf, 'frame' points to the beginning of the
- * OpenFlow header and 'l3' points just after it, to where the
+ * In the returned ofpbuf, 'header' points to the beginning of the
+ * OpenFlow header and 'msg' points just after it, to where the
  * message's body will start.  The caller must actually allocate the
  * body into the space reserved for it, e.g. with ofpbuf_put_uninit().
  *
@@ -559,8 +559,8 @@  ofpraw_alloc_reply(enum ofpraw raw, const struct ofp_header *request,
  * value.  Every stats request has a corresponding reply, so the (raw, version)
  * pairing pitfalls of the other ofpraw_alloc_*() functions don't apply here.
  *
- * In the returned ofpbuf, 'frame' points to the beginning of the
- * OpenFlow header and 'l3' points just after it, to where the
+ * In the returned ofpbuf, 'header' points to the beginning of the
+ * OpenFlow header and 'msg' points just after it, to where the
  * message's body will start.  The caller must actually allocate the
  * body into the space reserved for it, e.g. with ofpbuf_put_uninit().
  *
@@ -592,9 +592,9 @@  ofpraw_alloc_stats_reply(const struct ofp_header *request,
  * Each 'raw' value is valid only for certain OpenFlow versions.  The caller
  * must specify a valid (raw, version) pair.
  *
- * Upon return, 'buf->frame' points to the beginning of the OpenFlow header and
- * 'buf->msg' points just after it, to where the message's body will start.  The
- * caller must actually allocating the body into the space reserved for it,
+ * Upon return, 'buf->header' points to the beginning of the OpenFlow header
+ * and 'buf->msg' points just after it, to where the message's body will start.
+ * The caller must actually allocating the body into the space reserved for it,
  * e.g. with ofpbuf_put_uninit(). */
 void
 ofpraw_put(enum ofpraw raw, uint8_t version, struct ofpbuf *buf)
@@ -632,8 +632,8 @@  ofpraw_put_reply(enum ofpraw raw, const struct ofp_header *request,
  * value.  Every stats request has a corresponding reply, so the (raw, version)
  * pairing pitfalls of the other ofpraw_alloc_*() functions don't apply here.
  *
- * In the returned ofpbuf, 'frame' points to the beginning of the
- * OpenFlow header and 'l3' points just after it, to where the
+ * In the returned ofpbuf, 'header' points to the beginning of the
+ * OpenFlow header and 'msg' points just after it, to where the
  * message's body will start.  The caller must actually allocate the
  * body into the space reserved for it, e.g. with ofpbuf_put_uninit().
  *
@@ -801,9 +801,9 @@  ofptype_decode(enum ofptype *typep, const struct ofp_header *oh)
  *
  * In addition to setting '*typep', this function pulls off the OpenFlow header
  * (including the stats headers, vendor header, and any subtype header) with
- * ofpbuf_pull().  It also sets 'msg->frame' to the start of the OpenFlow
- * header and 'msg->msg' just beyond the headers (that is, to the final value of
- * msg->data). */
+ * ofpbuf_pull().  It also sets 'msg->header' to the start of the OpenFlow
+ * header and 'msg->msg' just beyond the headers (that is, to the final value
+ * of msg->data). */
 enum ofperr
 ofptype_pull(enum ofptype *typep, struct ofpbuf *buf)
 {