Skip to content
Snippets Groups Projects
Commit 4a1c5371 authored by Eric W. Biederman's avatar Eric W. Biederman Committed by David S. Miller
Browse files

[NET]: Add a network namespace tag to struct net_device


Please note that network devices do not increase the count
count on the network namespace.  The are inside the network
namespace and so the network namespace tag is in the nature
of a back pointer and so getting and putting the network namespace
is unnecessary.

Signed-off-by: default avatarEric W. Biederman <ebiederm@xmission.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 772698f6
No related merge requests found
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
#include <linux/dmaengine.h> #include <linux/dmaengine.h>
#include <linux/workqueue.h> #include <linux/workqueue.h>
struct net;
struct vlan_group; struct vlan_group;
struct ethtool_ops; struct ethtool_ops;
struct netpoll_info; struct netpoll_info;
...@@ -663,6 +664,9 @@ struct net_device ...@@ -663,6 +664,9 @@ struct net_device
void (*poll_controller)(struct net_device *dev); void (*poll_controller)(struct net_device *dev);
#endif #endif
/* Network namespace this network device is inside */
struct net *nd_net;
/* bridge stuff */ /* bridge stuff */
struct net_bridge_port *br_port; struct net_bridge_port *br_port;
/* macvlan */ /* macvlan */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment