diff options
author | Jean Sacren <sakiwit@gmail.com> | 2016-01-09 16:07:11 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-01-10 23:49:21 -0500 |
commit | c5420eb12f8e26dd2951c5acc954ca4848f488cb (patch) | |
tree | f48a992599e45f429f60890eb0e59dd0ca153fa3 /net/openvswitch | |
parent | 2f7066ada15c865eeab5a3f6c69dcf58d196e349 (diff) | |
download | op-kernel-dev-c5420eb12f8e26dd2951c5acc954ca4848f488cb.zip op-kernel-dev-c5420eb12f8e26dd2951c5acc954ca4848f488cb.tar.gz |
openvswitch: update kernel doc for struct vport
commit be4ace6e6b1b ("openvswitch: Move dev pointer into vport itself")
The commit above added @dev and moved @rcu to the bottom of struct
vport, but the change was not reflected in the kernel doc. So let's
update the kernel doc as well.
Signed-off-by: Jean Sacren <sakiwit@gmail.com>
Cc: Thomas Graf <tgraf@suug.ch>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch')
-rw-r--r-- | net/openvswitch/vport.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/openvswitch/vport.h b/net/openvswitch/vport.h index f00bb15..c10899cb 100644 --- a/net/openvswitch/vport.h +++ b/net/openvswitch/vport.h @@ -70,7 +70,7 @@ struct vport_portids { /** * struct vport - one port within a datapath - * @rcu: RCU callback head for deferred destruction. + * @dev: Pointer to net_device. * @dp: Datapath to which this port belongs. * @upcall_portids: RCU protected 'struct vport_portids'. * @port_no: Index into @dp's @ports array. @@ -78,6 +78,7 @@ struct vport_portids { * @dp_hash_node: Element in @datapath->ports hash table in datapath.c. * @ops: Class structure. * @detach_list: list used for detaching vport in net-exit call. + * @rcu: RCU callback head for deferred destruction. */ struct vport { struct net_device *dev; |