summaryrefslogtreecommitdiff
path: root/datapath
diff options
context:
space:
mode:
authorGreg Rose <gvrose8192@gmail.com>2017-07-21 16:46:12 -0700
committerJoe Stringer <joe@ovn.org>2017-07-24 11:25:38 -0700
commitdc154abcde4f853a564a9ddfef2dbda1881f4125 (patch)
treecdd6aebd7efdd92a3e9685a785c17c9e714e6db6 /datapath
parent850c2a4d1a0c4f22cb56b0227cf01ab844296b3b (diff)
downloadopenvswitch-dc154abcde4f853a564a9ddfef2dbda1881f4125.tar.gz
datapath: fix mis-ordered comment lines for ovs_skb_cb
Upstream commit: commit 52427fa0631269c62885dc48e0c32e2ad6e17f8c Author: Daniel Axtens <dja@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@axtens.net> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Rose <gvrose8192@gmail.com> Signed-off-by: Joe Stringer <joe@ovn.org>
Diffstat (limited to 'datapath')
-rw-r--r--datapath/datapath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/datapath/datapath.h b/datapath/datapath.h
index 88496257d..f20deedb0 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;