aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch/vport.h
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2015-07-21 10:44:04 +0200
committerDavid S. Miller <davem@davemloft.net>2015-07-21 10:39:07 -0700
commitbe4ace6e6b1bc12e18b25fe764917e09a1f96d7b (patch)
tree6b4ae588041d0245a5f1b2fe47118db445c3886f /net/openvswitch/vport.h
parentopenvswitch: Make tunnel set action attach a metadata dst (diff)
downloadlinux-dev-be4ace6e6b1bc12e18b25fe764917e09a1f96d7b.tar.xz
linux-dev-be4ace6e6b1bc12e18b25fe764917e09a1f96d7b.zip
openvswitch: Move dev pointer into vport itself
This is the first step in representing all OVS vports as regular struct net_devices. Move the net_device pointer into the vport structure itself to get rid of struct vport_netdev. Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/vport.h')
-rw-r--r--net/openvswitch/vport.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/openvswitch/vport.h b/net/openvswitch/vport.h
index 75d68248ba69..e05ec68439d1 100644
--- a/net/openvswitch/vport.h
+++ b/net/openvswitch/vport.h
@@ -107,7 +107,7 @@ struct vport_portids {
* @detach_list: list used for detaching vport in net-exit call.
*/
struct vport {
- struct rcu_head rcu;
+ struct net_device *dev;
struct datapath *dp;
struct vport_portids __rcu *upcall_portids;
u16 port_no;
@@ -120,6 +120,7 @@ struct vport {
struct vport_err_stats err_stats;
struct list_head detach_list;
+ struct rcu_head rcu;
};
/**