[ovs-dev] [PATCH 09/11] datapath: fix mis-ordered comment lines for ovs_skb_cb

Joe Stringer joe at ovn.org
Fri Jul 21 23:46:12 UTC 2017


From: Greg Rose <gvrose8192 at gmail.com>

Upstream commit:
    commit 52427fa0631269c62885dc48e0c32e2ad6e17f8c
    Author: Daniel Axtens <dja at axtens.net>
    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 <dja at axtens.net>
    Signed-off-by: David S. Miller <davem at davemloft.net>

Signed-off-by: Greg Rose <gvrose8192 at gmail.com>
Signed-off-by: Joe Stringer <joe at ovn.org>
---
 datapath/datapath.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datapath/datapath.h b/datapath/datapath.h
index 88496257d486..f20deedb04de 100644
--- a/datapath/datapath.h
+++ b/datapath/datapath.h
@@ -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;
-- 
2.11.1



More information about the dev mailing list