From: Lorand Jakab Date: Fri, 4 Apr 2014 08:09:52 +0000 (+0300) Subject: ofpbuf: fix struct comment X-Git-Tag: sliver-openvswitch-2.2.90-1~5^2~44 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=5e314e8e771345c11df811fc45d584911cbc1642;p=sliver-openvswitch.git ofpbuf: fix struct comment Signed-off-by: Lorand Jakab Signed-off-by: Ben Pfaff --- diff --git a/lib/ofpbuf.h b/lib/ofpbuf.h index 3312e9bc1..ea863dbb5 100644 --- a/lib/ofpbuf.h +++ b/lib/ofpbuf.h @@ -67,11 +67,11 @@ struct ofpbuf { uint32_t allocated; /* Number of bytes allocated. */ void *frame; /* Packet frame start, or NULL. */ - uint16_t l2_5_ofs; /* MPLS label stack offset from 'packet', or + uint16_t l2_5_ofs; /* MPLS label stack offset from 'frame', or * UINT16_MAX */ - uint16_t l3_ofs; /* Network-level header offset from 'packet', + uint16_t l3_ofs; /* Network-level header offset from 'frame', or UINT16_MAX. */ - uint16_t l4_ofs; /* Transport-level header offset from 'packet', + uint16_t l4_ofs; /* Transport-level header offset from 'frame', or UINT16_MAX. */ enum ofpbuf_source source; /* Source of memory allocated as 'base'. */ struct list list_node; /* Private list element for use by owner. */