Skip to content

Commit

Permalink
datapath: fix mis-ordered comment lines for ovs_skb_cb
Browse files Browse the repository at this point in the history
Upstream commit:
    commit 52427fa0631269c62885dc48e0c32e2ad6e17f8c
    Author: Daniel Axtens <[email protected]>
    Date:   Mon Jul 3 21:46:43 2017 +1000

    openvswitch: fix mis-ordered comment lines for ovs_skb_cb

    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 <[email protected]>
    Signed-off-by: David S. Miller <[email protected]>

Signed-off-by: Greg Rose <[email protected]>
Signed-off-by: Joe Stringer <[email protected]>
  • Loading branch information
gvrose8192 authored and joestringer committed Jul 24, 2017
1 parent 850c2a4 commit dc154ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datapath/datapath.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,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 dc154ab

Please sign in to comment.