aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/openvswitch/vport.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/openvswitch/vport.h b/net/openvswitch/vport.h
index 3f7961ea3c56..aee7d43114c9 100644
--- a/net/openvswitch/vport.h
+++ b/net/openvswitch/vport.h
@@ -68,10 +68,10 @@ struct vport_err_stats {
68/** 68/**
69 * struct vport - one port within a datapath 69 * struct vport - one port within a datapath
70 * @rcu: RCU callback head for deferred destruction. 70 * @rcu: RCU callback head for deferred destruction.
71 * @port_no: Index into @dp's @ports array.
72 * @dp: Datapath to which this port belongs. 71 * @dp: Datapath to which this port belongs.
73 * @upcall_portid: The Netlink port to use for packets received on this port that 72 * @upcall_portid: The Netlink port to use for packets received on this port that
74 * miss the flow table. 73 * miss the flow table.
74 * @port_no: Index into @dp's @ports array.
75 * @hash_node: Element in @dev_table hash table in vport.c. 75 * @hash_node: Element in @dev_table hash table in vport.c.
76 * @dp_hash_node: Element in @datapath->ports hash table in datapath.c. 76 * @dp_hash_node: Element in @datapath->ports hash table in datapath.c.
77 * @ops: Class structure. 77 * @ops: Class structure.
@@ -81,9 +81,9 @@ struct vport_err_stats {
81 */ 81 */
82struct vport { 82struct vport {
83 struct rcu_head rcu; 83 struct rcu_head rcu;
84 u16 port_no;
85 struct datapath *dp; 84 struct datapath *dp;
86 u32 upcall_portid; 85 u32 upcall_portid;
86 u16 port_no;
87 87
88 struct hlist_node hash_node; 88 struct hlist_node hash_node;
89 struct hlist_node dp_hash_node; 89 struct hlist_node dp_hash_node;