Skip to content

Commit

Permalink
openvswitch: fix mis-ordered comment lines for ovs_skb_cb
Browse files Browse the repository at this point in the history
I was trying to wrap my head around meaning of mru, and realised
that the second line of the comment defining it had somehow
ended up after the line defining cutlen, leading to much confusion.

Reorder the lines to make sense.

Signed-off-by: Daniel Axtens <dja@axtens.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Daniel Axtens authored and David S. Miller committed Jul 3, 2017
1 parent bcdb9e8 commit 52427fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/openvswitch/datapath.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ struct datapath {
* @input_vport: The original vport packet came in on. This value is cached
* when a packet is received by OVS.
* @mru: The maximum received fragement size; 0 if the packet is not
* @cutlen: The number of bytes from the packet end to be removed.
* fragmented.
* @cutlen: The number of bytes from the packet end to be removed.
*/
struct ovs_skb_cb {
struct vport *input_vport;
Expand Down

0 comments on commit 52427fa

Please sign in to comment.